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

91 lines (90 loc) 3.31 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets details about the specified dnc DelegatedSubnet Link. * * Uses Azure REST API version 2023-06-27-preview. * * Other available API versions: 2021-03-15, 2023-05-18-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native delegatednetwork [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getDelegatedSubnetServiceDetails(args: GetDelegatedSubnetServiceDetailsArgs, opts?: pulumi.InvokeOptions): Promise<GetDelegatedSubnetServiceDetailsResult>; export interface GetDelegatedSubnetServiceDetailsArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the resource. It must be a minimum of 3 characters, and a maximum of 63. */ resourceName: string; } /** * Represents an instance of a orchestrator. */ export interface GetDelegatedSubnetServiceDetailsResult { /** * Defines prefix size of CIDR blocks allocated to nodes in VnetBlock Mode. * Delegated subnet's prefix size should be smaller than this by a minimum of 3. */ readonly allocationBlockPrefixSize?: number; /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Properties of the controller. */ readonly controllerDetails?: outputs.delegatednetwork.ControllerDetailsResponse; /** * An identifier that represents the resource. */ readonly id: string; /** * Location of the resource. */ readonly location?: string; /** * The name of the resource. */ readonly name: string; /** * The current state of dnc delegated subnet resource. */ readonly provisioningState: string; /** * Resource guid. */ readonly resourceGuid: string; /** * subnet details */ readonly subnetDetails?: outputs.delegatednetwork.SubnetDetailsResponse; /** * The resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of resource. */ readonly type: string; } /** * Gets details about the specified dnc DelegatedSubnet Link. * * Uses Azure REST API version 2023-06-27-preview. * * Other available API versions: 2021-03-15, 2023-05-18-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native delegatednetwork [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getDelegatedSubnetServiceDetailsOutput(args: GetDelegatedSubnetServiceDetailsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDelegatedSubnetServiceDetailsResult>; export interface GetDelegatedSubnetServiceDetailsOutputArgs { /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the resource. It must be a minimum of 3 characters, and a maximum of 63. */ resourceName: pulumi.Input<string>; }