Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2087)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jul 27, 2023
1 parent 7fb7c47 commit 8875932
Show file tree
Hide file tree
Showing 24 changed files with 1,348 additions and 82 deletions.
17 changes: 16 additions & 1 deletion bigquerydatatransfer/v1/bigquerydatatransfer-api.json
Expand Up @@ -1342,7 +1342,7 @@
}
}
},
"revision": "20230715",
"revision": "20230722",
"rootUrl": "https://bigquerydatatransfer.googleapis.com/",
"schemas": {
"CheckValidCredsRequest": {
Expand Down Expand Up @@ -1601,6 +1601,17 @@
"properties": {},
"type": "object"
},
"EncryptionConfiguration": {
"description": "Represents the encryption configuration for a transfer.",
"id": "EncryptionConfiguration",
"properties": {
"kmsKeyName": {
"description": "The name of the KMS key used for encrypting BigQuery data.",
"type": "string"
}
},
"type": "object"
},
"EnrollDataSourcesRequest": {
"description": "A request to enroll a set of data sources so they are visible in the BigQuery UI's `Transfer` tab.",
"id": "EnrollDataSourcesRequest",
Expand Down Expand Up @@ -1906,6 +1917,10 @@
"$ref": "EmailPreferences",
"description": "Email notifications will be sent according to these preferences to the email address of the user who owns this transfer config."
},
"encryptionConfiguration": {
"$ref": "EncryptionConfiguration",
"description": "The encryption configuration part. Currently, it is only used for the optional KMS key name. The BigQuery service account of your project must be granted permissions to use the key. Read methods will return the key name applied in effect. Write methods will apply the key if it is present, or otherwise try to apply project default keys if it is absent."
},
"name": {
"description": "The resource name of the transfer config. Transfer config names have the form `projects/{project_id}/locations/{region}/transferConfigs/{config_id}`. Where `config_id` is usually a uuid, even though it is not guaranteed or required. The name is ignored when creating a transfer config.",
"type": "string"
Expand Down
38 changes: 38 additions & 0 deletions bigquerydatatransfer/v1/bigquerydatatransfer-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 chat/v1/chat-api.json
Expand Up @@ -678,7 +678,7 @@
]
},
"list": {
"description": "Lists messages in a space that the caller is a member of, including messages from blocked members and spaces. For an example, see [List messages](/chat/api/guides/v1/messages/list). Requires [user authentication](https://developers.google.com/chat/api/guides/auth/users) and the `chat.messages` or `chat.messages.readonly` authorization scope. This method is only supported in spaces that don't allow users from outside the Workspace organization to join.",
"description": "Lists messages in a space that the caller is a member of, including messages from blocked members and spaces. For an example, see [List messages](/chat/api/guides/v1/messages/list). Requires [user authentication](https://developers.google.com/chat/api/guides/auth/users) and the `chat.messages` or `chat.messages.readonly` authorization scope.",
"flatPath": "v1/spaces/{spacesId}/messages",
"httpMethod": "GET",
"id": "chat.spaces.messages.list",
Expand Down Expand Up @@ -954,7 +954,7 @@
}
}
},
"revision": "20230718",
"revision": "20230723",
"rootUrl": "https://chat.googleapis.com/",
"schemas": {
"ActionParameter": {
Expand Down Expand Up @@ -3379,6 +3379,10 @@
"description": "The space's display name. Required when [creating a space](https://developers.google.com/chat/api/reference/rest/v1/spaces/create). For direct messages, this field might be empty. Supports up to 128 characters.",
"type": "string"
},
"externalUserAllowed": {
"description": "Immutable. Whether this space permits any Google Chat user as a member. Input when creating a space. For existing spaces, this field is output only.",
"type": "boolean"
},
"name": {
"description": "Resource name of the space. Format: `spaces/{space}`",
"type": "string"
Expand Down
11 changes: 7 additions & 4 deletions chat/v1/chat-gen.go

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

58 changes: 57 additions & 1 deletion checks/v1alpha/checks-api.json
Expand Up @@ -355,6 +355,44 @@
"response": {
"$ref": "PrivacyPolicy"
}
},
"list": {
"description": "Lists privacy policies.",
"flatPath": "v1alpha/projects/{projectsId}/privacyPolicies",
"httpMethod": "GET",
"id": "checks.projects.privacyPolicies.list",
"parameterOrder": [
"parent"
],
"parameters": {
"filter": {
"description": "Optional. A filter string to filters results. The filter syntax is defined by AIP-160 (https://google.aip.dev/160).",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. The maximum number of results to return. If unspecified, at most 50 results will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. A page token, received from a previous `ListPrivacyPoliciesRequest` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListPrivacyPoliciesRequest` must match the call that provided the page token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. Resource name of the parent project, in the format `projects/{projectNumber}`.",
"location": "path",
"pattern": "^projects/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1alpha/{+parent}/privacyPolicies",
"response": {
"$ref": "ListPrivacyPoliciesResponse"
}
}
}
},
Expand Down Expand Up @@ -516,7 +554,7 @@
}
}
},
"revision": "20230723",
"revision": "20230725",
"rootUrl": "https://checks.googleapis.com/",
"schemas": {
"AnalyzePrivacyPolicyRequest": {
Expand Down Expand Up @@ -658,6 +696,24 @@
},
"type": "object"
},
"ListPrivacyPoliciesResponse": {
"description": "Response message for `ListPrivacyPolicies`.",
"id": "ListPrivacyPoliciesResponse",
"properties": {
"nextPageToken": {
"description": "The pagination token to retrieve the next page of results. If the value is an empty string, it means there are no further results for the request.",
"type": "string"
},
"privacyPolicies": {
"description": "The privacy policies.",
"items": {
"$ref": "PrivacyPolicy"
},
"type": "array"
}
},
"type": "object"
},
"Operation": {
"description": "This resource represents a long-running operation that is the result of a network API call.",
"id": "Operation",
Expand Down

0 comments on commit 8875932

Please sign in to comment.