published on Friday, Mar 20, 2026 by Pulumi
published on Friday, Mar 20, 2026 by Pulumi
Cluster Jobs resource
Uses Azure REST API version 2026-03-01-preview.
Other available API versions: 2026-02-15-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native azurestackhci [ApiVersion]. See the version guide for details.
Example Usage
ClusterJobs_CreateOrUpdate_ConfigureCVMJob
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var clusterJob = new AzureNative.AzureStackHCI.ClusterJob("clusterJob", new()
{
ClusterName = "myCluster",
JobsName = "ConfigureCVM",
Properties = new AzureNative.AzureStackHCI.Inputs.HciConfigureCvmJobPropertiesArgs
{
ConfidentialVmIntent = AzureNative.AzureStackHCI.ConfidentialVmIntent.Enable,
DeploymentMode = AzureNative.AzureStackHCI.DeploymentMode.Deploy,
JobType = "ConfigureCVM",
},
ResourceGroupName = "test-rg",
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewClusterJob(ctx, "clusterJob", &azurestackhci.ClusterJobArgs{
ClusterName: pulumi.String("myCluster"),
JobsName: pulumi.String("ConfigureCVM"),
Properties: &azurestackhci.HciConfigureCvmJobPropertiesArgs{
ConfidentialVmIntent: pulumi.String(azurestackhci.ConfidentialVmIntentEnable),
DeploymentMode: pulumi.String(azurestackhci.DeploymentModeDeploy),
JobType: pulumi.String("ConfigureCVM"),
},
ResourceGroupName: pulumi.String("test-rg"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.azurestackhci.ClusterJob;
import com.pulumi.azurenative.azurestackhci.ClusterJobArgs;
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 clusterJob = new ClusterJob("clusterJob", ClusterJobArgs.builder()
.clusterName("myCluster")
.jobsName("ConfigureCVM")
.properties(HciConfigureCvmJobPropertiesArgs.builder()
.confidentialVmIntent("Enable")
.deploymentMode("Deploy")
.jobType("ConfigureCVM")
.build())
.resourceGroupName("test-rg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const clusterJob = new azure_native.azurestackhci.ClusterJob("clusterJob", {
clusterName: "myCluster",
jobsName: "ConfigureCVM",
properties: {
confidentialVmIntent: azure_native.azurestackhci.ConfidentialVmIntent.Enable,
deploymentMode: azure_native.azurestackhci.DeploymentMode.Deploy,
jobType: "ConfigureCVM",
},
resourceGroupName: "test-rg",
});
import pulumi
import pulumi_azure_native as azure_native
cluster_job = azure_native.azurestackhci.ClusterJob("clusterJob",
cluster_name="myCluster",
jobs_name="ConfigureCVM",
properties={
"confidential_vm_intent": azure_native.azurestackhci.ConfidentialVmIntent.ENABLE,
"deployment_mode": azure_native.azurestackhci.DeploymentMode.DEPLOY,
"job_type": "ConfigureCVM",
},
resource_group_name="test-rg")
resources:
clusterJob:
type: azure-native:azurestackhci:ClusterJob
properties:
clusterName: myCluster
jobsName: ConfigureCVM
properties:
confidentialVmIntent: Enable
deploymentMode: Deploy
jobType: ConfigureCVM
resourceGroupName: test-rg
ClusterJobs_CreateOrUpdate_ConfigureSdnIntegration_Enable
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var clusterJob = new AzureNative.AzureStackHCI.ClusterJob("clusterJob", new()
{
ClusterName = "myCluster",
JobsName = "configureSdnIntegration",
Properties = new AzureNative.AzureStackHCI.Inputs.HciConfigureSdnIntegrationJobPropertiesArgs
{
DeploymentMode = AzureNative.AzureStackHCI.DeploymentMode.Deploy,
JobType = "ConfigureSdnIntegration",
SdnIntegrationIntent = AzureNative.AzureStackHCI.SdnIntegrationIntent.Enable,
},
ResourceGroupName = "test-rg",
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewClusterJob(ctx, "clusterJob", &azurestackhci.ClusterJobArgs{
ClusterName: pulumi.String("myCluster"),
JobsName: pulumi.String("configureSdnIntegration"),
Properties: &azurestackhci.HciConfigureSdnIntegrationJobPropertiesArgs{
DeploymentMode: pulumi.String(azurestackhci.DeploymentModeDeploy),
JobType: pulumi.String("ConfigureSdnIntegration"),
SdnIntegrationIntent: pulumi.String(azurestackhci.SdnIntegrationIntentEnable),
},
ResourceGroupName: pulumi.String("test-rg"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.azurestackhci.ClusterJob;
import com.pulumi.azurenative.azurestackhci.ClusterJobArgs;
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 clusterJob = new ClusterJob("clusterJob", ClusterJobArgs.builder()
.clusterName("myCluster")
.jobsName("configureSdnIntegration")
.properties(HciConfigureSdnIntegrationJobPropertiesArgs.builder()
.deploymentMode("Deploy")
.jobType("ConfigureSdnIntegration")
.sdnIntegrationIntent("Enable")
.build())
.resourceGroupName("test-rg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const clusterJob = new azure_native.azurestackhci.ClusterJob("clusterJob", {
clusterName: "myCluster",
jobsName: "configureSdnIntegration",
properties: {
deploymentMode: azure_native.azurestackhci.DeploymentMode.Deploy,
jobType: "ConfigureSdnIntegration",
sdnIntegrationIntent: azure_native.azurestackhci.SdnIntegrationIntent.Enable,
},
resourceGroupName: "test-rg",
});
import pulumi
import pulumi_azure_native as azure_native
cluster_job = azure_native.azurestackhci.ClusterJob("clusterJob",
cluster_name="myCluster",
jobs_name="configureSdnIntegration",
properties={
"deployment_mode": azure_native.azurestackhci.DeploymentMode.DEPLOY,
"job_type": "ConfigureSdnIntegration",
"sdn_integration_intent": azure_native.azurestackhci.SdnIntegrationIntent.ENABLE,
},
resource_group_name="test-rg")
resources:
clusterJob:
type: azure-native:azurestackhci:ClusterJob
properties:
clusterName: myCluster
jobsName: configureSdnIntegration
properties:
deploymentMode: Deploy
jobType: ConfigureSdnIntegration
sdnIntegrationIntent: Enable
resourceGroupName: test-rg
Create ClusterJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClusterJob(name: string, args: ClusterJobArgs, opts?: CustomResourceOptions);@overload
def ClusterJob(resource_name: str,
args: ClusterJobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClusterJob(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
jobs_name: Optional[str] = None,
properties: Optional[Union[HciConfigureCvmJobPropertiesArgs, HciConfigureSdnIntegrationJobPropertiesArgs]] = None)func NewClusterJob(ctx *Context, name string, args ClusterJobArgs, opts ...ResourceOption) (*ClusterJob, error)public ClusterJob(string name, ClusterJobArgs args, CustomResourceOptions? opts = null)
public ClusterJob(String name, ClusterJobArgs args)
public ClusterJob(String name, ClusterJobArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:ClusterJob
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 ClusterJobArgs
- 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 ClusterJobArgs
- 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 ClusterJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterJobArgs
- 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 clusterJobResource = new AzureNative.AzureStackHCI.ClusterJob("clusterJobResource", new()
{
ClusterName = "string",
ResourceGroupName = "string",
JobsName = "string",
Properties = new AzureNative.AzureStackHCI.Inputs.HciConfigureCvmJobPropertiesArgs
{
ConfidentialVmIntent = "string",
JobType = "ConfigureCVM",
DeploymentMode = "string",
},
});
example, err := azurestackhci.NewClusterJob(ctx, "clusterJobResource", &azurestackhci.ClusterJobArgs{
ClusterName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
JobsName: pulumi.String("string"),
Properties: &azurestackhci.HciConfigureCvmJobPropertiesArgs{
ConfidentialVmIntent: pulumi.String("string"),
JobType: pulumi.String("ConfigureCVM"),
DeploymentMode: pulumi.String("string"),
},
})
var clusterJobResource = new ClusterJob("clusterJobResource", ClusterJobArgs.builder()
.clusterName("string")
.resourceGroupName("string")
.jobsName("string")
.properties(HciConfigureCvmJobPropertiesArgs.builder()
.confidentialVmIntent("string")
.jobType("ConfigureCVM")
.deploymentMode("string")
.build())
.build());
cluster_job_resource = azure_native.azurestackhci.ClusterJob("clusterJobResource",
cluster_name="string",
resource_group_name="string",
jobs_name="string",
properties={
"confidential_vm_intent": "string",
"job_type": "ConfigureCVM",
"deployment_mode": "string",
})
const clusterJobResource = new azure_native.azurestackhci.ClusterJob("clusterJobResource", {
clusterName: "string",
resourceGroupName: "string",
jobsName: "string",
properties: {
confidentialVmIntent: "string",
jobType: "ConfigureCVM",
deploymentMode: "string",
},
});
type: azure-native:azurestackhci:ClusterJob
properties:
clusterName: string
jobsName: string
properties:
confidentialVmIntent: string
deploymentMode: string
jobType: ConfigureCVM
resourceGroupName: string
ClusterJob 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 ClusterJob resource accepts the following input properties:
- Cluster
Name string - The name of the cluster.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Jobs
Name string - Name of ClusterJob
- Properties
Pulumi.
Azure | Pulumi.Native. Azure Stack HCI. Inputs. Hci Configure Cvm Job Properties Azure Native. Azure Stack HCI. Inputs. Hci Configure Sdn Integration Job Properties - The resource-specific properties for this resource.
- Cluster
Name string - The name of the cluster.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Jobs
Name string - Name of ClusterJob
- Properties
Hci
Configure | HciCvm Job Properties Args Configure Sdn Integration Job Properties Args - The resource-specific properties for this resource.
- cluster
Name String - The name of the cluster.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- jobs
Name String - Name of ClusterJob
- properties
Hci
Configure | HciCvm Job Properties Configure Sdn Integration Job Properties - The resource-specific properties for this resource.
- cluster
Name string - The name of the cluster.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- jobs
Name string - Name of ClusterJob
- properties
Hci
Configure | HciCvm Job Properties Configure Sdn Integration Job Properties - The resource-specific properties for this resource.
- cluster_
name str - The name of the cluster.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- jobs_
name str - Name of ClusterJob
- properties
Hci
Configure | HciCvm Job Properties Args Configure Sdn Integration Job Properties Args - The resource-specific properties for this resource.
- cluster
Name String - The name of the cluster.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- jobs
Name String - Name of ClusterJob
- properties Property Map | Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ClusterJob 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
ConfidentialVmIntent, ConfidentialVmIntentArgs
- Enable
EnableIndicates that the customer intends to enable CVM support on the cluster.- Disable
DisableIndicates that the customer intends to disable CVM support on the cluster.
- Confidential
Vm Intent Enable EnableIndicates that the customer intends to enable CVM support on the cluster.- Confidential
Vm Intent Disable DisableIndicates that the customer intends to disable CVM support on the cluster.
- Enable
EnableIndicates that the customer intends to enable CVM support on the cluster.- Disable
DisableIndicates that the customer intends to disable CVM support on the cluster.
- Enable
EnableIndicates that the customer intends to enable CVM support on the cluster.- Disable
DisableIndicates that the customer intends to disable CVM support on the cluster.
- ENABLE
EnableIndicates that the customer intends to enable CVM support on the cluster.- DISABLE
DisableIndicates that the customer intends to disable CVM support on the cluster.
- "Enable"
EnableIndicates that the customer intends to enable CVM support on the cluster.- "Disable"
DisableIndicates that the customer intends to disable CVM support on the cluster.
DeploymentMode, DeploymentModeArgs
- Validate
ValidateValidate ECE action deployment for a cluster.- Deploy
DeployDeploy ECE action deployment for a cluster.
- Deployment
Mode Validate ValidateValidate ECE action deployment for a cluster.- Deployment
Mode Deploy DeployDeploy ECE action deployment for a cluster.
- Validate
ValidateValidate ECE action deployment for a cluster.- Deploy
DeployDeploy ECE action deployment for a cluster.
- Validate
ValidateValidate ECE action deployment for a cluster.- Deploy
DeployDeploy ECE action deployment for a cluster.
- VALIDATE
ValidateValidate ECE action deployment for a cluster.- DEPLOY
DeployDeploy ECE action deployment for a cluster.
- "Validate"
ValidateValidate ECE action deployment for a cluster.- "Deploy"
DeployDeploy ECE action deployment for a cluster.
DeploymentStepResponse, DeploymentStepResponseArgs
The Step of AzureStackHCI Cluster.- Description string
- Description of step.
- End
Time stringUtc - End time of step.
- Exception List<string>
- List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step stringIndex - FullStepIndex of step.
- Name string
- Name of step.
- Start
Time stringUtc - Start time of step.
- Status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Deployment Step Response> - List of nested steps of AzureStackHCI Cluster Deployment.
- Description string
- Description of step.
- End
Time stringUtc - End time of step.
- Exception []string
- List of exceptions in AzureStackHCI Cluster Deployment.
- Full
Step stringIndex - FullStepIndex of step.
- Name string
- Name of step.
- Start
Time stringUtc - Start time of step.
- Status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- Steps
[]Deployment
Step Response - List of nested steps of AzureStackHCI Cluster Deployment.
- description String
- Description of step.
- end
Time StringUtc - End time of step.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step StringIndex - FullStepIndex of step.
- name String
- Name of step.
- start
Time StringUtc - Start time of step.
- status String
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
List<Deployment
Step Response> - List of nested steps of AzureStackHCI Cluster Deployment.
- description string
- Description of step.
- end
Time stringUtc - End time of step.
- exception string[]
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step stringIndex - FullStepIndex of step.
- name string
- Name of step.
- start
Time stringUtc - Start time of step.
- status string
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
Deployment
Step Response[] - List of nested steps of AzureStackHCI Cluster Deployment.
- description str
- Description of step.
- end_
time_ strutc - End time of step.
- exception Sequence[str]
- List of exceptions in AzureStackHCI Cluster Deployment.
- full_
step_ strindex - FullStepIndex of step.
- name str
- Name of step.
- start_
time_ strutc - Start time of step.
- status str
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps
Sequence[Deployment
Step Response] - List of nested steps of AzureStackHCI Cluster Deployment.
- description String
- Description of step.
- end
Time StringUtc - End time of step.
- exception List<String>
- List of exceptions in AzureStackHCI Cluster Deployment.
- full
Step StringIndex - FullStepIndex of step.
- name String
- Name of step.
- start
Time StringUtc - Start time of step.
- status String
- Status of step. Allowed values are 'Error', 'Success', 'InProgress'
- steps List<Property Map>
- List of nested steps of AzureStackHCI Cluster Deployment.
EceActionStatusResponse, EceActionStatusResponseArgs
The ECE action plan deployment status for AzureStackHCI Cluster.- Status string
- Status of ECE action AzureStackHCI Cluster Deployment.
- Steps
List<Pulumi.
Azure Native. Azure Stack HCI. Inputs. Deployment Step Response> - List of steps of AzureStackHCI Cluster Deployment.
- Status string
- Status of ECE action AzureStackHCI Cluster Deployment.
- Steps
[]Deployment
Step Response - List of steps of AzureStackHCI Cluster Deployment.
- status String
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
List<Deployment
Step Response> - List of steps of AzureStackHCI Cluster Deployment.
- status string
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
Deployment
Step Response[] - List of steps of AzureStackHCI Cluster Deployment.
- status str
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps
Sequence[Deployment
Step Response] - List of steps of AzureStackHCI Cluster Deployment.
- status String
- Status of ECE action AzureStackHCI Cluster Deployment.
- steps List<Property Map>
- List of steps of AzureStackHCI Cluster Deployment.
HciConfigureCvmJobProperties, HciConfigureCvmJobPropertiesArgs
Defines the customer's intent for updating confidential VM properties- Confidential
Vm string | Pulumi.Intent Azure Native. Azure Stack HCI. Confidential Vm Intent - Defines the customer's intent for updating confidential VM properties
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- Confidential
Vm string | ConfidentialIntent Vm Intent - Defines the customer's intent for updating confidential VM properties
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- confidential
Vm String | ConfidentialIntent Vm Intent - Defines the customer's intent for updating confidential VM properties
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- confidential
Vm string | ConfidentialIntent Vm Intent - Defines the customer's intent for updating confidential VM properties
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- confidential_
vm_ str | Confidentialintent Vm Intent - Defines the customer's intent for updating confidential VM properties
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- confidential
Vm String | "Enable" | "Disable"Intent - Defines the customer's intent for updating confidential VM properties
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
HciConfigureCvmJobPropertiesResponse, HciConfigureCvmJobPropertiesResponseArgs
Defines the customer's intent for updating confidential VM properties- Confidential
Vm stringIntent - Defines the customer's intent for updating confidential VM properties
- End
Time stringUtc - The UTC date and time at which the job completed.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Job Reported Properties Response - Reported properties for job
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Cluster job.
- Deployment
Mode string - Deployment mode to trigger job.
- Confidential
Vm stringIntent - Defines the customer's intent for updating confidential VM properties
- End
Time stringUtc - The UTC date and time at which the job completed.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Reported
Properties JobReported Properties Response - Reported properties for job
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Cluster job.
- Deployment
Mode string - Deployment mode to trigger job.
- confidential
Vm StringIntent - Defines the customer's intent for updating confidential VM properties
- end
Time StringUtc - The UTC date and time at which the job completed.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- reported
Properties JobReported Properties Response - Reported properties for job
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Cluster job.
- deployment
Mode String - Deployment mode to trigger job.
- confidential
Vm stringIntent - Defines the customer's intent for updating confidential VM properties
- end
Time stringUtc - The UTC date and time at which the job completed.
- job
Id string - Unique, immutable job id.
- provisioning
State string - Job provisioning state
- reported
Properties JobReported Properties Response - Reported properties for job
- start
Time stringUtc - The UTC date and time at which the job started.
- status string
- Status of Cluster job.
- deployment
Mode string - Deployment mode to trigger job.
- confidential_
vm_ strintent - Defines the customer's intent for updating confidential VM properties
- end_
time_ strutc - The UTC date and time at which the job completed.
- job_
id str - Unique, immutable job id.
- provisioning_
state str - Job provisioning state
- reported_
properties JobReported Properties Response - Reported properties for job
- start_
time_ strutc - The UTC date and time at which the job started.
- status str
- Status of Cluster job.
- deployment_
mode str - Deployment mode to trigger job.
- confidential
Vm StringIntent - Defines the customer's intent for updating confidential VM properties
- end
Time StringUtc - The UTC date and time at which the job completed.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- reported
Properties Property Map - Reported properties for job
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Cluster job.
- deployment
Mode String - Deployment mode to trigger job.
HciConfigureSdnIntegrationJobProperties, HciConfigureSdnIntegrationJobPropertiesArgs
Properties for configuring SDN integration intent for the cluster.- Sdn
Integration string | Pulumi.Intent Azure Native. Azure Stack HCI. Sdn Integration Intent - Defines the customer's intent for configuring SDN integration
- Deployment
Mode string | Pulumi.Azure Native. Azure Stack HCI. Deployment Mode - Deployment mode to trigger job.
- Sdn
Prefix string - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- Sdn
Integration string | SdnIntent Integration Intent - Defines the customer's intent for configuring SDN integration
- Deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- Sdn
Prefix string - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- sdn
Integration String | SdnIntent Integration Intent - Defines the customer's intent for configuring SDN integration
- deployment
Mode String | DeploymentMode - Deployment mode to trigger job.
- sdn
Prefix String - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- sdn
Integration string | SdnIntent Integration Intent - Defines the customer's intent for configuring SDN integration
- deployment
Mode string | DeploymentMode - Deployment mode to trigger job.
- sdn
Prefix string - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- sdn_
integration_ str | Sdnintent Integration Intent - Defines the customer's intent for configuring SDN integration
- deployment_
mode str | DeploymentMode - Deployment mode to trigger job.
- sdn_
prefix str - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- sdn
Integration String | "Enable" | "Disable"Intent - Defines the customer's intent for configuring SDN integration
- deployment
Mode String | "Validate" | "Deploy" - Deployment mode to trigger job.
- sdn
Prefix String - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
HciConfigureSdnIntegrationJobPropertiesResponse, HciConfigureSdnIntegrationJobPropertiesResponseArgs
Properties for configuring SDN integration intent for the cluster.- End
Time stringUtc - The UTC date and time at which the job completed.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Reported
Properties Pulumi.Azure Native. Azure Stack HCI. Inputs. Job Reported Properties Response - Reported properties for job
- Sdn
Integration stringIntent - Defines the customer's intent for configuring SDN integration
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Cluster job.
- Deployment
Mode string - Deployment mode to trigger job.
- Sdn
Prefix string - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- End
Time stringUtc - The UTC date and time at which the job completed.
- Job
Id string - Unique, immutable job id.
- Provisioning
State string - Job provisioning state
- Reported
Properties JobReported Properties Response - Reported properties for job
- Sdn
Integration stringIntent - Defines the customer's intent for configuring SDN integration
- Start
Time stringUtc - The UTC date and time at which the job started.
- Status string
- Status of Cluster job.
- Deployment
Mode string - Deployment mode to trigger job.
- Sdn
Prefix string - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- end
Time StringUtc - The UTC date and time at which the job completed.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- reported
Properties JobReported Properties Response - Reported properties for job
- sdn
Integration StringIntent - Defines the customer's intent for configuring SDN integration
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Cluster job.
- deployment
Mode String - Deployment mode to trigger job.
- sdn
Prefix String - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- end
Time stringUtc - The UTC date and time at which the job completed.
- job
Id string - Unique, immutable job id.
- provisioning
State string - Job provisioning state
- reported
Properties JobReported Properties Response - Reported properties for job
- sdn
Integration stringIntent - Defines the customer's intent for configuring SDN integration
- start
Time stringUtc - The UTC date and time at which the job started.
- status string
- Status of Cluster job.
- deployment
Mode string - Deployment mode to trigger job.
- sdn
Prefix string - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- end_
time_ strutc - The UTC date and time at which the job completed.
- job_
id str - Unique, immutable job id.
- provisioning_
state str - Job provisioning state
- reported_
properties JobReported Properties Response - Reported properties for job
- sdn_
integration_ strintent - Defines the customer's intent for configuring SDN integration
- start_
time_ strutc - The UTC date and time at which the job started.
- status str
- Status of Cluster job.
- deployment_
mode str - Deployment mode to trigger job.
- sdn_
prefix str - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
- end
Time StringUtc - The UTC date and time at which the job completed.
- job
Id String - Unique, immutable job id.
- provisioning
State String - Job provisioning state
- reported
Properties Property Map - Reported properties for job
- sdn
Integration StringIntent - Defines the customer's intent for configuring SDN integration
- start
Time StringUtc - The UTC date and time at which the job started.
- status String
- Status of Cluster job.
- deployment
Mode String - Deployment mode to trigger job.
- sdn
Prefix String - A string identifier used to construct the Network Controller (NC) REST resource name. This prefix helps group and distinguish SDN-managed network components and must follow specific formatting rules.
JobReportedPropertiesResponse, JobReportedPropertiesResponseArgs
Reported Properties for job triggered from cloud.- Deployment
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Deployment status of job.
- Percent
Complete int - The percentage of the job that is complete.
- Validation
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Ece Action Status Response - Validation status of job.
- Deployment
Status EceAction Status Response - Deployment status of job.
- Percent
Complete int - The percentage of the job that is complete.
- Validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- percent
Complete Integer - The percentage of the job that is complete.
- validation
Status EceAction Status Response - Validation status of job.
- deployment
Status EceAction Status Response - Deployment status of job.
- percent
Complete number - The percentage of the job that is complete.
- validation
Status EceAction Status Response - Validation status of job.
- deployment_
status EceAction Status Response - Deployment status of job.
- percent_
complete int - The percentage of the job that is complete.
- validation_
status EceAction Status Response - Validation status of job.
- deployment
Status Property Map - Deployment status of job.
- percent
Complete Number - The percentage of the job that is complete.
- validation
Status Property Map - Validation status of job.
SdnIntegrationIntent, SdnIntegrationIntentArgs
- Enable
EnableEnable SDN integration for the deployment.- Disable
DisableDisable SDN integration for the deployment.
- Sdn
Integration Intent Enable EnableEnable SDN integration for the deployment.- Sdn
Integration Intent Disable DisableDisable SDN integration for the deployment.
- Enable
EnableEnable SDN integration for the deployment.- Disable
DisableDisable SDN integration for the deployment.
- Enable
EnableEnable SDN integration for the deployment.- Disable
DisableDisable SDN integration for the deployment.
- ENABLE
EnableEnable SDN integration for the deployment.- DISABLE
DisableDisable SDN integration for the deployment.
- "Enable"
EnableEnable SDN integration for the deployment.- "Disable"
DisableDisable SDN integration for the deployment.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurestackhci:ClusterJob configureSdnIntegration /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}/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
published on Friday, Mar 20, 2026 by Pulumi
