Skip to content
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

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

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 45 additions & 1 deletion connectors/v1/connectors-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1832,7 +1832,7 @@
}
}
},
"revision": "20231024",
"revision": "20231031",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -2868,6 +2868,31 @@
"properties": {},
"type": "object"
},
"EncryptionConfig": {
"description": "Regional encryption config for CMEK details.",
"id": "EncryptionConfig",
"properties": {
"encryptionType": {
"description": "Optional. Encryption type for the region.",
"enum": [
"ENCRYPTION_TYPE_UNSPECIFIED",
"GMEK",
"CMEK"
],
"enumDescriptions": [
"Egress mode unspecified.",
"Network egress through auto assigned IPs.",
"Network egress through static IPs."
],
"type": "string"
},
"kmsKeyName": {
"description": "Optional. KMS crypto key. This field accepts identifiers of the form `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/ {crypto_key}`",
"type": "string"
}
},
"type": "object"
},
"EncryptionKey": {
"description": "Encryption Key value.",
"id": "EncryptionKey",
Expand Down Expand Up @@ -3278,6 +3303,21 @@
},
"readOnly": true,
"type": "array"
},
"type": {
"description": "Output only. The type of the event listener for a specific connector.",
"enum": [
"TYPE_UNSPECIFIED",
"WEBHOOK",
"JMS"
],
"enumDescriptions": [
"Default value.",
"Webhook listener. e.g. Jira, Zendesk, Servicenow etc.,",
"JMS Listener. e.g. IBM MQ, Rabbit MQ etc.,"
],
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -4760,6 +4800,10 @@
"description": "Regional Settings details.",
"id": "RegionalSettings",
"properties": {
"encryptionConfig": {
"$ref": "EncryptionConfig",
"description": "Optional. Regional encryption config to hold CMEK details."
},
"name": {
"description": "Output only. Resource name of the Connection. Format: projects/{project}/locations/{location}/regionalSettings",
"readOnly": true,
Expand Down
68 changes: 61 additions & 7 deletions connectors/v1/connectors-gen.go

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