Show / Hide Table of Contents

Class UpdateQuotaRuleDetails

Details for updating a quota rule in the file system.

Inheritance
object
UpdateQuotaRuleDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FilestorageService.Models
Assembly: OCI.DotNetSDK.Filestorage.dll
Syntax
public class UpdateQuotaRuleDetails

Properties

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly name that the quota rule will be renamed to. It does not have to be unique. Avoid entering confidential information. Example: UserXYZ's quota

QuotaLimitInGigabytes

Declaration
[JsonProperty(PropertyName = "quotaLimitInGigabytes")]
public int? QuotaLimitInGigabytes { get; set; }
Property Value
Type Description
int?

An updated value of the quota rule in gigabytes.

In this article
Back to top