1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FileStorage
  5. getSnapshots
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.FileStorage.getSnapshots

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

This data source provides the list of Snapshots in Oracle Cloud Infrastructure File Storage service.

Lists snapshots of the specified file system, or by file system snapshot policy and compartment, or by file system snapshot policy and file system.

If file system ID is not specified, a file system snapshot policy ID and compartment ID must be specified.

Users can only sort by time created when listing snapshots by file system snapshot policy ID and compartment ID (sort by name is NOT supported for listing snapshots by policy and compartment).

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testSnapshots = oci.FileStorage.getSnapshots({
    compartmentId: compartmentId,
    fileSystemId: testFileSystem.id,
    filesystemSnapshotPolicyId: testFilesystemSnapshotPolicy.id,
    id: snapshotId,
    state: snapshotState,
});
Copy
import pulumi
import pulumi_oci as oci

test_snapshots = oci.FileStorage.get_snapshots(compartment_id=compartment_id,
    file_system_id=test_file_system["id"],
    filesystem_snapshot_policy_id=test_filesystem_snapshot_policy["id"],
    id=snapshot_id,
    state=snapshot_state)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/filestorage"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := filestorage.GetSnapshots(ctx, &filestorage.GetSnapshotsArgs{
			CompartmentId:              pulumi.StringRef(compartmentId),
			FileSystemId:               pulumi.StringRef(testFileSystem.Id),
			FilesystemSnapshotPolicyId: pulumi.StringRef(testFilesystemSnapshotPolicy.Id),
			Id:                         pulumi.StringRef(snapshotId),
			State:                      pulumi.StringRef(snapshotState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testSnapshots = Oci.FileStorage.GetSnapshots.Invoke(new()
    {
        CompartmentId = compartmentId,
        FileSystemId = testFileSystem.Id,
        FilesystemSnapshotPolicyId = testFilesystemSnapshotPolicy.Id,
        Id = snapshotId,
        State = snapshotState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FileStorage.FileStorageFunctions;
import com.pulumi.oci.FileStorage.inputs.GetSnapshotsArgs;
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 testSnapshots = FileStorageFunctions.getSnapshots(GetSnapshotsArgs.builder()
            .compartmentId(compartmentId)
            .fileSystemId(testFileSystem.id())
            .filesystemSnapshotPolicyId(testFilesystemSnapshotPolicy.id())
            .id(snapshotId)
            .state(snapshotState)
            .build());

    }
}
Copy
variables:
  testSnapshots:
    fn::invoke:
      function: oci:FileStorage:getSnapshots
      arguments:
        compartmentId: ${compartmentId}
        fileSystemId: ${testFileSystem.id}
        filesystemSnapshotPolicyId: ${testFilesystemSnapshotPolicy.id}
        id: ${snapshotId}
        state: ${snapshotState}
Copy

Using getSnapshots

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 getSnapshots(args: GetSnapshotsArgs, opts?: InvokeOptions): Promise<GetSnapshotsResult>
function getSnapshotsOutput(args: GetSnapshotsOutputArgs, opts?: InvokeOptions): Output<GetSnapshotsResult>
Copy
def get_snapshots(compartment_id: Optional[str] = None,
                  file_system_id: Optional[str] = None,
                  filesystem_snapshot_policy_id: Optional[str] = None,
                  filters: Optional[Sequence[_filestorage.GetSnapshotsFilter]] = None,
                  id: Optional[str] = None,
                  state: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetSnapshotsResult
def get_snapshots_output(compartment_id: Optional[pulumi.Input[str]] = None,
                  file_system_id: Optional[pulumi.Input[str]] = None,
                  filesystem_snapshot_policy_id: Optional[pulumi.Input[str]] = None,
                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_filestorage.GetSnapshotsFilterArgs]]]] = None,
                  id: Optional[pulumi.Input[str]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetSnapshotsResult]
Copy
func GetSnapshots(ctx *Context, args *GetSnapshotsArgs, opts ...InvokeOption) (*GetSnapshotsResult, error)
func GetSnapshotsOutput(ctx *Context, args *GetSnapshotsOutputArgs, opts ...InvokeOption) GetSnapshotsResultOutput
Copy

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

