@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.26 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* The Get ManagedNetworkGroups operation gets a Managed Network Group specified by the resource group, Managed Network name, and group name
*
* Uses Azure REST API version 2019-06-01-preview.
*/
export declare function getManagedNetworkGroup(args: GetManagedNetworkGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedNetworkGroupResult>;
export interface GetManagedNetworkGroupArgs {
/**
* The name of the Managed Network Group.
*/
managedNetworkGroupName: string;
/**
* The name of the Managed Network.
*/
managedNetworkName: string;
/**
* The name of the resource group.
*/
resourceGroupName: string;
}
/**
* The Managed Network Group resource
*/
export interface GetManagedNetworkGroupResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* A unique read-only string that changes whenever the resource is updated.
*/
readonly etag: string;
/**
* Fully qualified resource Id for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* Responsibility role under which this Managed Network Group will be created
*/
readonly kind?: string;
/**
* The geo-location where the resource lives
*/
readonly location?: string;
/**
* The collection of management groups covered by the Managed Network
*/
readonly managementGroups?: outputs.managednetwork.ResourceIdResponse[];
/**
* The name of the resource
*/
readonly name: string;
/**
* Provisioning state of the ManagedNetwork resource.
*/
readonly provisioningState: string;
/**
* The collection of subnets covered by the Managed Network
*/
readonly subnets?: outputs.managednetwork.ResourceIdResponse[];
/**
* The collection of subscriptions covered by the Managed Network
*/
readonly subscriptions?: outputs.managednetwork.ResourceIdResponse[];
/**
* The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
*/
readonly type: string;
/**
* The collection of virtual nets covered by the Managed Network
*/
readonly virtualNetworks?: outputs.managednetwork.ResourceIdResponse[];
}
/**
* The Get ManagedNetworkGroups operation gets a Managed Network Group specified by the resource group, Managed Network name, and group name
*
* Uses Azure REST API version 2019-06-01-preview.
*/
export declare function getManagedNetworkGroupOutput(args: GetManagedNetworkGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedNetworkGroupResult>;
export interface GetManagedNetworkGroupOutputArgs {
/**
* The name of the Managed Network Group.
*/
managedNetworkGroupName: pulumi.Input<string>;
/**
* The name of the Managed Network.
*/
managedNetworkName: pulumi.Input<string>;
/**
* The name of the resource group.
*/
resourceGroupName: pulumi.Input<string>;
}