@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.05 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List synchronizations of a share
*
* Uses Azure REST API version 2021-08-01.
*/
export declare function listShareSynchronizations(args: ListShareSynchronizationsArgs, opts?: pulumi.InvokeOptions): Promise<ListShareSynchronizationsResult>;
export interface ListShareSynchronizationsArgs {
/**
* The name of the share account.
*/
accountName: string;
/**
* Filters the results using OData syntax.
*/
filter?: string;
/**
* Sorts the results using OData syntax.
*/
orderby?: string;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The name of the share.
*/
shareName: string;
/**
* Continuation token
*/
skipToken?: string;
}
/**
* List response for get ShareSynchronization.
*/
export interface ListShareSynchronizationsResult {
/**
* The Url of next result page.
*/
readonly nextLink?: string;
/**
* Collection of items of type DataTransferObjects.
*/
readonly value: outputs.datashare.ShareSynchronizationResponse[];
}
/**
* List synchronizations of a share
*
* Uses Azure REST API version 2021-08-01.
*/
export declare function listShareSynchronizationsOutput(args: ListShareSynchronizationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListShareSynchronizationsResult>;
export interface ListShareSynchronizationsOutputArgs {
/**
* The name of the share account.
*/
accountName: pulumi.Input<string>;
/**
* Filters the results using OData syntax.
*/
filter?: pulumi.Input<string>;
/**
* Sorts the results using OData syntax.
*/
orderby?: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the share.
*/
shareName: pulumi.Input<string>;
/**
* Continuation token
*/
skipToken?: pulumi.Input<string>;
}