1. Packages
  2. Azure Native
  3. API Docs
  4. connectedvmwarevsphere
  5. GuestAgent
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.connectedvmwarevsphere.GuestAgent

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

Defines the GuestAgent.

Uses Azure REST API version 2023-03-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-07-15-preview.

Other available API versions: 2022-07-15-preview. 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 for details.

Example Usage

CreateGuestAgent

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var guestAgent = new AzureNative.ConnectedVMwarevSphere.GuestAgent("guestAgent", new()
    {
        Credentials = new AzureNative.ConnectedVMwarevSphere.Inputs.GuestCredentialArgs
        {
            Password = "<password>",
            Username = "tempuser",
        },
        HttpProxyConfig = new AzureNative.ConnectedVMwarevSphere.Inputs.HttpProxyConfigurationArgs
        {
            HttpsProxy = "http://192.1.2.3:8080",
        },
        Name = "default",
        PrivateLinkScopeResourceId = "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/privateLinkScopes/privateLinkScopeName",
        ProvisioningAction = AzureNative.ConnectedVMwarevSphere.ProvisioningAction.Install,
        ResourceGroupName = "testrg",
        VirtualMachineName = "ContosoVm",
    });

});
Copy
package main

import (
	connectedvmwarevsphere "github.com/pulumi/pulumi-azure-native-sdk/connectedvmwarevsphere/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := connectedvmwarevsphere.NewGuestAgent(ctx, "guestAgent", &connectedvmwarevsphere.GuestAgentArgs{
			Credentials: &connectedvmwarevsphere.GuestCredentialArgs{
				Password: pulumi.String("<password>"),
				Username: pulumi.String("tempuser"),
			},
			HttpProxyConfig: &connectedvmwarevsphere.HttpProxyConfigurationArgs{
				HttpsProxy: pulumi.String("http://192.1.2.3:8080"),
			},
			Name:                       pulumi.String("default"),
			PrivateLinkScopeResourceId: pulumi.String("/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/privateLinkScopes/privateLinkScopeName"),
			ProvisioningAction:         pulumi.String(connectedvmwarevsphere.ProvisioningActionInstall),
			ResourceGroupName:          pulumi.String("testrg"),
			VirtualMachineName:         pulumi.String("ContosoVm"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.connectedvmwarevsphere.GuestAgent;
import com.pulumi.azurenative.connectedvmwarevsphere.GuestAgentArgs;
import com.pulumi.azurenative.connectedvmwarevsphere.inputs.GuestCredentialArgs;
import com.pulumi.azurenative.connectedvmwarevsphere.inputs.HttpProxyConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var guestAgent = new GuestAgent("guestAgent", GuestAgentArgs.builder()
            .credentials(GuestCredentialArgs.builder()
                .password("<password>")
                .username("tempuser")
                .build())
            .httpProxyConfig(HttpProxyConfigurationArgs.builder()
                .httpsProxy("http://192.1.2.3:8080")
                .build())
            .name("default")
            .privateLinkScopeResourceId("/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/privateLinkScopes/privateLinkScopeName")
            .provisioningAction("install")
            .resourceGroupName("testrg")
            .virtualMachineName("ContosoVm")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const guestAgent = new azure_native.connectedvmwarevsphere.GuestAgent("guestAgent", {
    credentials: {
        password: "<password>",
        username: "tempuser",
    },
    httpProxyConfig: {
        httpsProxy: "http://192.1.2.3:8080",
    },
    name: "default",
    privateLinkScopeResourceId: "/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/privateLinkScopes/privateLinkScopeName",
    provisioningAction: azure_native.connectedvmwarevsphere.ProvisioningAction.Install,
    resourceGroupName: "testrg",
    virtualMachineName: "ContosoVm",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

guest_agent = azure_native.connectedvmwarevsphere.GuestAgent("guestAgent",
    credentials={
        "password": "<password>",
        "username": "tempuser",
    },
    http_proxy_config={
        "https_proxy": "http://192.1.2.3:8080",
    },
    name="default",
    private_link_scope_resource_id="/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/privateLinkScopes/privateLinkScopeName",
    provisioning_action=azure_native.connectedvmwarevsphere.ProvisioningAction.INSTALL,
    resource_group_name="testrg",
    virtual_machine_name="ContosoVm")
Copy
resources:
  guestAgent:
    type: azure-native:connectedvmwarevsphere:GuestAgent
    properties:
      credentials:
        password: <password>
        username: tempuser
      httpProxyConfig:
        httpsProxy: http://192.1.2.3:8080
      name: default
      privateLinkScopeResourceId: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/privateLinkScopes/privateLinkScopeName
      provisioningAction: install
      resourceGroupName: testrg
      virtualMachineName: ContosoVm
Copy

Create GuestAgent Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new GuestAgent(name: string, args: GuestAgentArgs, opts?: CustomResourceOptions);
@overload
def GuestAgent(resource_name: str,
               args: GuestAgentArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def GuestAgent(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resource_group_name: Optional[str] = None,
               virtual_machine_name: Optional[str] = None,
               credentials: Optional[GuestCredentialArgs] = None,
               http_proxy_config: Optional[HttpProxyConfigurationArgs] = None,
               name: Optional[str] = None,
               private_link_scope_resource_id: Optional[str] = None,
               provisioning_action: Optional[Union[str, ProvisioningAction]] = None)
func NewGuestAgent(ctx *Context, name string, args GuestAgentArgs, opts ...ResourceOption) (*GuestAgent, error)
public GuestAgent(string name, GuestAgentArgs args, CustomResourceOptions? opts = null)
public GuestAgent(String name, GuestAgentArgs args)
public GuestAgent(String name, GuestAgentArgs args, CustomResourceOptions options)
type: azure-native:connectedvmwarevsphere:GuestAgent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GuestAgentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. GuestAgentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. GuestAgentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GuestAgentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GuestAgentArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var azure_nativeGuestAgentResource = new AzureNative.ConnectedVMwarevSphere.GuestAgent("azure-nativeGuestAgentResource", new()
{
    ResourceGroupName = "string",
    VirtualMachineName = "string",
    Credentials = new AzureNative.ConnectedVMwarevSphere.Inputs.GuestCredentialArgs
    {
        Password = "string",
        PrivateKey = "string",
        Username = "string",
    },
    HttpProxyConfig = new AzureNative.ConnectedVMwarevSphere.Inputs.HttpProxyConfigurationArgs
    {
        HttpsProxy = "string",
    },
    Name = "string",
    PrivateLinkScopeResourceId = "string",
    ProvisioningAction = "string",
});
Copy
example, err := connectedvmwarevsphere.NewGuestAgent(ctx, "azure-nativeGuestAgentResource", &connectedvmwarevsphere.GuestAgentArgs{
	ResourceGroupName:  pulumi.String("string"),
	VirtualMachineName: pulumi.String("string"),
	Credentials: &connectedvmwarevsphere.GuestCredentialArgs{
		Password:   pulumi.String("string"),
		PrivateKey: pulumi.String("string"),
		Username:   pulumi.String("string"),
	},
	HttpProxyConfig: &connectedvmwarevsphere.HttpProxyConfigurationArgs{
		HttpsProxy: pulumi.String("string"),
	},
	Name:                       pulumi.String("string"),
	PrivateLinkScopeResourceId: pulumi.String("string"),
	ProvisioningAction:         pulumi.String("string"),
})
Copy
var azure_nativeGuestAgentResource = new GuestAgent("azure-nativeGuestAgentResource", GuestAgentArgs.builder()
    .resourceGroupName("string")
    .virtualMachineName("string")
    .credentials(GuestCredentialArgs.builder()
        .password("string")
        .privateKey("string")
        .username("string")
        .build())
    .httpProxyConfig(HttpProxyConfigurationArgs.builder()
        .httpsProxy("string")
        .build())
    .name("string")
    .privateLinkScopeResourceId("string")
    .provisioningAction("string")
    .build());
Copy
azure_native_guest_agent_resource = azure_native.connectedvmwarevsphere.GuestAgent("azure-nativeGuestAgentResource",
    resource_group_name="string",
    virtual_machine_name="string",
    credentials={
        "password": "string",
        "private_key": "string",
        "username": "string",
    },
    http_proxy_config={
        "https_proxy": "string",
    },
    name="string",
    private_link_scope_resource_id="string",
    provisioning_action="string")
Copy
const azure_nativeGuestAgentResource = new azure_native.connectedvmwarevsphere.GuestAgent("azure-nativeGuestAgentResource", {
    resourceGroupName: "string",
    virtualMachineName: "string",
    credentials: {
        password: "string",
        privateKey: "string",
        username: "string",
    },
    httpProxyConfig: {
        httpsProxy: "string",
    },
    name: "string",
    privateLinkScopeResourceId: "string",
    provisioningAction: "string",
});
Copy
type: azure-native:connectedvmwarevsphere:GuestAgent
properties:
    credentials:
        password: string
        privateKey: string
        username: string
    httpProxyConfig:
        httpsProxy: string
    name: string
    privateLinkScopeResourceId: string
    provisioningAction: string
    resourceGroupName: string
    virtualMachineName: string
Copy

GuestAgent Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The GuestAgent resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Resource Group Name.
VirtualMachineName
This property is required.
Changes to this property will trigger replacement.
string
Name of the vm.
Credentials Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.GuestCredential
Username / Password Credentials to provision guest agent.
HttpProxyConfig Pulumi.AzureNative.ConnectedVMwarevSphere.Inputs.HttpProxyConfiguration
HTTP Proxy configuration for the VM.
Name Changes to this property will trigger replacement. string
Name of the guestAgents.
PrivateLinkScopeResourceId string
The resource id of the private link scope this machine is assigned to, if any.
ProvisioningAction string | Pulumi.AzureNative.ConnectedVMwarevSphere.ProvisioningAction
Gets or sets the guest agent provisioning action.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Resource Group Name.
VirtualMachineName
This property is required.
Changes to this property will trigger replacement.
string
Name of the vm.
Credentials GuestCredentialArgs
Username / Password Credentials to provision guest agent.
HttpProxyConfig HttpProxyConfigurationArgs
HTTP Proxy configuration for the VM.
Name Changes to this property will trigger replacement. string
Name of the guestAgents.
PrivateLinkScopeResourceId string
The resource id of the private link scope this machine is assigned to, if any.
ProvisioningAction string | ProvisioningAction
Gets or sets the guest agent provisioning action.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The Resource Group Name.
virtualMachineName
This property is required.
Changes to this property will trigger replacement.
String
Name of the vm.
credentials GuestCredential
Username / Password Credentials to provision guest agent.
httpProxyConfig HttpProxyConfiguration
HTTP Proxy configuration for the VM.
name Changes to this property will trigger replacement. String
Name of the guestAgents.
privateLinkScopeResourceId String
The resource id of the private link scope this machine is assigned to, if any.
provisioningAction String | ProvisioningAction
Gets or sets the guest agent provisioning action.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The Resource Group Name.
virtualMachineName
This property is required.
Changes to this property will trigger replacement.
string
Name of the vm.
credentials GuestCredential
Username / Password Credentials to provision guest agent.
httpProxyConfig HttpProxyConfiguration
HTTP Proxy configuration for the VM.
name Changes to this property will trigger replacement. string
Name of the guestAgents.
privateLinkScopeResourceId string
The resource id of the private link scope this machine is assigned to, if any.
provisioningAction string | ProvisioningAction
Gets or sets the guest agent provisioning action.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The Resource Group Name.
virtual_machine_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the vm.
credentials GuestCredentialArgs
Username / Password Credentials to provision guest agent.
http_proxy_config HttpProxyConfigurationArgs
HTTP Proxy configuration for the VM.
name Changes to this property will trigger replacement. str
Name of the guestAgents.
private_link_scope_resource_id str
The resource id of the private link scope this machine is assigned to, if any.
provisioning_action str | ProvisioningAction
Gets or sets the guest agent provisioning action.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The Resource Group Name.
virtualMachineName
This property is required.
Changes to this property will trigger replacement.
String
Name of the vm.
credentials Property Map
Username / Password Credentials to provision guest agent.
httpProxyConfig Property Map
HTTP Proxy configuration for the VM.
name Changes to this property will trigger replacement. String
Name of the guestAgents.
privateLinkScopeResourceId String
The resource id of the private link scope this machine is assigned to, if any.
provisioningAction String | "install" | "uninstall" | "repair"
Gets or sets the guest agent provisioning action.

Outputs

All input properties are implicitly available as output properties. Additionally, the GuestAgent resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
CustomResourceName string
Gets the name of the corresponding resource in Kubernetes.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Gets the provisioning state.
Status string
Gets or sets the guest agent status.
Statuses List<Pulumi.AzureNative.ConnectedVMwarevSphere.Outputs.ResourceStatusResponse>
The resource status information.
SystemData Pulumi.AzureNative.ConnectedVMwarevSphere.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Uuid string
Gets or sets a unique identifier for this resource.
AzureApiVersion string
The Azure API version of the resource.
CustomResourceName string
Gets the name of the corresponding resource in Kubernetes.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Gets the provisioning state.
Status string
Gets or sets the guest agent status.
Statuses []ResourceStatusResponse
The resource status information.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Uuid string
Gets or sets a unique identifier for this resource.
azureApiVersion String
The Azure API version of the resource.
customResourceName String
Gets the name of the corresponding resource in Kubernetes.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Gets the provisioning state.
status String
Gets or sets the guest agent status.
statuses List<ResourceStatusResponse>
The resource status information.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
uuid String
Gets or sets a unique identifier for this resource.
azureApiVersion string
The Azure API version of the resource.
customResourceName string
Gets the name of the corresponding resource in Kubernetes.
id string
The provider-assigned unique ID for this managed resource.
provisioningState string
Gets the provisioning state.
status string
Gets or sets the guest agent status.
statuses ResourceStatusResponse[]
The resource status information.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
uuid string
Gets or sets a unique identifier for this resource.
azure_api_version str
The Azure API version of the resource.
custom_resource_name str
Gets the name of the corresponding resource in Kubernetes.
id str
The provider-assigned unique ID for this managed resource.
provisioning_state str
Gets the provisioning state.
status str
Gets or sets the guest agent status.
statuses Sequence[ResourceStatusResponse]
The resource status information.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
uuid str
Gets or sets a unique identifier for this resource.
azureApiVersion String
The Azure API version of the resource.
customResourceName String
Gets the name of the corresponding resource in Kubernetes.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Gets the provisioning state.
status String
Gets or sets the guest agent status.
statuses List<Property Map>
The resource status information.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
uuid String
Gets or sets a unique identifier for this resource.

Supporting Types

GuestCredential
, GuestCredentialArgs

Password string
Gets or sets the password to connect with the guest.
PrivateKey string
Private key used to authenticate to a virtual machine through ssh.
Username string
Gets or sets username to connect with the guest.
Password string
Gets or sets the password to connect with the guest.
PrivateKey string
Private key used to authenticate to a virtual machine through ssh.
Username string
Gets or sets username to connect with the guest.
password String
Gets or sets the password to connect with the guest.
privateKey String
Private key used to authenticate to a virtual machine through ssh.
username String
Gets or sets username to connect with the guest.
password string
Gets or sets the password to connect with the guest.
privateKey string
Private key used to authenticate to a virtual machine through ssh.
username string
Gets or sets username to connect with the guest.
password str
Gets or sets the password to connect with the guest.
private_key str
Private key used to authenticate to a virtual machine through ssh.
username str
Gets or sets username to connect with the guest.
password String
Gets or sets the password to connect with the guest.
privateKey String
Private key used to authenticate to a virtual machine through ssh.
username String
Gets or sets username to connect with the guest.

GuestCredentialResponse
, GuestCredentialResponseArgs

PrivateKey string
Private key used to authenticate to a virtual machine through ssh.
Username string
Gets or sets username to connect with the guest.
PrivateKey string
Private key used to authenticate to a virtual machine through ssh.
Username string
Gets or sets username to connect with the guest.
privateKey String
Private key used to authenticate to a virtual machine through ssh.
username String
Gets or sets username to connect with the guest.
privateKey string
Private key used to authenticate to a virtual machine through ssh.
username string
Gets or sets username to connect with the guest.
private_key str
Private key used to authenticate to a virtual machine through ssh.
username str
Gets or sets username to connect with the guest.
privateKey String
Private key used to authenticate to a virtual machine through ssh.
username String
Gets or sets username to connect with the guest.

HttpProxyConfiguration
, HttpProxyConfigurationArgs

HttpsProxy string
Gets or sets httpsProxy url.
HttpsProxy string
Gets or sets httpsProxy url.
httpsProxy String
Gets or sets httpsProxy url.
httpsProxy string
Gets or sets httpsProxy url.
https_proxy str
Gets or sets httpsProxy url.
httpsProxy String
Gets or sets httpsProxy url.

HttpProxyConfigurationResponse
, HttpProxyConfigurationResponseArgs

HttpsProxy string
Gets or sets httpsProxy url.
HttpsProxy string
Gets or sets httpsProxy url.
httpsProxy String
Gets or sets httpsProxy url.
httpsProxy string
Gets or sets httpsProxy url.
https_proxy str
Gets or sets httpsProxy url.
httpsProxy String
Gets or sets httpsProxy url.

ProvisioningAction
, ProvisioningActionArgs

Install
install
Uninstall
uninstall
Repair
repair
ProvisioningActionInstall
install
ProvisioningActionUninstall
uninstall
ProvisioningActionRepair
repair
Install
install
Uninstall
uninstall
Repair
repair
Install
install
Uninstall
uninstall
Repair
repair
INSTALL
install
UNINSTALL
uninstall
REPAIR
repair
"install"
install
"uninstall"
uninstall
"repair"
repair

ResourceStatusResponse
, ResourceStatusResponseArgs

LastUpdatedAt This property is required. string
The last update time for this condition.
Message This property is required. string
A human readable message indicating details about the status.
Reason This property is required. string
The reason for the condition's status.
Severity This property is required. string
Severity with which to treat failures of this type of condition.
Status This property is required. string
Status of the condition.
Type This property is required. string
The type of the condition.
LastUpdatedAt This property is required. string
The last update time for this condition.
Message This property is required. string
A human readable message indicating details about the status.
Reason This property is required. string
The reason for the condition's status.
Severity This property is required. string
Severity with which to treat failures of this type of condition.
Status This property is required. string
Status of the condition.
Type This property is required. string
The type of the condition.
lastUpdatedAt This property is required. String
The last update time for this condition.
message This property is required. String
A human readable message indicating details about the status.
reason This property is required. String
The reason for the condition's status.
severity This property is required. String
Severity with which to treat failures of this type of condition.
status This property is required. String
Status of the condition.
type This property is required. String
The type of the condition.
lastUpdatedAt This property is required. string
The last update time for this condition.
message This property is required. string
A human readable message indicating details about the status.
reason This property is required. string
The reason for the condition's status.
severity This property is required. string
Severity with which to treat failures of this type of condition.
status This property is required. string
Status of the condition.
type This property is required. string
The type of the condition.
last_updated_at This property is required. str
The last update time for this condition.
message This property is required. str
A human readable message indicating details about the status.
reason This property is required. str
The reason for the condition's status.
severity This property is required. str
Severity with which to treat failures of this type of condition.
status This property is required. str
Status of the condition.
type This property is required. str
The type of the condition.
lastUpdatedAt This property is required. String
The last update time for this condition.
message This property is required. String
A human readable message indicating details about the status.
reason This property is required. String
The reason for the condition's status.
severity This property is required. String
Severity with which to treat failures of this type of condition.
status This property is required. String
Status of the condition.
type This property is required. String
The type of the condition.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:connectedvmwarevsphere:GuestAgent default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}/guestAgents/{name} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi