azure-native.networkcloud.Console
Explore with Pulumi AI
API Version: 2022-12-12-preview.
Example Usage
Create or update virtual machine console
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var console = new AzureNative.NetworkCloud.Console("console", new()
    {
        ConsoleName = "default",
        Enabled = "True",
        Expiration = "2022-06-01T01:27:03.008Z",
        ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterManagerExtendedLocationName",
            Type = "CustomLocation",
        },
        Location = "location",
        ResourceGroupName = "resourceGroupName",
        SshPublicKey = new AzureNative.NetworkCloud.Inputs.SshPublicKeyArgs
        {
            KeyData = "ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm",
        },
        Tags = 
        {
            { "key1", "myvalue1" },
            { "key2", "myvalue2" },
        },
        VirtualMachineName = "virtualMachineName",
    });
});
package main
import (
	networkcloud "github.com/pulumi/pulumi-azure-native-sdk/networkcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkcloud.NewConsole(ctx, "console", &networkcloud.ConsoleArgs{
			ConsoleName: pulumi.String("default"),
			Enabled:     pulumi.String("True"),
			Expiration:  pulumi.String("2022-06-01T01:27:03.008Z"),
			ExtendedLocation: &networkcloud.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterManagerExtendedLocationName"),
				Type: pulumi.String("CustomLocation"),
			},
			Location:          pulumi.String("location"),
			ResourceGroupName: pulumi.String("resourceGroupName"),
			SshPublicKey: &networkcloud.SshPublicKeyArgs{
				KeyData: pulumi.String("ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm"),
			},
			Tags: pulumi.StringMap{
				"key1": pulumi.String("myvalue1"),
				"key2": pulumi.String("myvalue2"),
			},
			VirtualMachineName: pulumi.String("virtualMachineName"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.networkcloud.Console;
import com.pulumi.azurenative.networkcloud.ConsoleArgs;
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 console = new Console("console", ConsoleArgs.builder()        
            .consoleName("default")
            .enabled("True")
            .expiration("2022-06-01T01:27:03.008Z")
            .extendedLocation(Map.ofEntries(
                Map.entry("name", "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterManagerExtendedLocationName"),
                Map.entry("type", "CustomLocation")
            ))
            .location("location")
            .resourceGroupName("resourceGroupName")
            .sshPublicKey(Map.of("keyData", "ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm"))
            .tags(Map.ofEntries(
                Map.entry("key1", "myvalue1"),
                Map.entry("key2", "myvalue2")
            ))
            .virtualMachineName("virtualMachineName")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const console = new azure_native.networkcloud.Console("console", {
    consoleName: "default",
    enabled: "True",
    expiration: "2022-06-01T01:27:03.008Z",
    extendedLocation: {
        name: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterManagerExtendedLocationName",
        type: "CustomLocation",
    },
    location: "location",
    resourceGroupName: "resourceGroupName",
    sshPublicKey: {
        keyData: "ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm",
    },
    tags: {
        key1: "myvalue1",
        key2: "myvalue2",
    },
    virtualMachineName: "virtualMachineName",
});
import pulumi
import pulumi_azure_native as azure_native
console = azure_native.networkcloud.Console("console",
    console_name="default",
    enabled="True",
    expiration="2022-06-01T01:27:03.008Z",
    extended_location=azure_native.networkcloud.ExtendedLocationArgs(
        name="/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterManagerExtendedLocationName",
        type="CustomLocation",
    ),
    location="location",
    resource_group_name="resourceGroupName",
    ssh_public_key=azure_native.networkcloud.SshPublicKeyArgs(
        key_data="ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm",
    ),
    tags={
        "key1": "myvalue1",
        "key2": "myvalue2",
    },
    virtual_machine_name="virtualMachineName")
resources:
  console:
    type: azure-native:networkcloud:Console
    properties:
      consoleName: default
      enabled: True
      expiration: 2022-06-01T01:27:03.008Z
      extendedLocation:
        name: /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterManagerExtendedLocationName
        type: CustomLocation
      location: location
      resourceGroupName: resourceGroupName
      sshPublicKey:
        keyData: ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm
      tags:
        key1: myvalue1
        key2: myvalue2
      virtualMachineName: virtualMachineName
Create Console Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Console(name: string, args: ConsoleArgs, opts?: CustomResourceOptions);@overload
def Console(resource_name: str,
            args: ConsoleArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Console(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[Union[str, ConsoleEnabled]] = None,
            extended_location: Optional[ExtendedLocationArgs] = None,
            resource_group_name: Optional[str] = None,
            ssh_public_key: Optional[SshPublicKeyArgs] = None,
            virtual_machine_name: Optional[str] = None,
            console_name: Optional[str] = None,
            expiration: Optional[str] = None,
            location: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None)func NewConsole(ctx *Context, name string, args ConsoleArgs, opts ...ResourceOption) (*Console, error)public Console(string name, ConsoleArgs args, CustomResourceOptions? opts = null)
public Console(String name, ConsoleArgs args)
public Console(String name, ConsoleArgs args, CustomResourceOptions options)
type: azure-native:networkcloud:Console
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConsoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConsoleArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConsoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConsoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConsoleArgs
- 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 consoleResource = new AzureNative.Networkcloud.Console("consoleResource", new()
{
    Enabled = "string",
    ExtendedLocation = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    ResourceGroupName = "string",
    SshPublicKey = 
    {
        { "keyData", "string" },
    },
    VirtualMachineName = "string",
    ConsoleName = "string",
    Expiration = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := networkcloud.NewConsole(ctx, "consoleResource", &networkcloud.ConsoleArgs{
	Enabled: "string",
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	ResourceGroupName: "string",
	SshPublicKey: map[string]interface{}{
		"keyData": "string",
	},
	VirtualMachineName: "string",
	ConsoleName:        "string",
	Expiration:         "string",
	Location:           "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
var consoleResource = new Console("consoleResource", ConsoleArgs.builder()
    .enabled("string")
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .sshPublicKey(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .virtualMachineName("string")
    .consoleName("string")
    .expiration("string")
    .location("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
console_resource = azure_native.networkcloud.Console("consoleResource",
    enabled=string,
    extended_location={
        name: string,
        type: string,
    },
    resource_group_name=string,
    ssh_public_key={
        keyData: string,
    },
    virtual_machine_name=string,
    console_name=string,
    expiration=string,
    location=string,
    tags={
        string: string,
    })
const consoleResource = new azure_native.networkcloud.Console("consoleResource", {
    enabled: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    resourceGroupName: "string",
    sshPublicKey: {
        keyData: "string",
    },
    virtualMachineName: "string",
    consoleName: "string",
    expiration: "string",
    location: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:networkcloud:Console
properties:
    consoleName: string
    enabled: string
    expiration: string
    extendedLocation:
        name: string
        type: string
    location: string
    resourceGroupName: string
    sshPublicKey:
        keyData: string
    tags:
        string: string
    virtualMachineName: string
Console 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 Console resource accepts the following input properties:
- Enabled
string | Pulumi.Azure Native. Network Cloud. Console Enabled 
- The indicator of whether the console access is enabled.
- ExtendedLocation Pulumi.Azure Native. Network Cloud. Inputs. Extended Location 
- The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SshPublic Pulumi.Key Azure Native. Network Cloud. Inputs. Ssh Public Key 
- The SSH public key that will be provisioned for user access. The user is expected to have the corresponding SSH private key for logging in.
- VirtualMachine stringName 
- The name of the virtual machine.
- ConsoleName string
- The name of the virtual machine console.
- Expiration string
- The date and time after which the key will be disallowed access.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Enabled
string | ConsoleEnabled 
- The indicator of whether the console access is enabled.
- ExtendedLocation ExtendedLocation Args 
- The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SshPublic SshKey Public Key Args 
- The SSH public key that will be provisioned for user access. The user is expected to have the corresponding SSH private key for logging in.
- VirtualMachine stringName 
- The name of the virtual machine.
- ConsoleName string
- The name of the virtual machine console.
- Expiration string
- The date and time after which the key will be disallowed access.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- enabled
String | ConsoleEnabled 
- The indicator of whether the console access is enabled.
- extendedLocation ExtendedLocation 
- The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- sshPublic SshKey Public Key 
- The SSH public key that will be provisioned for user access. The user is expected to have the corresponding SSH private key for logging in.
- virtualMachine StringName 
- The name of the virtual machine.
- consoleName String
- The name of the virtual machine console.
- expiration String
- The date and time after which the key will be disallowed access.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- enabled
string | ConsoleEnabled 
- The indicator of whether the console access is enabled.
- extendedLocation ExtendedLocation 
- The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- sshPublic SshKey Public Key 
- The SSH public key that will be provisioned for user access. The user is expected to have the corresponding SSH private key for logging in.
- virtualMachine stringName 
- The name of the virtual machine.
- consoleName string
- The name of the virtual machine console.
- expiration string
- The date and time after which the key will be disallowed access.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- enabled
str | ConsoleEnabled 
- The indicator of whether the console access is enabled.
- extended_location ExtendedLocation Args 
- The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- ssh_public_ Sshkey Public Key Args 
- The SSH public key that will be provisioned for user access. The user is expected to have the corresponding SSH private key for logging in.
- virtual_machine_ strname 
- The name of the virtual machine.
- console_name str
- The name of the virtual machine console.
- expiration str
- The date and time after which the key will be disallowed access.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- enabled String | "True" | "False"
- The indicator of whether the console access is enabled.
- extendedLocation Property Map
- The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- sshPublic Property MapKey 
- The SSH public key that will be provisioned for user access. The user is expected to have the corresponding SSH private key for logging in.
- virtualMachine StringName 
- The name of the virtual machine.
- consoleName String
- The name of the virtual machine console.
- expiration String
- The date and time after which the key will be disallowed access.
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Console resource produces the following output properties:
- DetailedStatus string
- The more detailed status of the console.
- DetailedStatus stringMessage 
- The descriptive message about the current detailed status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- PrivateLink stringService Id 
- The resource ID of the private link service that is used to provide virtual machine console access.
- ProvisioningState string
- The provisioning state of the virtual machine console.
- SystemData Pulumi.Azure Native. Network Cloud. Outputs. System Data Response 
- 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"
- VirtualMachine stringAccess Id 
- The unique identifier for the virtual machine that is used to access the console.
- DetailedStatus string
- The more detailed status of the console.
- DetailedStatus stringMessage 
- The descriptive message about the current detailed status.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- PrivateLink stringService Id 
- The resource ID of the private link service that is used to provide virtual machine console access.
- ProvisioningState string
- The provisioning state of the virtual machine console.
- SystemData SystemData Response 
- 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"
- VirtualMachine stringAccess Id 
- The unique identifier for the virtual machine that is used to access the console.
- detailedStatus String
- The more detailed status of the console.
- detailedStatus StringMessage 
- The descriptive message about the current detailed status.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- privateLink StringService Id 
- The resource ID of the private link service that is used to provide virtual machine console access.
- provisioningState String
- The provisioning state of the virtual machine console.
- systemData SystemData Response 
- 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"
- virtualMachine StringAccess Id 
- The unique identifier for the virtual machine that is used to access the console.
- detailedStatus string
- The more detailed status of the console.
- detailedStatus stringMessage 
- The descriptive message about the current detailed status.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- privateLink stringService Id 
- The resource ID of the private link service that is used to provide virtual machine console access.
- provisioningState string
- The provisioning state of the virtual machine console.
- systemData SystemData Response 
- 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"
- virtualMachine stringAccess Id 
- The unique identifier for the virtual machine that is used to access the console.
- detailed_status str
- The more detailed status of the console.
- detailed_status_ strmessage 
- The descriptive message about the current detailed status.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- private_link_ strservice_ id 
- The resource ID of the private link service that is used to provide virtual machine console access.
- provisioning_state str
- The provisioning state of the virtual machine console.
- system_data SystemData Response 
- 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"
- virtual_machine_ straccess_ id 
- The unique identifier for the virtual machine that is used to access the console.
- detailedStatus String
- The more detailed status of the console.
- detailedStatus StringMessage 
- The descriptive message about the current detailed status.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- privateLink StringService Id 
- The resource ID of the private link service that is used to provide virtual machine console access.
- provisioningState String
- The provisioning state of the virtual machine console.
- 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"
- virtualMachine StringAccess Id 
- The unique identifier for the virtual machine that is used to access the console.
Supporting Types
ConsoleEnabled, ConsoleEnabledArgs    
- True
- True
- False
- False
- ConsoleEnabled True 
- True
- ConsoleEnabled False 
- False
- True
- True
- False
- False
- True
- True
- False
- False
- TRUE
- True
- FALSE
- False
- "True"
- True
- "False"
- False
ExtendedLocation, ExtendedLocationArgs    
ExtendedLocationResponse, ExtendedLocationResponseArgs      
SshPublicKey, SshPublicKeyArgs      
- KeyData string
- The public ssh key of the user.
- KeyData string
- The public ssh key of the user.
- keyData String
- The public ssh key of the user.
- keyData string
- The public ssh key of the user.
- key_data str
- The public ssh key of the user.
- keyData String
- The public ssh key of the user.
SshPublicKeyResponse, SshPublicKeyResponseArgs        
- KeyData string
- The public ssh key of the user.
- KeyData string
- The public ssh key of the user.
- keyData String
- The public ssh key of the user.
- keyData string
- The public ssh key of the user.
- key_data str
- The public ssh key of the user.
- keyData String
- The public ssh key of the user.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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:networkcloud:Console default /subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.NetworkCloud/virtualMachines/virtualMachineName/consoles/default 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0