1. Packages
  2. Azure Native
  3. API Docs
  4. azurestackhci
  5. HciEdgeDeviceJob
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

azure-native.azurestackhci.HciEdgeDeviceJob

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

    Edge device job for Azure Stack HCI solution. Azure REST API version: 2024-09-01-preview.

    Example Usage

    EdgeDeviceJobs_CreateOrUpdate_CollectLog

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var hciEdgeDeviceJob = new AzureNative.AzureStackHCI.HciEdgeDeviceJob("hciEdgeDeviceJob", new()
        {
            EdgeDeviceName = "default",
            JobsName = "collectLog",
            Kind = "HCI",
            Properties = new AzureNative.AzureStackHCI.Inputs.HciCollectLogJobPropertiesArgs
            {
                FromDate = "2024-01-29T10:43:27.9471574Z",
                JobType = "CollectLog",
                ToDate = "2024-01-29T10:43:27.9471574Z",
            },
            ResourceUri = "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1",
        });
    
    });
    
    package main
    
    import (
    	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurestackhci.NewHciEdgeDeviceJob(ctx, "hciEdgeDeviceJob", &azurestackhci.HciEdgeDeviceJobArgs{
    			EdgeDeviceName: pulumi.String("default"),
    			JobsName:       pulumi.String("collectLog"),
    			Kind:           pulumi.String("HCI"),
    			Properties: &azurestackhci.HciCollectLogJobPropertiesArgs{
    				FromDate: pulumi.String("2024-01-29T10:43:27.9471574Z"),
    				JobType:  pulumi.String("CollectLog"),
    				ToDate:   pulumi.String("2024-01-29T10:43:27.9471574Z"),
    			},
    			ResourceUri: pulumi.String("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1"),
    		})
    		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.HciEdgeDeviceJob;
    import com.pulumi.azurenative.azurestackhci.HciEdgeDeviceJobArgs;
    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 hciEdgeDeviceJob = new HciEdgeDeviceJob("hciEdgeDeviceJob", HciEdgeDeviceJobArgs.builder()
                .edgeDeviceName("default")
                .jobsName("collectLog")
                .kind("HCI")
                .properties(HciCollectLogJobPropertiesArgs.builder()
                    .fromDate("2024-01-29T10:43:27.9471574Z")
                    .jobType("CollectLog")
                    .toDate("2024-01-29T10:43:27.9471574Z")
                    .build())
                .resourceUri("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    hci_edge_device_job = azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJob",
        edge_device_name="default",
        jobs_name="collectLog",
        kind="HCI",
        properties={
            "from_date": "2024-01-29T10:43:27.9471574Z",
            "job_type": "CollectLog",
            "to_date": "2024-01-29T10:43:27.9471574Z",
        },
        resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const hciEdgeDeviceJob = new azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJob", {
        edgeDeviceName: "default",
        jobsName: "collectLog",
        kind: "HCI",
        properties: {
            fromDate: "2024-01-29T10:43:27.9471574Z",
            jobType: "CollectLog",
            toDate: "2024-01-29T10:43:27.9471574Z",
        },
        resourceUri: "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1",
    });
    
    resources:
      hciEdgeDeviceJob:
        type: azure-native:azurestackhci:HciEdgeDeviceJob
        properties:
          edgeDeviceName: default
          jobsName: collectLog
          kind: HCI
          properties:
            fromDate: 2024-01-29T10:43:27.9471574Z
            jobType: CollectLog
            toDate: 2024-01-29T10:43:27.9471574Z
          resourceUri: subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1
    

    EdgeDeviceJobs_CreateOrUpdate_RemoteSupport

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var hciEdgeDeviceJob = new AzureNative.AzureStackHCI.HciEdgeDeviceJob("hciEdgeDeviceJob", new()
        {
            EdgeDeviceName = "default",
            JobsName = "collectLog",
            Kind = "HCI",
            Properties = new AzureNative.AzureStackHCI.Inputs.HciRemoteSupportJobPropertiesArgs
            {
                AccessLevel = AzureNative.AzureStackHCI.RemoteSupportAccessLevel.Diagnostics,
                ExpirationTimestamp = "2024-01-29T10:43:27.9471574Z",
                JobType = "RemoteSupport",
                Type = AzureNative.AzureStackHCI.RemoteSupportType.Enable,
            },
            ResourceUri = "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1",
        });
    
    });
    
    package main
    
    import (
    	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurestackhci.NewHciEdgeDeviceJob(ctx, "hciEdgeDeviceJob", &azurestackhci.HciEdgeDeviceJobArgs{
    			EdgeDeviceName: pulumi.String("default"),
    			JobsName:       pulumi.String("collectLog"),
    			Kind:           pulumi.String("HCI"),
    			Properties: &azurestackhci.HciRemoteSupportJobPropertiesArgs{
    				AccessLevel:         pulumi.String(azurestackhci.RemoteSupportAccessLevelDiagnostics),
    				ExpirationTimestamp: pulumi.String("2024-01-29T10:43:27.9471574Z"),
    				JobType:             pulumi.String("RemoteSupport"),
    				Type:                pulumi.String(azurestackhci.RemoteSupportTypeEnable),
    			},
    			ResourceUri: pulumi.String("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1"),
    		})
    		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.HciEdgeDeviceJob;
    import com.pulumi.azurenative.azurestackhci.HciEdgeDeviceJobArgs;
    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 hciEdgeDeviceJob = new HciEdgeDeviceJob("hciEdgeDeviceJob", HciEdgeDeviceJobArgs.builder()
                .edgeDeviceName("default")
                .jobsName("collectLog")
                .kind("HCI")
                .properties(HciRemoteSupportJobPropertiesArgs.builder()
                    .accessLevel("Diagnostics")
                    .expirationTimestamp("2024-01-29T10:43:27.9471574Z")
                    .jobType("RemoteSupport")
                    .type("Enable")
                    .build())
                .resourceUri("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    hci_edge_device_job = azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJob",
        edge_device_name="default",
        jobs_name="collectLog",
        kind="HCI",
        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_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const hciEdgeDeviceJob = new azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJob", {
        edgeDeviceName: "default",
        jobsName: "collectLog",
        kind: "HCI",
        properties: {
            accessLevel: azure_native.azurestackhci.RemoteSupportAccessLevel.Diagnostics,
            expirationTimestamp: "2024-01-29T10:43:27.9471574Z",
            jobType: "RemoteSupport",
            type: azure_native.azurestackhci.RemoteSupportType.Enable,
        },
        resourceUri: "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1",
    });
    
    resources:
      hciEdgeDeviceJob:
        type: azure-native:azurestackhci:HciEdgeDeviceJob
        properties:
          edgeDeviceName: default
          jobsName: collectLog
          kind: HCI
          properties:
            accessLevel: Diagnostics
            expirationTimestamp: 2024-01-29T10:43:27.9471574Z
            jobType: RemoteSupport
            type: Enable
          resourceUri: subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1
    

    Create HciEdgeDeviceJob Resource

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

    Constructor syntax

    new HciEdgeDeviceJob(name: string, args: HciEdgeDeviceJobArgs, opts?: CustomResourceOptions);
    @overload
    def HciEdgeDeviceJob(resource_name: str,
                         args: HciEdgeDeviceJobArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def HciEdgeDeviceJob(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         edge_device_name: Optional[str] = None,
                         properties: Optional[Union[HciCollectLogJobPropertiesArgs, HciRemoteSupportJobPropertiesArgs]] = None,
                         resource_uri: Optional[str] = None,
                         jobs_name: Optional[str] = None)
    func NewHciEdgeDeviceJob(ctx *Context, name string, args HciEdgeDeviceJobArgs, opts ...ResourceOption) (*HciEdgeDeviceJob, error)
    public HciEdgeDeviceJob(string name, HciEdgeDeviceJobArgs args, CustomResourceOptions? opts = null)
    public HciEdgeDeviceJob(String name, HciEdgeDeviceJobArgs args)
    public HciEdgeDeviceJob(String name, HciEdgeDeviceJobArgs args, CustomResourceOptions options)
    
    type: azure-native:azurestackhci:HciEdgeDeviceJob
    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 HciEdgeDeviceJobArgs
    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 HciEdgeDeviceJobArgs
    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 HciEdgeDeviceJobArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HciEdgeDeviceJobArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HciEdgeDeviceJobArgs
    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 hciEdgeDeviceJobResource = new AzureNative.AzureStackHCI.HciEdgeDeviceJob("hciEdgeDeviceJobResource", new()
    {
        EdgeDeviceName = "string",
        Kind = "string",
        Properties = new AzureNative.AzureStackHCI.Inputs.HciCollectLogJobPropertiesArgs
        {
            FromDate = "string",
            JobType = "CollectLog",
            ToDate = "string",
            DeploymentMode = "string",
        },
        ResourceUri = "string",
        JobsName = "string",
    });
    
    example, err := azurestackhci.NewHciEdgeDeviceJob(ctx, "hciEdgeDeviceJobResource", &azurestackhci.HciEdgeDeviceJobArgs{
    	EdgeDeviceName: pulumi.String("string"),
    	Kind:           pulumi.String("string"),
    	Properties: &azurestackhci.HciCollectLogJobPropertiesArgs{
    		FromDate:       pulumi.String("string"),
    		JobType:        pulumi.String("CollectLog"),
    		ToDate:         pulumi.String("string"),
    		DeploymentMode: pulumi.String("string"),
    	},
    	ResourceUri: pulumi.String("string"),
    	JobsName:    pulumi.String("string"),
    })
    
    var hciEdgeDeviceJobResource = new HciEdgeDeviceJob("hciEdgeDeviceJobResource", HciEdgeDeviceJobArgs.builder()
        .edgeDeviceName("string")
        .kind("string")
        .properties(HciCollectLogJobPropertiesArgs.builder()
            .fromDate("string")
            .jobType("CollectLog")
            .toDate("string")
            .deploymentMode("string")
            .build())
        .resourceUri("string")
        .jobsName("string")
        .build());
    
    hci_edge_device_job_resource = azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJobResource",
        edge_device_name="string",
        kind="string",
        properties={
            "from_date": "string",
            "job_type": "CollectLog",
            "to_date": "string",
            "deployment_mode": "string",
        },
        resource_uri="string",
        jobs_name="string")
    
    const hciEdgeDeviceJobResource = new azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJobResource", {
        edgeDeviceName: "string",
        kind: "string",
        properties: {
            fromDate: "string",
            jobType: "CollectLog",
            toDate: "string",
            deploymentMode: "string",
        },
        resourceUri: "string",
        jobsName: "string",
    });
    
    type: azure-native:azurestackhci:HciEdgeDeviceJob
    properties:
        edgeDeviceName: string
        jobsName: string
        kind: string
        properties:
            deploymentMode: string
            fromDate: string
            jobType: CollectLog
            toDate: string
        resourceUri: string
    

    HciEdgeDeviceJob 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 HciEdgeDeviceJob resource accepts the following input properties:

    EdgeDeviceName string
    The name of the EdgeDevice
    Properties Pulumi.AzureNative.AzureStackHCI.Inputs.HciCollectLogJobProperties | Pulumi.AzureNative.AzureStackHCI.Inputs.HciRemoteSupportJobProperties
    HCI Edge device job properties
    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    JobsName string
    Name of EdgeDevice Job
    EdgeDeviceName string
    The name of the EdgeDevice
    Properties HciCollectLogJobPropertiesArgs | HciRemoteSupportJobPropertiesArgs
    HCI Edge device job properties
    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    JobsName string
    Name of EdgeDevice Job
    edgeDeviceName String
    The name of the EdgeDevice
    properties HciCollectLogJobProperties | HciRemoteSupportJobProperties
    HCI Edge device job properties
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource.
    jobsName String
    Name of EdgeDevice Job
    edgeDeviceName string
    The name of the EdgeDevice
    properties HciCollectLogJobProperties | HciRemoteSupportJobProperties
    HCI Edge device job properties
    resourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    jobsName string
    Name of EdgeDevice Job
    edge_device_name str
    The name of the EdgeDevice
    properties HciCollectLogJobPropertiesArgs | HciRemoteSupportJobPropertiesArgs
    HCI Edge device job properties
    resource_uri str
    The fully qualified Azure Resource manager identifier of the resource.
    jobs_name str
    Name of EdgeDevice Job
    edgeDeviceName String
    The name of the EdgeDevice
    properties Property Map | Property Map
    HCI Edge device job properties
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource.
    jobsName String
    Name of EdgeDevice Job

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.AzureStackHCI.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    DeploymentMode, DeploymentModeArgs

    Validate
    ValidateValidate ECE action deployment for a cluster.
    Deploy
    DeployDeploy ECE action deployment for a cluster.
    DeploymentModeValidate
    ValidateValidate ECE action deployment for a cluster.
    DeploymentModeDeploy
    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

    Description string
    Description of step.
    EndTimeUtc string
    End time of step.
    Exception List<string>
    List of exceptions in AzureStackHCI Cluster Deployment.
    FullStepIndex string
    FullStepIndex of step.
    Name string
    Name of step.
    StartTimeUtc string
    Start time of step.
    Status string
    Status of step. Allowed values are 'Error', 'Success', 'InProgress'
    Steps List<Pulumi.AzureNative.AzureStackHCI.Inputs.DeploymentStepResponse>
    List of nested steps of AzureStackHCI Cluster Deployment.
    Description string
    Description of step.
    EndTimeUtc string
    End time of step.
    Exception []string
    List of exceptions in AzureStackHCI Cluster Deployment.
    FullStepIndex string
    FullStepIndex of step.
    Name string
    Name of step.
    StartTimeUtc string
    Start time of step.
    Status string
    Status of step. Allowed values are 'Error', 'Success', 'InProgress'
    Steps []DeploymentStepResponse
    List of nested steps of AzureStackHCI Cluster Deployment.
    description String
    Description of step.
    endTimeUtc String
    End time of step.
    exception List<String>
    List of exceptions in AzureStackHCI Cluster Deployment.
    fullStepIndex String
    FullStepIndex of step.
    name String
    Name of step.
    startTimeUtc String
    Start time of step.
    status String
    Status of step. Allowed values are 'Error', 'Success', 'InProgress'
    steps List<DeploymentStepResponse>
    List of nested steps of AzureStackHCI Cluster Deployment.
    description string
    Description of step.
    endTimeUtc string
    End time of step.
    exception string[]
    List of exceptions in AzureStackHCI Cluster Deployment.
    fullStepIndex string
    FullStepIndex of step.
    name string
    Name of step.
    startTimeUtc string
    Start time of step.
    status string
    Status of step. Allowed values are 'Error', 'Success', 'InProgress'
    steps DeploymentStepResponse[]
    List of nested steps of AzureStackHCI Cluster Deployment.
    description str
    Description of step.
    end_time_utc str
    End time of step.
    exception Sequence[str]
    List of exceptions in AzureStackHCI Cluster Deployment.
    full_step_index str
    FullStepIndex of step.
    name str
    Name of step.
    start_time_utc str
    Start time of step.
    status str
    Status of step. Allowed values are 'Error', 'Success', 'InProgress'
    steps Sequence[DeploymentStepResponse]
    List of nested steps of AzureStackHCI Cluster Deployment.
    description String
    Description of step.
    endTimeUtc String
    End time of step.
    exception List<String>
    List of exceptions in AzureStackHCI Cluster Deployment.
    fullStepIndex String
    FullStepIndex of step.
    name String
    Name of step.
    startTimeUtc String
    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.

    EceActionStatusResponse, EceActionStatusResponseArgs

    Status string
    Status of ECE action AzureStackHCI Cluster Deployment.
    Steps List<Pulumi.AzureNative.AzureStackHCI.Inputs.DeploymentStepResponse>
    List of steps of AzureStackHCI Cluster Deployment.
    Status string
    Status of ECE action AzureStackHCI Cluster Deployment.
    Steps []DeploymentStepResponse
    List of steps of AzureStackHCI Cluster Deployment.
    status String
    Status of ECE action AzureStackHCI Cluster Deployment.
    steps List<DeploymentStepResponse>
    List of steps of AzureStackHCI Cluster Deployment.
    status string
    Status of ECE action AzureStackHCI Cluster Deployment.
    steps DeploymentStepResponse[]
    List of steps of AzureStackHCI Cluster Deployment.
    status str
    Status of ECE action AzureStackHCI Cluster Deployment.
    steps Sequence[DeploymentStepResponse]
    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.

    HciCollectLogJobProperties, HciCollectLogJobPropertiesArgs

    FromDate string
    From date for log collection.
    ToDate string
    To date for log collection.
    DeploymentMode string | Pulumi.AzureNative.AzureStackHCI.DeploymentMode
    Deployment mode to trigger job.
    FromDate string
    From date for log collection.
    ToDate string
    To date for log collection.
    DeploymentMode string | DeploymentMode
    Deployment mode to trigger job.
    fromDate String
    From date for log collection.
    toDate String
    To date for log collection.
    deploymentMode String | DeploymentMode
    Deployment mode to trigger job.
    fromDate string
    From date for log collection.
    toDate string
    To date for log collection.
    deploymentMode 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.
    fromDate String
    From date for log collection.
    toDate String
    To date for log collection.
    deploymentMode String | "Validate" | "Deploy"
    Deployment mode to trigger job.

    HciCollectLogJobPropertiesResponse, HciCollectLogJobPropertiesResponseArgs

    EndTimeUtc string
    The UTC date and time at which the job completed.
    FromDate string
    From date for log collection.
    JobId string
    Unique, immutable job id.
    LastLogGenerated string
    To date for log collection.
    ProvisioningState string
    Job provisioning state
    ReportedProperties Pulumi.AzureNative.AzureStackHCI.Inputs.LogCollectionReportedPropertiesResponse
    log collection job reported properties.
    StartTimeUtc string
    The UTC date and time at which the job started.
    Status string
    Status of Edge device job.
    ToDate string
    To date for log collection.
    DeploymentMode string
    Deployment mode to trigger job.
    EndTimeUtc string
    The UTC date and time at which the job completed.
    FromDate string
    From date for log collection.
    JobId string
    Unique, immutable job id.
    LastLogGenerated string
    To date for log collection.
    ProvisioningState string
    Job provisioning state
    ReportedProperties LogCollectionReportedPropertiesResponse
    log collection job reported properties.
    StartTimeUtc string
    The UTC date and time at which the job started.
    Status string
    Status of Edge device job.
    ToDate string
    To date for log collection.
    DeploymentMode string
    Deployment mode to trigger job.
    endTimeUtc String
    The UTC date and time at which the job completed.
    fromDate String
    From date for log collection.
    jobId String
    Unique, immutable job id.
    lastLogGenerated String
    To date for log collection.
    provisioningState String
    Job provisioning state
    reportedProperties LogCollectionReportedPropertiesResponse
    log collection job reported properties.
    startTimeUtc String
    The UTC date and time at which the job started.
    status String
    Status of Edge device job.
    toDate String
    To date for log collection.
    deploymentMode String
    Deployment mode to trigger job.
    endTimeUtc string
    The UTC date and time at which the job completed.
    fromDate string
    From date for log collection.
    jobId string
    Unique, immutable job id.
    lastLogGenerated string
    To date for log collection.
    provisioningState string
    Job provisioning state
    reportedProperties LogCollectionReportedPropertiesResponse
    log collection job reported properties.
    startTimeUtc string
    The UTC date and time at which the job started.
    status string
    Status of Edge device job.
    toDate string
    To date for log collection.
    deploymentMode string
    Deployment mode to trigger job.
    end_time_utc str
    The UTC date and time at which the job completed.
    from_date str
    From date for log collection.
    job_id str
    Unique, immutable job id.
    last_log_generated str
    To date for log collection.
    provisioning_state str
    Job provisioning state
    reported_properties LogCollectionReportedPropertiesResponse
    log collection job reported properties.
    start_time_utc str
    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.
    endTimeUtc String
    The UTC date and time at which the job completed.
    fromDate String
    From date for log collection.
    jobId String
    Unique, immutable job id.
    lastLogGenerated String
    To date for log collection.
    provisioningState String
    Job provisioning state
    reportedProperties Property Map
    log collection job reported properties.
    startTimeUtc String
    The UTC date and time at which the job started.
    status String
    Status of Edge device job.
    toDate String
    To date for log collection.
    deploymentMode String
    Deployment mode to trigger job.

    HciRemoteSupportJobProperties, HciRemoteSupportJobPropertiesArgs

    AccessLevel string | Pulumi.AzureNative.AzureStackHCI.RemoteSupportAccessLevel
    Remote support access level.
    ExpirationTimestamp string
    Remote support expiration timestamp.
    Type string | Pulumi.AzureNative.AzureStackHCI.RemoteSupportType
    Remote support type.
    DeploymentMode string | Pulumi.AzureNative.AzureStackHCI.DeploymentMode
    Deployment mode to trigger job.
    AccessLevel string | RemoteSupportAccessLevel
    Remote support access level.
    ExpirationTimestamp string
    Remote support expiration timestamp.
    Type string | RemoteSupportType
    Remote support type.
    DeploymentMode string | DeploymentMode
    Deployment mode to trigger job.
    accessLevel String | RemoteSupportAccessLevel
    Remote support access level.
    expirationTimestamp String
    Remote support expiration timestamp.
    type String | RemoteSupportType
    Remote support type.
    deploymentMode String | DeploymentMode
    Deployment mode to trigger job.
    accessLevel string | RemoteSupportAccessLevel
    Remote support access level.
    expirationTimestamp string
    Remote support expiration timestamp.
    type string | RemoteSupportType
    Remote support type.
    deploymentMode string | DeploymentMode
    Deployment mode to trigger job.
    access_level str | RemoteSupportAccessLevel
    Remote support access level.
    expiration_timestamp str
    Remote support expiration timestamp.
    type str | RemoteSupportType
    Remote support type.
    deployment_mode str | DeploymentMode
    Deployment mode to trigger job.
    accessLevel String | "None" | "Diagnostics" | "DiagnosticsAndRepair"
    Remote support access level.
    expirationTimestamp String
    Remote support expiration timestamp.
    type String | "Enable" | "Revoke"
    Remote support type.
    deploymentMode String | "Validate" | "Deploy"
    Deployment mode to trigger job.

    HciRemoteSupportJobPropertiesResponse, HciRemoteSupportJobPropertiesResponseArgs

    AccessLevel string
    Remote support access level.
    EndTimeUtc string
    The UTC date and time at which the job completed.
    ExpirationTimestamp string
    Remote support expiration timestamp.
    JobId string
    Unique, immutable job id.
    ProvisioningState string
    Job provisioning state
    ReportedProperties Pulumi.AzureNative.AzureStackHCI.Inputs.RemoteSupportJobReportedPropertiesResponse
    log collection job reported properties.
    StartTimeUtc string
    The UTC date and time at which the job started.
    Status string
    Status of Edge device job.
    Type string
    Remote support type.
    DeploymentMode string
    Deployment mode to trigger job.
    AccessLevel string
    Remote support access level.
    EndTimeUtc string
    The UTC date and time at which the job completed.
    ExpirationTimestamp string
    Remote support expiration timestamp.
    JobId string
    Unique, immutable job id.
    ProvisioningState string
    Job provisioning state
    ReportedProperties RemoteSupportJobReportedPropertiesResponse
    log collection job reported properties.
    StartTimeUtc string
    The UTC date and time at which the job started.
    Status string
    Status of Edge device job.
    Type string
    Remote support type.
    DeploymentMode string
    Deployment mode to trigger job.
    accessLevel String
    Remote support access level.
    endTimeUtc String
    The UTC date and time at which the job completed.
    expirationTimestamp String
    Remote support expiration timestamp.
    jobId String
    Unique, immutable job id.
    provisioningState String
    Job provisioning state
    reportedProperties RemoteSupportJobReportedPropertiesResponse
    log collection job reported properties.
    startTimeUtc String
    The UTC date and time at which the job started.
    status String
    Status of Edge device job.
    type String
    Remote support type.
    deploymentMode String
    Deployment mode to trigger job.
    accessLevel string
    Remote support access level.
    endTimeUtc string
    The UTC date and time at which the job completed.
    expirationTimestamp string
    Remote support expiration timestamp.
    jobId string
    Unique, immutable job id.
    provisioningState string
    Job provisioning state
    reportedProperties RemoteSupportJobReportedPropertiesResponse
    log collection job reported properties.
    startTimeUtc string
    The UTC date and time at which the job started.
    status string
    Status of Edge device job.
    type string
    Remote support type.
    deploymentMode string
    Deployment mode to trigger job.
    access_level str
    Remote support access level.
    end_time_utc str
    The UTC date and time at which the job completed.
    expiration_timestamp str
    Remote support expiration timestamp.
    job_id str
    Unique, immutable job id.
    provisioning_state str
    Job provisioning state
    reported_properties RemoteSupportJobReportedPropertiesResponse
    log collection job reported properties.
    start_time_utc str
    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.
    accessLevel String
    Remote support access level.
    endTimeUtc String
    The UTC date and time at which the job completed.
    expirationTimestamp String
    Remote support expiration timestamp.
    jobId String
    Unique, immutable job id.
    provisioningState String
    Job provisioning state
    reportedProperties Property Map
    log collection job reported properties.
    startTimeUtc String
    The UTC date and time at which the job started.
    status String
    Status of Edge device job.
    type String
    Remote support type.
    deploymentMode String
    Deployment mode to trigger job.

    LogCollectionJobSessionResponse, LogCollectionJobSessionResponseArgs

    CorrelationId string
    A unique identifier for correlating this log collection session with other operations or sessions.
    EndTime string
    The timestamp when log collection ended, in ISO 8601 format.
    LogSize int
    The size of the collected logs in bytes.
    StartTime string
    The timestamp when log collection started, in ISO 8601 format.
    Status string
    The status of the log collection session.
    TimeCollected string
    The total time logs were collected for, in ISO 8601 duration format.
    CorrelationId string
    A unique identifier for correlating this log collection session with other operations or sessions.
    EndTime string
    The timestamp when log collection ended, in ISO 8601 format.
    LogSize int
    The size of the collected logs in bytes.
    StartTime string
    The timestamp when log collection started, in ISO 8601 format.
    Status string
    The status of the log collection session.
    TimeCollected string
    The total time logs were collected for, in ISO 8601 duration format.
    correlationId String
    A unique identifier for correlating this log collection session with other operations or sessions.
    endTime String
    The timestamp when log collection ended, in ISO 8601 format.
    logSize Integer
    The size of the collected logs in bytes.
    startTime String
    The timestamp when log collection started, in ISO 8601 format.
    status String
    The status of the log collection session.
    timeCollected String
    The total time logs were collected for, in ISO 8601 duration format.
    correlationId string
    A unique identifier for correlating this log collection session with other operations or sessions.
    endTime string
    The timestamp when log collection ended, in ISO 8601 format.
    logSize number
    The size of the collected logs in bytes.
    startTime string
    The timestamp when log collection started, in ISO 8601 format.
    status string
    The status of the log collection session.
    timeCollected 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.
    correlationId String
    A unique identifier for correlating this log collection session with other operations or sessions.
    endTime String
    The timestamp when log collection ended, in ISO 8601 format.
    logSize Number
    The size of the collected logs in bytes.
    startTime String
    The timestamp when log collection started, in ISO 8601 format.
    status String
    The status of the log collection session.
    timeCollected String
    The total time logs were collected for, in ISO 8601 duration format.

    LogCollectionReportedPropertiesResponse, LogCollectionReportedPropertiesResponseArgs

    DeploymentStatus EceActionStatusResponse
    Deployment status of job.
    LogCollectionSessionDetails []LogCollectionJobSessionResponse
    Details of the log collection session.
    PercentComplete int
    The percentage of the job that is complete.
    ValidationStatus EceActionStatusResponse
    Validation status of job.
    deploymentStatus EceActionStatusResponse
    Deployment status of job.
    logCollectionSessionDetails List<LogCollectionJobSessionResponse>
    Details of the log collection session.
    percentComplete Integer
    The percentage of the job that is complete.
    validationStatus EceActionStatusResponse
    Validation status of job.
    deploymentStatus EceActionStatusResponse
    Deployment status of job.
    logCollectionSessionDetails LogCollectionJobSessionResponse[]
    Details of the log collection session.
    percentComplete number
    The percentage of the job that is complete.
    validationStatus EceActionStatusResponse
    Validation status of job.
    deployment_status EceActionStatusResponse
    Deployment status of job.
    log_collection_session_details Sequence[LogCollectionJobSessionResponse]
    Details of the log collection session.
    percent_complete int
    The percentage of the job that is complete.
    validation_status EceActionStatusResponse
    Validation status of job.
    deploymentStatus Property Map
    Deployment status of job.
    logCollectionSessionDetails List<Property Map>
    Details of the log collection session.
    percentComplete Number
    The percentage of the job that is complete.
    validationStatus Property Map
    Validation status of job.

    RemoteSupportAccessLevel, RemoteSupportAccessLevelArgs

    None
    NoneNo remote support access is granted.
    Diagnostics
    DiagnosticsAccess is limited to diagnostics information only.
    DiagnosticsAndRepair
    DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
    RemoteSupportAccessLevelNone
    NoneNo remote support access is granted.
    RemoteSupportAccessLevelDiagnostics
    DiagnosticsAccess is limited to diagnostics information only.
    RemoteSupportAccessLevelDiagnosticsAndRepair
    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.
    DiagnosticsAndRepair
    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.
    DiagnosticsAndRepair
    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.
    "DiagnosticsAndRepair"
    DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.

    RemoteSupportJobNodeSettingsResponse, RemoteSupportJobNodeSettingsResponseArgs

    ConnectionErrorMessage string
    The error message, if any, from the last connection attempt.
    ConnectionStatus string
    The current connection status of the remote support session.
    CreatedAt string
    The timestamp when the node settings were created, in UTC.
    State string
    The state of the remote support node.
    UpdatedAt string
    The timestamp when the node settings were last updated, in UTC.
    ConnectionErrorMessage string
    The error message, if any, from the last connection attempt.
    ConnectionStatus string
    The current connection status of the remote support session.
    CreatedAt string
    The timestamp when the node settings were created, in UTC.
    State string
    The state of the remote support node.
    UpdatedAt string
    The timestamp when the node settings were last updated, in UTC.
    connectionErrorMessage String
    The error message, if any, from the last connection attempt.
    connectionStatus String
    The current connection status of the remote support session.
    createdAt String
    The timestamp when the node settings were created, in UTC.
    state String
    The state of the remote support node.
    updatedAt String
    The timestamp when the node settings were last updated, in UTC.
    connectionErrorMessage string
    The error message, if any, from the last connection attempt.
    connectionStatus string
    The current connection status of the remote support session.
    createdAt string
    The timestamp when the node settings were created, in UTC.
    state string
    The state of the remote support node.
    updatedAt string
    The timestamp when the node settings were last updated, in UTC.
    connection_error_message str
    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.
    connectionErrorMessage String
    The error message, if any, from the last connection attempt.
    connectionStatus String
    The current connection status of the remote support session.
    createdAt String
    The timestamp when the node settings were created, in UTC.
    state String
    The state of the remote support node.
    updatedAt String
    The timestamp when the node settings were last updated, in UTC.

    RemoteSupportJobReportedPropertiesResponse, RemoteSupportJobReportedPropertiesResponseArgs

    DeploymentStatus EceActionStatusResponse
    Deployment status of job.
    NodeSettings RemoteSupportJobNodeSettingsResponse
    Optional settings for configuring the node for remote support.
    PercentComplete int
    The percentage of the job that is complete.
    SessionDetails []RemoteSupportSessionResponse
    Details of the remote support session.
    ValidationStatus EceActionStatusResponse
    Validation status of job.
    deploymentStatus EceActionStatusResponse
    Deployment status of job.
    nodeSettings RemoteSupportJobNodeSettingsResponse
    Optional settings for configuring the node for remote support.
    percentComplete Integer
    The percentage of the job that is complete.
    sessionDetails List<RemoteSupportSessionResponse>
    Details of the remote support session.
    validationStatus EceActionStatusResponse
    Validation status of job.
    deploymentStatus EceActionStatusResponse
    Deployment status of job.
    nodeSettings RemoteSupportJobNodeSettingsResponse
    Optional settings for configuring the node for remote support.
    percentComplete number
    The percentage of the job that is complete.
    sessionDetails RemoteSupportSessionResponse[]
    Details of the remote support session.
    validationStatus EceActionStatusResponse
    Validation status of job.
    deployment_status EceActionStatusResponse
    Deployment status of job.
    node_settings RemoteSupportJobNodeSettingsResponse
    Optional settings for configuring the node for remote support.
    percent_complete int
    The percentage of the job that is complete.
    session_details Sequence[RemoteSupportSessionResponse]
    Details of the remote support session.
    validation_status EceActionStatusResponse
    Validation status of job.
    deploymentStatus Property Map
    Deployment status of job.
    nodeSettings Property Map
    Optional settings for configuring the node for remote support.
    percentComplete Number
    The percentage of the job that is complete.
    sessionDetails List<Property Map>
    Details of the remote support session.
    validationStatus Property Map
    Validation status of job.

    RemoteSupportSessionResponse, RemoteSupportSessionResponseArgs

    AccessLevel string
    The level of access granted during the remote support session.
    SessionEndTime string
    The end time of the remote support session, in UTC.
    SessionId string
    Unique session Id.
    SessionStartTime string
    The start time of the remote support session, in UTC.
    TranscriptLocation string
    The location where the session transcript is stored.
    AccessLevel string
    The level of access granted during the remote support session.
    SessionEndTime string
    The end time of the remote support session, in UTC.
    SessionId string
    Unique session Id.
    SessionStartTime string
    The start time of the remote support session, in UTC.
    TranscriptLocation string
    The location where the session transcript is stored.
    accessLevel String
    The level of access granted during the remote support session.
    sessionEndTime String
    The end time of the remote support session, in UTC.
    sessionId String
    Unique session Id.
    sessionStartTime String
    The start time of the remote support session, in UTC.
    transcriptLocation String
    The location where the session transcript is stored.
    accessLevel string
    The level of access granted during the remote support session.
    sessionEndTime string
    The end time of the remote support session, in UTC.
    sessionId string
    Unique session Id.
    sessionStartTime string
    The start time of the remote support session, in UTC.
    transcriptLocation string
    The location where the session transcript is stored.
    access_level str
    The level of access granted during the remote support session.
    session_end_time str
    The end time of the remote support session, in UTC.
    session_id str
    Unique session Id.
    session_start_time str
    The start time of the remote support session, in UTC.
    transcript_location str
    The location where the session transcript is stored.
    accessLevel String
    The level of access granted during the remote support session.
    sessionEndTime String
    The end time of the remote support session, in UTC.
    sessionId String
    Unique session Id.
    sessionStartTime String
    The start time of the remote support session, in UTC.
    transcriptLocation String
    The location where the session transcript is stored.

    RemoteSupportType, RemoteSupportTypeArgs

    Enable
    EnableEnables remote support for the edge device.
    Revoke
    RevokeRevokes previously granted remote support access for the edge device.
    RemoteSupportTypeEnable
    EnableEnables remote support for the edge device.
    RemoteSupportTypeRevoke
    RevokeRevokes previously granted remote support access for the edge device.
    Enable
    EnableEnables remote support for the edge device.
    Revoke
    RevokeRevokes previously granted remote support access for the edge device.
    Enable
    EnableEnables remote support for the edge device.
    Revoke
    RevokeRevokes previously granted remote support access for the edge device.
    ENABLE
    EnableEnables remote support for the edge device.
    REVOKE
    RevokeRevokes previously granted remote support access for the edge device.
    "Enable"
    EnableEnables remote support for the edge device.
    "Revoke"
    RevokeRevokes previously granted remote support access for the edge device.

    SystemDataResponse, SystemDataResponseArgs

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

    Import

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

    $ pulumi import azure-native:azurestackhci:HciEdgeDeviceJob collectLog /{resourceUri}/providers/Microsoft.AzureStackHCI/edgeDevices/{edgeDeviceName}/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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi