@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.56 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Implements HybridIdentityMetadata GET method.
*
* Uses Azure REST API version 2022-12-15-preview.
*/
export declare function getHybridIdentityMetadatum(args: GetHybridIdentityMetadatumArgs, opts?: pulumi.InvokeOptions): Promise<GetHybridIdentityMetadatumResult>;
export interface GetHybridIdentityMetadatumArgs {
/**
* Name of the HybridIdentityMetadata.
*/
metadataName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Name of the vm.
*/
virtualMachineName: 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;
/**
* Identity for the resource.
*/
readonly identity: outputs.azurestackhci.IdentityResponse;
/**
* The name of the resource
*/
readonly name: string;
/**
* The provisioning state.
*/
readonly provisioningState: string;
/**
* The Public Key.
*/
readonly publicKey?: string;
/**
* The unique identifier for the resource.
*/
readonly resourceUid?: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.azurestackhci.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Implements HybridIdentityMetadata GET method.
*
* Uses Azure REST API version 2022-12-15-preview.
*/
export declare function getHybridIdentityMetadatumOutput(args: GetHybridIdentityMetadatumOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHybridIdentityMetadatumResult>;
export interface GetHybridIdentityMetadatumOutputArgs {
/**
* Name of the HybridIdentityMetadata.
*/
metadataName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Name of the vm.
*/
virtualMachineName: pulumi.Input<string>;
}