azure-native.hybridcompute.Machine
Explore with Pulumi AI
Describes a hybrid machine. API Version: 2020-08-02.
Example Usage
Create or Update a Machine
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var machine = new AzureNative.HybridCompute.Machine("machine", new()
{
ClientPublicKey = "string",
Identity = new AzureNative.HybridCompute.Inputs.MachineIdentityArgs
{
Type = "SystemAssigned",
},
Location = "eastus2euap",
LocationData = new AzureNative.HybridCompute.Inputs.LocationDataArgs
{
Name = "Redmond",
},
Name = "myMachine",
ResourceGroupName = "myResourceGroup",
VmId = "b7a098cc-b0b8-46e8-a205-62f301a62a8f",
});
});
package main
import (
hybridcompute "github.com/pulumi/pulumi-azure-native-sdk/hybridcompute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hybridcompute.NewMachine(ctx, "machine", &hybridcompute.MachineArgs{
ClientPublicKey: pulumi.String("string"),
Identity: &hybridcompute.MachineIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
Location: pulumi.String("eastus2euap"),
LocationData: &hybridcompute.LocationDataArgs{
Name: pulumi.String("Redmond"),
},
Name: pulumi.String("myMachine"),
ResourceGroupName: pulumi.String("myResourceGroup"),
VmId: pulumi.String("b7a098cc-b0b8-46e8-a205-62f301a62a8f"),
})
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.hybridcompute.Machine;
import com.pulumi.azurenative.hybridcompute.MachineArgs;
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 machine = new Machine("machine", MachineArgs.builder()
.clientPublicKey("string")
.identity(Map.of("type", "SystemAssigned"))
.location("eastus2euap")
.locationData(Map.of("name", "Redmond"))
.name("myMachine")
.resourceGroupName("myResourceGroup")
.vmId("b7a098cc-b0b8-46e8-a205-62f301a62a8f")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
machine = azure_native.hybridcompute.Machine("machine",
client_public_key="string",
identity=azure_native.hybridcompute.MachineIdentityArgs(
type="SystemAssigned",
),
location="eastus2euap",
location_data=azure_native.hybridcompute.LocationDataArgs(
name="Redmond",
),
name="myMachine",
resource_group_name="myResourceGroup",
vm_id="b7a098cc-b0b8-46e8-a205-62f301a62a8f")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const machine = new azure_native.hybridcompute.Machine("machine", {
clientPublicKey: "string",
identity: {
type: "SystemAssigned",
},
location: "eastus2euap",
locationData: {
name: "Redmond",
},
name: "myMachine",
resourceGroupName: "myResourceGroup",
vmId: "b7a098cc-b0b8-46e8-a205-62f301a62a8f",
});
resources:
machine:
type: azure-native:hybridcompute:Machine
properties:
clientPublicKey: string
identity:
type: SystemAssigned
location: eastus2euap
locationData:
name: Redmond
name: myMachine
resourceGroupName: myResourceGroup
vmId: b7a098cc-b0b8-46e8-a205-62f301a62a8f
Create Machine Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Machine(name: string, args: MachineArgs, opts?: CustomResourceOptions);
@overload
def Machine(resource_name: str,
args: MachineArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Machine(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
client_public_key: Optional[str] = None,
identity: Optional[MachineIdentityArgs] = None,
location: Optional[str] = None,
location_data: Optional[LocationDataArgs] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
vm_id: Optional[str] = None)
func NewMachine(ctx *Context, name string, args MachineArgs, opts ...ResourceOption) (*Machine, error)
public Machine(string name, MachineArgs args, CustomResourceOptions? opts = null)
public Machine(String name, MachineArgs args)
public Machine(String name, MachineArgs args, CustomResourceOptions options)
type: azure-native:hybridcompute:Machine
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 MachineArgs
- 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 MachineArgs
- 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 MachineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MachineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MachineArgs
- 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 machineResource = new AzureNative.Hybridcompute.Machine("machineResource", new()
{
ResourceGroupName = "string",
ClientPublicKey = "string",
Identity =
{
{ "type", "string" },
},
Location = "string",
LocationData =
{
{ "name", "string" },
{ "city", "string" },
{ "countryOrRegion", "string" },
{ "district", "string" },
},
Name = "string",
Tags =
{
{ "string", "string" },
},
VmId = "string",
});
example, err := hybridcompute.NewMachine(ctx, "machineResource", &hybridcompute.MachineArgs{
ResourceGroupName: "string",
ClientPublicKey: "string",
Identity: map[string]interface{}{
"type": "string",
},
Location: "string",
LocationData: map[string]interface{}{
"name": "string",
"city": "string",
"countryOrRegion": "string",
"district": "string",
},
Name: "string",
Tags: map[string]interface{}{
"string": "string",
},
VmId: "string",
})
var machineResource = new Machine("machineResource", MachineArgs.builder()
.resourceGroupName("string")
.clientPublicKey("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.locationData(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.name("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.vmId("string")
.build());
machine_resource = azure_native.hybridcompute.Machine("machineResource",
resource_group_name=string,
client_public_key=string,
identity={
type: string,
},
location=string,
location_data={
name: string,
city: string,
countryOrRegion: string,
district: string,
},
name=string,
tags={
string: string,
},
vm_id=string)
const machineResource = new azure_native.hybridcompute.Machine("machineResource", {
resourceGroupName: "string",
clientPublicKey: "string",
identity: {
type: "string",
},
location: "string",
locationData: {
name: "string",
city: "string",
countryOrRegion: "string",
district: "string",
},
name: "string",
tags: {
string: "string",
},
vmId: "string",
});
type: azure-native:hybridcompute:Machine
properties:
clientPublicKey: string
identity:
type: string
location: string
locationData:
city: string
countryOrRegion: string
district: string
name: string
name: string
resourceGroupName: string
tags:
string: string
vmId: string
Machine 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 Machine resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Client
Public stringKey - Public Key that the client provides to be used during initial resource onboarding
- Identity
Pulumi.
Azure Native. Hybrid Compute. Inputs. Machine Identity - Location string
- The geo-location where the resource lives
- Location
Data Pulumi.Azure Native. Hybrid Compute. Inputs. Location Data - Metadata pertaining to the geographic location of the resource.
- Name string
- The name of the hybrid machine.
- Dictionary<string, string>
- Resource tags.
- Vm
Id string - Specifies the hybrid machine unique ID.
- Resource
Group stringName - The name of the resource group.
- Client
Public stringKey - Public Key that the client provides to be used during initial resource onboarding
- Identity
Machine
Identity Args - Location string
- The geo-location where the resource lives
- Location
Data LocationData Args - Metadata pertaining to the geographic location of the resource.
- Name string
- The name of the hybrid machine.
- map[string]string
- Resource tags.
- Vm
Id string - Specifies the hybrid machine unique ID.
- resource
Group StringName - The name of the resource group.
- client
Public StringKey - Public Key that the client provides to be used during initial resource onboarding
- identity
Machine
Identity - location String
- The geo-location where the resource lives
- location
Data LocationData - Metadata pertaining to the geographic location of the resource.
- name String
- The name of the hybrid machine.
- Map<String,String>
- Resource tags.
- vm
Id String - Specifies the hybrid machine unique ID.
- resource
Group stringName - The name of the resource group.
- client
Public stringKey - Public Key that the client provides to be used during initial resource onboarding
- identity
Machine
Identity - location string
- The geo-location where the resource lives
- location
Data LocationData - Metadata pertaining to the geographic location of the resource.
- name string
- The name of the hybrid machine.
- {[key: string]: string}
- Resource tags.
- vm
Id string - Specifies the hybrid machine unique ID.
- resource_
group_ strname - The name of the resource group.
- client_
public_ strkey - Public Key that the client provides to be used during initial resource onboarding
- identity
Machine
Identity Args - location str
- The geo-location where the resource lives
- location_
data LocationData Args - Metadata pertaining to the geographic location of the resource.
- name str
- The name of the hybrid machine.
- Mapping[str, str]
- Resource tags.
- vm_
id str - Specifies the hybrid machine unique ID.
- resource
Group StringName - The name of the resource group.
- client
Public StringKey - Public Key that the client provides to be used during initial resource onboarding
- identity Property Map
- location String
- The geo-location where the resource lives
- location
Data Property Map - Metadata pertaining to the geographic location of the resource.
- name String
- The name of the hybrid machine.
- Map<String>
- Resource tags.
- vm
Id String - Specifies the hybrid machine unique ID.
Outputs
All input properties are implicitly available as output properties. Additionally, the Machine resource produces the following output properties:
- Ad
Fqdn string - Specifies the AD fully qualified display name.
- Agent
Version string - The hybrid machine agent full version.
- Display
Name string - Specifies the hybrid machine display name.
- Dns
Fqdn string - Specifies the DNS fully qualified display name.
- Domain
Name string - Specifies the Windows domain name.
- Error
Details List<Pulumi.Azure Native. Hybrid Compute. Outputs. Error Detail Response> - Details about the error state.
- Extensions
List<Pulumi.
Azure Native. Hybrid Compute. Outputs. Machine Extension Instance View Response> - Machine Extensions information
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Status stringChange - The time of the last status change.
- Machine
Fqdn string - Specifies the hybrid machine FQDN.
- Os
Name string - The Operating System running on the hybrid machine.
- Os
Sku string - Specifies the Operating System product SKU.
- Os
Version string - The version of Operating System running on the hybrid machine.
- Provisioning
State string - The provisioning state, which only appears in the response.
- Status string
- The status of the hybrid machine agent.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Vm
Uuid string - Specifies the Arc Machine's unique SMBIOS ID
- Os
Profile Pulumi.Azure Native. Hybrid Compute. Outputs. Machine Properties Response Os Profile - Specifies the operating system settings for the hybrid machine.
- Ad
Fqdn string - Specifies the AD fully qualified display name.
- Agent
Version string - The hybrid machine agent full version.
- Display
Name string - Specifies the hybrid machine display name.
- Dns
Fqdn string - Specifies the DNS fully qualified display name.
- Domain
Name string - Specifies the Windows domain name.
- Error
Details []ErrorDetail Response - Details about the error state.
- Extensions
[]Machine
Extension Instance View Response - Machine Extensions information
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Status stringChange - The time of the last status change.
- Machine
Fqdn string - Specifies the hybrid machine FQDN.
- Os
Name string - The Operating System running on the hybrid machine.
- Os
Sku string - Specifies the Operating System product SKU.
- Os
Version string - The version of Operating System running on the hybrid machine.
- Provisioning
State string - The provisioning state, which only appears in the response.
- Status string
- The status of the hybrid machine agent.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Vm
Uuid string - Specifies the Arc Machine's unique SMBIOS ID
- Os
Profile MachineProperties Response Os Profile - Specifies the operating system settings for the hybrid machine.
- ad
Fqdn String - Specifies the AD fully qualified display name.
- agent
Version String - The hybrid machine agent full version.
- display
Name String - Specifies the hybrid machine display name.
- dns
Fqdn String - Specifies the DNS fully qualified display name.
- domain
Name String - Specifies the Windows domain name.
- error
Details List<ErrorDetail Response> - Details about the error state.
- extensions
List<Machine
Extension Instance View Response> - Machine Extensions information
- id String
- The provider-assigned unique ID for this managed resource.
- last
Status StringChange - The time of the last status change.
- machine
Fqdn String - Specifies the hybrid machine FQDN.
- os
Name String - The Operating System running on the hybrid machine.
- os
Sku String - Specifies the Operating System product SKU.
- os
Version String - The version of Operating System running on the hybrid machine.
- provisioning
State String - The provisioning state, which only appears in the response.
- status String
- The status of the hybrid machine agent.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vm
Uuid String - Specifies the Arc Machine's unique SMBIOS ID
- os
Profile MachineProperties Response Os Profile - Specifies the operating system settings for the hybrid machine.
- ad
Fqdn string - Specifies the AD fully qualified display name.
- agent
Version string - The hybrid machine agent full version.
- display
Name string - Specifies the hybrid machine display name.
- dns
Fqdn string - Specifies the DNS fully qualified display name.
- domain
Name string - Specifies the Windows domain name.
- error
Details ErrorDetail Response[] - Details about the error state.
- extensions
Machine
Extension Instance View Response[] - Machine Extensions information
- id string
- The provider-assigned unique ID for this managed resource.
- last
Status stringChange - The time of the last status change.
- machine
Fqdn string - Specifies the hybrid machine FQDN.
- os
Name string - The Operating System running on the hybrid machine.
- os
Sku string - Specifies the Operating System product SKU.
- os
Version string - The version of Operating System running on the hybrid machine.
- provisioning
State string - The provisioning state, which only appears in the response.
- status string
- The status of the hybrid machine agent.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vm
Uuid string - Specifies the Arc Machine's unique SMBIOS ID
- os
Profile MachineProperties Response Os Profile - Specifies the operating system settings for the hybrid machine.
- ad_
fqdn str - Specifies the AD fully qualified display name.
- agent_
version str - The hybrid machine agent full version.
- display_
name str - Specifies the hybrid machine display name.
- dns_
fqdn str - Specifies the DNS fully qualified display name.
- domain_
name str - Specifies the Windows domain name.
- error_
details Sequence[ErrorDetail Response] - Details about the error state.
- extensions
Sequence[Machine
Extension Instance View Response] - Machine Extensions information
- id str
- The provider-assigned unique ID for this managed resource.
- last_
status_ strchange - The time of the last status change.
- machine_
fqdn str - Specifies the hybrid machine FQDN.
- os_
name str - The Operating System running on the hybrid machine.
- os_
sku str - Specifies the Operating System product SKU.
- os_
version str - The version of Operating System running on the hybrid machine.
- provisioning_
state str - The provisioning state, which only appears in the response.
- status str
- The status of the hybrid machine agent.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vm_
uuid str - Specifies the Arc Machine's unique SMBIOS ID
- os_
profile MachineProperties Response Os Profile - Specifies the operating system settings for the hybrid machine.
- ad
Fqdn String - Specifies the AD fully qualified display name.
- agent
Version String - The hybrid machine agent full version.
- display
Name String - Specifies the hybrid machine display name.
- dns
Fqdn String - Specifies the DNS fully qualified display name.
- domain
Name String - Specifies the Windows domain name.
- error
Details List<Property Map> - Details about the error state.
- extensions List<Property Map>
- Machine Extensions information
- id String
- The provider-assigned unique ID for this managed resource.
- last
Status StringChange - The time of the last status change.
- machine
Fqdn String - Specifies the hybrid machine FQDN.
- os
Name String - The Operating System running on the hybrid machine.
- os
Sku String - Specifies the Operating System product SKU.
- os
Version String - The version of Operating System running on the hybrid machine.
- provisioning
State String - The provisioning state, which only appears in the response.
- status String
- The status of the hybrid machine agent.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- vm
Uuid String - Specifies the Arc Machine's unique SMBIOS ID
- os
Profile Property Map - Specifies the operating system settings for the hybrid machine.
Supporting Types
ErrorDetailResponse, ErrorDetailResponseArgs
- Code string
- The error's code.
- Message string
- A human readable error message.
- Details
List<Pulumi.
Azure Native. Hybrid Compute. Inputs. Error Detail Response> - Additional error details.
- Target string
- Indicates which property in the request is responsible for the error.
- Code string
- The error's code.
- Message string
- A human readable error message.
- Details
[]Error
Detail Response - Additional error details.
- Target string
- Indicates which property in the request is responsible for the error.
- code String
- The error's code.
- message String
- A human readable error message.
- details
List<Error
Detail Response> - Additional error details.
- target String
- Indicates which property in the request is responsible for the error.
- code string
- The error's code.
- message string
- A human readable error message.
- details
Error
Detail Response[] - Additional error details.
- target string
- Indicates which property in the request is responsible for the error.
- code str
- The error's code.
- message str
- A human readable error message.
- details
Sequence[Error
Detail Response] - Additional error details.
- target str
- Indicates which property in the request is responsible for the error.
- code String
- The error's code.
- message String
- A human readable error message.
- details List<Property Map>
- Additional error details.
- target String
- Indicates which property in the request is responsible for the error.
LocationData, LocationDataArgs
- Name string
- A canonical name for the geographic or physical location.
- City string
- The city or locality where the resource is located.
- Country
Or stringRegion - The country or region where the resource is located
- District string
- The district, state, or province where the resource is located.
- Name string
- A canonical name for the geographic or physical location.
- City string
- The city or locality where the resource is located.
- Country
Or stringRegion - The country or region where the resource is located
- District string
- The district, state, or province where the resource is located.
- name String
- A canonical name for the geographic or physical location.
- city String
- The city or locality where the resource is located.
- country
Or StringRegion - The country or region where the resource is located
- district String
- The district, state, or province where the resource is located.
- name string
- A canonical name for the geographic or physical location.
- city string
- The city or locality where the resource is located.
- country
Or stringRegion - The country or region where the resource is located
- district string
- The district, state, or province where the resource is located.
- name str
- A canonical name for the geographic or physical location.
- city str
- The city or locality where the resource is located.
- country_
or_ strregion - The country or region where the resource is located
- district str
- The district, state, or province where the resource is located.
- name String
- A canonical name for the geographic or physical location.
- city String
- The city or locality where the resource is located.
- country
Or StringRegion - The country or region where the resource is located
- district String
- The district, state, or province where the resource is located.
LocationDataResponse, LocationDataResponseArgs
- Name string
- A canonical name for the geographic or physical location.
- City string
- The city or locality where the resource is located.
- Country
Or stringRegion - The country or region where the resource is located
- District string
- The district, state, or province where the resource is located.
- Name string
- A canonical name for the geographic or physical location.
- City string
- The city or locality where the resource is located.
- Country
Or stringRegion - The country or region where the resource is located
- District string
- The district, state, or province where the resource is located.
- name String
- A canonical name for the geographic or physical location.
- city String
- The city or locality where the resource is located.
- country
Or StringRegion - The country or region where the resource is located
- district String
- The district, state, or province where the resource is located.
- name string
- A canonical name for the geographic or physical location.
- city string
- The city or locality where the resource is located.
- country
Or stringRegion - The country or region where the resource is located
- district string
- The district, state, or province where the resource is located.
- name str
- A canonical name for the geographic or physical location.
- city str
- The city or locality where the resource is located.
- country_
or_ strregion - The country or region where the resource is located
- district str
- The district, state, or province where the resource is located.
- name String
- A canonical name for the geographic or physical location.
- city String
- The city or locality where the resource is located.
- country
Or StringRegion - The country or region where the resource is located
- district String
- The district, state, or province where the resource is located.
MachineExtensionInstanceViewResponse, MachineExtensionInstanceViewResponseArgs
- Name string
- The machine extension name.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Status
Pulumi.
Azure Native. Hybrid Compute. Inputs. Machine Extension Instance View Response Status - Instance view status.
- Name string
- The machine extension name.
- Type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- Type
Handler stringVersion - Specifies the version of the script handler.
- Status
Machine
Extension Instance View Response Status - Instance view status.
- name String
- The machine extension name.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- status
Machine
Extension Instance View Response Status - Instance view status.
- name string
- The machine extension name.
- type string
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler stringVersion - Specifies the version of the script handler.
- status
Machine
Extension Instance View Response Status - Instance view status.
- name str
- The machine extension name.
- type str
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type_
handler_ strversion - Specifies the version of the script handler.
- status
Machine
Extension Instance View Response Status - Instance view status.
- name String
- The machine extension name.
- type String
- Specifies the type of the extension; an example is "CustomScriptExtension".
- type
Handler StringVersion - Specifies the version of the script handler.
- status Property Map
- Instance view status.
MachineExtensionInstanceViewResponseStatus, MachineExtensionInstanceViewResponseStatusArgs
- Code string
- The status code.
- Display
Status string - The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- Code string
- The status code.
- Display
Status string - The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- code String
- The status code.
- display
Status String - The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
- code string
- The status code.
- display
Status string - The short localizable label for the status.
- level string
- The level code.
- message string
- The detailed status message, including for alerts and error messages.
- time string
- The time of the status.
- code str
- The status code.
- display_
status str - The short localizable label for the status.
- level str
- The level code.
- message str
- The detailed status message, including for alerts and error messages.
- time str
- The time of the status.
- code String
- The status code.
- display
Status String - The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
MachineIdentity, MachineIdentityArgs
- Type string
- The identity type.
- Type string
- The identity type.
- type String
- The identity type.
- type string
- The identity type.
- type str
- The identity type.
- type String
- The identity type.
MachinePropertiesResponseOsProfile, MachinePropertiesResponseOsProfileArgs
- Computer
Name string - Specifies the host OS name of the hybrid machine.
- Computer
Name string - Specifies the host OS name of the hybrid machine.
- computer
Name String - Specifies the host OS name of the hybrid machine.
- computer
Name string - Specifies the host OS name of the hybrid machine.
- computer_
name str - Specifies the host OS name of the hybrid machine.
- computer
Name String - Specifies the host OS name of the hybrid machine.
MachineResponseIdentity, MachineResponseIdentityArgs
- Principal
Id string - The identity's principal id.
- Tenant
Id string - The identity's tenant id.
- Type string
- The identity type.
- Principal
Id string - The identity's principal id.
- Tenant
Id string - The identity's tenant id.
- Type string
- The identity type.
- principal
Id String - The identity's principal id.
- tenant
Id String - The identity's tenant id.
- type String
- The identity type.
- principal
Id string - The identity's principal id.
- tenant
Id string - The identity's tenant id.
- type string
- The identity type.
- principal_
id str - The identity's principal id.
- tenant_
id str - The identity's tenant id.
- type str
- The identity type.
- principal
Id String - The identity's principal id.
- tenant
Id String - The identity's tenant id.
- type String
- The identity type.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hybridcompute:Machine myMachine /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.HybridCompute/machines/myMachine
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