1. Packages
  2. Ibm Provider
  3. API Docs
  4. getBackupRecoveryConnectorsMetadata
ibm 1.85.0-beta0 published on Wednesday, Oct 29, 2025 by ibm-cloud

ibm.getBackupRecoveryConnectorsMetadata

Get Started
ibm logo
ibm 1.85.0-beta0 published on Wednesday, Oct 29, 2025 by ibm-cloud

    Provides a read-only data source to retrieve information about a backup_recovery_connectors_metadata. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const backupRecoveryConnectorsMetadata = ibm.getBackupRecoveryConnectorsMetadata({
        xIbmTenantId: "x_ibm_tenant_id",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    backup_recovery_connectors_metadata = ibm.get_backup_recovery_connectors_metadata(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.GetBackupRecoveryConnectorsMetadata(ctx, &ibm.GetBackupRecoveryConnectorsMetadataArgs{
    			XIbmTenantId: "x_ibm_tenant_id",
    		}, nil)
    		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 backupRecoveryConnectorsMetadata = Ibm.GetBackupRecoveryConnectorsMetadata.Invoke(new()
        {
            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.IbmFunctions;
    import com.pulumi.ibm.inputs.GetBackupRecoveryConnectorsMetadataArgs;
    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) {
            final var backupRecoveryConnectorsMetadata = IbmFunctions.getBackupRecoveryConnectorsMetadata(GetBackupRecoveryConnectorsMetadataArgs.builder()
                .xIbmTenantId("x_ibm_tenant_id")
                .build());
    
        }
    }
    
    variables:
      backupRecoveryConnectorsMetadata:
        fn::invoke:
          function: ibm:getBackupRecoveryConnectorsMetadata
          arguments:
            xIbmTenantId: x_ibm_tenant_id
    

    Using getBackupRecoveryConnectorsMetadata

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getBackupRecoveryConnectorsMetadata(args: GetBackupRecoveryConnectorsMetadataArgs, opts?: InvokeOptions): Promise<GetBackupRecoveryConnectorsMetadataResult>
    function getBackupRecoveryConnectorsMetadataOutput(args: GetBackupRecoveryConnectorsMetadataOutputArgs, opts?: InvokeOptions): Output<GetBackupRecoveryConnectorsMetadataResult>
    def get_backup_recovery_connectors_metadata(endpoint_type: Optional[str] = None,
                                                id: Optional[str] = None,
                                                instance_id: Optional[str] = None,
                                                region: Optional[str] = None,
                                                x_ibm_tenant_id: Optional[str] = None,
                                                opts: Optional[InvokeOptions] = None) -> GetBackupRecoveryConnectorsMetadataResult
    def get_backup_recovery_connectors_metadata_output(endpoint_type: Optional[pulumi.Input[str]] = None,
                                                id: Optional[pulumi.Input[str]] = None,
                                                instance_id: Optional[pulumi.Input[str]] = None,
                                                region: Optional[pulumi.Input[str]] = None,
                                                x_ibm_tenant_id: Optional[pulumi.Input[str]] = None,
                                                opts: Optional[InvokeOptions] = None) -> Output[GetBackupRecoveryConnectorsMetadataResult]
    func GetBackupRecoveryConnectorsMetadata(ctx *Context, args *GetBackupRecoveryConnectorsMetadataArgs, opts ...InvokeOption) (*GetBackupRecoveryConnectorsMetadataResult, error)
    func GetBackupRecoveryConnectorsMetadataOutput(ctx *Context, args *GetBackupRecoveryConnectorsMetadataOutputArgs, opts ...InvokeOption) GetBackupRecoveryConnectorsMetadataResultOutput

    > Note: This function is named GetBackupRecoveryConnectorsMetadata in the Go SDK.

    public static class GetBackupRecoveryConnectorsMetadata 
    {
        public static Task<GetBackupRecoveryConnectorsMetadataResult> InvokeAsync(GetBackupRecoveryConnectorsMetadataArgs args, InvokeOptions? opts = null)
        public static Output<GetBackupRecoveryConnectorsMetadataResult> Invoke(GetBackupRecoveryConnectorsMetadataInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBackupRecoveryConnectorsMetadataResult> getBackupRecoveryConnectorsMetadata(GetBackupRecoveryConnectorsMetadataArgs args, InvokeOptions options)
    public static Output<GetBackupRecoveryConnectorsMetadataResult> getBackupRecoveryConnectorsMetadata(GetBackupRecoveryConnectorsMetadataArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getBackupRecoveryConnectorsMetadata:getBackupRecoveryConnectorsMetadata
      arguments:
        # arguments dictionary

    The following arguments are supported:

    XIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    EndpointType string
    Backup Recovery Endpoint type. By default set to "public".
    Id string
    The unique identifier of the backup_recovery_connectors_metadata.
    InstanceId string
    Backup Recovery instance ID. If provided here along with region, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    Region string
    Backup Recovery region. If provided here along with instance_id, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    XIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    EndpointType string
    Backup Recovery Endpoint type. By default set to "public".
    Id string
    The unique identifier of the backup_recovery_connectors_metadata.
    InstanceId string
    Backup Recovery instance ID. If provided here along with region, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    Region string
    Backup Recovery region. If provided here along with instance_id, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    xIbmTenantId String
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    endpointType String
    Backup Recovery Endpoint type. By default set to "public".
    id String
    The unique identifier of the backup_recovery_connectors_metadata.
    instanceId String
    Backup Recovery instance ID. If provided here along with region, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    region String
    Backup Recovery region. If provided here along with instance_id, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    xIbmTenantId string
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    endpointType string
    Backup Recovery Endpoint type. By default set to "public".
    id string
    The unique identifier of the backup_recovery_connectors_metadata.
    instanceId string
    Backup Recovery instance ID. If provided here along with region, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    region string
    Backup Recovery region. If provided here along with instance_id, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    x_ibm_tenant_id str
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    endpoint_type str
    Backup Recovery Endpoint type. By default set to "public".
    id str
    The unique identifier of the backup_recovery_connectors_metadata.
    instance_id str
    Backup Recovery instance ID. If provided here along with region, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    region str
    Backup Recovery region. If provided here along with instance_id, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    xIbmTenantId String
    Specifies the key to be used to encrypt the source credential. If includeSourceCredentials is set to true this key must be specified.
    endpointType String
    Backup Recovery Endpoint type. By default set to "public".
    id String
    The unique identifier of the backup_recovery_connectors_metadata.
    instanceId String
    Backup Recovery instance ID. If provided here along with region, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.
    region String
    Backup Recovery region. If provided here along with instance_id, the provider constructs the endpoint URL using them, which overrides any value set through environment variables or the endpoints.json file.

    getBackupRecoveryConnectorsMetadata Result

    The following output properties are available:

    ConnectorImageMetadatas List<GetBackupRecoveryConnectorsMetadataConnectorImageMetadata>
    (List) Specifies information about the connector images for various platforms. Nested schema for connector_image_metadata:
    Id string
    The unique identifier of the backup_recovery_connectors_metadata.
    Region string
    XIbmTenantId string
    EndpointType string
    InstanceId string
    ConnectorImageMetadatas []GetBackupRecoveryConnectorsMetadataConnectorImageMetadata
    (List) Specifies information about the connector images for various platforms. Nested schema for connector_image_metadata:
    Id string
    The unique identifier of the backup_recovery_connectors_metadata.
    Region string
    XIbmTenantId string
    EndpointType string
    InstanceId string
    connectorImageMetadatas List<GetBackupRecoveryConnectorsMetadataConnectorImageMetadata>
    (List) Specifies information about the connector images for various platforms. Nested schema for connector_image_metadata:
    id String
    The unique identifier of the backup_recovery_connectors_metadata.
    region String
    xIbmTenantId String
    endpointType String
    instanceId String
    connectorImageMetadatas GetBackupRecoveryConnectorsMetadataConnectorImageMetadata[]
    (List) Specifies information about the connector images for various platforms. Nested schema for connector_image_metadata:
    id string
    The unique identifier of the backup_recovery_connectors_metadata.
    region string
    xIbmTenantId string
    endpointType string
    instanceId string
    connector_image_metadatas Sequence[GetBackupRecoveryConnectorsMetadataConnectorImageMetadata]
    (List) Specifies information about the connector images for various platforms. Nested schema for connector_image_metadata:
    id str
    The unique identifier of the backup_recovery_connectors_metadata.
    region str
    x_ibm_tenant_id str
    endpoint_type str
    instance_id str
    connectorImageMetadatas List<Property Map>
    (List) Specifies information about the connector images for various platforms. Nested schema for connector_image_metadata:
    id String
    The unique identifier of the backup_recovery_connectors_metadata.
    region String
    xIbmTenantId String
    endpointType String
    instanceId String

    Supporting Types

    GetBackupRecoveryConnectorsMetadataConnectorImageMetadata

    ConnectorImageFileLists List<GetBackupRecoveryConnectorsMetadataConnectorImageMetadataConnectorImageFileList>
    (List) Specifies info about connector images for the supported platforms. Nested schema for connector_image_file_list:
    ConnectorImageFileLists []GetBackupRecoveryConnectorsMetadataConnectorImageMetadataConnectorImageFileList
    (List) Specifies info about connector images for the supported platforms. Nested schema for connector_image_file_list:
    connectorImageFileLists List<GetBackupRecoveryConnectorsMetadataConnectorImageMetadataConnectorImageFileList>
    (List) Specifies info about connector images for the supported platforms. Nested schema for connector_image_file_list:
    connectorImageFileLists GetBackupRecoveryConnectorsMetadataConnectorImageMetadataConnectorImageFileList[]
    (List) Specifies info about connector images for the supported platforms. Nested schema for connector_image_file_list:
    connector_image_file_lists Sequence[GetBackupRecoveryConnectorsMetadataConnectorImageMetadataConnectorImageFileList]
    (List) Specifies info about connector images for the supported platforms. Nested schema for connector_image_file_list:
    connectorImageFileLists List<Property Map>
    (List) Specifies info about connector images for the supported platforms. Nested schema for connector_image_file_list:

    GetBackupRecoveryConnectorsMetadataConnectorImageMetadataConnectorImageFileList

    ImageType string
    (String) Specifies the platform on which the image can be deployed.

    • Constraints: Allowable values are: VSI, VMware.
    Url string
    (String) Specifies the URL to access the file.
    ImageType string
    (String) Specifies the platform on which the image can be deployed.

    • Constraints: Allowable values are: VSI, VMware.
    Url string
    (String) Specifies the URL to access the file.
    imageType String
    (String) Specifies the platform on which the image can be deployed.

    • Constraints: Allowable values are: VSI, VMware.
    url String
    (String) Specifies the URL to access the file.
    imageType string
    (String) Specifies the platform on which the image can be deployed.

    • Constraints: Allowable values are: VSI, VMware.
    url string
    (String) Specifies the URL to access the file.
    image_type str
    (String) Specifies the platform on which the image can be deployed.

    • Constraints: Allowable values are: VSI, VMware.
    url str
    (String) Specifies the URL to access the file.
    imageType String
    (String) Specifies the platform on which the image can be deployed.

    • Constraints: Allowable values are: VSI, VMware.
    url String
    (String) Specifies the URL to access the file.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.85.0-beta0 published on Wednesday, Oct 29, 2025 by ibm-cloud
      Meet Neo: Your AI Platform Teammate