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

56 lines (55 loc) 2.38 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List all effective connectivity configurations applied on a virtual network. * * Uses Azure REST API version 2021-02-01-preview. */ export declare function listEffectiveConnectivityConfiguration(args: ListEffectiveConnectivityConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<ListEffectiveConnectivityConfigurationResult>; export interface ListEffectiveConnectivityConfigurationArgs { /** * The name of the resource group. */ resourceGroupName: string; /** * When present, the value can be passed to a subsequent query call (together with the same query and scopes used in the current request) to retrieve the next page of data. */ skipToken?: string; /** * The name of the virtual network. */ virtualNetworkName: string; } /** * Result of the request to list networkManagerEffectiveConnectivityConfiguration. It contains a list of groups and a skiptoken to get the next set of results. */ export interface ListEffectiveConnectivityConfigurationResult { /** * When present, the value can be passed to a subsequent query call (together with the same query and scopes used in the current request) to retrieve the next page of data. */ readonly skipToken?: string; /** * Gets a page of NetworkManagerEffectiveConnectivityConfiguration */ readonly value?: outputs.network.EffectiveConnectivityConfigurationResponse[]; } /** * List all effective connectivity configurations applied on a virtual network. * * Uses Azure REST API version 2021-02-01-preview. */ export declare function listEffectiveConnectivityConfigurationOutput(args: ListEffectiveConnectivityConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListEffectiveConnectivityConfigurationResult>; export interface ListEffectiveConnectivityConfigurationOutputArgs { /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; /** * When present, the value can be passed to a subsequent query call (together with the same query and scopes used in the current request) to retrieve the next page of data. */ skipToken?: pulumi.Input<string>; /** * The name of the virtual network. */ virtualNetworkName: pulumi.Input<string>; }