Creates Orchestrator VM in the given workspace and configuration. Orchestrator VM can be used to manage multiple virtual servers and help ensure continuous availability. For more details, refer Deploying the Orchestrator - https://test.cloud.ibm.com/docs/dr-automation-powervs?topic=dr-automation-powervs-idep-the-orch
Create PdrManagedr Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PdrManagedr(name: string, args: PdrManagedrArgs, opts?: CustomResourceOptions);@overload
def PdrManagedr(resource_name: str,
args: PdrManagedrArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PdrManagedr(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
orchestrator_workspace_id: Optional[str] = None,
ssh_key_name: Optional[str] = None,
api_key: Optional[str] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
guid: Optional[str] = None,
accepts_incomplete: Optional[bool] = None,
location_id: Optional[str] = None,
machine_type: Optional[str] = None,
orchestrator_ha: Optional[bool] = None,
orchestrator_location_type: Optional[str] = None,
orchestrator_name: Optional[str] = None,
orchestrator_password: Optional[str] = None,
accept_language: Optional[str] = None,
action: Optional[str] = None,
orchestrator_workspace_location: Optional[str] = None,
standby_machine_type: Optional[str] = None,
secondary_workspace_id: Optional[str] = None,
secret: Optional[str] = None,
secret_group: Optional[str] = None,
region_id: Optional[str] = None,
stand_by_redeploy: Optional[str] = None,
resource_instance: Optional[str] = None,
standby_orchestrator_name: Optional[str] = None,
standby_orchestrator_workspace_id: Optional[str] = None,
standby_orchestrator_workspace_location: Optional[str] = None,
standby_tier: Optional[str] = None,
tenant_name: Optional[str] = None,
tier: Optional[str] = None,
timeouts: Optional[PdrManagedrTimeoutsArgs] = None)func NewPdrManagedr(ctx *Context, name string, args PdrManagedrArgs, opts ...ResourceOption) (*PdrManagedr, error)public PdrManagedr(string name, PdrManagedrArgs args, CustomResourceOptions? opts = null)
public PdrManagedr(String name, PdrManagedrArgs args)
public PdrManagedr(String name, PdrManagedrArgs args, CustomResourceOptions options)
type: ibm:PdrManagedr
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PdrManagedrArgs
- 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 PdrManagedrArgs
- 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 PdrManagedrArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PdrManagedrArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PdrManagedrArgs
- 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 pdrManagedrResource = new Ibm.PdrManagedr("pdrManagedrResource", new()
{
InstanceId = "string",
OrchestratorWorkspaceId = "string",
SshKeyName = "string",
ApiKey = "string",
ClientId = "string",
ClientSecret = "string",
Guid = "string",
AcceptsIncomplete = false,
LocationId = "string",
MachineType = "string",
OrchestratorHa = false,
OrchestratorLocationType = "string",
OrchestratorName = "string",
OrchestratorPassword = "string",
AcceptLanguage = "string",
Action = "string",
OrchestratorWorkspaceLocation = "string",
StandbyMachineType = "string",
SecondaryWorkspaceId = "string",
Secret = "string",
SecretGroup = "string",
RegionId = "string",
StandByRedeploy = "string",
ResourceInstance = "string",
StandbyOrchestratorName = "string",
StandbyOrchestratorWorkspaceId = "string",
StandbyOrchestratorWorkspaceLocation = "string",
StandbyTier = "string",
TenantName = "string",
Tier = "string",
Timeouts = new Ibm.Inputs.PdrManagedrTimeoutsArgs
{
Create = "string",
},
});
example, err := ibm.NewPdrManagedr(ctx, "pdrManagedrResource", &ibm.PdrManagedrArgs{
InstanceId: pulumi.String("string"),
OrchestratorWorkspaceId: pulumi.String("string"),
SshKeyName: pulumi.String("string"),
ApiKey: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
Guid: pulumi.String("string"),
AcceptsIncomplete: pulumi.Bool(false),
LocationId: pulumi.String("string"),
MachineType: pulumi.String("string"),
OrchestratorHa: pulumi.Bool(false),
OrchestratorLocationType: pulumi.String("string"),
OrchestratorName: pulumi.String("string"),
OrchestratorPassword: pulumi.String("string"),
AcceptLanguage: pulumi.String("string"),
Action: pulumi.String("string"),
OrchestratorWorkspaceLocation: pulumi.String("string"),
StandbyMachineType: pulumi.String("string"),
SecondaryWorkspaceId: pulumi.String("string"),
Secret: pulumi.String("string"),
SecretGroup: pulumi.String("string"),
RegionId: pulumi.String("string"),
StandByRedeploy: pulumi.String("string"),
ResourceInstance: pulumi.String("string"),
StandbyOrchestratorName: pulumi.String("string"),
StandbyOrchestratorWorkspaceId: pulumi.String("string"),
StandbyOrchestratorWorkspaceLocation: pulumi.String("string"),
StandbyTier: pulumi.String("string"),
TenantName: pulumi.String("string"),
Tier: pulumi.String("string"),
Timeouts: &ibm.PdrManagedrTimeoutsArgs{
Create: pulumi.String("string"),
},
})
var pdrManagedrResource = new PdrManagedr("pdrManagedrResource", PdrManagedrArgs.builder()
.instanceId("string")
.orchestratorWorkspaceId("string")
.sshKeyName("string")
.apiKey("string")
.clientId("string")
.clientSecret("string")
.guid("string")
.acceptsIncomplete(false)
.locationId("string")
.machineType("string")
.orchestratorHa(false)
.orchestratorLocationType("string")
.orchestratorName("string")
.orchestratorPassword("string")
.acceptLanguage("string")
.action("string")
.orchestratorWorkspaceLocation("string")
.standbyMachineType("string")
.secondaryWorkspaceId("string")
.secret("string")
.secretGroup("string")
.regionId("string")
.standByRedeploy("string")
.resourceInstance("string")
.standbyOrchestratorName("string")
.standbyOrchestratorWorkspaceId("string")
.standbyOrchestratorWorkspaceLocation("string")
.standbyTier("string")
.tenantName("string")
.tier("string")
.timeouts(PdrManagedrTimeoutsArgs.builder()
.create("string")
.build())
.build());
pdr_managedr_resource = ibm.PdrManagedr("pdrManagedrResource",
instance_id="string",
orchestrator_workspace_id="string",
ssh_key_name="string",
api_key="string",
client_id="string",
client_secret="string",
guid="string",
accepts_incomplete=False,
location_id="string",
machine_type="string",
orchestrator_ha=False,
orchestrator_location_type="string",
orchestrator_name="string",
orchestrator_password="string",
accept_language="string",
action="string",
orchestrator_workspace_location="string",
standby_machine_type="string",
secondary_workspace_id="string",
secret="string",
secret_group="string",
region_id="string",
stand_by_redeploy="string",
resource_instance="string",
standby_orchestrator_name="string",
standby_orchestrator_workspace_id="string",
standby_orchestrator_workspace_location="string",
standby_tier="string",
tenant_name="string",
tier="string",
timeouts={
"create": "string",
})
const pdrManagedrResource = new ibm.PdrManagedr("pdrManagedrResource", {
instanceId: "string",
orchestratorWorkspaceId: "string",
sshKeyName: "string",
apiKey: "string",
clientId: "string",
clientSecret: "string",
guid: "string",
acceptsIncomplete: false,
locationId: "string",
machineType: "string",
orchestratorHa: false,
orchestratorLocationType: "string",
orchestratorName: "string",
orchestratorPassword: "string",
acceptLanguage: "string",
action: "string",
orchestratorWorkspaceLocation: "string",
standbyMachineType: "string",
secondaryWorkspaceId: "string",
secret: "string",
secretGroup: "string",
regionId: "string",
standByRedeploy: "string",
resourceInstance: "string",
standbyOrchestratorName: "string",
standbyOrchestratorWorkspaceId: "string",
standbyOrchestratorWorkspaceLocation: "string",
standbyTier: "string",
tenantName: "string",
tier: "string",
timeouts: {
create: "string",
},
});
type: ibm:PdrManagedr
properties:
acceptLanguage: string
acceptsIncomplete: false
action: string
apiKey: string
clientId: string
clientSecret: string
guid: string
instanceId: string
locationId: string
machineType: string
orchestratorHa: false
orchestratorLocationType: string
orchestratorName: string
orchestratorPassword: string
orchestratorWorkspaceId: string
orchestratorWorkspaceLocation: string
regionId: string
resourceInstance: string
secondaryWorkspaceId: string
secret: string
secretGroup: string
sshKeyName: string
standByRedeploy: string
standbyMachineType: string
standbyOrchestratorName: string
standbyOrchestratorWorkspaceId: string
standbyOrchestratorWorkspaceLocation: string
standbyTier: string
tenantName: string
tier: string
timeouts:
create: string
PdrManagedr 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 PdrManagedr resource accepts the following input properties:
- Instance
Id string - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- Accept
Language string - The language requested for the return document.
- Accepts
Incomplete bool - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- Action string
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- Api
Key string - The API key associated with the IBM Cloud service instance.
- Client
Id string - Client ID for MFA (Multi-Factor Authentication).
- Client
Secret string - Client secret for MFA (Multi-Factor Authentication).
- Guid string
- The globally unique identifier of the service instance.
- Location
Id string - Location or data center identifier where the service instance is deployed.
- Machine
Type string - Machine type or flavor used for virtual machines in the service instance.
- Orchestrator
Ha bool - Flag to enable or disable High Availability (HA) for the service instance.
- Orchestrator
Location stringType - Type of orchestrator cluster used in the service instance.
- Orchestrator
Name string - Username for the orchestrator management interface.
- Orchestrator
Password string - Password for the orchestrator management interface.
- Orchestrator
Workspace stringId - ID of the orchestrator workspace.
- Orchestrator
Workspace stringLocation - Location of the orchestrator workspace.
- Region
Id string - Cloud region where the service instance is deployed.
- Resource
Instance string - ID of the associated IBM Cloud resource instance.
- Secondary
Workspace stringId - ID of the secondary workspace used for redundancy or disaster recovery.
- Secret string
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- Secret
Group string - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- Ssh
Key stringName - Name of the SSH key stored in the cloud provider.
- Stand
By stringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- Standby
Machine stringType - Machine type or flavor used for standby virtual machines.
- Standby
Orchestrator stringName - Username for the standby orchestrator management interface.
- Standby
Orchestrator stringWorkspace Id - ID of the standby orchestrator workspace.
- Standby
Orchestrator stringWorkspace Location - Location of the standby orchestrator workspace.
- Standby
Tier string - Tier of the standby service instance.
- Tenant
Name string - Tenant name for MFA authentication.
- Tier string
- Tier of the service instance.
- Timeouts
Pdr
Managedr Timeouts
- Instance
Id string - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- Accept
Language string - The language requested for the return document.
- Accepts
Incomplete bool - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- Action string
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- Api
Key string - The API key associated with the IBM Cloud service instance.
- Client
Id string - Client ID for MFA (Multi-Factor Authentication).
- Client
Secret string - Client secret for MFA (Multi-Factor Authentication).
- Guid string
- The globally unique identifier of the service instance.
- Location
Id string - Location or data center identifier where the service instance is deployed.
- Machine
Type string - Machine type or flavor used for virtual machines in the service instance.
- Orchestrator
Ha bool - Flag to enable or disable High Availability (HA) for the service instance.
- Orchestrator
Location stringType - Type of orchestrator cluster used in the service instance.
- Orchestrator
Name string - Username for the orchestrator management interface.
- Orchestrator
Password string - Password for the orchestrator management interface.
- Orchestrator
Workspace stringId - ID of the orchestrator workspace.
- Orchestrator
Workspace stringLocation - Location of the orchestrator workspace.
- Region
Id string - Cloud region where the service instance is deployed.
- Resource
Instance string - ID of the associated IBM Cloud resource instance.
- Secondary
Workspace stringId - ID of the secondary workspace used for redundancy or disaster recovery.
- Secret string
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- Secret
Group string - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- Ssh
Key stringName - Name of the SSH key stored in the cloud provider.
- Stand
By stringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- Standby
Machine stringType - Machine type or flavor used for standby virtual machines.
- Standby
Orchestrator stringName - Username for the standby orchestrator management interface.
- Standby
Orchestrator stringWorkspace Id - ID of the standby orchestrator workspace.
- Standby
Orchestrator stringWorkspace Location - Location of the standby orchestrator workspace.
- Standby
Tier string - Tier of the standby service instance.
- Tenant
Name string - Tenant name for MFA authentication.
- Tier string
- Tier of the service instance.
- Timeouts
Pdr
Managedr Timeouts Args
- instance
Id String - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- accept
Language String - The language requested for the return document.
- accepts
Incomplete Boolean - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- action String
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- api
Key String - The API key associated with the IBM Cloud service instance.
- client
Id String - Client ID for MFA (Multi-Factor Authentication).
- client
Secret String - Client secret for MFA (Multi-Factor Authentication).
- guid String
- The globally unique identifier of the service instance.
- location
Id String - Location or data center identifier where the service instance is deployed.
- machine
Type String - Machine type or flavor used for virtual machines in the service instance.
- orchestrator
Ha Boolean - Flag to enable or disable High Availability (HA) for the service instance.
- orchestrator
Location StringType - Type of orchestrator cluster used in the service instance.
- orchestrator
Name String - Username for the orchestrator management interface.
- orchestrator
Password String - Password for the orchestrator management interface.
- orchestrator
Workspace StringId - ID of the orchestrator workspace.
- orchestrator
Workspace StringLocation - Location of the orchestrator workspace.
- region
Id String - Cloud region where the service instance is deployed.
- resource
Instance String - ID of the associated IBM Cloud resource instance.
- secondary
Workspace StringId - ID of the secondary workspace used for redundancy or disaster recovery.
- secret String
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- secret
Group String - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- ssh
Key StringName - Name of the SSH key stored in the cloud provider.
- stand
By StringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- standby
Machine StringType - Machine type or flavor used for standby virtual machines.
- standby
Orchestrator StringName - Username for the standby orchestrator management interface.
- standby
Orchestrator StringWorkspace Id - ID of the standby orchestrator workspace.
- standby
Orchestrator StringWorkspace Location - Location of the standby orchestrator workspace.
- standby
Tier String - Tier of the standby service instance.
- tenant
Name String - Tenant name for MFA authentication.
- tier String
- Tier of the service instance.
- timeouts
Pdr
Managedr Timeouts
- instance
Id string - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- accept
Language string - The language requested for the return document.
- accepts
Incomplete boolean - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- action string
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- api
Key string - The API key associated with the IBM Cloud service instance.
- client
Id string - Client ID for MFA (Multi-Factor Authentication).
- client
Secret string - Client secret for MFA (Multi-Factor Authentication).
- guid string
- The globally unique identifier of the service instance.
- location
Id string - Location or data center identifier where the service instance is deployed.
- machine
Type string - Machine type or flavor used for virtual machines in the service instance.
- orchestrator
Ha boolean - Flag to enable or disable High Availability (HA) for the service instance.
- orchestrator
Location stringType - Type of orchestrator cluster used in the service instance.
- orchestrator
Name string - Username for the orchestrator management interface.
- orchestrator
Password string - Password for the orchestrator management interface.
- orchestrator
Workspace stringId - ID of the orchestrator workspace.
- orchestrator
Workspace stringLocation - Location of the orchestrator workspace.
- region
Id string - Cloud region where the service instance is deployed.
- resource
Instance string - ID of the associated IBM Cloud resource instance.
- secondary
Workspace stringId - ID of the secondary workspace used for redundancy or disaster recovery.
- secret string
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- secret
Group string - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- ssh
Key stringName - Name of the SSH key stored in the cloud provider.
- stand
By stringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- standby
Machine stringType - Machine type or flavor used for standby virtual machines.
- standby
Orchestrator stringName - Username for the standby orchestrator management interface.
- standby
Orchestrator stringWorkspace Id - ID of the standby orchestrator workspace.
- standby
Orchestrator stringWorkspace Location - Location of the standby orchestrator workspace.
- standby
Tier string - Tier of the standby service instance.
- tenant
Name string - Tenant name for MFA authentication.
- tier string
- Tier of the service instance.
- timeouts
Pdr
Managedr Timeouts
- instance_
id str - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- accept_
language str - The language requested for the return document.
- accepts_
incomplete bool - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- action str
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- api_
key str - The API key associated with the IBM Cloud service instance.
- client_
id str - Client ID for MFA (Multi-Factor Authentication).
- client_
secret str - Client secret for MFA (Multi-Factor Authentication).
- guid str
- The globally unique identifier of the service instance.
- location_
id str - Location or data center identifier where the service instance is deployed.
- machine_
type str - Machine type or flavor used for virtual machines in the service instance.
- orchestrator_
ha bool - Flag to enable or disable High Availability (HA) for the service instance.
- orchestrator_
location_ strtype - Type of orchestrator cluster used in the service instance.
- orchestrator_
name str - Username for the orchestrator management interface.
- orchestrator_
password str - Password for the orchestrator management interface.
- orchestrator_
workspace_ strid - ID of the orchestrator workspace.
- orchestrator_
workspace_ strlocation - Location of the orchestrator workspace.
- region_
id str - Cloud region where the service instance is deployed.
- resource_
instance str - ID of the associated IBM Cloud resource instance.
- secondary_
workspace_ strid - ID of the secondary workspace used for redundancy or disaster recovery.
- secret str
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- secret_
group str - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- ssh_
key_ strname - Name of the SSH key stored in the cloud provider.
- stand_
by_ strredeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- standby_
machine_ strtype - Machine type or flavor used for standby virtual machines.
- standby_
orchestrator_ strname - Username for the standby orchestrator management interface.
- standby_
orchestrator_ strworkspace_ id - ID of the standby orchestrator workspace.
- standby_
orchestrator_ strworkspace_ location - Location of the standby orchestrator workspace.
- standby_
tier str - Tier of the standby service instance.
- tenant_
name str - Tenant name for MFA authentication.
- tier str
- Tier of the service instance.
- timeouts
Pdr
Managedr Timeouts Args
- instance
Id String - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- accept
Language String - The language requested for the return document.
- accepts
Incomplete Boolean - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- action String
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- api
Key String - The API key associated with the IBM Cloud service instance.
- client
Id String - Client ID for MFA (Multi-Factor Authentication).
- client
Secret String - Client secret for MFA (Multi-Factor Authentication).
- guid String
- The globally unique identifier of the service instance.
- location
Id String - Location or data center identifier where the service instance is deployed.
- machine
Type String - Machine type or flavor used for virtual machines in the service instance.
- orchestrator
Ha Boolean - Flag to enable or disable High Availability (HA) for the service instance.
- orchestrator
Location StringType - Type of orchestrator cluster used in the service instance.
- orchestrator
Name String - Username for the orchestrator management interface.
- orchestrator
Password String - Password for the orchestrator management interface.
- orchestrator
Workspace StringId - ID of the orchestrator workspace.
- orchestrator
Workspace StringLocation - Location of the orchestrator workspace.
- region
Id String - Cloud region where the service instance is deployed.
- resource
Instance String - ID of the associated IBM Cloud resource instance.
- secondary
Workspace StringId - ID of the secondary workspace used for redundancy or disaster recovery.
- secret String
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- secret
Group String - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- ssh
Key StringName - Name of the SSH key stored in the cloud provider.
- stand
By StringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- standby
Machine StringType - Machine type or flavor used for standby virtual machines.
- standby
Orchestrator StringName - Username for the standby orchestrator management interface.
- standby
Orchestrator StringWorkspace Id - ID of the standby orchestrator workspace.
- standby
Orchestrator StringWorkspace Location - Location of the standby orchestrator workspace.
- standby
Tier String - Tier of the standby service instance.
- tenant
Name String - Tenant name for MFA authentication.
- tier String
- Tier of the service instance.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the PdrManagedr resource produces the following output properties:
- Dashboard
Url string - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- Etag string
- ETag identifier for pdr_managedr.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dashboard
Url string - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- Etag string
- ETag identifier for pdr_managedr.
- Id string
- The provider-assigned unique ID for this managed resource.
- dashboard
Url String - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- etag String
- ETag identifier for pdr_managedr.
- id String
- The provider-assigned unique ID for this managed resource.
- dashboard
Url string - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- etag string
- ETag identifier for pdr_managedr.
- id string
- The provider-assigned unique ID for this managed resource.
- dashboard_
url str - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- etag str
- ETag identifier for pdr_managedr.
- id str
- The provider-assigned unique ID for this managed resource.
- dashboard
Url String - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- etag String
- ETag identifier for pdr_managedr.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing PdrManagedr Resource
Get an existing PdrManagedr 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?: PdrManagedrState, opts?: CustomResourceOptions): PdrManagedr@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accept_language: Optional[str] = None,
accepts_incomplete: Optional[bool] = None,
action: Optional[str] = None,
api_key: Optional[str] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
dashboard_url: Optional[str] = None,
etag: Optional[str] = None,
guid: Optional[str] = None,
instance_id: Optional[str] = None,
location_id: Optional[str] = None,
machine_type: Optional[str] = None,
orchestrator_ha: Optional[bool] = None,
orchestrator_location_type: Optional[str] = None,
orchestrator_name: Optional[str] = None,
orchestrator_password: Optional[str] = None,
orchestrator_workspace_id: Optional[str] = None,
orchestrator_workspace_location: Optional[str] = None,
region_id: Optional[str] = None,
resource_instance: Optional[str] = None,
secondary_workspace_id: Optional[str] = None,
secret: Optional[str] = None,
secret_group: Optional[str] = None,
ssh_key_name: Optional[str] = None,
stand_by_redeploy: Optional[str] = None,
standby_machine_type: Optional[str] = None,
standby_orchestrator_name: Optional[str] = None,
standby_orchestrator_workspace_id: Optional[str] = None,
standby_orchestrator_workspace_location: Optional[str] = None,
standby_tier: Optional[str] = None,
tenant_name: Optional[str] = None,
tier: Optional[str] = None,
timeouts: Optional[PdrManagedrTimeoutsArgs] = None) -> PdrManagedrfunc GetPdrManagedr(ctx *Context, name string, id IDInput, state *PdrManagedrState, opts ...ResourceOption) (*PdrManagedr, error)public static PdrManagedr Get(string name, Input<string> id, PdrManagedrState? state, CustomResourceOptions? opts = null)public static PdrManagedr get(String name, Output<String> id, PdrManagedrState state, CustomResourceOptions options)resources: _: type: ibm:PdrManagedr get: 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.
- Accepts
Incomplete bool - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- Action string
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- Api
Key string - The API key associated with the IBM Cloud service instance.
- Client
Id string - Client ID for MFA (Multi-Factor Authentication).
- Client
Secret string - Client secret for MFA (Multi-Factor Authentication).
- Dashboard
Url string - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- Etag string
- ETag identifier for pdr_managedr.
- Guid string
- The globally unique identifier of the service instance.
- Instance
Id string - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- Location
Id string - Location or data center identifier where the service instance is deployed.
- Machine
Type string - Machine type or flavor used for virtual machines in the service instance.
- Orchestrator
Ha bool - Flag to enable or disable High Availability (HA) for the service instance.
- Orchestrator
Location stringType - Type of orchestrator cluster used in the service instance.
- Orchestrator
Name string - Username for the orchestrator management interface.
- Orchestrator
Password string - Password for the orchestrator management interface.
- Orchestrator
Workspace stringId - ID of the orchestrator workspace.
- Orchestrator
Workspace stringLocation - Location of the orchestrator workspace.
- Region
Id string - Cloud region where the service instance is deployed.
- Resource
Instance string - ID of the associated IBM Cloud resource instance.
- Secondary
Workspace stringId - ID of the secondary workspace used for redundancy or disaster recovery.
- Secret string
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- Secret
Group string - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- Ssh
Key stringName - Name of the SSH key stored in the cloud provider.
- Stand
By stringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- Standby
Machine stringType - Machine type or flavor used for standby virtual machines.
- Standby
Orchestrator stringName - Username for the standby orchestrator management interface.
- Standby
Orchestrator stringWorkspace Id - ID of the standby orchestrator workspace.
- Standby
Orchestrator stringWorkspace Location - Location of the standby orchestrator workspace.
- Standby
Tier string - Tier of the standby service instance.
- Tenant
Name string - Tenant name for MFA authentication.
- Tier string
- Tier of the service instance.
- Timeouts
Pdr
Managedr Timeouts
- Accept
Language string - The language requested for the return document.
- Accepts
Incomplete bool - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- Action string
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- Api
Key string - The API key associated with the IBM Cloud service instance.
- Client
Id string - Client ID for MFA (Multi-Factor Authentication).
- Client
Secret string - Client secret for MFA (Multi-Factor Authentication).
- Dashboard
Url string - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- Etag string
- ETag identifier for pdr_managedr.
- Guid string
- The globally unique identifier of the service instance.
- Instance
Id string - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- Location
Id string - Location or data center identifier where the service instance is deployed.
- Machine
Type string - Machine type or flavor used for virtual machines in the service instance.
- Orchestrator
Ha bool - Flag to enable or disable High Availability (HA) for the service instance.
- Orchestrator
Location stringType - Type of orchestrator cluster used in the service instance.
- Orchestrator
Name string - Username for the orchestrator management interface.
- Orchestrator
Password string - Password for the orchestrator management interface.
- Orchestrator
Workspace stringId - ID of the orchestrator workspace.
- Orchestrator
Workspace stringLocation - Location of the orchestrator workspace.
- Region
Id string - Cloud region where the service instance is deployed.
- Resource
Instance string - ID of the associated IBM Cloud resource instance.
- Secondary
Workspace stringId - ID of the secondary workspace used for redundancy or disaster recovery.
- Secret string
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- Secret
Group string - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- Ssh
Key stringName - Name of the SSH key stored in the cloud provider.
- Stand
By stringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- Standby
Machine stringType - Machine type or flavor used for standby virtual machines.
- Standby
Orchestrator stringName - Username for the standby orchestrator management interface.
- Standby
Orchestrator stringWorkspace Id - ID of the standby orchestrator workspace.
- Standby
Orchestrator stringWorkspace Location - Location of the standby orchestrator workspace.
- Standby
Tier string - Tier of the standby service instance.
- Tenant
Name string - Tenant name for MFA authentication.
- Tier string
- Tier of the service instance.
- Timeouts
Pdr
Managedr Timeouts Args
- accept
Language String - The language requested for the return document.
- accepts
Incomplete Boolean - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- action String
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- api
Key String - The API key associated with the IBM Cloud service instance.
- client
Id String - Client ID for MFA (Multi-Factor Authentication).
- client
Secret String - Client secret for MFA (Multi-Factor Authentication).
- dashboard
Url String - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- etag String
- ETag identifier for pdr_managedr.
- guid String
- The globally unique identifier of the service instance.
- instance
Id String - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- location
Id String - Location or data center identifier where the service instance is deployed.
- machine
Type String - Machine type or flavor used for virtual machines in the service instance.
- orchestrator
Ha Boolean - Flag to enable or disable High Availability (HA) for the service instance.
- orchestrator
Location StringType - Type of orchestrator cluster used in the service instance.
- orchestrator
Name String - Username for the orchestrator management interface.
- orchestrator
Password String - Password for the orchestrator management interface.
- orchestrator
Workspace StringId - ID of the orchestrator workspace.
- orchestrator
Workspace StringLocation - Location of the orchestrator workspace.
- region
Id String - Cloud region where the service instance is deployed.
- resource
Instance String - ID of the associated IBM Cloud resource instance.
- secondary
Workspace StringId - ID of the secondary workspace used for redundancy or disaster recovery.
- secret String
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- secret
Group String - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- ssh
Key StringName - Name of the SSH key stored in the cloud provider.
- stand
By StringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- standby
Machine StringType - Machine type or flavor used for standby virtual machines.
- standby
Orchestrator StringName - Username for the standby orchestrator management interface.
- standby
Orchestrator StringWorkspace Id - ID of the standby orchestrator workspace.
- standby
Orchestrator StringWorkspace Location - Location of the standby orchestrator workspace.
- standby
Tier String - Tier of the standby service instance.
- tenant
Name String - Tenant name for MFA authentication.
- tier String
- Tier of the service instance.
- timeouts
Pdr
Managedr Timeouts
- accept
Language string - The language requested for the return document.
- accepts
Incomplete boolean - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- action string
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- api
Key string - The API key associated with the IBM Cloud service instance.
- client
Id string - Client ID for MFA (Multi-Factor Authentication).
- client
Secret string - Client secret for MFA (Multi-Factor Authentication).
- dashboard
Url string - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- etag string
- ETag identifier for pdr_managedr.
- guid string
- The globally unique identifier of the service instance.
- instance
Id string - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- location
Id string - Location or data center identifier where the service instance is deployed.
- machine
Type string - Machine type or flavor used for virtual machines in the service instance.
- orchestrator
Ha boolean - Flag to enable or disable High Availability (HA) for the service instance.
- orchestrator
Location stringType - Type of orchestrator cluster used in the service instance.
- orchestrator
Name string - Username for the orchestrator management interface.
- orchestrator
Password string - Password for the orchestrator management interface.
- orchestrator
Workspace stringId - ID of the orchestrator workspace.
- orchestrator
Workspace stringLocation - Location of the orchestrator workspace.
- region
Id string - Cloud region where the service instance is deployed.
- resource
Instance string - ID of the associated IBM Cloud resource instance.
- secondary
Workspace stringId - ID of the secondary workspace used for redundancy or disaster recovery.
- secret string
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- secret
Group string - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- ssh
Key stringName - Name of the SSH key stored in the cloud provider.
- stand
By stringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- standby
Machine stringType - Machine type or flavor used for standby virtual machines.
- standby
Orchestrator stringName - Username for the standby orchestrator management interface.
- standby
Orchestrator stringWorkspace Id - ID of the standby orchestrator workspace.
- standby
Orchestrator stringWorkspace Location - Location of the standby orchestrator workspace.
- standby
Tier string - Tier of the standby service instance.
- tenant
Name string - Tenant name for MFA authentication.
- tier string
- Tier of the service instance.
- timeouts
Pdr
Managedr Timeouts
- accept_
language str - The language requested for the return document.
- accepts_
incomplete bool - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- action str
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- api_
key str - The API key associated with the IBM Cloud service instance.
- client_
id str - Client ID for MFA (Multi-Factor Authentication).
- client_
secret str - Client secret for MFA (Multi-Factor Authentication).
- dashboard_
url str - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- etag str
- ETag identifier for pdr_managedr.
- guid str
- The globally unique identifier of the service instance.
- instance_
id str - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- location_
id str - Location or data center identifier where the service instance is deployed.
- machine_
type str - Machine type or flavor used for virtual machines in the service instance.
- orchestrator_
ha bool - Flag to enable or disable High Availability (HA) for the service instance.
- orchestrator_
location_ strtype - Type of orchestrator cluster used in the service instance.
- orchestrator_
name str - Username for the orchestrator management interface.
- orchestrator_
password str - Password for the orchestrator management interface.
- orchestrator_
workspace_ strid - ID of the orchestrator workspace.
- orchestrator_
workspace_ strlocation - Location of the orchestrator workspace.
- region_
id str - Cloud region where the service instance is deployed.
- resource_
instance str - ID of the associated IBM Cloud resource instance.
- secondary_
workspace_ strid - ID of the secondary workspace used for redundancy or disaster recovery.
- secret str
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- secret_
group str - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- ssh_
key_ strname - Name of the SSH key stored in the cloud provider.
- stand_
by_ strredeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- standby_
machine_ strtype - Machine type or flavor used for standby virtual machines.
- standby_
orchestrator_ strname - Username for the standby orchestrator management interface.
- standby_
orchestrator_ strworkspace_ id - ID of the standby orchestrator workspace.
- standby_
orchestrator_ strworkspace_ location - Location of the standby orchestrator workspace.
- standby_
tier str - Tier of the standby service instance.
- tenant_
name str - Tenant name for MFA authentication.
- tier str
- Tier of the service instance.
- timeouts
Pdr
Managedr Timeouts Args
- accept
Language String - The language requested for the return document.
- accepts
Incomplete Boolean - A value of true indicates that both the IBM Cloud platform and the requesting client support asynchronous deprovisioning.
- action String
- Indicates whether to proceed with asynchronous operation after all configuration details are updated in the database.
- api
Key String - The API key associated with the IBM Cloud service instance.
- client
Id String - Client ID for MFA (Multi-Factor Authentication).
- client
Secret String - Client secret for MFA (Multi-Factor Authentication).
- dashboard
Url String - (String) URL to the dashboard for managing the DR service instance in IBM Cloud.
- etag String
- ETag identifier for pdr_managedr.
- guid String
- The globally unique identifier of the service instance.
- instance
Id String - The CRN (Cloud Resource Name) of the Power DR Automation service instance.
- location
Id String - Location or data center identifier where the service instance is deployed.
- machine
Type String - Machine type or flavor used for virtual machines in the service instance.
- orchestrator
Ha Boolean - Flag to enable or disable High Availability (HA) for the service instance.
- orchestrator
Location StringType - Type of orchestrator cluster used in the service instance.
- orchestrator
Name String - Username for the orchestrator management interface.
- orchestrator
Password String - Password for the orchestrator management interface.
- orchestrator
Workspace StringId - ID of the orchestrator workspace.
- orchestrator
Workspace StringLocation - Location of the orchestrator workspace.
- region
Id String - Cloud region where the service instance is deployed.
- resource
Instance String - ID of the associated IBM Cloud resource instance.
- secondary
Workspace StringId - ID of the secondary workspace used for redundancy or disaster recovery.
- secret String
- Secret name or identifier used for retrieving credentials from Secrets Manager.
- secret
Group String - Secret group name in IBM Cloud Secrets Manager containing sensitive data for * the service instance.
- ssh
Key StringName - Name of the SSH key stored in the cloud provider.
- stand
By StringRedeploy - Flag to indicate if the standby environment should be redeployed. Must be "true" or "false".
- standby
Machine StringType - Machine type or flavor used for standby virtual machines.
- standby
Orchestrator StringName - Username for the standby orchestrator management interface.
- standby
Orchestrator StringWorkspace Id - ID of the standby orchestrator workspace.
- standby
Orchestrator StringWorkspace Location - Location of the standby orchestrator workspace.
- standby
Tier String - Tier of the standby service instance.
- tenant
Name String - Tenant name for MFA authentication.
- tier String
- Tier of the service instance.
- timeouts Property Map
Supporting Types
PdrManagedrTimeouts, PdrManagedrTimeoutsArgs
- Create string
- Create string
- create String
- create string
- create str
- create String
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibmTerraform Provider.
