azure-native.networkcloud.Console
Explore with Pulumi AI
Azure REST API version: 2023-10-01-preview. Prior API version in Azure Native 1.x: 2022-12-12-preview.
Other available API versions: 2023-07-01, 2024-06-01-preview, 2024-07-01.
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 = AzureNative.NetworkCloud.ConsoleEnabled.True,
Expiration = "2022-06-01T01:27:03.008Z",
ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/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/v2"
"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(networkcloud.ConsoleEnabledTrue),
Expiration: pulumi.String("2022-06-01T01:27:03.008Z"),
ExtendedLocation: &networkcloud.ExtendedLocationArgs{
Name: pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/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 com.pulumi.azurenative.networkcloud.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.networkcloud.inputs.SshPublicKeyArgs;
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(ExtendedLocationArgs.builder()
.name("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterManagerExtendedLocationName")
.type("CustomLocation")
.build())
.location("location")
.resourceGroupName("resourceGroupName")
.sshPublicKey(SshPublicKeyArgs.builder()
.keyData("ssh-rsa AAtsE3njSONzDYRIZv/WLjVuMfrUSByHp+jfaaOLHTIIB4fJvo6dQUZxE20w2iDHV3tEkmnTo84eba97VMueQD6OzJPEyWZMRpz8UYWOd0IXeRqiFu1lawNblZhwNT/ojNZfpB3af/YDzwQCZgTcTRyNNhL4o/blKUmug0daSsSXISTRnIDpcf5qytjs1Xo+yYyJMvzLL59mhAyb3p/cD+Y3/s3WhAx+l0XOKpzXnblrv9d3q4c2tWmm/SyFqthaqd0= admin@vm")
.build())
.tags(Map.ofEntries(
Map.entry("key1", "myvalue1"),
Map.entry("key2", "myvalue2")
))
.virtualMachineName("virtualMachineName")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
console = azure_native.networkcloud.Console("console",
console_name="default",
enabled=azure_native.networkcloud.ConsoleEnabled.TRUE,
expiration="2022-06-01T01:27:03.008Z",
extended_location={
"name": "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterManagerExtendedLocationName",
"type": "CustomLocation",
},
location="location",
resource_group_name="resourceGroupName",
ssh_public_key={
"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")
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: azure_native.networkcloud.ConsoleEnabled.True,
expiration: "2022-06-01T01:27:03.008Z",
extendedLocation: {
name: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/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",
});
resources:
console:
type: azure-native:networkcloud:Console
properties:
consoleName: default
enabled: True
expiration: 2022-06-01T01:27:03.008Z
extendedLocation:
name: /subscriptions/123e4567-e89b-12d3-a456-426655440000/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 = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
{
Name = "string",
Type = "string",
},
ResourceGroupName = "string",
SshPublicKey = new AzureNative.NetworkCloud.Inputs.SshPublicKeyArgs
{
KeyData = "string",
},
VirtualMachineName = "string",
ConsoleName = "string",
Expiration = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := networkcloud.NewConsole(ctx, "consoleResource", &networkcloud.ConsoleArgs{
Enabled: pulumi.String("string"),
ExtendedLocation: &networkcloud.ExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
SshPublicKey: &networkcloud.SshPublicKeyArgs{
KeyData: pulumi.String("string"),
},
VirtualMachineName: pulumi.String("string"),
ConsoleName: pulumi.String("string"),
Expiration: pulumi.String("string"),
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var consoleResource = new Console("consoleResource", ConsoleArgs.builder()
.enabled("string")
.extendedLocation(ExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.resourceGroupName("string")
.sshPublicKey(SshPublicKeyArgs.builder()
.keyData("string")
.build())
.virtualMachineName("string")
.consoleName("string")
.expiration("string")
.location("string")
.tags(Map.of("string", "string"))
.build());
console_resource = azure_native.networkcloud.Console("consoleResource",
enabled="string",
extended_location={
"name": "string",
"type": "string",
},
resource_group_name="string",
ssh_public_key={
"key_data": "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.
- Extended
Location 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Ssh
Public 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.
- Virtual
Machine stringName - The name of the virtual machine.
- Console
Name 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 | Console
Enabled - 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 stringName - 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 stringName - The name of the virtual machine.
- Console
Name 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 | Console
Enabled - The indicator of whether the console access is enabled.
- extended
Location ExtendedLocation - The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- ssh
Public 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.
- virtual
Machine StringName - The name of the virtual machine.
- console
Name 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 | Console
Enabled - The indicator of whether the console access is enabled.
- extended
Location ExtendedLocation - The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- ssh
Public 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.
- virtual
Machine stringName - The name of the virtual machine.
- console
Name 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 | Console
Enabled - 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.
- extended
Location Property Map - The extended location of the cluster manager associated with the cluster this virtual machine is created on.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- ssh
Public 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.
- virtual
Machine StringName - The name of the virtual machine.
- console
Name 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:
- Detailed
Status string - The more detailed status of the console.
- Detailed
Status 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
- Private
Link stringService Id - The resource ID of the private link service that is used to provide virtual machine console access.
- Provisioning
State string - The provisioning state of the virtual machine console.
- System
Data 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"
- Virtual
Machine stringAccess Id - The unique identifier for the virtual machine that is used to access the console.
- Detailed
Status string - The more detailed status of the console.
- Detailed
Status 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
- Private
Link stringService Id - The resource ID of the private link service that is used to provide virtual machine console access.
- Provisioning
State string - The provisioning state of the virtual machine console.
- System
Data 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"
- Virtual
Machine stringAccess Id - The unique identifier for the virtual machine that is used to access the console.
- detailed
Status String - The more detailed status of the console.
- detailed
Status 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
- private
Link StringService Id - The resource ID of the private link service that is used to provide virtual machine console access.
- provisioning
State String - The provisioning state of the virtual machine console.
- system
Data 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"
- virtual
Machine StringAccess Id - The unique identifier for the virtual machine that is used to access the console.
- detailed
Status string - The more detailed status of the console.
- detailed
Status 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
- private
Link stringService Id - The resource ID of the private link service that is used to provide virtual machine console access.
- provisioning
State string - The provisioning state of the virtual machine console.
- system
Data 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"
- virtual
Machine 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.
- detailed
Status String - The more detailed status of the console.
- detailed
Status 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
- private
Link StringService Id - The resource ID of the private link service that is used to provide virtual machine console access.
- provisioning
State String - The provisioning state of the virtual machine console.
- system
Data 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"
- virtual
Machine StringAccess Id - The unique identifier for the virtual machine that is used to access the console.
Supporting Types
ConsoleEnabled, ConsoleEnabledArgs
- True
- True
- False
- False
- Console
Enabled True - True
- Console
Enabled False - False
- True
- True
- False
- False
- True
- True
- False
- False
- TRUE
- True
- FALSE
- False
- "True"
- True
- "False"
- False
ExtendedLocation, ExtendedLocationArgs
ExtendedLocationResponse, ExtendedLocationResponseArgs
SshPublicKey, SshPublicKeyArgs
- Key
Data string - The SSH public key data.
- Key
Data string - The SSH public key data.
- key
Data String - The SSH public key data.
- key
Data string - The SSH public key data.
- key_
data str - The SSH public key data.
- key
Data String - The SSH public key data.
SshPublicKeyResponse, SshPublicKeyResponseArgs
- Key
Data string - The SSH public key data.
- Key
Data string - The SSH public key data.
- key
Data String - The SSH public key data.
- key
Data string - The SSH public key data.
- key_
data str - The SSH public key data.
- key
Data String - The SSH public key data.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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/{consoleName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0