Show / Hide Table of Contents

Class EntitlementSummary

A summary of an entitlement included in a usage plan.

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

Properties

Description

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

A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

An entitlement name, unique within a usage plan.

Remarks

Required

Quota

Declaration
[JsonProperty(PropertyName = "quota")]
public Quota Quota { get; set; }
Property Value
Type Description
Quota

RateLimit

Declaration
[JsonProperty(PropertyName = "rateLimit")]
public RateLimit RateLimit { get; set; }
Property Value
Type Description
RateLimit
In this article
Back to top