1. Packages
  2. Azure Native
  3. API Docs
  4. azurestackhci
  5. ClusterJob
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
published on Friday, Mar 20, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.16.0
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:

    ClusterName string
    The name of the cluster.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    JobsName string
    Name of ClusterJob
    Properties Pulumi.AzureNative.AzureStackHCI.Inputs.HciConfigureCvmJobProperties | Pulumi.AzureNative.AzureStackHCI.Inputs.HciConfigureSdnIntegrationJobProperties
    The resource-specific properties for this resource.
    ClusterName string
    The name of the cluster.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    JobsName string
    Name of ClusterJob
    Properties HciConfigureCvmJobPropertiesArgs | HciConfigureSdnIntegrationJobPropertiesArgs
    The resource-specific properties for this resource.
    clusterName String
    The name of the cluster.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    jobsName String
    Name of ClusterJob
    properties HciConfigureCvmJobProperties | HciConfigureSdnIntegrationJobProperties
    The resource-specific properties for this resource.
    clusterName string
    The name of the cluster.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    jobsName string
    Name of ClusterJob
    properties HciConfigureCvmJobProperties | HciConfigureSdnIntegrationJobProperties
    The resource-specific properties for this resource.
    cluster_name str
    The name of the cluster.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    jobs_name str
    Name of ClusterJob
    properties HciConfigureCvmJobPropertiesArgs | HciConfigureSdnIntegrationJobPropertiesArgs
    The resource-specific properties for this resource.
    clusterName String
    The name of the cluster.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    jobsName 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:

    AzureApiVersion string
    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
    SystemData Pulumi.AzureNative.AzureStackHCI.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    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
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    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
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    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
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    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 SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    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
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ConfidentialVmIntent, ConfidentialVmIntentArgs

    Enable
    Enable Indicates that the customer intends to enable CVM support on the cluster.
    Disable
    Disable Indicates that the customer intends to disable CVM support on the cluster.
    ConfidentialVmIntentEnable
    Enable Indicates that the customer intends to enable CVM support on the cluster.
    ConfidentialVmIntentDisable
    Disable Indicates that the customer intends to disable CVM support on the cluster.
    Enable
    Enable Indicates that the customer intends to enable CVM support on the cluster.
    Disable
    Disable Indicates that the customer intends to disable CVM support on the cluster.
    Enable
    Enable Indicates that the customer intends to enable CVM support on the cluster.
    Disable
    Disable Indicates that the customer intends to disable CVM support on the cluster.
    ENABLE
    Enable Indicates that the customer intends to enable CVM support on the cluster.
    DISABLE
    Disable Indicates that the customer intends to disable CVM support on the cluster.
    "Enable"
    Enable Indicates that the customer intends to enable CVM support on the cluster.
    "Disable"
    Disable Indicates that the customer intends to disable CVM support on the cluster.

    DeploymentMode, DeploymentModeArgs

    Validate
    Validate Validate ECE action deployment for a cluster.
    Deploy
    Deploy Deploy ECE action deployment for a cluster.
    DeploymentModeValidate
    Validate Validate ECE action deployment for a cluster.
    DeploymentModeDeploy
    Deploy Deploy ECE action deployment for a cluster.
    Validate
    Validate Validate ECE action deployment for a cluster.
    Deploy
    Deploy Deploy ECE action deployment for a cluster.
    Validate
    Validate Validate ECE action deployment for a cluster.
    Deploy
    Deploy Deploy ECE action deployment for a cluster.
    VALIDATE
    Validate Validate ECE action deployment for a cluster.
    DEPLOY
    Deploy Deploy ECE action deployment for a cluster.
    "Validate"
    Validate Validate ECE action deployment for a cluster.
    "Deploy"
    Deploy Deploy ECE action deployment for a cluster.

    DeploymentStepResponse, DeploymentStepResponseArgs

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

    EceActionStatusResponse, EceActionStatusResponseArgs

    The ECE action plan deployment status for AzureStackHCI Cluster.
    Status string
    Status of ECE action AzureStackHCI Cluster Deployment.
    Steps List<Pulumi.AzureNative.AzureStackHCI.Inputs.DeploymentStepResponse>
    List of steps of AzureStackHCI Cluster Deployment.
    Status string
    Status of ECE action AzureStackHCI Cluster Deployment.
    Steps []DeploymentStepResponse
    List of steps of AzureStackHCI Cluster Deployment.
    status String
    Status of ECE action AzureStackHCI Cluster Deployment.
    steps List<DeploymentStepResponse>
    List of steps of AzureStackHCI Cluster Deployment.
    status string
    Status of ECE action AzureStackHCI Cluster Deployment.
    steps DeploymentStepResponse[]
    List of steps of AzureStackHCI Cluster Deployment.
    status str
    Status of ECE action AzureStackHCI Cluster Deployment.
    steps Sequence[DeploymentStepResponse]
    List of steps of AzureStackHCI Cluster Deployment.
    status String
    Status of ECE action AzureStackHCI Cluster Deployment.
    steps List<Property Map>
    List of steps of AzureStackHCI Cluster Deployment.

    HciConfigureCvmJobProperties, HciConfigureCvmJobPropertiesArgs

    Defines the customer's intent for updating confidential VM properties
    ConfidentialVmIntent string | Pulumi.AzureNative.AzureStackHCI.ConfidentialVmIntent
    Defines the customer's intent for updating confidential VM properties
    DeploymentMode string | Pulumi.AzureNative.AzureStackHCI.DeploymentMode
    Deployment mode to trigger job.
    ConfidentialVmIntent string | ConfidentialVmIntent
    Defines the customer's intent for updating confidential VM properties
    DeploymentMode string | DeploymentMode
    Deployment mode to trigger job.
    confidentialVmIntent String | ConfidentialVmIntent
    Defines the customer's intent for updating confidential VM properties
    deploymentMode String | DeploymentMode
    Deployment mode to trigger job.
    confidentialVmIntent string | ConfidentialVmIntent
    Defines the customer's intent for updating confidential VM properties
    deploymentMode string | DeploymentMode
    Deployment mode to trigger job.
    confidential_vm_intent str | ConfidentialVmIntent
    Defines the customer's intent for updating confidential VM properties
    deployment_mode str | DeploymentMode
    Deployment mode to trigger job.
    confidentialVmIntent String | "Enable" | "Disable"
    Defines the customer's intent for updating confidential VM properties
    deploymentMode String | "Validate" | "Deploy"
    Deployment mode to trigger job.

    HciConfigureCvmJobPropertiesResponse, HciConfigureCvmJobPropertiesResponseArgs

    Defines the customer's intent for updating confidential VM properties
    ConfidentialVmIntent string
    Defines the customer's intent for updating confidential VM properties
    EndTimeUtc string
    The UTC date and time at which the job completed.
    JobId string
    Unique, immutable job id.
    ProvisioningState string
    Job provisioning state
    ReportedProperties Pulumi.AzureNative.AzureStackHCI.Inputs.JobReportedPropertiesResponse
    Reported properties for job
    StartTimeUtc string
    The UTC date and time at which the job started.
    Status string
    Status of Cluster job.
    DeploymentMode string
    Deployment mode to trigger job.
    ConfidentialVmIntent string
    Defines the customer's intent for updating confidential VM properties
    EndTimeUtc string
    The UTC date and time at which the job completed.
    JobId string
    Unique, immutable job id.
    ProvisioningState string
    Job provisioning state
    ReportedProperties JobReportedPropertiesResponse
    Reported properties for job
    StartTimeUtc string
    The UTC date and time at which the job started.
    Status string
    Status of Cluster job.
    DeploymentMode string
    Deployment mode to trigger job.
    confidentialVmIntent String
    Defines the customer's intent for updating confidential VM properties
    endTimeUtc String
    The UTC date and time at which the job completed.
    jobId String
    Unique, immutable job id.
    provisioningState String
    Job provisioning state
    reportedProperties JobReportedPropertiesResponse
    Reported properties for job
    startTimeUtc String
    The UTC date and time at which the job started.
    status String
    Status of Cluster job.
    deploymentMode String
    Deployment mode to trigger job.
    confidentialVmIntent string
    Defines the customer's intent for updating confidential VM properties
    endTimeUtc string
    The UTC date and time at which the job completed.
    jobId string
    Unique, immutable job id.
    provisioningState string
    Job provisioning state
    reportedProperties JobReportedPropertiesResponse
    Reported properties for job
    startTimeUtc string
    The UTC date and time at which the job started.
    status string
    Status of Cluster job.
    deploymentMode string
    Deployment mode to trigger job.
    confidential_vm_intent str
    Defines the customer's intent for updating confidential VM properties
    end_time_utc str
    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 JobReportedPropertiesResponse
    Reported properties for job
    start_time_utc str
    The UTC date and time at which the job started.
    status str
    Status of Cluster job.
    deployment_mode str
    Deployment mode to trigger job.
    confidentialVmIntent String
    Defines the customer's intent for updating confidential VM properties
    endTimeUtc String
    The UTC date and time at which the job completed.
    jobId String
    Unique, immutable job id.
    provisioningState String
    Job provisioning state
    reportedProperties Property Map
    Reported properties for job
    startTimeUtc String
    The UTC date and time at which the job started.
    status String
    Status of Cluster job.
    deploymentMode String
    Deployment mode to trigger job.

    HciConfigureSdnIntegrationJobProperties, HciConfigureSdnIntegrationJobPropertiesArgs

    Properties for configuring SDN integration intent for the cluster.
    SdnIntegrationIntent string | Pulumi.AzureNative.AzureStackHCI.SdnIntegrationIntent
    Defines the customer's intent for configuring SDN integration
    DeploymentMode string | Pulumi.AzureNative.AzureStackHCI.DeploymentMode
    Deployment mode to trigger job.
    SdnPrefix 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.
    SdnIntegrationIntent string | SdnIntegrationIntent
    Defines the customer's intent for configuring SDN integration
    DeploymentMode string | DeploymentMode
    Deployment mode to trigger job.
    SdnPrefix 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.
    sdnIntegrationIntent String | SdnIntegrationIntent
    Defines the customer's intent for configuring SDN integration
    deploymentMode String | DeploymentMode
    Deployment mode to trigger job.
    sdnPrefix 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.
    sdnIntegrationIntent string | SdnIntegrationIntent
    Defines the customer's intent for configuring SDN integration
    deploymentMode string | DeploymentMode
    Deployment mode to trigger job.
    sdnPrefix 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_intent str | SdnIntegrationIntent
    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.
    sdnIntegrationIntent String | "Enable" | "Disable"
    Defines the customer's intent for configuring SDN integration
    deploymentMode String | "Validate" | "Deploy"
    Deployment mode to trigger job.
    sdnPrefix 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.
    EndTimeUtc string
    The UTC date and time at which the job completed.
    JobId string
    Unique, immutable job id.
    ProvisioningState string
    Job provisioning state
    ReportedProperties Pulumi.AzureNative.AzureStackHCI.Inputs.JobReportedPropertiesResponse
    Reported properties for job
    SdnIntegrationIntent string
    Defines the customer's intent for configuring SDN integration
    StartTimeUtc string
    The UTC date and time at which the job started.
    Status string
    Status of Cluster job.
    DeploymentMode string
    Deployment mode to trigger job.
    SdnPrefix 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.
    EndTimeUtc string
    The UTC date and time at which the job completed.
    JobId string
    Unique, immutable job id.
    ProvisioningState string
    Job provisioning state
    ReportedProperties JobReportedPropertiesResponse
    Reported properties for job
    SdnIntegrationIntent string
    Defines the customer's intent for configuring SDN integration
    StartTimeUtc string
    The UTC date and time at which the job started.
    Status string
    Status of Cluster job.
    DeploymentMode string
    Deployment mode to trigger job.
    SdnPrefix 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.
    endTimeUtc String
    The UTC date and time at which the job completed.
    jobId String
    Unique, immutable job id.
    provisioningState String
    Job provisioning state
    reportedProperties JobReportedPropertiesResponse
    Reported properties for job
    sdnIntegrationIntent String
    Defines the customer's intent for configuring SDN integration
    startTimeUtc String
    The UTC date and time at which the job started.
    status String
    Status of Cluster job.
    deploymentMode String
    Deployment mode to trigger job.
    sdnPrefix 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.
    endTimeUtc string
    The UTC date and time at which the job completed.
    jobId string
    Unique, immutable job id.
    provisioningState string
    Job provisioning state
    reportedProperties JobReportedPropertiesResponse
    Reported properties for job
    sdnIntegrationIntent string
    Defines the customer's intent for configuring SDN integration
    startTimeUtc string
    The UTC date and time at which the job started.
    status string
    Status of Cluster job.
    deploymentMode string
    Deployment mode to trigger job.
    sdnPrefix 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_utc str
    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 JobReportedPropertiesResponse
    Reported properties for job
    sdn_integration_intent str
    Defines the customer's intent for configuring SDN integration
    start_time_utc str
    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.
    endTimeUtc String
    The UTC date and time at which the job completed.
    jobId String
    Unique, immutable job id.
    provisioningState String
    Job provisioning state
    reportedProperties Property Map
    Reported properties for job
    sdnIntegrationIntent String
    Defines the customer's intent for configuring SDN integration
    startTimeUtc String
    The UTC date and time at which the job started.
    status String
    Status of Cluster job.
    deploymentMode String
    Deployment mode to trigger job.
    sdnPrefix 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.
    DeploymentStatus EceActionStatusResponse
    Deployment status of job.
    PercentComplete int
    The percentage of the job that is complete.
    ValidationStatus EceActionStatusResponse
    Validation status of job.
    deploymentStatus EceActionStatusResponse
    Deployment status of job.
    percentComplete Integer
    The percentage of the job that is complete.
    validationStatus EceActionStatusResponse
    Validation status of job.
    deploymentStatus EceActionStatusResponse
    Deployment status of job.
    percentComplete number
    The percentage of the job that is complete.
    validationStatus EceActionStatusResponse
    Validation status of job.
    deployment_status EceActionStatusResponse
    Deployment status of job.
    percent_complete int
    The percentage of the job that is complete.
    validation_status EceActionStatusResponse
    Validation status of job.
    deploymentStatus Property Map
    Deployment status of job.
    percentComplete Number
    The percentage of the job that is complete.
    validationStatus Property Map
    Validation status of job.

    SdnIntegrationIntent, SdnIntegrationIntentArgs

    Enable
    Enable Enable SDN integration for the deployment.
    Disable
    Disable Disable SDN integration for the deployment.
    SdnIntegrationIntentEnable
    Enable Enable SDN integration for the deployment.
    SdnIntegrationIntentDisable
    Disable Disable SDN integration for the deployment.
    Enable
    Enable Enable SDN integration for the deployment.
    Disable
    Disable Disable SDN integration for the deployment.
    Enable
    Enable Enable SDN integration for the deployment.
    Disable
    Disable Disable SDN integration for the deployment.
    ENABLE
    Enable Enable SDN integration for the deployment.
    DISABLE
    Disable Disable SDN integration for the deployment.
    "Enable"
    Enable Enable SDN integration for the deployment.
    "Disable"
    Disable Disable SDN integration for the deployment.

    SystemDataResponse, SystemDataResponseArgs

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

    Import

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

    $ pulumi import azure-native:azurestackhci: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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.16.0
    published on Friday, Mar 20, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.