@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.73 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a synchronizationSetting in a share
*
* Uses Azure REST API version 2021-08-01.
*/
export declare function getScheduledSynchronizationSetting(args: GetScheduledSynchronizationSettingArgs, opts?: pulumi.InvokeOptions): Promise<GetScheduledSynchronizationSettingResult>;
export interface GetScheduledSynchronizationSettingArgs {
/**
* The name of the share account.
*/
accountName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The name of the share.
*/
shareName: string;
/**
* The name of the synchronizationSetting.
*/
synchronizationSettingName: string;
}
/**
* A type of synchronization setting based on schedule
*/
export interface GetScheduledSynchronizationSettingResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Time at which the synchronization setting was created.
*/
readonly createdAt: string;
/**
* The resource id of the azure resource
*/
readonly id: string;
/**
* Kind of synchronization setting.
* Expected value is 'ScheduleBased'.
*/
readonly kind: "ScheduleBased";
/**
* Name of the azure resource
*/
readonly name: string;
/**
* Gets or sets the provisioning state
*/
readonly provisioningState: string;
/**
* Recurrence Interval
*/
readonly recurrenceInterval: string;
/**
* Synchronization time
*/
readonly synchronizationTime: string;
/**
* System Data of the Azure resource.
*/
readonly systemData: outputs.datashare.SystemDataResponse;
/**
* Type of the azure resource
*/
readonly type: string;
/**
* Name of the user who created the synchronization setting.
*/
readonly userName: string;
}
/**
* Get a synchronizationSetting in a share
*
* Uses Azure REST API version 2021-08-01.
*/
export declare function getScheduledSynchronizationSettingOutput(args: GetScheduledSynchronizationSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetScheduledSynchronizationSettingResult>;
export interface GetScheduledSynchronizationSettingOutputArgs {
/**
* The name of the share account.
*/
accountName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the share.
*/
shareName: pulumi.Input<string>;
/**
* The name of the synchronizationSetting.
*/
synchronizationSettingName: pulumi.Input<string>;
}