Show / Hide Table of Contents

Class ListQuotaRulesRequest

Inheritance
object
ListQuotaRulesRequest
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 ListQuotaRulesRequest : IOciRequest
Examples

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

Properties

AreViolatorsOnly

Declaration
[HttpConverter(TargetEnum.Query, "areViolatorsOnly")]
public bool? AreViolatorsOnly { get; set; }
Property Value
Type Description
bool?

An option to display only the users or groups that violate their quota rules. If areViolatorsOnly is false, results report all the quota and usage. If areViolatorsOnly is true, results only report the quota and usage for the users or groups that violate their quota rules.

FileSystemId

Declaration
[Required(ErrorMessage = "FileSystemId is required.")]
[HttpConverter(TargetEnum.Path, "fileSystemId")]
public string FileSystemId { get; set; }
Property Value
Type Description
string

The OCID of the file system.

Remarks

Required

IfMatch

Declaration
[HttpConverter(TargetEnum.Header, "if-match")]
public string IfMatch { get; set; }
Property Value
Type Description
string

For optimistic concurrency control. In the PUT or DELETE call for a resource, set the if-match parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.

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, 4096 is the maximum.
For important details about how pagination works, see List Pagination.
Example: 500

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.

PrincipalId

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

An identifier for the user or the group associated with quota rule and usage. UNIX-like operating systems use this integer value to identify a user or group to manage access control.

PrincipalType

Declaration
[Required(ErrorMessage = "PrincipalType is required.")]
[HttpConverter(TargetEnum.Query, "principalType")]
public ListQuotaRulesRequest.PrincipalTypeEnum? PrincipalType { get; set; }
Property Value
Type Description
ListQuotaRulesRequest.PrincipalTypeEnum?

The type of the owner of this quota rule and usage.

Remarks

Required

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListQuotaRulesRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListQuotaRulesRequest.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