Skip to content

Commit 1acf476

Browse files
feat(integrations): update the api
#### integrations:v1 The following keys were added: - schemas.GoogleCloudConnectorsV1EventingRuntimeData.properties.webhookSubscriptions (Total Keys: 2) - schemas.GoogleCloudConnectorsV1EventingRuntimeDataWebhookSubscriptions (Total Keys: 5)
1 parent df6252a commit 1acf476

File tree

3 files changed

+49
-3
lines changed

3 files changed

+49
-3
lines changed

docs/dyn/integrations_v1.projects.locations.connections.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,6 +497,32 @@ <h3>Method Details</h3>
497497
&quot;nextRefreshTime&quot;: &quot;A String&quot;, # Output only. Next webhook refresh time. Will be null if refresh is not supported.
498498
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. Timestamp when the webhook was last updated.
499499
},
500+
&quot;webhookSubscriptions&quot;: { # WebhookSubscriptions has details of webhook subscriptions. # Output only. Webhook subscriptions.
501+
&quot;webhookData&quot;: [ # Output only. Webhook data.
502+
{ # WebhookData has details of webhook configuration.
503+
&quot;additionalVariables&quot;: [ # Output only. Additional webhook related field values.
504+
{ # ConfigVariable represents a configuration variable present in a Connection. or AuthConfig.
505+
&quot;boolValue&quot;: True or False, # Value is a bool.
506+
&quot;encryptionKeyValue&quot;: { # Encryption Key value. # Value is a Encryption Key.
507+
&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.
508+
&quot;type&quot;: &quot;A String&quot;, # Type.
509+
},
510+
&quot;intValue&quot;: &quot;A String&quot;, # Value is an integer
511+
&quot;key&quot;: &quot;A String&quot;, # Key of the config variable.
512+
&quot;secretValue&quot;: { # Secret provides a reference to entries in Secret Manager. # Value is a secret.
513+
&quot;secretVersion&quot;: &quot;A String&quot;, # The resource name of the secret version in the format, format as: `projects/*/secrets/*/versions/*`.
514+
},
515+
&quot;stringValue&quot;: &quot;A String&quot;, # Value is a string.
516+
},
517+
],
518+
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Timestamp when the webhook was created.
519+
&quot;id&quot;: &quot;A String&quot;, # Output only. ID to uniquely identify webhook.
520+
&quot;name&quot;: &quot;A String&quot;, # Output only. Name of the Webhook
521+
&quot;nextRefreshTime&quot;: &quot;A String&quot;, # Output only. Next webhook refresh time. Will be null if refresh is not supported.
522+
&quot;updateTime&quot;: &quot;A String&quot;, # Output only. Timestamp when the webhook was last updated.
523+
},
524+
],
525+
},
500526
},
501527
&quot;host&quot;: &quot;A String&quot;, # Output only. The name of the Hostname of the Service Directory service with TLS.
502528
&quot;imageLocation&quot;: &quot;A String&quot;, # Output only. GCR location where the runtime image is stored. formatted like: gcr.io/{bucketName}/{imageName}

docs/dyn/integrations_v1.projects.locations.integrations.executions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ <h3>Method Details</h3>
13271327
<pre>Re-execute an existing execution, with same request parameters and execution strategy.
13281328

13291329
Args:
1330-
name: string, Required. Next ID: 3 The execution resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration}/executions/{execution_id} (required)
1330+
name: string, Required. Next ID: 5 The execution resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration}/executions/{execution_id} (required)
13311331
body: object, The request body.
13321332
The object takes the form of:
13331333

googleapiclient/discovery_cache/documents/integrations.v1.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@
14191419
],
14201420
"parameters": {
14211421
"name": {
1422-
"description": "Required. Next ID: 3 The execution resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration}/executions/{execution_id}",
1422+
"description": "Required. Next ID: 5 The execution resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration}/executions/{execution_id}",
14231423
"location": "path",
14241424
"pattern": "^projects/[^/]+/locations/[^/]+/integrations/[^/]+/executions/[^/]+$",
14251425
"required": true,
@@ -4497,7 +4497,7 @@
44974497
}
44984498
}
44994499
},
4500-
"revision": "20241020",
4500+
"revision": "20241028",
45014501
"rootUrl": "https://integrations.googleapis.com/",
45024502
"schemas": {
45034503
"CrmlogErrorCode": {
@@ -9876,6 +9876,11 @@ false
98769876
"$ref": "GoogleCloudConnectorsV1EventingRuntimeDataWebhookData",
98779877
"description": "Output only. Webhook data.",
98789878
"readOnly": true
9879+
},
9880+
"webhookSubscriptions": {
9881+
"$ref": "GoogleCloudConnectorsV1EventingRuntimeDataWebhookSubscriptions",
9882+
"description": "Output only. Webhook subscriptions.",
9883+
"readOnly": true
98799884
}
98809885
},
98819886
"type": "object"
@@ -9923,6 +9928,21 @@ false
99239928
},
99249929
"type": "object"
99259930
},
9931+
"GoogleCloudConnectorsV1EventingRuntimeDataWebhookSubscriptions": {
9932+
"description": "WebhookSubscriptions has details of webhook subscriptions.",
9933+
"id": "GoogleCloudConnectorsV1EventingRuntimeDataWebhookSubscriptions",
9934+
"properties": {
9935+
"webhookData": {
9936+
"description": "Output only. Webhook data.",
9937+
"items": {
9938+
"$ref": "GoogleCloudConnectorsV1EventingRuntimeDataWebhookData"
9939+
},
9940+
"readOnly": true,
9941+
"type": "array"
9942+
}
9943+
},
9944+
"type": "object"
9945+
},
99269946
"GoogleCloudConnectorsV1EventingStatus": {
99279947
"description": "EventingStatus indicates the state of eventing.",
99289948
"id": "GoogleCloudConnectorsV1EventingStatus",

0 commit comments

Comments
 (0)