public static class GetSnapshots 
{
    public static Task<GetSnapshotsResult> InvokeAsync(GetSnapshotsArgs args, InvokeOptions? opts = null)
    public static Output<GetSnapshotsResult> Invoke(GetSnapshotsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSnapshotsResult> getSnapshots(GetSnapshotsArgs args, InvokeOptions options)
public static Output<GetSnapshotsResult> getSnapshots(GetSnapshotsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:FileStorage/getSnapshots:getSnapshots
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId string
The OCID of the compartment.
FileSystemId string
The OCID of the file system.
FilesystemSnapshotPolicyId string
The OCID of the file system snapshot policy that is used to create the snapshots.
Filters Changes to this property will trigger replacement. List<GetSnapshotsFilter>
Id string
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
State string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
CompartmentId string
The OCID of the compartment.
FileSystemId string
The OCID of the file system.
FilesystemSnapshotPolicyId string
The OCID of the file system snapshot policy that is used to create the snapshots.
Filters Changes to this property will trigger replacement. []GetSnapshotsFilter
Id string
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
State string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
compartmentId String
The OCID of the compartment.
fileSystemId String
The OCID of the file system.
filesystemSnapshotPolicyId String
The OCID of the file system snapshot policy that is used to create the snapshots.
filters Changes to this property will trigger replacement. List<GetSnapshotsFilter>
id String
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
state String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
compartmentId string
The OCID of the compartment.
fileSystemId string
The OCID of the file system.
filesystemSnapshotPolicyId string
The OCID of the file system snapshot policy that is used to create the snapshots.
filters Changes to this property will trigger replacement. GetSnapshotsFilter[]
id string
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
state string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
compartment_id str
The OCID of the compartment.
file_system_id str
The OCID of the file system.
filesystem_snapshot_policy_id str
The OCID of the file system snapshot policy that is used to create the snapshots.
filters Changes to this property will trigger replacement. Sequence[filestorage.GetSnapshotsFilter]
id str
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
state str
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
compartmentId String
The OCID of the compartment.
fileSystemId String
The OCID of the file system.
filesystemSnapshotPolicyId String
The OCID of the file system snapshot policy that is used to create the snapshots.
filters Changes to this property will trigger replacement. List<Property Map>
id String
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
state String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.

getSnapshots Result

The following output properties are available:

Snapshots List<GetSnapshotsSnapshot>
The list of snapshots.
CompartmentId string
FileSystemId string
The OCID of the file system from which the snapshot was created.
FilesystemSnapshotPolicyId string
The OCID of the file system snapshot policy that created this snapshot.
Filters List<GetSnapshotsFilter>
Id string
The OCID of the snapshot.
State string
The current state of the snapshot.
Snapshots []GetSnapshotsSnapshot
The list of snapshots.
CompartmentId string
FileSystemId string
The OCID of the file system from which the snapshot was created.
FilesystemSnapshotPolicyId string
The OCID of the file system snapshot policy that created this snapshot.
Filters []GetSnapshotsFilter
Id string
The OCID of the snapshot.
State string
The current state of the snapshot.
snapshots List<GetSnapshotsSnapshot>
The list of snapshots.
compartmentId String
fileSystemId String
The OCID of the file system from which the snapshot was created.
filesystemSnapshotPolicyId String
The OCID of the file system snapshot policy that created this snapshot.
filters List<GetSnapshotsFilter>
id String
The OCID of the snapshot.
state String
The current state of the snapshot.
snapshots GetSnapshotsSnapshot[]
The list of snapshots.
compartmentId string
fileSystemId string
The OCID of the file system from which the snapshot was created.
filesystemSnapshotPolicyId string
The OCID of the file system snapshot policy that created this snapshot.
filters GetSnapshotsFilter[]
id string
The OCID of the snapshot.
state string
The current state of the snapshot.
snapshots Sequence[filestorage.GetSnapshotsSnapshot]
The list of snapshots.
compartment_id str
file_system_id str
The OCID of the file system from which the snapshot was created.
filesystem_snapshot_policy_id str
The OCID of the file system snapshot policy that created this snapshot.
filters Sequence[filestorage.GetSnapshotsFilter]
id str
The OCID of the snapshot.
state str
The current state of the snapshot.
snapshots List<Property Map>
The list of snapshots.
compartmentId String
fileSystemId String
The OCID of the file system from which the snapshot was created.
filesystemSnapshotPolicyId String
The OCID of the file system snapshot policy that created this snapshot.
filters List<Property Map>
id String
The OCID of the snapshot.
state String
The current state of the snapshot.

Supporting Types

GetSnapshotsFilter

Name This property is required. string
Name of the snapshot. This value is immutable.
Values This property is required. List<string>
Regex bool
Name This property is required. string
Name of the snapshot. This value is immutable.
Values This property is required. []string
Regex bool
name This property is required. String
Name of the snapshot. This value is immutable.
values This property is required. List<String>
regex Boolean
name This property is required. string
Name of the snapshot. This value is immutable.
values This property is required. string[]
regex boolean
name This property is required. str
Name of the snapshot. This value is immutable.
values This property is required. Sequence[str]
regex bool
name This property is required. String
Name of the snapshot. This value is immutable.
values This property is required. List<String>
regex Boolean

GetSnapshotsSnapshot

DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
ExpirationTime This property is required. string
The time when this snapshot will be deleted.
FileSystemId This property is required. string
The OCID of the file system.
FilesystemSnapshotPolicyId This property is required. string
The OCID of the file system snapshot policy that is used to create the snapshots.
FreeformTags This property is required. Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
IsCloneSource This property is required. bool
Specifies whether the snapshot has been cloned. See Cloning a File System.
IsLockOverride This property is required. bool
LifecycleDetails This property is required. string
Additional information about the current lifecycleState.
Locks This property is required. List<GetSnapshotsSnapshotLock>
Locks associated with this resource.
Name This property is required. string
Name of the snapshot. This value is immutable.
ProvenanceId This property is required. string
An OCID identifying the parent from which this snapshot was cloned. If this snapshot was not cloned, then the provenanceId is the same as the snapshot id value. If this snapshot was cloned, then the provenanceId value is the parent's provenanceId. See Cloning a File System.
SnapshotTime This property is required. string
The date and time the snapshot was taken, expressed in RFC 3339 timestamp format. This value might be the same or different from timeCreated depending on the following factors:

  • If the snapshot is created in the original file system directory.
  • If the snapshot is cloned from a file system.
  • If the snapshot is replicated from a file system.
SnapshotType This property is required. string
Specifies the generation type of the snapshot.
State This property is required. string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
TimeCreated This property is required. string
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
ExpirationTime This property is required. string
The time when this snapshot will be deleted.
FileSystemId This property is required. string
The OCID of the file system.
FilesystemSnapshotPolicyId This property is required. string
The OCID of the file system snapshot policy that is used to create the snapshots.
FreeformTags This property is required. map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
Id This property is required. string
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
IsCloneSource This property is required. bool
Specifies whether the snapshot has been cloned. See Cloning a File System.
IsLockOverride This property is required. bool
LifecycleDetails This property is required. string
Additional information about the current lifecycleState.
Locks This property is required. []GetSnapshotsSnapshotLock
Locks associated with this resource.
Name This property is required. string
Name of the snapshot. This value is immutable.
ProvenanceId This property is required. string
An OCID identifying the parent from which this snapshot was cloned. If this snapshot was not cloned, then the provenanceId is the same as the snapshot id value. If this snapshot was cloned, then the provenanceId value is the parent's provenanceId. See Cloning a File System.
SnapshotTime This property is required. string
The date and time the snapshot was taken, expressed in RFC 3339 timestamp format. This value might be the same or different from timeCreated depending on the following factors:

  • If the snapshot is created in the original file system directory.
  • If the snapshot is cloned from a file system.
  • If the snapshot is replicated from a file system.
SnapshotType This property is required. string
Specifies the generation type of the snapshot.
State This property is required. string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
SystemTags This property is required. map[string]string
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
TimeCreated This property is required. string
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
expirationTime This property is required. String
The time when this snapshot will be deleted.
fileSystemId This property is required. String
The OCID of the file system.
filesystemSnapshotPolicyId This property is required. String
The OCID of the file system snapshot policy that is used to create the snapshots.
freeformTags This property is required. Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
isCloneSource This property is required. Boolean
Specifies whether the snapshot has been cloned. See Cloning a File System.
isLockOverride This property is required. Boolean
lifecycleDetails This property is required. String
Additional information about the current lifecycleState.
locks This property is required. List<GetSnapshotsSnapshotLock>
Locks associated with this resource.
name This property is required. String
Name of the snapshot. This value is immutable.
provenanceId This property is required. String
An OCID identifying the parent from which this snapshot was cloned. If this snapshot was not cloned, then the provenanceId is the same as the snapshot id value. If this snapshot was cloned, then the provenanceId value is the parent's provenanceId. See Cloning a File System.
snapshotTime This property is required. String
The date and time the snapshot was taken, expressed in RFC 3339 timestamp format. This value might be the same or different from timeCreated depending on the following factors:

  • If the snapshot is created in the original file system directory.
  • If the snapshot is cloned from a file system.
  • If the snapshot is replicated from a file system.
snapshotType This property is required. String
Specifies the generation type of the snapshot.
state This property is required. String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
systemTags This property is required. Map<String,String>
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
timeCreated This property is required. String
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
expirationTime This property is required. string
The time when this snapshot will be deleted.
fileSystemId This property is required. string
The OCID of the file system.
filesystemSnapshotPolicyId This property is required. string
The OCID of the file system snapshot policy that is used to create the snapshots.
freeformTags This property is required. {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. string
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
isCloneSource This property is required. boolean
Specifies whether the snapshot has been cloned. See Cloning a File System.
isLockOverride This property is required. boolean
lifecycleDetails This property is required. string
Additional information about the current lifecycleState.
locks This property is required. GetSnapshotsSnapshotLock[]
Locks associated with this resource.
name This property is required. string
Name of the snapshot. This value is immutable.
provenanceId This property is required. string
An OCID identifying the parent from which this snapshot was cloned. If this snapshot was not cloned, then the provenanceId is the same as the snapshot id value. If this snapshot was cloned, then the provenanceId value is the parent's provenanceId. See Cloning a File System.
snapshotTime This property is required. string
The date and time the snapshot was taken, expressed in RFC 3339 timestamp format. This value might be the same or different from timeCreated depending on the following factors:

  • If the snapshot is created in the original file system directory.
  • If the snapshot is cloned from a file system.
  • If the snapshot is replicated from a file system.
snapshotType This property is required. string
Specifies the generation type of the snapshot.
state This property is required. string
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
systemTags This property is required. {[key: string]: string}
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
timeCreated This property is required. string
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
expiration_time This property is required. str
The time when this snapshot will be deleted.
file_system_id This property is required. str
The OCID of the file system.
filesystem_snapshot_policy_id This property is required. str
The OCID of the file system snapshot policy that is used to create the snapshots.
freeform_tags This property is required. Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. str
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
is_clone_source This property is required. bool
Specifies whether the snapshot has been cloned. See Cloning a File System.
is_lock_override This property is required. bool
lifecycle_details This property is required. str
Additional information about the current lifecycleState.
locks This property is required. Sequence[filestorage.GetSnapshotsSnapshotLock]
Locks associated with this resource.
name This property is required. str
Name of the snapshot. This value is immutable.
provenance_id This property is required. str
An OCID identifying the parent from which this snapshot was cloned. If this snapshot was not cloned, then the provenanceId is the same as the snapshot id value. If this snapshot was cloned, then the provenanceId value is the parent's provenanceId. See Cloning a File System.
snapshot_time This property is required. str
The date and time the snapshot was taken, expressed in RFC 3339 timestamp format. This value might be the same or different from timeCreated depending on the following factors:

  • If the snapshot is created in the original file system directory.
  • If the snapshot is cloned from a file system.
  • If the snapshot is replicated from a file system.
snapshot_type This property is required. str
Specifies the generation type of the snapshot.
state This property is required. str
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
system_tags This property is required. Mapping[str, str]
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
time_created This property is required. str
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
expirationTime This property is required. String
The time when this snapshot will be deleted.
fileSystemId This property is required. String
The OCID of the file system.
filesystemSnapshotPolicyId This property is required. String
The OCID of the file system snapshot policy that is used to create the snapshots.
freeformTags This property is required. Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id This property is required. String
Filter results by OCID. Must be an OCID of the correct type for the resouce type.
isCloneSource This property is required. Boolean
Specifies whether the snapshot has been cloned. See Cloning a File System.
isLockOverride This property is required. Boolean
lifecycleDetails This property is required. String
Additional information about the current lifecycleState.
locks This property is required. List<Property Map>
Locks associated with this resource.
name This property is required. String
Name of the snapshot. This value is immutable.
provenanceId This property is required. String
An OCID identifying the parent from which this snapshot was cloned. If this snapshot was not cloned, then the provenanceId is the same as the snapshot id value. If this snapshot was cloned, then the provenanceId value is the parent's provenanceId. See Cloning a File System.
snapshotTime This property is required. String
The date and time the snapshot was taken, expressed in RFC 3339 timestamp format. This value might be the same or different from timeCreated depending on the following factors:

  • If the snapshot is created in the original file system directory.
  • If the snapshot is cloned from a file system.
  • If the snapshot is replicated from a file system.
snapshotType This property is required. String
Specifies the generation type of the snapshot.
state This property is required. String
Filter results by the specified lifecycle state. Must be a valid state for the resource type.
systemTags This property is required. Map<String>
System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services.
timeCreated This property is required. String
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z

GetSnapshotsSnapshotLock

Message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
RelatedResourceId This property is required. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
TimeCreated This property is required. string
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
Type This property is required. string
Type of the lock.
Message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
RelatedResourceId This property is required. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
TimeCreated This property is required. string
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
Type This property is required. string
Type of the lock.
message This property is required. String
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. String
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. String
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
type This property is required. String
Type of the lock.
message This property is required. string
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. string
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. string
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
type This property is required. string
Type of the lock.
message This property is required. str
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
related_resource_id This property is required. str
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
time_created This property is required. str
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
type This property is required. str
Type of the lock.
message This property is required. String
A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked.
relatedResourceId This property is required. String
The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock.
timeCreated This property is required. String
The date and time the snapshot was created, expressed in RFC 3339 timestamp format. Example: 2016-08-25T21:10:29.600Z
type This property is required. String
Type of the lock.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi