Show / Hide Table of Contents

Class HttpOperation

An HTTP-based API Operation, sometimes called a "REST" Operation.

Inheritance
object
HttpOperation
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.APIManagement.v1alpha.Data
Assembly: Google.Apis.APIManagement.v1alpha.dll
Syntax
public class HttpOperation : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Method

HTTP Method.

Declaration
[JsonProperty("method")]
public virtual string Method { get; set; }
Property Value
Type Description
string

Path

Path of the HTTP request.

Declaration
[JsonProperty("path")]
public virtual string Path { get; set; }
Property Value
Type Description
string

PathParams

Path params of HttpOperation

Declaration
[JsonProperty("pathParams")]
public virtual IList<HttpOperationPathParam> PathParams { get; set; }
Property Value
Type Description
IList<HttpOperationPathParam>

QueryParams

Query params of HttpOperation

Declaration
[JsonProperty("queryParams")]
public virtual IDictionary<string, HttpOperationQueryParam> QueryParams { get; set; }
Property Value
Type Description
IDictionary<string, HttpOperationQueryParam>

Request

Request metadata.

Declaration
[JsonProperty("request")]
public virtual HttpOperationHttpRequest Request { get; set; }
Property Value
Type Description
HttpOperationHttpRequest

Response

Response metadata.

Declaration
[JsonProperty("response")]
public virtual HttpOperationHttpResponse Response { get; set; }
Property Value
Type Description
HttpOperationHttpResponse

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX