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

68 lines (67 loc) 3.13 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists all effective virtual networks by specified network group. * * Uses Azure REST API version 2022-04-01-preview. * * Other available API versions: 2022-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listListEffectiveVirtualNetworkByNetworkGroup(args: ListListEffectiveVirtualNetworkByNetworkGroupArgs, opts?: pulumi.InvokeOptions): Promise<ListListEffectiveVirtualNetworkByNetworkGroupResult>; export interface ListListEffectiveVirtualNetworkByNetworkGroupArgs { /** * The name of the network group. */ networkGroupName: string; /** * The name of the network manager. */ networkManagerName: string; /** * 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; } /** * Result of the request to list Effective Virtual Network. It contains a list of groups and a URL link to get the next set of results. */ export interface ListListEffectiveVirtualNetworkByNetworkGroupResult { /** * 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 EffectiveVirtualNetwork */ readonly value?: outputs.network.EffectiveVirtualNetworkResponse[]; } /** * Lists all effective virtual networks by specified network group. * * Uses Azure REST API version 2022-04-01-preview. * * Other available API versions: 2022-02-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listListEffectiveVirtualNetworkByNetworkGroupOutput(args: ListListEffectiveVirtualNetworkByNetworkGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListListEffectiveVirtualNetworkByNetworkGroupResult>; export interface ListListEffectiveVirtualNetworkByNetworkGroupOutputArgs { /** * The name of the network group. */ networkGroupName: pulumi.Input<string>; /** * The name of the network manager. */ networkManagerName: pulumi.Input<string>; /** * 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>; }