@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Implements HybridIdentityMetadata GET method.
*
* Uses Azure REST API version 2023-04-01-preview.
*
* Other available API versions: 2022-05-21-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native scvmm [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getHybridIdentityMetadata(args: GetHybridIdentityMetadataArgs, opts?: pulumi.InvokeOptions): Promise<GetHybridIdentityMetadataResult>;
export interface GetHybridIdentityMetadataArgs {
/**
* Name of the HybridIdentityMetadata.
*/
metadataName: string;
/**
* The name of the resource group.
*/
resourceGroupName: string;
/**
* Name of the vm.
*/
virtualMachineName: string;
}
/**
* Defines the HybridIdentityMetadata.
*/
export interface GetHybridIdentityMetadataResult {
/**
* 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 resource.
*/
readonly identity: outputs.scvmm.IdentityResponse;
/**
* The name of the resource
*/
readonly name: string;
/**
* Gets or sets the provisioning state.
*/
readonly provisioningState: string;
/**
* Gets or sets the Public Key.
*/
readonly publicKey?: string;
/**
* Gets or sets the Vm Id.
*/
readonly resourceUid?: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.scvmm.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 2023-04-01-preview.
*
* Other available API versions: 2022-05-21-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native scvmm [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getHybridIdentityMetadataOutput(args: GetHybridIdentityMetadataOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHybridIdentityMetadataResult>;
export interface GetHybridIdentityMetadataOutputArgs {
/**
* Name of the HybridIdentityMetadata.
*/
metadataName: pulumi.Input<string>;
/**
* The name of the resource group.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Name of the vm.
*/
virtualMachineName: pulumi.Input<string>;
}