Skip to content

Commit

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

The following keys were added:
- schemas.GoogleCloudConnectorsV1EventingRuntimeData.properties.webhookData (Total Keys: 2)
- schemas.GoogleCloudConnectorsV1EventingRuntimeDataWebhookData (Total Keys: 18)
  • Loading branch information
yoshi-automation committed Mar 19, 2024
1 parent 37e25c0 commit 56a1036
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 1 deletion.
22 changes: 22 additions & 0 deletions docs/dyn/integrations_v1alpha.projects.locations.connections.html
Expand Up @@ -446,6 +446,28 @@ <h3>Method Details</h3>
&quot;description&quot;: &quot;A String&quot;, # Output only. Description of error if State is set to &quot;ERROR&quot;.
&quot;state&quot;: &quot;A String&quot;, # Output only. State.
},
&quot;webhookData&quot;: { # WebhookData has details of webhook configuration. # Output only. Webhook data.
&quot;additionalVariables&quot;: [ # Output only. Additional webhook related field values.
{ # ConfigVariable represents a configuration variable present in a Connection. or AuthConfig.
&quot;boolValue&quot;: True or False, # Value is a bool.
&quot;encryptionKeyValue&quot;: { # Encryption Key value. # Value is a Encryption Key.
&quot;kmsKeyName&quot;: &quot;A String&quot;, # The [KMS key name] with which the content of the Operation is encrypted. The expected format: `projects/*/locations/*/keyRings/*/cryptoKeys/*`. Will be empty string if google managed.
&quot;type&quot;: &quot;A String&quot;, # Type.
},
&quot;intValue&quot;: &quot;A String&quot;, # Value is an integer
&quot;key&quot;: &quot;A String&quot;, # Key of the config variable.
&quot;secretValue&quot;: { # Secret provides a reference to entries in Secret Manager. # Value is a secret.
&quot;secretVersion&quot;: &quot;A String&quot;, # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
},
&quot;stringValue&quot;: &quot;A String&quot;, # Value is a string.
},
],
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Timestamp when the webhook was created.
&quot;id&quot;: &quot;A String&quot;, # Output only. ID to uniquely identify webhook.
&quot;name&quot;: &quot;A String&quot;, # Output only. Name of the Webhook
&quot;nextRefreshTime&quot;: &quot;A String&quot;, # Output only. Next webhook refresh time. Will be null if refresh is not supported.
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. Timestamp when the webhook was last updated.
},
},
&quot;imageLocation&quot;: &quot;A String&quot;, # Output only. GCR location where the runtime image is stored. formatted like: gcr.io/{bucketName}/{imageName}
&quot;isTrustedTester&quot;: True or False, # Output only. Is trusted tester program enabled for the project.
Expand Down
Expand Up @@ -3299,7 +3299,7 @@
}
}
},
"revision": "20240226",
"revision": "20240305",
"rootUrl": "https://integrations.googleapis.com/",
"schemas": {
"CrmlogErrorCode": {
Expand Down Expand Up @@ -8569,6 +8569,54 @@ false
"$ref": "GoogleCloudConnectorsV1EventingStatus",
"description": "Output only. Current status of eventing.",
"readOnly": true
},
"webhookData": {
"$ref": "GoogleCloudConnectorsV1EventingRuntimeDataWebhookData",
"description": "Output only. Webhook data.",
"readOnly": true
}
},
"type": "object"
},
"GoogleCloudConnectorsV1EventingRuntimeDataWebhookData": {
"description": "WebhookData has details of webhook configuration.",
"id": "GoogleCloudConnectorsV1EventingRuntimeDataWebhookData",
"properties": {
"additionalVariables": {
"description": "Output only. Additional webhook related field values.",
"items": {
"$ref": "GoogleCloudConnectorsV1ConfigVariable"
},
"readOnly": true,
"type": "array"
},
"createTime": {
"description": "Output only. Timestamp when the webhook was created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"id": {
"description": "Output only. ID to uniquely identify webhook.",
"readOnly": true,
"type": "string"
},
"name": {
"description": "Output only. Name of the Webhook",
"readOnly": true,
"type": "string"
},
"nextRefreshTime": {
"description": "Output only. Next webhook refresh time. Will be null if refresh is not supported.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"updateTime": {
"description": "Output only. Timestamp when the webhook was last updated.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down

0 comments on commit 56a1036

Please sign in to comment.