azure-native.azurestackhci.HciEdgeDeviceJob
Explore with Pulumi AI
Edge device job for Azure Stack HCI solution.
Uses Azure REST API version 2024-12-01-preview. In version 2.x of the Azure Native provider, it used API version 2024-09-01-preview.
Example Usage
EdgeDeviceJobs_CreateOrUpdate_CollectLog
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/v3"
"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
This property is required. string - The unique name of the resource.
- args
This property is required. HciEdgeDeviceJobArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. HciEdgeDeviceJobArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. HciEdgeDeviceJobArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. 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:
- Edge
Device Name This property is required. Changes to this property will trigger replacement.
- The name of the EdgeDevice
- Properties
This property is required. 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
- Resource
Uri This property is required. Changes to this property will trigger replacement.
- The fully qualified Azure Resource manager identifier of the resource.
- Jobs
Name Changes to this property will trigger replacement.
- Name of EdgeDevice Job
- Edge
Device Name This property is required. Changes to this property will trigger replacement.
- The name of the EdgeDevice
- Properties
This property is required. HciCollect | HciLog Job Properties Args Remote Support Job Properties Args - HCI Edge device job properties
- Resource
Uri This property is required. Changes to this property will trigger replacement.
- The fully qualified Azure Resource manager identifier of the resource.
- Jobs
Name Changes to this property will trigger replacement.
- Name of EdgeDevice Job
- edge
Device Name This property is required. Changes to this property will trigger replacement.
- The name of the EdgeDevice
- properties
This property is required. HciCollect | HciLog Job Properties Remote Support Job Properties - HCI Edge device job properties
- resource
Uri This property is required. Changes to this property will trigger replacement.
- The fully qualified Azure Resource manager identifier of the resource.
- jobs
Name Changes to this property will trigger replacement.
- Name of EdgeDevice Job
- edge
Device Name This property is required. Changes to this property will trigger replacement.
- The name of the EdgeDevice
- properties
This property is required. HciCollect | HciLog Job Properties Remote Support Job Properties - HCI Edge device job properties
- resource
Uri This property is required. Changes to this property will trigger replacement.
- The fully qualified Azure Resource manager identifier of the resource.
- jobs
Name Changes to this property will trigger replacement.
- Name of EdgeDevice Job
- edge_
device_ name This property is required. Changes to this property will trigger replacement.
- The name of the EdgeDevice
- properties
This property is required. HciCollect | HciLog Job Properties Args Remote Support Job Properties Args - HCI Edge device job properties
- resource_
uri This property is required. Changes to this property will trigger replacement.
- The fully qualified Azure Resource manager identifier of the resource.
- jobs_
name Changes to this property will trigger replacement.
- Name of EdgeDevice Job
- edge
Device Name This property is required. Changes to this property will trigger replacement.
- The name of the EdgeDevice
- properties
This property is required. Property Map | Property Map - HCI Edge device job properties
- resource
Uri This property is required. Changes to this property will trigger replacement.
- The fully qualified Azure Resource manager identifier of the resource.
- jobs
Name Changes to this property will trigger replacement.
- Name of EdgeDevice Job
Outputs
All input properties are implicitly available as output properties. Additionally, the HciEdgeDeviceJob resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Azure Stack HCI. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
DeploymentMode, DeploymentModeArgs
- Validate
- ValidateValidate ECE action deployment for a cluster.
- Deploy
- DeployDeploy ECE action deployment for a cluster.
- Deployment
Mode Validate - ValidateValidate ECE action deployment for a cluster.
- Deployment
Mode Deploy - DeployDeploy ECE action deployment for a cluster.
- Validate
- ValidateValidate ECE action deployment for a cluster.
- Deploy
- DeployDeploy ECE action deployment for a cluster.
- Validate
- ValidateValidate ECE action deployment for a cluster.
- Deploy
- DeployDeploy ECE action deployment for a cluster.
- VALIDATE
- ValidateValidate ECE action deployment for a cluster.
- DEPLOY
- DeployDeploy ECE action deployment for a cluster.
- "Validate"
- ValidateValidate ECE action deployment for a cluster.
- "Deploy"
- DeployDeploy ECE action deployment for a cluster.
DeploymentStepResponse, DeploymentStepResponseArgs
- Description
This property is required. string - Description of step.
- End
Time Utc This property is required. string - End time of step.
- Exception
This property is required. List<string> - List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step Index This property is required. string - FullStepIndex of step.
- Name
This property is required. string - Name of step.
- Start
Time Utc This property is required. string - Start time of step.
- Status
This property is required. string - Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
This property is required. List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Deployment Step Response> - List of nested steps of AzureStackHCI Cluster Deployment.
- Description
This property is required. string - Description of step.
- End
Time Utc This property is required. string - End time of step.
- Exception
This property is required. []string - List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step Index This property is required. string - FullStepIndex of step.
- Name
This property is required. string - Name of step.
- Start
Time Utc This property is required. string - Start time of step.
- Status
This property is required. string - Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
This property is required. []DeploymentStep Response - List of nested steps of AzureStackHCI Cluster Deployment.
- description
This property is required. String - Description of step.
- end
Time Utc This property is required. String - End time of step.
- exception
This property is required. List<String> - List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step Index This property is required. String - FullStepIndex of step.
- name
This property is required. String - Name of step.
- start
Time Utc This property is required. String - Start time of step.
- status
This property is required. String - Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
This property is required. List<DeploymentStep Response> - List of nested steps of AzureStackHCI Cluster Deployment.
- description
This property is required. string - Description of step.
- end
Time Utc This property is required. string - End time of step.
- exception
This property is required. string[] - List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step Index This property is required. string - FullStepIndex of step.
- name
This property is required. string - Name of step.
- start
Time Utc This property is required. string - Start time of step.
- status
This property is required. string - Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
This property is required. DeploymentStep Response[] - List of nested steps of AzureStackHCI Cluster Deployment.
- description
This property is required. str - Description of step.
- end_
time_ utc This property is required. str - End time of step.
- exception
This property is required. Sequence[str] - List of exceptions in AzureStackHCI Cluster Deployment.
- full_
step_ index This property is required. str - FullStepIndex of step.
- name
This property is required. str - Name of step.
- start_
time_ utc This property is required. str - Start time of step.
- status
This property is required. str - Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
This property is required. Sequence[DeploymentStep Response] - List of nested steps of AzureStackHCI Cluster Deployment.
- description
This property is required. String - Description of step.
- end
Time Utc This property is required. String - End time of step.
- exception
This property is required. List<String> - List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step Index This property is required. String - FullStepIndex of step.
- name
This property is required. String - Name of step.
- start
Time Utc This property is required. String - Start time of step.
- status
This property is required. String - Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
This property is required. List<Property Map> - List of nested steps of AzureStackHCI Cluster Deployment.
EceActionStatusResponse, EceActionStatusResponseArgs
- Status
This property is required. string - Status of ECE action AzureStackHCI Cluster Deployment.
- Steps
This property is required. List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Deployment Step Response> - List of steps of AzureStackHCI Cluster Deployment.
- Status
This property is required. string - Status of ECE action AzureStackHCI Cluster Deployment.
- Steps
This property is required. []DeploymentStep Response - List of steps of AzureStackHCI Cluster Deployment.
- status
This property is required. String - Status of ECE action AzureStackHCI Cluster Deployment.
- steps
This property is required. List<DeploymentStep Response> - List of steps of AzureStackHCI Cluster Deployment.
- status
This property is required. string - Status of ECE action AzureStackHCI Cluster Deployment.
- steps
This property is required. DeploymentStep Response[] - List of steps of AzureStackHCI Cluster Deployment.
- status
This property is required. str - Status of ECE action AzureStackHCI Cluster Deployment.
- steps
This property is required. Sequence[DeploymentStep Response] - List of steps of AzureStackHCI Cluster Deployment.
- status
This property is required. String - Status of ECE action AzureStackHCI Cluster Deployment.
- steps
This property is required. List<Property Map> - List of steps of AzureStackHCI Cluster Deployment.
HciCollectLogJobProperties, HciCollectLogJobPropertiesArgs
- From
Date This property is required. string - From date for log collection.
- To
Date This property is required. string - To date for log collection.
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- From
Date This property is required. string - From date for log collection.
- To
Date This property is required. string - To date for log collection.
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- from
Date This property is required. String - From date for log collection.
- to
Date This property is required. String - To date for log collection.
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- from
Date This property is required. string - From date for log collection.
- to
Date This property is required. string - To date for log collection.
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- from_
date This property is required. str - From date for log collection.
- to_
date This property is required. str - To date for log collection.
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- from
Date This property is required. String - From date for log collection.
- to
Date This property is required. String - To date for log collection.
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
HciCollectLogJobPropertiesResponse, HciCollectLogJobPropertiesResponseArgs
- End
Time Utc This property is required. string - The UTC date and time at which the job completed.
- From
Date This property is required. string - From date for log collection.
- Job
Id This property is required. string - Unique, immutable job id.
- Last
Log Generated This property is required. string - To date for log collection.
- Provisioning
State This property is required. string - Job provisioning state
- Reported
Properties This property is required. Pulumi.Azure Native. Azure Stack HCI. Inputs. Log Collection Reported Properties Response - log collection job reported properties.
- Start
Time Utc This property is required. string - The UTC date and time at which the job started.
- Status
This property is required. string - Status of Edge device job.
- To
Date This property is required. string - To date for log collection.
- Deployment
Mode string - Deployment mode to trigger job.
- End
Time Utc This property is required. string - The UTC date and time at which the job completed.
- From
Date This property is required. string - From date for log collection.
- Job
Id This property is required. string - Unique, immutable job id.
- Last
Log Generated This property is required. string - To date for log collection.
- Provisioning
State This property is required. string - Job provisioning state
- Reported
Properties This property is required. LogCollection Reported Properties Response - log collection job reported properties.
- Start
Time Utc This property is required. string - The UTC date and time at which the job started.
- Status
This property is required. string - Status of Edge device job.
- To
Date This property is required. string - To date for log collection.
- Deployment
Mode string - Deployment mode to trigger job.
- end
Time Utc This property is required. String - The UTC date and time at which the job completed.
- from
Date This property is required. String - From date for log collection.
- job
Id This property is required. String - Unique, immutable job id.
- last
Log Generated This property is required. String - To date for log collection.
- provisioning
State This property is required. String - Job provisioning state
- reported
Properties This property is required. LogCollection Reported Properties Response - log collection job reported properties.
- start
Time Utc This property is required. String - The UTC date and time at which the job started.
- status
This property is required. String - Status of Edge device job.
- to
Date This property is required. String - To date for log collection.
- deployment
Mode String - Deployment mode to trigger job.
- end
Time Utc This property is required. string - The UTC date and time at which the job completed.
- from
Date This property is required. string - From date for log collection.
- job
Id This property is required. string - Unique, immutable job id.
- last
Log Generated This property is required. string - To date for log collection.
- provisioning
State This property is required. string - Job provisioning state
- reported
Properties This property is required. LogCollection Reported Properties Response - log collection job reported properties.
- start
Time Utc This property is required. string - The UTC date and time at which the job started.
- status
This property is required. string - Status of Edge device job.
- to
Date This property is required. string - To date for log collection.
- deployment
Mode string - Deployment mode to trigger job.
- end_
time_ utc This property is required. str - The UTC date and time at which the job completed.
- from_
date This property is required. str - From date for log collection.
- job_
id This property is required. str - Unique, immutable job id.
- last_
log_ generated This property is required. str - To date for log collection.
- provisioning_
state This property is required. str - Job provisioning state
- reported_
properties This property is required. LogCollection Reported Properties Response - log collection job reported properties.
- start_
time_ utc This property is required. str - The UTC date and time at which the job started.
- status
This property is required. str - Status of Edge device job.
- to_
date This property is required. str - To date for log collection.
- deployment_
mode str - Deployment mode to trigger job.
- end
Time Utc This property is required. String - The UTC date and time at which the job completed.
- from
Date This property is required. String - From date for log collection.
- job
Id This property is required. String - Unique, immutable job id.
- last
Log Generated This property is required. String - To date for log collection.
- provisioning
State This property is required. String - Job provisioning state
- reported
Properties This property is required. Property Map - log collection job reported properties.
- start
Time Utc This property is required. String - The UTC date and time at which the job started.
- status
This property is required. String - Status of Edge device job.
- to
Date This property is required. String - To date for log collection.
- deployment
Mode String - Deployment mode to trigger job.
HciRemoteSupportJobProperties, HciRemoteSupportJobPropertiesArgs
- Access
Level This property is required. string | Pulumi.Azure Native. Azure Stack HCI. Remote Support Access Level - Remote support access level.
- Expiration
Timestamp This property is required. string - Remote support expiration timestamp.
- Type
This property is required. string | Pulumi.Azure Native. Azure Stack HCI. Remote Support Type - Remote support type.
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- Access
Level This property is required. string | RemoteSupport Access Level - Remote support access level.
- Expiration
Timestamp This property is required. string - Remote support expiration timestamp.
- Type
This property is required. string | RemoteSupport Type - Remote support type.
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- access
Level This property is required. String | RemoteSupport Access Level - Remote support access level.
- expiration
Timestamp This property is required. String - Remote support expiration timestamp.
- type
This property is required. String | RemoteSupport Type - Remote support type.
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- access
Level This property is required. string | RemoteSupport Access Level - Remote support access level.
- expiration
Timestamp This property is required. string - Remote support expiration timestamp.
- type
This property is required. string | RemoteSupport Type - Remote support type.
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- access_
level This property is required. str | RemoteSupport Access Level - Remote support access level.
- expiration_
timestamp This property is required. str - Remote support expiration timestamp.
- type
This property is required. str | RemoteSupport Type - Remote support type.
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- access
Level This property is required. String | "None" | "Diagnostics" | "DiagnosticsAnd Repair" - Remote support access level.
- expiration
Timestamp This property is required. String - Remote support expiration timestamp.
- type
This property is required. String | "Enable" | "Revoke" - Remote support type.
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
HciRemoteSupportJobPropertiesResponse, HciRemoteSupportJobPropertiesResponseArgs
- Access
Level This property is required. string - Remote support access level.
- End
Time Utc This property is required. string - The UTC date and time at which the job completed.
- Expiration
Timestamp This property is required. string - Remote support expiration timestamp.
- Job
Id This property is required. string - Unique, immutable job id.
- Provisioning
State This property is required. string - Job provisioning state
- Reported
Properties This property is required. Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support Job Reported Properties Response - log collection job reported properties.
- Start
Time Utc This property is required. string - The UTC date and time at which the job started.
- Status
This property is required. string - Status of Edge device job.
- Type
This property is required. string - Remote support type.
- Deployment
Mode string - Deployment mode to trigger job.
- Access
Level This property is required. string - Remote support access level.
- End
Time Utc This property is required. string - The UTC date and time at which the job completed.
- Expiration
Timestamp This property is required. string - Remote support expiration timestamp.
- Job
Id This property is required. string - Unique, immutable job id.
- Provisioning
State This property is required. string - Job provisioning state
- Reported
Properties This property is required. RemoteSupport Job Reported Properties Response - log collection job reported properties.
- Start
Time Utc This property is required. string - The UTC date and time at which the job started.
- Status
This property is required. string - Status of Edge device job.
- Type
This property is required. string - Remote support type.
- Deployment
Mode string - Deployment mode to trigger job.
- access
Level This property is required. String - Remote support access level.
- end
Time Utc This property is required. String - The UTC date and time at which the job completed.
- expiration
Timestamp This property is required. String - Remote support expiration timestamp.
- job
Id This property is required. String - Unique, immutable job id.
- provisioning
State This property is required. String - Job provisioning state
- reported
Properties This property is required. RemoteSupport Job Reported Properties Response - log collection job reported properties.
- start
Time Utc This property is required. String - The UTC date and time at which the job started.
- status
This property is required. String - Status of Edge device job.
- type
This property is required. String - Remote support type.
- deployment
Mode String - Deployment mode to trigger job.
- access
Level This property is required. string - Remote support access level.
- end
Time Utc This property is required. string - The UTC date and time at which the job completed.
- expiration
Timestamp This property is required. string - Remote support expiration timestamp.
- job
Id This property is required. string - Unique, immutable job id.
- provisioning
State This property is required. string - Job provisioning state
- reported
Properties This property is required. RemoteSupport Job Reported Properties Response - log collection job reported properties.
- start
Time Utc This property is required. string - The UTC date and time at which the job started.
- status
This property is required. string - Status of Edge device job.
- type
This property is required. string - Remote support type.
- deployment
Mode string - Deployment mode to trigger job.
- access_
level This property is required. str - Remote support access level.
- end_
time_ utc This property is required. str - The UTC date and time at which the job completed.
- expiration_
timestamp This property is required. str - Remote support expiration timestamp.
- job_
id This property is required. str - Unique, immutable job id.
- provisioning_
state This property is required. str - Job provisioning state
- reported_
properties This property is required. RemoteSupport Job Reported Properties Response - log collection job reported properties.
- start_
time_ utc This property is required. str - The UTC date and time at which the job started.
- status
This property is required. str - Status of Edge device job.
- type
This property is required. str - Remote support type.
- deployment_
mode str - Deployment mode to trigger job.
- access
Level This property is required. String - Remote support access level.
- end
Time Utc This property is required. String - The UTC date and time at which the job completed.
- expiration
Timestamp This property is required. String - Remote support expiration timestamp.
- job
Id This property is required. String - Unique, immutable job id.
- provisioning
State This property is required. String - Job provisioning state
- reported
Properties This property is required. Property Map - log collection job reported properties.
- start
Time Utc This property is required. String - The UTC date and time at which the job started.
- status
This property is required. String - Status of Edge device job.
- type
This property is required. String - Remote support type.
- deployment
Mode String - Deployment mode to trigger job.
LogCollectionJobSessionResponse, LogCollectionJobSessionResponseArgs
- Correlation
Id This property is required. string - A unique identifier for correlating this log collection session with other operations or sessions.
- End
Time This property is required. string - The timestamp when log collection ended, in ISO 8601 format.
- Log
Size This property is required. int - The size of the collected logs in bytes.
- Start
Time This property is required. string - The timestamp when log collection started, in ISO 8601 format.
- Status
This property is required. string - The status of the log collection session.
- Time
Collected This property is required. string - The total time logs were collected for, in ISO 8601 duration format.
- Correlation
Id This property is required. string - A unique identifier for correlating this log collection session with other operations or sessions.
- End
Time This property is required. string - The timestamp when log collection ended, in ISO 8601 format.
- Log
Size This property is required. int - The size of the collected logs in bytes.
- Start
Time This property is required. string - The timestamp when log collection started, in ISO 8601 format.
- Status
This property is required. string - The status of the log collection session.
- Time
Collected This property is required. string - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id This property is required. String - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time This property is required. String - The timestamp when log collection ended, in ISO 8601 format.
- log
Size This property is required. Integer - The size of the collected logs in bytes.
- start
Time This property is required. String - The timestamp when log collection started, in ISO 8601 format.
- status
This property is required. String - The status of the log collection session.
- time
Collected This property is required. String - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id This property is required. string - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time This property is required. string - The timestamp when log collection ended, in ISO 8601 format.
- log
Size This property is required. number - The size of the collected logs in bytes.
- start
Time This property is required. string - The timestamp when log collection started, in ISO 8601 format.
- status
This property is required. string - The status of the log collection session.
- time
Collected This property is required. string - The total time logs were collected for, in ISO 8601 duration format.
- correlation_
id This property is required. str - A unique identifier for correlating this log collection session with other operations or sessions.
- end_
time This property is required. str - The timestamp when log collection ended, in ISO 8601 format.
- log_
size This property is required. int - The size of the collected logs in bytes.
- start_
time This property is required. str - The timestamp when log collection started, in ISO 8601 format.
- status
This property is required. str - The status of the log collection session.
- time_
collected This property is required. str - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id This property is required. String - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time This property is required. String - The timestamp when log collection ended, in ISO 8601 format.
- log
Size This property is required. Number - The size of the collected logs in bytes.
- start
Time This property is required. String - The timestamp when log collection started, in ISO 8601 format.
- status
This property is required. String - The status of the log collection session.
- time
Collected This property is required. String - The total time logs were collected for, in ISO 8601 duration format.
LogCollectionReportedPropertiesResponse, LogCollectionReportedPropertiesResponseArgs
- Deployment
Status This property is required. Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Deployment status of job.
- Log
Collection Session Details This property is required. List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Log Collection Job Session Response> - Details of the log collection session.
- Percent
Complete This property is required. int - The percentage of the job that is complete.
- Validation
Status This property is required. Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Validation status of job.
- Deployment
Status This property is required. EceAction Status Response - Deployment status of job.
- Log
Collection Session Details This property is required. []LogCollection Job Session Response - Details of the log collection session.
- Percent
Complete This property is required. int - The percentage of the job that is complete.
- Validation
Status This property is required. EceAction Status Response - Validation status of job.
- deployment
Status This property is required. EceAction Status Response - Deployment status of job.
- log
Collection Session Details This property is required. List<LogCollection Job Session Response> - Details of the log collection session.
- percent
Complete This property is required. Integer - The percentage of the job that is complete.
- validation
Status This property is required. EceAction Status Response - Validation status of job.
- deployment
Status This property is required. EceAction Status Response - Deployment status of job.
- log
Collection Session Details This property is required. LogCollection Job Session Response[] - Details of the log collection session.
- percent
Complete This property is required. number - The percentage of the job that is complete.
- validation
Status This property is required. EceAction Status Response - Validation status of job.
- deployment_
status This property is required. EceAction Status Response - Deployment status of job.
- log_
collection_ session_ details This property is required. Sequence[LogCollection Job Session Response] - Details of the log collection session.
- percent_
complete This property is required. int - The percentage of the job that is complete.
- validation_
status This property is required. EceAction Status Response - Validation status of job.
- deployment
Status This property is required. Property Map - Deployment status of job.
- log
Collection Session Details This property is required. List<Property Map> - Details of the log collection session.
- percent
Complete This property is required. Number - The percentage of the job that is complete.
- validation
Status This property is required. Property Map - Validation status of job.
RemoteSupportAccessLevel, RemoteSupportAccessLevelArgs
- None
- NoneNo remote support access is granted.
- Diagnostics
- DiagnosticsAccess is limited to diagnostics information only.
- Diagnostics
And Repair - DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- Remote
Support Access Level None - NoneNo remote support access is granted.
- Remote
Support Access Level Diagnostics - DiagnosticsAccess is limited to diagnostics information only.
- Remote
Support Access Level Diagnostics And Repair - DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- None
- NoneNo remote support access is granted.
- Diagnostics
- DiagnosticsAccess is limited to diagnostics information only.
- Diagnostics
And Repair - DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- None
- NoneNo remote support access is granted.
- Diagnostics
- DiagnosticsAccess is limited to diagnostics information only.
- Diagnostics
And Repair - DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- NONE
- NoneNo remote support access is granted.
- DIAGNOSTICS
- DiagnosticsAccess is limited to diagnostics information only.
- DIAGNOSTICS_AND_REPAIR
- DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
- "None"
- NoneNo remote support access is granted.
- "Diagnostics"
- DiagnosticsAccess is limited to diagnostics information only.
- "Diagnostics
And Repair" - DiagnosticsAndRepairAccess includes diagnostics information and the ability to perform repairs.
RemoteSupportJobNodeSettingsResponse, RemoteSupportJobNodeSettingsResponseArgs
- Connection
Error Message This property is required. string - The error message, if any, from the last connection attempt.
- Connection
Status This property is required. string - The current connection status of the remote support session.
- Created
At This property is required. string - The timestamp when the node settings were created, in UTC.
- State
This property is required. string - The state of the remote support node.
- Updated
At This property is required. string - The timestamp when the node settings were last updated, in UTC.
- Connection
Error Message This property is required. string - The error message, if any, from the last connection attempt.
- Connection
Status This property is required. string - The current connection status of the remote support session.
- Created
At This property is required. string - The timestamp when the node settings were created, in UTC.
- State
This property is required. string - The state of the remote support node.
- Updated
At This property is required. string - The timestamp when the node settings were last updated, in UTC.
- connection
Error Message This property is required. String - The error message, if any, from the last connection attempt.
- connection
Status This property is required. String - The current connection status of the remote support session.
- created
At This property is required. String - The timestamp when the node settings were created, in UTC.
- state
This property is required. String - The state of the remote support node.
- updated
At This property is required. String - The timestamp when the node settings were last updated, in UTC.
- connection
Error Message This property is required. string - The error message, if any, from the last connection attempt.
- connection
Status This property is required. string - The current connection status of the remote support session.
- created
At This property is required. string - The timestamp when the node settings were created, in UTC.
- state
This property is required. string - The state of the remote support node.
- updated
At This property is required. string - The timestamp when the node settings were last updated, in UTC.
- connection_
error_ message This property is required. str - The error message, if any, from the last connection attempt.
- connection_
status This property is required. str - The current connection status of the remote support session.
- created_
at This property is required. str - The timestamp when the node settings were created, in UTC.
- state
This property is required. str - The state of the remote support node.
- updated_
at This property is required. str - The timestamp when the node settings were last updated, in UTC.
- connection
Error Message This property is required. String - The error message, if any, from the last connection attempt.
- connection
Status This property is required. String - The current connection status of the remote support session.
- created
At This property is required. String - The timestamp when the node settings were created, in UTC.
- state
This property is required. String - The state of the remote support node.
- updated
At This property is required. String - The timestamp when the node settings were last updated, in UTC.
RemoteSupportJobReportedPropertiesResponse, RemoteSupportJobReportedPropertiesResponseArgs
- Deployment
Status This property is required. Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Deployment status of job.
- Node
Settings This property is required. Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support Job Node Settings Response - Optional settings for configuring the node for remote support.
- Percent
Complete This property is required. int - The percentage of the job that is complete.
- Session
Details This property is required. List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support Session Response> - Details of the remote support session.
- Validation
Status This property is required. Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Validation status of job.
- Deployment
Status This property is required. EceAction Status Response - Deployment status of job.
- Node
Settings This property is required. RemoteSupport Job Node Settings Response - Optional settings for configuring the node for remote support.
- Percent
Complete This property is required. int - The percentage of the job that is complete.
- Session
Details This property is required. []RemoteSupport Session Response - Details of the remote support session.
- Validation
Status This property is required. EceAction Status Response - Validation status of job.
- deployment
Status This property is required. EceAction Status Response - Deployment status of job.
- node
Settings This property is required. RemoteSupport Job Node Settings Response - Optional settings for configuring the node for remote support.
- percent
Complete This property is required. Integer - The percentage of the job that is complete.
- session
Details This property is required. List<RemoteSupport Session Response> - Details of the remote support session.
- validation
Status This property is required. EceAction Status Response - Validation status of job.
- deployment
Status This property is required. EceAction Status Response - Deployment status of job.
- node
Settings This property is required. RemoteSupport Job Node Settings Response - Optional settings for configuring the node for remote support.
- percent
Complete This property is required. number - The percentage of the job that is complete.
- session
Details This property is required. RemoteSupport Session Response[] - Details of the remote support session.
- validation
Status This property is required. EceAction Status Response - Validation status of job.
- deployment_
status This property is required. EceAction Status Response - Deployment status of job.
- node_
settings This property is required. RemoteSupport Job Node Settings Response - Optional settings for configuring the node for remote support.
- percent_
complete This property is required. int - The percentage of the job that is complete.
- session_
details This property is required. Sequence[RemoteSupport Session Response] - Details of the remote support session.
- validation_
status This property is required. EceAction Status Response - Validation status of job.
- deployment
Status This property is required. Property Map - Deployment status of job.
- node
Settings This property is required. Property Map - Optional settings for configuring the node for remote support.
- percent
Complete This property is required. Number - The percentage of the job that is complete.
- session
Details This property is required. List<Property Map> - Details of the remote support session.
- validation
Status This property is required. Property Map - Validation status of job.
RemoteSupportSessionResponse, RemoteSupportSessionResponseArgs
- Access
Level This property is required. string - The level of access granted during the remote support session.
- Session
End Time This property is required. string - The end time of the remote support session, in UTC.
- Session
Id This property is required. string - Unique session Id.
- Session
Start Time This property is required. string - The start time of the remote support session, in UTC.
- Transcript
Location This property is required. string - The location where the session transcript is stored.
- Access
Level This property is required. string - The level of access granted during the remote support session.
- Session
End Time This property is required. string - The end time of the remote support session, in UTC.
- Session
Id This property is required. string - Unique session Id.
- Session
Start Time This property is required. string - The start time of the remote support session, in UTC.
- Transcript
Location This property is required. string - The location where the session transcript is stored.
- access
Level This property is required. String - The level of access granted during the remote support session.
- session
End Time This property is required. String - The end time of the remote support session, in UTC.
- session
Id This property is required. String - Unique session Id.
- session
Start Time This property is required. String - The start time of the remote support session, in UTC.
- transcript
Location This property is required. String - The location where the session transcript is stored.
- access
Level This property is required. string - The level of access granted during the remote support session.
- session
End Time This property is required. string - The end time of the remote support session, in UTC.
- session
Id This property is required. string - Unique session Id.
- session
Start Time This property is required. string - The start time of the remote support session, in UTC.
- transcript
Location This property is required. string - The location where the session transcript is stored.
- access_
level This property is required. str - The level of access granted during the remote support session.
- session_
end_ time This property is required. str - The end time of the remote support session, in UTC.
- session_
id This property is required. str - Unique session Id.
- session_
start_ time This property is required. str - The start time of the remote support session, in UTC.
- transcript_
location This property is required. str - The location where the session transcript is stored.
- access
Level This property is required. String - The level of access granted during the remote support session.
- session
End Time This property is required. String - The end time of the remote support session, in UTC.
- session
Id This property is required. String - Unique session Id.
- session
Start Time This property is required. String - The start time of the remote support session, in UTC.
- transcript
Location This property is required. 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.
- Remote
Support Type Enable - EnableEnables remote support for the edge device.
- Remote
Support 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native: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