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

92 lines (91 loc) 3.64 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Implements GuestAgent GET method. * * Uses Azure REST API version 2023-12-01. * * Other available API versions: 2023-03-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native connectedvmwarevsphere [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getVMInstanceGuestAgent(args: GetVMInstanceGuestAgentArgs, opts?: pulumi.InvokeOptions): Promise<GetVMInstanceGuestAgentResult>; export interface GetVMInstanceGuestAgentArgs { /** * The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended. */ resourceUri: string; } /** * Defines the GuestAgent. */ export interface GetVMInstanceGuestAgentResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Username / Password Credentials to provision guest agent. */ readonly credentials?: outputs.connectedvmwarevsphere.GuestCredentialResponse; /** * Gets the name of the corresponding resource in Kubernetes. */ readonly customResourceName: string; /** * HTTP Proxy configuration for the VM. */ readonly httpProxyConfig?: outputs.connectedvmwarevsphere.HttpProxyConfigurationResponse; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The name of the resource */ readonly name: string; /** * The resource id of the private link scope this machine is assigned to, if any. */ readonly privateLinkScopeResourceId?: string; /** * Gets or sets the guest agent provisioning action. */ readonly provisioningAction?: string; /** * Gets the provisioning state. */ readonly provisioningState: string; /** * Gets or sets the guest agent status. */ readonly status: string; /** * The resource status information. */ readonly statuses: outputs.connectedvmwarevsphere.ResourceStatusResponse[]; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.connectedvmwarevsphere.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; /** * Gets or sets a unique identifier for this resource. */ readonly uuid: string; } /** * Implements GuestAgent GET method. * * Uses Azure REST API version 2023-12-01. * * Other available API versions: 2023-03-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native connectedvmwarevsphere [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getVMInstanceGuestAgentOutput(args: GetVMInstanceGuestAgentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVMInstanceGuestAgentResult>; export interface GetVMInstanceGuestAgentOutputArgs { /** * The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended. */ resourceUri: pulumi.Input<string>; }