1. Packages
  2. Ibm Provider
  3. API Docs
  4. getIsBackupPolicyJobs
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.getIsBackupPolicyJobs

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Provides a read-only data source for BackupPolicyJobCollection. For more information, about backup policy in your IBM Cloud VPC, see Backup policy jobs.

    Note: VPC infrastructure services are a regional specific based endpoint, by default targets to us-south. Please make sure to target right region in the provider block as shown in the provider.tf file, if VPC service is created in region other than us-south.

    provider.tf

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    
    return await Deployment.RunAsync(() => 
    {
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const example = ibm.getIsBackupPolicyJobs({
        backupPolicyId: ibm_is_backup_policy.example.id,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    example = ibm.get_is_backup_policy_jobs(backup_policy_id=ibm_is_backup_policy["example"]["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.GetIsBackupPolicyJobs(ctx, &ibm.GetIsBackupPolicyJobsArgs{
    			BackupPolicyId: ibm_is_backup_policy.Example.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 example = Ibm.GetIsBackupPolicyJobs.Invoke(new()
        {
            BackupPolicyId = ibm_is_backup_policy.Example.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.GetIsBackupPolicyJobsArgs;
    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 example = IbmFunctions.getIsBackupPolicyJobs(GetIsBackupPolicyJobsArgs.builder()
                .backupPolicyId(ibm_is_backup_policy.example().id())
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: ibm:getIsBackupPolicyJobs
          arguments:
            backupPolicyId: ${ibm_is_backup_policy.example.id}
    

    Using getIsBackupPolicyJobs

    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 getIsBackupPolicyJobs(args: GetIsBackupPolicyJobsArgs, opts?: InvokeOptions): Promise<GetIsBackupPolicyJobsResult>
    function getIsBackupPolicyJobsOutput(args: GetIsBackupPolicyJobsOutputArgs, opts?: InvokeOptions): Output<GetIsBackupPolicyJobsResult>
    def get_is_backup_policy_jobs(backup_policy_id: Optional[str] = None,
                                  backup_policy_plan_id: Optional[str] = None,
                                  id: Optional[str] = None,
                                  source_id: Optional[str] = None,
                                  status: Optional[str] = None,
                                  target_snapshots_crns: Optional[Sequence[str]] = None,
                                  target_snapshots_ids: Optional[Sequence[str]] = None,
                                  opts: Optional[InvokeOptions] = None) -> GetIsBackupPolicyJobsResult
    def get_is_backup_policy_jobs_output(backup_policy_id: Optional[pulumi.Input[str]] = None,
                                  backup_policy_plan_id: Optional[pulumi.Input[str]] = None,
                                  id: Optional[pulumi.Input[str]] = None,
                                  source_id: Optional[pulumi.Input[str]] = None,
                                  status: Optional[pulumi.Input[str]] = None,
                                  target_snapshots_crns: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                  target_snapshots_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                  opts: Optional[InvokeOptions] = None) -> Output[GetIsBackupPolicyJobsResult]
    func GetIsBackupPolicyJobs(ctx *Context, args *GetIsBackupPolicyJobsArgs, opts ...InvokeOption) (*GetIsBackupPolicyJobsResult, error)
    func GetIsBackupPolicyJobsOutput(ctx *Context, args *GetIsBackupPolicyJobsOutputArgs, opts ...InvokeOption) GetIsBackupPolicyJobsResultOutput

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

    public static class GetIsBackupPolicyJobs 
    {
        public static Task<GetIsBackupPolicyJobsResult> InvokeAsync(GetIsBackupPolicyJobsArgs args, InvokeOptions? opts = null)
        public static Output<GetIsBackupPolicyJobsResult> Invoke(GetIsBackupPolicyJobsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIsBackupPolicyJobsResult> getIsBackupPolicyJobs(GetIsBackupPolicyJobsArgs args, InvokeOptions options)
    public static Output<GetIsBackupPolicyJobsResult> getIsBackupPolicyJobs(GetIsBackupPolicyJobsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getIsBackupPolicyJobs:getIsBackupPolicyJobs
      arguments:
        # arguments dictionary

    The following arguments are supported:

    BackupPolicyId string
    The backup policy identifier.
    BackupPolicyPlanId string
    Id string
    (Computed, String) The unique identifier for this account.
    SourceId string
    Status string
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    TargetSnapshotsCrns List<string>
    Filters the collection to resources with the target snapshot with the specified CRN.
    TargetSnapshotsIds List<string>
    Filters the collection to resources with the source volume with the specified identifier.
    BackupPolicyId string
    The backup policy identifier.
    BackupPolicyPlanId string
    Id string
    (Computed, String) The unique identifier for this account.
    SourceId string
    Status string
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    TargetSnapshotsCrns []string
    Filters the collection to resources with the target snapshot with the specified CRN.
    TargetSnapshotsIds []string
    Filters the collection to resources with the source volume with the specified identifier.
    backupPolicyId String
    The backup policy identifier.
    backupPolicyPlanId String
    id String
    (Computed, String) The unique identifier for this account.
    sourceId String
    status String
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    targetSnapshotsCrns List<String>
    Filters the collection to resources with the target snapshot with the specified CRN.
    targetSnapshotsIds List<String>
    Filters the collection to resources with the source volume with the specified identifier.
    backupPolicyId string
    The backup policy identifier.
    backupPolicyPlanId string
    id string
    (Computed, String) The unique identifier for this account.
    sourceId string
    status string
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    targetSnapshotsCrns string[]
    Filters the collection to resources with the target snapshot with the specified CRN.
    targetSnapshotsIds string[]
    Filters the collection to resources with the source volume with the specified identifier.
    backup_policy_id str
    The backup policy identifier.
    backup_policy_plan_id str
    id str
    (Computed, String) The unique identifier for this account.
    source_id str
    status str
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    target_snapshots_crns Sequence[str]
    Filters the collection to resources with the target snapshot with the specified CRN.
    target_snapshots_ids Sequence[str]
    Filters the collection to resources with the source volume with the specified identifier.
    backupPolicyId String
    The backup policy identifier.
    backupPolicyPlanId String
    id String
    (Computed, String) The unique identifier for this account.
    sourceId String
    status String
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    targetSnapshotsCrns List<String>
    Filters the collection to resources with the target snapshot with the specified CRN.
    targetSnapshotsIds List<String>
    Filters the collection to resources with the source volume with the specified identifier.

    getIsBackupPolicyJobs Result

    The following output properties are available:

    BackupPolicyId string
    Id string
    (Computed, String) The unique identifier for this account.
    Jobs List<GetIsBackupPolicyJobsJob>
    (List) Collection of backup policy jobs.
    BackupPolicyPlanId string
    SourceId string
    Status string
    (String) The status of the backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    TargetSnapshotsCrns List<string>
    TargetSnapshotsIds List<string>
    BackupPolicyId string
    Id string
    (Computed, String) The unique identifier for this account.
    Jobs []GetIsBackupPolicyJobsJob
    (List) Collection of backup policy jobs.
    BackupPolicyPlanId string
    SourceId string
    Status string
    (String) The status of the backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    TargetSnapshotsCrns []string
    TargetSnapshotsIds []string
    backupPolicyId String
    id String
    (Computed, String) The unique identifier for this account.
    jobs List<GetIsBackupPolicyJobsJob>
    (List) Collection of backup policy jobs.
    backupPolicyPlanId String
    sourceId String
    status String
    (String) The status of the backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    targetSnapshotsCrns List<String>
    targetSnapshotsIds List<String>
    backupPolicyId string
    id string
    (Computed, String) The unique identifier for this account.
    jobs GetIsBackupPolicyJobsJob[]
    (List) Collection of backup policy jobs.
    backupPolicyPlanId string
    sourceId string
    status string
    (String) The status of the backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    targetSnapshotsCrns string[]
    targetSnapshotsIds string[]
    backup_policy_id str
    id str
    (Computed, String) The unique identifier for this account.
    jobs Sequence[GetIsBackupPolicyJobsJob]
    (List) Collection of backup policy jobs.
    backup_policy_plan_id str
    source_id str
    status str
    (String) The status of the backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    target_snapshots_crns Sequence[str]
    target_snapshots_ids Sequence[str]
    backupPolicyId String
    id String
    (Computed, String) The unique identifier for this account.
    jobs List<Property Map>
    (List) Collection of backup policy jobs.
    backupPolicyPlanId String
    sourceId String
    status String
    (String) The status of the backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    targetSnapshotsCrns List<String>
    targetSnapshotsIds List<String>

    Supporting Types

    GetIsBackupPolicyJobsJob

    AutoDelete bool
    (Boolean) Indicates whether this backup policy job will be automatically deleted after it completes. At present, this is always true, but may be modifiable in the future.
    AutoDeleteAfter double
    (Integer) If auto_delete is true, the days after completion that this backup policy job will be deleted. This value may be modifiable in the future.
    BackupPolicyPlans List<GetIsBackupPolicyJobsJobBackupPolicyPlan>
    (List) The backup policy plan operated this backup policy job (may be deleted).
    CompletedAt string
    (String) The date and time that the backup policy job was completed.
    CreatedAt string
    (String) The date and time that the backup policy job was created.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    JobType string
    (String) The type of backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    ResourceType string
    (String) The resource type.
    SourceInstances List<GetIsBackupPolicyJobsJobSourceInstance>
    (List) The source instance this backup was created from (may be deleted).
    SourceShares List<GetIsBackupPolicyJobsJobSourceShare>
    (List) The source share this backup was created from (may be deleted)
    SourceVolumes List<GetIsBackupPolicyJobsJobSourceVolume>
    (List) The source volume this backup was created from (may be deleted)
    Status string
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    StatusReasons List<GetIsBackupPolicyJobsJobStatusReason>
    (List) The reasons for the current status (if any).The enumerated reason code values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected reason code was encountered.
    TargetSnapshots List<GetIsBackupPolicyJobsJobTargetSnapshot>
    (List) The snapshot operated on by this backup policy job (may be deleted).
    AutoDelete bool
    (Boolean) Indicates whether this backup policy job will be automatically deleted after it completes. At present, this is always true, but may be modifiable in the future.
    AutoDeleteAfter float64
    (Integer) If auto_delete is true, the days after completion that this backup policy job will be deleted. This value may be modifiable in the future.
    BackupPolicyPlans []GetIsBackupPolicyJobsJobBackupPolicyPlan
    (List) The backup policy plan operated this backup policy job (may be deleted).
    CompletedAt string
    (String) The date and time that the backup policy job was completed.
    CreatedAt string
    (String) The date and time that the backup policy job was created.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    JobType string
    (String) The type of backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    ResourceType string
    (String) The resource type.
    SourceInstances []GetIsBackupPolicyJobsJobSourceInstance
    (List) The source instance this backup was created from (may be deleted).
    SourceShares []GetIsBackupPolicyJobsJobSourceShare
    (List) The source share this backup was created from (may be deleted)
    SourceVolumes []GetIsBackupPolicyJobsJobSourceVolume
    (List) The source volume this backup was created from (may be deleted)
    Status string
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    StatusReasons []GetIsBackupPolicyJobsJobStatusReason
    (List) The reasons for the current status (if any).The enumerated reason code values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected reason code was encountered.
    TargetSnapshots []GetIsBackupPolicyJobsJobTargetSnapshot
    (List) The snapshot operated on by this backup policy job (may be deleted).
    autoDelete Boolean
    (Boolean) Indicates whether this backup policy job will be automatically deleted after it completes. At present, this is always true, but may be modifiable in the future.
    autoDeleteAfter Double
    (Integer) If auto_delete is true, the days after completion that this backup policy job will be deleted. This value may be modifiable in the future.
    backupPolicyPlans List<GetIsBackupPolicyJobsJobBackupPolicyPlan>
    (List) The backup policy plan operated this backup policy job (may be deleted).
    completedAt String
    (String) The date and time that the backup policy job was completed.
    createdAt String
    (String) The date and time that the backup policy job was created.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    jobType String
    (String) The type of backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    resourceType String
    (String) The resource type.
    sourceInstances List<GetIsBackupPolicyJobsJobSourceInstance>
    (List) The source instance this backup was created from (may be deleted).
    sourceShares List<GetIsBackupPolicyJobsJobSourceShare>
    (List) The source share this backup was created from (may be deleted)
    sourceVolumes List<GetIsBackupPolicyJobsJobSourceVolume>
    (List) The source volume this backup was created from (may be deleted)
    status String
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    statusReasons List<GetIsBackupPolicyJobsJobStatusReason>
    (List) The reasons for the current status (if any).The enumerated reason code values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected reason code was encountered.
    targetSnapshots List<GetIsBackupPolicyJobsJobTargetSnapshot>
    (List) The snapshot operated on by this backup policy job (may be deleted).
    autoDelete boolean
    (Boolean) Indicates whether this backup policy job will be automatically deleted after it completes. At present, this is always true, but may be modifiable in the future.
    autoDeleteAfter number
    (Integer) If auto_delete is true, the days after completion that this backup policy job will be deleted. This value may be modifiable in the future.
    backupPolicyPlans GetIsBackupPolicyJobsJobBackupPolicyPlan[]
    (List) The backup policy plan operated this backup policy job (may be deleted).
    completedAt string
    (String) The date and time that the backup policy job was completed.
    createdAt string
    (String) The date and time that the backup policy job was created.
    href string
    (Computed, String) The URL for this region.
    id string
    (Computed, String) The unique identifier for this account.
    jobType string
    (String) The type of backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    resourceType string
    (String) The resource type.
    sourceInstances GetIsBackupPolicyJobsJobSourceInstance[]
    (List) The source instance this backup was created from (may be deleted).
    sourceShares GetIsBackupPolicyJobsJobSourceShare[]
    (List) The source share this backup was created from (may be deleted)
    sourceVolumes GetIsBackupPolicyJobsJobSourceVolume[]
    (List) The source volume this backup was created from (may be deleted)
    status string
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    statusReasons GetIsBackupPolicyJobsJobStatusReason[]
    (List) The reasons for the current status (if any).The enumerated reason code values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected reason code was encountered.
    targetSnapshots GetIsBackupPolicyJobsJobTargetSnapshot[]
    (List) The snapshot operated on by this backup policy job (may be deleted).
    auto_delete bool
    (Boolean) Indicates whether this backup policy job will be automatically deleted after it completes. At present, this is always true, but may be modifiable in the future.
    auto_delete_after float
    (Integer) If auto_delete is true, the days after completion that this backup policy job will be deleted. This value may be modifiable in the future.
    backup_policy_plans Sequence[GetIsBackupPolicyJobsJobBackupPolicyPlan]
    (List) The backup policy plan operated this backup policy job (may be deleted).
    completed_at str
    (String) The date and time that the backup policy job was completed.
    created_at str
    (String) The date and time that the backup policy job was created.
    href str
    (Computed, String) The URL for this region.
    id str
    (Computed, String) The unique identifier for this account.
    job_type str
    (String) The type of backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    resource_type str
    (String) The resource type.
    source_instances Sequence[GetIsBackupPolicyJobsJobSourceInstance]
    (List) The source instance this backup was created from (may be deleted).
    source_shares Sequence[GetIsBackupPolicyJobsJobSourceShare]
    (List) The source share this backup was created from (may be deleted)
    source_volumes Sequence[GetIsBackupPolicyJobsJobSourceVolume]
    (List) The source volume this backup was created from (may be deleted)
    status str
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    status_reasons Sequence[GetIsBackupPolicyJobsJobStatusReason]
    (List) The reasons for the current status (if any).The enumerated reason code values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected reason code was encountered.
    target_snapshots Sequence[GetIsBackupPolicyJobsJobTargetSnapshot]
    (List) The snapshot operated on by this backup policy job (may be deleted).
    autoDelete Boolean
    (Boolean) Indicates whether this backup policy job will be automatically deleted after it completes. At present, this is always true, but may be modifiable in the future.
    autoDeleteAfter Number
    (Integer) If auto_delete is true, the days after completion that this backup policy job will be deleted. This value may be modifiable in the future.
    backupPolicyPlans List<Property Map>
    (List) The backup policy plan operated this backup policy job (may be deleted).
    completedAt String
    (String) The date and time that the backup policy job was completed.
    createdAt String
    (String) The date and time that the backup policy job was created.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    jobType String
    (String) The type of backup policy job.The enumerated values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the backup policy job on which the unexpected property value was encountered.
    resourceType String
    (String) The resource type.
    sourceInstances List<Property Map>
    (List) The source instance this backup was created from (may be deleted).
    sourceShares List<Property Map>
    (List) The source share this backup was created from (may be deleted)
    sourceVolumes List<Property Map>
    (List) The source volume this backup was created from (may be deleted)
    status String
    Filters the collection to backup policy jobs with the specified status, allowed values are failed, running, succeeded.
    statusReasons List<Property Map>
    (List) The reasons for the current status (if any).The enumerated reason code values for this property will expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected reason code was encountered.
    targetSnapshots List<Property Map>
    (List) The snapshot operated on by this backup policy job (may be deleted).

    GetIsBackupPolicyJobsJobBackupPolicyPlan

    Deleteds List<GetIsBackupPolicyJobsJobBackupPolicyPlanDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    Remotes List<GetIsBackupPolicyJobsJobBackupPolicyPlanRemote>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    ResourceType string
    (String) The resource type.
    Deleteds []GetIsBackupPolicyJobsJobBackupPolicyPlanDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    Remotes []GetIsBackupPolicyJobsJobBackupPolicyPlanRemote
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    ResourceType string
    (String) The resource type.
    deleteds List<GetIsBackupPolicyJobsJobBackupPolicyPlanDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.
    remotes List<GetIsBackupPolicyJobsJobBackupPolicyPlanRemote>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType String
    (String) The resource type.
    deleteds GetIsBackupPolicyJobsJobBackupPolicyPlanDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (Computed, String) The URL for this region.
    id string
    (Computed, String) The unique identifier for this account.
    name string
    (Computed, String) The globally unique name for this region.
    remotes GetIsBackupPolicyJobsJobBackupPolicyPlanRemote[]
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType string
    (String) The resource type.
    deleteds Sequence[GetIsBackupPolicyJobsJobBackupPolicyPlanDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (Computed, String) The URL for this region.
    id str
    (Computed, String) The unique identifier for this account.
    name str
    (Computed, String) The globally unique name for this region.
    remotes Sequence[GetIsBackupPolicyJobsJobBackupPolicyPlanRemote]
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resource_type str
    (String) The resource type.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.
    remotes List<Property Map>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType String
    (String) The resource type.

    GetIsBackupPolicyJobsJobBackupPolicyPlanDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsBackupPolicyJobsJobBackupPolicyPlanRemote

    Href string
    (Computed, String) The URL for this region.
    Name string
    (Computed, String) The globally unique name for this region.
    Href string
    (Computed, String) The URL for this region.
    Name string
    (Computed, String) The globally unique name for this region.
    href String
    (Computed, String) The URL for this region.
    name String
    (Computed, String) The globally unique name for this region.
    href string
    (Computed, String) The URL for this region.
    name string
    (Computed, String) The globally unique name for this region.
    href str
    (Computed, String) The URL for this region.
    name str
    (Computed, String) The globally unique name for this region.
    href String
    (Computed, String) The URL for this region.
    name String
    (Computed, String) The globally unique name for this region.

    GetIsBackupPolicyJobsJobSourceInstance

    Crn string
    (String) The CRN for this snapshot.
    Deleteds List<GetIsBackupPolicyJobsJobSourceInstanceDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    Crn string
    (String) The CRN for this snapshot.
    Deleteds []GetIsBackupPolicyJobsJobSourceInstanceDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    crn String
    (String) The CRN for this snapshot.
    deleteds List<GetIsBackupPolicyJobsJobSourceInstanceDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.
    crn string
    (String) The CRN for this snapshot.
    deleteds GetIsBackupPolicyJobsJobSourceInstanceDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (Computed, String) The URL for this region.
    id string
    (Computed, String) The unique identifier for this account.
    name string
    (Computed, String) The globally unique name for this region.
    crn str
    (String) The CRN for this snapshot.
    deleteds Sequence[GetIsBackupPolicyJobsJobSourceInstanceDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (Computed, String) The URL for this region.
    id str
    (Computed, String) The unique identifier for this account.
    name str
    (Computed, String) The globally unique name for this region.
    crn String
    (String) The CRN for this snapshot.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.

    GetIsBackupPolicyJobsJobSourceInstanceDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsBackupPolicyJobsJobSourceShare

    Crn string
    (String) The CRN for this snapshot.
    Deleteds List<GetIsBackupPolicyJobsJobSourceShareDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    Crn string
    (String) The CRN for this snapshot.
    Deleteds []GetIsBackupPolicyJobsJobSourceShareDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    crn String
    (String) The CRN for this snapshot.
    deleteds List<GetIsBackupPolicyJobsJobSourceShareDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.
    crn string
    (String) The CRN for this snapshot.
    deleteds GetIsBackupPolicyJobsJobSourceShareDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (Computed, String) The URL for this region.
    id string
    (Computed, String) The unique identifier for this account.
    name string
    (Computed, String) The globally unique name for this region.
    crn str
    (String) The CRN for this snapshot.
    deleteds Sequence[GetIsBackupPolicyJobsJobSourceShareDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (Computed, String) The URL for this region.
    id str
    (Computed, String) The unique identifier for this account.
    name str
    (Computed, String) The globally unique name for this region.
    crn String
    (String) The CRN for this snapshot.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.

    GetIsBackupPolicyJobsJobSourceShareDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsBackupPolicyJobsJobSourceVolume

    Crn string
    (String) The CRN for this snapshot.
    Deleteds List<GetIsBackupPolicyJobsJobSourceVolumeDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    Remotes List<GetIsBackupPolicyJobsJobSourceVolumeRemote>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The CRN for this snapshot.
    Deleteds []GetIsBackupPolicyJobsJobSourceVolumeDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    Remotes []GetIsBackupPolicyJobsJobSourceVolumeRemote
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    ResourceType string
    (String) The resource type.
    crn String
    (String) The CRN for this snapshot.
    deleteds List<GetIsBackupPolicyJobsJobSourceVolumeDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.
    remotes List<GetIsBackupPolicyJobsJobSourceVolumeRemote>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType String
    (String) The resource type.
    crn string
    (String) The CRN for this snapshot.
    deleteds GetIsBackupPolicyJobsJobSourceVolumeDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (Computed, String) The URL for this region.
    id string
    (Computed, String) The unique identifier for this account.
    name string
    (Computed, String) The globally unique name for this region.
    remotes GetIsBackupPolicyJobsJobSourceVolumeRemote[]
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType string
    (String) The resource type.
    crn str
    (String) The CRN for this snapshot.
    deleteds Sequence[GetIsBackupPolicyJobsJobSourceVolumeDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (Computed, String) The URL for this region.
    id str
    (Computed, String) The unique identifier for this account.
    name str
    (Computed, String) The globally unique name for this region.
    remotes Sequence[GetIsBackupPolicyJobsJobSourceVolumeRemote]
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resource_type str
    (String) The resource type.
    crn String
    (String) The CRN for this snapshot.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.
    remotes List<Property Map>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType String
    (String) The resource type.

    GetIsBackupPolicyJobsJobSourceVolumeDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsBackupPolicyJobsJobSourceVolumeRemote

    Href string
    (Computed, String) The URL for this region.
    Name string
    (Computed, String) The globally unique name for this region.
    Href string
    (Computed, String) The URL for this region.
    Name string
    (Computed, String) The globally unique name for this region.
    href String
    (Computed, String) The URL for this region.
    name String
    (Computed, String) The globally unique name for this region.
    href string
    (Computed, String) The URL for this region.
    name string
    (Computed, String) The globally unique name for this region.
    href str
    (Computed, String) The URL for this region.
    name str
    (Computed, String) The globally unique name for this region.
    href String
    (Computed, String) The URL for this region.
    name String
    (Computed, String) The globally unique name for this region.

    GetIsBackupPolicyJobsJobStatusReason

    Code string
    (String) A snake case string succinctly identifying the status reason
    Message string
    (String) An explanation of the status reason.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    Code string
    (String) A snake case string succinctly identifying the status reason
    Message string
    (String) An explanation of the status reason.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    code String
    (String) A snake case string succinctly identifying the status reason
    message String
    (String) An explanation of the status reason.
    moreInfo String
    (String) Link to documentation about deleted resources.
    code string
    (String) A snake case string succinctly identifying the status reason
    message string
    (String) An explanation of the status reason.
    moreInfo string
    (String) Link to documentation about deleted resources.
    code str
    (String) A snake case string succinctly identifying the status reason
    message str
    (String) An explanation of the status reason.
    more_info str
    (String) Link to documentation about deleted resources.
    code String
    (String) A snake case string succinctly identifying the status reason
    message String
    (String) An explanation of the status reason.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsBackupPolicyJobsJobTargetSnapshot

    Crn string
    (String) The CRN for this snapshot.
    Deleteds List<GetIsBackupPolicyJobsJobTargetSnapshotDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    Remotes List<GetIsBackupPolicyJobsJobTargetSnapshotRemote>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The CRN for this snapshot.
    Deleteds []GetIsBackupPolicyJobsJobTargetSnapshotDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (Computed, String) The URL for this region.
    Id string
    (Computed, String) The unique identifier for this account.
    Name string
    (Computed, String) The globally unique name for this region.
    Remotes []GetIsBackupPolicyJobsJobTargetSnapshotRemote
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    ResourceType string
    (String) The resource type.
    crn String
    (String) The CRN for this snapshot.
    deleteds List<GetIsBackupPolicyJobsJobTargetSnapshotDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.
    remotes List<GetIsBackupPolicyJobsJobTargetSnapshotRemote>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType String
    (String) The resource type.
    crn string
    (String) The CRN for this snapshot.
    deleteds GetIsBackupPolicyJobsJobTargetSnapshotDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (Computed, String) The URL for this region.
    id string
    (Computed, String) The unique identifier for this account.
    name string
    (Computed, String) The globally unique name for this region.
    remotes GetIsBackupPolicyJobsJobTargetSnapshotRemote[]
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType string
    (String) The resource type.
    crn str
    (String) The CRN for this snapshot.
    deleteds Sequence[GetIsBackupPolicyJobsJobTargetSnapshotDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (Computed, String) The URL for this region.
    id str
    (Computed, String) The unique identifier for this account.
    name str
    (Computed, String) The globally unique name for this region.
    remotes Sequence[GetIsBackupPolicyJobsJobTargetSnapshotRemote]
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resource_type str
    (String) The resource type.
    crn String
    (String) The CRN for this snapshot.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (Computed, String) The URL for this region.
    id String
    (Computed, String) The unique identifier for this account.
    name String
    (Computed, String) The globally unique name for this region.
    remotes List<Property Map>
    (Optional, List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable. Nested schema for remote:
    resourceType String
    (String) The resource type.

    GetIsBackupPolicyJobsJobTargetSnapshotDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsBackupPolicyJobsJobTargetSnapshotRemote

    Accounts List<GetIsBackupPolicyJobsJobTargetSnapshotRemoteAccount>
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
    Regions List<GetIsBackupPolicyJobsJobTargetSnapshotRemoteRegion>
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
    Accounts []GetIsBackupPolicyJobsJobTargetSnapshotRemoteAccount
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
    Regions []GetIsBackupPolicyJobsJobTargetSnapshotRemoteRegion
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
    accounts List<GetIsBackupPolicyJobsJobTargetSnapshotRemoteAccount>
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
    regions List<GetIsBackupPolicyJobsJobTargetSnapshotRemoteRegion>
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
    accounts GetIsBackupPolicyJobsJobTargetSnapshotRemoteAccount[]
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
    regions GetIsBackupPolicyJobsJobTargetSnapshotRemoteRegion[]
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
    accounts Sequence[GetIsBackupPolicyJobsJobTargetSnapshotRemoteAccount]
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
    regions Sequence[GetIsBackupPolicyJobsJobTargetSnapshotRemoteRegion]
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:
    accounts List<Property Map>
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisaccount, and identifies the owning account. Nested schema for account:
    regions List<Property Map>
    (Optional, List) If present, this property indicates that the referenced resource is remote to thisregion, and identifies the native region. Nested schema for region:

    GetIsBackupPolicyJobsJobTargetSnapshotRemoteAccount

    Id string
    (Computed, String) The unique identifier for this account.
    ResourceType string
    (String) The resource type.
    Id string
    (Computed, String) The unique identifier for this account.
    ResourceType string
    (String) The resource type.
    id String
    (Computed, String) The unique identifier for this account.
    resourceType String
    (String) The resource type.
    id string
    (Computed, String) The unique identifier for this account.
    resourceType string
    (String) The resource type.
    id str
    (Computed, String) The unique identifier for this account.
    resource_type str
    (String) The resource type.
    id String
    (Computed, String) The unique identifier for this account.
    resourceType String
    (String) The resource type.

    GetIsBackupPolicyJobsJobTargetSnapshotRemoteRegion

    Href string
    (Computed, String) The URL for this region.
    Name string
    (Computed, String) The globally unique name for this region.
    Href string
    (Computed, String) The URL for this region.
    Name string
    (Computed, String) The globally unique name for this region.
    href String
    (Computed, String) The URL for this region.
    name String
    (Computed, String) The globally unique name for this region.
    href string
    (Computed, String) The URL for this region.
    name string
    (Computed, String) The globally unique name for this region.
    href str
    (Computed, String) The URL for this region.
    name str
    (Computed, String) The globally unique name for this region.
    href String
    (Computed, String) The URL for this region.
    name String
    (Computed, String) The globally unique name for this region.

    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.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud