Show / Hide Table of Contents

Class ListSnapshotsRequest

Inheritance
object
ListSnapshotsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FilestorageService.Requests
Assembly: OCI.DotNetSDK.Filestorage.dll
Syntax
public class ListSnapshotsRequest : IOciRequest
Examples

Click here to see an example of how to use ListSnapshots request.

Properties

CompartmentId

Declaration
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment.

FileSystemId

Declaration
[HttpConverter(TargetEnum.Query, "fileSystemId")]
public string FileSystemId { get; set; }
Property Value
Type Description
string

The OCID of the file system.

FilesystemSnapshotPolicyId

Declaration
[HttpConverter(TargetEnum.Query, "filesystemSnapshotPolicyId")]
public string FilesystemSnapshotPolicyId { get; set; }
Property Value
Type Description
string

The OCID of the file system snapshot policy that is used to create the snapshots.

Id

Declaration
[HttpConverter(TargetEnum.Query, "id")]
public string Id { get; set; }
Property Value
Type Description
string

Filter results by OCID. Must be an OCID of the correct type for the resouce type.

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public ListSnapshotsRequest.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ListSnapshotsRequest.LifecycleStateEnum?

Filter results by the specified lifecycle state. Must be a valid state for the resource type.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. 1 is the minimum, 100 is the maximum.
For important details about how pagination works, see List Pagination.
Example: 100

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

For list pagination. The value of the opc-next-page response header from the previous "List" call.
For important details about how pagination works, see List Pagination.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListSnapshotsRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListSnapshotsRequest.SortOrderEnum?

The sort order to use, either 'asc' or 'desc', where 'asc' is ascending and 'desc' is descending. The default order is 'desc' except for numeric values.

Implements

IOciRequest
In this article
Back to top