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

ibm.getIsSnapshotConsistencyGroups

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 to retrieve information about a SnapshotConsistencyGroupCollection. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    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 isSnapshotConsistencyGroups = ibm.getIsSnapshotConsistencyGroups({
        name: "example-snapshot-consistency-group",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    is_snapshot_consistency_groups = ibm.get_is_snapshot_consistency_groups(name="example-snapshot-consistency-group")
    
    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.GetIsSnapshotConsistencyGroups(ctx, &ibm.GetIsSnapshotConsistencyGroupsArgs{
    			Name: pulumi.StringRef("example-snapshot-consistency-group"),
    		}, 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 isSnapshotConsistencyGroups = Ibm.GetIsSnapshotConsistencyGroups.Invoke(new()
        {
            Name = "example-snapshot-consistency-group",
        });
    
    });
    
    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.GetIsSnapshotConsistencyGroupsArgs;
    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 isSnapshotConsistencyGroups = IbmFunctions.getIsSnapshotConsistencyGroups(GetIsSnapshotConsistencyGroupsArgs.builder()
                .name("example-snapshot-consistency-group")
                .build());
    
        }
    }
    
    variables:
      isSnapshotConsistencyGroups:
        fn::invoke:
          function: ibm:getIsSnapshotConsistencyGroups
          arguments:
            name: example-snapshot-consistency-group
    

    Using getIsSnapshotConsistencyGroups

    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 getIsSnapshotConsistencyGroups(args: GetIsSnapshotConsistencyGroupsArgs, opts?: InvokeOptions): Promise<GetIsSnapshotConsistencyGroupsResult>
    function getIsSnapshotConsistencyGroupsOutput(args: GetIsSnapshotConsistencyGroupsOutputArgs, opts?: InvokeOptions): Output<GetIsSnapshotConsistencyGroupsResult>
    def get_is_snapshot_consistency_groups(backup_policy_plan: Optional[str] = None,
                                           id: Optional[str] = None,
                                           name: Optional[str] = None,
                                           resource_group: Optional[str] = None,
                                           opts: Optional[InvokeOptions] = None) -> GetIsSnapshotConsistencyGroupsResult
    def get_is_snapshot_consistency_groups_output(backup_policy_plan: Optional[pulumi.Input[str]] = None,
                                           id: Optional[pulumi.Input[str]] = None,
                                           name: Optional[pulumi.Input[str]] = None,
                                           resource_group: Optional[pulumi.Input[str]] = None,
                                           opts: Optional[InvokeOptions] = None) -> Output[GetIsSnapshotConsistencyGroupsResult]
    func GetIsSnapshotConsistencyGroups(ctx *Context, args *GetIsSnapshotConsistencyGroupsArgs, opts ...InvokeOption) (*GetIsSnapshotConsistencyGroupsResult, error)
    func GetIsSnapshotConsistencyGroupsOutput(ctx *Context, args *GetIsSnapshotConsistencyGroupsOutputArgs, opts ...InvokeOption) GetIsSnapshotConsistencyGroupsResultOutput

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

    public static class GetIsSnapshotConsistencyGroups 
    {
        public static Task<GetIsSnapshotConsistencyGroupsResult> InvokeAsync(GetIsSnapshotConsistencyGroupsArgs args, InvokeOptions? opts = null)
        public static Output<GetIsSnapshotConsistencyGroupsResult> Invoke(GetIsSnapshotConsistencyGroupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIsSnapshotConsistencyGroupsResult> getIsSnapshotConsistencyGroups(GetIsSnapshotConsistencyGroupsArgs args, InvokeOptions options)
    public static Output<GetIsSnapshotConsistencyGroupsResult> getIsSnapshotConsistencyGroups(GetIsSnapshotConsistencyGroupsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getIsSnapshotConsistencyGroups:getIsSnapshotConsistencyGroups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    BackupPolicyPlan string
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    Id string
    (String) The unique identifier for this snapshot.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    ResourceGroup string
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    BackupPolicyPlan string
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    Id string
    (String) The unique identifier for this snapshot.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    ResourceGroup string
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    backupPolicyPlan String
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    id String
    (String) The unique identifier for this snapshot.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    resourceGroup String
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    backupPolicyPlan string
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    id string
    (String) The unique identifier for this snapshot.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    resourceGroup string
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    backup_policy_plan str
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    id str
    (String) The unique identifier for this snapshot.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    resource_group str
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    backupPolicyPlan String
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    id String
    (String) The unique identifier for this snapshot.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    resourceGroup String
    Filters the collection to resources with a resource_group.id property matching the specified identifier.

    getIsSnapshotConsistencyGroups Result

    The following output properties are available:

    Id string
    (String) The unique identifier for this snapshot.
    SnapshotConsistencyGroups List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroup>
    (List) Collection of snapshot consistency groups.
    BackupPolicyPlan string
    (List) If present, the backup policy plan which created this snapshot consistency group. Nested schema for backup_policy_plan:
    Name string
    (String) The globally unique name for this region.
    ResourceGroup string
    (List) The resource group identifier for this snapshot consistency group.
    Id string
    (String) The unique identifier for this snapshot.
    SnapshotConsistencyGroups []GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroup
    (List) Collection of snapshot consistency groups.
    BackupPolicyPlan string
    (List) If present, the backup policy plan which created this snapshot consistency group. Nested schema for backup_policy_plan:
    Name string
    (String) The globally unique name for this region.
    ResourceGroup string
    (List) The resource group identifier for this snapshot consistency group.
    id String
    (String) The unique identifier for this snapshot.
    snapshotConsistencyGroups List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroup>
    (List) Collection of snapshot consistency groups.
    backupPolicyPlan String
    (List) If present, the backup policy plan which created this snapshot consistency group. Nested schema for backup_policy_plan:
    name String
    (String) The globally unique name for this region.
    resourceGroup String
    (List) The resource group identifier for this snapshot consistency group.
    id string
    (String) The unique identifier for this snapshot.
    snapshotConsistencyGroups GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroup[]
    (List) Collection of snapshot consistency groups.
    backupPolicyPlan string
    (List) If present, the backup policy plan which created this snapshot consistency group. Nested schema for backup_policy_plan:
    name string
    (String) The globally unique name for this region.
    resourceGroup string
    (List) The resource group identifier for this snapshot consistency group.
    id str
    (String) The unique identifier for this snapshot.
    snapshot_consistency_groups Sequence[GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroup]
    (List) Collection of snapshot consistency groups.
    backup_policy_plan str
    (List) If present, the backup policy plan which created this snapshot consistency group. Nested schema for backup_policy_plan:
    name str
    (String) The globally unique name for this region.
    resource_group str
    (List) The resource group identifier for this snapshot consistency group.
    id String
    (String) The unique identifier for this snapshot.
    snapshotConsistencyGroups List<Property Map>
    (List) Collection of snapshot consistency groups.
    backupPolicyPlan String
    (List) If present, the backup policy plan which created this snapshot consistency group. Nested schema for backup_policy_plan:
    name String
    (String) The globally unique name for this region.
    resourceGroup String
    (List) The resource group identifier for this snapshot consistency group.

    Supporting Types

    GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroup

    AccessTags List<string>
    BackupPolicyPlans List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlan>
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    CreatedAt string
    (String) The date and time that this snapshot consistency group was created.
    Crn string
    (String) The CRN of this snapshot.
    DeleteSnapshotsOnDelete bool
    (Boolean) Indicates whether deleting the snapshot consistency group will also delete the snapshots in the group.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for this snapshot.
    LifecycleState string
    (String) The lifecycle state of this snapshot consistency group.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    ResourceGroup string
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    ResourceType string
    (String) The resource type.
    ServiceTags List<string>
    (List) The service tagsis.instance: prefix associated with this snapshot consistency group.
    Snapshots List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshot>
    (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
    Tags List<string>
    AccessTags []string
    BackupPolicyPlans []GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlan
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    CreatedAt string
    (String) The date and time that this snapshot consistency group was created.
    Crn string
    (String) The CRN of this snapshot.
    DeleteSnapshotsOnDelete bool
    (Boolean) Indicates whether deleting the snapshot consistency group will also delete the snapshots in the group.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for this snapshot.
    LifecycleState string
    (String) The lifecycle state of this snapshot consistency group.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    ResourceGroup string
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    ResourceType string
    (String) The resource type.
    ServiceTags []string
    (List) The service tagsis.instance: prefix associated with this snapshot consistency group.
    Snapshots []GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshot
    (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
    Tags []string
    accessTags List<String>
    backupPolicyPlans List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlan>
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    createdAt String
    (String) The date and time that this snapshot consistency group was created.
    crn String
    (String) The CRN of this snapshot.
    deleteSnapshotsOnDelete Boolean
    (Boolean) Indicates whether deleting the snapshot consistency group will also delete the snapshots in the group.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for this snapshot.
    lifecycleState String
    (String) The lifecycle state of this snapshot consistency group.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    resourceGroup String
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    resourceType String
    (String) The resource type.
    serviceTags List<String>
    (List) The service tagsis.instance: prefix associated with this snapshot consistency group.
    snapshots List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshot>
    (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
    tags List<String>
    accessTags string[]
    backupPolicyPlans GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlan[]
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    createdAt string
    (String) The date and time that this snapshot consistency group was created.
    crn string
    (String) The CRN of this snapshot.
    deleteSnapshotsOnDelete boolean
    (Boolean) Indicates whether deleting the snapshot consistency group will also delete the snapshots in the group.
    href string
    (String) The URL for this region.
    id string
    (String) The unique identifier for this snapshot.
    lifecycleState string
    (String) The lifecycle state of this snapshot consistency group.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    resourceGroup string
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    resourceType string
    (String) The resource type.
    serviceTags string[]
    (List) The service tagsis.instance: prefix associated with this snapshot consistency group.
    snapshots GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshot[]
    (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
    tags string[]
    access_tags Sequence[str]
    backup_policy_plans Sequence[GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlan]
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    created_at str
    (String) The date and time that this snapshot consistency group was created.
    crn str
    (String) The CRN of this snapshot.
    delete_snapshots_on_delete bool
    (Boolean) Indicates whether deleting the snapshot consistency group will also delete the snapshots in the group.
    href str
    (String) The URL for this region.
    id str
    (String) The unique identifier for this snapshot.
    lifecycle_state str
    (String) The lifecycle state of this snapshot consistency group.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    resource_group str
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    resource_type str
    (String) The resource type.
    service_tags Sequence[str]
    (List) The service tagsis.instance: prefix associated with this snapshot consistency group.
    snapshots Sequence[GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshot]
    (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
    tags Sequence[str]
    accessTags List<String>
    backupPolicyPlans List<Property Map>
    Filters the collection to backup policy jobs with a backup_policy_plan.id property matching the specified identifier.
    createdAt String
    (String) The date and time that this snapshot consistency group was created.
    crn String
    (String) The CRN of this snapshot.
    deleteSnapshotsOnDelete Boolean
    (Boolean) Indicates whether deleting the snapshot consistency group will also delete the snapshots in the group.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for this snapshot.
    lifecycleState String
    (String) The lifecycle state of this snapshot consistency group.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    resourceGroup String
    Filters the collection to resources with a resource_group.id property matching the specified identifier.
    resourceType String
    (String) The resource type.
    serviceTags List<String>
    (List) The service tagsis.instance: prefix associated with this snapshot consistency group.
    snapshots List<Property Map>
    (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
    tags List<String>

    GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlan

    Deleteds List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for this snapshot.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Remotes List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanRemote>
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    ResourceType string
    (String) The resource type.
    Deleteds []GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for this snapshot.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Remotes []GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanRemote
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    ResourceType string
    (String) The resource type.
    deleteds List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for this snapshot.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    remotes List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanRemote>
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    resourceType String
    (String) The resource type.
    deleteds GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    href string
    (String) The URL for this region.
    id string
    (String) The unique identifier for this snapshot.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    remotes GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanRemote[]
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    resourceType string
    (String) The resource type.
    deleteds Sequence[GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    href str
    (String) The URL for this region.
    id str
    (String) The unique identifier for this snapshot.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    remotes Sequence[GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanRemote]
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    resource_type str
    (String) The resource type.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for this snapshot.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    remotes List<Property Map>
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    resourceType String
    (String) The resource type.

    GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanDeleted

    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.

    GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanRemote

    Href string
    (String) The URL for this region.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Href string
    (String) The URL for this region.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    href String
    (String) The URL for this region.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    href string
    (String) The URL for this region.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    href str
    (String) The URL for this region.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    href String
    (String) The URL for this region.
    name String
    Filters the collection to resources with a name property matching the exact specified name.

    GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshot

    Crn string
    (String) The CRN of this snapshot.
    Deleteds List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for this snapshot.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Remotes List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotRemote>
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    ResourceType string
    (String) The resource type.
    Crn string
    (String) The CRN of this snapshot.
    Deleteds []GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    Href string
    (String) The URL for this region.
    Id string
    (String) The unique identifier for this snapshot.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Remotes []GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotRemote
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    ResourceType string
    (String) The resource type.
    crn String
    (String) The CRN of this snapshot.
    deleteds List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for this snapshot.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    remotes List<GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotRemote>
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    resourceType String
    (String) The resource type.
    crn string
    (String) The CRN of this snapshot.
    deleteds GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    href string
    (String) The URL for this region.
    id string
    (String) The unique identifier for this snapshot.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    remotes GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotRemote[]
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    resourceType string
    (String) The resource type.
    crn str
    (String) The CRN of this snapshot.
    deleteds Sequence[GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    href str
    (String) The URL for this region.
    id str
    (String) The unique identifier for this snapshot.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    remotes Sequence[GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotRemote]
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    resource_type str
    (String) The resource type.
    crn String
    (String) The CRN of this snapshot.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information.
    href String
    (String) The URL for this region.
    id String
    (String) The unique identifier for this snapshot.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    remotes List<Property Map>
    (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
    resourceType String
    (String) The resource type.

    GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotDeleted

    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.

    GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotRemote

    Href string
    (String) The URL for this region.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Href string
    (String) The URL for this region.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    href String
    (String) The URL for this region.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    href string
    (String) The URL for this region.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    href str
    (String) The URL for this region.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    href String
    (String) The URL for this region.
    name String
    Filters the collection to resources with a name property matching the exact specified name.

    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