Class HttpOperation
An HTTP-based API Operation, sometimes called a "REST" Operation.
Implements
Inherited Members
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 |