Skip to content

Commit

Permalink
feat(remotebuildexecution): update the API
Browse files Browse the repository at this point in the history
#### remotebuildexecution:v1alpha
The following keys were added:
- schemas.GoogleDevtoolsRemotebuildbotCommandEvents.properties.dockerImageName.description
- schemas.GoogleDevtoolsRemotebuildbotCommandEvents.properties.dockerImageName.type

#### remotebuildexecution:v1
The following keys were added:
- schemas.GoogleDevtoolsRemotebuildbotCommandEvents.properties.dockerImageName.description
- schemas.GoogleDevtoolsRemotebuildbotCommandEvents.properties.dockerImageName.type

#### remotebuildexecution:v2
The following keys were added:
- schemas.GoogleDevtoolsRemotebuildbotCommandEvents.properties.dockerImageName.description
- schemas.GoogleDevtoolsRemotebuildbotCommandEvents.properties.dockerImageName.type
  • Loading branch information
yoshi-automation authored and sofisl committed Oct 9, 2020
1 parent 6f32921 commit 7690730
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 3 deletions.
6 changes: 5 additions & 1 deletion discovery/remotebuildexecution-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
}
}
},
"revision": "20200929",
"revision": "20201006",
"rootUrl": "https://remotebuildexecution.googleapis.com/",
"schemas": {
"BuildBazelRemoteExecutionV2Action": {
Expand Down Expand Up @@ -976,6 +976,10 @@
"description": "Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command.",
"type": "boolean"
},
"dockerImageName": {
"description": "Docker Image name.",
"type": "string"
},
"inputCacheMiss": {
"description": "The input cache miss ratio.",
"format": "float",
Expand Down
6 changes: 5 additions & 1 deletion discovery/remotebuildexecution-v1alpha.json
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@
}
}
},
"revision": "20200929",
"revision": "20201006",
"rootUrl": "https://admin-remotebuildexecution.googleapis.com/",
"schemas": {
"BuildBazelRemoteExecutionV2Action": {
Expand Down Expand Up @@ -1090,6 +1090,10 @@
"description": "Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command.",
"type": "boolean"
},
"dockerImageName": {
"description": "Docker Image name.",
"type": "string"
},
"inputCacheMiss": {
"description": "The input cache miss ratio.",
"format": "float",
Expand Down
6 changes: 5 additions & 1 deletion discovery/remotebuildexecution-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
}
}
},
"revision": "20200929",
"revision": "20201006",
"rootUrl": "https://remotebuildexecution.googleapis.com/",
"schemas": {
"BuildBazelRemoteExecutionV2Action": {
Expand Down Expand Up @@ -1505,6 +1505,10 @@
"description": "Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command.",
"type": "boolean"
},
"dockerImageName": {
"description": "Docker Image name.",
"type": "string"
},
"inputCacheMiss": {
"description": "The input cache miss ratio.",
"format": "float",
Expand Down
4 changes: 4 additions & 0 deletions src/apis/remotebuildexecution/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,10 @@ export namespace remotebuildexecution_v1 {
* Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command.
*/
dockerCacheHit?: boolean | null;
/**
* Docker Image name.
*/
dockerImageName?: string | null;
/**
* The input cache miss ratio.
*/
Expand Down
4 changes: 4 additions & 0 deletions src/apis/remotebuildexecution/v1alpha.ts
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,10 @@ export namespace remotebuildexecution_v1alpha {
* Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command.
*/
dockerCacheHit?: boolean | null;
/**
* Docker Image name.
*/
dockerImageName?: string | null;
/**
* The input cache miss ratio.
*/
Expand Down
4 changes: 4 additions & 0 deletions src/apis/remotebuildexecution/v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,10 @@ export namespace remotebuildexecution_v2 {
* Indicates whether we are using a cached Docker image (true) or had to pull the Docker image (false) for this command.
*/
dockerCacheHit?: boolean | null;
/**
* Docker Image name.
*/
dockerImageName?: string | null;
/**
* The input cache miss ratio.
*/
Expand Down

0 comments on commit 7690730

Please sign in to comment.