Skip to content

Commit 8875932

Browse files
feat(all): auto-regenerate discovery clients (#2087)
1 parent 7fb7c47 commit 8875932

24 files changed

+1348
-82
lines changed

bigquerydatatransfer/v1/bigquerydatatransfer-api.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@
13421342
}
13431343
}
13441344
},
1345-
"revision": "20230715",
1345+
"revision": "20230722",
13461346
"rootUrl": "https://bigquerydatatransfer.googleapis.com/",
13471347
"schemas": {
13481348
"CheckValidCredsRequest": {
@@ -1601,6 +1601,17 @@
16011601
"properties": {},
16021602
"type": "object"
16031603
},
1604+
"EncryptionConfiguration": {
1605+
"description": "Represents the encryption configuration for a transfer.",
1606+
"id": "EncryptionConfiguration",
1607+
"properties": {
1608+
"kmsKeyName": {
1609+
"description": "The name of the KMS key used for encrypting BigQuery data.",
1610+
"type": "string"
1611+
}
1612+
},
1613+
"type": "object"
1614+
},
16041615
"EnrollDataSourcesRequest": {
16051616
"description": "A request to enroll a set of data sources so they are visible in the BigQuery UI's `Transfer` tab.",
16061617
"id": "EnrollDataSourcesRequest",
@@ -1906,6 +1917,10 @@
19061917
"$ref": "EmailPreferences",
19071918
"description": "Email notifications will be sent according to these preferences to the email address of the user who owns this transfer config."
19081919
},
1920+
"encryptionConfiguration": {
1921+
"$ref": "EncryptionConfiguration",
1922+
"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."
1923+
},
19091924
"name": {
19101925
"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.",
19111926
"type": "string"

bigquerydatatransfer/v1/bigquerydatatransfer-gen.go

Lines changed: 38 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chat/v1/chat-api.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@
678678
]
679679
},
680680
"list": {
681-
"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.",
681+
"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.",
682682
"flatPath": "v1/spaces/{spacesId}/messages",
683683
"httpMethod": "GET",
684684
"id": "chat.spaces.messages.list",
@@ -954,7 +954,7 @@
954954
}
955955
}
956956
},
957-
"revision": "20230718",
957+
"revision": "20230723",
958958
"rootUrl": "https://chat.googleapis.com/",
959959
"schemas": {
960960
"ActionParameter": {
@@ -3379,6 +3379,10 @@
33793379
"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.",
33803380
"type": "string"
33813381
},
3382+
"externalUserAllowed": {
3383+
"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.",
3384+
"type": "boolean"
3385+
},
33823386
"name": {
33833387
"description": "Resource name of the space. Format: `spaces/{space}`",
33843388
"type": "string"

chat/v1/chat-gen.go

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

checks/v1alpha/checks-api.json

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,44 @@
355355
"response": {
356356
"$ref": "PrivacyPolicy"
357357
}
358+
},
359+
"list": {
360+
"description": "Lists privacy policies.",
361+
"flatPath": "v1alpha/projects/{projectsId}/privacyPolicies",
362+
"httpMethod": "GET",
363+
"id": "checks.projects.privacyPolicies.list",
364+
"parameterOrder": [
365+
"parent"
366+
],
367+
"parameters": {
368+
"filter": {
369+
"description": "Optional. A filter string to filters results. The filter syntax is defined by AIP-160 (https://google.aip.dev/160).",
370+
"location": "query",
371+
"type": "string"
372+
},
373+
"pageSize": {
374+
"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.",
375+
"format": "int32",
376+
"location": "query",
377+
"type": "integer"
378+
},
379+
"pageToken": {
380+
"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.",
381+
"location": "query",
382+
"type": "string"
383+
},
384+
"parent": {
385+
"description": "Required. Resource name of the parent project, in the format `projects/{projectNumber}`.",
386+
"location": "path",
387+
"pattern": "^projects/[^/]+$",
388+
"required": true,
389+
"type": "string"
390+
}
391+
},
392+
"path": "v1alpha/{+parent}/privacyPolicies",
393+
"response": {
394+
"$ref": "ListPrivacyPoliciesResponse"
395+
}
358396
}
359397
}
360398
},
@@ -516,7 +554,7 @@
516554
}
517555
}
518556
},
519-
"revision": "20230723",
557+
"revision": "20230725",
520558
"rootUrl": "https://checks.googleapis.com/",
521559
"schemas": {
522560
"AnalyzePrivacyPolicyRequest": {
@@ -658,6 +696,24 @@
658696
},
659697
"type": "object"
660698
},
699+
"ListPrivacyPoliciesResponse": {
700+
"description": "Response message for `ListPrivacyPolicies`.",
701+
"id": "ListPrivacyPoliciesResponse",
702+
"properties": {
703+
"nextPageToken": {
704+
"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.",
705+
"type": "string"
706+
},
707+
"privacyPolicies": {
708+
"description": "The privacy policies.",
709+
"items": {
710+
"$ref": "PrivacyPolicy"
711+
},
712+
"type": "array"
713+
}
714+
},
715+
"type": "object"
716+
},
661717
"Operation": {
662718
"description": "This resource represents a long-running operation that is the result of a network API call.",
663719
"id": "Operation",

0 commit comments

Comments
 (0)