Skip to content

Commit

Permalink
feat(servicecontrol): update the API
Browse files Browse the repository at this point in the history
#### servicecontrol:v1
The following keys were added:
- schemas.Operation.properties.extensions.description
- schemas.Operation.properties.extensions.items.additionalProperties.description
- schemas.Operation.properties.extensions.items.additionalProperties.type
- schemas.Operation.properties.extensions.items.type
- schemas.Operation.properties.extensions.type
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jul 10, 2020
1 parent a1c8bac commit 7c069fe
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
13 changes: 12 additions & 1 deletion discovery/servicecontrol-v1.json
Expand Up @@ -197,7 +197,7 @@
}
}
},
"revision": "20200601",
"revision": "20200703",
"rootUrl": "https://servicecontrol.googleapis.com/",
"schemas": {
"AllocateInfo": {
Expand Down Expand Up @@ -1165,6 +1165,17 @@
"format": "google-datetime",
"type": "string"
},
"extensions": {
"description": "Unimplemented.",
"items": {
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL.",
"type": "any"
},
"type": "object"
},
"type": "array"
},
"importance": {
"description": "DO NOT USE. This is an experimental field.",
"enum": [
Expand Down
4 changes: 4 additions & 0 deletions src/apis/servicecontrol/v1.ts
Expand Up @@ -795,6 +795,10 @@ export namespace servicecontrol_v1 {
* End time of the operation. Required when the operation is used in ServiceController.Report, but optional when the operation is used in ServiceController.Check.
*/
endTime?: string | null;
/**
* Unimplemented.
*/
extensions?: Array<{[key: string]: any}> | null;
/**
* DO NOT USE. This is an experimental field.
*/
Expand Down

0 comments on commit 7c069fe

Please sign in to comment.