Cluster Jobs resource
Uses Azure REST API version 2025-12-01-preview.
Example Usage
EdgeMachineJobs_CreateOrUpdate_CollectLog
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var edgeMachineJob = new AzureNative.AzureStackHCI.EdgeMachineJob("edgeMachineJob", new()
{
EdgeMachineName = "machine1",
JobsName = "triggerLogCollection",
Properties =
{
{ "deploymentMode", AzureNative.AzureStackHCI.DeploymentMode.Validate },
{ "jobType", "EdgeMachineJobProperties" },
},
ResourceGroupName = "ArcInstance-rg",
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewEdgeMachineJob(ctx, "edgeMachineJob", &azurestackhci.EdgeMachineJobArgs{
EdgeMachineName: pulumi.String("machine1"),
JobsName: pulumi.String("triggerLogCollection"),
Properties: interface{}{
DeploymentMode: pulumi.String(azurestackhci.DeploymentModeValidate),
JobType: pulumi.String("EdgeMachineJobProperties"),
},
ResourceGroupName: pulumi.String("ArcInstance-rg"),
})
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.azurestackhci.EdgeMachineJob;
import com.pulumi.azurenative.azurestackhci.EdgeMachineJobArgs;
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 edgeMachineJob = new EdgeMachineJob("edgeMachineJob", EdgeMachineJobArgs.builder()
.edgeMachineName("machine1")
.jobsName("triggerLogCollection")
.properties(DownloadOsJobPropertiesArgs.builder()
.deploymentMode("Validate")
.jobType("EdgeMachineJobProperties")
.build())
.resourceGroupName("ArcInstance-rg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const edgeMachineJob = new azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob", {
edgeMachineName: "machine1",
jobsName: "triggerLogCollection",
properties: {
deploymentMode: azure_native.azurestackhci.DeploymentMode.Validate,
jobType: "EdgeMachineJobProperties",
},
resourceGroupName: "ArcInstance-rg",
});
import pulumi
import pulumi_azure_native as azure_native
edge_machine_job = azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob",
edge_machine_name="machine1",
jobs_name="triggerLogCollection",
properties={
"deployment_mode": azure_native.azurestackhci.DeploymentMode.VALIDATE,
"job_type": "EdgeMachineJobProperties",
},
resource_group_name="ArcInstance-rg")
resources:
edgeMachineJob:
type: azure-native:azurestackhci:EdgeMachineJob
properties:
edgeMachineName: machine1
jobsName: triggerLogCollection
properties:
deploymentMode: Validate
jobType: EdgeMachineJobProperties
resourceGroupName: ArcInstance-rg
EdgeMachineJobs_CreateOrUpdate_DownloadOs
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var edgeMachineJob = new AzureNative.AzureStackHCI.EdgeMachineJob("edgeMachineJob", new()
{
EdgeMachineName = "machine1",
JobsName = "DownloadOs",
Properties = new AzureNative.AzureStackHCI.Inputs.DownloadOsJobPropertiesArgs
{
DeploymentMode = AzureNative.AzureStackHCI.DeploymentMode.Deploy,
DownloadRequest = new AzureNative.AzureStackHCI.Inputs.DownloadRequestArgs
{
OsProfile = new AzureNative.AzureStackHCI.Inputs.DownloadOsProfileArgs
{
GpgPubKey = "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
ImageHash = "sha256:a8b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1",
OsImageLocation = "https://aka.ms/aep/azlinux3.0",
OsName = "AzureLinux",
OsType = "AzureLinux",
OsVersion = "3.0",
VsrVersion = "1.0.0",
},
Target = AzureNative.AzureStackHCI.ProvisioningOsType.AzureLinux,
},
JobType = "DownloadOs",
},
ResourceGroupName = "ArcInstance-rg",
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewEdgeMachineJob(ctx, "edgeMachineJob", &azurestackhci.EdgeMachineJobArgs{
EdgeMachineName: pulumi.String("machine1"),
JobsName: pulumi.String("DownloadOs"),
Properties: &azurestackhci.DownloadOsJobPropertiesArgs{
DeploymentMode: pulumi.String(azurestackhci.DeploymentModeDeploy),
DownloadRequest: &azurestackhci.DownloadRequestArgs{
OsProfile: &azurestackhci.DownloadOsProfileArgs{
GpgPubKey: pulumi.String("LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t"),
ImageHash: pulumi.String("sha256:a8b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1"),
OsImageLocation: pulumi.String("https://aka.ms/aep/azlinux3.0"),
OsName: pulumi.String("AzureLinux"),
OsType: pulumi.String("AzureLinux"),
OsVersion: pulumi.String("3.0"),
VsrVersion: pulumi.String("1.0.0"),
},
Target: pulumi.String(azurestackhci.ProvisioningOsTypeAzureLinux),
},
JobType: pulumi.String("DownloadOs"),
},
ResourceGroupName: pulumi.String("ArcInstance-rg"),
})
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.azurestackhci.EdgeMachineJob;
import com.pulumi.azurenative.azurestackhci.EdgeMachineJobArgs;
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 edgeMachineJob = new EdgeMachineJob("edgeMachineJob", EdgeMachineJobArgs.builder()
.edgeMachineName("machine1")
.jobsName("DownloadOs")
.properties(DownloadOsJobPropertiesArgs.builder()
.deploymentMode("Deploy")
.downloadRequest(DownloadRequestArgs.builder()
.osProfile(DownloadOsProfileArgs.builder()
.gpgPubKey("LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t")
.imageHash("sha256:a8b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1")
.osImageLocation("https://aka.ms/aep/azlinux3.0")
.osName("AzureLinux")
.osType("AzureLinux")
.osVersion("3.0")
.vsrVersion("1.0.0")
.build())
.target("AzureLinux")
.build())
.jobType("DownloadOs")
.build())
.resourceGroupName("ArcInstance-rg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const edgeMachineJob = new azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob", {
edgeMachineName: "machine1",
jobsName: "DownloadOs",
properties: {
deploymentMode: azure_native.azurestackhci.DeploymentMode.Deploy,
downloadRequest: {
osProfile: {
gpgPubKey: "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
imageHash: "sha256:a8b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1",
osImageLocation: "https://aka.ms/aep/azlinux3.0",
osName: "AzureLinux",
osType: "AzureLinux",
osVersion: "3.0",
vsrVersion: "1.0.0",
},
target: azure_native.azurestackhci.ProvisioningOsType.AzureLinux,
},
jobType: "DownloadOs",
},
resourceGroupName: "ArcInstance-rg",
});
import pulumi
import pulumi_azure_native as azure_native
edge_machine_job = azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob",
edge_machine_name="machine1",
jobs_name="DownloadOs",
properties={
"deployment_mode": azure_native.azurestackhci.DeploymentMode.DEPLOY,
"download_request": {
"os_profile": {
"gpg_pub_key": "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
"image_hash": "sha256:a8b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1",
"os_image_location": "https://aka.ms/aep/azlinux3.0",
"os_name": "AzureLinux",
"os_type": "AzureLinux",
"os_version": "3.0",
"vsr_version": "1.0.0",
},
"target": azure_native.azurestackhci.ProvisioningOsType.AZURE_LINUX,
},
"job_type": "DownloadOs",
},
resource_group_name="ArcInstance-rg")
resources:
edgeMachineJob:
type: azure-native:azurestackhci:EdgeMachineJob
properties:
edgeMachineName: machine1
jobsName: DownloadOs
properties:
deploymentMode: Deploy
downloadRequest:
osProfile:
gpgPubKey: LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t
imageHash: sha256:a8b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1
osImageLocation: https://aka.ms/aep/azlinux3.0
osName: AzureLinux
osType: AzureLinux
osVersion: '3.0'
vsrVersion: 1.0.0
target: AzureLinux
jobType: DownloadOs
resourceGroupName: ArcInstance-rg
EdgeMachineJobs_CreateOrUpdate_ProvisionOs
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var edgeMachineJob = new AzureNative.AzureStackHCI.EdgeMachineJob("edgeMachineJob", new()
{
EdgeMachineName = "machine1",
JobsName = "ProvisionOs",
Properties = new AzureNative.AzureStackHCI.Inputs.ProvisionOsJobPropertiesArgs
{
DeploymentMode = AzureNative.AzureStackHCI.DeploymentMode.Deploy,
JobType = "ProvisionOs",
ProvisioningRequest = new AzureNative.AzureStackHCI.Inputs.ProvisioningRequestArgs
{
CustomConfiguration = "eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==",
DeviceConfiguration = new AzureNative.AzureStackHCI.Inputs.TargetDeviceConfigurationArgs
{
HostName = "634b9db8-83e1-46ed-b391-c1614e2d0097",
Network = new AzureNative.AzureStackHCI.Inputs.NetworkConfigurationArgs
{
NetworkAdapters = new[]
{
new AzureNative.AzureStackHCI.Inputs.NetworkAdapterArgs
{
DnsAddressArray = new[]
{
"8.8.8.8",
},
Gateway = "",
IpAddress = "",
IpAddressRange = new AzureNative.AzureStackHCI.Inputs.IpAddressRangeArgs
{
EndIp = "",
StartIp = "",
},
IpAssignmentType = AzureNative.AzureStackHCI.IpAssignmentType.Automatic,
SubnetMask = "",
VlanId = "0",
},
},
},
Storage = new AzureNative.AzureStackHCI.Inputs.StorageConfigurationArgs
{
PartitionSize = "30GB",
},
Time = new AzureNative.AzureStackHCI.Inputs.TimeConfigurationArgs
{
PrimaryTimeServer = "",
SecondaryTimeServer = "",
TimeZone = "UTC",
},
WebProxy = new AzureNative.AzureStackHCI.Inputs.WebProxyConfigurationArgs
{
BypassList = new() { },
ConnectionUri = "https://microsoft.com/a",
Port = "",
},
},
OnboardingConfiguration = new AzureNative.AzureStackHCI.Inputs.OnboardingConfigurationArgs
{
ArcVirtualMachineId = "634b9db8-83e1-46ed-b391-c1614e2d0097",
Location = "eastus",
ResourceId = "/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1",
TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47",
Type = AzureNative.AzureStackHCI.OnboardingResourceType.HybridComputeMachine,
},
OsProfile = new AzureNative.AzureStackHCI.Inputs.OsProvisionProfileArgs
{
GpgPubKey = "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
ImageHash = "sha256:a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456",
OperationType = AzureNative.AzureStackHCI.OSOperationType.Provision,
OsImageLocation = "https://aka.ms/aep/azlinux3.0",
OsName = "AzureLinux",
OsType = "AzureLinux",
OsVersion = "3.0",
VsrVersion = "1.0.0",
},
Target = AzureNative.AzureStackHCI.ProvisioningOsType.AzureLinux,
UserDetails = new[]
{
new AzureNative.AzureStackHCI.Inputs.UserDetailsArgs
{
SecretLocation = "https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00",
SecretType = AzureNative.AzureStackHCI.SecretType.KeyVault,
SshPubKey = new[]
{
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com",
},
UserName = "edgeuser",
},
},
},
},
ResourceGroupName = "ArcInstance-rg",
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewEdgeMachineJob(ctx, "edgeMachineJob", &azurestackhci.EdgeMachineJobArgs{
EdgeMachineName: pulumi.String("machine1"),
JobsName: pulumi.String("ProvisionOs"),
Properties: &azurestackhci.ProvisionOsJobPropertiesArgs{
DeploymentMode: pulumi.String(azurestackhci.DeploymentModeDeploy),
JobType: pulumi.String("ProvisionOs"),
ProvisioningRequest: &azurestackhci.ProvisioningRequestArgs{
CustomConfiguration: pulumi.String("eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ=="),
DeviceConfiguration: &azurestackhci.TargetDeviceConfigurationArgs{
HostName: pulumi.String("634b9db8-83e1-46ed-b391-c1614e2d0097"),
Network: &azurestackhci.NetworkConfigurationArgs{
NetworkAdapters: azurestackhci.NetworkAdapterArray{
&azurestackhci.NetworkAdapterArgs{
DnsAddressArray: pulumi.StringArray{
pulumi.String("8.8.8.8"),
},
Gateway: pulumi.String(""),
IpAddress: pulumi.String(""),
IpAddressRange: &azurestackhci.IpAddressRangeArgs{
EndIp: pulumi.String(""),
StartIp: pulumi.String(""),
},
IpAssignmentType: pulumi.String(azurestackhci.IpAssignmentTypeAutomatic),
SubnetMask: pulumi.String(""),
VlanId: pulumi.String("0"),
},
},
},
Storage: &azurestackhci.StorageConfigurationArgs{
PartitionSize: pulumi.String("30GB"),
},
Time: &azurestackhci.TimeConfigurationArgs{
PrimaryTimeServer: pulumi.String(""),
SecondaryTimeServer: pulumi.String(""),
TimeZone: pulumi.String("UTC"),
},
WebProxy: &azurestackhci.WebProxyConfigurationArgs{
BypassList: pulumi.StringArray{},
ConnectionUri: pulumi.String("https://microsoft.com/a"),
Port: pulumi.String(""),
},
},
OnboardingConfiguration: &azurestackhci.OnboardingConfigurationArgs{
ArcVirtualMachineId: pulumi.String("634b9db8-83e1-46ed-b391-c1614e2d0097"),
Location: pulumi.String("eastus"),
ResourceId: pulumi.String("/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1"),
TenantId: pulumi.String("72f988bf-86f1-41af-91ab-2d7cd011db47"),
Type: pulumi.String(azurestackhci.OnboardingResourceTypeHybridComputeMachine),
},
OsProfile: &azurestackhci.OsProvisionProfileArgs{
GpgPubKey: pulumi.String("LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t"),
ImageHash: pulumi.String("sha256:a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456"),
OperationType: pulumi.String(azurestackhci.OSOperationTypeProvision),
OsImageLocation: pulumi.String("https://aka.ms/aep/azlinux3.0"),
OsName: pulumi.String("AzureLinux"),
OsType: pulumi.String("AzureLinux"),
OsVersion: pulumi.String("3.0"),
VsrVersion: pulumi.String("1.0.0"),
},
Target: pulumi.String(azurestackhci.ProvisioningOsTypeAzureLinux),
UserDetails: azurestackhci.UserDetailsArray{
&azurestackhci.UserDetailsArgs{
SecretLocation: pulumi.String("https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00"),
SecretType: pulumi.String(azurestackhci.SecretTypeKeyVault),
SshPubKey: pulumi.StringArray{
pulumi.String("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com"),
},
UserName: pulumi.String("edgeuser"),
},
},
},
},
ResourceGroupName: pulumi.String("ArcInstance-rg"),
})
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.azurestackhci.EdgeMachineJob;
import com.pulumi.azurenative.azurestackhci.EdgeMachineJobArgs;
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 edgeMachineJob = new EdgeMachineJob("edgeMachineJob", EdgeMachineJobArgs.builder()
.edgeMachineName("machine1")
.jobsName("ProvisionOs")
.properties(ProvisionOsJobPropertiesArgs.builder()
.deploymentMode("Deploy")
.jobType("ProvisionOs")
.provisioningRequest(ProvisioningRequestArgs.builder()
.customConfiguration("eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==")
.deviceConfiguration(TargetDeviceConfigurationArgs.builder()
.hostName("634b9db8-83e1-46ed-b391-c1614e2d0097")
.network(NetworkConfigurationArgs.builder()
.networkAdapters(NetworkAdapterArgs.builder()
.dnsAddressArray("8.8.8.8")
.gateway("")
.ipAddress("")
.ipAddressRange(IpAddressRangeArgs.builder()
.endIp("")
.startIp("")
.build())
.ipAssignmentType("Automatic")
.subnetMask("")
.vlanId("0")
.build())
.build())
.storage(StorageConfigurationArgs.builder()
.partitionSize("30GB")
.build())
.time(TimeConfigurationArgs.builder()
.primaryTimeServer("")
.secondaryTimeServer("")
.timeZone("UTC")
.build())
.webProxy(WebProxyConfigurationArgs.builder()
.bypassList()
.connectionUri("https://microsoft.com/a")
.port("")
.build())
.build())
.onboardingConfiguration(OnboardingConfigurationArgs.builder()
.arcVirtualMachineId("634b9db8-83e1-46ed-b391-c1614e2d0097")
.location("eastus")
.resourceId("/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1")
.tenantId("72f988bf-86f1-41af-91ab-2d7cd011db47")
.type("HybridComputeMachine")
.build())
.osProfile(OsProvisionProfileArgs.builder()
.gpgPubKey("LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t")
.imageHash("sha256:a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456")
.operationType("Provision")
.osImageLocation("https://aka.ms/aep/azlinux3.0")
.osName("AzureLinux")
.osType("AzureLinux")
.osVersion("3.0")
.vsrVersion("1.0.0")
.build())
.target("AzureLinux")
.userDetails(UserDetailsArgs.builder()
.secretLocation("https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00")
.secretType("KeyVault")
.sshPubKey("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com")
.userName("edgeuser")
.build())
.build())
.build())
.resourceGroupName("ArcInstance-rg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const edgeMachineJob = new azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob", {
edgeMachineName: "machine1",
jobsName: "ProvisionOs",
properties: {
deploymentMode: azure_native.azurestackhci.DeploymentMode.Deploy,
jobType: "ProvisionOs",
provisioningRequest: {
customConfiguration: "eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==",
deviceConfiguration: {
hostName: "634b9db8-83e1-46ed-b391-c1614e2d0097",
network: {
networkAdapters: [{
dnsAddressArray: ["8.8.8.8"],
gateway: "",
ipAddress: "",
ipAddressRange: {
endIp: "",
startIp: "",
},
ipAssignmentType: azure_native.azurestackhci.IpAssignmentType.Automatic,
subnetMask: "",
vlanId: "0",
}],
},
storage: {
partitionSize: "30GB",
},
time: {
primaryTimeServer: "",
secondaryTimeServer: "",
timeZone: "UTC",
},
webProxy: {
bypassList: [],
connectionUri: "https://microsoft.com/a",
port: "",
},
},
onboardingConfiguration: {
arcVirtualMachineId: "634b9db8-83e1-46ed-b391-c1614e2d0097",
location: "eastus",
resourceId: "/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1",
tenantId: "72f988bf-86f1-41af-91ab-2d7cd011db47",
type: azure_native.azurestackhci.OnboardingResourceType.HybridComputeMachine,
},
osProfile: {
gpgPubKey: "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
imageHash: "sha256:a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456",
operationType: azure_native.azurestackhci.OSOperationType.Provision,
osImageLocation: "https://aka.ms/aep/azlinux3.0",
osName: "AzureLinux",
osType: "AzureLinux",
osVersion: "3.0",
vsrVersion: "1.0.0",
},
target: azure_native.azurestackhci.ProvisioningOsType.AzureLinux,
userDetails: [{
secretLocation: "https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00",
secretType: azure_native.azurestackhci.SecretType.KeyVault,
sshPubKey: ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com"],
userName: "edgeuser",
}],
},
},
resourceGroupName: "ArcInstance-rg",
});
import pulumi
import pulumi_azure_native as azure_native
edge_machine_job = azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob",
edge_machine_name="machine1",
jobs_name="ProvisionOs",
properties={
"deployment_mode": azure_native.azurestackhci.DeploymentMode.DEPLOY,
"job_type": "ProvisionOs",
"provisioning_request": {
"custom_configuration": "eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==",
"device_configuration": {
"host_name": "634b9db8-83e1-46ed-b391-c1614e2d0097",
"network": {
"network_adapters": [{
"dns_address_array": ["8.8.8.8"],
"gateway": "",
"ip_address": "",
"ip_address_range": {
"end_ip": "",
"start_ip": "",
},
"ip_assignment_type": azure_native.azurestackhci.IpAssignmentType.AUTOMATIC,
"subnet_mask": "",
"vlan_id": "0",
}],
},
"storage": {
"partition_size": "30GB",
},
"time": {
"primary_time_server": "",
"secondary_time_server": "",
"time_zone": "UTC",
},
"web_proxy": {
"bypass_list": [],
"connection_uri": "https://microsoft.com/a",
"port": "",
},
},
"onboarding_configuration": {
"arc_virtual_machine_id": "634b9db8-83e1-46ed-b391-c1614e2d0097",
"location": "eastus",
"resource_id": "/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1",
"tenant_id": "72f988bf-86f1-41af-91ab-2d7cd011db47",
"type": azure_native.azurestackhci.OnboardingResourceType.HYBRID_COMPUTE_MACHINE,
},
"os_profile": {
"gpg_pub_key": "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
"image_hash": "sha256:a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456",
"operation_type": azure_native.azurestackhci.OSOperationType.PROVISION,
"os_image_location": "https://aka.ms/aep/azlinux3.0",
"os_name": "AzureLinux",
"os_type": "AzureLinux",
"os_version": "3.0",
"vsr_version": "1.0.0",
},
"target": azure_native.azurestackhci.ProvisioningOsType.AZURE_LINUX,
"user_details": [{
"secret_location": "https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00",
"secret_type": azure_native.azurestackhci.SecretType.KEY_VAULT,
"ssh_pub_key": ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com"],
"user_name": "edgeuser",
}],
},
},
resource_group_name="ArcInstance-rg")
resources:
edgeMachineJob:
type: azure-native:azurestackhci:EdgeMachineJob
properties:
edgeMachineName: machine1
jobsName: ProvisionOs
properties:
deploymentMode: Deploy
jobType: ProvisionOs
provisioningRequest:
customConfiguration: eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==
deviceConfiguration:
hostName: 634b9db8-83e1-46ed-b391-c1614e2d0097
network:
networkAdapters:
- dnsAddressArray:
- 8.8.8.8
gateway: ""
ipAddress: ""
ipAddressRange:
endIp: ""
startIp: ""
ipAssignmentType: Automatic
subnetMask: ""
vlanId: '0'
storage:
partitionSize: 30GB
time:
primaryTimeServer: ""
secondaryTimeServer: ""
timeZone: UTC
webProxy:
bypassList: []
connectionUri: https://microsoft.com/a
port: ""
onboardingConfiguration:
arcVirtualMachineId: 634b9db8-83e1-46ed-b391-c1614e2d0097
location: eastus
resourceId: /subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1
tenantId: 72f988bf-86f1-41af-91ab-2d7cd011db47
type: HybridComputeMachine
osProfile:
gpgPubKey: LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t
imageHash: sha256:a1b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef123456
operationType: Provision
osImageLocation: https://aka.ms/aep/azlinux3.0
osName: AzureLinux
osType: AzureLinux
osVersion: '3.0'
vsrVersion: 1.0.0
target: AzureLinux
userDetails:
- secretLocation: https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00
secretType: KeyVault
sshPubKey:
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com
userName: edgeuser
resourceGroupName: ArcInstance-rg
EdgeMachineJobs_CreateOrUpdate_RemoteSupport
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var edgeMachineJob = new AzureNative.AzureStackHCI.EdgeMachineJob("edgeMachineJob", new()
{
EdgeMachineName = "machine1",
JobsName = "RemoteSupport",
Properties = new AzureNative.AzureStackHCI.Inputs.EdgeMachineRemoteSupportJobPropertiesArgs
{
AccessLevel = AzureNative.AzureStackHCI.RemoteSupportAccessLevel.Diagnostics,
ExpirationTimestamp = "2024-01-29T10:43:27.9471574Z",
JobType = "RemoteSupport",
Type = AzureNative.AzureStackHCI.RemoteSupportType.Enable,
},
ResourceGroupName = "ArcInstance-rg",
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewEdgeMachineJob(ctx, "edgeMachineJob", &azurestackhci.EdgeMachineJobArgs{
EdgeMachineName: pulumi.String("machine1"),
JobsName: pulumi.String("RemoteSupport"),
Properties: &azurestackhci.EdgeMachineRemoteSupportJobPropertiesArgs{
AccessLevel: pulumi.String(azurestackhci.RemoteSupportAccessLevelDiagnostics),
ExpirationTimestamp: pulumi.String("2024-01-29T10:43:27.9471574Z"),
JobType: pulumi.String("RemoteSupport"),
Type: pulumi.String(azurestackhci.RemoteSupportTypeEnable),
},
ResourceGroupName: pulumi.String("ArcInstance-rg"),
})
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.azurestackhci.EdgeMachineJob;
import com.pulumi.azurenative.azurestackhci.EdgeMachineJobArgs;
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 edgeMachineJob = new EdgeMachineJob("edgeMachineJob", EdgeMachineJobArgs.builder()
.edgeMachineName("machine1")
.jobsName("RemoteSupport")
.properties(EdgeMachineRemoteSupportJobPropertiesArgs.builder()
.accessLevel("Diagnostics")
.expirationTimestamp("2024-01-29T10:43:27.9471574Z")
.jobType("RemoteSupport")
.type("Enable")
.build())
.resourceGroupName("ArcInstance-rg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const edgeMachineJob = new azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob", {
edgeMachineName: "machine1",
jobsName: "RemoteSupport",
properties: {
accessLevel: azure_native.azurestackhci.RemoteSupportAccessLevel.Diagnostics,
expirationTimestamp: "2024-01-29T10:43:27.9471574Z",
jobType: "RemoteSupport",
type: azure_native.azurestackhci.RemoteSupportType.Enable,
},
resourceGroupName: "ArcInstance-rg",
});
import pulumi
import pulumi_azure_native as azure_native
edge_machine_job = azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob",
edge_machine_name="machine1",
jobs_name="RemoteSupport",
properties={
"access_level": azure_native.azurestackhci.RemoteSupportAccessLevel.DIAGNOSTICS,
"expiration_timestamp": "2024-01-29T10:43:27.9471574Z",
"job_type": "RemoteSupport",
"type": azure_native.azurestackhci.RemoteSupportType.ENABLE,
},
resource_group_name="ArcInstance-rg")
resources:
edgeMachineJob:
type: azure-native:azurestackhci:EdgeMachineJob
properties:
edgeMachineName: machine1
jobsName: RemoteSupport
properties:
accessLevel: Diagnostics
expirationTimestamp: 2024-01-29T10:43:27.9471574Z
jobType: RemoteSupport
type: Enable
resourceGroupName: ArcInstance-rg
EdgeMachineJobs_CreateOrUpdate_UpdateOs
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var edgeMachineJob = new AzureNative.AzureStackHCI.EdgeMachineJob("edgeMachineJob", new()
{
EdgeMachineName = "machine1",
JobsName = "UpdateOs",
Properties = new AzureNative.AzureStackHCI.Inputs.ProvisionOsJobPropertiesArgs
{
DeploymentMode = AzureNative.AzureStackHCI.DeploymentMode.Deploy,
JobType = "ProvisionOs",
ProvisioningRequest = new AzureNative.AzureStackHCI.Inputs.ProvisioningRequestArgs
{
CustomConfiguration = "eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==",
DeviceConfiguration = new AzureNative.AzureStackHCI.Inputs.TargetDeviceConfigurationArgs
{
HostName = "634b9db8-83e1-46ed-b391-c1614e2d0097",
Network = new AzureNative.AzureStackHCI.Inputs.NetworkConfigurationArgs
{
NetworkAdapters = new[]
{
new AzureNative.AzureStackHCI.Inputs.NetworkAdapterArgs
{
DnsAddressArray = new[]
{
"8.8.8.8",
},
Gateway = "",
IpAddress = "",
IpAddressRange = new AzureNative.AzureStackHCI.Inputs.IpAddressRangeArgs
{
EndIp = "",
StartIp = "",
},
IpAssignmentType = AzureNative.AzureStackHCI.IpAssignmentType.Automatic,
SubnetMask = "",
VlanId = "0",
},
},
},
Time = new AzureNative.AzureStackHCI.Inputs.TimeConfigurationArgs
{
PrimaryTimeServer = "",
SecondaryTimeServer = "",
TimeZone = "UTC",
},
WebProxy = new AzureNative.AzureStackHCI.Inputs.WebProxyConfigurationArgs
{
BypassList = new() { },
ConnectionUri = "https://microsoft.com/a",
Port = "",
},
},
OnboardingConfiguration = new AzureNative.AzureStackHCI.Inputs.OnboardingConfigurationArgs
{
ArcVirtualMachineId = "634b9db8-83e1-46ed-b391-c1614e2d0097",
Location = "eastus",
ResourceId = "/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1",
TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47",
Type = AzureNative.AzureStackHCI.OnboardingResourceType.HybridComputeMachine,
},
OsProfile = new AzureNative.AzureStackHCI.Inputs.OsProvisionProfileArgs
{
GpgPubKey = "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
ImageHash = "sha256:b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef12345678",
OperationType = AzureNative.AzureStackHCI.OSOperationType.Update,
OsImageLocation = "https://aka.ms/aep/azlinux3.1",
OsName = "AzureLinux",
OsType = "AzureLinux",
OsVersion = "3.1",
VsrVersion = "1.1.0",
},
Target = AzureNative.AzureStackHCI.ProvisioningOsType.AzureLinux,
UserDetails = new[]
{
new AzureNative.AzureStackHCI.Inputs.UserDetailsArgs
{
SecretLocation = "https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00",
SecretType = AzureNative.AzureStackHCI.SecretType.KeyVault,
SshPubKey = new[]
{
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com",
},
UserName = "edgeuser",
},
},
},
},
ResourceGroupName = "ArcInstance-rg",
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewEdgeMachineJob(ctx, "edgeMachineJob", &azurestackhci.EdgeMachineJobArgs{
EdgeMachineName: pulumi.String("machine1"),
JobsName: pulumi.String("UpdateOs"),
Properties: &azurestackhci.ProvisionOsJobPropertiesArgs{
DeploymentMode: pulumi.String(azurestackhci.DeploymentModeDeploy),
JobType: pulumi.String("ProvisionOs"),
ProvisioningRequest: &azurestackhci.ProvisioningRequestArgs{
CustomConfiguration: pulumi.String("eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ=="),
DeviceConfiguration: &azurestackhci.TargetDeviceConfigurationArgs{
HostName: pulumi.String("634b9db8-83e1-46ed-b391-c1614e2d0097"),
Network: &azurestackhci.NetworkConfigurationArgs{
NetworkAdapters: azurestackhci.NetworkAdapterArray{
&azurestackhci.NetworkAdapterArgs{
DnsAddressArray: pulumi.StringArray{
pulumi.String("8.8.8.8"),
},
Gateway: pulumi.String(""),
IpAddress: pulumi.String(""),
IpAddressRange: &azurestackhci.IpAddressRangeArgs{
EndIp: pulumi.String(""),
StartIp: pulumi.String(""),
},
IpAssignmentType: pulumi.String(azurestackhci.IpAssignmentTypeAutomatic),
SubnetMask: pulumi.String(""),
VlanId: pulumi.String("0"),
},
},
},
Time: &azurestackhci.TimeConfigurationArgs{
PrimaryTimeServer: pulumi.String(""),
SecondaryTimeServer: pulumi.String(""),
TimeZone: pulumi.String("UTC"),
},
WebProxy: &azurestackhci.WebProxyConfigurationArgs{
BypassList: pulumi.StringArray{},
ConnectionUri: pulumi.String("https://microsoft.com/a"),
Port: pulumi.String(""),
},
},
OnboardingConfiguration: &azurestackhci.OnboardingConfigurationArgs{
ArcVirtualMachineId: pulumi.String("634b9db8-83e1-46ed-b391-c1614e2d0097"),
Location: pulumi.String("eastus"),
ResourceId: pulumi.String("/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1"),
TenantId: pulumi.String("72f988bf-86f1-41af-91ab-2d7cd011db47"),
Type: pulumi.String(azurestackhci.OnboardingResourceTypeHybridComputeMachine),
},
OsProfile: &azurestackhci.OsProvisionProfileArgs{
GpgPubKey: pulumi.String("LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t"),
ImageHash: pulumi.String("sha256:b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef12345678"),
OperationType: pulumi.String(azurestackhci.OSOperationTypeUpdate),
OsImageLocation: pulumi.String("https://aka.ms/aep/azlinux3.1"),
OsName: pulumi.String("AzureLinux"),
OsType: pulumi.String("AzureLinux"),
OsVersion: pulumi.String("3.1"),
VsrVersion: pulumi.String("1.1.0"),
},
Target: pulumi.String(azurestackhci.ProvisioningOsTypeAzureLinux),
UserDetails: azurestackhci.UserDetailsArray{
&azurestackhci.UserDetailsArgs{
SecretLocation: pulumi.String("https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00"),
SecretType: pulumi.String(azurestackhci.SecretTypeKeyVault),
SshPubKey: pulumi.StringArray{
pulumi.String("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com"),
},
UserName: pulumi.String("edgeuser"),
},
},
},
},
ResourceGroupName: pulumi.String("ArcInstance-rg"),
})
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.azurestackhci.EdgeMachineJob;
import com.pulumi.azurenative.azurestackhci.EdgeMachineJobArgs;
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 edgeMachineJob = new EdgeMachineJob("edgeMachineJob", EdgeMachineJobArgs.builder()
.edgeMachineName("machine1")
.jobsName("UpdateOs")
.properties(ProvisionOsJobPropertiesArgs.builder()
.deploymentMode("Deploy")
.jobType("ProvisionOs")
.provisioningRequest(ProvisioningRequestArgs.builder()
.customConfiguration("eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==")
.deviceConfiguration(TargetDeviceConfigurationArgs.builder()
.hostName("634b9db8-83e1-46ed-b391-c1614e2d0097")
.network(NetworkConfigurationArgs.builder()
.networkAdapters(NetworkAdapterArgs.builder()
.dnsAddressArray("8.8.8.8")
.gateway("")
.ipAddress("")
.ipAddressRange(IpAddressRangeArgs.builder()
.endIp("")
.startIp("")
.build())
.ipAssignmentType("Automatic")
.subnetMask("")
.vlanId("0")
.build())
.build())
.time(TimeConfigurationArgs.builder()
.primaryTimeServer("")
.secondaryTimeServer("")
.timeZone("UTC")
.build())
.webProxy(WebProxyConfigurationArgs.builder()
.bypassList()
.connectionUri("https://microsoft.com/a")
.port("")
.build())
.build())
.onboardingConfiguration(OnboardingConfigurationArgs.builder()
.arcVirtualMachineId("634b9db8-83e1-46ed-b391-c1614e2d0097")
.location("eastus")
.resourceId("/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1")
.tenantId("72f988bf-86f1-41af-91ab-2d7cd011db47")
.type("HybridComputeMachine")
.build())
.osProfile(OsProvisionProfileArgs.builder()
.gpgPubKey("LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t")
.imageHash("sha256:b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef12345678")
.operationType("Update")
.osImageLocation("https://aka.ms/aep/azlinux3.1")
.osName("AzureLinux")
.osType("AzureLinux")
.osVersion("3.1")
.vsrVersion("1.1.0")
.build())
.target("AzureLinux")
.userDetails(UserDetailsArgs.builder()
.secretLocation("https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00")
.secretType("KeyVault")
.sshPubKey("ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com")
.userName("edgeuser")
.build())
.build())
.build())
.resourceGroupName("ArcInstance-rg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const edgeMachineJob = new azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob", {
edgeMachineName: "machine1",
jobsName: "UpdateOs",
properties: {
deploymentMode: azure_native.azurestackhci.DeploymentMode.Deploy,
jobType: "ProvisionOs",
provisioningRequest: {
customConfiguration: "eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==",
deviceConfiguration: {
hostName: "634b9db8-83e1-46ed-b391-c1614e2d0097",
network: {
networkAdapters: [{
dnsAddressArray: ["8.8.8.8"],
gateway: "",
ipAddress: "",
ipAddressRange: {
endIp: "",
startIp: "",
},
ipAssignmentType: azure_native.azurestackhci.IpAssignmentType.Automatic,
subnetMask: "",
vlanId: "0",
}],
},
time: {
primaryTimeServer: "",
secondaryTimeServer: "",
timeZone: "UTC",
},
webProxy: {
bypassList: [],
connectionUri: "https://microsoft.com/a",
port: "",
},
},
onboardingConfiguration: {
arcVirtualMachineId: "634b9db8-83e1-46ed-b391-c1614e2d0097",
location: "eastus",
resourceId: "/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1",
tenantId: "72f988bf-86f1-41af-91ab-2d7cd011db47",
type: azure_native.azurestackhci.OnboardingResourceType.HybridComputeMachine,
},
osProfile: {
gpgPubKey: "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
imageHash: "sha256:b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef12345678",
operationType: azure_native.azurestackhci.OSOperationType.Update,
osImageLocation: "https://aka.ms/aep/azlinux3.1",
osName: "AzureLinux",
osType: "AzureLinux",
osVersion: "3.1",
vsrVersion: "1.1.0",
},
target: azure_native.azurestackhci.ProvisioningOsType.AzureLinux,
userDetails: [{
secretLocation: "https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00",
secretType: azure_native.azurestackhci.SecretType.KeyVault,
sshPubKey: ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com"],
userName: "edgeuser",
}],
},
},
resourceGroupName: "ArcInstance-rg",
});
import pulumi
import pulumi_azure_native as azure_native
edge_machine_job = azure_native.azurestackhci.EdgeMachineJob("edgeMachineJob",
edge_machine_name="machine1",
jobs_name="UpdateOs",
properties={
"deployment_mode": azure_native.azurestackhci.DeploymentMode.DEPLOY,
"job_type": "ProvisionOs",
"provisioning_request": {
"custom_configuration": "eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==",
"device_configuration": {
"host_name": "634b9db8-83e1-46ed-b391-c1614e2d0097",
"network": {
"network_adapters": [{
"dns_address_array": ["8.8.8.8"],
"gateway": "",
"ip_address": "",
"ip_address_range": {
"end_ip": "",
"start_ip": "",
},
"ip_assignment_type": azure_native.azurestackhci.IpAssignmentType.AUTOMATIC,
"subnet_mask": "",
"vlan_id": "0",
}],
},
"time": {
"primary_time_server": "",
"secondary_time_server": "",
"time_zone": "UTC",
},
"web_proxy": {
"bypass_list": [],
"connection_uri": "https://microsoft.com/a",
"port": "",
},
},
"onboarding_configuration": {
"arc_virtual_machine_id": "634b9db8-83e1-46ed-b391-c1614e2d0097",
"location": "eastus",
"resource_id": "/subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1",
"tenant_id": "72f988bf-86f1-41af-91ab-2d7cd011db47",
"type": azure_native.azurestackhci.OnboardingResourceType.HYBRID_COMPUTE_MACHINE,
},
"os_profile": {
"gpg_pub_key": "LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t",
"image_hash": "sha256:b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef12345678",
"operation_type": azure_native.azurestackhci.OSOperationType.UPDATE,
"os_image_location": "https://aka.ms/aep/azlinux3.1",
"os_name": "AzureLinux",
"os_type": "AzureLinux",
"os_version": "3.1",
"vsr_version": "1.1.0",
},
"target": azure_native.azurestackhci.ProvisioningOsType.AZURE_LINUX,
"user_details": [{
"secret_location": "https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00",
"secret_type": azure_native.azurestackhci.SecretType.KEY_VAULT,
"ssh_pub_key": ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com"],
"user_name": "edgeuser",
}],
},
},
resource_group_name="ArcInstance-rg")
resources:
edgeMachineJob:
type: azure-native:azurestackhci:EdgeMachineJob
properties:
edgeMachineName: machine1
jobsName: UpdateOs
properties:
deploymentMode: Deploy
jobType: ProvisionOs
provisioningRequest:
customConfiguration: eyJjdXN0b21Db25maWciOiAiZXhhbXBsZSBiYXNlNjQgZW5jb2RlZCBjb25maWcifQ==
deviceConfiguration:
hostName: 634b9db8-83e1-46ed-b391-c1614e2d0097
network:
networkAdapters:
- dnsAddressArray:
- 8.8.8.8
gateway: ""
ipAddress: ""
ipAddressRange:
endIp: ""
startIp: ""
ipAssignmentType: Automatic
subnetMask: ""
vlanId: '0'
time:
primaryTimeServer: ""
secondaryTimeServer: ""
timeZone: UTC
webProxy:
bypassList: []
connectionUri: https://microsoft.com/a
port: ""
onboardingConfiguration:
arcVirtualMachineId: 634b9db8-83e1-46ed-b391-c1614e2d0097
location: eastus
resourceId: /subscriptions/ff0aa6da-20f8-44fe-9aee-381c8e8a4aeb/resourceGroups/bhukumar-test-rg/providers/Microsoft.HybridCompute/machines/bkumar-t1
tenantId: 72f988bf-86f1-41af-91ab-2d7cd011db47
type: HybridComputeMachine
osProfile:
gpgPubKey: LS0tLS1CRUdJTiBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0tXG5WZXJzaW9uOiBHbnVQRyB2MlxuXG5tUUVOQkZYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYXG4tLS0tLUVORCBQR1AgUFVCTElDIEtFWSBCTE9DSy0tLS0t
imageHash: sha256:b2c3d4e5f6789012345678901234567890abcdef1234567890abcdef12345678
operationType: Update
osImageLocation: https://aka.ms/aep/azlinux3.1
osName: AzureLinux
osType: AzureLinux
osVersion: '3.1'
vsrVersion: 1.1.0
target: AzureLinux
userDetails:
- secretLocation: https://bhukumar-test-kv.vault.azure.net/secrets/edgeuser/7b2d7db11bad4e1599cb6a0f4d2b2e00
secretType: KeyVault
sshPubKey:
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7... edgeuser@example.com
userName: edgeuser
resourceGroupName: ArcInstance-rg
Create EdgeMachineJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EdgeMachineJob(name: string, args: EdgeMachineJobArgs, opts?: CustomResourceOptions);@overload
def EdgeMachineJob(resource_name: str,
args: EdgeMachineJobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EdgeMachineJob(resource_name: str,
opts: Optional[ResourceOptions] = None,
edge_machine_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
jobs_name: Optional[str] = None,
properties: Optional[Union[DownloadOsJobPropertiesArgs, EdgeMachineCollectLogJobPropertiesArgs, EdgeMachineRemoteSupportJobPropertiesArgs, ProvisionOsJobPropertiesArgs]] = None)func NewEdgeMachineJob(ctx *Context, name string, args EdgeMachineJobArgs, opts ...ResourceOption) (*EdgeMachineJob, error)public EdgeMachineJob(string name, EdgeMachineJobArgs args, CustomResourceOptions? opts = null)
public EdgeMachineJob(String name, EdgeMachineJobArgs args)
public EdgeMachineJob(String name, EdgeMachineJobArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:EdgeMachineJob
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 EdgeMachineJobArgs
- 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 EdgeMachineJobArgs
- 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 EdgeMachineJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EdgeMachineJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EdgeMachineJobArgs
- 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 edgeMachineJobResource = new AzureNative.AzureStackHCI.EdgeMachineJob("edgeMachineJobResource", new()
{
EdgeMachineName = "string",
ResourceGroupName = "string",
JobsName = "string",
Properties = new AzureNative.AzureStackHCI.Inputs.DownloadOsJobPropertiesArgs
{
DownloadRequest = new AzureNative.AzureStackHCI.Inputs.DownloadRequestArgs
{
OsProfile = new AzureNative.AzureStackHCI.Inputs.DownloadOsProfileArgs
{
GpgPubKey = "string",
ImageHash = "string",
OsImageLocation = "string",
OsName = "string",
OsType = "string",
OsVersion = "string",
VsrVersion = "string",
},
Target = "string",
},
JobType = "DownloadOs",
DeploymentMode = "string",
},
});
example, err := azurestackhci.NewEdgeMachineJob(ctx, "edgeMachineJobResource", &azurestackhci.EdgeMachineJobArgs{
EdgeMachineName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
JobsName: pulumi.String("string"),
Properties: &azurestackhci.DownloadOsJobPropertiesArgs{
DownloadRequest: &azurestackhci.DownloadRequestArgs{
OsProfile: &azurestackhci.DownloadOsProfileArgs{
GpgPubKey: pulumi.String("string"),
ImageHash: pulumi.String("string"),
OsImageLocation: pulumi.String("string"),
OsName: pulumi.String("string"),
OsType: pulumi.String("string"),
OsVersion: pulumi.String("string"),
VsrVersion: pulumi.String("string"),
},
Target: pulumi.String("string"),
},
JobType: pulumi.String("DownloadOs"),
DeploymentMode: pulumi.String("string"),
},
})
var edgeMachineJobResource = new EdgeMachineJob("edgeMachineJobResource", EdgeMachineJobArgs.builder()
.edgeMachineName("string")
.resourceGroupName("string")
.jobsName("string")
.properties(DownloadOsJobPropertiesArgs.builder()
.downloadRequest(DownloadRequestArgs.builder()
.osProfile(DownloadOsProfileArgs.builder()
.gpgPubKey("string")
.imageHash("string")
.osImageLocation("string")
.osName("string")
.osType("string")
.osVersion("string")
.vsrVersion("string")
.build())
.target("string")
.build())
.jobType("DownloadOs")
.deploymentMode("string")
.build())
.build());
edge_machine_job_resource = azure_native.azurestackhci.EdgeMachineJob("edgeMachineJobResource",
edge_machine_name="string",
resource_group_name="string",
jobs_name="string",
properties={
"download_request": {
"os_profile": {
"gpg_pub_key": "string",
"image_hash": "string",
"os_image_location": "string",
"os_name": "string",
"os_type": "string",
"os_version": "string",
"vsr_version": "string",
},
"target": "string",
},
"job_type": "DownloadOs",
"deployment_mode": "string",
})
const edgeMachineJobResource = new azure_native.azurestackhci.EdgeMachineJob("edgeMachineJobResource", {
edgeMachineName: "string",
resourceGroupName: "string",
jobsName: "string",
properties: {
downloadRequest: {
osProfile: {
gpgPubKey: "string",
imageHash: "string",
osImageLocation: "string",
osName: "string",
osType: "string",
osVersion: "string",
vsrVersion: "string",
},
target: "string",
},
jobType: "DownloadOs",
deploymentMode: "string",
},
});
type: azure-native:azurestackhci:EdgeMachineJob
properties:
edgeMachineName: string
jobsName: string
properties:
deploymentMode: string
downloadRequest:
osProfile:
gpgPubKey: string
imageHash: string
osImageLocation: string
osName: string
osType: string
osVersion: string
vsrVersion: string
target: string
jobType: DownloadOs
resourceGroupName: string
EdgeMachineJob 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 EdgeMachineJob resource accepts the following input properties:
- Edge
Machine stringName - Name of Device
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Jobs
Name string - Name of EdgeMachineJob
- Properties
Pulumi.
Azure | Pulumi.Native. Azure Stack HCI. Inputs. Download Os Job Properties Azure | Pulumi.Native. Azure Stack HCI. Inputs. Edge Machine Collect Log Job Properties Azure | Pulumi.Native. Azure Stack HCI. Inputs. Edge Machine Remote Support Job Properties Azure Native. Azure Stack HCI. Inputs. Provision Os Job Properties - The resource-specific properties for this resource.
- Edge
Machine stringName - Name of Device
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Jobs
Name string - Name of EdgeMachineJob
- Properties
Download
Os | EdgeJob Properties Args Machine | EdgeCollect Log Job Properties Args Machine | ProvisionRemote Support Job Properties Args Os Job Properties Args - The resource-specific properties for this resource.
- edge
Machine StringName - Name of Device
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- jobs
Name String - Name of EdgeMachineJob
- properties
Download
Os | EdgeJob Properties Machine | EdgeCollect Log Job Properties Machine | ProvisionRemote Support Job Properties Os Job Properties - The resource-specific properties for this resource.
- edge
Machine stringName - Name of Device
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- jobs
Name string - Name of EdgeMachineJob
- properties
Download
Os | EdgeJob Properties Machine | EdgeCollect Log Job Properties Machine | ProvisionRemote Support Job Properties Os Job Properties - The resource-specific properties for this resource.
- edge_
machine_ strname - Name of Device
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- jobs_
name str - Name of EdgeMachineJob
- properties
Download
Os | EdgeJob Properties Args Machine | EdgeCollect Log Job Properties Args Machine | ProvisionRemote Support Job Properties Args Os Job Properties Args - The resource-specific properties for this resource.
- edge
Machine StringName - Name of Device
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- jobs
Name String - Name of EdgeMachineJob
- properties Property Map | Property Map | Property Map | Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the EdgeMachineJob resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Azure Stack HCI. 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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"
Supporting Types
DeploymentMode, DeploymentModeArgs
- Validate
ValidateValidate ECE action deployment for a cluster.- Deploy
DeployDeploy ECE action deployment for a cluster.
- Deployment
Mode Validate ValidateValidate ECE action deployment for a cluster.- Deployment
Mode Deploy DeployDeploy ECE action deployment for a cluster.
- Validate
ValidateValidate ECE action deployment for a cluster.- Deploy
DeployDeploy ECE action deployment for a cluster.
- Validate
ValidateValidate ECE action deployment for a cluster.- Deploy
DeployDeploy ECE action deployment for a cluster.
- VALIDATE
ValidateValidate ECE action deployment for a cluster.- DEPLOY
DeployDeploy ECE action deployment for a cluster.
- "Validate"
ValidateValidate ECE action deployment for a cluster.- "Deploy"
DeployDeploy ECE action deployment for a cluster.
DeploymentStepResponse, DeploymentStepResponseArgs
The Step of AzureStackHCI Cluster.- Description string
- Description of step.
- End
Time stringUtc - End time of step.
- Exception List<string>
- List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step stringIndex - FullStepIndex of step.
- Name string
- Name of step.
- Start
Time stringUtc - Start time of step.
- Status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Deployment Step Response> - List of nested steps of AzureStackHCI Cluster Deployment.
- Description string
- Description of step.
- End
Time stringUtc - End time of step.
- Exception []string
- List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step stringIndex - FullStepIndex of step.
- Name string
- Name of step.
- Start
Time stringUtc - Start time of step.
- Status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
[]Deployment
Step Response - List of nested steps of AzureStackHCI Cluster Deployment.
- description String
- Description of step.
- end
Time StringUtc - End time of step.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step StringIndex - FullStepIndex of step.
- name String
- Name of step.
- start
Time StringUtc - Start time of step.
- status String
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
List<Deployment
Step Response> - List of nested steps of AzureStackHCI Cluster Deployment.
- description string
- Description of step.
- end
Time stringUtc - End time of step.
- exception string[]
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step stringIndex - FullStepIndex of step.
- name string
- Name of step.
- start
Time stringUtc - Start time of step.
- status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
Deployment
Step Response[] - List of nested steps of AzureStackHCI Cluster Deployment.
- description str
- Description of step.
- end_
time_ strutc - End time of step.
- exception Sequence[str]
- List of exceptions in AzureStackHCI Cluster Deployment.
- full_
step_ strindex - FullStepIndex of step.
- name str
- Name of step.
- start_
time_ strutc - Start time of step.
- status str
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
Sequence[Deployment
Step Response] - List of nested steps of AzureStackHCI Cluster Deployment.
- description String
- Description of step.
- end
Time StringUtc - End time of step.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step StringIndex - FullStepIndex of step.
- name String
- Name of step.
- start
Time StringUtc - Start time of step.
- status String
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps List<Property Map>
- List of nested steps of AzureStackHCI Cluster Deployment.
DownloadOsJobProperties, DownloadOsJobPropertiesArgs
Represents the properties of Download Os job.- Download
Request Pulumi.Azure Native. Azure Stack HCI. Inputs. Download Request - Download OS request.
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- Download
Request DownloadRequest - Download OS request.
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- download
Request DownloadRequest - Download OS request.
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- download
Request DownloadRequest - Download OS request.
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- download_
request DownloadRequest - Download OS request.
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- download
Request Property Map - Download OS request.
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
DownloadOsJobPropertiesResponse, DownloadOsJobPropertiesResponseArgs
Represents the properties of Download Os job.- Download
Request Pulumi.Azure Native. Azure Stack HCI. Inputs. Download Request Response - Download OS request.
- End
Time stringUtc - The UTC date and time at which the job completed.
- Error
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Error Detail Response - error details.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- Deployment
Mode string - Deployment mode to trigger job.
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Provision Os Reported Properties Response - Reported Properties for Download Os job
- Download
Request DownloadRequest Response - Download OS request.
- End
Time stringUtc - The UTC date and time at which the job completed.
- Error
Error
Detail Response - error details.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- Deployment
Mode string - Deployment mode to trigger job.
- Reported
Properties ProvisionOs Reported Properties Response - Reported Properties for Download Os job
- download
Request DownloadRequest Response - Download OS request.
- end
Time StringUtc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- deployment
Mode String - Deployment mode to trigger job.
- reported
Properties ProvisionOs Reported Properties Response - Reported Properties for Download Os job
- download
Request DownloadRequest Response - Download OS request.
- end
Time stringUtc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- job
Id string - Unique, immutable job id.
- provisioning
State string - Job provisioning state
- start
Time stringUtc - The UTC date and time at which the job started.
- status string
- Status of Edge device job.
- deployment
Mode string - Deployment mode to trigger job.
- reported
Properties ProvisionOs Reported Properties Response - Reported Properties for Download Os job
- download_
request DownloadRequest Response - Download OS request.
- end_
time_ strutc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- job_
id str - Unique, immutable job id.
- provisioning_
state str - Job provisioning state
- start_
time_ strutc - The UTC date and time at which the job started.
- status str
- Status of Edge device job.
- deployment_
mode str - Deployment mode to trigger job.
- reported_
properties ProvisionOs Reported Properties Response - Reported Properties for Download Os job
- download
Request Property Map - Download OS request.
- end
Time StringUtc - The UTC date and time at which the job completed.
- error Property Map
- error details.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- deployment
Mode String - Deployment mode to trigger job.
- reported
Properties Property Map - Reported Properties for Download Os job
DownloadOsProfile, DownloadOsProfileArgs
Operating system profile.- Gpg
Pub stringKey - GPG Public Key used for package verification
- Image
Hash string - Hash of the OS package downloaded
- Os
Image stringLocation - Location of the operating system image.
- Os
Name string - Name of the operating system.
- Os
Type string - Type of the operating system.
- Os
Version string - Version of the operating system.
- Vsr
Version string - Validated Solution Recipe version to be used for the job
- Gpg
Pub stringKey - GPG Public Key used for package verification
- Image
Hash string - Hash of the OS package downloaded
- Os
Image stringLocation - Location of the operating system image.
- Os
Name string - Name of the operating system.
- Os
Type string - Type of the operating system.
- Os
Version string - Version of the operating system.
- Vsr
Version string - Validated Solution Recipe version to be used for the job
- gpg
Pub StringKey - GPG Public Key used for package verification
- image
Hash String - Hash of the OS package downloaded
- os
Image StringLocation - Location of the operating system image.
- os
Name String - Name of the operating system.
- os
Type String - Type of the operating system.
- os
Version String - Version of the operating system.
- vsr
Version String - Validated Solution Recipe version to be used for the job
- gpg
Pub stringKey - GPG Public Key used for package verification
- image
Hash string - Hash of the OS package downloaded
- os
Image stringLocation - Location of the operating system image.
- os
Name string - Name of the operating system.
- os
Type string - Type of the operating system.
- os
Version string - Version of the operating system.
- vsr
Version string - Validated Solution Recipe version to be used for the job
- gpg_
pub_ strkey - GPG Public Key used for package verification
- image_
hash str - Hash of the OS package downloaded
- os_
image_ strlocation - Location of the operating system image.
- os_
name str - Name of the operating system.
- os_
type str - Type of the operating system.
- os_
version str - Version of the operating system.
- vsr_
version str - Validated Solution Recipe version to be used for the job
- gpg
Pub StringKey - GPG Public Key used for package verification
- image
Hash String - Hash of the OS package downloaded
- os
Image StringLocation - Location of the operating system image.
- os
Name String - Name of the operating system.
- os
Type String - Type of the operating system.
- os
Version String - Version of the operating system.
- vsr
Version String - Validated Solution Recipe version to be used for the job
DownloadOsProfileResponse, DownloadOsProfileResponseArgs
Operating system profile.- Gpg
Pub stringKey - GPG Public Key used for package verification
- Image
Hash string - Hash of the OS package downloaded
- Os
Image stringLocation - Location of the operating system image.
- Os
Name string - Name of the operating system.
- Os
Type string - Type of the operating system.
- Os
Version string - Version of the operating system.
- Vsr
Version string - Validated Solution Recipe version to be used for the job
- Gpg
Pub stringKey - GPG Public Key used for package verification
- Image
Hash string - Hash of the OS package downloaded
- Os
Image stringLocation - Location of the operating system image.
- Os
Name string - Name of the operating system.
- Os
Type string - Type of the operating system.
- Os
Version string - Version of the operating system.
- Vsr
Version string - Validated Solution Recipe version to be used for the job
- gpg
Pub StringKey - GPG Public Key used for package verification
- image
Hash String - Hash of the OS package downloaded
- os
Image StringLocation - Location of the operating system image.
- os
Name String - Name of the operating system.
- os
Type String - Type of the operating system.
- os
Version String - Version of the operating system.
- vsr
Version String - Validated Solution Recipe version to be used for the job
- gpg
Pub stringKey - GPG Public Key used for package verification
- image
Hash string - Hash of the OS package downloaded
- os
Image stringLocation - Location of the operating system image.
- os
Name string - Name of the operating system.
- os
Type string - Type of the operating system.
- os
Version string - Version of the operating system.
- vsr
Version string - Validated Solution Recipe version to be used for the job
- gpg_
pub_ strkey - GPG Public Key used for package verification
- image_
hash str - Hash of the OS package downloaded
- os_
image_ strlocation - Location of the operating system image.
- os_
name str - Name of the operating system.
- os_
type str - Type of the operating system.
- os_
version str - Version of the operating system.
- vsr_
version str - Validated Solution Recipe version to be used for the job
- gpg
Pub StringKey - GPG Public Key used for package verification
- image
Hash String - Hash of the OS package downloaded
- os
Image StringLocation - Location of the operating system image.
- os
Name String - Name of the operating system.
- os
Type String - Type of the operating system.
- os
Version String - Version of the operating system.
- vsr
Version String - Validated Solution Recipe version to be used for the job
DownloadRequest, DownloadRequestArgs
Download Request properties- Os
Profile Pulumi.Azure Native. Azure Stack HCI. Inputs. Download Os Profile - Operating system profile.
- Target
string | Pulumi.
Azure Native. Azure Stack HCI. Provisioning Os Type - Target operating system to support polymorphic resource.
- Os
Profile DownloadOs Profile - Operating system profile.
- Target
string | Provisioning
Os Type - Target operating system to support polymorphic resource.
- os
Profile DownloadOs Profile - Operating system profile.
- target
String | Provisioning
Os Type - Target operating system to support polymorphic resource.
- os
Profile DownloadOs Profile - Operating system profile.
- target
string | Provisioning
Os Type - Target operating system to support polymorphic resource.
- os_
profile DownloadOs Profile - Operating system profile.
- target
str | Provisioning
Os Type - Target operating system to support polymorphic resource.
- os
Profile Property Map - Operating system profile.
- target
String | "Azure
Linux" | "HCI" - Target operating system to support polymorphic resource.
DownloadRequestResponse, DownloadRequestResponseArgs
Download Request properties- Os
Profile Pulumi.Azure Native. Azure Stack HCI. Inputs. Download Os Profile Response - Operating system profile.
- Target string
- Target operating system to support polymorphic resource.
- Os
Profile DownloadOs Profile Response - Operating system profile.
- Target string
- Target operating system to support polymorphic resource.
- os
Profile DownloadOs Profile Response - Operating system profile.
- target String
- Target operating system to support polymorphic resource.
- os
Profile DownloadOs Profile Response - Operating system profile.
- target string
- Target operating system to support polymorphic resource.
- os_
profile DownloadOs Profile Response - Operating system profile.
- target str
- Target operating system to support polymorphic resource.
- os
Profile Property Map - Operating system profile.
- target String
- Target operating system to support polymorphic resource.
EceActionStatusResponse, EceActionStatusResponseArgs
The ECE action plan deployment status for AzureStackHCI Cluster.- Status string
- Status of ECE action AzureStackHCI Cluster Deployment.
- Steps
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Deployment Step Response> - List of steps of AzureStackHCI Cluster Deployment.
- Status string
- Status of ECE action AzureStackHCI Cluster Deployment.
- Steps
[]Deployment
Step Response - List of steps of AzureStackHCI Cluster Deployment.
- status String
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
List<Deployment
Step Response> - List of steps of AzureStackHCI Cluster Deployment.
- status string
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
Deployment
Step Response[] - List of steps of AzureStackHCI Cluster Deployment.
- status str
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
Sequence[Deployment
Step Response] - List of steps of AzureStackHCI Cluster Deployment.
- status String
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps List<Property Map>
- List of steps of AzureStackHCI Cluster Deployment.
EdgeMachineCollectLogJobProperties, EdgeMachineCollectLogJobPropertiesArgs
Properties for pausing a server in the cluster.- From
Date string - From date for log collection.
- To
Date string - To date for log collection.
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- From
Date string - From date for log collection.
- To
Date string - To date for log collection.
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- from
Date String - From date for log collection.
- to
Date String - To date for log collection.
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- from
Date string - From date for log collection.
- to
Date string - To date for log collection.
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- from_
date str - From date for log collection.
- to_
date str - To date for log collection.
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- from
Date String - From date for log collection.
- to
Date String - To date for log collection.
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
EdgeMachineCollectLogJobPropertiesResponse, EdgeMachineCollectLogJobPropertiesResponseArgs
Properties for pausing a server in the cluster.- End
Time stringUtc - The UTC date and time at which the job completed.
- Error
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Error Detail Response - error details.
- From
Date string - From date for log collection.
- Job
Id string - Unique, immutable job id.
- Last
Log stringGenerated - To date for log collection.
- Provisioning
State string - Job provisioning state
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Edge Machine Collect Log Job Reported Properties Response - log collection job reported properties.
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- To
Date string - To date for log collection.
- Deployment
Mode string - Deployment mode to trigger job.
- End
Time stringUtc - The UTC date and time at which the job completed.
- Error
Error
Detail Response - error details.
- From
Date string - From date for log collection.
- Job
Id string - Unique, immutable job id.
- Last
Log stringGenerated - To date for log collection.
- Provisioning
State string - Job provisioning state
- Reported
Properties EdgeMachine Collect Log Job Reported Properties Response - log collection job reported properties.
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- To
Date string - To date for log collection.
- Deployment
Mode string - Deployment mode to trigger job.
- end
Time StringUtc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- from
Date String - From date for log collection.
- job
Id String - Unique, immutable job id.
- last
Log StringGenerated - To date for log collection.
- provisioning
State String - Job provisioning state
- reported
Properties EdgeMachine Collect Log Job Reported Properties Response - log collection job reported properties.
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- to
Date String - To date for log collection.
- deployment
Mode String - Deployment mode to trigger job.
- end
Time stringUtc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- from
Date string - From date for log collection.
- job
Id string - Unique, immutable job id.
- last
Log stringGenerated - To date for log collection.
- provisioning
State string - Job provisioning state
- reported
Properties EdgeMachine Collect Log Job Reported Properties Response - log collection job reported properties.
- start
Time stringUtc - The UTC date and time at which the job started.
- status string
- Status of Edge device job.
- to
Date string - To date for log collection.
- deployment
Mode string - Deployment mode to trigger job.
- end_
time_ strutc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- from_
date str - From date for log collection.
- job_
id str - Unique, immutable job id.
- last_
log_ strgenerated - To date for log collection.
- provisioning_
state str - Job provisioning state
- reported_
properties EdgeMachine Collect Log Job Reported Properties Response - log collection job reported properties.
- start_
time_ strutc - The UTC date and time at which the job started.
- status str
- Status of Edge device job.
- to_
date str - To date for log collection.
- deployment_
mode str - Deployment mode to trigger job.
- end
Time StringUtc - The UTC date and time at which the job completed.
- error Property Map
- error details.
- from
Date String - From date for log collection.
- job
Id String - Unique, immutable job id.
- last
Log StringGenerated - To date for log collection.
- provisioning
State String - Job provisioning state
- reported
Properties Property Map - log collection job reported properties.
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- to
Date String - To date for log collection.
- deployment
Mode String - Deployment mode to trigger job.
EdgeMachineCollectLogJobReportedPropertiesResponse, EdgeMachineCollectLogJobReportedPropertiesResponseArgs
Represents the reported properties of a log collection job.- Deployment
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Deployment status of job.
- Log
Collection List<Pulumi.Session Details Azure Native. Azure Stack HCI. Inputs. Log Collection Job Session Response> - Details of the log collection session.
- Percent
Complete int - The percentage of the job that is complete.
- Validation
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Validation status of job.
- Deployment
Status EceAction Status Response - Deployment status of job.
- Log
Collection []LogSession Details Collection Job Session Response - Details of the log collection session.
- Percent
Complete int - The percentage of the job that is complete.
- Validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- log
Collection List<LogSession Details Collection Job Session Response> - Details of the log collection session.
- percent
Complete Integer - The percentage of the job that is complete.
- validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- log
Collection LogSession Details Collection Job Session Response[] - Details of the log collection session.
- percent
Complete number - The percentage of the job that is complete.
- validation
Status EceAction Status Response - Validation status of job.
- deployment_
status EceAction Status Response - Deployment status of job.
- log_
collection_ Sequence[Logsession_ details Collection Job Session Response] - Details of the log collection session.
- percent_
complete int - The percentage of the job that is complete.
- validation_
status EceAction Status Response - Validation status of job.
- deployment
Status Property Map - Deployment status of job.
- log
Collection List<Property Map>Session Details - Details of the log collection session.
- percent
Complete Number - The percentage of the job that is complete.
- validation
Status Property Map - Validation status of job.
EdgeMachineRemoteSupportJobProperties, EdgeMachineRemoteSupportJobPropertiesArgs
Properties for adding a server in the cluster.- Access
Level string | Pulumi.Azure Native. Azure Stack HCI. Remote Support Access Level - Remote support access level.
- Expiration
Timestamp string - Remote support expiration timestamp.
- Type
string | Pulumi.
Azure Native. Azure Stack HCI. Remote Support Type - Remote support type.
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- Access
Level string | RemoteSupport Access Level - Remote support access level.
- Expiration
Timestamp string - Remote support expiration timestamp.
- Type
string | Remote
Support Type - Remote support type.
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- access
Level String | RemoteSupport Access Level - Remote support access level.
- expiration
Timestamp String - Remote support expiration timestamp.
- type
String | Remote
Support Type - Remote support type.
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- access
Level string | RemoteSupport Access Level - Remote support access level.
- expiration
Timestamp string - Remote support expiration timestamp.
- type
string | Remote
Support Type - Remote support type.
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- access_
level str | RemoteSupport Access Level - Remote support access level.
- expiration_
timestamp str - Remote support expiration timestamp.
- type
str | Remote
Support Type - Remote support type.
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- access
Level String | "None" | "Diagnostics" | "DiagnosticsAnd Repair" - Remote support access level.
- expiration
Timestamp String - Remote support expiration timestamp.
- type String | "Enable" | "Revoke"
- Remote support type.
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
EdgeMachineRemoteSupportJobPropertiesResponse, EdgeMachineRemoteSupportJobPropertiesResponseArgs
Properties for adding a server in the cluster.- Access
Level string - Remote support access level.
- End
Time stringUtc - The UTC date and time at which the job completed.
- Error
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Error Detail Response - error details.
- Expiration
Timestamp string - Remote support expiration timestamp.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Edge Machine Remote Support Job Reported Properties Response - log collection job reported properties.
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- Type string
- Remote support type.
- Deployment
Mode string - Deployment mode to trigger job.
- Access
Level string - Remote support access level.
- End
Time stringUtc - The UTC date and time at which the job completed.
- Error
Error
Detail Response - error details.
- Expiration
Timestamp string - Remote support expiration timestamp.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Reported
Properties EdgeMachine Remote Support Job Reported Properties Response - log collection job reported properties.
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- Type string
- Remote support type.
- Deployment
Mode string - Deployment mode to trigger job.
- access
Level String - Remote support access level.
- end
Time StringUtc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- expiration
Timestamp String - Remote support expiration timestamp.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- reported
Properties EdgeMachine Remote Support Job Reported Properties Response - log collection job reported properties.
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- type String
- Remote support type.
- deployment
Mode String - Deployment mode to trigger job.
- access
Level string - Remote support access level.
- end
Time stringUtc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- expiration
Timestamp string - Remote support expiration timestamp.
- job
Id string - Unique, immutable job id.
- provisioning
State string - Job provisioning state
- reported
Properties EdgeMachine Remote Support Job Reported Properties Response - log collection job reported properties.
- start
Time stringUtc - The UTC date and time at which the job started.
- status string
- Status of Edge device job.
- type string
- Remote support type.
- deployment
Mode string - Deployment mode to trigger job.
- access_
level str - Remote support access level.
- end_
time_ strutc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- expiration_
timestamp str - Remote support expiration timestamp.
- job_
id str - Unique, immutable job id.
- provisioning_
state str - Job provisioning state
- reported_
properties EdgeMachine Remote Support Job Reported Properties Response - log collection job reported properties.
- start_
time_ strutc - The UTC date and time at which the job started.
- status str
- Status of Edge device job.
- type str
- Remote support type.
- deployment_
mode str - Deployment mode to trigger job.
- access
Level String - Remote support access level.
- end
Time StringUtc - The UTC date and time at which the job completed.
- error Property Map
- error details.
- expiration
Timestamp String - Remote support expiration timestamp.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- reported
Properties Property Map - log collection job reported properties.
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- type String
- Remote support type.
- deployment
Mode String - Deployment mode to trigger job.
EdgeMachineRemoteSupportJobReportedPropertiesResponse, EdgeMachineRemoteSupportJobReportedPropertiesResponseArgs
Represents the reported properties of a remote support job.- Deployment
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Deployment status of job.
- Node
Settings Pulumi.Azure Native. Azure Stack HCI. Inputs. Edge Machine Remote Support Node Settings Response - Optional settings for configuring the node for remote support.
- Percent
Complete int - The percentage of the job that is complete.
- Session
Details List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support Session Response> - Details of the remote support session.
- Validation
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Validation status of job.
- Deployment
Status EceAction Status Response - Deployment status of job.
- Node
Settings EdgeMachine Remote Support Node Settings Response - Optional settings for configuring the node for remote support.
- Percent
Complete int - The percentage of the job that is complete.
- Session
Details []RemoteSupport Session Response - Details of the remote support session.
- Validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- node
Settings EdgeMachine Remote Support Node Settings Response - Optional settings for configuring the node for remote support.
- percent
Complete Integer - The percentage of the job that is complete.
- session
Details List<RemoteSupport Session Response> - Details of the remote support session.
- validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- node
Settings EdgeMachine Remote Support Node Settings Response - Optional settings for configuring the node for remote support.
- percent
Complete number - The percentage of the job that is complete.
- session
Details RemoteSupport Session Response[] - Details of the remote support session.
- validation
Status EceAction Status Response - Validation status of job.
- deployment_
status EceAction Status Response - Deployment status of job.
- node_
settings EdgeMachine Remote Support Node Settings Response - Optional settings for configuring the node for remote support.
- percent_
complete int - The percentage of the job that is complete.
- session_
details Sequence[RemoteSupport Session Response] - Details of the remote support session.
- validation_
status EceAction Status Response - Validation status of job.
- deployment
Status Property Map - Deployment status of job.
- node
Settings Property Map - Optional settings for configuring the node for remote support.
- percent
Complete Number - The percentage of the job that is complete.
- session
Details List<Property Map> - Details of the remote support session.
- validation
Status Property Map - Validation status of job.
EdgeMachineRemoteSupportNodeSettingsResponse, EdgeMachineRemoteSupportNodeSettingsResponseArgs
Represents the settings of a remote support node.- Connection
Error stringMessage - The error message, if any, from the last connection attempt.
- Connection
Status string - The current connection status of the remote support session.
- Created
At string - The timestamp when the node settings were created, in UTC.
- State string
- The state of the remote support node.
- Updated
At string - The timestamp when the node settings were last updated, in UTC.
- Connection
Error stringMessage - The error message, if any, from the last connection attempt.
- Connection
Status string - The current connection status of the remote support session.
- Created
At string - The timestamp when the node settings were created, in UTC.
- State string
- The state of the remote support node.
- Updated
At string - The timestamp when the node settings were last updated, in UTC.
- connection
Error StringMessage - The error message, if any, from the last connection attempt.
- connection
Status String - The current connection status of the remote support session.
- created
At String - The timestamp when the node settings were created, in UTC.
- state String
- The state of the remote support node.
- updated
At String - The timestamp when the node settings were last updated, in UTC.
- connection
Error stringMessage - The error message, if any, from the last connection attempt.
- connection
Status string - The current connection status of the remote support session.
- created
At string - The timestamp when the node settings were created, in UTC.
- state string
- The state of the remote support node.
- updated
At string - The timestamp when the node settings were last updated, in UTC.
- connection_
error_ strmessage - The error message, if any, from the last connection attempt.
- connection_
status str - The current connection status of the remote support session.
- created_
at str - The timestamp when the node settings were created, in UTC.
- state str
- The state of the remote support node.
- updated_
at str - The timestamp when the node settings were last updated, in UTC.
- connection
Error StringMessage - The error message, if any, from the last connection attempt.
- connection
Status String - The current connection status of the remote support session.
- created
At String - The timestamp when the node settings were created, in UTC.
- state String
- The state of the remote support node.
- updated
At String - The timestamp when the node settings were last updated, in UTC.
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
The resource management error additional info.ErrorDetailResponse, ErrorDetailResponseArgs
The error detail.- Additional
Info List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Exception string
- Exception details while installing extension.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Exception string
- Exception details while installing extension.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- exception String
- Exception details while installing extension.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- exception string
- Exception details while installing extension.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- exception str
- Exception details while installing extension.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
- exception String
- Exception details while installing extension.
IpAddressRange, IpAddressRangeArgs
IP address range configuration.IpAddressRangeResponse, IpAddressRangeResponseArgs
IP address range configuration.IpAssignmentType, IpAssignmentTypeArgs
- Automatic
AutomaticAutomatic IP assignment- Manual
ManualManual IP assignment
- Ip
Assignment Type Automatic AutomaticAutomatic IP assignment- Ip
Assignment Type Manual ManualManual IP assignment
- Automatic
AutomaticAutomatic IP assignment- Manual
ManualManual IP assignment
- Automatic
AutomaticAutomatic IP assignment- Manual
ManualManual IP assignment
- AUTOMATIC
AutomaticAutomatic IP assignment- MANUAL
ManualManual IP assignment
- "Automatic"
AutomaticAutomatic IP assignment- "Manual"
ManualManual IP assignment
LogCollectionJobSessionResponse, LogCollectionJobSessionResponseArgs
Represents a session for collecting logs from an edge device.- Correlation
Id string - A unique identifier for correlating this log collection session with other operations or sessions.
- End
Time string - The timestamp when log collection ended, in ISO 8601 format.
- Log
Size int - The size of the collected logs in bytes.
- Start
Time string - The timestamp when log collection started, in ISO 8601 format.
- Status string
- The status of the log collection session.
- Time
Collected string - The total time logs were collected for, in ISO 8601 duration format.
- Correlation
Id string - A unique identifier for correlating this log collection session with other operations or sessions.
- End
Time string - The timestamp when log collection ended, in ISO 8601 format.
- Log
Size int - The size of the collected logs in bytes.
- Start
Time string - The timestamp when log collection started, in ISO 8601 format.
- Status string
- The status of the log collection session.
- Time
Collected string - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id String - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time String - The timestamp when log collection ended, in ISO 8601 format.
- log
Size Integer - The size of the collected logs in bytes.
- start
Time String - The timestamp when log collection started, in ISO 8601 format.
- status String
- The status of the log collection session.
- time
Collected String - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id string - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time string - The timestamp when log collection ended, in ISO 8601 format.
- log
Size number - The size of the collected logs in bytes.
- start
Time string - The timestamp when log collection started, in ISO 8601 format.
- status string
- The status of the log collection session.
- time
Collected string - The total time logs were collected for, in ISO 8601 duration format.
- correlation_
id str - A unique identifier for correlating this log collection session with other operations or sessions.
- end_
time str - The timestamp when log collection ended, in ISO 8601 format.
- log_
size int - The size of the collected logs in bytes.
- start_
time str - The timestamp when log collection started, in ISO 8601 format.
- status str
- The status of the log collection session.
- time_
collected str - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id String - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time String - The timestamp when log collection ended, in ISO 8601 format.
- log
Size Number - The size of the collected logs in bytes.
- start
Time String - The timestamp when log collection started, in ISO 8601 format.
- status String
- The status of the log collection session.
- time
Collected String - The total time logs were collected for, in ISO 8601 duration format.
NetworkAdapter, NetworkAdapterArgs
Network adapter configuration.- Ip
Assignment string | Pulumi.Type Azure Native. Azure Stack HCI. Ip Assignment Type - Type of IP assignment.
- Adapter
Name string - Adapter Name.
- Dns
Address List<string>Array - Array of DNS addresses.
- Gateway string
- Gateway id.
- Ip
Address string - IP address.
- Ip
Address Pulumi.Range Azure Native. Azure Stack HCI. Inputs. Ip Address Range - IP address range.
- Mac
Address string - MAC address.
- Subnet
Mask string - Subnet mask.
- Vlan
Id string - VLAN ID for the network setup.
- Ip
Assignment string | IpType Assignment Type - Type of IP assignment.
- Adapter
Name string - Adapter Name.
- Dns
Address []stringArray - Array of DNS addresses.
- Gateway string
- Gateway id.
- Ip
Address string - IP address.
- Ip
Address IpRange Address Range - IP address range.
- Mac
Address string - MAC address.
- Subnet
Mask string - Subnet mask.
- Vlan
Id string - VLAN ID for the network setup.
- ip
Assignment String | IpType Assignment Type - Type of IP assignment.
- adapter
Name String - Adapter Name.
- dns
Address List<String>Array - Array of DNS addresses.
- gateway String
- Gateway id.
- ip
Address String - IP address.
- ip
Address IpRange Address Range - IP address range.
- mac
Address String - MAC address.
- subnet
Mask String - Subnet mask.
- vlan
Id String - VLAN ID for the network setup.
- ip
Assignment string | IpType Assignment Type - Type of IP assignment.
- adapter
Name string - Adapter Name.
- dns
Address string[]Array - Array of DNS addresses.
- gateway string
- Gateway id.
- ip
Address string - IP address.
- ip
Address IpRange Address Range - IP address range.
- mac
Address string - MAC address.
- subnet
Mask string - Subnet mask.
- vlan
Id string - VLAN ID for the network setup.
- ip_
assignment_ str | Iptype Assignment Type - Type of IP assignment.
- adapter_
name str - Adapter Name.
- dns_
address_ Sequence[str]array - Array of DNS addresses.
- gateway str
- Gateway id.
- ip_
address str - IP address.
- ip_
address_ Iprange Address Range - IP address range.
- mac_
address str - MAC address.
- subnet_
mask str - Subnet mask.
- vlan_
id str - VLAN ID for the network setup.
- ip
Assignment String | "Automatic" | "Manual"Type - Type of IP assignment.
- adapter
Name String - Adapter Name.
- dns
Address List<String>Array - Array of DNS addresses.
- gateway String
- Gateway id.
- ip
Address String - IP address.
- ip
Address Property MapRange - IP address range.
- mac
Address String - MAC address.
- subnet
Mask String - Subnet mask.
- vlan
Id String - VLAN ID for the network setup.
NetworkAdapterResponse, NetworkAdapterResponseArgs
Network adapter configuration.- Ip
Assignment stringType - Type of IP assignment.
- Adapter
Name string - Adapter Name.
- Dns
Address List<string>Array - Array of DNS addresses.
- Gateway string
- Gateway id.
- Ip
Address string - IP address.
- Ip
Address Pulumi.Range Azure Native. Azure Stack HCI. Inputs. Ip Address Range Response - IP address range.
- Mac
Address string - MAC address.
- Subnet
Mask string - Subnet mask.
- Vlan
Id string - VLAN ID for the network setup.
- Ip
Assignment stringType - Type of IP assignment.
- Adapter
Name string - Adapter Name.
- Dns
Address []stringArray - Array of DNS addresses.
- Gateway string
- Gateway id.
- Ip
Address string - IP address.
- Ip
Address IpRange Address Range Response - IP address range.
- Mac
Address string - MAC address.
- Subnet
Mask string - Subnet mask.
- Vlan
Id string - VLAN ID for the network setup.
- ip
Assignment StringType - Type of IP assignment.
- adapter
Name String - Adapter Name.
- dns
Address List<String>Array - Array of DNS addresses.
- gateway String
- Gateway id.
- ip
Address String - IP address.
- ip
Address IpRange Address Range Response - IP address range.
- mac
Address String - MAC address.
- subnet
Mask String - Subnet mask.
- vlan
Id String - VLAN ID for the network setup.
- ip
Assignment stringType - Type of IP assignment.
- adapter
Name string - Adapter Name.
- dns
Address string[]Array - Array of DNS addresses.
- gateway string
- Gateway id.
- ip
Address string - IP address.
- ip
Address IpRange Address Range Response - IP address range.
- mac
Address string - MAC address.
- subnet
Mask string - Subnet mask.
- vlan
Id string - VLAN ID for the network setup.
- ip_
assignment_ strtype - Type of IP assignment.
- adapter_
name str - Adapter Name.
- dns_
address_ Sequence[str]array - Array of DNS addresses.
- gateway str
- Gateway id.
- ip_
address str - IP address.
- ip_
address_ Iprange Address Range Response - IP address range.
- mac_
address str - MAC address.
- subnet_
mask str - Subnet mask.
- vlan_
id str - VLAN ID for the network setup.
- ip
Assignment StringType - Type of IP assignment.
- adapter
Name String - Adapter Name.
- dns
Address List<String>Array - Array of DNS addresses.
- gateway String
- Gateway id.
- ip
Address String - IP address.
- ip
Address Property MapRange - IP address range.
- mac
Address String - MAC address.
- subnet
Mask String - Subnet mask.
- vlan
Id String - VLAN ID for the network setup.
NetworkConfiguration, NetworkConfigurationArgs
Network configuration.- Network
Adapters List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Network Adapter> - List of network adapters.
- Network
Adapters []NetworkAdapter - List of network adapters.
- network
Adapters List<NetworkAdapter> - List of network adapters.
- network
Adapters NetworkAdapter[] - List of network adapters.
- network_
adapters Sequence[NetworkAdapter] - List of network adapters.
- network
Adapters List<Property Map> - List of network adapters.
NetworkConfigurationResponse, NetworkConfigurationResponseArgs
Network configuration.- Network
Adapters List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Network Adapter Response> - List of network adapters.
- Network
Adapters []NetworkAdapter Response - List of network adapters.
- network
Adapters List<NetworkAdapter Response> - List of network adapters.
- network
Adapters NetworkAdapter Response[] - List of network adapters.
- network_
adapters Sequence[NetworkAdapter Response] - List of network adapters.
- network
Adapters List<Property Map> - List of network adapters.
OSOperationType, OSOperationTypeArgs
- Provision
ProvisionOS Provisioning operation- Update
UpdateOS Update operation- Re
Image ReImageOS ReImage operation
- OSOperation
Type Provision ProvisionOS Provisioning operation- OSOperation
Type Update UpdateOS Update operation- OSOperation
Type Re Image ReImageOS ReImage operation
- Provision
ProvisionOS Provisioning operation- Update
UpdateOS Update operation- Re
Image ReImageOS ReImage operation
- Provision
ProvisionOS Provisioning operation- Update
UpdateOS Update operation- Re
Image ReImageOS ReImage operation
- PROVISION
ProvisionOS Provisioning operation- UPDATE
UpdateOS Update operation- RE_IMAGE
ReImageOS ReImage operation
- "Provision"
ProvisionOS Provisioning operation- "Update"
UpdateOS Update operation- "Re
Image" ReImageOS ReImage operation
OnboardingConfiguration, OnboardingConfigurationArgs
Onboarding configuration.- Arc
Virtual stringMachine Id - Azure Arc virtual machine ID.
- Location string
- Location of the resource.
- Resource
Id string - Resource ID.
- Tenant
Id string - Tenant ID of the resource.
- Type
string | Pulumi.
Azure Native. Azure Stack HCI. Onboarding Resource Type - Type of the onboarding resource to support polymorphic resource.
- Arc
Virtual stringMachine Id - Azure Arc virtual machine ID.
- Location string
- Location of the resource.
- Resource
Id string - Resource ID.
- Tenant
Id string - Tenant ID of the resource.
- Type
string | Onboarding
Resource Type - Type of the onboarding resource to support polymorphic resource.
- arc
Virtual StringMachine Id - Azure Arc virtual machine ID.
- location String
- Location of the resource.
- resource
Id String - Resource ID.
- tenant
Id String - Tenant ID of the resource.
- type
String | Onboarding
Resource Type - Type of the onboarding resource to support polymorphic resource.
- arc
Virtual stringMachine Id - Azure Arc virtual machine ID.
- location string
- Location of the resource.
- resource
Id string - Resource ID.
- tenant
Id string - Tenant ID of the resource.
- type
string | Onboarding
Resource Type - Type of the onboarding resource to support polymorphic resource.
- arc_
virtual_ strmachine_ id - Azure Arc virtual machine ID.
- location str
- Location of the resource.
- resource_
id str - Resource ID.
- tenant_
id str - Tenant ID of the resource.
- type
str | Onboarding
Resource Type - Type of the onboarding resource to support polymorphic resource.
- arc
Virtual StringMachine Id - Azure Arc virtual machine ID.
- location String
- Location of the resource.
- resource
Id String - Resource ID.
- tenant
Id String - Tenant ID of the resource.
- type
String | "Hybrid
Compute Machine" - Type of the onboarding resource to support polymorphic resource.
OnboardingConfigurationResponse, OnboardingConfigurationResponseArgs
Onboarding configuration.- Arc
Virtual stringMachine Id - Azure Arc virtual machine ID.
- Location string
- Location of the resource.
- Resource
Id string - Resource ID.
- Tenant
Id string - Tenant ID of the resource.
- Type string
- Type of the onboarding resource to support polymorphic resource.
- Arc
Virtual stringMachine Id - Azure Arc virtual machine ID.
- Location string
- Location of the resource.
- Resource
Id string - Resource ID.
- Tenant
Id string - Tenant ID of the resource.
- Type string
- Type of the onboarding resource to support polymorphic resource.
- arc
Virtual StringMachine Id - Azure Arc virtual machine ID.
- location String
- Location of the resource.
- resource
Id String - Resource ID.
- tenant
Id String - Tenant ID of the resource.
- type String
- Type of the onboarding resource to support polymorphic resource.
- arc
Virtual stringMachine Id - Azure Arc virtual machine ID.
- location string
- Location of the resource.
- resource
Id string - Resource ID.
- tenant
Id string - Tenant ID of the resource.
- type string
- Type of the onboarding resource to support polymorphic resource.
- arc_
virtual_ strmachine_ id - Azure Arc virtual machine ID.
- location str
- Location of the resource.
- resource_
id str - Resource ID.
- tenant_
id str - Tenant ID of the resource.
- type str
- Type of the onboarding resource to support polymorphic resource.
- arc
Virtual StringMachine Id - Azure Arc virtual machine ID.
- location String
- Location of the resource.
- resource
Id String - Resource ID.
- tenant
Id String - Tenant ID of the resource.
- type String
- Type of the onboarding resource to support polymorphic resource.
OnboardingResourceType, OnboardingResourceTypeArgs
- Hybrid
Compute Machine HybridComputeMachineHybrid Compute Machine.
- Onboarding
Resource Type Hybrid Compute Machine HybridComputeMachineHybrid Compute Machine.
- Hybrid
Compute Machine HybridComputeMachineHybrid Compute Machine.
- Hybrid
Compute Machine HybridComputeMachineHybrid Compute Machine.
- HYBRID_COMPUTE_MACHINE
HybridComputeMachineHybrid Compute Machine.
- "Hybrid
Compute Machine" HybridComputeMachineHybrid Compute Machine.
OsProvisionProfile, OsProvisionProfileArgs
Operating system profile.- Gpg
Pub stringKey - GPG Public Key used for package verification
- Image
Hash string - Hash of the OS package downloaded
- Operation
Type string | Pulumi.Azure Native. Azure Stack HCI. OSOperation Type - Operation sub type of OS Provisioning
- Os
Image stringLocation - Location of the operating system image.
- Os
Name string - Name of the operating system.
- Os
Type string - Type of the operating system.
- Os
Version string - Version of the operating system.
- Vsr
Version string - Validated Solution Recipe version to be used for the job
- Gpg
Pub stringKey - GPG Public Key used for package verification
- Image
Hash string - Hash of the OS package downloaded
- Operation
Type string | OSOperationType - Operation sub type of OS Provisioning
- Os
Image stringLocation - Location of the operating system image.
- Os
Name string - Name of the operating system.
- Os
Type string - Type of the operating system.
- Os
Version string - Version of the operating system.
- Vsr
Version string - Validated Solution Recipe version to be used for the job
- gpg
Pub StringKey - GPG Public Key used for package verification
- image
Hash String - Hash of the OS package downloaded
- operation
Type String | OSOperationType - Operation sub type of OS Provisioning
- os
Image StringLocation - Location of the operating system image.
- os
Name String - Name of the operating system.
- os
Type String - Type of the operating system.
- os
Version String - Version of the operating system.
- vsr
Version String - Validated Solution Recipe version to be used for the job
- gpg
Pub stringKey - GPG Public Key used for package verification
- image
Hash string - Hash of the OS package downloaded
- operation
Type string | OSOperationType - Operation sub type of OS Provisioning
- os
Image stringLocation - Location of the operating system image.
- os
Name string - Name of the operating system.
- os
Type string - Type of the operating system.
- os
Version string - Version of the operating system.
- vsr
Version string - Validated Solution Recipe version to be used for the job
- gpg_
pub_ strkey - GPG Public Key used for package verification
- image_
hash str - Hash of the OS package downloaded
- operation_
type str | OSOperationType - Operation sub type of OS Provisioning
- os_
image_ strlocation - Location of the operating system image.
- os_
name str - Name of the operating system.
- os_
type str - Type of the operating system.
- os_
version str - Version of the operating system.
- vsr_
version str - Validated Solution Recipe version to be used for the job
- gpg
Pub StringKey - GPG Public Key used for package verification
- image
Hash String - Hash of the OS package downloaded
- operation
Type String | "Provision" | "Update" | "ReImage" - Operation sub type of OS Provisioning
- os
Image StringLocation - Location of the operating system image.
- os
Name String - Name of the operating system.
- os
Type String - Type of the operating system.
- os
Version String - Version of the operating system.
- vsr
Version String - Validated Solution Recipe version to be used for the job
OsProvisionProfileResponse, OsProvisionProfileResponseArgs
Operating system profile.- Gpg
Pub stringKey - GPG Public Key used for package verification
- Image
Hash string - Hash of the OS package downloaded
- Operation
Type string - Operation sub type of OS Provisioning
- Os
Image stringLocation - Location of the operating system image.
- Os
Name string - Name of the operating system.
- Os
Type string - Type of the operating system.
- Os
Version string - Version of the operating system.
- Vsr
Version string - Validated Solution Recipe version to be used for the job
- Gpg
Pub stringKey - GPG Public Key used for package verification
- Image
Hash string - Hash of the OS package downloaded
- Operation
Type string - Operation sub type of OS Provisioning
- Os
Image stringLocation - Location of the operating system image.
- Os
Name string - Name of the operating system.
- Os
Type string - Type of the operating system.
- Os
Version string - Version of the operating system.
- Vsr
Version string - Validated Solution Recipe version to be used for the job
- gpg
Pub StringKey - GPG Public Key used for package verification
- image
Hash String - Hash of the OS package downloaded
- operation
Type String - Operation sub type of OS Provisioning
- os
Image StringLocation - Location of the operating system image.
- os
Name String - Name of the operating system.
- os
Type String - Type of the operating system.
- os
Version String - Version of the operating system.
- vsr
Version String - Validated Solution Recipe version to be used for the job
- gpg
Pub stringKey - GPG Public Key used for package verification
- image
Hash string - Hash of the OS package downloaded
- operation
Type string - Operation sub type of OS Provisioning
- os
Image stringLocation - Location of the operating system image.
- os
Name string - Name of the operating system.
- os
Type string - Type of the operating system.
- os
Version string - Version of the operating system.
- vsr
Version string - Validated Solution Recipe version to be used for the job
- gpg_
pub_ strkey - GPG Public Key used for package verification
- image_
hash str - Hash of the OS package downloaded
- operation_
type str - Operation sub type of OS Provisioning
- os_
image_ strlocation - Location of the operating system image.
- os_
name str - Name of the operating system.
- os_
type str - Type of the operating system.
- os_
version str - Version of the operating system.
- vsr_
version str - Validated Solution Recipe version to be used for the job
- gpg
Pub StringKey - GPG Public Key used for package verification
- image
Hash String - Hash of the OS package downloaded
- operation
Type String - Operation sub type of OS Provisioning
- os
Image StringLocation - Location of the operating system image.
- os
Name String - Name of the operating system.
- os
Type String - Type of the operating system.
- os
Version String - Version of the operating system.
- vsr
Version String - Validated Solution Recipe version to be used for the job
ProvisionOsJobProperties, ProvisionOsJobPropertiesArgs
Represents the properties of an Azure Linux restricted operating environment Provision Os job.- Provisioning
Request Pulumi.Azure Native. Azure Stack HCI. Inputs. Provisioning Request - Os Provisioning request.
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- Provisioning
Request ProvisioningRequest - Os Provisioning request.
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- provisioning
Request ProvisioningRequest - Os Provisioning request.
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- provisioning
Request ProvisioningRequest - Os Provisioning request.
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- provisioning_
request ProvisioningRequest - Os Provisioning request.
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- provisioning
Request Property Map - Os Provisioning request.
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
ProvisionOsJobPropertiesResponse, ProvisionOsJobPropertiesResponseArgs
Represents the properties of an Azure Linux restricted operating environment Provision Os job.- End
Time stringUtc - The UTC date and time at which the job completed.
- Error
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Error Detail Response - error details.
- Job
Id string - Unique, immutable job id.
- Provisioning
Request Pulumi.Azure Native. Azure Stack HCI. Inputs. Provisioning Request Response - Os Provisioning request.
- Provisioning
State string - Job provisioning state
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- Deployment
Mode string - Deployment mode to trigger job.
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Provision Os Reported Properties Response - Reported Properties for Provision Os job
- End
Time stringUtc - The UTC date and time at which the job completed.
- Error
Error
Detail Response - error details.
- Job
Id string - Unique, immutable job id.
- Provisioning
Request ProvisioningRequest Response - Os Provisioning request.
- Provisioning
State string - Job provisioning state
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- Deployment
Mode string - Deployment mode to trigger job.
- Reported
Properties ProvisionOs Reported Properties Response - Reported Properties for Provision Os job
- end
Time StringUtc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- job
Id String - Unique, immutable job id.
- provisioning
Request ProvisioningRequest Response - Os Provisioning request.
- provisioning
State String - Job provisioning state
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- deployment
Mode String - Deployment mode to trigger job.
- reported
Properties ProvisionOs Reported Properties Response - Reported Properties for Provision Os job
- end
Time stringUtc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- job
Id string - Unique, immutable job id.
- provisioning
Request ProvisioningRequest Response - Os Provisioning request.
- provisioning
State string - Job provisioning state
- start
Time stringUtc - The UTC date and time at which the job started.
- status string
- Status of Edge device job.
- deployment
Mode string - Deployment mode to trigger job.
- reported
Properties ProvisionOs Reported Properties Response - Reported Properties for Provision Os job
- end_
time_ strutc - The UTC date and time at which the job completed.
- error
Error
Detail Response - error details.
- job_
id str - Unique, immutable job id.
- provisioning_
request ProvisioningRequest Response - Os Provisioning request.
- provisioning_
state str - Job provisioning state
- start_
time_ strutc - The UTC date and time at which the job started.
- status str
- Status of Edge device job.
- deployment_
mode str - Deployment mode to trigger job.
- reported_
properties ProvisionOs Reported Properties Response - Reported Properties for Provision Os job
- end
Time StringUtc - The UTC date and time at which the job completed.
- error Property Map
- error details.
- job
Id String - Unique, immutable job id.
- provisioning
Request Property Map - Os Provisioning request.
- provisioning
State String - Job provisioning state
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- deployment
Mode String - Deployment mode to trigger job.
- reported
Properties Property Map - Reported Properties for Provision Os job
ProvisionOsReportedPropertiesResponse, ProvisionOsReportedPropertiesResponseArgs
Reported Properties for Provision Os job- Deployment
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Deployment status of job.
- Percent
Complete int - The percentage of the job that is complete.
- Validation
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Validation status of job.
- Deployment
Status EceAction Status Response - Deployment status of job.
- Percent
Complete int - The percentage of the job that is complete.
- Validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- percent
Complete Integer - The percentage of the job that is complete.
- validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- percent
Complete number - The percentage of the job that is complete.
- validation
Status EceAction Status Response - Validation status of job.
- deployment_
status EceAction Status Response - Deployment status of job.
- percent_
complete int - The percentage of the job that is complete.
- validation_
status EceAction Status Response - Validation status of job.
- deployment
Status Property Map - Deployment status of job.
- percent
Complete Number - The percentage of the job that is complete.
- validation
Status Property Map - Validation status of job.
ProvisioningOsType, ProvisioningOsTypeArgs
- Azure
Linux AzureLinuxAzureLinux OS.- HCI
HCIHCI OS.
- Provisioning
Os Type Azure Linux AzureLinuxAzureLinux OS.- Provisioning
Os Type HCI HCIHCI OS.
- Azure
Linux AzureLinuxAzureLinux OS.- HCI
HCIHCI OS.
- Azure
Linux AzureLinuxAzureLinux OS.- HCI
HCIHCI OS.
- AZURE_LINUX
AzureLinuxAzureLinux OS.- HCI
HCIHCI OS.
- "Azure
Linux" AzureLinuxAzureLinux OS.- "HCI"
HCIHCI OS.
ProvisioningRequest, ProvisioningRequestArgs
Represents a provisioning request.- Os
Profile Pulumi.Azure Native. Azure Stack HCI. Inputs. Os Provision Profile - Operating system profile.
- Target
string | Pulumi.
Azure Native. Azure Stack HCI. Provisioning Os Type - Target operating system to support polymorphic resource.
- Custom
Configuration string - Base64 encoded custom configuration for CAPI to use
- Device
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. Target Device Configuration - Device configuration.
- Onboarding
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. Onboarding Configuration - Onboarding configuration.
- User
Details List<Pulumi.Azure Native. Azure Stack HCI. Inputs. User Details> - User configuration.
- Os
Profile OsProvision Profile - Operating system profile.
- Target
string | Provisioning
Os Type - Target operating system to support polymorphic resource.
- Custom
Configuration string - Base64 encoded custom configuration for CAPI to use
- Device
Configuration TargetDevice Configuration - Device configuration.
- Onboarding
Configuration OnboardingConfiguration - Onboarding configuration.
- User
Details []UserDetails - User configuration.
- os
Profile OsProvision Profile - Operating system profile.
- target
String | Provisioning
Os Type - Target operating system to support polymorphic resource.
- custom
Configuration String - Base64 encoded custom configuration for CAPI to use
- device
Configuration TargetDevice Configuration - Device configuration.
- onboarding
Configuration OnboardingConfiguration - Onboarding configuration.
- user
Details List<UserDetails> - User configuration.
- os
Profile OsProvision Profile - Operating system profile.
- target
string | Provisioning
Os Type - Target operating system to support polymorphic resource.
- custom
Configuration string - Base64 encoded custom configuration for CAPI to use
- device
Configuration TargetDevice Configuration - Device configuration.
- onboarding
Configuration OnboardingConfiguration - Onboarding configuration.
- user
Details UserDetails[] - User configuration.
- os_
profile OsProvision Profile - Operating system profile.
- target
str | Provisioning
Os Type - Target operating system to support polymorphic resource.
- custom_
configuration str - Base64 encoded custom configuration for CAPI to use
- device_
configuration TargetDevice Configuration - Device configuration.
- onboarding_
configuration OnboardingConfiguration - Onboarding configuration.
- user_
details Sequence[UserDetails] - User configuration.
- os
Profile Property Map - Operating system profile.
- target
String | "Azure
Linux" | "HCI" - Target operating system to support polymorphic resource.
- custom
Configuration String - Base64 encoded custom configuration for CAPI to use
- device
Configuration Property Map - Device configuration.
- onboarding
Configuration Property Map - Onboarding configuration.
- user
Details List<Property Map> - User configuration.
ProvisioningRequestResponse, ProvisioningRequestResponseArgs
Represents a provisioning request.- Os
Profile Pulumi.Azure Native. Azure Stack HCI. Inputs. Os Provision Profile Response - Operating system profile.
- Target string
- Target operating system to support polymorphic resource.
- Custom
Configuration string - Base64 encoded custom configuration for CAPI to use
- Device
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. Target Device Configuration Response - Device configuration.
- Onboarding
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. Onboarding Configuration Response - Onboarding configuration.
- User
Details List<Pulumi.Azure Native. Azure Stack HCI. Inputs. User Details Response> - User configuration.
- Os
Profile OsProvision Profile Response - Operating system profile.
- Target string
- Target operating system to support polymorphic resource.
- Custom
Configuration string - Base64 encoded custom configuration for CAPI to use
- Device
Configuration TargetDevice Configuration Response - Device configuration.
- Onboarding
Configuration OnboardingConfiguration Response - Onboarding configuration.
- User
Details []UserDetails Response - User configuration.
- os
Profile OsProvision Profile Response - Operating system profile.
- target String
- Target operating system to support polymorphic resource.
- custom
Configuration String - Base64 encoded custom configuration for CAPI to use
- device
Configuration TargetDevice Configuration Response - Device configuration.
- onboarding
Configuration OnboardingConfiguration Response - Onboarding configuration.
- user
Details List<UserDetails Response> - User configuration.
- os
Profile OsProvision Profile Response - Operating system profile.
- target string
- Target operating system to support polymorphic resource.
- custom
Configuration string - Base64 encoded custom configuration for CAPI to use
- device
Configuration TargetDevice Configuration Response - Device configuration.
- onboarding
Configuration OnboardingConfiguration Response - Onboarding configuration.
- user
Details UserDetails Response[] - User configuration.
- os_
profile OsProvision Profile Response - Operating system profile.
- target str
- Target operating system to support polymorphic resource.
- custom_
configuration str - Base64 encoded custom configuration for CAPI to use
- device_
configuration TargetDevice Configuration Response - Device configuration.
- onboarding_
configuration OnboardingConfiguration Response - Onboarding configuration.
- user_
details Sequence[UserDetails Response] - User configuration.
- os
Profile Property Map - Operating system profile.
- target String
- Target operating system to support polymorphic resource.
- custom
Configuration String - Base64 encoded custom configuration for CAPI to use
- device
Configuration Property Map - Device configuration.
- onboarding
Configuration Property Map - Onboarding configuration.
- user
Details List<Property Map> - User configuration.
RemoteSupportAccessLevel, RemoteSupportAccessLevelArgs
- None
NoneNo remote support access is granted.- Diagnostics
DiagnosticsAccess is limited to diagnostics information only.- Diagnostics
And Repair DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- Remote
Support Access Level None NoneNo remote support access is granted.- Remote
Support Access Level Diagnostics DiagnosticsAccess is limited to diagnostics information only.- Remote
Support Access Level Diagnostics And Repair DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- None
NoneNo remote support access is granted.- Diagnostics
DiagnosticsAccess is limited to diagnostics information only.- Diagnostics
And Repair DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- None
NoneNo remote support access is granted.- Diagnostics
DiagnosticsAccess is limited to diagnostics information only.- Diagnostics
And Repair DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- NONE
NoneNo remote support access is granted.- DIAGNOSTICS
DiagnosticsAccess is limited to diagnostics information only.- DIAGNOSTICS_AND_REPAIR
DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- "None"
NoneNo remote support access is granted.- "Diagnostics"
DiagnosticsAccess is limited to diagnostics information only.- "Diagnostics
And Repair" DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
RemoteSupportSessionResponse, RemoteSupportSessionResponseArgs
Represents a remote support session.- Access
Level string - The level of access granted during the remote support session.
- Session
End stringTime - The end time of the remote support session, in UTC.
- Session
Id string - Unique session Id.
- Session
Start stringTime - The start time of the remote support session, in UTC.
- Transcript
Location string - The location where the session transcript is stored.
- Access
Level string - The level of access granted during the remote support session.
- Session
End stringTime - The end time of the remote support session, in UTC.
- Session
Id string - Unique session Id.
- Session
Start stringTime - The start time of the remote support session, in UTC.
- Transcript
Location string - The location where the session transcript is stored.
- access
Level String - The level of access granted during the remote support session.
- session
End StringTime - The end time of the remote support session, in UTC.
- session
Id String - Unique session Id.
- session
Start StringTime - The start time of the remote support session, in UTC.
- transcript
Location String - The location where the session transcript is stored.
- access
Level string - The level of access granted during the remote support session.
- session
End stringTime - The end time of the remote support session, in UTC.
- session
Id string - Unique session Id.
- session
Start stringTime - The start time of the remote support session, in UTC.
- transcript
Location string - The location where the session transcript is stored.
- access_
level str - The level of access granted during the remote support session.
- session_
end_ strtime - The end time of the remote support session, in UTC.
- session_
id str - Unique session Id.
- session_
start_ strtime - The start time of the remote support session, in UTC.
- transcript_
location str - The location where the session transcript is stored.
- access
Level String - The level of access granted during the remote support session.
- session
End StringTime - The end time of the remote support session, in UTC.
- session
Id String - Unique session Id.
- session
Start StringTime - The start time of the remote support session, in UTC.
- transcript
Location String - The location where the session transcript is stored.
RemoteSupportType, RemoteSupportTypeArgs
- Enable
EnableEnable remote support for the cluster.- Revoke
RevokeRevoke previously enabled remote support for the cluster.
- Remote
Support Type Enable EnableEnable remote support for the cluster.- Remote
Support Type Revoke RevokeRevoke previously enabled remote support for the cluster.
- Enable
EnableEnable remote support for the cluster.- Revoke
RevokeRevoke previously enabled remote support for the cluster.
- Enable
EnableEnable remote support for the cluster.- Revoke
RevokeRevoke previously enabled remote support for the cluster.
- ENABLE
EnableEnable remote support for the cluster.- REVOKE
RevokeRevoke previously enabled remote support for the cluster.
- "Enable"
EnableEnable remote support for the cluster.- "Revoke"
RevokeRevoke previously enabled remote support for the cluster.
SecretType, SecretTypeArgs
- Key
Vault KeyVaultKey Vault based authentication- Ssh
Pub Key SshPubKeySSH Public Key based authentication
- Secret
Type Key Vault KeyVaultKey Vault based authentication- Secret
Type Ssh Pub Key SshPubKeySSH Public Key based authentication
- Key
Vault KeyVaultKey Vault based authentication- Ssh
Pub Key SshPubKeySSH Public Key based authentication
- Key
Vault KeyVaultKey Vault based authentication- Ssh
Pub Key SshPubKeySSH Public Key based authentication
- KEY_VAULT
KeyVaultKey Vault based authentication- SSH_PUB_KEY
SshPubKeySSH Public Key based authentication
- "Key
Vault" KeyVaultKey Vault based authentication- "Ssh
Pub Key" SshPubKeySSH Public Key based authentication
StorageConfiguration, StorageConfigurationArgs
Storage configuration.- Partition
Size string - Partition size.
- Partition
Size string - Partition size.
- partition
Size String - Partition size.
- partition
Size string - Partition size.
- partition_
size str - Partition size.
- partition
Size String - Partition size.
StorageConfigurationResponse, StorageConfigurationResponseArgs
Storage configuration.- Partition
Size string - Partition size.
- Partition
Size string - Partition size.
- partition
Size String - Partition size.
- partition
Size string - Partition size.
- partition_
size str - Partition size.
- partition
Size String - Partition size.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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.
TargetDeviceConfiguration, TargetDeviceConfigurationArgs
Device configuration.- Host
Name string - Hostname of the device.
- Network
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Network Configuration - Network configuration.
- Storage
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Storage Configuration - Storage configuration.
- Time
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Time Configuration - Time configuration.
- Web
Proxy Pulumi.Azure Native. Azure Stack HCI. Inputs. Web Proxy Configuration - Web proxy configuration.
- Host
Name string - Hostname of the device.
- Network
Network
Configuration - Network configuration.
- Storage
Storage
Configuration - Storage configuration.
- Time
Time
Configuration - Time configuration.
- Web
Proxy WebProxy Configuration - Web proxy configuration.
- host
Name String - Hostname of the device.
- network
Network
Configuration - Network configuration.
- storage
Storage
Configuration - Storage configuration.
- time
Time
Configuration - Time configuration.
- web
Proxy WebProxy Configuration - Web proxy configuration.
- host
Name string - Hostname of the device.
- network
Network
Configuration - Network configuration.
- storage
Storage
Configuration - Storage configuration.
- time
Time
Configuration - Time configuration.
- web
Proxy WebProxy Configuration - Web proxy configuration.
- host_
name str - Hostname of the device.
- network
Network
Configuration - Network configuration.
- storage
Storage
Configuration - Storage configuration.
- time
Time
Configuration - Time configuration.
- web_
proxy WebProxy Configuration - Web proxy configuration.
- host
Name String - Hostname of the device.
- network Property Map
- Network configuration.
- storage Property Map
- Storage configuration.
- time Property Map
- Time configuration.
- web
Proxy Property Map - Web proxy configuration.
TargetDeviceConfigurationResponse, TargetDeviceConfigurationResponseArgs
Device configuration.- Host
Name string - Hostname of the device.
- Network
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Network Configuration Response - Network configuration.
- Storage
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Storage Configuration Response - Storage configuration.
- Time
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Time Configuration Response - Time configuration.
- Web
Proxy Pulumi.Azure Native. Azure Stack HCI. Inputs. Web Proxy Configuration Response - Web proxy configuration.
- Host
Name string - Hostname of the device.
- Network
Network
Configuration Response - Network configuration.
- Storage
Storage
Configuration Response - Storage configuration.
- Time
Time
Configuration Response - Time configuration.
- Web
Proxy WebProxy Configuration Response - Web proxy configuration.
- host
Name String - Hostname of the device.
- network
Network
Configuration Response - Network configuration.
- storage
Storage
Configuration Response - Storage configuration.
- time
Time
Configuration Response - Time configuration.
- web
Proxy WebProxy Configuration Response - Web proxy configuration.
- host
Name string - Hostname of the device.
- network
Network
Configuration Response - Network configuration.
- storage
Storage
Configuration Response - Storage configuration.
- time
Time
Configuration Response - Time configuration.
- web
Proxy WebProxy Configuration Response - Web proxy configuration.
- host_
name str - Hostname of the device.
- network
Network
Configuration Response - Network configuration.
- storage
Storage
Configuration Response - Storage configuration.
- time
Time
Configuration Response - Time configuration.
- web_
proxy WebProxy Configuration Response - Web proxy configuration.
- host
Name String - Hostname of the device.
- network Property Map
- Network configuration.
- storage Property Map
- Storage configuration.
- time Property Map
- Time configuration.
- web
Proxy Property Map - Web proxy configuration.
TimeConfiguration, TimeConfigurationArgs
Time configuration.- Primary
Time stringServer - Primary NTP server.
- Secondary
Time stringServer - Secondary NTP server.
- Time
Zone string - Time zone.
- Primary
Time stringServer - Primary NTP server.
- Secondary
Time stringServer - Secondary NTP server.
- Time
Zone string - Time zone.
- primary
Time StringServer - Primary NTP server.
- secondary
Time StringServer - Secondary NTP server.
- time
Zone String - Time zone.
- primary
Time stringServer - Primary NTP server.
- secondary
Time stringServer - Secondary NTP server.
- time
Zone string - Time zone.
- primary_
time_ strserver - Primary NTP server.
- secondary_
time_ strserver - Secondary NTP server.
- time_
zone str - Time zone.
- primary
Time StringServer - Primary NTP server.
- secondary
Time StringServer - Secondary NTP server.
- time
Zone String - Time zone.
TimeConfigurationResponse, TimeConfigurationResponseArgs
Time configuration.- Primary
Time stringServer - Primary NTP server.
- Secondary
Time stringServer - Secondary NTP server.
- Time
Zone string - Time zone.
- Primary
Time stringServer - Primary NTP server.
- Secondary
Time stringServer - Secondary NTP server.
- Time
Zone string - Time zone.
- primary
Time StringServer - Primary NTP server.
- secondary
Time StringServer - Secondary NTP server.
- time
Zone String - Time zone.
- primary
Time stringServer - Primary NTP server.
- secondary
Time stringServer - Secondary NTP server.
- time
Zone string - Time zone.
- primary_
time_ strserver - Primary NTP server.
- secondary_
time_ strserver - Secondary NTP server.
- time_
zone str - Time zone.
- primary
Time StringServer - Primary NTP server.
- secondary
Time StringServer - Secondary NTP server.
- time
Zone String - Time zone.
UserDetails, UserDetailsArgs
User configuration.- Secret
Type string | Pulumi.Azure Native. Azure Stack HCI. Secret Type - Type of the secret used for authentication.
- User
Name string - Name of the user.
- Secret
Location string - Location of the secret used for authentication.
- Ssh
Pub List<string>Key - SSH Public Key for the user.
- Secret
Type string | SecretType - Type of the secret used for authentication.
- User
Name string - Name of the user.
- Secret
Location string - Location of the secret used for authentication.
- Ssh
Pub []stringKey - SSH Public Key for the user.
- secret
Type String | SecretType - Type of the secret used for authentication.
- user
Name String - Name of the user.
- secret
Location String - Location of the secret used for authentication.
- ssh
Pub List<String>Key - SSH Public Key for the user.
- secret
Type string | SecretType - Type of the secret used for authentication.
- user
Name string - Name of the user.
- secret
Location string - Location of the secret used for authentication.
- ssh
Pub string[]Key - SSH Public Key for the user.
- secret_
type str | SecretType - Type of the secret used for authentication.
- user_
name str - Name of the user.
- secret_
location str - Location of the secret used for authentication.
- ssh_
pub_ Sequence[str]key - SSH Public Key for the user.
- secret
Type String | "KeyVault" | "Ssh Pub Key" - Type of the secret used for authentication.
- user
Name String - Name of the user.
- secret
Location String - Location of the secret used for authentication.
- ssh
Pub List<String>Key - SSH Public Key for the user.
UserDetailsResponse, UserDetailsResponseArgs
User configuration.- Secret
Type string - Type of the secret used for authentication.
- User
Name string - Name of the user.
- Secret
Location string - Location of the secret used for authentication.
- Ssh
Pub List<string>Key - SSH Public Key for the user.
- Secret
Type string - Type of the secret used for authentication.
- User
Name string - Name of the user.
- Secret
Location string - Location of the secret used for authentication.
- Ssh
Pub []stringKey - SSH Public Key for the user.
- secret
Type String - Type of the secret used for authentication.
- user
Name String - Name of the user.
- secret
Location String - Location of the secret used for authentication.
- ssh
Pub List<String>Key - SSH Public Key for the user.
- secret
Type string - Type of the secret used for authentication.
- user
Name string - Name of the user.
- secret
Location string - Location of the secret used for authentication.
- ssh
Pub string[]Key - SSH Public Key for the user.
- secret_
type str - Type of the secret used for authentication.
- user_
name str - Name of the user.
- secret_
location str - Location of the secret used for authentication.
- ssh_
pub_ Sequence[str]key - SSH Public Key for the user.
- secret
Type String - Type of the secret used for authentication.
- user
Name String - Name of the user.
- secret
Location String - Location of the secret used for authentication.
- ssh
Pub List<String>Key - SSH Public Key for the user.
WebProxyConfiguration, WebProxyConfigurationArgs
Web proxy configuration.- Bypass
List List<string> - Bypass list for the web proxy.
- Connection
Uri string - Connection URI of the web proxy.
- Port string
- Port of the web proxy.
- Bypass
List []string - Bypass list for the web proxy.
- Connection
Uri string - Connection URI of the web proxy.
- Port string
- Port of the web proxy.
- bypass
List List<String> - Bypass list for the web proxy.
- connection
Uri String - Connection URI of the web proxy.
- port String
- Port of the web proxy.
- bypass
List string[] - Bypass list for the web proxy.
- connection
Uri string - Connection URI of the web proxy.
- port string
- Port of the web proxy.
- bypass_
list Sequence[str] - Bypass list for the web proxy.
- connection_
uri str - Connection URI of the web proxy.
- port str
- Port of the web proxy.
- bypass
List List<String> - Bypass list for the web proxy.
- connection
Uri String - Connection URI of the web proxy.
- port String
- Port of the web proxy.
WebProxyConfigurationResponse, WebProxyConfigurationResponseArgs
Web proxy configuration.- Bypass
List List<string> - Bypass list for the web proxy.
- Connection
Uri string - Connection URI of the web proxy.
- Port string
- Port of the web proxy.
- Bypass
List []string - Bypass list for the web proxy.
- Connection
Uri string - Connection URI of the web proxy.
- Port string
- Port of the web proxy.
- bypass
List List<String> - Bypass list for the web proxy.
- connection
Uri String - Connection URI of the web proxy.
- port String
- Port of the web proxy.
- bypass
List string[] - Bypass list for the web proxy.
- connection
Uri string - Connection URI of the web proxy.
- port string
- Port of the web proxy.
- bypass_
list Sequence[str] - Bypass list for the web proxy.
- connection_
uri str - Connection URI of the web proxy.
- port str
- Port of the web proxy.
- bypass
List List<String> - Bypass list for the web proxy.
- connection
Uri String - Connection URI of the web proxy.
- port String
- Port of the web proxy.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurestackhci:EdgeMachineJob UpdateOs /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/edgeMachines/{edgeMachineName}/jobs/{jobsName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
