Show / Hide Table of Contents

Class ApiSpecification

The logical configuration of the API exposed by a deployment.

Inheritance
object
ApiSpecification
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 ApiSpecification

Properties

LoggingPolicies

Declaration
[JsonProperty(PropertyName = "loggingPolicies")]
public ApiSpecificationLoggingPolicies LoggingPolicies { get; set; }
Property Value
Type Description
ApiSpecificationLoggingPolicies

RequestPolicies

Declaration
[JsonProperty(PropertyName = "requestPolicies")]
public ApiSpecificationRequestPolicies RequestPolicies { get; set; }
Property Value
Type Description
ApiSpecificationRequestPolicies

Routes

Declaration
[JsonProperty(PropertyName = "routes")]
public List<ApiSpecificationRoute> Routes { get; set; }
Property Value
Type Description
List<ApiSpecificationRoute>

A list of routes that this API exposes.

In this article
Back to top