Skip to content

feat(all): auto-regenerate discovery clients #2969

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions chat/v1/chat-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,22 +48,22 @@
"description": "View members in Google Chat conversations."
},
"https://www.googleapis.com/auth/chat.messages": {
"description": "See, compose, send, update, and delete messages and their associated attachments, and add, see, and delete reactions to messages."
"description": "See, compose, send, update, and delete messages as well as their message content; add, see, and delete reactions to messages."
},
"https://www.googleapis.com/auth/chat.messages.create": {
"description": "Compose and send messages in Google Chat"
},
"https://www.googleapis.com/auth/chat.messages.reactions": {
"description": "See, add, and delete reactions to messages in Google Chat"
"description": "See, add, and delete reactions as well as their reaction content to messages in Google Chat"
},
"https://www.googleapis.com/auth/chat.messages.reactions.create": {
"description": "Add reactions to messages in Google Chat"
},
"https://www.googleapis.com/auth/chat.messages.reactions.readonly": {
"description": "View reactions to messages in Google Chat"
"description": "View reactions as well as their reaction content to messages in Google Chat"
},
"https://www.googleapis.com/auth/chat.messages.readonly": {
"description": "See messages and their associated reactions and attachments in Google Chat"
"description": "See messages as well as their reactions and message content in Google Chat"
},
"https://www.googleapis.com/auth/chat.spaces": {
"description": "Create conversations and spaces and see or update metadata (including history settings and access settings) in Google Chat"
Expand Down Expand Up @@ -1344,7 +1344,7 @@
}
}
},
"revision": "20241229",
"revision": "20250114",
"rootUrl": "https://chat.googleapis.com/",
"schemas": {
"AccessSettings": {
Expand Down
11 changes: 6 additions & 5 deletions chat/v1/chat-gen.go

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

154 changes: 127 additions & 27 deletions classroom/v1/classroom-api.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions classroom/v1/classroom-gen.go

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

6 changes: 3 additions & 3 deletions config/v1/config-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1154,13 +1154,13 @@
"type": "string"
},
"pageSize": {
"description": "Optional. When requesting a page of resources, 'page_size' specifies number of resources to return. If unspecified, at most 500 will be returned. The maximum value is 1000.",
"description": "Optional. When requesting a page of terraform versions, 'page_size' specifies number of terraform versions to return. If unspecified, at most 500 will be returned. The maximum value is 1000.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. Token returned by previous call to 'ListTerraformVersions' which specifies the position in the list from where to continue listing the resources.",
"description": "Optional. Token returned by previous call to 'ListTerraformVersions' which specifies the position in the list from where to continue listing the terraform versions.",
"location": "query",
"type": "string"
},
Expand All @@ -1187,7 +1187,7 @@
}
}
},
"revision": "20241211",
"revision": "20250108",
"rootUrl": "https://config.googleapis.com/",
"schemas": {
"ApplyResults": {
Expand Down
7 changes: 4 additions & 3 deletions config/v1/config-gen.go

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

3 changes: 1 addition & 2 deletions content/v2.1/content-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4570,7 +4570,7 @@
}
}
},
"revision": "20241217",
"revision": "20250115",
"rootUrl": "https://shoppingcontent.googleapis.com/",
"schemas": {
"Account": {
Expand Down Expand Up @@ -6021,7 +6021,6 @@
"type": "integer"
},
"attributionModel": {
"description": "Required. Attribution model.",
"enum": [
"ATTRIBUTION_MODEL_UNSPECIFIED",
"CROSS_CHANNEL_LAST_CLICK",
Expand Down
2 changes: 0 additions & 2 deletions content/v2.1/content-gen.go

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

8 changes: 6 additions & 2 deletions dialogflow/v3beta1/dialogflow-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -5272,7 +5272,7 @@
}
}
},
"revision": "20250103",
"revision": "20250116",
"rootUrl": "https://dialogflow.googleapis.com/",
"schemas": {
"GoogleCloudDialogflowCxV3AdvancedSettings": {
Expand Down Expand Up @@ -12152,7 +12152,7 @@
"type": "string"
},
"goal": {
"description": "Required. High level description of the goal the playbook intend to accomplish.",
"description": "Required. High level description of the goal the playbook intend to accomplish. A goal should be concise since it's visible to other playbooks that may reference this playbook.",
"type": "string"
},
"inputParameterDefinitions": {
Expand Down Expand Up @@ -12313,6 +12313,10 @@
"description": "Message of the Instruction of the playbook.",
"id": "GoogleCloudDialogflowCxV3beta1PlaybookInstruction",
"properties": {
"guidelines": {
"description": "General guidelines for the playbook. These are unstructured instructions that are not directly part of the goal, e.g. \"Always be polite\". It's valid for this text to be long and used instead of steps altogether.",
"type": "string"
},
"steps": {
"description": "Ordered list of step by step execution instructions to accomplish target goal.",
"items": {
Expand Down
16 changes: 11 additions & 5 deletions dialogflow/v3beta1/dialogflow-gen.go

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

Loading