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

84 lines (83 loc) 2.83 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get the hybrid identity metadata proxy resource. * * Uses Azure REST API version 2022-09-01-preview. */ export declare function getHybridIdentityMetadatum(args: GetHybridIdentityMetadatumArgs, opts?: pulumi.InvokeOptions): Promise<GetHybridIdentityMetadatumResult>; export interface GetHybridIdentityMetadatumArgs { /** * Parameter for the name of the hybrid identity metadata resource. */ hybridIdentityMetadataResourceName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * Parameter for the name of the provisioned cluster */ resourceName: string; } /** * Defines the hybridIdentityMetadata. */ export interface GetHybridIdentityMetadatumResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} */ readonly id: string; /** * The identity of the provisioned cluster. */ readonly identity?: outputs.hybridcontainerservice.ProvisionedClusterIdentityResponse; /** * The name of the resource */ readonly name: string; /** * provisioning state of the hybridIdentityMetadata resource. */ readonly provisioningState: string; /** * Onboarding public key for provisioning the Managed identity for the HybridAKS cluster. */ readonly publicKey?: string; /** * Unique id of the parent provisioned cluster resource. */ readonly resourceUid?: string; /** * The system data. */ readonly systemData: outputs.hybridcontainerservice.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Get the hybrid identity metadata proxy resource. * * Uses Azure REST API version 2022-09-01-preview. */ export declare function getHybridIdentityMetadatumOutput(args: GetHybridIdentityMetadatumOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHybridIdentityMetadatumResult>; export interface GetHybridIdentityMetadatumOutputArgs { /** * Parameter for the name of the hybrid identity metadata resource. */ hybridIdentityMetadataResourceName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Parameter for the name of the provisioned cluster */ resourceName: pulumi.Input<string>; }