Skip to content

Commit

Permalink
feat(blockchainnodeengine): update the API
Browse files Browse the repository at this point in the history
#### blockchainnodeengine:v1

The following keys were added:
- schemas.ConnectionInfo.properties.serviceAttachment.description
- schemas.ConnectionInfo.properties.serviceAttachment.readOnly
- schemas.ConnectionInfo.properties.serviceAttachment.type

The following keys were changed:
- schemas.Operation.properties.response.description
  • Loading branch information
yoshi-automation authored and sofisl committed Sep 22, 2023
1 parent 1e2ed6a commit 88285ef
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 7 additions & 2 deletions discovery/blockchainnodeengine-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
}
}
},
"revision": "20230621",
"revision": "20230914",
"rootUrl": "https://blockchainnodeengine.googleapis.com/",
"schemas": {
"BlockchainNode": {
Expand Down Expand Up @@ -581,6 +581,11 @@
"$ref": "EndpointInfo",
"description": "Output only. The endpoint information through which to interact with a blockchain node.",
"readOnly": true
},
"serviceAttachment": {
"description": "Output only. A service attachment that exposes a node, and has the following format: projects/{project}/regions/{region}/serviceAttachments/{service_attachment_name}",
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -864,7 +869,7 @@
"description": "Properties of the object. Contains field @type with type URL.",
"type": "any"
},
"description": "The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.",
"description": "The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.",
"type": "object"
}
},
Expand Down
6 changes: 5 additions & 1 deletion src/apis/blockchainnodeengine/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,10 @@ export namespace blockchainnodeengine_v1 {
* Output only. The endpoint information through which to interact with a blockchain node.
*/
endpointInfo?: Schema$EndpointInfo;
/**
* Output only. A service attachment that exposes a node, and has the following format: projects/{project\}/regions/{region\}/serviceAttachments/{service_attachment_name\}
*/
serviceAttachment?: string | null;
}
/**
* Contains endpoint information through which to interact with a blockchain node.
Expand Down Expand Up @@ -343,7 +347,7 @@ export namespace blockchainnodeengine_v1 {
*/
name?: string | null;
/**
* The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
* The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
*/
response?: {[key: string]: any} | null;
}
Expand Down

0 comments on commit 88285ef

Please sign in to comment.