UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

80 lines (79 loc) 2.27 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List synchronizations of a share subscription * * Uses Azure REST API version 2021-08-01. */ export declare function listShareSubscriptionSynchronizations(args: ListShareSubscriptionSynchronizationsArgs, opts?: pulumi.InvokeOptions): Promise<ListShareSubscriptionSynchronizationsResult>; export interface ListShareSubscriptionSynchronizationsArgs { /** * 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 subscription. */ shareSubscriptionName: string; /** * Continuation token */ skipToken?: string; } /** * A consumer side list of share subscription synchronizations */ export interface ListShareSubscriptionSynchronizationsResult { /** * The Url of next result page. */ readonly nextLink?: string; /** * Collection of items of type DataTransferObjects. */ readonly value: outputs.datashare.ShareSubscriptionSynchronizationResponse[]; } /** * List synchronizations of a share subscription * * Uses Azure REST API version 2021-08-01. */ export declare function listShareSubscriptionSynchronizationsOutput(args: ListShareSubscriptionSynchronizationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListShareSubscriptionSynchronizationsResult>; export interface ListShareSubscriptionSynchronizationsOutputArgs { /** * 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 subscription. */ shareSubscriptionName: pulumi.Input<string>; /** * Continuation token */ skipToken?: pulumi.Input<string>; }