published on Friday, Jun 19, 2026 by ibm-cloud
published on Friday, Jun 19, 2026 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 coming soon!
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/v2/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
Example coming soon!
Example: Filter by backup policy job
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const isSnapshotConsistencyGroups = ibm.getIsSnapshotConsistencyGroups({
backupPolicyJob: "r006-fc4b7fbc-38af-45d9-9fb6-bf0533acbfc4",
});
import pulumi
import pulumi_ibm as ibm
is_snapshot_consistency_groups = ibm.get_is_snapshot_consistency_groups(backup_policy_job="r006-fc4b7fbc-38af-45d9-9fb6-bf0533acbfc4")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/v2/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetIsSnapshotConsistencyGroups(ctx, &ibm.GetIsSnapshotConsistencyGroupsArgs{
BackupPolicyJob: pulumi.StringRef("r006-fc4b7fbc-38af-45d9-9fb6-bf0533acbfc4"),
}, 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()
{
BackupPolicyJob = "r006-fc4b7fbc-38af-45d9-9fb6-bf0533acbfc4",
});
});
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()
.backupPolicyJob("r006-fc4b7fbc-38af-45d9-9fb6-bf0533acbfc4")
.build());
}
}
variables:
isSnapshotConsistencyGroups:
fn::invoke:
function: ibm:getIsSnapshotConsistencyGroups
arguments:
backupPolicyJob: r006-fc4b7fbc-38af-45d9-9fb6-bf0533acbfc4
Example coming soon!
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_job: Optional[str] = None,
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_job: pulumi.Input[Optional[str]] = None,
backup_policy_plan: pulumi.Input[Optional[str]] = None,
id: pulumi.Input[Optional[str]] = None,
name: pulumi.Input[Optional[str]] = None,
resource_group: pulumi.Input[Optional[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 dictionarydata "ibm_getissnapshotconsistencygroups" "name" {
# arguments
}The following arguments are supported:
- Backup
Policy stringJob - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - Backup
Policy stringPlan - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - Id string
- (String) The unique identifier for this snapshot.
- Name string
- Filters the collection to resources with a
nameproperty matching the exact specified name. - Resource
Group string - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier.
- Backup
Policy stringJob - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - Backup
Policy stringPlan - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - Id string
- (String) The unique identifier for this snapshot.
- Name string
- Filters the collection to resources with a
nameproperty matching the exact specified name. - Resource
Group string - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier.
- backup_
policy_ stringjob - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup_
policy_ stringplan - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - id string
- (String) The unique identifier for this snapshot.
- name string
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource_
group string - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier.
- backup
Policy StringJob - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup
Policy StringPlan - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - id String
- (String) The unique identifier for this snapshot.
- name String
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource
Group String - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier.
- backup
Policy stringJob - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup
Policy stringPlan - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - id string
- (String) The unique identifier for this snapshot.
- name string
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource
Group string - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier.
- backup_
policy_ strjob - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup_
policy_ strplan - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - id str
- (String) The unique identifier for this snapshot.
- name str
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource_
group str - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier.
- backup
Policy StringJob - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup
Policy StringPlan - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - id String
- (String) The unique identifier for this snapshot.
- name String
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource
Group String - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier.
getIsSnapshotConsistencyGroups Result
The following output properties are available:
- Id string
- (String) The unique identifier for this snapshot.
- Snapshot
Consistency List<GetGroups Is Snapshot Consistency Groups Snapshot Consistency Group> - (List) Collection of snapshot consistency groups.
- Backup
Policy stringJob - (List) If present, the backup policy job that created this snapshot consistency group. Snapshot consistency groups with the same backup policy job identifier represent snapshots of the same instance across different storage generations.
Nested schema for
backup_policy_job: - Backup
Policy stringPlan - (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.
- Resource
Group string - (List) The resource group identifier for this snapshot consistency group.
- Id string
- (String) The unique identifier for this snapshot.
- Snapshot
Consistency []GetGroups Is Snapshot Consistency Groups Snapshot Consistency Group - (List) Collection of snapshot consistency groups.
- Backup
Policy stringJob - (List) If present, the backup policy job that created this snapshot consistency group. Snapshot consistency groups with the same backup policy job identifier represent snapshots of the same instance across different storage generations.
Nested schema for
backup_policy_job: - Backup
Policy stringPlan - (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.
- Resource
Group string - (List) The resource group identifier for this snapshot consistency group.
- id string
- (String) The unique identifier for this snapshot.
- snapshot_
consistency_ list(object)groups - (List) Collection of snapshot consistency groups.
- backup_
policy_ stringjob - (List) If present, the backup policy job that created this snapshot consistency group. Snapshot consistency groups with the same backup policy job identifier represent snapshots of the same instance across different storage generations.
Nested schema for
backup_policy_job: - backup_
policy_ stringplan - (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.
- resource_
group string - (List) The resource group identifier for this snapshot consistency group.
- id String
- (String) The unique identifier for this snapshot.
- snapshot
Consistency List<GetGroups Is Snapshot Consistency Groups Snapshot Consistency Group> - (List) Collection of snapshot consistency groups.
- backup
Policy StringJob - (List) If present, the backup policy job that created this snapshot consistency group. Snapshot consistency groups with the same backup policy job identifier represent snapshots of the same instance across different storage generations.
Nested schema for
backup_policy_job: - backup
Policy StringPlan - (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.
- resource
Group String - (List) The resource group identifier for this snapshot consistency group.
- id string
- (String) The unique identifier for this snapshot.
- snapshot
Consistency GetGroups Is Snapshot Consistency Groups Snapshot Consistency Group[] - (List) Collection of snapshot consistency groups.
- backup
Policy stringJob - (List) If present, the backup policy job that created this snapshot consistency group. Snapshot consistency groups with the same backup policy job identifier represent snapshots of the same instance across different storage generations.
Nested schema for
backup_policy_job: - backup
Policy stringPlan - (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.
- resource
Group string - (List) The resource group identifier for this snapshot consistency group.
- id str
- (String) The unique identifier for this snapshot.
- snapshot_
consistency_ Sequence[Getgroups Is Snapshot Consistency Groups Snapshot Consistency Group] - (List) Collection of snapshot consistency groups.
- backup_
policy_ strjob - (List) If present, the backup policy job that created this snapshot consistency group. Snapshot consistency groups with the same backup policy job identifier represent snapshots of the same instance across different storage generations.
Nested schema for
backup_policy_job: - backup_
policy_ strplan - (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.
- snapshot
Consistency List<Property Map>Groups - (List) Collection of snapshot consistency groups.
- backup
Policy StringJob - (List) If present, the backup policy job that created this snapshot consistency group. Snapshot consistency groups with the same backup policy job identifier represent snapshots of the same instance across different storage generations.
Nested schema for
backup_policy_job: - backup
Policy StringPlan - (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.
- resource
Group String - (List) The resource group identifier for this snapshot consistency group.
Supporting Types
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroup
- List<string>
- Backup
Policy List<GetJobs Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job> - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - Backup
Policy List<GetPlans Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan> - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - Created
At string - (String) The date and time that this snapshot consistency group was created.
- Crn string
- (String) The CRN of this snapshot.
- Delete
Snapshots boolOn Delete - (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.
- Lifecycle
State string - (String) The lifecycle state of this snapshot consistency group.
- Name string
- Filters the collection to resources with a
nameproperty matching the exact specified name. - Resource
Group string - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier. - Resource
Type string - (String) The resource type.
- List<string>
- (List) The service tags
is.instance:prefix associated with this snapshot consistency group. - Snapshots
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot> - (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
- List<string>
- []string
- Backup
Policy []GetJobs Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - Backup
Policy []GetPlans Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - Created
At string - (String) The date and time that this snapshot consistency group was created.
- Crn string
- (String) The CRN of this snapshot.
- Delete
Snapshots boolOn Delete - (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.
- Lifecycle
State string - (String) The lifecycle state of this snapshot consistency group.
- Name string
- Filters the collection to resources with a
nameproperty matching the exact specified name. - Resource
Group string - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier. - Resource
Type string - (String) The resource type.
- []string
- (List) The service tags
is.instance:prefix associated with this snapshot consistency group. - Snapshots
[]Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot - (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
- []string
- list(string)
- backup_
policy_ list(object)jobs - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup_
policy_ list(object)plans - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - created_
at string - (String) The date and time that this snapshot consistency group was created.
- crn string
- (String) The CRN of this snapshot.
- delete_
snapshots_ boolon_ delete - (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.
- lifecycle_
state string - (String) The lifecycle state of this snapshot consistency group.
- name string
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource_
group string - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier. - resource_
type string - (String) The resource type.
- list(string)
- (List) The service tags
is.instance:prefix associated with this snapshot consistency group. - snapshots list(object)
- (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
- list(string)
- List<String>
- backup
Policy List<GetJobs Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job> - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup
Policy List<GetPlans Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan> - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - created
At String - (String) The date and time that this snapshot consistency group was created.
- crn String
- (String) The CRN of this snapshot.
- delete
Snapshots BooleanOn Delete - (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.
- lifecycle
State String - (String) The lifecycle state of this snapshot consistency group.
- name String
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource
Group String - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier. - resource
Type String - (String) The resource type.
- List<String>
- (List) The service tags
is.instance:prefix associated with this snapshot consistency group. - snapshots
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot> - (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
- List<String>
- string[]
- backup
Policy GetJobs Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job[] - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup
Policy GetPlans Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan[] - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - created
At string - (String) The date and time that this snapshot consistency group was created.
- crn string
- (String) The CRN of this snapshot.
- delete
Snapshots booleanOn Delete - (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.
- lifecycle
State string - (String) The lifecycle state of this snapshot consistency group.
- name string
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource
Group string - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier. - resource
Type string - (String) The resource type.
- string[]
- (List) The service tags
is.instance:prefix associated with this snapshot consistency group. - snapshots
Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot[] - (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
- string[]
- Sequence[str]
- backup_
policy_ Sequence[Getjobs Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job] - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup_
policy_ Sequence[Getplans Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan] - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty 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_ boolon_ delete - (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
nameproperty matching the exact specified name. - resource_
group str - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier. - resource_
type str - (String) The resource type.
- Sequence[str]
- (List) The service tags
is.instance:prefix associated with this snapshot consistency group. - snapshots
Sequence[Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot] - (List) The member snapshots that are data-consistent with respect to captured time. (may bedeleted).
- Sequence[str]
- List<String>
- backup
Policy List<Property Map>Jobs - Filters the collection to snapshot consistency groups with a
backup_policy_job.idproperty matching the specified identifier. - backup
Policy List<Property Map>Plans - Filters the collection to backup policy jobs with a
backup_policy_plan.idproperty matching the specified identifier. - created
At String - (String) The date and time that this snapshot consistency group was created.
- crn String
- (String) The CRN of this snapshot.
- delete
Snapshots BooleanOn Delete - (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.
- lifecycle
State String - (String) The lifecycle state of this snapshot consistency group.
- name String
- Filters the collection to resources with a
nameproperty matching the exact specified name. - resource
Group String - Filters the collection to resources with a
resource_group.idproperty matching the specified identifier. - resource
Type String - (String) The resource type.
- List<String>
- (List) The service tags
is.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).
- List<String>
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyJob
- Deleteds
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job Deleted> - (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.
- Resource
Type string - (String) The resource type.
- Deleteds
[]Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job Deleted - (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.
- Resource
Type string - (String) The resource type.
- deleteds list(object)
- (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.
- resource_
type string - (String) The resource type.
- deleteds
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job Deleted> - (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.
- resource
Type String - (String) The resource type.
- deleteds
Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job Deleted[] - (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.
- resource
Type string - (String) The resource type.
- deleteds
Sequence[Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Job Deleted] - (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.
- 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.
- resource
Type String - (String) The resource type.
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyJobDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more_
info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlan
- Deleteds
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Deleted> - (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
nameproperty matching the exact specified name. - Remotes
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Remote> - (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- Resource
Type string - (String) The resource type.
- Deleteds
[]Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Deleted - (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
nameproperty matching the exact specified name. - Remotes
[]Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Remote - (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- Resource
Type string - (String) The resource type.
- deleteds list(object)
- (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
nameproperty matching the exact specified name. - remotes list(object)
- (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- resource_
type string - (String) The resource type.
- deleteds
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Deleted> - (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
nameproperty matching the exact specified name. - remotes
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Remote> - (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- resource
Type String - (String) The resource type.
- deleteds
Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Deleted[] - (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
nameproperty matching the exact specified name. - remotes
Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Remote[] - (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- resource
Type string - (String) The resource type.
- deleteds
Sequence[Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Deleted] - (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
nameproperty matching the exact specified name. - remotes
Sequence[Get
Is Snapshot Consistency Groups Snapshot Consistency Group Backup Policy Plan Remote] - (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
nameproperty 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.
- resource
Type String - (String) The resource type.
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more_
info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupBackupPolicyPlanRemote
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshot
- Crn string
- (String) The CRN of this snapshot.
- Deleteds
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Deleted> - (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
nameproperty matching the exact specified name. - Remotes
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Remote> - (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- Resource
Type string - (String) The resource type.
- Crn string
- (String) The CRN of this snapshot.
- Deleteds
[]Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Deleted - (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
nameproperty matching the exact specified name. - Remotes
[]Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Remote - (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- Resource
Type string - (String) The resource type.
- crn string
- (String) The CRN of this snapshot.
- deleteds list(object)
- (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
nameproperty matching the exact specified name. - remotes list(object)
- (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- resource_
type string - (String) The resource type.
- crn String
- (String) The CRN of this snapshot.
- deleteds
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Deleted> - (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
nameproperty matching the exact specified name. - remotes
List<Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Remote> - (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- resource
Type String - (String) The resource type.
- crn string
- (String) The CRN of this snapshot.
- deleteds
Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Deleted[] - (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
nameproperty matching the exact specified name. - remotes
Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Remote[] - (List) If present, this property indicates that the resource associated with this referenceis remote and therefore may not be directly retrievable.
- resource
Type string - (String) The resource type.
- crn str
- (String) The CRN of this snapshot.
- deleteds
Sequence[Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Deleted] - (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
nameproperty matching the exact specified name. - remotes
Sequence[Get
Is Snapshot Consistency Groups Snapshot Consistency Group Snapshot Remote] - (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
nameproperty 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.
- resource
Type String - (String) The resource type.
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotDeleted
- More
Info string - (String) Link to documentation about deleted resources.
- More
Info string - (String) Link to documentation about deleted resources.
- more_
info string - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
- more
Info string - (String) Link to documentation about deleted resources.
- more_
info str - (String) Link to documentation about deleted resources.
- more
Info String - (String) Link to documentation about deleted resources.
GetIsSnapshotConsistencyGroupsSnapshotConsistencyGroupSnapshotRemote
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibmTerraform Provider.
published on Friday, Jun 19, 2026 by ibm-cloud