azure-native.azurestackhci.HciEdgeDeviceJob
Explore with Pulumi AI
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 * 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",
});
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")
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 * 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",
});
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")
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:
- EdgeDevice stringName 
- The name of the EdgeDevice
- Properties
Pulumi.Azure | Pulumi.Native. Azure Stack HCI. Inputs. Hci Collect Log Job Properties Azure Native. Azure Stack HCI. Inputs. Hci Remote Support Job Properties 
- HCI Edge device job properties
- ResourceUri string
- The fully qualified Azure Resource manager identifier of the resource.
- JobsName string
- Name of EdgeDevice Job
- EdgeDevice stringName 
- The name of the EdgeDevice
- Properties
HciCollect | HciLog Job Properties Args Remote Support Job Properties Args 
- HCI Edge device job properties
- ResourceUri string
- The fully qualified Azure Resource manager identifier of the resource.
- JobsName string
- Name of EdgeDevice Job
- edgeDevice StringName 
- The name of the EdgeDevice
- properties
HciCollect | HciLog Job Properties Remote Support Job Properties 
- HCI Edge device job properties
- resourceUri String
- The fully qualified Azure Resource manager identifier of the resource.
- jobsName String
- Name of EdgeDevice Job
- edgeDevice stringName 
- The name of the EdgeDevice
- properties
HciCollect | HciLog Job Properties Remote Support Job Properties 
- 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_ strname 
- The name of the EdgeDevice
- properties
HciCollect | HciLog Job Properties Args Remote Support Job Properties Args 
- 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
- edgeDevice StringName 
- 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.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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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"
- 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.
- DeploymentMode Validate 
- ValidateValidate ECE action deployment for a cluster.
- DeploymentMode 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      
- Description string
- Description of step.
- EndTime stringUtc 
- End time of step.
- Exception List<string>
- List of exceptions in AzureStackHCI Cluster Deployment.
- FullStep stringIndex 
- FullStepIndex of step.
- Name string
- Name of step.
- StartTime 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.
- EndTime stringUtc 
- End time of step.
- Exception []string
- List of exceptions in AzureStackHCI Cluster Deployment.
- FullStep stringIndex 
- FullStepIndex of step.
- Name string
- Name of step.
- StartTime stringUtc 
- Start time of step.
- Status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
[]DeploymentStep Response 
- List of nested steps of AzureStackHCI Cluster Deployment.
- description String
- Description of step.
- endTime StringUtc 
- End time of step.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- fullStep StringIndex 
- FullStepIndex of step.
- name String
- Name of step.
- startTime StringUtc 
- Start time of step.
- status String
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
List<DeploymentStep Response> 
- List of nested steps of AzureStackHCI Cluster Deployment.
- description string
- Description of step.
- endTime stringUtc 
- End time of step.
- exception string[]
- List of exceptions in AzureStackHCI Cluster Deployment.
- fullStep stringIndex 
- FullStepIndex of step.
- name string
- Name of step.
- startTime stringUtc 
- Start time of step.
- status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
DeploymentStep 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[DeploymentStep Response] 
- List of nested steps of AzureStackHCI Cluster Deployment.
- description String
- Description of step.
- endTime StringUtc 
- End time of step.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- fullStep StringIndex 
- FullStepIndex of step.
- name String
- Name of step.
- startTime 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.
EceActionStatusResponse, EceActionStatusResponseArgs        
- 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
[]DeploymentStep Response 
- List of steps of AzureStackHCI Cluster Deployment.
- status String
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
List<DeploymentStep Response> 
- List of steps of AzureStackHCI Cluster Deployment.
- status string
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
DeploymentStep Response[] 
- List of steps of AzureStackHCI Cluster Deployment.
- status str
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
Sequence[DeploymentStep 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.
HciCollectLogJobProperties, HciCollectLogJobPropertiesArgs          
- FromDate string
- From date for log collection.
- ToDate string
- To date for log collection.
- DeploymentMode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode 
- 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            
- EndTime stringUtc 
- The UTC date and time at which the job completed.
- FromDate string
- From date for log collection.
- JobId string
- Unique, immutable job id.
- LastLog stringGenerated 
- To date for log collection.
- ProvisioningState string
- Job provisioning state
- ReportedProperties Pulumi.Azure Native. Azure Stack HCI. Inputs. Log Collection Reported Properties Response 
- log collection job reported properties.
- StartTime stringUtc 
- 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.
- EndTime stringUtc 
- The UTC date and time at which the job completed.
- FromDate string
- From date for log collection.
- JobId string
- Unique, immutable job id.
- LastLog stringGenerated 
- To date for log collection.
- ProvisioningState string
- Job provisioning state
- ReportedProperties LogCollection Reported Properties Response 
- log collection job reported properties.
- StartTime stringUtc 
- 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.
- endTime StringUtc 
- The UTC date and time at which the job completed.
- fromDate String
- From date for log collection.
- jobId String
- Unique, immutable job id.
- lastLog StringGenerated 
- To date for log collection.
- provisioningState String
- Job provisioning state
- reportedProperties LogCollection Reported Properties Response 
- log collection job reported properties.
- startTime StringUtc 
- 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.
- endTime stringUtc 
- The UTC date and time at which the job completed.
- fromDate string
- From date for log collection.
- jobId string
- Unique, immutable job id.
- lastLog stringGenerated 
- To date for log collection.
- provisioningState string
- Job provisioning state
- reportedProperties LogCollection Reported Properties Response 
- log collection job reported properties.
- startTime stringUtc 
- 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_ strutc 
- 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_ strgenerated 
- To date for log collection.
- provisioning_state str
- Job provisioning state
- reported_properties LogCollection 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.
- endTime StringUtc 
- The UTC date and time at which the job completed.
- fromDate String
- From date for log collection.
- jobId String
- Unique, immutable job id.
- lastLog StringGenerated 
- To date for log collection.
- provisioningState String
- Job provisioning state
- reportedProperties Property Map
- log collection job reported properties.
- startTime StringUtc 
- 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.Azure Native. Azure Stack HCI. Remote Support Access Level 
- Remote support access level.
- ExpirationTimestamp string
- Remote support expiration timestamp.
- Type
string | Pulumi.Azure Native. Azure Stack HCI. Remote Support Type 
- Remote support type.
- DeploymentMode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode 
- Deployment mode to trigger job.
- AccessLevel string | RemoteSupport Access Level 
- Remote support access level.
- ExpirationTimestamp string
- Remote support expiration timestamp.
- Type
string | RemoteSupport Type 
- Remote support type.
- DeploymentMode string | DeploymentMode 
- Deployment mode to trigger job.
- accessLevel String | RemoteSupport Access Level 
- Remote support access level.
- expirationTimestamp String
- Remote support expiration timestamp.
- type
String | RemoteSupport Type 
- Remote support type.
- deploymentMode String | DeploymentMode 
- Deployment mode to trigger job.
- accessLevel string | RemoteSupport Access Level 
- Remote support access level.
- expirationTimestamp string
- Remote support expiration timestamp.
- type
string | RemoteSupport Type 
- Remote support type.
- deploymentMode 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 | RemoteSupport Type 
- Remote support type.
- deployment_mode str | DeploymentMode 
- Deployment mode to trigger job.
- accessLevel String | "None" | "Diagnostics" | "DiagnosticsAnd Repair" 
- 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.
- EndTime stringUtc 
- 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.Azure Native. Azure Stack HCI. Inputs. Remote Support Job Reported Properties Response 
- log collection job reported properties.
- StartTime stringUtc 
- 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.
- EndTime stringUtc 
- 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 RemoteSupport Job Reported Properties Response 
- log collection job reported properties.
- StartTime stringUtc 
- 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.
- endTime StringUtc 
- 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 RemoteSupport Job Reported Properties Response 
- log collection job reported properties.
- startTime StringUtc 
- 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.
- endTime stringUtc 
- 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 RemoteSupport Job Reported Properties Response 
- log collection job reported properties.
- startTime stringUtc 
- 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_ strutc 
- 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 RemoteSupport 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.
- accessLevel String
- Remote support access level.
- endTime StringUtc 
- 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.
- startTime StringUtc 
- 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 Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response 
- Deployment status of job.
- LogCollection List<Pulumi.Session Details Azure Native. Azure Stack HCI. Inputs. Log Collection Job Session Response> 
- Details of the log collection session.
- PercentComplete int
- The percentage of the job that is complete.
- ValidationStatus Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response 
- Validation status of job.
- DeploymentStatus EceAction Status Response 
- Deployment status of job.
- LogCollection []LogSession Details Collection Job Session Response 
- Details of the log collection session.
- PercentComplete int
- The percentage of the job that is complete.
- ValidationStatus EceAction Status Response 
- Validation status of job.
- deploymentStatus EceAction Status Response 
- Deployment status of job.
- logCollection List<LogSession Details Collection Job Session Response> 
- Details of the log collection session.
- percentComplete Integer
- The percentage of the job that is complete.
- validationStatus EceAction Status Response 
- Validation status of job.
- deploymentStatus EceAction Status Response 
- Deployment status of job.
- logCollection LogSession Details Collection Job Session Response[] 
- Details of the log collection session.
- percentComplete number
- The percentage of the job that is complete.
- validationStatus 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.
- deploymentStatus Property Map
- Deployment status of job.
- logCollection List<Property Map>Session Details 
- 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.
- DiagnosticsAnd Repair 
- DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- RemoteSupport Access Level None 
- NoneNo remote support access is granted.
- RemoteSupport Access Level Diagnostics 
- DiagnosticsAccess is limited to diagnostics information only.
- RemoteSupport 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.
- DiagnosticsAnd 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.
- DiagnosticsAnd 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.
- "DiagnosticsAnd Repair" 
- DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
RemoteSupportJobNodeSettingsResponse, RemoteSupportJobNodeSettingsResponseArgs            
- ConnectionError stringMessage 
- 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.
- ConnectionError stringMessage 
- 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.
- connectionError StringMessage 
- 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.
- connectionError stringMessage 
- 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_ 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.
- connectionError StringMessage 
- 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 Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response 
- Deployment status of job.
- NodeSettings Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support Job Node Settings Response 
- Optional settings for configuring the node for remote support.
- PercentComplete int
- The percentage of the job that is complete.
- SessionDetails List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support Session Response> 
- Details of the remote support session.
- ValidationStatus Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response 
- Validation status of job.
- DeploymentStatus EceAction Status Response 
- Deployment status of job.
- NodeSettings RemoteSupport Job Node Settings Response 
- Optional settings for configuring the node for remote support.
- PercentComplete int
- The percentage of the job that is complete.
- SessionDetails []RemoteSupport Session Response 
- Details of the remote support session.
- ValidationStatus EceAction Status Response 
- Validation status of job.
- deploymentStatus EceAction Status Response 
- Deployment status of job.
- nodeSettings RemoteSupport Job Node Settings Response 
- Optional settings for configuring the node for remote support.
- percentComplete Integer
- The percentage of the job that is complete.
- sessionDetails List<RemoteSupport Session Response> 
- Details of the remote support session.
- validationStatus EceAction Status Response 
- Validation status of job.
- deploymentStatus EceAction Status Response 
- Deployment status of job.
- nodeSettings RemoteSupport Job Node Settings Response 
- Optional settings for configuring the node for remote support.
- percentComplete number
- The percentage of the job that is complete.
- sessionDetails RemoteSupport Session Response[] 
- Details of the remote support session.
- validationStatus EceAction Status Response 
- Validation status of job.
- deployment_status EceAction Status Response 
- Deployment status of job.
- node_settings RemoteSupport Job 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.
- 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.
- SessionEnd stringTime 
- The end time of the remote support session, in UTC.
- SessionId string
- Unique session Id.
- SessionStart stringTime 
- 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.
- SessionEnd stringTime 
- The end time of the remote support session, in UTC.
- SessionId string
- Unique session Id.
- SessionStart stringTime 
- 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.
- sessionEnd StringTime 
- The end time of the remote support session, in UTC.
- sessionId String
- Unique session Id.
- sessionStart StringTime 
- 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.
- sessionEnd stringTime 
- The end time of the remote support session, in UTC.
- sessionId string
- Unique session Id.
- sessionStart stringTime 
- 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_ 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.
- accessLevel String
- The level of access granted during the remote support session.
- sessionEnd StringTime 
- The end time of the remote support session, in UTC.
- sessionId String
- Unique session Id.
- sessionStart StringTime 
- 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.
- RemoteSupport Type Enable 
- EnableEnables remote support for the edge device.
- RemoteSupport Type 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.
- "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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native: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