Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1717)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Oct 18, 2022
1 parent f9e15f2 commit f990a2a
Show file tree
Hide file tree
Showing 22 changed files with 7,177 additions and 4,281 deletions.
12 changes: 6 additions & 6 deletions androidmanagement/v1/androidmanagement-api.json
Expand Up @@ -314,7 +314,7 @@
"devices": {
"methods": {
"delete": {
"description": "Deletes a device. This operation wipes the device.",
"description": "Deletes a device. This operation wipes the device. Deleted devices do not show up in enterprises.devices.list calls and a 404 is returned from enterprises.devices.get.",
"flatPath": "v1/enterprises/{enterprisesId}/devices/{devicesId}",
"httpMethod": "DELETE",
"id": "androidmanagement.enterprises.devices.delete",
Expand Down Expand Up @@ -360,7 +360,7 @@
]
},
"get": {
"description": "Gets a device.",
"description": "Gets a device. Deleted devices will respond with a 404 error.",
"flatPath": "v1/enterprises/{enterprisesId}/devices/{devicesId}",
"httpMethod": "GET",
"id": "androidmanagement.enterprises.devices.get",
Expand Down Expand Up @@ -413,7 +413,7 @@
]
},
"list": {
"description": "Lists devices for a given enterprise.",
"description": "Lists devices for a given enterprise. Deleted devices are not returned in the response.",
"flatPath": "v1/enterprises/{enterprisesId}/devices",
"httpMethod": "GET",
"id": "androidmanagement.enterprises.devices.list",
Expand Down Expand Up @@ -1065,7 +1065,7 @@
}
}
},
"revision": "20220921",
"revision": "20221010",
"rootUrl": "https://androidmanagement.googleapis.com/",
"schemas": {
"AdbShellCommandEvent": {
Expand Down Expand Up @@ -4065,7 +4065,7 @@
"type": "array"
},
"cameraDisabled": {
"description": "Whether camera is disabled.",
"description": "If true, the camera is disabled on the personal profile.",
"type": "boolean"
},
"maxDaysWithWorkOff": {
Expand Down Expand Up @@ -4097,7 +4097,7 @@
"type": "string"
},
"screenCaptureDisabled": {
"description": "Whether screen capture is disabled.",
"description": "If true, screen capture is disabled for all users.",
"type": "boolean"
}
},
Expand Down
21 changes: 13 additions & 8 deletions androidmanagement/v1/androidmanagement-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 11 additions & 8 deletions chat/v1/chat-api.json
Expand Up @@ -424,13 +424,13 @@
"parameterOrder": [],
"parameters": {
"pageSize": {
"description": "Optional. Requested page size. The value is capped at 1000. Server may return fewer results than requested. If unspecified, server will default to 100.",
"description": "Optional. The maximum number of spaces to return. The service may return fewer than this value. If unspecified, at most 100 spaces are returned. The maximum value is 1000; values above 1000 are coerced to 1000. Negative values return an INVALID_ARGUMENT error.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. A token identifying a page of results the server should return.",
"description": "Optional. A page token, received from a previous list spaces call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided must match the call that provided the page token.",
"location": "query",
"type": "string"
}
Expand Down Expand Up @@ -504,7 +504,10 @@
"path": "v1/{+name}",
"response": {
"$ref": "Membership"
}
},
"scopes": [
"https://www.googleapis.com/auth/chat.memberships"
]
},
"list": {
"description": "Lists human memberships in a space for joined members. Requires [service account authentication](https://developers.google.com/chat/api/guides/auth/service-accounts).",
Expand All @@ -516,13 +519,13 @@
],
"parameters": {
"pageSize": {
"description": "Requested page size. The value is capped at 1000. Server may return fewer results than requested. If unspecified, server will default to 100.",
"description": "The maximum number of memberships to return. The service may return fewer than this value. If unspecified, at most 100 memberships are returned. The maximum value is 1000; values above 1000 are coerced to 1000. Negative values return an INVALID_ARGUMENT error.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A token identifying a page of results the server should return.",
"description": "A page token, received from a previous list memberships call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided must match the call that provided the page token.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -699,7 +702,7 @@
}
}
},
"revision": "20221011",
"revision": "20221013",
"rootUrl": "https://chat.googleapis.com/",
"schemas": {
"ActionParameter": {
Expand Down Expand Up @@ -2407,7 +2410,7 @@
"type": "array"
},
"nextPageToken": {
"description": "Continuation token to retrieve the next page of results. It will be empty for the last page of results.",
"description": "A token that can be sent as `pageToken` to retrieve the next page of results. If empty, there are no subsequent pages.",
"type": "string"
}
},
Expand All @@ -2417,7 +2420,7 @@
"id": "ListSpacesResponse",
"properties": {
"nextPageToken": {
"description": "Continuation token to retrieve the next page of results. It will be empty for the last page of results. Tokens expire in an hour. An error is thrown if an expired token is passed.",
"description": "A token that can be sent as `pageToken` to retrieve the next page of results. If empty, there are no subsequent pages.",
"type": "string"
},
"spaces": {
Expand Down
50 changes: 30 additions & 20 deletions chat/v1/chat-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions language/v1/language-api.json
Expand Up @@ -227,7 +227,7 @@
}
}
},
"revision": "20220916",
"revision": "20221015",
"rootUrl": "https://language.googleapis.com/",
"schemas": {
"AnalyzeEntitiesRequest": {
Expand Down Expand Up @@ -742,7 +742,7 @@
"type": "object"
},
"Document": {
"description": "################################################################ # Represents the input to API methods.",
"description": "Represents the input to API methods.",
"id": "Document",
"properties": {
"content": {
Expand Down
4 changes: 1 addition & 3 deletions language/v1/language-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions language/v1beta1/language-api.json
Expand Up @@ -189,7 +189,7 @@
}
}
},
"revision": "20210807",
"revision": "20221015",
"rootUrl": "https://language.googleapis.com/",
"schemas": {
"AnalyzeEntitiesRequest": {
Expand Down Expand Up @@ -592,7 +592,7 @@
"type": "object"
},
"Document": {
"description": "################################################################ # Represents the input to API methods.",
"description": "Represents the input to API methods.",
"id": "Document",
"properties": {
"content": {
Expand Down
4 changes: 1 addition & 3 deletions language/v1beta1/language-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions language/v1beta2/language-api.json
Expand Up @@ -227,7 +227,7 @@
}
}
},
"revision": "20220916",
"revision": "20221015",
"rootUrl": "https://language.googleapis.com/",
"schemas": {
"AnalyzeEntitiesRequest": {
Expand Down Expand Up @@ -742,7 +742,7 @@
"type": "object"
},
"Document": {
"description": "################################################################ # Represents the input to API methods.",
"description": "Represents the input to API methods.",
"id": "Document",
"properties": {
"boilerplateHandling": {
Expand Down

0 comments on commit f990a2a

Please sign in to comment.