Skip to content

Commit

Permalink
feat(connectors): update the api
Browse files Browse the repository at this point in the history
#### connectors:v1

The following keys were added:
- schemas.EncryptionConfig (Total Keys: 4)
- schemas.EventingDetails.properties.type (Total Keys: 2)
- schemas.RegionalSettings.properties.encryptionConfig.$ref (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Nov 7, 2023
1 parent 213ed99 commit eb2ae22
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/dyn/connectors_v1.projects.locations.html
Expand Up @@ -168,6 +168,10 @@ <h3>Method Details</h3>
An object of the form:

{ # Regional Settings details.
&quot;encryptionConfig&quot;: { # Regional encryption config for CMEK details. # Optional. Regional encryption config to hold CMEK details.
&quot;encryptionType&quot;: &quot;A String&quot;, # Optional. Encryption type for the region.
&quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. KMS crypto key. This field accepts identifiers of the form `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/ {crypto_key}`
},
&quot;name&quot;: &quot;A String&quot;, # Output only. Resource name of the Connection. Format: projects/{project}/locations/{location}/regionalSettings
&quot;networkConfig&quot;: { # Regional Network Config. # Optional. Regional network config.
&quot;egressIps&quot;: [ # Output only. Egress IPs
Expand Down Expand Up @@ -265,6 +269,10 @@ <h3>Method Details</h3>
The object takes the form of:

{ # Regional Settings details.
&quot;encryptionConfig&quot;: { # Regional encryption config for CMEK details. # Optional. Regional encryption config to hold CMEK details.
&quot;encryptionType&quot;: &quot;A String&quot;, # Optional. Encryption type for the region.
&quot;kmsKeyName&quot;: &quot;A String&quot;, # Optional. KMS crypto key. This field accepts identifiers of the form `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/ {crypto_key}`
},
&quot;name&quot;: &quot;A String&quot;, # Output only. Resource name of the Connection. Format: projects/{project}/locations/{location}/regionalSettings
&quot;networkConfig&quot;: { # Regional Network Config. # Optional. Regional network config.
&quot;egressIps&quot;: [ # Output only. Egress IPs
Expand Down
Expand Up @@ -126,6 +126,7 @@ <h3>Method Details</h3>
&quot;searchTags&quot;: [ # Output only. Array of search keywords.
&quot;A String&quot;,
],
&quot;type&quot;: &quot;A String&quot;, # Output only. The type of the event listener for a specific connector.
},
&quot;externalUri&quot;: &quot;A String&quot;, # Output only. Link to external page.
&quot;labels&quot;: { # Output only. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources
Expand Down Expand Up @@ -172,6 +173,7 @@ <h3>Method Details</h3>
&quot;searchTags&quot;: [ # Output only. Array of search keywords.
&quot;A String&quot;,
],
&quot;type&quot;: &quot;A String&quot;, # Output only. The type of the event listener for a specific connector.
},
&quot;externalUri&quot;: &quot;A String&quot;, # Output only. Link to external page.
&quot;labels&quot;: { # Output only. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources
Expand Down
46 changes: 45 additions & 1 deletion googleapiclient/discovery_cache/documents/connectors.v1.json
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
Expand Up @@ -558,7 +558,7 @@
}
}
},
"revision": "20231024",
"revision": "20231031",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"Action": {
Expand Down

0 comments on commit eb2ae22

Please sign in to comment.