Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2252)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Nov 6, 2023
1 parent c08d405 commit 7529003
Show file tree
Hide file tree
Showing 2 changed files with 106 additions and 8 deletions.
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.

0 comments on commit 7529003

Please sign in to comment.