published on Tuesday, May 5, 2026 by ibm-cloud
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:
- Instance
Id string - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Accept
Language string - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- Api
Key string - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- 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 stringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- Primary
Cluster List<string>Nodes - List of primary cluster node VM IDs (input).
- Secondary
Location string - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Secondary
Workspace string - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Standby
Cluster List<string>Nodes - List of standby cluster node VM IDs.
- Instance
Id string - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Accept
Language string - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- Api
Key string - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- 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 stringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- Primary
Cluster []stringNodes - List of primary cluster node VM IDs (input).
- Secondary
Location string - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Secondary
Workspace string - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Standby
Cluster []stringNodes - List of standby cluster node VM IDs.
- instance_
id string - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- accept_
language string - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api_
key string - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- 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_ stringmatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- primary_
cluster_ list(string)nodes - List of primary cluster node VM IDs (input).
- secondary_
location string - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary_
workspace string - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby_
cluster_ list(string)nodes - List of standby cluster node VM IDs.
- instance
Id String - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- accept
Language String - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api
Key String - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- 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 StringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- primary
Cluster List<String>Nodes - List of primary cluster node VM IDs (input).
- secondary
Location String - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Workspace String - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Cluster List<String>Nodes - List of standby cluster node VM IDs.
- instance
Id string - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- accept
Language string - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api
Key string - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- 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 stringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- primary
Cluster string[]Nodes - List of primary cluster node VM IDs (input).
- secondary
Location string - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Workspace string - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Cluster string[]Nodes - List of standby cluster node VM IDs.
- instance_
id str - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- accept_
language str - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api_
key str - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- 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_ strmatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- primary_
cluster_ Sequence[str]nodes - List of primary cluster node VM IDs (input).
- secondary_
location str - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary_
workspace str - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby_
cluster_ Sequence[str]nodes - List of standby cluster node VM IDs.
- instance
Id String - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- accept
Language String - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api
Key String - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- 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 StringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- primary
Cluster List<String>Nodes - List of primary cluster node VM IDs (input).
- secondary
Location String - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Workspace String - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Cluster List<String>Nodes - 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.
- Cloud
Account stringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Connectivity
Type string - (String) Type of network connectivity.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Creation
Time string - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Deprovision
Time string - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- Etag string
- ETag identifier for pha_deployment.
- Guid string
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Plan
Name string - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- Powerha
Cluster stringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Powerha
Cluster stringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Powerha
Level string - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Cluster List<PhaNodes Details Deployment Primary Cluster Nodes Detail> - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- Primary
Region stringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Workspace stringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
End stringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
Start stringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
Status string - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Region
Id string - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Resource
Group string - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Resource
Group stringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- Resource
Instance string - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Secondary
Cluster List<PhaNodes Deployment Secondary Cluster Node> - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- Service
Description string - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- Service
Id string - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Service
Name string - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- Standby
Region stringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Standby
Workspace stringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- string
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- Apikey string
- API key used for authentication to the deployment service.
- Cloud
Account stringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Connectivity
Type string - (String) Type of network connectivity.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Creation
Time string - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Custom
Networks []string - (List) List of custom network CIDRs.
- Constraints: The list items must match regular expression
/^[A-Za-z0-9._:\/-]+$/. The maximum length is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Deprovision
Time string - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- Etag string
- ETag identifier for pha_deployment.
- Guid string
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Plan
Name string - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- Powerha
Cluster stringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Powerha
Cluster stringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Powerha
Level string - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Cluster []PhaNodes Details Deployment Primary Cluster Nodes Detail - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- Primary
Region stringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Workspace stringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
End stringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
Start stringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
Status string - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Region
Id string - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Resource
Group string - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Resource
Group stringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- Resource
Instance string - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Secondary
Cluster []PhaNodes Deployment Secondary Cluster Node - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- Service
Description string - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- Service
Id string - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Service
Name string - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- Standby
Region stringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Standby
Workspace stringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- string
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- apikey string
- API key used for authentication to the deployment service.
- cloud_
account_ stringid - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- connectivity_
type string - (String) Type of network connectivity.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation_
time string - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision_
time string - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag string
- ETag identifier for pha_deployment.
- guid string
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan_
name string - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha_
cluster_ stringname - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha_
cluster_ stringtype - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha_
level string - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
cluster_ list(object)nodes_ details - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary_
region_ stringname - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
workspace_ stringname - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
end_ stringtime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
start_ stringtime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
status string - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region_
id string - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource_
group string - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource_
group_ stringcrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource_
instance string - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary_
cluster_ list(object)nodes - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- service_
description string - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service_
id string - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service_
name string - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby_
region_ stringname - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby_
workspace_ stringname - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- string
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- apikey String
- API key used for authentication to the deployment service.
- cloud
Account StringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- connectivity
Type String - (String) Type of network connectivity.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation
Time String - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision
Time String - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag String
- ETag identifier for pha_deployment.
- guid String
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- is
Duplicate Boolean - (Boolean) Indicates whether deployment is duplicate.
- plan
Id String - (String) Identifier for the service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan
Name String - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha
Cluster StringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Cluster StringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Level String - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Cluster List<PhaNodes Details Deployment Primary Cluster Nodes Detail> - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary
Region StringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace StringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
End StringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Start StringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Status String - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region
Id String - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group String - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group StringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource
Instance String - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Cluster List<PhaNodes Deployment Secondary Cluster Node> - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- service
Description String - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service
Id String - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Name String - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby
Region StringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Workspace StringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- String
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- apikey string
- API key used for authentication to the deployment service.
- cloud
Account stringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- connectivity
Type string - (String) Type of network connectivity.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation
Time string - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- custom
Networks string[] - (List) List of custom network CIDRs.
- Constraints: The list items must match regular expression
/^[A-Za-z0-9._:\/-]+$/. The maximum length is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision
Time string - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag string
- ETag identifier for pha_deployment.
- guid string
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- id string
- The provider-assigned unique ID for this managed resource.
- is
Duplicate boolean - (Boolean) Indicates whether deployment is duplicate.
- plan
Id string - (String) Identifier for the service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan
Name string - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha
Cluster stringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Cluster stringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Level string - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Cluster PhaNodes Details Deployment Primary Cluster Nodes Detail[] - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary
Region stringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace stringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
End stringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Start stringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Status string - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region
Id string - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group string - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group stringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource
Instance string - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Cluster PhaNodes Deployment Secondary Cluster Node[] - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- service
Description string - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service
Id string - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Name string - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby
Region stringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Workspace stringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- string
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- apikey str
- API key used for authentication to the deployment service.
- cloud_
account_ strid - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- connectivity_
type str - (String) Type of network connectivity.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation_
time str - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision_
time str - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag str
- ETag identifier for pha_deployment.
- guid str
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan_
name str - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha_
cluster_ strname - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha_
cluster_ strtype - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha_
level str - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
cluster_ Sequence[Phanodes_ details Deployment Primary Cluster Nodes Detail] - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary_
region_ strname - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
workspace_ strname - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
end_ strtime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
start_ strtime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
status str - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region_
id str - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource_
group str - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource_
group_ strcrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource_
instance str - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary_
cluster_ Sequence[Phanodes Deployment Secondary Cluster Node] - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- service_
description str - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service_
id str - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service_
name str - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby_
region_ strname - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby_
workspace_ strname - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- str
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- apikey String
- API key used for authentication to the deployment service.
- cloud
Account StringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- connectivity
Type String - (String) Type of network connectivity.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation
Time String - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision
Time String - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag String
- ETag identifier for pha_deployment.
- guid String
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- is
Duplicate Boolean - (Boolean) Indicates whether deployment is duplicate.
- plan
Id String - (String) Identifier for the service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan
Name String - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha
Cluster StringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Cluster StringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Level String - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Cluster List<Property Map>Nodes Details - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary
Region StringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace StringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
End StringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Start StringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Status String - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region
Id String - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group String - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group StringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource
Instance String - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Cluster List<Property Map>Nodes - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- service
Description String - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service
Id String - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Name String - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby
Region StringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Workspace StringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- String
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
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) -> PhaDeploymentfunc 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.
- Accept
Language string - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- Api
Key string - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- Apikey string
- API key used for authentication to the deployment service.
- Cloud
Account stringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Creation
Time string - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Deprovision
Time string - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- Etag string
- ETag identifier for pha_deployment.
- Guid string
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- If
None stringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- Instance
Id string - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Plan
Name string - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- Powerha
Cluster stringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Powerha
Cluster stringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Powerha
Level string - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Cluster List<string>Nodes - List of primary cluster node VM IDs (input).
- Primary
Cluster List<PhaNodes Details Deployment Primary Cluster Nodes Detail> - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- Primary
Region stringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Workspace string - Primary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Workspace stringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
End stringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
Start stringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
Status string - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Region
Id string - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Resource
Group string - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Resource
Group stringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- Resource
Instance string - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Secondary
Cluster List<PhaNodes Deployment Secondary Cluster Node> - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- Secondary
Location string - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Secondary
Workspace string - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Service
Description string - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- Service
Id string - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Service
Name string - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- Standby
Cluster List<string>Nodes - List of standby cluster node VM IDs.
- Standby
Region stringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Standby
Workspace stringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- string
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- Accept
Language string - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- Api
Key string - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- Apikey string
- API key used for authentication to the deployment service.
- Cloud
Account stringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Creation
Time string - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Custom
Networks []string - (List) List of custom network CIDRs.
- Constraints: The list items must match regular expression
/^[A-Za-z0-9._:\/-]+$/. The maximum length is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- Deprovision
Time string - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- Etag string
- ETag identifier for pha_deployment.
- Guid string
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- If
None stringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- Instance
Id string - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Plan
Name string - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- Powerha
Cluster stringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Powerha
Cluster stringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Powerha
Level string - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Cluster []stringNodes - List of primary cluster node VM IDs (input).
- Primary
Cluster []PhaNodes Details Deployment Primary Cluster Nodes Detail Args - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- Primary
Region stringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Workspace string - Primary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Primary
Workspace stringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
End stringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
Start stringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Provision
Status string - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Region
Id string - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Resource
Group string - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Resource
Group stringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- Resource
Instance string - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Secondary
Cluster []PhaNodes Deployment Secondary Cluster Node Args - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- Secondary
Location string - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Secondary
Workspace string - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Service
Description string - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- Service
Id string - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Service
Name string - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- Standby
Cluster []stringNodes - List of standby cluster node VM IDs.
- Standby
Region stringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Standby
Workspace stringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- string
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- accept_
language string - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api_
key string - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- apikey string
- API key used for authentication to the deployment service.
- cloud_
account_ stringid - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation_
time string - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision_
time string - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag string
- ETag identifier for pha_deployment.
- guid string
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- if_
none_ stringmatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- instance_
id string - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan_
name string - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha_
cluster_ stringname - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha_
cluster_ stringtype - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha_
level string - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
cluster_ list(string)nodes - List of primary cluster node VM IDs (input).
- primary_
cluster_ list(object)nodes_ details - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary_
region_ stringname - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
workspace string - Primary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
workspace_ stringname - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
end_ stringtime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
start_ stringtime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
status string - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region_
id string - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource_
group string - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource_
group_ stringcrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource_
instance string - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary_
cluster_ list(object)nodes - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- secondary_
location string - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary_
workspace string - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service_
description string - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service_
id string - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service_
name string - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby_
cluster_ list(string)nodes - List of standby cluster node VM IDs.
- standby_
region_ stringname - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby_
workspace_ stringname - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- string
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- accept
Language String - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api
Key String - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- apikey String
- API key used for authentication to the deployment service.
- cloud
Account StringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation
Time String - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision
Time String - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag String
- ETag identifier for pha_deployment.
- guid String
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- if
None StringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- instance
Id String - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- is
Duplicate Boolean - (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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan
Name String - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha
Cluster StringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Cluster StringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Level String - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Cluster List<String>Nodes - List of primary cluster node VM IDs (input).
- primary
Cluster List<PhaNodes Details Deployment Primary Cluster Nodes Detail> - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary
Region StringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace String - Primary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace StringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
End StringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Start StringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Status String - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region
Id String - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group String - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group StringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource
Instance String - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Cluster List<PhaNodes Deployment Secondary Cluster Node> - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- secondary
Location String - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Workspace String - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Description String - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service
Id String - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Name String - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby
Cluster List<String>Nodes - List of standby cluster node VM IDs.
- standby
Region StringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Workspace StringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- String
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- accept
Language string - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api
Key string - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- apikey string
- API key used for authentication to the deployment service.
- cloud
Account stringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation
Time string - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- custom
Networks string[] - (List) List of custom network CIDRs.
- Constraints: The list items must match regular expression
/^[A-Za-z0-9._:\/-]+$/. The maximum length is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision
Time string - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag string
- ETag identifier for pha_deployment.
- guid string
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- if
None stringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- instance
Id string - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- is
Duplicate boolean - (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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan
Name string - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha
Cluster stringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Cluster stringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Level string - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Cluster string[]Nodes - List of primary cluster node VM IDs (input).
- primary
Cluster PhaNodes Details Deployment Primary Cluster Nodes Detail[] - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary
Region stringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace string - Primary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace stringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
End stringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Start stringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Status string - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region
Id string - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group string - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group stringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource
Instance string - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Cluster PhaNodes Deployment Secondary Cluster Node[] - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- secondary
Location string - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Workspace string - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Description string - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service
Id string - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Name string - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby
Cluster string[]Nodes - List of standby cluster node VM IDs.
- standby
Region stringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Workspace stringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- string
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- accept_
language str - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api_
key str - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- apikey str
- API key used for authentication to the deployment service.
- cloud_
account_ strid - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation_
time str - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision_
time str - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag str
- ETag identifier for pha_deployment.
- guid str
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- if_
none_ strmatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- instance_
id str - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan_
name str - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha_
cluster_ strname - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha_
cluster_ strtype - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha_
level str - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
cluster_ Sequence[str]nodes - List of primary cluster node VM IDs (input).
- primary_
cluster_ Sequence[Phanodes_ details Deployment Primary Cluster Nodes Detail Args] - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary_
region_ strname - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
workspace str - Primary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary_
workspace_ strname - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
end_ strtime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
start_ strtime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision_
status str - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region_
id str - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource_
group str - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource_
group_ strcrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource_
instance str - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary_
cluster_ Sequence[Phanodes Deployment Secondary Cluster Node Args] - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- secondary_
location str - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary_
workspace str - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service_
description str - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service_
id str - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service_
name str - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby_
cluster_ Sequence[str]nodes - List of standby cluster node VM IDs.
- standby_
region_ strname - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby_
workspace_ strname - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- str
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
- accept
Language String - The language requested for the return document.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- api
Key String - API key used for authentication to the deployment service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\\-*]+$/.
- Constraints: The maximum length is
- apikey String
- API key used for authentication to the deployment service.
- cloud
Account StringId - (String) Cloud account identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- creation
Time String - (String) Timestamp expressing creation time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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 is16items. The minimum length is0items.
- Constraints: The list items must match regular expression
- deprovision
Time String - (String) Timestamp expressing deprovision time.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$/.
- Constraints: The maximum length is
- etag String
- ETag identifier for pha_deployment.
- guid String
- (String) Global unique identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- if
None StringMatch - ETag for conditional requests (optional).
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9\\-_,;=.*]+$/.
- Constraints: The maximum length is
- instance
Id String - Unique identifier of the provisioned instance.
- Constraints: The maximum length is
50characters. The minimum length is1character. The value must match regular expression/^[a-zA-Z0-9-]+$/.
- Constraints: The maximum length is
- is
Duplicate Boolean - (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
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- plan
Name String - (String) Name of service plan.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- powerha
Cluster StringName - (String) Name of the PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Cluster StringType - (String) Type of PowerHA cluster.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- powerha
Level String - (String) PowerHA version level.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Cluster List<String>Nodes - List of primary cluster node VM IDs (input).
- primary
Cluster List<Property Map>Nodes Details - (Optional, List) List of primary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for primary_cluster_nodes:
- Constraints: The maximum length is
- primary
Region StringName - (String) name of the primary workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace String - Primary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- primary
Workspace StringName - (String) name of the primary workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
End StringTime - (String) Time stamp provisioning completed.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Start StringTime - (String) Time stamp provisioning started.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- provision
Status String - (String) Current provision status.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- region
Id String - (String) Deployment region identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group String - (String) Name of the resource group.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- resource
Group StringCrn - (String) CRN of associated resource group.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:\/-]+$/.
- Constraints: The maximum length is
- resource
Instance String - (String) Resource instance identifier.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Cluster List<Property Map>Nodes - (List) List of secondary cluster nodes.
- Constraints: The maximum length is
8items. The minimum length is0items. Nested schema for secondary_cluster_nodes:
- Constraints: The maximum length is
- secondary
Location String - Secondary cluster location.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- secondary
Workspace String - Secondary workspace identifier.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Description String - (String) Description of provisioned service.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,\\- ]+$/.
- Constraints: The maximum length is
- service
Id String - (String) Identifier for the service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- service
Name String - (String) Name of service.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._: -]+$/.
- Constraints: The maximum length is
- standby
Cluster List<String>Nodes - List of standby cluster node VM IDs.
- standby
Region StringName - (String) name of the standby workspace region.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- standby
Workspace StringName - (String) name of the standby workspace.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- String
- (String) User defined tags.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:,-]+$/.
- Constraints: The maximum length is
Supporting Types
PhaDeploymentPrimaryClusterNodesDetail, PhaDeploymentPrimaryClusterNodesDetailArgs
- Agent
Status string - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Cores double
- (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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- Memory double
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- Pha
Level string - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- Region string
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Id string - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Name string - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Status string - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Workspace
Id string - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Agent
Status string - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Cores float64
- (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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- Memory float64
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- Pha
Level string - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- Region string
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Id string - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Name string - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Status string - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Workspace
Id string - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent_
status string - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory number
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha_
level string - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region string
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
id string - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
name string - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
status string - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace_
id string - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent
Status String - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- cores Double
- (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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory Double
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha
Level String - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region String
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Id String - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Name String - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Status String - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace
Id String - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent
Status string - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory number
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha
Level string - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region string
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Id string - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Name string - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Status string - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace
Id string - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent_
status str - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory float
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha_
level str - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region str
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
id str - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
name str - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
status str - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace_
id str - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent
Status String - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory Number
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha
Level String - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region String
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Id String - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Name String - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Status String - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace
Id String - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
PhaDeploymentSecondaryClusterNode, PhaDeploymentSecondaryClusterNodeArgs
- Agent
Status string - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Cores double
- (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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- Memory double
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- Pha
Level string - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- Region string
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Id string - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Name string - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Status string - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Workspace
Id string - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Agent
Status string - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Cores float64
- (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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- Memory float64
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- Pha
Level string - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- Region string
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Id string - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Name string - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Vm
Status string - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- Workspace
Id string - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent_
status string - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory number
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha_
level string - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region string
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
id string - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
name string - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
status string - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace_
id string - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent
Status String - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- cores Double
- (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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory Double
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha
Level String - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region String
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Id String - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Name String - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Status String - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace
Id String - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent
Status string - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory number
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha
Level string - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region string
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Id string - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Name string - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Status string - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace
Id string - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent_
status str - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory float
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha_
level str - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region str
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
id str - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
name str - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm_
status str - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace_
id str - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- agent
Status String - (String) Status of the PHA agent running on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- 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
16characters. The minimum length is1character. The value must match regular expression/^[0-9.:]+$/.
- Constraints: The maximum length is
- memory Number
- (Integer) Memory allocated to the virtual machine in MB or GB.
- Constraints: The maximum value is
64. The minimum value is1.
- Constraints: The maximum value is
- pha
Level String - (String) PowerHA version level installed on the node.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[0-9.]+$/.
- Constraints: The maximum length is
- region String
- (String) Region where the virtual machine is deployed.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Id String - (String) Unique identifier of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Name String - (String) Name of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- vm
Status String - (String) Current operational status of the virtual machine.
- Constraints: The maximum length is
16characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
- workspace
Id String - (String) Workspace identifier associated with the node.
- Constraints: The maximum length is
2048characters. The minimum length is1character. The value must match regular expression/^[A-Za-z0-9._:-]+$/.
- Constraints: The maximum length is
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 format8eefautr-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
ibmTerraform Provider.
published on Tuesday, May 5, 2026 by ibm-cloud
