Skip to content

Commit

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

The following keys were changed:
- schemas.Request.properties.path.description

#### servicecontrol:v2

The following keys were changed:
- schemas.Request.properties.path.description
- schemas.Response.properties.backendLatency.description
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 20, 2021
1 parent 429b8c1 commit 285bfa9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions discovery/servicecontrol-v1.json
Expand Up @@ -197,7 +197,7 @@
}
}
},
"revision": "20210326",
"revision": "20210409",
"rootUrl": "https://servicecontrol.googleapis.com/",
"schemas": {
"AllocateInfo": {
Expand Down Expand Up @@ -1526,7 +1526,7 @@
"type": "string"
},
"path": {
"description": "The HTTP URL path.",
"description": "The HTTP URL path, excluding the query parameters.",
"type": "string"
},
"protocol": {
Expand Down
6 changes: 3 additions & 3 deletions discovery/servicecontrol-v2.json
Expand Up @@ -169,7 +169,7 @@
}
}
},
"revision": "20210326",
"revision": "20210409",
"rootUrl": "https://servicecontrol.googleapis.com/",
"schemas": {
"Api": {
Expand Down Expand Up @@ -572,7 +572,7 @@
"type": "string"
},
"path": {
"description": "The HTTP URL path.",
"description": "The HTTP URL path, excluding the query parameters.",
"type": "string"
},
"protocol": {
Expand Down Expand Up @@ -740,7 +740,7 @@
"id": "Response",
"properties": {
"backendLatency": {
"description": "The length of time it takes the backend service to fully respond to a request. Measured from when the destination service starts to send the request to the backend until when the destination service receives the complete response from the backend.",
"description": "The amount of time it takes the backend service to fully respond to a request. Measured from when the destination service starts to send the request to the backend until when the destination service receives the complete response from the backend.",
"format": "google-duration",
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion src/apis/servicecontrol/v1.ts
Expand Up @@ -1011,7 +1011,7 @@ export namespace servicecontrol_v1 {
*/
method?: string | null;
/**
* The HTTP URL path.
* The HTTP URL path, excluding the query parameters.
*/
path?: string | null;
/**
Expand Down
4 changes: 2 additions & 2 deletions src/apis/servicecontrol/v2.ts
Expand Up @@ -433,7 +433,7 @@ export namespace servicecontrol_v2 {
*/
method?: string | null;
/**
* The HTTP URL path.
* The HTTP URL path, excluding the query parameters.
*/
path?: string | null;
/**
Expand Down Expand Up @@ -574,7 +574,7 @@ export namespace servicecontrol_v2 {
*/
export interface Schema$Response {
/**
* The length of time it takes the backend service to fully respond to a request. Measured from when the destination service starts to send the request to the backend until when the destination service receives the complete response from the backend.
* The amount of time it takes the backend service to fully respond to a request. Measured from when the destination service starts to send the request to the backend until when the destination service receives the complete response from the backend.
*/
backendLatency?: string | null;
/**
Expand Down

0 comments on commit 285bfa9

Please sign in to comment.