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 pulumi
import pulumi_azure_native as azure_native
hci_edge_device_job = azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJob",
edge_device_name="default",
jobs_name="collectLog",
kind="HCI",
properties={
"from_date": "2024-01-29T10:43:27.9471574Z",
"job_type": "CollectLog",
"to_date": "2024-01-29T10:43:27.9471574Z",
},
resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const hciEdgeDeviceJob = new azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJob", {
edgeDeviceName: "default",
jobsName: "collectLog",
kind: "HCI",
properties: {
fromDate: "2024-01-29T10:43:27.9471574Z",
jobType: "CollectLog",
toDate: "2024-01-29T10:43:27.9471574Z",
},
resourceUri: "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1",
});
resources:
hciEdgeDeviceJob:
type: azure-native:azurestackhci:HciEdgeDeviceJob
properties:
edgeDeviceName: default
jobsName: collectLog
kind: HCI
properties:
fromDate: 2024-01-29T10:43:27.9471574Z
jobType: CollectLog
toDate: 2024-01-29T10:43:27.9471574Z
resourceUri: subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1
EdgeDeviceJobs_CreateOrUpdate_RemoteSupport
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var hciEdgeDeviceJob = new AzureNative.AzureStackHCI.HciEdgeDeviceJob("hciEdgeDeviceJob", new()
{
EdgeDeviceName = "default",
JobsName = "collectLog",
Kind = "HCI",
Properties = new AzureNative.AzureStackHCI.Inputs.HciRemoteSupportJobPropertiesArgs
{
AccessLevel = AzureNative.AzureStackHCI.RemoteSupportAccessLevel.Diagnostics,
ExpirationTimestamp = "2024-01-29T10:43:27.9471574Z",
JobType = "RemoteSupport",
Type = AzureNative.AzureStackHCI.RemoteSupportType.Enable,
},
ResourceUri = "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1",
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewHciEdgeDeviceJob(ctx, "hciEdgeDeviceJob", &azurestackhci.HciEdgeDeviceJobArgs{
EdgeDeviceName: pulumi.String("default"),
JobsName: pulumi.String("collectLog"),
Kind: pulumi.String("HCI"),
Properties: &azurestackhci.HciRemoteSupportJobPropertiesArgs{
AccessLevel: pulumi.String(azurestackhci.RemoteSupportAccessLevelDiagnostics),
ExpirationTimestamp: pulumi.String("2024-01-29T10:43:27.9471574Z"),
JobType: pulumi.String("RemoteSupport"),
Type: pulumi.String(azurestackhci.RemoteSupportTypeEnable),
},
ResourceUri: pulumi.String("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.azurestackhci.HciEdgeDeviceJob;
import com.pulumi.azurenative.azurestackhci.HciEdgeDeviceJobArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var hciEdgeDeviceJob = new HciEdgeDeviceJob("hciEdgeDeviceJob", HciEdgeDeviceJobArgs.builder()
.edgeDeviceName("default")
.jobsName("collectLog")
.kind("HCI")
.properties(HciRemoteSupportJobPropertiesArgs.builder()
.accessLevel("Diagnostics")
.expirationTimestamp("2024-01-29T10:43:27.9471574Z")
.jobType("RemoteSupport")
.type("Enable")
.build())
.resourceUri("subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
hci_edge_device_job = azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJob",
edge_device_name="default",
jobs_name="collectLog",
kind="HCI",
properties={
"access_level": azure_native.azurestackhci.RemoteSupportAccessLevel.DIAGNOSTICS,
"expiration_timestamp": "2024-01-29T10:43:27.9471574Z",
"job_type": "RemoteSupport",
"type": azure_native.azurestackhci.RemoteSupportType.ENABLE,
},
resource_uri="subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const hciEdgeDeviceJob = new azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJob", {
edgeDeviceName: "default",
jobsName: "collectLog",
kind: "HCI",
properties: {
accessLevel: azure_native.azurestackhci.RemoteSupportAccessLevel.Diagnostics,
expirationTimestamp: "2024-01-29T10:43:27.9471574Z",
jobType: "RemoteSupport",
type: azure_native.azurestackhci.RemoteSupportType.Enable,
},
resourceUri: "subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1",
});
resources:
hciEdgeDeviceJob:
type: azure-native:azurestackhci:HciEdgeDeviceJob
properties:
edgeDeviceName: default
jobsName: collectLog
kind: HCI
properties:
accessLevel: Diagnostics
expirationTimestamp: 2024-01-29T10:43:27.9471574Z
jobType: RemoteSupport
type: Enable
resourceUri: subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/ArcInstance-rg/providers/Microsoft.HybridCompute/machines/Node-1
Create HciEdgeDeviceJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HciEdgeDeviceJob(name: string, args: HciEdgeDeviceJobArgs, opts?: CustomResourceOptions);
@overload
def HciEdgeDeviceJob(resource_name: str,
args: HciEdgeDeviceJobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HciEdgeDeviceJob(resource_name: str,
opts: Optional[ResourceOptions] = None,
edge_device_name: Optional[str] = None,
properties: Optional[Union[HciCollectLogJobPropertiesArgs, HciRemoteSupportJobPropertiesArgs]] = None,
resource_uri: Optional[str] = None,
jobs_name: Optional[str] = None)
func NewHciEdgeDeviceJob(ctx *Context, name string, args HciEdgeDeviceJobArgs, opts ...ResourceOption) (*HciEdgeDeviceJob, error)
public HciEdgeDeviceJob(string name, HciEdgeDeviceJobArgs args, CustomResourceOptions? opts = null)
public HciEdgeDeviceJob(String name, HciEdgeDeviceJobArgs args)
public HciEdgeDeviceJob(String name, HciEdgeDeviceJobArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:HciEdgeDeviceJob
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args HciEdgeDeviceJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args HciEdgeDeviceJobArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args HciEdgeDeviceJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HciEdgeDeviceJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HciEdgeDeviceJobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var hciEdgeDeviceJobResource = new AzureNative.AzureStackHCI.HciEdgeDeviceJob("hciEdgeDeviceJobResource", new()
{
EdgeDeviceName = "string",
Kind = "string",
Properties = new AzureNative.AzureStackHCI.Inputs.HciCollectLogJobPropertiesArgs
{
FromDate = "string",
JobType = "CollectLog",
ToDate = "string",
DeploymentMode = "string",
},
ResourceUri = "string",
JobsName = "string",
});
example, err := azurestackhci.NewHciEdgeDeviceJob(ctx, "hciEdgeDeviceJobResource", &azurestackhci.HciEdgeDeviceJobArgs{
EdgeDeviceName: pulumi.String("string"),
Kind: pulumi.String("string"),
Properties: &azurestackhci.HciCollectLogJobPropertiesArgs{
FromDate: pulumi.String("string"),
JobType: pulumi.String("CollectLog"),
ToDate: pulumi.String("string"),
DeploymentMode: pulumi.String("string"),
},
ResourceUri: pulumi.String("string"),
JobsName: pulumi.String("string"),
})
var hciEdgeDeviceJobResource = new HciEdgeDeviceJob("hciEdgeDeviceJobResource", HciEdgeDeviceJobArgs.builder()
.edgeDeviceName("string")
.kind("string")
.properties(HciCollectLogJobPropertiesArgs.builder()
.fromDate("string")
.jobType("CollectLog")
.toDate("string")
.deploymentMode("string")
.build())
.resourceUri("string")
.jobsName("string")
.build());
hci_edge_device_job_resource = azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJobResource",
edge_device_name="string",
kind="string",
properties={
"from_date": "string",
"job_type": "CollectLog",
"to_date": "string",
"deployment_mode": "string",
},
resource_uri="string",
jobs_name="string")
const hciEdgeDeviceJobResource = new azure_native.azurestackhci.HciEdgeDeviceJob("hciEdgeDeviceJobResource", {
edgeDeviceName: "string",
kind: "string",
properties: {
fromDate: "string",
jobType: "CollectLog",
toDate: "string",
deploymentMode: "string",
},
resourceUri: "string",
jobsName: "string",
});
type: azure-native:azurestackhci:HciEdgeDeviceJob
properties:
edgeDeviceName: string
jobsName: string
kind: string
properties:
deploymentMode: string
fromDate: string
jobType: CollectLog
toDate: string
resourceUri: string
HciEdgeDeviceJob Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The HciEdgeDeviceJob resource accepts the following input properties:
- Edge
Device 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
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- Jobs
Name string - Name of EdgeDevice Job
- Edge
Device stringName - The name of the EdgeDevice
- Properties
Hci
Collect | HciLog Job Properties Args Remote Support Job Properties Args - HCI Edge device job properties
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- Jobs
Name string - Name of EdgeDevice Job
- edge
Device StringName - The name of the EdgeDevice
- properties
Hci
Collect | HciLog Job Properties Remote Support Job Properties - HCI Edge device job properties
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource.
- jobs
Name String - Name of EdgeDevice Job
- edge
Device stringName - The name of the EdgeDevice
- properties
Hci
Collect | HciLog Job Properties Remote Support Job Properties - HCI Edge device job properties
- resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- jobs
Name string - Name of EdgeDevice Job
- edge_
device_ strname - The name of the EdgeDevice
- properties
Hci
Collect | 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
- edge
Device StringName - The name of the EdgeDevice
- properties Property Map | Property Map
- HCI Edge device job properties
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource.
- jobs
Name 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
- 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"
- 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"
- 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"
- 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"
- 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
- 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 string
- Description of step.
- End
Time stringUtc - End time of step.
- Exception List<string>
- List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step stringIndex - FullStepIndex of step.
- Name string
- Name of step.
- Start
Time stringUtc - Start time of step.
- Status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Deployment Step Response> - List of nested steps of AzureStackHCI Cluster Deployment.
- Description string
- Description of step.
- End
Time stringUtc - End time of step.
- Exception []string
- List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step stringIndex - FullStepIndex of step.
- Name string
- Name of step.
- Start
Time stringUtc - Start time of step.
- Status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
[]Deployment
Step Response - List of nested steps of AzureStackHCI Cluster Deployment.
- description String
- Description of step.
- end
Time StringUtc - End time of step.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step StringIndex - FullStepIndex of step.
- name String
- Name of step.
- start
Time StringUtc - Start time of step.
- status String
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
List<Deployment
Step Response> - List of nested steps of AzureStackHCI Cluster Deployment.
- description string
- Description of step.
- end
Time stringUtc - End time of step.
- exception string[]
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step stringIndex - FullStepIndex of step.
- name string
- Name of step.
- start
Time stringUtc - Start time of step.
- status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
Deployment
Step Response[] - List of nested steps of AzureStackHCI Cluster Deployment.
- description str
- Description of step.
- end_
time_ strutc - End time of step.
- exception Sequence[str]
- List of exceptions in AzureStackHCI Cluster Deployment.
- full_
step_ strindex - FullStepIndex of step.
- name str
- Name of step.
- start_
time_ strutc - Start time of step.
- status str
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
Sequence[Deployment
Step Response] - List of nested steps of AzureStackHCI Cluster Deployment.
- description String
- Description of step.
- end
Time StringUtc - End time of step.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step StringIndex - FullStepIndex of step.
- name String
- Name of step.
- start
Time StringUtc - Start time of step.
- status String
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps List<Property Map>
- List of nested steps of AzureStackHCI Cluster Deployment.
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
[]Deployment
Step Response - List of steps of AzureStackHCI Cluster Deployment.
- status String
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
List<Deployment
Step Response> - List of steps of AzureStackHCI Cluster Deployment.
- status string
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
Deployment
Step Response[] - List of steps of AzureStackHCI Cluster Deployment.
- status str
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
Sequence[Deployment
Step Response] - List of steps of AzureStackHCI Cluster Deployment.
- status String
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps List<Property Map>
- List of steps of AzureStackHCI Cluster Deployment.
HciCollectLogJobProperties, HciCollectLogJobPropertiesArgs
- From
Date string - From date for log collection.
- To
Date string - To date for log collection.
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- From
Date string - From date for log collection.
- To
Date string - To date for log collection.
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- from
Date String - From date for log collection.
- to
Date String - To date for log collection.
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- from
Date string - From date for log collection.
- to
Date string - To date for log collection.
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- from_
date str - From date for log collection.
- to_
date str - To date for log collection.
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- from
Date String - From date for log collection.
- to
Date String - To date for log collection.
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
HciCollectLogJobPropertiesResponse, HciCollectLogJobPropertiesResponseArgs
- End
Time stringUtc - The UTC date and time at which the job completed.
- From
Date string - From date for log collection.
- Job
Id string - Unique, immutable job id.
- Last
Log stringGenerated - To date for log collection.
- Provisioning
State string - Job provisioning state
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Log Collection Reported Properties Response - log collection job reported properties.
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- To
Date string - To date for log collection.
- Deployment
Mode string - Deployment mode to trigger job.
- End
Time stringUtc - The UTC date and time at which the job completed.
- From
Date string - From date for log collection.
- Job
Id string - Unique, immutable job id.
- Last
Log stringGenerated - To date for log collection.
- Provisioning
State string - Job provisioning state
- Reported
Properties LogCollection Reported Properties Response - log collection job reported properties.
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- To
Date string - To date for log collection.
- Deployment
Mode string - Deployment mode to trigger job.
- end
Time StringUtc - The UTC date and time at which the job completed.
- from
Date String - From date for log collection.
- job
Id String - Unique, immutable job id.
- last
Log StringGenerated - To date for log collection.
- provisioning
State String - Job provisioning state
- reported
Properties LogCollection Reported Properties Response - log collection job reported properties.
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- to
Date String - To date for log collection.
- deployment
Mode String - Deployment mode to trigger job.
- end
Time stringUtc - The UTC date and time at which the job completed.
- from
Date string - From date for log collection.
- job
Id string - Unique, immutable job id.
- last
Log stringGenerated - To date for log collection.
- provisioning
State string - Job provisioning state
- reported
Properties LogCollection Reported Properties Response - log collection job reported properties.
- start
Time stringUtc - The UTC date and time at which the job started.
- status string
- Status of Edge device job.
- to
Date string - To date for log collection.
- deployment
Mode string - Deployment mode to trigger job.
- end_
time_ strutc - The UTC date and time at which the job completed.
- 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.
- end
Time StringUtc - The UTC date and time at which the job completed.
- from
Date String - From date for log collection.
- job
Id String - Unique, immutable job id.
- last
Log StringGenerated - To date for log collection.
- provisioning
State String - Job provisioning state
- reported
Properties Property Map - log collection job reported properties.
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- to
Date String - To date for log collection.
- deployment
Mode String - Deployment mode to trigger job.
HciRemoteSupportJobProperties, HciRemoteSupportJobPropertiesArgs
- Access
Level string | Pulumi.Azure Native. Azure Stack HCI. Remote Support Access Level - Remote support access level.
- Expiration
Timestamp string - Remote support expiration timestamp.
- Type
string | Pulumi.
Azure Native. Azure Stack HCI. Remote Support Type - Remote support type.
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- Access
Level string | RemoteSupport Access Level - Remote support access level.
- Expiration
Timestamp string - Remote support expiration timestamp.
- Type
string | Remote
Support Type - Remote support type.
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- access
Level String | RemoteSupport Access Level - Remote support access level.
- expiration
Timestamp String - Remote support expiration timestamp.
- type
String | Remote
Support Type - Remote support type.
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- access
Level string | RemoteSupport Access Level - Remote support access level.
- expiration
Timestamp string - Remote support expiration timestamp.
- type
string | Remote
Support Type - Remote support type.
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- access_
level str | RemoteSupport Access Level - Remote support access level.
- expiration_
timestamp str - Remote support expiration timestamp.
- type
str | Remote
Support Type - Remote support type.
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- access
Level String | "None" | "Diagnostics" | "DiagnosticsAnd Repair" - Remote support access level.
- expiration
Timestamp String - Remote support expiration timestamp.
- type String | "Enable" | "Revoke"
- Remote support type.
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
HciRemoteSupportJobPropertiesResponse, HciRemoteSupportJobPropertiesResponseArgs
- Access
Level string - Remote support access level.
- End
Time stringUtc - The UTC date and time at which the job completed.
- Expiration
Timestamp string - Remote support expiration timestamp.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support Job Reported Properties Response - log collection job reported properties.
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- Type string
- Remote support type.
- Deployment
Mode string - Deployment mode to trigger job.
- Access
Level string - Remote support access level.
- End
Time stringUtc - The UTC date and time at which the job completed.
- Expiration
Timestamp string - Remote support expiration timestamp.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Reported
Properties RemoteSupport Job Reported Properties Response - log collection job reported properties.
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Edge device job.
- Type string
- Remote support type.
- Deployment
Mode string - Deployment mode to trigger job.
- access
Level String - Remote support access level.
- end
Time StringUtc - The UTC date and time at which the job completed.
- expiration
Timestamp String - Remote support expiration timestamp.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- reported
Properties RemoteSupport Job Reported Properties Response - log collection job reported properties.
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- type String
- Remote support type.
- deployment
Mode String - Deployment mode to trigger job.
- access
Level string - Remote support access level.
- end
Time stringUtc - The UTC date and time at which the job completed.
- expiration
Timestamp string - Remote support expiration timestamp.
- job
Id string - Unique, immutable job id.
- provisioning
State string - Job provisioning state
- reported
Properties RemoteSupport Job Reported Properties Response - log collection job reported properties.
- start
Time stringUtc - The UTC date and time at which the job started.
- status string
- Status of Edge device job.
- type string
- Remote support type.
- deployment
Mode string - Deployment mode to trigger job.
- access_
level str - Remote support access level.
- end_
time_ strutc - The UTC date and time at which the job completed.
- 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.
- access
Level String - Remote support access level.
- end
Time StringUtc - The UTC date and time at which the job completed.
- expiration
Timestamp String - Remote support expiration timestamp.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- reported
Properties Property Map - log collection job reported properties.
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Edge device job.
- type String
- Remote support type.
- deployment
Mode String - Deployment mode to trigger job.
LogCollectionJobSessionResponse, LogCollectionJobSessionResponseArgs
- Correlation
Id string - A unique identifier for correlating this log collection session with other operations or sessions.
- End
Time string - The timestamp when log collection ended, in ISO 8601 format.
- Log
Size int - The size of the collected logs in bytes.
- Start
Time string - The timestamp when log collection started, in ISO 8601 format.
- Status string
- The status of the log collection session.
- Time
Collected string - The total time logs were collected for, in ISO 8601 duration format.
- Correlation
Id string - A unique identifier for correlating this log collection session with other operations or sessions.
- End
Time string - The timestamp when log collection ended, in ISO 8601 format.
- Log
Size int - The size of the collected logs in bytes.
- Start
Time string - The timestamp when log collection started, in ISO 8601 format.
- Status string
- The status of the log collection session.
- Time
Collected string - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id String - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time String - The timestamp when log collection ended, in ISO 8601 format.
- log
Size Integer - The size of the collected logs in bytes.
- start
Time String - The timestamp when log collection started, in ISO 8601 format.
- status String
- The status of the log collection session.
- time
Collected String - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id string - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time string - The timestamp when log collection ended, in ISO 8601 format.
- log
Size number - The size of the collected logs in bytes.
- start
Time string - The timestamp when log collection started, in ISO 8601 format.
- status string
- The status of the log collection session.
- time
Collected string - The total time logs were collected for, in ISO 8601 duration format.
- correlation_
id str - A unique identifier for correlating this log collection session with other operations or sessions.
- end_
time str - The timestamp when log collection ended, in ISO 8601 format.
- log_
size int - The size of the collected logs in bytes.
- start_
time str - The timestamp when log collection started, in ISO 8601 format.
- status str
- The status of the log collection session.
- time_
collected str - The total time logs were collected for, in ISO 8601 duration format.
- correlation
Id String - A unique identifier for correlating this log collection session with other operations or sessions.
- end
Time String - The timestamp when log collection ended, in ISO 8601 format.
- log
Size Number - The size of the collected logs in bytes.
- start
Time String - The timestamp when log collection started, in ISO 8601 format.
- status String
- The status of the log collection session.
- time
Collected String - The total time logs were collected for, in ISO 8601 duration format.
LogCollectionReportedPropertiesResponse, LogCollectionReportedPropertiesResponseArgs
- Deployment
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Deployment status of job.
- Log
Collection List<Pulumi.Session Details Azure Native. Azure Stack HCI. Inputs. Log Collection Job Session Response> - Details of the log collection session.
- Percent
Complete int - The percentage of the job that is complete.
- Validation
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Validation status of job.
- Deployment
Status EceAction Status Response - Deployment status of job.
- Log
Collection []LogSession Details Collection Job Session Response - Details of the log collection session.
- Percent
Complete int - The percentage of the job that is complete.
- Validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- log
Collection List<LogSession Details Collection Job Session Response> - Details of the log collection session.
- percent
Complete Integer - The percentage of the job that is complete.
- validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- log
Collection LogSession Details Collection Job Session Response[] - Details of the log collection session.
- percent
Complete number - The percentage of the job that is complete.
- validation
Status EceAction Status Response - Validation status of job.
- deployment_
status EceAction Status Response - Deployment status of job.
- log_
collection_ Sequence[Logsession_ details Collection Job Session Response] - Details of the log collection session.
- percent_
complete int - The percentage of the job that is complete.
- validation_
status EceAction Status Response - Validation status of job.
- deployment
Status Property Map - Deployment status of job.
- log
Collection List<Property Map>Session Details - Details of the log collection session.
- percent
Complete Number - The percentage of the job that is complete.
- validation
Status Property Map - Validation status of job.
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 stringMessage - The error message, if any, from the last connection attempt.
- Connection
Status string - The current connection status of the remote support session.
- Created
At string - The timestamp when the node settings were created, in UTC.
- State string
- The state of the remote support node.
- Updated
At string - The timestamp when the node settings were last updated, in UTC.
- Connection
Error stringMessage - The error message, if any, from the last connection attempt.
- Connection
Status string - The current connection status of the remote support session.
- Created
At string - The timestamp when the node settings were created, in UTC.
- State string
- The state of the remote support node.
- Updated
At string - The timestamp when the node settings were last updated, in UTC.
- connection
Error StringMessage - The error message, if any, from the last connection attempt.
- connection
Status String - The current connection status of the remote support session.
- created
At String - The timestamp when the node settings were created, in UTC.
- state String
- The state of the remote support node.
- updated
At String - The timestamp when the node settings were last updated, in UTC.
- connection
Error stringMessage - The error message, if any, from the last connection attempt.
- connection
Status string - The current connection status of the remote support session.
- created
At string - The timestamp when the node settings were created, in UTC.
- state string
- The state of the remote support node.
- updated
At string - The timestamp when the node settings were last updated, in UTC.
- connection_
error_ strmessage - The error message, if any, from the last connection attempt.
- connection_
status str - The current connection status of the remote support session.
- created_
at str - The timestamp when the node settings were created, in UTC.
- state str
- The state of the remote support node.
- updated_
at str - The timestamp when the node settings were last updated, in UTC.
- connection
Error StringMessage - The error message, if any, from the last connection attempt.
- connection
Status String - The current connection status of the remote support session.
- created
At String - The timestamp when the node settings were created, in UTC.
- state String
- The state of the remote support node.
- updated
At String - The timestamp when the node settings were last updated, in UTC.
RemoteSupportJobReportedPropertiesResponse, RemoteSupportJobReportedPropertiesResponseArgs
- Deployment
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Deployment status of job.
- Node
Settings Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support 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 List<Pulumi.Azure Native. Azure Stack HCI. Inputs. Remote Support Session Response> - Details of the remote support session.
- Validation
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Validation status of job.
- Deployment
Status EceAction Status Response - Deployment status of job.
- Node
Settings 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 []RemoteSupport Session Response - Details of the remote support session.
- Validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- node
Settings RemoteSupport Job Node Settings Response - Optional settings for configuring the node for remote support.
- percent
Complete Integer - The percentage of the job that is complete.
- session
Details List<RemoteSupport Session Response> - Details of the remote support session.
- validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- node
Settings RemoteSupport Job Node Settings Response - Optional settings for configuring the node for remote support.
- percent
Complete number - The percentage of the job that is complete.
- session
Details RemoteSupport Session Response[] - Details of the remote support session.
- validation
Status EceAction Status Response - Validation status of job.
- deployment_
status EceAction Status Response - Deployment status of job.
- node_
settings 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.
- deployment
Status Property Map - Deployment status of job.
- node
Settings Property Map - Optional settings for configuring the node for remote support.
- percent
Complete Number - The percentage of the job that is complete.
- session
Details List<Property Map> - Details of the remote support session.
- validation
Status Property Map - Validation status of job.
RemoteSupportSessionResponse, RemoteSupportSessionResponseArgs
- Access
Level string - The level of access granted during the remote support session.
- Session
End stringTime - The end time of the remote support session, in UTC.
- Session
Id string - Unique session Id.
- Session
Start stringTime - The start time of the remote support session, in UTC.
- Transcript
Location string - The location where the session transcript is stored.
- Access
Level string - The level of access granted during the remote support session.
- Session
End stringTime - The end time of the remote support session, in UTC.
- Session
Id string - Unique session Id.
- Session
Start stringTime - The start time of the remote support session, in UTC.
- Transcript
Location string - The location where the session transcript is stored.
- access
Level String - The level of access granted during the remote support session.
- session
End StringTime - The end time of the remote support session, in UTC.
- session
Id String - Unique session Id.
- session
Start StringTime - The start time of the remote support session, in UTC.
- transcript
Location String - The location where the session transcript is stored.
- access
Level string - The level of access granted during the remote support session.
- session
End stringTime - The end time of the remote support session, in UTC.
- session
Id string - Unique session Id.
- session
Start stringTime - The start time of the remote support session, in UTC.
- transcript
Location string - The location where the session transcript is stored.
- access_
level str - The level of access granted during the remote support session.
- session_
end_ strtime - The end time of the remote support session, in UTC.
- session_
id str - Unique session Id.
- session_
start_ strtime - The start time of the remote support session, in UTC.
- transcript_
location str - The location where the session transcript is stored.
- access
Level String - The level of access granted during the remote support session.
- session
End StringTime - The end time of the remote support session, in UTC.
- session
Id String - Unique session Id.
- session
Start StringTime - The start time of the remote support session, in UTC.
- transcript
Location String - The location where the session transcript is stored.
RemoteSupportType, RemoteSupportTypeArgs
- Enable
- 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