1. Packages
  2. Packages
  3. Ibm Provider
  4. API Docs
  5. PhaDeployment
Viewing docs for ibm 2.1.0
published on Tuesday, May 5, 2026 by ibm-cloud
Viewing docs for ibm 2.1.0
published on Tuesday, May 5, 2026 by ibm-cloud

    Create, update, and delete pha_deployments for the specified instance.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const phaDeploymentInstance = new ibm.PhaDeployment("pha_deployment_instance", {
        instanceId: "8eefautr-xxxx-xxxx-xxxx-4345f6axxxxx",
        primaryWorkspace: "workspace-primary",
        locationId: "loc-us-south-01",
        acceptLanguage: "en-US",
        apiKey: "<apikey>",
        clusterType: "standard",
        configureType: "automatic",
        primaryClusterNodes: [
            "ede4c36e-xxxx-xxxx-xxxx-6039d23xxxxx",
            "b4e0fc15-xxxx-xxxx-xxxx-4345f6axxxxx",
        ],
        standbyClusterNodes: ["843a8e1f-xxxx-xxxx-xxxx-4345f6axxxxx"],
        secondaryLocation: "us-east",
        secondaryWorkspace: "workspace-secondary",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    pha_deployment_instance = ibm.PhaDeployment("pha_deployment_instance",
        instance_id="8eefautr-xxxx-xxxx-xxxx-4345f6axxxxx",
        primary_workspace="workspace-primary",
        location_id="loc-us-south-01",
        accept_language="en-US",
        api_key="<apikey>",
        cluster_type="standard",
        configure_type="automatic",
        primary_cluster_nodes=[
            "ede4c36e-xxxx-xxxx-xxxx-6039d23xxxxx",
            "b4e0fc15-xxxx-xxxx-xxxx-4345f6axxxxx",
        ],
        standby_cluster_nodes=["843a8e1f-xxxx-xxxx-xxxx-4345f6axxxxx"],
        secondary_location="us-east",
        secondary_workspace="workspace-secondary")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/v2/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewPhaDeployment(ctx, "pha_deployment_instance", &ibm.PhaDeploymentArgs{
    			InstanceId:       pulumi.String("8eefautr-xxxx-xxxx-xxxx-4345f6axxxxx"),
    			PrimaryWorkspace: pulumi.String("workspace-primary"),
    			LocationId:       pulumi.String("loc-us-south-01"),
    			AcceptLanguage:   pulumi.String("en-US"),
    			ApiKey:           pulumi.String("<apikey>"),
    			ClusterType:      pulumi.String("standard"),
    			ConfigureType:    pulumi.String("automatic"),
    			PrimaryClusterNodes: pulumi.StringArray{
    				pulumi.String("ede4c36e-xxxx-xxxx-xxxx-6039d23xxxxx"),
    				pulumi.String("b4e0fc15-xxxx-xxxx-xxxx-4345f6axxxxx"),
    			},
    			StandbyClusterNodes: pulumi.StringArray{
    				pulumi.String("843a8e1f-xxxx-xxxx-xxxx-4345f6axxxxx"),
    			},
    			SecondaryLocation:  pulumi.String("us-east"),
    			SecondaryWorkspace: pulumi.String("workspace-secondary"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var phaDeploymentInstance = new Ibm.PhaDeployment("pha_deployment_instance", new()
        {
            InstanceId = "8eefautr-xxxx-xxxx-xxxx-4345f6axxxxx",
            PrimaryWorkspace = "workspace-primary",
            LocationId = "loc-us-south-01",
            AcceptLanguage = "en-US",
            ApiKey = "<apikey>",
            ClusterType = "standard",
            ConfigureType = "automatic",
            PrimaryClusterNodes = new[]
            {
                "ede4c36e-xxxx-xxxx-xxxx-6039d23xxxxx",
                "b4e0fc15-xxxx-xxxx-xxxx-4345f6axxxxx",
            },
            StandbyClusterNodes = new[]
            {
                "843a8e1f-xxxx-xxxx-xxxx-4345f6axxxxx",
            },
            SecondaryLocation = "us-east",
            SecondaryWorkspace = "workspace-secondary",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.PhaDeployment;
    import com.pulumi.ibm.PhaDeploymentArgs;
    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 phaDeploymentInstance = new PhaDeployment("phaDeploymentInstance", PhaDeploymentArgs.builder()
                .instanceId("8eefautr-xxxx-xxxx-xxxx-4345f6axxxxx")
                .primaryWorkspace("workspace-primary")
                .locationId("loc-us-south-01")
                .acceptLanguage("en-US")
                .apiKey("<apikey>")
                .clusterType("standard")
                .configureType("automatic")
                .primaryClusterNodes(            
                    "ede4c36e-xxxx-xxxx-xxxx-6039d23xxxxx",
                    "b4e0fc15-xxxx-xxxx-xxxx-4345f6axxxxx")
                .standbyClusterNodes("843a8e1f-xxxx-xxxx-xxxx-4345f6axxxxx")
                .secondaryLocation("us-east")
                .secondaryWorkspace("workspace-secondary")
                .build());
    
        }
    }
    
    resources:
      phaDeploymentInstance:
        type: ibm:PhaDeployment
        name: pha_deployment_instance
        properties:
          instanceId: 8eefautr-xxxx-xxxx-xxxx-4345f6axxxxx
          primaryWorkspace: workspace-primary
          locationId: loc-us-south-01
          acceptLanguage: en-US
          apiKey: <apikey>
          clusterType: standard
          configureType: automatic
          primaryClusterNodes:
            - ede4c36e-xxxx-xxxx-xxxx-6039d23xxxxx
            - b4e0fc15-xxxx-xxxx-xxxx-4345f6axxxxx
          standbyClusterNodes:
            - 843a8e1f-xxxx-xxxx-xxxx-4345f6axxxxx
          secondaryLocation: us-east
          secondaryWorkspace: workspace-secondary
    
    Example coming soon!
    

    Create PhaDeployment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PhaDeployment(name: string, args: PhaDeploymentArgs, opts?: CustomResourceOptions);
    @overload
    def PhaDeployment(resource_name: str,
                      args: PhaDeploymentArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def PhaDeployment(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      instance_id: Optional[str] = None,
                      location_id: Optional[str] = None,
                      primary_workspace: Optional[str] = None,
                      accept_language: Optional[str] = None,
                      api_key: Optional[str] = None,
                      cluster_type: Optional[str] = None,
                      configure_type: Optional[str] = None,
                      if_none_match: Optional[str] = None,
                      primary_cluster_nodes: Optional[Sequence[str]] = None,
                      secondary_location: Optional[str] = None,
                      secondary_workspace: Optional[str] = None,
                      standby_cluster_nodes: Optional[Sequence[str]] = None)
    func NewPhaDeployment(ctx *Context, name string, args PhaDeploymentArgs, opts ...ResourceOption) (*PhaDeployment, error)
    public PhaDeployment(string name, PhaDeploymentArgs args, CustomResourceOptions? opts = null)
    public PhaDeployment(String name, PhaDeploymentArgs args)
    public PhaDeployment(String name, PhaDeploymentArgs args, CustomResourceOptions options)
    
    type: ibm:PhaDeployment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "ibm_phadeployment" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PhaDeploymentArgs
    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 PhaDeploymentArgs
    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 PhaDeploymentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PhaDeploymentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PhaDeploymentArgs
    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 phaDeploymentResource = new Ibm.PhaDeployment("phaDeploymentResource", new()
    {
        InstanceId = "string",
        LocationId = "string",
        PrimaryWorkspace = "string",
        AcceptLanguage = "string",
        ApiKey = "string",
        ClusterType = "string",
        ConfigureType = "string",
        IfNoneMatch = "string",
        PrimaryClusterNodes = new[]
        {
            "string",
        },
        SecondaryLocation = "string",
        SecondaryWorkspace = "string",
        StandbyClusterNodes = new[]
        {
            "string",
        },
    });
    
    example, err := ibm.NewPhaDeployment(ctx, "phaDeploymentResource", &ibm.PhaDeploymentArgs{
    	InstanceId:       pulumi.String("string"),
    	LocationId:       pulumi.String("string"),
    	PrimaryWorkspace: pulumi.String("string"),
    	AcceptLanguage:   pulumi.String("string"),
    	ApiKey:           pulumi.String("string"),
    	ClusterType:      pulumi.String("string"),
    	ConfigureType:    pulumi.String("string"),
    	IfNoneMatch:      pulumi.String("string"),
    	PrimaryClusterNodes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SecondaryLocation:  pulumi.String("string"),
    	SecondaryWorkspace: pulumi.String("string"),
    	StandbyClusterNodes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    resource "ibm_phadeployment" "phaDeploymentResource" {
      instance_id           = "string"
      location_id           = "string"
      primary_workspace     = "string"
      accept_language       = "string"
      api_key               = "string"
      cluster_type          = "string"
      configure_type        = "string"
      if_none_match         = "string"
      primary_cluster_nodes = ["string"]
      secondary_location    = "string"
      secondary_workspace   = "string"
      standby_cluster_nodes = ["string"]
    }
    
    var phaDeploymentResource = new PhaDeployment("phaDeploymentResource", PhaDeploymentArgs.builder()
        .instanceId("string")
        .locationId("string")
        .primaryWorkspace("string")
        .acceptLanguage("string")
        .apiKey("string")
        .clusterType("string")
        .configureType("string")
        .ifNoneMatch("string")
        .primaryClusterNodes("string")
        .secondaryLocation("string")
        .secondaryWorkspace("string")
        .standbyClusterNodes("string")
        .build());
    
    pha_deployment_resource = ibm.PhaDeployment("phaDeploymentResource",
        instance_id="string",
        location_id="string",
        primary_workspace="string",
        accept_language="string",
        api_key="string",
        cluster_type="string",
        configure_type="string",
        if_none_match="string",
        primary_cluster_nodes=["string"],
        secondary_location="string",
        secondary_workspace="string",
        standby_cluster_nodes=["string"])
    
    const phaDeploymentResource = new ibm.PhaDeployment("phaDeploymentResource", {
        instanceId: "string",
        locationId: "string",
        primaryWorkspace: "string",
        acceptLanguage: "string",
        apiKey: "string",
        clusterType: "string",
        configureType: "string",
        ifNoneMatch: "string",
        primaryClusterNodes: ["string"],
        secondaryLocation: "string",
        secondaryWorkspace: "string",
        standbyClusterNodes: ["string"],
    });
    
    type: ibm:PhaDeployment
    properties:
        acceptLanguage: string
        apiKey: string
        clusterType: string
        configureType: string
        ifNoneMatch: string
        instanceId: string
        locationId: string
        primaryClusterNodes:
            - string
        primaryWorkspace: string
        secondaryLocation: string
        secondaryWorkspace: string
        standbyClusterNodes:
            - string
    

    PhaDeployment 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 PhaDeployment resource accepts the following input properties:

    InstanceId string
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    LocationId string
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryWorkspace string
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    AcceptLanguage string
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    ApiKey string
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    ClusterType string
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ConfigureType string
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    IfNoneMatch string
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    PrimaryClusterNodes List<string>
    List of primary cluster node VM IDs (input).
    SecondaryLocation string
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    SecondaryWorkspace string
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    StandbyClusterNodes List<string>
    List of standby cluster node VM IDs.
    InstanceId string
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    LocationId string
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryWorkspace string
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    AcceptLanguage string
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    ApiKey string
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    ClusterType string
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ConfigureType string
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    IfNoneMatch string
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    PrimaryClusterNodes []string
    List of primary cluster node VM IDs (input).
    SecondaryLocation string
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    SecondaryWorkspace string
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    StandbyClusterNodes []string
    List of standby cluster node VM IDs.
    instance_id string
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    location_id string
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_workspace string
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    accept_language string
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    api_key string
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    cluster_type string
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configure_type string
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    if_none_match string
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    primary_cluster_nodes list(string)
    List of primary cluster node VM IDs (input).
    secondary_location string
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondary_workspace string
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standby_cluster_nodes list(string)
    List of standby cluster node VM IDs.
    instanceId String
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    locationId String
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspace String
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    acceptLanguage String
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    apiKey String
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    clusterType String
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configureType String
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ifNoneMatch String
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    primaryClusterNodes List<String>
    List of primary cluster node VM IDs (input).
    secondaryLocation String
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryWorkspace String
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyClusterNodes List<String>
    List of standby cluster node VM IDs.
    instanceId string
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    locationId string
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspace string
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    acceptLanguage string
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    apiKey string
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    clusterType string
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configureType string
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ifNoneMatch string
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    primaryClusterNodes string[]
    List of primary cluster node VM IDs (input).
    secondaryLocation string
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryWorkspace string
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyClusterNodes string[]
    List of standby cluster node VM IDs.
    instance_id str
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    location_id str
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_workspace str
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    accept_language str
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    api_key str
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    cluster_type str
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configure_type str
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    if_none_match str
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    primary_cluster_nodes Sequence[str]
    List of primary cluster node VM IDs (input).
    secondary_location str
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondary_workspace str
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standby_cluster_nodes Sequence[str]
    List of standby cluster node VM IDs.
    instanceId String
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    locationId String
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspace String
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    acceptLanguage String
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    apiKey String
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    clusterType String
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configureType String
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ifNoneMatch String
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    primaryClusterNodes List<String>
    List of primary cluster node VM IDs (input).
    secondaryLocation String
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryWorkspace String
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyClusterNodes List<String>
    List of standby cluster node VM IDs.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PhaDeployment resource produces the following output properties:

    Apikey string
    API key used for authentication to the deployment service.
    CloudAccountId string
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ConnectivityType string
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    CreationTime string
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    CustomNetworks List<string>
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    DeprovisionTime string
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    Etag string
    ETag identifier for pha_deployment.
    Guid string
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsDuplicate bool
    (Boolean) Indicates whether deployment is duplicate.
    PlanId string
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PlanName string
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    PowerhaClusterName string
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PowerhaClusterType string
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PowerhaLevel string
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryClusterNodesDetails List<PhaDeploymentPrimaryClusterNodesDetail>
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    PrimaryRegionName string
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryWorkspaceName string
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionEndTime string
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionStartTime string
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionStatus string
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    RegionId string
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ResourceGroup string
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ResourceGroupCrn string
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    ResourceInstance string
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    SecondaryClusterNodes List<PhaDeploymentSecondaryClusterNode>
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    ServiceDescription string
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    ServiceId string
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ServiceName string
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    StandbyRegionName string
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    StandbyWorkspaceName string
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    UserTags string
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    Apikey string
    API key used for authentication to the deployment service.
    CloudAccountId string
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ConnectivityType string
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    CreationTime string
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    CustomNetworks []string
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    DeprovisionTime string
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    Etag string
    ETag identifier for pha_deployment.
    Guid string
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsDuplicate bool
    (Boolean) Indicates whether deployment is duplicate.
    PlanId string
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PlanName string
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    PowerhaClusterName string
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PowerhaClusterType string
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PowerhaLevel string
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryClusterNodesDetails []PhaDeploymentPrimaryClusterNodesDetail
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    PrimaryRegionName string
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryWorkspaceName string
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionEndTime string
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionStartTime string
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionStatus string
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    RegionId string
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ResourceGroup string
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ResourceGroupCrn string
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    ResourceInstance string
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    SecondaryClusterNodes []PhaDeploymentSecondaryClusterNode
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    ServiceDescription string
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    ServiceId string
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ServiceName string
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    StandbyRegionName string
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    StandbyWorkspaceName string
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    UserTags string
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    apikey string
    API key used for authentication to the deployment service.
    cloud_account_id string
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivity_type string
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creation_time string
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    custom_networks list(string)
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovision_time string
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag string
    ETag identifier for pha_deployment.
    guid string
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    id string
    The provider-assigned unique ID for this managed resource.
    is_duplicate bool
    (Boolean) Indicates whether deployment is duplicate.
    plan_id string
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    plan_name string
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerha_cluster_name string
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerha_cluster_type string
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerha_level string
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_cluster_nodes_details list(object)
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primary_region_name string
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_workspace_name string
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_end_time string
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_start_time string
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_status string
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    region_id string
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resource_group string
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resource_group_crn string
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resource_instance string
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondary_cluster_nodes list(object)
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    service_description string
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    service_id string
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    service_name string
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standby_region_name string
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standby_workspace_name string
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    user_tags string
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    apikey String
    API key used for authentication to the deployment service.
    cloudAccountId String
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivityType String
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creationTime String
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    customNetworks List<String>
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovisionTime String
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag String
    ETag identifier for pha_deployment.
    guid String
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    id String
    The provider-assigned unique ID for this managed resource.
    isDuplicate Boolean
    (Boolean) Indicates whether deployment is duplicate.
    planId String
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planName String
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerhaClusterName String
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaClusterType String
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaLevel String
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryClusterNodesDetails List<PhaDeploymentPrimaryClusterNodesDetail>
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primaryRegionName String
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspaceName String
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionEndTime String
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStartTime String
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStatus String
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    regionId String
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroup String
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroupCrn String
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resourceInstance String
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryClusterNodes List<PhaDeploymentSecondaryClusterNode>
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    serviceDescription String
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    serviceId String
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceName String
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standbyRegionName String
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyWorkspaceName String
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    userTags String
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    apikey string
    API key used for authentication to the deployment service.
    cloudAccountId string
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivityType string
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creationTime string
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    customNetworks string[]
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovisionTime string
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag string
    ETag identifier for pha_deployment.
    guid string
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    id string
    The provider-assigned unique ID for this managed resource.
    isDuplicate boolean
    (Boolean) Indicates whether deployment is duplicate.
    planId string
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planName string
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerhaClusterName string
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaClusterType string
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaLevel string
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryClusterNodesDetails PhaDeploymentPrimaryClusterNodesDetail[]
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primaryRegionName string
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspaceName string
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionEndTime string
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStartTime string
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStatus string
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    regionId string
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroup string
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroupCrn string
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resourceInstance string
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryClusterNodes PhaDeploymentSecondaryClusterNode[]
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    serviceDescription string
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    serviceId string
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceName string
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standbyRegionName string
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyWorkspaceName string
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    userTags string
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    apikey str
    API key used for authentication to the deployment service.
    cloud_account_id str
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivity_type str
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creation_time str
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    custom_networks Sequence[str]
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovision_time str
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag str
    ETag identifier for pha_deployment.
    guid str
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    id str
    The provider-assigned unique ID for this managed resource.
    is_duplicate bool
    (Boolean) Indicates whether deployment is duplicate.
    plan_id str
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    plan_name str
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerha_cluster_name str
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerha_cluster_type str
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerha_level str
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_cluster_nodes_details Sequence[PhaDeploymentPrimaryClusterNodesDetail]
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primary_region_name str
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_workspace_name str
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_end_time str
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_start_time str
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_status str
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    region_id str
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resource_group str
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resource_group_crn str
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resource_instance str
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondary_cluster_nodes Sequence[PhaDeploymentSecondaryClusterNode]
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    service_description str
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    service_id str
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    service_name str
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standby_region_name str
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standby_workspace_name str
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    user_tags str
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    apikey String
    API key used for authentication to the deployment service.
    cloudAccountId String
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivityType String
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creationTime String
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    customNetworks List<String>
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovisionTime String
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag String
    ETag identifier for pha_deployment.
    guid String
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    id String
    The provider-assigned unique ID for this managed resource.
    isDuplicate Boolean
    (Boolean) Indicates whether deployment is duplicate.
    planId String
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planName String
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerhaClusterName String
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaClusterType String
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaLevel String
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryClusterNodesDetails List<Property Map>
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primaryRegionName String
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspaceName String
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionEndTime String
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStartTime String
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStatus String
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    regionId String
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroup String
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroupCrn String
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resourceInstance String
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryClusterNodes List<Property Map>
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    serviceDescription String
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    serviceId String
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceName String
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standbyRegionName String
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyWorkspaceName String
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    userTags String
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.

    Look up Existing PhaDeployment Resource

    Get an existing PhaDeployment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: PhaDeploymentState, opts?: CustomResourceOptions): PhaDeployment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accept_language: Optional[str] = None,
            api_key: Optional[str] = None,
            apikey: Optional[str] = None,
            cloud_account_id: Optional[str] = None,
            cluster_type: Optional[str] = None,
            configure_type: Optional[str] = None,
            connectivity_type: Optional[str] = None,
            creation_time: Optional[str] = None,
            custom_networks: Optional[Sequence[str]] = None,
            deprovision_time: Optional[str] = None,
            etag: Optional[str] = None,
            guid: Optional[str] = None,
            if_none_match: Optional[str] = None,
            instance_id: Optional[str] = None,
            is_duplicate: Optional[bool] = None,
            location_id: Optional[str] = None,
            plan_id: Optional[str] = None,
            plan_name: Optional[str] = None,
            powerha_cluster_name: Optional[str] = None,
            powerha_cluster_type: Optional[str] = None,
            powerha_level: Optional[str] = None,
            primary_cluster_nodes: Optional[Sequence[str]] = None,
            primary_cluster_nodes_details: Optional[Sequence[PhaDeploymentPrimaryClusterNodesDetailArgs]] = None,
            primary_region_name: Optional[str] = None,
            primary_workspace: Optional[str] = None,
            primary_workspace_name: Optional[str] = None,
            provision_end_time: Optional[str] = None,
            provision_start_time: Optional[str] = None,
            provision_status: Optional[str] = None,
            region_id: Optional[str] = None,
            resource_group: Optional[str] = None,
            resource_group_crn: Optional[str] = None,
            resource_instance: Optional[str] = None,
            secondary_cluster_nodes: Optional[Sequence[PhaDeploymentSecondaryClusterNodeArgs]] = None,
            secondary_location: Optional[str] = None,
            secondary_workspace: Optional[str] = None,
            service_description: Optional[str] = None,
            service_id: Optional[str] = None,
            service_name: Optional[str] = None,
            standby_cluster_nodes: Optional[Sequence[str]] = None,
            standby_region_name: Optional[str] = None,
            standby_workspace_name: Optional[str] = None,
            user_tags: Optional[str] = None) -> PhaDeployment
    func GetPhaDeployment(ctx *Context, name string, id IDInput, state *PhaDeploymentState, opts ...ResourceOption) (*PhaDeployment, error)
    public static PhaDeployment Get(string name, Input<string> id, PhaDeploymentState? state, CustomResourceOptions? opts = null)
    public static PhaDeployment get(String name, Output<String> id, PhaDeploymentState state, CustomResourceOptions options)
    resources:  _:    type: ibm:PhaDeployment    get:      id: ${id}
    import {
      to = ibm_phadeployment.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AcceptLanguage string
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    ApiKey string
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    Apikey string
    API key used for authentication to the deployment service.
    CloudAccountId string
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ClusterType string
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ConfigureType string
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ConnectivityType string
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    CreationTime string
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    CustomNetworks List<string>
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    DeprovisionTime string
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    Etag string
    ETag identifier for pha_deployment.
    Guid string
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    IfNoneMatch string
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    InstanceId string
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    IsDuplicate bool
    (Boolean) Indicates whether deployment is duplicate.
    LocationId string
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PlanId string
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PlanName string
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    PowerhaClusterName string
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PowerhaClusterType string
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PowerhaLevel string
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryClusterNodes List<string>
    List of primary cluster node VM IDs (input).
    PrimaryClusterNodesDetails List<PhaDeploymentPrimaryClusterNodesDetail>
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    PrimaryRegionName string
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryWorkspace string
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryWorkspaceName string
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionEndTime string
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionStartTime string
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionStatus string
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    RegionId string
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ResourceGroup string
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ResourceGroupCrn string
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    ResourceInstance string
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    SecondaryClusterNodes List<PhaDeploymentSecondaryClusterNode>
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    SecondaryLocation string
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    SecondaryWorkspace string
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ServiceDescription string
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    ServiceId string
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ServiceName string
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    StandbyClusterNodes List<string>
    List of standby cluster node VM IDs.
    StandbyRegionName string
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    StandbyWorkspaceName string
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    UserTags string
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    AcceptLanguage string
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    ApiKey string
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    Apikey string
    API key used for authentication to the deployment service.
    CloudAccountId string
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ClusterType string
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ConfigureType string
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ConnectivityType string
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    CreationTime string
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    CustomNetworks []string
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    DeprovisionTime string
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    Etag string
    ETag identifier for pha_deployment.
    Guid string
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    IfNoneMatch string
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    InstanceId string
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    IsDuplicate bool
    (Boolean) Indicates whether deployment is duplicate.
    LocationId string
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PlanId string
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PlanName string
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    PowerhaClusterName string
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PowerhaClusterType string
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PowerhaLevel string
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryClusterNodes []string
    List of primary cluster node VM IDs (input).
    PrimaryClusterNodesDetails []PhaDeploymentPrimaryClusterNodesDetailArgs
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    PrimaryRegionName string
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryWorkspace string
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    PrimaryWorkspaceName string
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionEndTime string
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionStartTime string
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ProvisionStatus string
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    RegionId string
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ResourceGroup string
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ResourceGroupCrn string
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    ResourceInstance string
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    SecondaryClusterNodes []PhaDeploymentSecondaryClusterNodeArgs
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    SecondaryLocation string
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    SecondaryWorkspace string
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ServiceDescription string
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    ServiceId string
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ServiceName string
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    StandbyClusterNodes []string
    List of standby cluster node VM IDs.
    StandbyRegionName string
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    StandbyWorkspaceName string
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    UserTags string
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    accept_language string
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    api_key string
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    apikey string
    API key used for authentication to the deployment service.
    cloud_account_id string
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cluster_type string
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configure_type string
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivity_type string
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creation_time string
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    custom_networks list(string)
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovision_time string
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag string
    ETag identifier for pha_deployment.
    guid string
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    if_none_match string
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    instance_id string
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    is_duplicate bool
    (Boolean) Indicates whether deployment is duplicate.
    location_id string
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    plan_id string
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    plan_name string
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerha_cluster_name string
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerha_cluster_type string
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerha_level string
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_cluster_nodes list(string)
    List of primary cluster node VM IDs (input).
    primary_cluster_nodes_details list(object)
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primary_region_name string
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_workspace string
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_workspace_name string
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_end_time string
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_start_time string
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_status string
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    region_id string
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resource_group string
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resource_group_crn string
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resource_instance string
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondary_cluster_nodes list(object)
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    secondary_location string
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondary_workspace string
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    service_description string
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    service_id string
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    service_name string
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standby_cluster_nodes list(string)
    List of standby cluster node VM IDs.
    standby_region_name string
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standby_workspace_name string
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    user_tags string
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    acceptLanguage String
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    apiKey String
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    apikey String
    API key used for authentication to the deployment service.
    cloudAccountId String
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    clusterType String
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configureType String
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivityType String
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creationTime String
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    customNetworks List<String>
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovisionTime String
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag String
    ETag identifier for pha_deployment.
    guid String
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ifNoneMatch String
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    instanceId String
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    isDuplicate Boolean
    (Boolean) Indicates whether deployment is duplicate.
    locationId String
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planId String
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planName String
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerhaClusterName String
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaClusterType String
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaLevel String
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryClusterNodes List<String>
    List of primary cluster node VM IDs (input).
    primaryClusterNodesDetails List<PhaDeploymentPrimaryClusterNodesDetail>
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primaryRegionName String
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspace String
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspaceName String
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionEndTime String
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStartTime String
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStatus String
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    regionId String
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroup String
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroupCrn String
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resourceInstance String
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryClusterNodes List<PhaDeploymentSecondaryClusterNode>
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    secondaryLocation String
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryWorkspace String
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceDescription String
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    serviceId String
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceName String
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standbyClusterNodes List<String>
    List of standby cluster node VM IDs.
    standbyRegionName String
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyWorkspaceName String
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    userTags String
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    acceptLanguage string
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    apiKey string
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    apikey string
    API key used for authentication to the deployment service.
    cloudAccountId string
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    clusterType string
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configureType string
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivityType string
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creationTime string
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    customNetworks string[]
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovisionTime string
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag string
    ETag identifier for pha_deployment.
    guid string
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ifNoneMatch string
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    instanceId string
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    isDuplicate boolean
    (Boolean) Indicates whether deployment is duplicate.
    locationId string
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planId string
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planName string
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerhaClusterName string
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaClusterType string
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaLevel string
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryClusterNodes string[]
    List of primary cluster node VM IDs (input).
    primaryClusterNodesDetails PhaDeploymentPrimaryClusterNodesDetail[]
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primaryRegionName string
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspace string
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspaceName string
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionEndTime string
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStartTime string
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStatus string
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    regionId string
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroup string
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroupCrn string
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resourceInstance string
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryClusterNodes PhaDeploymentSecondaryClusterNode[]
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    secondaryLocation string
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryWorkspace string
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceDescription string
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    serviceId string
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceName string
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standbyClusterNodes string[]
    List of standby cluster node VM IDs.
    standbyRegionName string
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyWorkspaceName string
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    userTags string
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    accept_language str
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    api_key str
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    apikey str
    API key used for authentication to the deployment service.
    cloud_account_id str
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cluster_type str
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configure_type str
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivity_type str
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creation_time str
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    custom_networks Sequence[str]
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovision_time str
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag str
    ETag identifier for pha_deployment.
    guid str
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    if_none_match str
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    instance_id str
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    is_duplicate bool
    (Boolean) Indicates whether deployment is duplicate.
    location_id str
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    plan_id str
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    plan_name str
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerha_cluster_name str
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerha_cluster_type str
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerha_level str
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_cluster_nodes Sequence[str]
    List of primary cluster node VM IDs (input).
    primary_cluster_nodes_details Sequence[PhaDeploymentPrimaryClusterNodesDetailArgs]
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primary_region_name str
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_workspace str
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primary_workspace_name str
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_end_time str
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_start_time str
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provision_status str
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    region_id str
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resource_group str
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resource_group_crn str
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resource_instance str
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondary_cluster_nodes Sequence[PhaDeploymentSecondaryClusterNodeArgs]
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    secondary_location str
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondary_workspace str
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    service_description str
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    service_id str
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    service_name str
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standby_cluster_nodes Sequence[str]
    List of standby cluster node VM IDs.
    standby_region_name str
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standby_workspace_name str
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    user_tags str
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.
    acceptLanguage String
    The language requested for the return document.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    apiKey String
    API key used for authentication to the deployment service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\\-*]+$/.
    apikey String
    API key used for authentication to the deployment service.
    cloudAccountId String
    (String) Cloud account identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    clusterType String
    Type of PowerHA cluster being deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    configureType String
    Configuration type for the deployment.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    connectivityType String
    (String) Type of network connectivity.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    creationTime String
    (String) Timestamp expressing creation time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    customNetworks List<String>
    (List) List of custom network CIDRs.

    • Constraints: The list items must match regular expression /^[A-Za-z0-9._:\/-]+$/. The maximum length is 16 items. The minimum length is 0 items.
    deprovisionTime String
    (String) Timestamp expressing deprovision time.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
    etag String
    ETag identifier for pha_deployment.
    guid String
    (String) Global unique identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    ifNoneMatch String
    ETag for conditional requests (optional).

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9\\-_,;=.*]+$/.
    instanceId String
    Unique identifier of the provisioned instance.

    • Constraints: The maximum length is 50 characters. The minimum length is 1 character. The value must match regular expression /^[a-zA-Z0-9-]+$/.
    isDuplicate Boolean
    (Boolean) Indicates whether deployment is duplicate.
    locationId String
    Identifier for the deployment location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planId String
    (String) Identifier for the service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    planName String
    (String) Name of service plan.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    powerhaClusterName String
    (String) Name of the PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaClusterType String
    (String) Type of PowerHA cluster.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    powerhaLevel String
    (String) PowerHA version level.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryClusterNodes List<String>
    List of primary cluster node VM IDs (input).
    primaryClusterNodesDetails List<Property Map>
    (Optional, List) List of primary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for primary_cluster_nodes:
    primaryRegionName String
    (String) name of the primary workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspace String
    Primary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    primaryWorkspaceName String
    (String) name of the primary workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionEndTime String
    (String) Time stamp provisioning completed.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStartTime String
    (String) Time stamp provisioning started.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    provisionStatus String
    (String) Current provision status.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    regionId String
    (String) Deployment region identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroup String
    (String) Name of the resource group.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    resourceGroupCrn String
    (String) CRN of associated resource group.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:\/-]+$/.
    resourceInstance String
    (String) Resource instance identifier.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryClusterNodes List<Property Map>
    (List) List of secondary cluster nodes.

    • Constraints: The maximum length is 8 items. The minimum length is 0 items. Nested schema for secondary_cluster_nodes:
    secondaryLocation String
    Secondary cluster location.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    secondaryWorkspace String
    Secondary workspace identifier.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceDescription String
    (String) Description of provisioned service.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,\\- ]+$/.
    serviceId String
    (String) Identifier for the service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    serviceName String
    (String) Name of service.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._: -]+$/.
    standbyClusterNodes List<String>
    List of standby cluster node VM IDs.
    standbyRegionName String
    (String) name of the standby workspace region.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    standbyWorkspaceName String
    (String) name of the standby workspace.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    userTags String
    (String) User defined tags.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:,-]+$/.

    Supporting Types

    PhaDeploymentPrimaryClusterNodesDetail, PhaDeploymentPrimaryClusterNodesDetailArgs

    AgentStatus string
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    Cores double
    (Float) Number of CPU cores allocated to the node.
    IpAddress string
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    Memory double
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    PhaLevel string
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    Region string
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmId string
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmName string
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmStatus string
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    WorkspaceId string
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    AgentStatus string
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    Cores float64
    (Float) Number of CPU cores allocated to the node.
    IpAddress string
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    Memory float64
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    PhaLevel string
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    Region string
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmId string
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmName string
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmStatus string
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    WorkspaceId string
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agent_status string
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores number
    (Float) Number of CPU cores allocated to the node.
    ip_address string
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory number
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    pha_level string
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region string
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_id string
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_name string
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_status string
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspace_id string
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agentStatus String
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores Double
    (Float) Number of CPU cores allocated to the node.
    ipAddress String
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory Double
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    phaLevel String
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region String
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmId String
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmName String
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmStatus String
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspaceId String
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agentStatus string
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores number
    (Float) Number of CPU cores allocated to the node.
    ipAddress string
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory number
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    phaLevel string
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region string
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmId string
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmName string
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmStatus string
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspaceId string
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agent_status str
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores float
    (Float) Number of CPU cores allocated to the node.
    ip_address str
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory float
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    pha_level str
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region str
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_id str
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_name str
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_status str
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspace_id str
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agentStatus String
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores Number
    (Float) Number of CPU cores allocated to the node.
    ipAddress String
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory Number
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    phaLevel String
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region String
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmId String
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmName String
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmStatus String
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspaceId String
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.

    PhaDeploymentSecondaryClusterNode, PhaDeploymentSecondaryClusterNodeArgs

    AgentStatus string
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    Cores double
    (Float) Number of CPU cores allocated to the node.
    IpAddress string
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    Memory double
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    PhaLevel string
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    Region string
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmId string
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmName string
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmStatus string
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    WorkspaceId string
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    AgentStatus string
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    Cores float64
    (Float) Number of CPU cores allocated to the node.
    IpAddress string
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    Memory float64
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    PhaLevel string
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    Region string
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmId string
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmName string
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    VmStatus string
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    WorkspaceId string
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agent_status string
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores number
    (Float) Number of CPU cores allocated to the node.
    ip_address string
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory number
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    pha_level string
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region string
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_id string
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_name string
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_status string
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspace_id string
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agentStatus String
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores Double
    (Float) Number of CPU cores allocated to the node.
    ipAddress String
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory Double
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    phaLevel String
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region String
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmId String
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmName String
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmStatus String
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspaceId String
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agentStatus string
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores number
    (Float) Number of CPU cores allocated to the node.
    ipAddress string
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory number
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    phaLevel string
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region string
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmId string
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmName string
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmStatus string
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspaceId string
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agent_status str
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores float
    (Float) Number of CPU cores allocated to the node.
    ip_address str
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory float
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    pha_level str
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region str
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_id str
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_name str
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vm_status str
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspace_id str
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    agentStatus String
    (String) Status of the PHA agent running on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    cores Number
    (Float) Number of CPU cores allocated to the node.
    ipAddress String
    (String) IP address assigned to the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.:]+$/.
    memory Number
    (Integer) Memory allocated to the virtual machine in MB or GB.

    • Constraints: The maximum value is 64. The minimum value is 1.
    phaLevel String
    (String) PowerHA version level installed on the node.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[0-9.]+$/.
    region String
    (String) Region where the virtual machine is deployed.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmId String
    (String) Unique identifier of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmName String
    (String) Name of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    vmStatus String
    (String) Current operational status of the virtual machine.

    • Constraints: The maximum length is 16 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.
    workspaceId String
    (String) Workspace identifier associated with the node.

    • Constraints: The maximum length is 2048 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9._:-]+$/.

    Import

    You can import the ibm_pha_deployment resource by using id.

    The id property can be formed from instance_id, and instance_id in the following format:

    
    <instance_id>
    
    
    • instance_id: A string in the format 8eefautr-4c02-0009-0086-8bd4d8cf61b6. Unique identifier of the provisioned instance.

    Syntax

    
    ```sh
    $ pulumi import ibm:index/phaDeployment:PhaDeployment pha_deployment <instance_id>
    ```
    
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    Viewing docs for ibm 2.1.0
    published on Tuesday, May 5, 2026 by ibm-cloud
      Try Pulumi Cloud free. Your team will thank you.