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

ibm.getIsSnapshots

Explore with Pulumi AI

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

    Import the details of an existing IBM Cloud infrastructure snapshot collection as a read-only data source. You can then reference the fields of the data source in other resources within the same configuration using interpolation syntax, see viewing snapshots.

    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.getIsSnapshots({});
    
    import pulumi
    import pulumi_ibm as ibm
    
    example = ibm.get_is_snapshots()
    
    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.GetIsSnapshots(ctx, &ibm.GetIsSnapshotsArgs{}, 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.GetIsSnapshots.Invoke();
    
    });
    
    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.GetIsSnapshotsArgs;
    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.getIsSnapshots();
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: ibm:getIsSnapshots
          arguments: {}
    

    Using getIsSnapshots

    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 getIsSnapshots(args: GetIsSnapshotsArgs, opts?: InvokeOptions): Promise<GetIsSnapshotsResult>
    function getIsSnapshotsOutput(args: GetIsSnapshotsOutputArgs, opts?: InvokeOptions): Output<GetIsSnapshotsResult>
    def get_is_snapshots(backup_policy_plan_id: Optional[str] = None,
                         id: Optional[str] = None,
                         name: Optional[str] = None,
                         resource_group: Optional[str] = None,
                         snapshot_consistency_group_crn: Optional[str] = None,
                         snapshot_consistency_group_id: Optional[str] = None,
                         snapshot_copies_crn: Optional[str] = None,
                         snapshot_copies_id: Optional[str] = None,
                         snapshot_copies_name: Optional[str] = None,
                         snapshot_copies_remote_region_name: Optional[str] = None,
                         snapshot_source_volume_remote_region_name: Optional[str] = None,
                         source_image: Optional[str] = None,
                         source_snapshot_id: Optional[str] = None,
                         source_snapshot_remote_region_name: Optional[str] = None,
                         source_volume: Optional[str] = None,
                         tag: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetIsSnapshotsResult
    def get_is_snapshots_output(backup_policy_plan_id: Optional[pulumi.Input[str]] = None,
                         id: Optional[pulumi.Input[str]] = None,
                         name: Optional[pulumi.Input[str]] = None,
                         resource_group: Optional[pulumi.Input[str]] = None,
                         snapshot_consistency_group_crn: Optional[pulumi.Input[str]] = None,
                         snapshot_consistency_group_id: Optional[pulumi.Input[str]] = None,
                         snapshot_copies_crn: Optional[pulumi.Input[str]] = None,
                         snapshot_copies_id: Optional[pulumi.Input[str]] = None,
                         snapshot_copies_name: Optional[pulumi.Input[str]] = None,
                         snapshot_copies_remote_region_name: Optional[pulumi.Input[str]] = None,
                         snapshot_source_volume_remote_region_name: Optional[pulumi.Input[str]] = None,
                         source_image: Optional[pulumi.Input[str]] = None,
                         source_snapshot_id: Optional[pulumi.Input[str]] = None,
                         source_snapshot_remote_region_name: Optional[pulumi.Input[str]] = None,
                         source_volume: Optional[pulumi.Input[str]] = None,
                         tag: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetIsSnapshotsResult]
    func GetIsSnapshots(ctx *Context, args *GetIsSnapshotsArgs, opts ...InvokeOption) (*GetIsSnapshotsResult, error)
    func GetIsSnapshotsOutput(ctx *Context, args *GetIsSnapshotsOutputArgs, opts ...InvokeOption) GetIsSnapshotsResultOutput

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

    public static class GetIsSnapshots 
    {
        public static Task<GetIsSnapshotsResult> InvokeAsync(GetIsSnapshotsArgs args, InvokeOptions? opts = null)
        public static Output<GetIsSnapshotsResult> Invoke(GetIsSnapshotsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIsSnapshotsResult> getIsSnapshots(GetIsSnapshotsArgs args, InvokeOptions options)
    public static Output<GetIsSnapshotsResult> getIsSnapshots(GetIsSnapshotsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getIsSnapshots:getIsSnapshots
      arguments:
        # arguments dictionary

    The following arguments are supported:

    BackupPolicyPlanId string
    Filters the collection to backup policy jobs with the backup plan with the specified identifier
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    ResourceGroup string
    Filter snapshot collection by resource group id of the snapshot.
    SnapshotConsistencyGroupCrn string
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    SnapshotConsistencyGroupId string
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    SnapshotCopiesCrn string
    Filters the collection to snapshots with copies with the specified CRN.
    SnapshotCopiesId string
    Filters the collection to snapshots with copies with the specified identifier.
    SnapshotCopiesName string
    Filters the collection to snapshots with copies with the exact specified name.
    SnapshotCopiesRemoteRegionName string
    Filters the collection to snapshots with copies with the exact remote region name.
    SnapshotSourceVolumeRemoteRegionName string
    Filters the collection to snapshots with a source volume with the exact remote region name.
    SourceImage string
    Filter snapshot collection by source image of the snapshot.
    SourceSnapshotId string
    Filters the collection to resources with the source snapshot with the specified identifier
    SourceSnapshotRemoteRegionName string
    Filters the collection to snapshots with a source snapshot with the exact remote region name.
    SourceVolume string
    Filter snapshot collection by source volume of the snapshot.
    Tag string
    BackupPolicyPlanId string
    Filters the collection to backup policy jobs with the backup plan with the specified identifier
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    ResourceGroup string
    Filter snapshot collection by resource group id of the snapshot.
    SnapshotConsistencyGroupCrn string
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    SnapshotConsistencyGroupId string
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    SnapshotCopiesCrn string
    Filters the collection to snapshots with copies with the specified CRN.
    SnapshotCopiesId string
    Filters the collection to snapshots with copies with the specified identifier.
    SnapshotCopiesName string
    Filters the collection to snapshots with copies with the exact specified name.
    SnapshotCopiesRemoteRegionName string
    Filters the collection to snapshots with copies with the exact remote region name.
    SnapshotSourceVolumeRemoteRegionName string
    Filters the collection to snapshots with a source volume with the exact remote region name.
    SourceImage string
    Filter snapshot collection by source image of the snapshot.
    SourceSnapshotId string
    Filters the collection to resources with the source snapshot with the specified identifier
    SourceSnapshotRemoteRegionName string
    Filters the collection to snapshots with a source snapshot with the exact remote region name.
    SourceVolume string
    Filter snapshot collection by source volume of the snapshot.
    Tag string
    backupPolicyPlanId String
    Filters the collection to backup policy jobs with the backup plan with the specified identifier
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    resourceGroup String
    Filter snapshot collection by resource group id of the snapshot.
    snapshotConsistencyGroupCrn String
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    snapshotConsistencyGroupId String
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    snapshotCopiesCrn String
    Filters the collection to snapshots with copies with the specified CRN.
    snapshotCopiesId String
    Filters the collection to snapshots with copies with the specified identifier.
    snapshotCopiesName String
    Filters the collection to snapshots with copies with the exact specified name.
    snapshotCopiesRemoteRegionName String
    Filters the collection to snapshots with copies with the exact remote region name.
    snapshotSourceVolumeRemoteRegionName String
    Filters the collection to snapshots with a source volume with the exact remote region name.
    sourceImage String
    Filter snapshot collection by source image of the snapshot.
    sourceSnapshotId String
    Filters the collection to resources with the source snapshot with the specified identifier
    sourceSnapshotRemoteRegionName String
    Filters the collection to snapshots with a source snapshot with the exact remote region name.
    sourceVolume String
    Filter snapshot collection by source volume of the snapshot.
    tag String
    backupPolicyPlanId string
    Filters the collection to backup policy jobs with the backup plan with the specified identifier
    id string
    (String) The unique identifier for the source snapshot.
    name string
    Filter snapshot collection by name of the snapshot.
    resourceGroup string
    Filter snapshot collection by resource group id of the snapshot.
    snapshotConsistencyGroupCrn string
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    snapshotConsistencyGroupId string
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    snapshotCopiesCrn string
    Filters the collection to snapshots with copies with the specified CRN.
    snapshotCopiesId string
    Filters the collection to snapshots with copies with the specified identifier.
    snapshotCopiesName string
    Filters the collection to snapshots with copies with the exact specified name.
    snapshotCopiesRemoteRegionName string
    Filters the collection to snapshots with copies with the exact remote region name.
    snapshotSourceVolumeRemoteRegionName string
    Filters the collection to snapshots with a source volume with the exact remote region name.
    sourceImage string
    Filter snapshot collection by source image of the snapshot.
    sourceSnapshotId string
    Filters the collection to resources with the source snapshot with the specified identifier
    sourceSnapshotRemoteRegionName string
    Filters the collection to snapshots with a source snapshot with the exact remote region name.
    sourceVolume string
    Filter snapshot collection by source volume of the snapshot.
    tag string
    backup_policy_plan_id str
    Filters the collection to backup policy jobs with the backup plan with the specified identifier
    id str
    (String) The unique identifier for the source snapshot.
    name str
    Filter snapshot collection by name of the snapshot.
    resource_group str
    Filter snapshot collection by resource group id of the snapshot.
    snapshot_consistency_group_crn str
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    snapshot_consistency_group_id str
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    snapshot_copies_crn str
    Filters the collection to snapshots with copies with the specified CRN.
    snapshot_copies_id str
    Filters the collection to snapshots with copies with the specified identifier.
    snapshot_copies_name str
    Filters the collection to snapshots with copies with the exact specified name.
    snapshot_copies_remote_region_name str
    Filters the collection to snapshots with copies with the exact remote region name.
    snapshot_source_volume_remote_region_name str
    Filters the collection to snapshots with a source volume with the exact remote region name.
    source_image str
    Filter snapshot collection by source image of the snapshot.
    source_snapshot_id str
    Filters the collection to resources with the source snapshot with the specified identifier
    source_snapshot_remote_region_name str
    Filters the collection to snapshots with a source snapshot with the exact remote region name.
    source_volume str
    Filter snapshot collection by source volume of the snapshot.
    tag str
    backupPolicyPlanId String
    Filters the collection to backup policy jobs with the backup plan with the specified identifier
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    resourceGroup String
    Filter snapshot collection by resource group id of the snapshot.
    snapshotConsistencyGroupCrn String
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    snapshotConsistencyGroupId String
    Filters the collection to snapshots with snapshot consistency group with the specified identifier.
    snapshotCopiesCrn String
    Filters the collection to snapshots with copies with the specified CRN.
    snapshotCopiesId String
    Filters the collection to snapshots with copies with the specified identifier.
    snapshotCopiesName String
    Filters the collection to snapshots with copies with the exact specified name.
    snapshotCopiesRemoteRegionName String
    Filters the collection to snapshots with copies with the exact remote region name.
    snapshotSourceVolumeRemoteRegionName String
    Filters the collection to snapshots with a source volume with the exact remote region name.
    sourceImage String
    Filter snapshot collection by source image of the snapshot.
    sourceSnapshotId String
    Filters the collection to resources with the source snapshot with the specified identifier
    sourceSnapshotRemoteRegionName String
    Filters the collection to snapshots with a source snapshot with the exact remote region name.
    sourceVolume String
    Filter snapshot collection by source volume of the snapshot.
    tag String

    getIsSnapshots Result

    The following output properties are available:

    Id string
    (String) The unique identifier for the source snapshot.
    Snapshots List<GetIsSnapshotsSnapshot>
    (List) List of snapshots in the IBM Cloud Infrastructure.
    BackupPolicyPlanId string
    Name string
    (String) The globally unique name for this region.
    ResourceGroup string
    SnapshotConsistencyGroupCrn string
    SnapshotConsistencyGroupId string
    SnapshotCopiesCrn string
    SnapshotCopiesId string
    SnapshotCopiesName string
    SnapshotCopiesRemoteRegionName string
    SnapshotSourceVolumeRemoteRegionName string
    SourceImage string
    (String) If present, the unique identifier for the image from which the data on this volume was most directly provisioned.
    SourceSnapshotId string
    SourceSnapshotRemoteRegionName string
    SourceVolume string
    Tag string
    Id string
    (String) The unique identifier for the source snapshot.
    Snapshots []GetIsSnapshotsSnapshot
    (List) List of snapshots in the IBM Cloud Infrastructure.
    BackupPolicyPlanId string
    Name string
    (String) The globally unique name for this region.
    ResourceGroup string
    SnapshotConsistencyGroupCrn string
    SnapshotConsistencyGroupId string
    SnapshotCopiesCrn string
    SnapshotCopiesId string
    SnapshotCopiesName string
    SnapshotCopiesRemoteRegionName string
    SnapshotSourceVolumeRemoteRegionName string
    SourceImage string
    (String) If present, the unique identifier for the image from which the data on this volume was most directly provisioned.
    SourceSnapshotId string
    SourceSnapshotRemoteRegionName string
    SourceVolume string
    Tag string
    id String
    (String) The unique identifier for the source snapshot.
    snapshots List<GetIsSnapshotsSnapshot>
    (List) List of snapshots in the IBM Cloud Infrastructure.
    backupPolicyPlanId String
    name String
    (String) The globally unique name for this region.
    resourceGroup String
    snapshotConsistencyGroupCrn String
    snapshotConsistencyGroupId String
    snapshotCopiesCrn String
    snapshotCopiesId String
    snapshotCopiesName String
    snapshotCopiesRemoteRegionName String
    snapshotSourceVolumeRemoteRegionName String
    sourceImage String
    (String) If present, the unique identifier for the image from which the data on this volume was most directly provisioned.
    sourceSnapshotId String
    sourceSnapshotRemoteRegionName String
    sourceVolume String
    tag String
    id string
    (String) The unique identifier for the source snapshot.
    snapshots GetIsSnapshotsSnapshot[]
    (List) List of snapshots in the IBM Cloud Infrastructure.
    backupPolicyPlanId string
    name string
    (String) The globally unique name for this region.
    resourceGroup string
    snapshotConsistencyGroupCrn string
    snapshotConsistencyGroupId string
    snapshotCopiesCrn string
    snapshotCopiesId string
    snapshotCopiesName string
    snapshotCopiesRemoteRegionName string
    snapshotSourceVolumeRemoteRegionName string
    sourceImage string
    (String) If present, the unique identifier for the image from which the data on this volume was most directly provisioned.
    sourceSnapshotId string
    sourceSnapshotRemoteRegionName string
    sourceVolume string
    tag string
    id str
    (String) The unique identifier for the source snapshot.
    snapshots Sequence[GetIsSnapshotsSnapshot]
    (List) List of snapshots in the IBM Cloud Infrastructure.
    backup_policy_plan_id str
    name str
    (String) The globally unique name for this region.
    resource_group str
    snapshot_consistency_group_crn str
    snapshot_consistency_group_id str
    snapshot_copies_crn str
    snapshot_copies_id str
    snapshot_copies_name str
    snapshot_copies_remote_region_name str
    snapshot_source_volume_remote_region_name str
    source_image str
    (String) If present, the unique identifier for the image from which the data on this volume was most directly provisioned.
    source_snapshot_id str
    source_snapshot_remote_region_name str
    source_volume str
    tag str
    id String
    (String) The unique identifier for the source snapshot.
    snapshots List<Property Map>
    (List) List of snapshots in the IBM Cloud Infrastructure.
    backupPolicyPlanId String
    name String
    (String) The globally unique name for this region.
    resourceGroup String
    snapshotConsistencyGroupCrn String
    snapshotConsistencyGroupId String
    snapshotCopiesCrn String
    snapshotCopiesId String
    snapshotCopiesName String
    snapshotCopiesRemoteRegionName String
    snapshotSourceVolumeRemoteRegionName String
    sourceImage String
    (String) If present, the unique identifier for the image from which the data on this volume was most directly provisioned.
    sourceSnapshotId String
    sourceSnapshotRemoteRegionName String
    sourceVolume String
    tag String

    Supporting Types

    GetIsSnapshotsSnapshot

    AccessTags List<string>
    (Array of Strings) Access management tags associated with the snapshot.
    BackupPolicyPlans List<GetIsSnapshotsSnapshotBackupPolicyPlan>
    (List) If present, the backup policy plan which created this snapshot.
    Bootable bool
    (Bool) Indicates if a boot volume attachment can be created with a volume created from this snapshot.
    CapturedAt string
    (String) The date and time that this snapshot was captured.
    CatalogOfferings List<GetIsSnapshotsSnapshotCatalogOffering>
    (List) The catalog offering inherited from the snapshot's source. If a virtual server instance is provisioned with a source_snapshot specifying this snapshot, the virtual server instance will use this snapshot's catalog offering, including its pricing plan. If absent, this snapshot is not associated with a catalog offering.
    Clones List<string>
    (List) The list of zones where clones of this snapshot exist.
    Copies List<GetIsSnapshotsSnapshotCopy>
    (List) The copies of this snapshot in other regions.
    Crn string
    (String) The CRN of the source snapshot.
    Encryption string
    (String) The type of encryption used on the source volume. Supported values are provider_managed, user_managed ]).
    EncryptionKey string
    (String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Services Root Key for this resource. The root key used to wrap the data encryption key for the source volume. This property will be present for volumes with an encryption type of user_managed.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    LifecycleState string
    (String) The lifecycle state of this snapshot. Supported values are deleted, deleting, failed, pending, stable, updating, waiting, suspended.
    MinimumCapacity double
    (Integer) The minimum capacity of a volume created from this snapshot. When a snapshot is created, this will be set to the capacity of the source_volume.
    Name string
    Filter snapshot collection by name of the snapshot.
    OperatingSystem string
    (String) The globally unique name for the operating system included in this image.
    ResourceGroup string
    Filter snapshot collection by resource group id of the snapshot.
    ResourceType string
    (String) The resource type.
    ServiceTags List<string>
    (List) The service tags prefixed with is.snapshot: associated with this snapshot.
    Size double
    (Integer) The size of this snapshot rounded up to the next gigabyte.
    SnapshotConsistencyGroups List<GetIsSnapshotsSnapshotSnapshotConsistencyGroup>
    (List) The snapshot consistency group which created this snapshot.
    SourceImage string
    Filter snapshot collection by source image of the snapshot.
    SourceSnapshots List<GetIsSnapshotsSnapshotSourceSnapshot>
    (String) If present, the source snapshot this snapshot was created from.
    SourceVolume string
    Filter snapshot collection by source volume of the snapshot.
    Tags List<string>
    (String) Tags associated with the snapshot.
    AccessTags []string
    (Array of Strings) Access management tags associated with the snapshot.
    BackupPolicyPlans []GetIsSnapshotsSnapshotBackupPolicyPlan
    (List) If present, the backup policy plan which created this snapshot.
    Bootable bool
    (Bool) Indicates if a boot volume attachment can be created with a volume created from this snapshot.
    CapturedAt string
    (String) The date and time that this snapshot was captured.
    CatalogOfferings []GetIsSnapshotsSnapshotCatalogOffering
    (List) The catalog offering inherited from the snapshot's source. If a virtual server instance is provisioned with a source_snapshot specifying this snapshot, the virtual server instance will use this snapshot's catalog offering, including its pricing plan. If absent, this snapshot is not associated with a catalog offering.
    Clones []string
    (List) The list of zones where clones of this snapshot exist.
    Copies []GetIsSnapshotsSnapshotCopy
    (List) The copies of this snapshot in other regions.
    Crn string
    (String) The CRN of the source snapshot.
    Encryption string
    (String) The type of encryption used on the source volume. Supported values are provider_managed, user_managed ]).
    EncryptionKey string
    (String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Services Root Key for this resource. The root key used to wrap the data encryption key for the source volume. This property will be present for volumes with an encryption type of user_managed.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    LifecycleState string
    (String) The lifecycle state of this snapshot. Supported values are deleted, deleting, failed, pending, stable, updating, waiting, suspended.
    MinimumCapacity float64
    (Integer) The minimum capacity of a volume created from this snapshot. When a snapshot is created, this will be set to the capacity of the source_volume.
    Name string
    Filter snapshot collection by name of the snapshot.
    OperatingSystem string
    (String) The globally unique name for the operating system included in this image.
    ResourceGroup string
    Filter snapshot collection by resource group id of the snapshot.
    ResourceType string
    (String) The resource type.
    ServiceTags []string
    (List) The service tags prefixed with is.snapshot: associated with this snapshot.
    Size float64
    (Integer) The size of this snapshot rounded up to the next gigabyte.
    SnapshotConsistencyGroups []GetIsSnapshotsSnapshotSnapshotConsistencyGroup
    (List) The snapshot consistency group which created this snapshot.
    SourceImage string
    Filter snapshot collection by source image of the snapshot.
    SourceSnapshots []GetIsSnapshotsSnapshotSourceSnapshot
    (String) If present, the source snapshot this snapshot was created from.
    SourceVolume string
    Filter snapshot collection by source volume of the snapshot.
    Tags []string
    (String) Tags associated with the snapshot.
    accessTags List<String>
    (Array of Strings) Access management tags associated with the snapshot.
    backupPolicyPlans List<GetIsSnapshotsSnapshotBackupPolicyPlan>
    (List) If present, the backup policy plan which created this snapshot.
    bootable Boolean
    (Bool) Indicates if a boot volume attachment can be created with a volume created from this snapshot.
    capturedAt String
    (String) The date and time that this snapshot was captured.
    catalogOfferings List<GetIsSnapshotsSnapshotCatalogOffering>
    (List) The catalog offering inherited from the snapshot's source. If a virtual server instance is provisioned with a source_snapshot specifying this snapshot, the virtual server instance will use this snapshot's catalog offering, including its pricing plan. If absent, this snapshot is not associated with a catalog offering.
    clones List<String>
    (List) The list of zones where clones of this snapshot exist.
    copies List<GetIsSnapshotsSnapshotCopy>
    (List) The copies of this snapshot in other regions.
    crn String
    (String) The CRN of the source snapshot.
    encryption String
    (String) The type of encryption used on the source volume. Supported values are provider_managed, user_managed ]).
    encryptionKey String
    (String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Services Root Key for this resource. The root key used to wrap the data encryption key for the source volume. This property will be present for volumes with an encryption type of user_managed.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    lifecycleState String
    (String) The lifecycle state of this snapshot. Supported values are deleted, deleting, failed, pending, stable, updating, waiting, suspended.
    minimumCapacity Double
    (Integer) The minimum capacity of a volume created from this snapshot. When a snapshot is created, this will be set to the capacity of the source_volume.
    name String
    Filter snapshot collection by name of the snapshot.
    operatingSystem String
    (String) The globally unique name for the operating system included in this image.
    resourceGroup String
    Filter snapshot collection by resource group id of the snapshot.
    resourceType String
    (String) The resource type.
    serviceTags List<String>
    (List) The service tags prefixed with is.snapshot: associated with this snapshot.
    size Double
    (Integer) The size of this snapshot rounded up to the next gigabyte.
    snapshotConsistencyGroups List<GetIsSnapshotsSnapshotSnapshotConsistencyGroup>
    (List) The snapshot consistency group which created this snapshot.
    sourceImage String
    Filter snapshot collection by source image of the snapshot.
    sourceSnapshots List<GetIsSnapshotsSnapshotSourceSnapshot>
    (String) If present, the source snapshot this snapshot was created from.
    sourceVolume String
    Filter snapshot collection by source volume of the snapshot.
    tags List<String>
    (String) Tags associated with the snapshot.
    accessTags string[]
    (Array of Strings) Access management tags associated with the snapshot.
    backupPolicyPlans GetIsSnapshotsSnapshotBackupPolicyPlan[]
    (List) If present, the backup policy plan which created this snapshot.
    bootable boolean
    (Bool) Indicates if a boot volume attachment can be created with a volume created from this snapshot.
    capturedAt string
    (String) The date and time that this snapshot was captured.
    catalogOfferings GetIsSnapshotsSnapshotCatalogOffering[]
    (List) The catalog offering inherited from the snapshot's source. If a virtual server instance is provisioned with a source_snapshot specifying this snapshot, the virtual server instance will use this snapshot's catalog offering, including its pricing plan. If absent, this snapshot is not associated with a catalog offering.
    clones string[]
    (List) The list of zones where clones of this snapshot exist.
    copies GetIsSnapshotsSnapshotCopy[]
    (List) The copies of this snapshot in other regions.
    crn string
    (String) The CRN of the source snapshot.
    encryption string
    (String) The type of encryption used on the source volume. Supported values are provider_managed, user_managed ]).
    encryptionKey string
    (String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Services Root Key for this resource. The root key used to wrap the data encryption key for the source volume. This property will be present for volumes with an encryption type of user_managed.
    href string
    (String) The URL for this region.
    id string
    (String) The unique identifier for the source snapshot.
    lifecycleState string
    (String) The lifecycle state of this snapshot. Supported values are deleted, deleting, failed, pending, stable, updating, waiting, suspended.
    minimumCapacity number
    (Integer) The minimum capacity of a volume created from this snapshot. When a snapshot is created, this will be set to the capacity of the source_volume.
    name string
    Filter snapshot collection by name of the snapshot.
    operatingSystem string
    (String) The globally unique name for the operating system included in this image.
    resourceGroup string
    Filter snapshot collection by resource group id of the snapshot.
    resourceType string
    (String) The resource type.
    serviceTags string[]
    (List) The service tags prefixed with is.snapshot: associated with this snapshot.
    size number
    (Integer) The size of this snapshot rounded up to the next gigabyte.
    snapshotConsistencyGroups GetIsSnapshotsSnapshotSnapshotConsistencyGroup[]
    (List) The snapshot consistency group which created this snapshot.
    sourceImage string
    Filter snapshot collection by source image of the snapshot.
    sourceSnapshots GetIsSnapshotsSnapshotSourceSnapshot[]
    (String) If present, the source snapshot this snapshot was created from.
    sourceVolume string
    Filter snapshot collection by source volume of the snapshot.
    tags string[]
    (String) Tags associated with the snapshot.
    access_tags Sequence[str]
    (Array of Strings) Access management tags associated with the snapshot.
    backup_policy_plans Sequence[GetIsSnapshotsSnapshotBackupPolicyPlan]
    (List) If present, the backup policy plan which created this snapshot.
    bootable bool
    (Bool) Indicates if a boot volume attachment can be created with a volume created from this snapshot.
    captured_at str
    (String) The date and time that this snapshot was captured.
    catalog_offerings Sequence[GetIsSnapshotsSnapshotCatalogOffering]
    (List) The catalog offering inherited from the snapshot's source. If a virtual server instance is provisioned with a source_snapshot specifying this snapshot, the virtual server instance will use this snapshot's catalog offering, including its pricing plan. If absent, this snapshot is not associated with a catalog offering.
    clones Sequence[str]
    (List) The list of zones where clones of this snapshot exist.
    copies Sequence[GetIsSnapshotsSnapshotCopy]
    (List) The copies of this snapshot in other regions.
    crn str
    (String) The CRN of the source snapshot.
    encryption str
    (String) The type of encryption used on the source volume. Supported values are provider_managed, user_managed ]).
    encryption_key str
    (String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Services Root Key for this resource. The root key used to wrap the data encryption key for the source volume. This property will be present for volumes with an encryption type of user_managed.
    href str
    (String) The URL for this region.
    id str
    (String) The unique identifier for the source snapshot.
    lifecycle_state str
    (String) The lifecycle state of this snapshot. Supported values are deleted, deleting, failed, pending, stable, updating, waiting, suspended.
    minimum_capacity float
    (Integer) The minimum capacity of a volume created from this snapshot. When a snapshot is created, this will be set to the capacity of the source_volume.
    name str
    Filter snapshot collection by name of the snapshot.
    operating_system str
    (String) The globally unique name for the operating system included in this image.
    resource_group str
    Filter snapshot collection by resource group id of the snapshot.
    resource_type str
    (String) The resource type.
    service_tags Sequence[str]
    (List) The service tags prefixed with is.snapshot: associated with this snapshot.
    size float
    (Integer) The size of this snapshot rounded up to the next gigabyte.
    snapshot_consistency_groups Sequence[GetIsSnapshotsSnapshotSnapshotConsistencyGroup]
    (List) The snapshot consistency group which created this snapshot.
    source_image str
    Filter snapshot collection by source image of the snapshot.
    source_snapshots Sequence[GetIsSnapshotsSnapshotSourceSnapshot]
    (String) If present, the source snapshot this snapshot was created from.
    source_volume str
    Filter snapshot collection by source volume of the snapshot.
    tags Sequence[str]
    (String) Tags associated with the snapshot.
    accessTags List<String>
    (Array of Strings) Access management tags associated with the snapshot.
    backupPolicyPlans List<Property Map>
    (List) If present, the backup policy plan which created this snapshot.
    bootable Boolean
    (Bool) Indicates if a boot volume attachment can be created with a volume created from this snapshot.
    capturedAt String
    (String) The date and time that this snapshot was captured.
    catalogOfferings List<Property Map>
    (List) The catalog offering inherited from the snapshot's source. If a virtual server instance is provisioned with a source_snapshot specifying this snapshot, the virtual server instance will use this snapshot's catalog offering, including its pricing plan. If absent, this snapshot is not associated with a catalog offering.
    clones List<String>
    (List) The list of zones where clones of this snapshot exist.
    copies List<Property Map>
    (List) The copies of this snapshot in other regions.
    crn String
    (String) The CRN of the source snapshot.
    encryption String
    (String) The type of encryption used on the source volume. Supported values are provider_managed, user_managed ]).
    encryptionKey String
    (String) The CRN of the Key Protect Root Key or Hyper Protect Crypto Services Root Key for this resource. The root key used to wrap the data encryption key for the source volume. This property will be present for volumes with an encryption type of user_managed.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    lifecycleState String
    (String) The lifecycle state of this snapshot. Supported values are deleted, deleting, failed, pending, stable, updating, waiting, suspended.
    minimumCapacity Number
    (Integer) The minimum capacity of a volume created from this snapshot. When a snapshot is created, this will be set to the capacity of the source_volume.
    name String
    Filter snapshot collection by name of the snapshot.
    operatingSystem String
    (String) The globally unique name for the operating system included in this image.
    resourceGroup String
    Filter snapshot collection by resource group id of the snapshot.
    resourceType String
    (String) The resource type.
    serviceTags List<String>
    (List) The service tags prefixed with is.snapshot: associated with this snapshot.
    size Number
    (Integer) The size of this snapshot rounded up to the next gigabyte.
    snapshotConsistencyGroups List<Property Map>
    (List) The snapshot consistency group which created this snapshot.
    sourceImage String
    Filter snapshot collection by source image of the snapshot.
    sourceSnapshots List<Property Map>
    (String) If present, the source snapshot this snapshot was created from.
    sourceVolume String
    Filter snapshot collection by source volume of the snapshot.
    tags List<String>
    (String) Tags associated with the snapshot.

    GetIsSnapshotsSnapshotBackupPolicyPlan

    Deleteds List<GetIsSnapshotsSnapshotBackupPolicyPlanDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    ResourceType string
    (String) The resource type.
    Deleteds []GetIsSnapshotsSnapshotBackupPolicyPlanDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    ResourceType string
    (String) The resource type.
    deleteds List<GetIsSnapshotsSnapshotBackupPolicyPlanDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    resourceType String
    (String) The resource type.
    deleteds GetIsSnapshotsSnapshotBackupPolicyPlanDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (String) The URL for this region.
    id string
    (String) The unique identifier for the source snapshot.
    name string
    Filter snapshot collection by name of the snapshot.
    resourceType string
    (String) The resource type.
    deleteds Sequence[GetIsSnapshotsSnapshotBackupPolicyPlanDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (String) The URL for this region.
    id str
    (String) The unique identifier for the source snapshot.
    name str
    Filter snapshot collection by name of the snapshot.
    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
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    resourceType String
    (String) The resource type.

    GetIsSnapshotsSnapshotBackupPolicyPlanDeleted

    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.

    GetIsSnapshotsSnapshotCatalogOffering

    Deleteds List<GetIsSnapshotsSnapshotCatalogOfferingDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    PlanCrn string
    (String) The CRN for this catalog offering version's billing plan
    VersionCrn string
    (String) The CRN for this version of a catalog offering
    Deleteds []GetIsSnapshotsSnapshotCatalogOfferingDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    PlanCrn string
    (String) The CRN for this catalog offering version's billing plan
    VersionCrn string
    (String) The CRN for this version of a catalog offering
    deleteds List<GetIsSnapshotsSnapshotCatalogOfferingDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    planCrn String
    (String) The CRN for this catalog offering version's billing plan
    versionCrn String
    (String) The CRN for this version of a catalog offering
    deleteds GetIsSnapshotsSnapshotCatalogOfferingDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    planCrn string
    (String) The CRN for this catalog offering version's billing plan
    versionCrn string
    (String) The CRN for this version of a catalog offering
    deleteds Sequence[GetIsSnapshotsSnapshotCatalogOfferingDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    plan_crn str
    (String) The CRN for this catalog offering version's billing plan
    version_crn str
    (String) The CRN for this version of a catalog offering
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    planCrn String
    (String) The CRN for this catalog offering version's billing plan
    versionCrn String
    (String) The CRN for this version of a catalog offering

    GetIsSnapshotsSnapshotCatalogOfferingDeleted

    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.

    GetIsSnapshotsSnapshotCopy

    Crn string
    (String) The CRN of the source snapshot.
    Deleteds List<GetIsSnapshotsSnapshotCopyDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    Remotes List<GetIsSnapshotsSnapshotCopyRemote>
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The CRN of the source snapshot.
    Deleteds []GetIsSnapshotsSnapshotCopyDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    Remotes []GetIsSnapshotsSnapshotCopyRemote
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    ResourceType string
    (String) The resource type.
    crn String
    (String) The CRN of the source snapshot.
    deleteds List<GetIsSnapshotsSnapshotCopyDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    remotes List<GetIsSnapshotsSnapshotCopyRemote>
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    resourceType String
    (String) The resource type.
    crn string
    (String) The CRN of the source snapshot.
    deleteds GetIsSnapshotsSnapshotCopyDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (String) The URL for this region.
    id string
    (String) The unique identifier for the source snapshot.
    name string
    Filter snapshot collection by name of the snapshot.
    remotes GetIsSnapshotsSnapshotCopyRemote[]
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    resourceType string
    (String) The resource type.
    crn str
    (String) The CRN of the source snapshot.
    deleteds Sequence[GetIsSnapshotsSnapshotCopyDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (String) The URL for this region.
    id str
    (String) The unique identifier for the source snapshot.
    name str
    Filter snapshot collection by name of the snapshot.
    remotes Sequence[GetIsSnapshotsSnapshotCopyRemote]
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    resource_type str
    (String) The resource type.
    crn String
    (String) The CRN of the source snapshot.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    remotes List<Property Map>
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    resourceType String
    (String) The resource type.

    GetIsSnapshotsSnapshotCopyDeleted

    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.

    GetIsSnapshotsSnapshotCopyRemote

    Href string
    (String) The URL for this region.
    Name string
    Filter snapshot collection by name of the snapshot.
    Href string
    (String) The URL for this region.
    Name string
    Filter snapshot collection by name of the snapshot.
    href String
    (String) The URL for this region.
    name String
    Filter snapshot collection by name of the snapshot.
    href string
    (String) The URL for this region.
    name string
    Filter snapshot collection by name of the snapshot.
    href str
    (String) The URL for this region.
    name str
    Filter snapshot collection by name of the snapshot.
    href String
    (String) The URL for this region.
    name String
    Filter snapshot collection by name of the snapshot.

    GetIsSnapshotsSnapshotSnapshotConsistencyGroup

    Crn string
    (String) The CRN of the source snapshot.
    Deleteds List<GetIsSnapshotsSnapshotSnapshotConsistencyGroupDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The CRN of the source snapshot.
    Deleteds []GetIsSnapshotsSnapshotSnapshotConsistencyGroupDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    ResourceType string
    (String) The resource type.
    crn String
    (String) The CRN of the source snapshot.
    deleteds List<GetIsSnapshotsSnapshotSnapshotConsistencyGroupDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    resourceType String
    (String) The resource type.
    crn string
    (String) The CRN of the source snapshot.
    deleteds GetIsSnapshotsSnapshotSnapshotConsistencyGroupDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (String) The URL for this region.
    id string
    (String) The unique identifier for the source snapshot.
    name string
    Filter snapshot collection by name of the snapshot.
    resourceType string
    (String) The resource type.
    crn str
    (String) The CRN of the source snapshot.
    deleteds Sequence[GetIsSnapshotsSnapshotSnapshotConsistencyGroupDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (String) The URL for this region.
    id str
    (String) The unique identifier for the source snapshot.
    name str
    Filter snapshot collection by name of the snapshot.
    resource_type str
    (String) The resource type.
    crn String
    (String) The CRN of the source snapshot.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    resourceType String
    (String) The resource type.

    GetIsSnapshotsSnapshotSnapshotConsistencyGroupDeleted

    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.

    GetIsSnapshotsSnapshotSourceSnapshot

    Crn string
    (String) The CRN of the source snapshot.
    Deleteds List<GetIsSnapshotsSnapshotSourceSnapshotDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    Remotes List<GetIsSnapshotsSnapshotSourceSnapshotRemote>
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The CRN of the source snapshot.
    Deleteds []GetIsSnapshotsSnapshotSourceSnapshotDeleted
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for the source snapshot.
    Name string
    Filter snapshot collection by name of the snapshot.
    Remotes []GetIsSnapshotsSnapshotSourceSnapshotRemote
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    ResourceType string
    (String) The resource type.
    crn String
    (String) The CRN of the source snapshot.
    deleteds List<GetIsSnapshotsSnapshotSourceSnapshotDeleted>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    remotes List<GetIsSnapshotsSnapshotSourceSnapshotRemote>
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    resourceType String
    (String) The resource type.
    crn string
    (String) The CRN of the source snapshot.
    deleteds GetIsSnapshotsSnapshotSourceSnapshotDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href string
    (String) The URL for this region.
    id string
    (String) The unique identifier for the source snapshot.
    name string
    Filter snapshot collection by name of the snapshot.
    remotes GetIsSnapshotsSnapshotSourceSnapshotRemote[]
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    resourceType string
    (String) The resource type.
    crn str
    (String) The CRN of the source snapshot.
    deleteds Sequence[GetIsSnapshotsSnapshotSourceSnapshotDeleted]
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href str
    (String) The URL for this region.
    id str
    (String) The unique identifier for the source snapshot.
    name str
    Filter snapshot collection by name of the snapshot.
    remotes Sequence[GetIsSnapshotsSnapshotSourceSnapshotRemote]
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    resource_type str
    (String) The resource type.
    crn String
    (String) The CRN of the source snapshot.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted and provides some supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for the source snapshot.
    name String
    Filter snapshot collection by name of the snapshot.
    remotes List<Property Map>
    (List) If present, this property indicates the referenced resource is remote to this region,and identifies the native region.
    resourceType String
    (String) The resource type.

    GetIsSnapshotsSnapshotSourceSnapshotDeleted

    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.

    GetIsSnapshotsSnapshotSourceSnapshotRemote

    Href string
    (String) The URL for this region.
    Name string
    Filter snapshot collection by name of the snapshot.
    Href string
    (String) The URL for this region.
    Name string
    Filter snapshot collection by name of the snapshot.
    href String
    (String) The URL for this region.
    name String
    Filter snapshot collection by name of the snapshot.
    href string
    (String) The URL for this region.
    name string
    Filter snapshot collection by name of the snapshot.
    href str
    (String) The URL for this region.
    name str
    Filter snapshot collection by name of the snapshot.
    href String
    (String) The URL for this region.
    name String
    Filter snapshot collection by name of the snapshot.

    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