Resource: ApiOperation
Represents an operation contained in an API version in the API hub. An operation is added/updated/deleted in an API version when a new spec is added or an existing spec is updated/deleted in a version. Currently, an operation will be created only corresponding to OpenAPI spec as parsing is supported for OpenAPI spec. Alternatively operations can be managed via create,update and delete APIs, creation of apiOperation can be possible only for version with no parsed operations and update/delete can be possible only for operations created via create API.
JSON representation |
---|
{ "name": string, "spec": string, "details": { object ( |
Fields | |
---|---|
name |
Identifier. The name of the operation. Format: |
spec |
Output only. The name of the spec will be of the format: |
details |
Optional. Operation details. Note: Even though this field is optional, it is required for |
createTime |
Output only. The time at which the operation was created. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
updateTime |
Output only. The time at which the operation was last updated. Uses RFC 3339, where generated output will always be Z-normalized and uses 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
attributes |
Optional. The list of user defined attributes associated with the API operation resource. The key is the attribute name. It will be of the format: An object containing a list of |
sourceMetadata[] |
Output only. The list of sources and metadata from the sources of the API operation. |
OperationDetails
The operation details parsed from the spec.
JSON representation |
---|
{ "description": string, "documentation": { object ( |
Fields | |
---|---|
description |
Optional. Description of the operation behavior. For OpenAPI spec, this will map to |
documentation |
Optional. Additional external documentation for this operation. For OpenAPI spec, this will map to |
deprecated |
Optional. For OpenAPI spec, this will be set if |
Union field
|
|
httpOperation |
The HTTP Operation. |
HttpOperation
The HTTP Operation.
JSON representation |
---|
{ "path": { object ( |
Fields | |
---|---|
path |
Optional. The path details for the Operation. Note: Even though this field is optional, it is required for |
method |
Optional. Operation method Note: Even though this field is optional, it is required for |
Path
The path details derived from the spec.
JSON representation |
---|
{ "path": string, "description": string } |
Fields | |
---|---|
path |
Optional. Complete path relative to server endpoint. Note: Even though this field is optional, it is required for |
description |
Optional. A short description for the path applicable to all operations. |
Method
Enumeration of Method types.
Enums | |
---|---|
METHOD_UNSPECIFIED |
Method unspecified. |
GET |
Get Operation type. |
PUT |
Put Operation type. |
POST |
Post Operation type. |
DELETE |
Delete Operation type. |
OPTIONS |
Options Operation type. |
HEAD |
Head Operation type. |
PATCH |
Patch Operation type. |
TRACE |
Trace Operation type. |
Methods |
|
---|---|
|
Create an apiOperation in an API version. |
|
Delete an operation in an API version and we can delete only the operations created via create API. |
|
Get details about a particular operation in API version. |
|
List operations in an API version. |
|
Update an operation in an API version. |