ibm.BackupRecoveryDataSourceConnectorPatch
Explore with Pulumi AI
Update, and delete Data-Source Connectors with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const backupRecoveryDataSourceConnectorPatchInstance = new ibm.BackupRecoveryDataSourceConnectorPatch("backupRecoveryDataSourceConnectorPatchInstance", {
connectorId: "connector_id",
xIbmTenantId: "x_ibm_tenant_id",
});
import pulumi
import pulumi_ibm as ibm
backup_recovery_data_source_connector_patch_instance = ibm.BackupRecoveryDataSourceConnectorPatch("backupRecoveryDataSourceConnectorPatchInstance",
connector_id="connector_id",
x_ibm_tenant_id="x_ibm_tenant_id")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.NewBackupRecoveryDataSourceConnectorPatch(ctx, "backupRecoveryDataSourceConnectorPatchInstance", &ibm.BackupRecoveryDataSourceConnectorPatchArgs{
ConnectorId: pulumi.String("connector_id"),
XIbmTenantId: pulumi.String("x_ibm_tenant_id"),
})
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 backupRecoveryDataSourceConnectorPatchInstance = new Ibm.BackupRecoveryDataSourceConnectorPatch("backupRecoveryDataSourceConnectorPatchInstance", new()
{
ConnectorId = "connector_id",
XIbmTenantId = "x_ibm_tenant_id",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.BackupRecoveryDataSourceConnectorPatch;
import com.pulumi.ibm.BackupRecoveryDataSourceConnectorPatchArgs;
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 backupRecoveryDataSourceConnectorPatchInstance = new BackupRecoveryDataSourceConnectorPatch("backupRecoveryDataSourceConnectorPatchInstance", BackupRecoveryDataSourceConnectorPatchArgs.builder()
.connectorId("connector_id")
.xIbmTenantId("x_ibm_tenant_id")
.build());
}
}
resources:
backupRecoveryDataSourceConnectorPatchInstance:
type: ibm:BackupRecoveryDataSourceConnectorPatch
properties:
connectorId: connector_id
xIbmTenantId: x_ibm_tenant_id
Create BackupRecoveryDataSourceConnectorPatch Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BackupRecoveryDataSourceConnectorPatch(name: string, args: BackupRecoveryDataSourceConnectorPatchArgs, opts?: CustomResourceOptions);
@overload
def BackupRecoveryDataSourceConnectorPatch(resource_name: str,
args: BackupRecoveryDataSourceConnectorPatchArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BackupRecoveryDataSourceConnectorPatch(resource_name: str,
opts: Optional[ResourceOptions] = None,
connector_id: Optional[str] = None,
x_ibm_tenant_id: Optional[str] = None,
backup_recovery_data_source_connector_patch_id: Optional[str] = None,
connector_name: Optional[str] = None)
func NewBackupRecoveryDataSourceConnectorPatch(ctx *Context, name string, args BackupRecoveryDataSourceConnectorPatchArgs, opts ...ResourceOption) (*BackupRecoveryDataSourceConnectorPatch, error)
public BackupRecoveryDataSourceConnectorPatch(string name, BackupRecoveryDataSourceConnectorPatchArgs args, CustomResourceOptions? opts = null)
public BackupRecoveryDataSourceConnectorPatch(String name, BackupRecoveryDataSourceConnectorPatchArgs args)
public BackupRecoveryDataSourceConnectorPatch(String name, BackupRecoveryDataSourceConnectorPatchArgs args, CustomResourceOptions options)
type: ibm:BackupRecoveryDataSourceConnectorPatch
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 BackupRecoveryDataSourceConnectorPatchArgs
- 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 BackupRecoveryDataSourceConnectorPatchArgs
- 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 BackupRecoveryDataSourceConnectorPatchArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BackupRecoveryDataSourceConnectorPatchArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BackupRecoveryDataSourceConnectorPatchArgs
- 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 backupRecoveryDataSourceConnectorPatchResource = new Ibm.BackupRecoveryDataSourceConnectorPatch("backupRecoveryDataSourceConnectorPatchResource", new()
{
ConnectorId = "string",
XIbmTenantId = "string",
BackupRecoveryDataSourceConnectorPatchId = "string",
ConnectorName = "string",
});
example, err := ibm.NewBackupRecoveryDataSourceConnectorPatch(ctx, "backupRecoveryDataSourceConnectorPatchResource", &ibm.BackupRecoveryDataSourceConnectorPatchArgs{
ConnectorId: pulumi.String("string"),
XIbmTenantId: pulumi.String("string"),
BackupRecoveryDataSourceConnectorPatchId: pulumi.String("string"),
ConnectorName: pulumi.String("string"),
})
var backupRecoveryDataSourceConnectorPatchResource = new BackupRecoveryDataSourceConnectorPatch("backupRecoveryDataSourceConnectorPatchResource", BackupRecoveryDataSourceConnectorPatchArgs.builder()
.connectorId("string")
.xIbmTenantId("string")
.backupRecoveryDataSourceConnectorPatchId("string")
.connectorName("string")
.build());
backup_recovery_data_source_connector_patch_resource = ibm.BackupRecoveryDataSourceConnectorPatch("backupRecoveryDataSourceConnectorPatchResource",
connector_id="string",
x_ibm_tenant_id="string",
backup_recovery_data_source_connector_patch_id="string",
connector_name="string")
const backupRecoveryDataSourceConnectorPatchResource = new ibm.BackupRecoveryDataSourceConnectorPatch("backupRecoveryDataSourceConnectorPatchResource", {
connectorId: "string",
xIbmTenantId: "string",
backupRecoveryDataSourceConnectorPatchId: "string",
connectorName: "string",
});
type: ibm:BackupRecoveryDataSourceConnectorPatch
properties:
backupRecoveryDataSourceConnectorPatchId: string
connectorId: string
connectorName: string
xIbmTenantId: string
BackupRecoveryDataSourceConnectorPatch 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 BackupRecoveryDataSourceConnectorPatch resource accepts the following input properties:
- Connector
Id string - Specifies the unique ID of the connector which is to be deleted.
- XIbm
Tenant stringId - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- Backup
Recovery stringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- Connector
Name string - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- Connector
Id string - Specifies the unique ID of the connector which is to be deleted.
- XIbm
Tenant stringId - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- Backup
Recovery stringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- Connector
Name string - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- connector
Id String - Specifies the unique ID of the connector which is to be deleted.
- x
Ibm StringTenant Id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery StringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- connector
Name String - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- connector
Id string - Specifies the unique ID of the connector which is to be deleted.
- x
Ibm stringTenant Id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery stringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- connector
Name string - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- connector_
id str - Specifies the unique ID of the connector which is to be deleted.
- x_
ibm_ strtenant_ id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup_
recovery_ strdata_ source_ connector_ patch_ id - The unique identifier of the Data-Source Connector.
- connector_
name str - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- connector
Id String - Specifies the unique ID of the connector which is to be deleted.
- x
Ibm StringTenant Id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery StringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- connector
Name String - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
Outputs
All input properties are implicitly available as output properties. Additionally, the BackupRecoveryDataSourceConnectorPatch resource produces the following output properties:
- Cluster
Side stringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- Connection
Id string - (String) Specifies the ID of the connection to which this connector belongs.
- Connectivity
Statuses List<BackupRecovery Data Source Connector Patch Connectivity Status> - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- Id string
- The provider-assigned unique ID for this managed resource.
- Software
Version string - (String) Specifies the connector's software version.
- Tenant
Side stringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- Upgrade
Statuses List<BackupRecovery Data Source Connector Patch Upgrade Status> - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- Cluster
Side stringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- Connection
Id string - (String) Specifies the ID of the connection to which this connector belongs.
- Connectivity
Statuses []BackupRecovery Data Source Connector Patch Connectivity Status - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- Id string
- The provider-assigned unique ID for this managed resource.
- Software
Version string - (String) Specifies the connector's software version.
- Tenant
Side stringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- Upgrade
Statuses []BackupRecovery Data Source Connector Patch Upgrade Status - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- cluster
Side StringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- connection
Id String - (String) Specifies the ID of the connection to which this connector belongs.
- connectivity
Statuses List<BackupRecovery Data Source Connector Patch Connectivity Status> - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- id String
- The provider-assigned unique ID for this managed resource.
- software
Version String - (String) Specifies the connector's software version.
- tenant
Side StringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- upgrade
Statuses List<BackupRecovery Data Source Connector Patch Upgrade Status> - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- cluster
Side stringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- connection
Id string - (String) Specifies the ID of the connection to which this connector belongs.
- connectivity
Statuses BackupRecovery Data Source Connector Patch Connectivity Status[] - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- id string
- The provider-assigned unique ID for this managed resource.
- software
Version string - (String) Specifies the connector's software version.
- tenant
Side stringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- upgrade
Statuses BackupRecovery Data Source Connector Patch Upgrade Status[] - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- cluster_
side_ strip - (String) Specifies the IP of the connector's NIC facing the cluster.
- connection_
id str - (String) Specifies the ID of the connection to which this connector belongs.
- connectivity_
statuses Sequence[BackupRecovery Data Source Connector Patch Connectivity Status] - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- id str
- The provider-assigned unique ID for this managed resource.
- software_
version str - (String) Specifies the connector's software version.
- tenant_
side_ strip - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- upgrade_
statuses Sequence[BackupRecovery Data Source Connector Patch Upgrade Status] - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- cluster
Side StringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- connection
Id String - (String) Specifies the ID of the connection to which this connector belongs.
- connectivity
Statuses List<Property Map> - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- id String
- The provider-assigned unique ID for this managed resource.
- software
Version String - (String) Specifies the connector's software version.
- tenant
Side StringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- upgrade
Statuses List<Property Map> - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
Look up Existing BackupRecoveryDataSourceConnectorPatch Resource
Get an existing BackupRecoveryDataSourceConnectorPatch 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?: BackupRecoveryDataSourceConnectorPatchState, opts?: CustomResourceOptions): BackupRecoveryDataSourceConnectorPatch
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backup_recovery_data_source_connector_patch_id: Optional[str] = None,
cluster_side_ip: Optional[str] = None,
connection_id: Optional[str] = None,
connectivity_statuses: Optional[Sequence[BackupRecoveryDataSourceConnectorPatchConnectivityStatusArgs]] = None,
connector_id: Optional[str] = None,
connector_name: Optional[str] = None,
software_version: Optional[str] = None,
tenant_side_ip: Optional[str] = None,
upgrade_statuses: Optional[Sequence[BackupRecoveryDataSourceConnectorPatchUpgradeStatusArgs]] = None,
x_ibm_tenant_id: Optional[str] = None) -> BackupRecoveryDataSourceConnectorPatch
func GetBackupRecoveryDataSourceConnectorPatch(ctx *Context, name string, id IDInput, state *BackupRecoveryDataSourceConnectorPatchState, opts ...ResourceOption) (*BackupRecoveryDataSourceConnectorPatch, error)
public static BackupRecoveryDataSourceConnectorPatch Get(string name, Input<string> id, BackupRecoveryDataSourceConnectorPatchState? state, CustomResourceOptions? opts = null)
public static BackupRecoveryDataSourceConnectorPatch get(String name, Output<String> id, BackupRecoveryDataSourceConnectorPatchState state, CustomResourceOptions options)
resources: _: type: ibm:BackupRecoveryDataSourceConnectorPatch 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.
- Backup
Recovery stringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- Cluster
Side stringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- Connection
Id string - (String) Specifies the ID of the connection to which this connector belongs.
- Connectivity
Statuses List<BackupRecovery Data Source Connector Patch Connectivity Status> - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- Connector
Id string - Specifies the unique ID of the connector which is to be deleted.
- Connector
Name string - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- Software
Version string - (String) Specifies the connector's software version.
- Tenant
Side stringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- Upgrade
Statuses List<BackupRecovery Data Source Connector Patch Upgrade Status> - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- XIbm
Tenant stringId - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- Backup
Recovery stringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- Cluster
Side stringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- Connection
Id string - (String) Specifies the ID of the connection to which this connector belongs.
- Connectivity
Statuses []BackupRecovery Data Source Connector Patch Connectivity Status Args - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- Connector
Id string - Specifies the unique ID of the connector which is to be deleted.
- Connector
Name string - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- Software
Version string - (String) Specifies the connector's software version.
- Tenant
Side stringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- Upgrade
Statuses []BackupRecovery Data Source Connector Patch Upgrade Status Args - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- XIbm
Tenant stringId - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery StringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- cluster
Side StringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- connection
Id String - (String) Specifies the ID of the connection to which this connector belongs.
- connectivity
Statuses List<BackupRecovery Data Source Connector Patch Connectivity Status> - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- connector
Id String - Specifies the unique ID of the connector which is to be deleted.
- connector
Name String - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- software
Version String - (String) Specifies the connector's software version.
- tenant
Side StringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- upgrade
Statuses List<BackupRecovery Data Source Connector Patch Upgrade Status> - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- x
Ibm StringTenant Id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery stringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- cluster
Side stringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- connection
Id string - (String) Specifies the ID of the connection to which this connector belongs.
- connectivity
Statuses BackupRecovery Data Source Connector Patch Connectivity Status[] - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- connector
Id string - Specifies the unique ID of the connector which is to be deleted.
- connector
Name string - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- software
Version string - (String) Specifies the connector's software version.
- tenant
Side stringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- upgrade
Statuses BackupRecovery Data Source Connector Patch Upgrade Status[] - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- x
Ibm stringTenant Id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup_
recovery_ strdata_ source_ connector_ patch_ id - The unique identifier of the Data-Source Connector.
- cluster_
side_ strip - (String) Specifies the IP of the connector's NIC facing the cluster.
- connection_
id str - (String) Specifies the ID of the connection to which this connector belongs.
- connectivity_
statuses Sequence[BackupRecovery Data Source Connector Patch Connectivity Status Args] - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- connector_
id str - Specifies the unique ID of the connector which is to be deleted.
- connector_
name str - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- software_
version str - (String) Specifies the connector's software version.
- tenant_
side_ strip - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- upgrade_
statuses Sequence[BackupRecovery Data Source Connector Patch Upgrade Status Args] - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- x_
ibm_ strtenant_ id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
- backup
Recovery StringData Source Connector Patch Id - The unique identifier of the Data-Source Connector.
- cluster
Side StringIp - (String) Specifies the IP of the connector's NIC facing the cluster.
- connection
Id String - (String) Specifies the ID of the connection to which this connector belongs.
- connectivity
Statuses List<Property Map> - (List) Specifies status information for the data-source connector. For example if it's currently connected to the cluster, when it last connected to the cluster successfully, etc. Nested schema for connectivity_status:
- connector
Id String - Specifies the unique ID of the connector which is to be deleted.
- connector
Name String - Specifies the name of the connector. The name of a connector need not be unique within a tenant or across tenants. The name of the connector can be updated as needed.
- software
Version String - (String) Specifies the connector's software version.
- tenant
Side StringIp - (String) Specifies the IP of the connector's NIC facing the sources of the tenant to which the connector belongs.
- upgrade
Statuses List<Property Map> - (List) Specifies upgrade status for the data-source connector. For example when the upgrade started, current status of the upgrade, errors for upgrade failure etc. Nested schema for upgrade_status:
- x
Ibm StringTenant Id - Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
Supporting Types
BackupRecoveryDataSourceConnectorPatchConnectivityStatus, BackupRecoveryDataSourceConnectorPatchConnectivityStatusArgs
- Is
Connected bool - (Boolean) Specifies whether the connector is currently connected to the cluster.
- Last
Connected doubleTimestamp Secs - (Integer) Specifies the last timestamp in UNIX time (seconds) when the connector had successfully connected to the cluster. This property can be present even if the connector is currently disconnected.
- Message string
- (String) Specifies error message for upgrade failure.
- Is
Connected bool - (Boolean) Specifies whether the connector is currently connected to the cluster.
- Last
Connected float64Timestamp Secs - (Integer) Specifies the last timestamp in UNIX time (seconds) when the connector had successfully connected to the cluster. This property can be present even if the connector is currently disconnected.
- Message string
- (String) Specifies error message for upgrade failure.
- is
Connected Boolean - (Boolean) Specifies whether the connector is currently connected to the cluster.
- last
Connected DoubleTimestamp Secs - (Integer) Specifies the last timestamp in UNIX time (seconds) when the connector had successfully connected to the cluster. This property can be present even if the connector is currently disconnected.
- message String
- (String) Specifies error message for upgrade failure.
- is
Connected boolean - (Boolean) Specifies whether the connector is currently connected to the cluster.
- last
Connected numberTimestamp Secs - (Integer) Specifies the last timestamp in UNIX time (seconds) when the connector had successfully connected to the cluster. This property can be present even if the connector is currently disconnected.
- message string
- (String) Specifies error message for upgrade failure.
- is_
connected bool - (Boolean) Specifies whether the connector is currently connected to the cluster.
- last_
connected_ floattimestamp_ secs - (Integer) Specifies the last timestamp in UNIX time (seconds) when the connector had successfully connected to the cluster. This property can be present even if the connector is currently disconnected.
- message str
- (String) Specifies error message for upgrade failure.
- is
Connected Boolean - (Boolean) Specifies whether the connector is currently connected to the cluster.
- last
Connected NumberTimestamp Secs - (Integer) Specifies the last timestamp in UNIX time (seconds) when the connector had successfully connected to the cluster. This property can be present even if the connector is currently disconnected.
- message String
- (String) Specifies error message for upgrade failure.
BackupRecoveryDataSourceConnectorPatchUpgradeStatus, BackupRecoveryDataSourceConnectorPatchUpgradeStatusArgs
- Last
Status doubleFetched Timestamp Msecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade status was fetched.
- Message string
- (String) Specifies error message for upgrade failure.
- Start
Timestamp doubleMSecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade was triggered.
- Status string
- (String) Specifies the last fetched upgrade status of the connector.
- Constraints: Allowable values are:
NotStarted
,InProgress
,Succeeded
,Failed
.
- Constraints: Allowable values are:
- Last
Status float64Fetched Timestamp Msecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade status was fetched.
- Message string
- (String) Specifies error message for upgrade failure.
- Start
Timestamp float64MSecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade was triggered.
- Status string
- (String) Specifies the last fetched upgrade status of the connector.
- Constraints: Allowable values are:
NotStarted
,InProgress
,Succeeded
,Failed
.
- Constraints: Allowable values are:
- last
Status DoubleFetched Timestamp Msecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade status was fetched.
- message String
- (String) Specifies error message for upgrade failure.
- start
Timestamp DoubleMSecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade was triggered.
- status String
- (String) Specifies the last fetched upgrade status of the connector.
- Constraints: Allowable values are:
NotStarted
,InProgress
,Succeeded
,Failed
.
- Constraints: Allowable values are:
- last
Status numberFetched Timestamp Msecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade status was fetched.
- message string
- (String) Specifies error message for upgrade failure.
- start
Timestamp numberMSecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade was triggered.
- status string
- (String) Specifies the last fetched upgrade status of the connector.
- Constraints: Allowable values are:
NotStarted
,InProgress
,Succeeded
,Failed
.
- Constraints: Allowable values are:
- last_
status_ floatfetched_ timestamp_ msecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade status was fetched.
- message str
- (String) Specifies error message for upgrade failure.
- start_
timestamp_ floatm_ secs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade was triggered.
- status str
- (String) Specifies the last fetched upgrade status of the connector.
- Constraints: Allowable values are:
NotStarted
,InProgress
,Succeeded
,Failed
.
- Constraints: Allowable values are:
- last
Status NumberFetched Timestamp Msecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade status was fetched.
- message String
- (String) Specifies error message for upgrade failure.
- start
Timestamp NumberMSecs - (Integer) Specifies the last timestamp in UNIX time (milliseconds) when the connector upgrade was triggered.
- status String
- (String) Specifies the last fetched upgrade status of the connector.
- Constraints: Allowable values are:
NotStarted
,InProgress
,Succeeded
,Failed
.
- Constraints: Allowable values are:
Import
Not Supported
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.