google-apis-integrations_v1alpha 0.9.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/integrations_v1alpha/classes.rb +303 -1
- data/lib/google/apis/integrations_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/integrations_v1alpha/representations.rb +99 -0
- data/lib/google/apis/integrations_v1alpha/service.rb +48 -12
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: edf76d40c7cb899c2e373b8bb4c37823b3fc24e4de046873105b8a6f80b6ed12
|
4
|
+
data.tar.gz: d7a8baf576f2d9c028d072615b0924816278930a9dd8a8e5538f578a3ce74f6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6e92243fc75bc2046a1693341786994143116424c45769cae8663c580fc9a6b08e78dfb3fc78c0da828ab9c91e5f6aef98953b66cbf1896fbd99ba23939c502
|
7
|
+
data.tar.gz: b51389822a6bb795eb2cb3005647d025d64ac192443fe938eb17f17107e96e5ec41ae75a4a47bdd01d403d1d55cac6708b97e58083a3bad1ecdb986857e2761d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-integrations_v1alpha
|
2
2
|
|
3
|
+
### v0.11.0 (2023-03-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230303
|
6
|
+
|
7
|
+
### v0.10.0 (2023-02-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230222
|
10
|
+
|
3
11
|
### v0.9.0 (2023-02-15)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -388,6 +388,58 @@ module Google
|
|
388
388
|
end
|
389
389
|
end
|
390
390
|
|
391
|
+
#
|
392
|
+
class EnterpriseCrmEventbusProtoCloudKmsConfig
|
393
|
+
include Google::Apis::Core::Hashable
|
394
|
+
|
395
|
+
# Optional. The id of GCP project where the KMS key is stored. If not provided,
|
396
|
+
# assume the key is stored in the same GCP project defined in Client (tag 14).
|
397
|
+
# Corresponds to the JSON property `gcpProjectId`
|
398
|
+
# @return [String]
|
399
|
+
attr_accessor :gcp_project_id
|
400
|
+
|
401
|
+
# A Cloud KMS key is a named object containing one or more key versions, along
|
402
|
+
# with metadata for the key. A key exists on exactly one key ring tied to a
|
403
|
+
# specific location.
|
404
|
+
# Corresponds to the JSON property `keyName`
|
405
|
+
# @return [String]
|
406
|
+
attr_accessor :key_name
|
407
|
+
|
408
|
+
# A key ring organizes keys in a specific Google Cloud location and allows you
|
409
|
+
# to manage access control on groups of keys. A key ring's name does not need to
|
410
|
+
# be unique across a Google Cloud project, but must be unique within a given
|
411
|
+
# location.
|
412
|
+
# Corresponds to the JSON property `keyRingName`
|
413
|
+
# @return [String]
|
414
|
+
attr_accessor :key_ring_name
|
415
|
+
|
416
|
+
# Optional. Each version of a key contains key material used for encryption or
|
417
|
+
# signing. A key's version is represented by an integer, starting at 1. To
|
418
|
+
# decrypt data or verify a signature, you must use the same key version that was
|
419
|
+
# used to encrypt or sign the data.
|
420
|
+
# Corresponds to the JSON property `keyVersionName`
|
421
|
+
# @return [String]
|
422
|
+
attr_accessor :key_version_name
|
423
|
+
|
424
|
+
# Location name of the key ring, e.g. "us-west1".
|
425
|
+
# Corresponds to the JSON property `locationName`
|
426
|
+
# @return [String]
|
427
|
+
attr_accessor :location_name
|
428
|
+
|
429
|
+
def initialize(**args)
|
430
|
+
update!(**args)
|
431
|
+
end
|
432
|
+
|
433
|
+
# Update properties of this object
|
434
|
+
def update!(**args)
|
435
|
+
@gcp_project_id = args[:gcp_project_id] if args.key?(:gcp_project_id)
|
436
|
+
@key_name = args[:key_name] if args.key?(:key_name)
|
437
|
+
@key_ring_name = args[:key_ring_name] if args.key?(:key_ring_name)
|
438
|
+
@key_version_name = args[:key_version_name] if args.key?(:key_version_name)
|
439
|
+
@location_name = args[:location_name] if args.key?(:location_name)
|
440
|
+
end
|
441
|
+
end
|
442
|
+
|
391
443
|
# Cloud Scheduler Trigger configuration
|
392
444
|
class EnterpriseCrmEventbusProtoCloudSchedulerConfig
|
393
445
|
include Google::Apis::Core::Hashable
|
@@ -2446,11 +2498,27 @@ module Google
|
|
2446
2498
|
# @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit]
|
2447
2499
|
attr_accessor :audit
|
2448
2500
|
|
2501
|
+
# The event data user sends as request.
|
2502
|
+
# Corresponds to the JSON property `clientId`
|
2503
|
+
# @return [String]
|
2504
|
+
attr_accessor :client_id
|
2505
|
+
|
2506
|
+
# KMS info, used by cmek/gmek integration
|
2507
|
+
# Corresponds to the JSON property `cloudKmsConfig`
|
2508
|
+
# @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCloudKmsConfig]
|
2509
|
+
attr_accessor :cloud_kms_config
|
2510
|
+
|
2449
2511
|
# Auto-generated.
|
2450
2512
|
# Corresponds to the JSON property `createdTimestamp`
|
2451
2513
|
# @return [String]
|
2452
2514
|
attr_accessor :created_timestamp
|
2453
2515
|
|
2516
|
+
# Encrypted SuspensionResolutionInfo
|
2517
|
+
# Corresponds to the JSON property `encryptedSuspensionResolutionInfo`
|
2518
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
2519
|
+
# @return [String]
|
2520
|
+
attr_accessor :encrypted_suspension_resolution_info
|
2521
|
+
|
2454
2522
|
# Required. ID of the associated execution.
|
2455
2523
|
# Corresponds to the JSON property `eventExecutionInfoId`
|
2456
2524
|
# @return [String]
|
@@ -2497,6 +2565,12 @@ module Google
|
|
2497
2565
|
# @return [String]
|
2498
2566
|
attr_accessor :workflow_name
|
2499
2567
|
|
2568
|
+
# Wrapped dek
|
2569
|
+
# Corresponds to the JSON property `wrappedDek`
|
2570
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
2571
|
+
# @return [String]
|
2572
|
+
attr_accessor :wrapped_dek
|
2573
|
+
|
2500
2574
|
def initialize(**args)
|
2501
2575
|
update!(**args)
|
2502
2576
|
end
|
@@ -2504,7 +2578,10 @@ module Google
|
|
2504
2578
|
# Update properties of this object
|
2505
2579
|
def update!(**args)
|
2506
2580
|
@audit = args[:audit] if args.key?(:audit)
|
2581
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
2582
|
+
@cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
|
2507
2583
|
@created_timestamp = args[:created_timestamp] if args.key?(:created_timestamp)
|
2584
|
+
@encrypted_suspension_resolution_info = args[:encrypted_suspension_resolution_info] if args.key?(:encrypted_suspension_resolution_info)
|
2508
2585
|
@event_execution_info_id = args[:event_execution_info_id] if args.key?(:event_execution_info_id)
|
2509
2586
|
@external_traffic = args[:external_traffic] if args.key?(:external_traffic)
|
2510
2587
|
@last_modified_timestamp = args[:last_modified_timestamp] if args.key?(:last_modified_timestamp)
|
@@ -2514,6 +2591,7 @@ module Google
|
|
2514
2591
|
@suspension_id = args[:suspension_id] if args.key?(:suspension_id)
|
2515
2592
|
@task_number = args[:task_number] if args.key?(:task_number)
|
2516
2593
|
@workflow_name = args[:workflow_name] if args.key?(:workflow_name)
|
2594
|
+
@wrapped_dek = args[:wrapped_dek] if args.key?(:wrapped_dek)
|
2517
2595
|
end
|
2518
2596
|
end
|
2519
2597
|
|
@@ -4206,6 +4284,17 @@ module Google
|
|
4206
4284
|
attr_accessor :disable_strict_type_validation
|
4207
4285
|
alias_method :disable_strict_type_validation?, :disable_strict_type_validation
|
4208
4286
|
|
4287
|
+
# Optional Error catcher id of the error catch flow which will be executed when
|
4288
|
+
# execution error happens in the task
|
4289
|
+
# Corresponds to the JSON property `errorCatcherId`
|
4290
|
+
# @return [String]
|
4291
|
+
attr_accessor :error_catcher_id
|
4292
|
+
|
4293
|
+
#
|
4294
|
+
# Corresponds to the JSON property `externalTaskType`
|
4295
|
+
# @return [String]
|
4296
|
+
attr_accessor :external_task_type
|
4297
|
+
|
4209
4298
|
# Policy that defines the task retry logic and failure type. If no FailurePolicy
|
4210
4299
|
# is defined for a task, all its dependent tasks will not be executed (i.e, a `
|
4211
4300
|
# retry_strategy` of NONE will be applied).
|
@@ -4337,6 +4426,8 @@ module Google
|
|
4337
4426
|
@creator_email = args[:creator_email] if args.key?(:creator_email)
|
4338
4427
|
@description = args[:description] if args.key?(:description)
|
4339
4428
|
@disable_strict_type_validation = args[:disable_strict_type_validation] if args.key?(:disable_strict_type_validation)
|
4429
|
+
@error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
|
4430
|
+
@external_task_type = args[:external_task_type] if args.key?(:external_task_type)
|
4340
4431
|
@failure_policy = args[:failure_policy] if args.key?(:failure_policy)
|
4341
4432
|
@incoming_edge_count = args[:incoming_edge_count] if args.key?(:incoming_edge_count)
|
4342
4433
|
@json_validation_option = args[:json_validation_option] if args.key?(:json_validation_option)
|
@@ -4414,7 +4505,7 @@ module Google
|
|
4414
4505
|
end
|
4415
4506
|
end
|
4416
4507
|
|
4417
|
-
# Configuration detail of a trigger. Next available id:
|
4508
|
+
# Configuration detail of a trigger. Next available id: 19
|
4418
4509
|
class EnterpriseCrmFrontendsEventbusProtoTriggerConfig
|
4419
4510
|
include Google::Apis::Core::Hashable
|
4420
4511
|
|
@@ -4446,6 +4537,12 @@ module Google
|
|
4446
4537
|
# @return [Array<String>]
|
4447
4538
|
attr_accessor :enabled_clients
|
4448
4539
|
|
4540
|
+
# Optional Error catcher id of the error catch flow which will be executed when
|
4541
|
+
# execution error happens in the task
|
4542
|
+
# Corresponds to the JSON property `errorCatcherId`
|
4543
|
+
# @return [String]
|
4544
|
+
attr_accessor :error_catcher_id
|
4545
|
+
|
4449
4546
|
# The user created label for a particular trigger.
|
4450
4547
|
# Corresponds to the JSON property `label`
|
4451
4548
|
# @return [String]
|
@@ -4518,6 +4615,7 @@ module Google
|
|
4518
4615
|
@cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
|
4519
4616
|
@description = args[:description] if args.key?(:description)
|
4520
4617
|
@enabled_clients = args[:enabled_clients] if args.key?(:enabled_clients)
|
4618
|
+
@error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
|
4521
4619
|
@label = args[:label] if args.key?(:label)
|
4522
4620
|
@next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
|
4523
4621
|
@pause_workflow_executions = args[:pause_workflow_executions] if args.key?(:pause_workflow_executions)
|
@@ -5075,6 +5173,11 @@ module Google
|
|
5075
5173
|
# @return [String]
|
5076
5174
|
attr_accessor :service_directory
|
5077
5175
|
|
5176
|
+
# SSL Configuration of a connection
|
5177
|
+
# Corresponds to the JSON property `sslConfig`
|
5178
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1SslConfig]
|
5179
|
+
attr_accessor :ssl_config
|
5180
|
+
|
5078
5181
|
# ConnectionStatus indicates the state of the connection.
|
5079
5182
|
# Corresponds to the JSON property `status`
|
5080
5183
|
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConnectionStatus]
|
@@ -5111,6 +5214,7 @@ module Google
|
|
5111
5214
|
@node_config = args[:node_config] if args.key?(:node_config)
|
5112
5215
|
@service_account = args[:service_account] if args.key?(:service_account)
|
5113
5216
|
@service_directory = args[:service_directory] if args.key?(:service_directory)
|
5217
|
+
@ssl_config = args[:ssl_config] if args.key?(:ssl_config)
|
5114
5218
|
@status = args[:status] if args.key?(:status)
|
5115
5219
|
@suspended = args[:suspended] if args.key?(:suspended)
|
5116
5220
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -5276,6 +5380,80 @@ module Google
|
|
5276
5380
|
end
|
5277
5381
|
end
|
5278
5382
|
|
5383
|
+
# SSL Configuration of a connection
|
5384
|
+
class GoogleCloudConnectorsV1SslConfig
|
5385
|
+
include Google::Apis::Core::Hashable
|
5386
|
+
|
5387
|
+
# Additional SSL related field values
|
5388
|
+
# Corresponds to the JSON property `additionalVariables`
|
5389
|
+
# @return [Array<Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable>]
|
5390
|
+
attr_accessor :additional_variables
|
5391
|
+
|
5392
|
+
# Type of Client Cert (PEM/JKS/.. etc.)
|
5393
|
+
# Corresponds to the JSON property `clientCertType`
|
5394
|
+
# @return [String]
|
5395
|
+
attr_accessor :client_cert_type
|
5396
|
+
|
5397
|
+
# Secret provides a reference to entries in Secret Manager.
|
5398
|
+
# Corresponds to the JSON property `clientCertificate`
|
5399
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
|
5400
|
+
attr_accessor :client_certificate
|
5401
|
+
|
5402
|
+
# Secret provides a reference to entries in Secret Manager.
|
5403
|
+
# Corresponds to the JSON property `clientPrivateKey`
|
5404
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
|
5405
|
+
attr_accessor :client_private_key
|
5406
|
+
|
5407
|
+
# Secret provides a reference to entries in Secret Manager.
|
5408
|
+
# Corresponds to the JSON property `clientPrivateKeyPass`
|
5409
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
|
5410
|
+
attr_accessor :client_private_key_pass
|
5411
|
+
|
5412
|
+
# Secret provides a reference to entries in Secret Manager.
|
5413
|
+
# Corresponds to the JSON property `privateServerCertificate`
|
5414
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret]
|
5415
|
+
attr_accessor :private_server_certificate
|
5416
|
+
|
5417
|
+
# Type of Server Cert (PEM/JKS/.. etc.)
|
5418
|
+
# Corresponds to the JSON property `serverCertType`
|
5419
|
+
# @return [String]
|
5420
|
+
attr_accessor :server_cert_type
|
5421
|
+
|
5422
|
+
# Trust Model of the SSL connection
|
5423
|
+
# Corresponds to the JSON property `trustModel`
|
5424
|
+
# @return [String]
|
5425
|
+
attr_accessor :trust_model
|
5426
|
+
|
5427
|
+
# Controls the ssl type for the given connector version.
|
5428
|
+
# Corresponds to the JSON property `type`
|
5429
|
+
# @return [String]
|
5430
|
+
attr_accessor :type
|
5431
|
+
|
5432
|
+
# Bool for enabling SSL
|
5433
|
+
# Corresponds to the JSON property `useSsl`
|
5434
|
+
# @return [Boolean]
|
5435
|
+
attr_accessor :use_ssl
|
5436
|
+
alias_method :use_ssl?, :use_ssl
|
5437
|
+
|
5438
|
+
def initialize(**args)
|
5439
|
+
update!(**args)
|
5440
|
+
end
|
5441
|
+
|
5442
|
+
# Update properties of this object
|
5443
|
+
def update!(**args)
|
5444
|
+
@additional_variables = args[:additional_variables] if args.key?(:additional_variables)
|
5445
|
+
@client_cert_type = args[:client_cert_type] if args.key?(:client_cert_type)
|
5446
|
+
@client_certificate = args[:client_certificate] if args.key?(:client_certificate)
|
5447
|
+
@client_private_key = args[:client_private_key] if args.key?(:client_private_key)
|
5448
|
+
@client_private_key_pass = args[:client_private_key_pass] if args.key?(:client_private_key_pass)
|
5449
|
+
@private_server_certificate = args[:private_server_certificate] if args.key?(:private_server_certificate)
|
5450
|
+
@server_cert_type = args[:server_cert_type] if args.key?(:server_cert_type)
|
5451
|
+
@trust_model = args[:trust_model] if args.key?(:trust_model)
|
5452
|
+
@type = args[:type] if args.key?(:type)
|
5453
|
+
@use_ssl = args[:use_ssl] if args.key?(:use_ssl)
|
5454
|
+
end
|
5455
|
+
end
|
5456
|
+
|
5279
5457
|
# The access token represents the authorization of a specific application to
|
5280
5458
|
# access specific parts of a user’s data.
|
5281
5459
|
class GoogleCloudIntegrationsV1alphaAccessToken
|
@@ -5743,6 +5921,31 @@ module Google
|
|
5743
5921
|
end
|
5744
5922
|
end
|
5745
5923
|
|
5924
|
+
# Configuration detail of coordinate, it used for UI
|
5925
|
+
class GoogleCloudIntegrationsV1alphaCoordinate
|
5926
|
+
include Google::Apis::Core::Hashable
|
5927
|
+
|
5928
|
+
# Required. X axis of the coordinate
|
5929
|
+
# Corresponds to the JSON property `x`
|
5930
|
+
# @return [Fixnum]
|
5931
|
+
attr_accessor :x
|
5932
|
+
|
5933
|
+
# Required. Y axis of the coordinate
|
5934
|
+
# Corresponds to the JSON property `y`
|
5935
|
+
# @return [Fixnum]
|
5936
|
+
attr_accessor :y
|
5937
|
+
|
5938
|
+
def initialize(**args)
|
5939
|
+
update!(**args)
|
5940
|
+
end
|
5941
|
+
|
5942
|
+
# Update properties of this object
|
5943
|
+
def update!(**args)
|
5944
|
+
@x = args[:x] if args.key?(:x)
|
5945
|
+
@y = args[:y] if args.key?(:y)
|
5946
|
+
end
|
5947
|
+
end
|
5948
|
+
|
5746
5949
|
# Request for CreateAppsScriptProject rpc call.
|
5747
5950
|
class GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
|
5748
5951
|
include Google::Apis::Core::Hashable
|
@@ -5925,6 +6128,60 @@ module Google
|
|
5925
6128
|
end
|
5926
6129
|
end
|
5927
6130
|
|
6131
|
+
# Configuration detail of a error catch task
|
6132
|
+
class GoogleCloudIntegrationsV1alphaErrorCatcherConfig
|
6133
|
+
include Google::Apis::Core::Hashable
|
6134
|
+
|
6135
|
+
# Optional. User-provided description intended to give more business context
|
6136
|
+
# about the error catcher config.
|
6137
|
+
# Corresponds to the JSON property `description`
|
6138
|
+
# @return [String]
|
6139
|
+
attr_accessor :description
|
6140
|
+
|
6141
|
+
# Required. An error catcher id is string representation for the error catcher
|
6142
|
+
# config. Within a workflow, error_catcher_id uniquely identifies an error
|
6143
|
+
# catcher config among all error catcher configs for the workflow
|
6144
|
+
# Corresponds to the JSON property `errorCatcherId`
|
6145
|
+
# @return [String]
|
6146
|
+
attr_accessor :error_catcher_id
|
6147
|
+
|
6148
|
+
# Required. A number to uniquely identify each error catcher config within the
|
6149
|
+
# workflow on UI.
|
6150
|
+
# Corresponds to the JSON property `errorCatcherNumber`
|
6151
|
+
# @return [String]
|
6152
|
+
attr_accessor :error_catcher_number
|
6153
|
+
|
6154
|
+
# Optional. The user created label for a particular error catcher. Optional.
|
6155
|
+
# Corresponds to the JSON property `label`
|
6156
|
+
# @return [String]
|
6157
|
+
attr_accessor :label
|
6158
|
+
|
6159
|
+
# Configuration detail of coordinate, it used for UI
|
6160
|
+
# Corresponds to the JSON property `position`
|
6161
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate]
|
6162
|
+
attr_accessor :position
|
6163
|
+
|
6164
|
+
# Required. The set of start tasks that are to be executed for the error catch
|
6165
|
+
# flow
|
6166
|
+
# Corresponds to the JSON property `startErrorTasks`
|
6167
|
+
# @return [Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask>]
|
6168
|
+
attr_accessor :start_error_tasks
|
6169
|
+
|
6170
|
+
def initialize(**args)
|
6171
|
+
update!(**args)
|
6172
|
+
end
|
6173
|
+
|
6174
|
+
# Update properties of this object
|
6175
|
+
def update!(**args)
|
6176
|
+
@description = args[:description] if args.key?(:description)
|
6177
|
+
@error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
|
6178
|
+
@error_catcher_number = args[:error_catcher_number] if args.key?(:error_catcher_number)
|
6179
|
+
@label = args[:label] if args.key?(:label)
|
6180
|
+
@position = args[:position] if args.key?(:position)
|
6181
|
+
@start_error_tasks = args[:start_error_tasks] if args.key?(:start_error_tasks)
|
6182
|
+
end
|
6183
|
+
end
|
6184
|
+
|
5928
6185
|
# This message is used for processing and persisting (when applicable) key value
|
5929
6186
|
# pair parameters for each event in the event bus.
|
5930
6187
|
class GoogleCloudIntegrationsV1alphaEventParameter
|
@@ -6604,6 +6861,12 @@ module Google
|
|
6604
6861
|
# @return [String]
|
6605
6862
|
attr_accessor :description
|
6606
6863
|
|
6864
|
+
# Optional. Error Catch Task configuration for the IntegrationTemplateVersion.
|
6865
|
+
# It's optional.
|
6866
|
+
# Corresponds to the JSON property `errorCatcherConfigs`
|
6867
|
+
# @return [Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaErrorCatcherConfig>]
|
6868
|
+
attr_accessor :error_catcher_configs
|
6869
|
+
|
6607
6870
|
# Optional. The last modifier's email address. Generated based on the End User
|
6608
6871
|
# Credentials/LOAS role of the user making the call.
|
6609
6872
|
# Corresponds to the JSON property `lastModifierEmail`
|
@@ -6682,6 +6945,7 @@ module Google
|
|
6682
6945
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6683
6946
|
@database_persistence_policy = args[:database_persistence_policy] if args.key?(:database_persistence_policy)
|
6684
6947
|
@description = args[:description] if args.key?(:description)
|
6948
|
+
@error_catcher_configs = args[:error_catcher_configs] if args.key?(:error_catcher_configs)
|
6685
6949
|
@last_modifier_email = args[:last_modifier_email] if args.key?(:last_modifier_email)
|
6686
6950
|
@name = args[:name] if args.key?(:name)
|
6687
6951
|
@parent_integration_version_id = args[:parent_integration_version_id] if args.key?(:parent_integration_version_id)
|
@@ -6717,6 +6981,11 @@ module Google
|
|
6717
6981
|
# @return [String]
|
6718
6982
|
attr_accessor :description
|
6719
6983
|
|
6984
|
+
# Optional. Error Catch Task configuration for the integration. It's optional.
|
6985
|
+
# Corresponds to the JSON property `errorCatcherConfigs`
|
6986
|
+
# @return [Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaErrorCatcherConfig>]
|
6987
|
+
attr_accessor :error_catcher_configs
|
6988
|
+
|
6720
6989
|
# Optional. Parameters that are expected to be passed to the integration when an
|
6721
6990
|
# event is triggered. This consists of all the parameters that are expected in
|
6722
6991
|
# the integration execution. This gives the user the ability to provide default
|
@@ -6831,6 +7100,7 @@ module Google
|
|
6831
7100
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6832
7101
|
@database_persistence_policy = args[:database_persistence_policy] if args.key?(:database_persistence_policy)
|
6833
7102
|
@description = args[:description] if args.key?(:description)
|
7103
|
+
@error_catcher_configs = args[:error_catcher_configs] if args.key?(:error_catcher_configs)
|
6834
7104
|
@integration_parameters = args[:integration_parameters] if args.key?(:integration_parameters)
|
6835
7105
|
@integration_parameters_internal = args[:integration_parameters_internal] if args.key?(:integration_parameters_internal)
|
6836
7106
|
@last_modifier_email = args[:last_modifier_email] if args.key?(:last_modifier_email)
|
@@ -8289,6 +8559,17 @@ module Google
|
|
8289
8559
|
# @return [String]
|
8290
8560
|
attr_accessor :display_name
|
8291
8561
|
|
8562
|
+
# Optional. Optional Error catcher id of the error catch flow which will be
|
8563
|
+
# executed when execution error happens in the task
|
8564
|
+
# Corresponds to the JSON property `errorCatcherId`
|
8565
|
+
# @return [String]
|
8566
|
+
attr_accessor :error_catcher_id
|
8567
|
+
|
8568
|
+
# Optional. External task type of the task
|
8569
|
+
# Corresponds to the JSON property `externalTaskType`
|
8570
|
+
# @return [String]
|
8571
|
+
attr_accessor :external_task_type
|
8572
|
+
|
8292
8573
|
# Policy that defines the task retry logic and failure type. If no FailurePolicy
|
8293
8574
|
# is defined for a task, all its dependent tasks will not be executed (i.e, a `
|
8294
8575
|
# retry_strategy` of NONE will be applied).
|
@@ -8321,6 +8602,11 @@ module Google
|
|
8321
8602
|
# @return [Hash<String,Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaEventParameter>]
|
8322
8603
|
attr_accessor :parameters
|
8323
8604
|
|
8605
|
+
# Configuration detail of coordinate, it used for UI
|
8606
|
+
# Corresponds to the JSON property `position`
|
8607
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate]
|
8608
|
+
attr_accessor :position
|
8609
|
+
|
8324
8610
|
# Policy that dictates the behavior for the task after it completes successfully.
|
8325
8611
|
# Corresponds to the JSON property `successPolicy`
|
8326
8612
|
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuccessPolicy]
|
@@ -8364,11 +8650,14 @@ module Google
|
|
8364
8650
|
def update!(**args)
|
8365
8651
|
@description = args[:description] if args.key?(:description)
|
8366
8652
|
@display_name = args[:display_name] if args.key?(:display_name)
|
8653
|
+
@error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
|
8654
|
+
@external_task_type = args[:external_task_type] if args.key?(:external_task_type)
|
8367
8655
|
@failure_policy = args[:failure_policy] if args.key?(:failure_policy)
|
8368
8656
|
@json_validation_option = args[:json_validation_option] if args.key?(:json_validation_option)
|
8369
8657
|
@next_tasks = args[:next_tasks] if args.key?(:next_tasks)
|
8370
8658
|
@next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
|
8371
8659
|
@parameters = args[:parameters] if args.key?(:parameters)
|
8660
|
+
@position = args[:position] if args.key?(:position)
|
8372
8661
|
@success_policy = args[:success_policy] if args.key?(:success_policy)
|
8373
8662
|
@synchronous_call_failure_policy = args[:synchronous_call_failure_policy] if args.key?(:synchronous_call_failure_policy)
|
8374
8663
|
@task = args[:task] if args.key?(:task)
|
@@ -8433,6 +8722,12 @@ module Google
|
|
8433
8722
|
# @return [String]
|
8434
8723
|
attr_accessor :description
|
8435
8724
|
|
8725
|
+
# Optional. Optional Error catcher id of the error catch flow which will be
|
8726
|
+
# executed when execution error happens in the task
|
8727
|
+
# Corresponds to the JSON property `errorCatcherId`
|
8728
|
+
# @return [String]
|
8729
|
+
attr_accessor :error_catcher_id
|
8730
|
+
|
8436
8731
|
# Optional. The user created label for a particular trigger.
|
8437
8732
|
# Corresponds to the JSON property `label`
|
8438
8733
|
# @return [String]
|
@@ -8443,6 +8738,11 @@ module Google
|
|
8443
8738
|
# @return [String]
|
8444
8739
|
attr_accessor :next_tasks_execution_policy
|
8445
8740
|
|
8741
|
+
# Configuration detail of coordinate, it used for UI
|
8742
|
+
# Corresponds to the JSON property `position`
|
8743
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate]
|
8744
|
+
attr_accessor :position
|
8745
|
+
|
8446
8746
|
# Optional. Configurable properties of the trigger, not to be confused with
|
8447
8747
|
# integration parameters. E.g. "name" is a property for API triggers and "
|
8448
8748
|
# subscription" is a property for Pub/sub triggers.
|
@@ -8483,8 +8783,10 @@ module Google
|
|
8483
8783
|
@alert_config = args[:alert_config] if args.key?(:alert_config)
|
8484
8784
|
@cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
|
8485
8785
|
@description = args[:description] if args.key?(:description)
|
8786
|
+
@error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
|
8486
8787
|
@label = args[:label] if args.key?(:label)
|
8487
8788
|
@next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
|
8789
|
+
@position = args[:position] if args.key?(:position)
|
8488
8790
|
@properties = args[:properties] if args.key?(:properties)
|
8489
8791
|
@start_tasks = args[:start_tasks] if args.key?(:start_tasks)
|
8490
8792
|
@trigger_id = args[:trigger_id] if args.key?(:trigger_id)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module IntegrationsV1alpha
|
18
18
|
# Version of the google-apis-integrations_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230303"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,6 +94,12 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
+
class EnterpriseCrmEventbusProtoCloudKmsConfig
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
97
103
|
class EnterpriseCrmEventbusProtoCloudSchedulerConfig
|
98
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
105
|
|
@@ -820,6 +826,12 @@ module Google
|
|
820
826
|
include Google::Apis::Core::JsonObjectSupport
|
821
827
|
end
|
822
828
|
|
829
|
+
class GoogleCloudConnectorsV1SslConfig
|
830
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
831
|
+
|
832
|
+
include Google::Apis::Core::JsonObjectSupport
|
833
|
+
end
|
834
|
+
|
823
835
|
class GoogleCloudIntegrationsV1alphaAccessToken
|
824
836
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
825
837
|
|
@@ -886,6 +898,12 @@ module Google
|
|
886
898
|
include Google::Apis::Core::JsonObjectSupport
|
887
899
|
end
|
888
900
|
|
901
|
+
class GoogleCloudIntegrationsV1alphaCoordinate
|
902
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
903
|
+
|
904
|
+
include Google::Apis::Core::JsonObjectSupport
|
905
|
+
end
|
906
|
+
|
889
907
|
class GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
|
890
908
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
891
909
|
|
@@ -922,6 +940,12 @@ module Google
|
|
922
940
|
include Google::Apis::Core::JsonObjectSupport
|
923
941
|
end
|
924
942
|
|
943
|
+
class GoogleCloudIntegrationsV1alphaErrorCatcherConfig
|
944
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
|
+
|
946
|
+
include Google::Apis::Core::JsonObjectSupport
|
947
|
+
end
|
948
|
+
|
925
949
|
class GoogleCloudIntegrationsV1alphaEventParameter
|
926
950
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
927
951
|
|
@@ -1450,6 +1474,17 @@ module Google
|
|
1450
1474
|
end
|
1451
1475
|
end
|
1452
1476
|
|
1477
|
+
class EnterpriseCrmEventbusProtoCloudKmsConfig
|
1478
|
+
# @private
|
1479
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1480
|
+
property :gcp_project_id, as: 'gcpProjectId'
|
1481
|
+
property :key_name, as: 'keyName'
|
1482
|
+
property :key_ring_name, as: 'keyRingName'
|
1483
|
+
property :key_version_name, as: 'keyVersionName'
|
1484
|
+
property :location_name, as: 'locationName'
|
1485
|
+
end
|
1486
|
+
end
|
1487
|
+
|
1453
1488
|
class EnterpriseCrmEventbusProtoCloudSchedulerConfig
|
1454
1489
|
# @private
|
1455
1490
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2084,7 +2119,11 @@ module Google
|
|
2084
2119
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2085
2120
|
property :audit, as: 'audit', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit::Representation
|
2086
2121
|
|
2122
|
+
property :client_id, as: 'clientId'
|
2123
|
+
property :cloud_kms_config, as: 'cloudKmsConfig', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCloudKmsConfig, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoCloudKmsConfig::Representation
|
2124
|
+
|
2087
2125
|
property :created_timestamp, as: 'createdTimestamp'
|
2126
|
+
property :encrypted_suspension_resolution_info, :base64 => true, as: 'encryptedSuspensionResolutionInfo'
|
2088
2127
|
property :event_execution_info_id, as: 'eventExecutionInfoId'
|
2089
2128
|
property :external_traffic, as: 'externalTraffic', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoExternalTraffic, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoExternalTraffic::Representation
|
2090
2129
|
|
@@ -2096,6 +2135,7 @@ module Google
|
|
2096
2135
|
property :suspension_id, as: 'suspensionId'
|
2097
2136
|
property :task_number, as: 'taskNumber'
|
2098
2137
|
property :workflow_name, as: 'workflowName'
|
2138
|
+
property :wrapped_dek, :base64 => true, as: 'wrappedDek'
|
2099
2139
|
end
|
2100
2140
|
end
|
2101
2141
|
|
@@ -2548,6 +2588,8 @@ module Google
|
|
2548
2588
|
property :creator_email, as: 'creatorEmail'
|
2549
2589
|
property :description, as: 'description'
|
2550
2590
|
property :disable_strict_type_validation, as: 'disableStrictTypeValidation'
|
2591
|
+
property :error_catcher_id, as: 'errorCatcherId'
|
2592
|
+
property :external_task_type, as: 'externalTaskType'
|
2551
2593
|
property :failure_policy, as: 'failurePolicy', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoFailurePolicy, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoFailurePolicy::Representation
|
2552
2594
|
|
2553
2595
|
property :incoming_edge_count, as: 'incomingEdgeCount'
|
@@ -2605,6 +2647,7 @@ module Google
|
|
2605
2647
|
|
2606
2648
|
property :description, as: 'description'
|
2607
2649
|
collection :enabled_clients, as: 'enabledClients'
|
2650
|
+
property :error_catcher_id, as: 'errorCatcherId'
|
2608
2651
|
property :label, as: 'label'
|
2609
2652
|
property :next_tasks_execution_policy, as: 'nextTasksExecutionPolicy'
|
2610
2653
|
property :pause_workflow_executions, as: 'pauseWorkflowExecutions'
|
@@ -2773,6 +2816,8 @@ module Google
|
|
2773
2816
|
|
2774
2817
|
property :service_account, as: 'serviceAccount'
|
2775
2818
|
property :service_directory, as: 'serviceDirectory'
|
2819
|
+
property :ssl_config, as: 'sslConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1SslConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1SslConfig::Representation
|
2820
|
+
|
2776
2821
|
property :status, as: 'status', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConnectionStatus, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConnectionStatus::Representation
|
2777
2822
|
|
2778
2823
|
property :suspended, as: 'suspended'
|
@@ -2830,6 +2875,27 @@ module Google
|
|
2830
2875
|
end
|
2831
2876
|
end
|
2832
2877
|
|
2878
|
+
class GoogleCloudConnectorsV1SslConfig
|
2879
|
+
# @private
|
2880
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2881
|
+
collection :additional_variables, as: 'additionalVariables', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1ConfigVariable::Representation
|
2882
|
+
|
2883
|
+
property :client_cert_type, as: 'clientCertType'
|
2884
|
+
property :client_certificate, as: 'clientCertificate', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
2885
|
+
|
2886
|
+
property :client_private_key, as: 'clientPrivateKey', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
2887
|
+
|
2888
|
+
property :client_private_key_pass, as: 'clientPrivateKeyPass', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
2889
|
+
|
2890
|
+
property :private_server_certificate, as: 'privateServerCertificate', class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret::Representation
|
2891
|
+
|
2892
|
+
property :server_cert_type, as: 'serverCertType'
|
2893
|
+
property :trust_model, as: 'trustModel'
|
2894
|
+
property :type, as: 'type'
|
2895
|
+
property :use_ssl, as: 'useSsl'
|
2896
|
+
end
|
2897
|
+
end
|
2898
|
+
|
2833
2899
|
class GoogleCloudIntegrationsV1alphaAccessToken
|
2834
2900
|
# @private
|
2835
2901
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2944,6 +3010,14 @@ module Google
|
|
2944
3010
|
end
|
2945
3011
|
end
|
2946
3012
|
|
3013
|
+
class GoogleCloudIntegrationsV1alphaCoordinate
|
3014
|
+
# @private
|
3015
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3016
|
+
property :x, as: 'x'
|
3017
|
+
property :y, as: 'y'
|
3018
|
+
end
|
3019
|
+
end
|
3020
|
+
|
2947
3021
|
class GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
|
2948
3022
|
# @private
|
2949
3023
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3003,6 +3077,20 @@ module Google
|
|
3003
3077
|
end
|
3004
3078
|
end
|
3005
3079
|
|
3080
|
+
class GoogleCloudIntegrationsV1alphaErrorCatcherConfig
|
3081
|
+
# @private
|
3082
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3083
|
+
property :description, as: 'description'
|
3084
|
+
property :error_catcher_id, as: 'errorCatcherId'
|
3085
|
+
property :error_catcher_number, as: 'errorCatcherNumber'
|
3086
|
+
property :label, as: 'label'
|
3087
|
+
property :position, as: 'position', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate::Representation
|
3088
|
+
|
3089
|
+
collection :start_error_tasks, as: 'startErrorTasks', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask::Representation
|
3090
|
+
|
3091
|
+
end
|
3092
|
+
end
|
3093
|
+
|
3006
3094
|
class GoogleCloudIntegrationsV1alphaEventParameter
|
3007
3095
|
# @private
|
3008
3096
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3179,6 +3267,8 @@ module Google
|
|
3179
3267
|
property :create_time, as: 'createTime'
|
3180
3268
|
property :database_persistence_policy, as: 'databasePersistencePolicy'
|
3181
3269
|
property :description, as: 'description'
|
3270
|
+
collection :error_catcher_configs, as: 'errorCatcherConfigs', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaErrorCatcherConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaErrorCatcherConfig::Representation
|
3271
|
+
|
3182
3272
|
property :last_modifier_email, as: 'lastModifierEmail'
|
3183
3273
|
property :name, as: 'name'
|
3184
3274
|
property :parent_integration_version_id, as: 'parentIntegrationVersionId'
|
@@ -3203,6 +3293,8 @@ module Google
|
|
3203
3293
|
property :create_time, as: 'createTime'
|
3204
3294
|
property :database_persistence_policy, as: 'databasePersistencePolicy'
|
3205
3295
|
property :description, as: 'description'
|
3296
|
+
collection :error_catcher_configs, as: 'errorCatcherConfigs', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaErrorCatcherConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaErrorCatcherConfig::Representation
|
3297
|
+
|
3206
3298
|
collection :integration_parameters, as: 'integrationParameters', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationParameter, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationParameter::Representation
|
3207
3299
|
|
3208
3300
|
property :integration_parameters_internal, as: 'integrationParametersInternal', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmFrontendsEventbusProtoWorkflowParameters, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmFrontendsEventbusProtoWorkflowParameters::Representation
|
@@ -3664,6 +3756,8 @@ module Google
|
|
3664
3756
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3665
3757
|
property :description, as: 'description'
|
3666
3758
|
property :display_name, as: 'displayName'
|
3759
|
+
property :error_catcher_id, as: 'errorCatcherId'
|
3760
|
+
property :external_task_type, as: 'externalTaskType'
|
3667
3761
|
property :failure_policy, as: 'failurePolicy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaFailurePolicy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaFailurePolicy::Representation
|
3668
3762
|
|
3669
3763
|
property :json_validation_option, as: 'jsonValidationOption'
|
@@ -3672,6 +3766,8 @@ module Google
|
|
3672
3766
|
property :next_tasks_execution_policy, as: 'nextTasksExecutionPolicy'
|
3673
3767
|
hash :parameters, as: 'parameters', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaEventParameter, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaEventParameter::Representation
|
3674
3768
|
|
3769
|
+
property :position, as: 'position', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate::Representation
|
3770
|
+
|
3675
3771
|
property :success_policy, as: 'successPolicy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuccessPolicy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuccessPolicy::Representation
|
3676
3772
|
|
3677
3773
|
property :synchronous_call_failure_policy, as: 'synchronousCallFailurePolicy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaFailurePolicy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaFailurePolicy::Representation
|
@@ -3701,8 +3797,11 @@ module Google
|
|
3701
3797
|
property :cloud_scheduler_config, as: 'cloudSchedulerConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCloudSchedulerConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCloudSchedulerConfig::Representation
|
3702
3798
|
|
3703
3799
|
property :description, as: 'description'
|
3800
|
+
property :error_catcher_id, as: 'errorCatcherId'
|
3704
3801
|
property :label, as: 'label'
|
3705
3802
|
property :next_tasks_execution_policy, as: 'nextTasksExecutionPolicy'
|
3803
|
+
property :position, as: 'position', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate::Representation
|
3804
|
+
|
3706
3805
|
hash :properties, as: 'properties'
|
3707
3806
|
collection :start_tasks, as: 'startTasks', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask::Representation
|
3708
3807
|
|
@@ -793,12 +793,15 @@ module Google
|
|
793
793
|
# @param [String] parent
|
794
794
|
# Required. The parent resource name of the integration execution.
|
795
795
|
# @param [String] filter
|
796
|
-
# Optional. Standard filter field, we support filtering on
|
797
|
-
#
|
798
|
-
#
|
799
|
-
#
|
800
|
-
#
|
801
|
-
#
|
796
|
+
# Optional. Standard filter field, we support filtering on following fields:
|
797
|
+
# workflow_name: the name of the integration. CreateTimestamp: the execution
|
798
|
+
# created time. event_execution_state: the state of the executions. execution_id:
|
799
|
+
# the id of the execution. trigger_id: the id of the trigger. parameter_type:
|
800
|
+
# the type of the parameters involved in the execution. All fields support for
|
801
|
+
# EQUALS, in additional: CreateTimestamp support for LESS_THAN, GREATER_THAN
|
802
|
+
# ParameterType support for HAS For example: "parameter_type" HAS \"string\"
|
803
|
+
# Also supports operators like AND, OR, NOT For example, trigger_id=\"id1\" AND
|
804
|
+
# workflow_name=\"testWorkflow\"
|
802
805
|
# @param [String] filter_params_custom_filter
|
803
806
|
# Optional user-provided custom filter.
|
804
807
|
# @param [Fixnum] filter_params_end_time
|
@@ -1852,6 +1855,36 @@ module Google
|
|
1852
1855
|
execute_or_queue_command(command, &block)
|
1853
1856
|
end
|
1854
1857
|
|
1858
|
+
# Delete the selected integration and all versions inside
|
1859
|
+
# @param [String] name
|
1860
|
+
# Required. The location resource of the request.
|
1861
|
+
# @param [String] fields
|
1862
|
+
# Selector specifying which fields to include in a partial response.
|
1863
|
+
# @param [String] quota_user
|
1864
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1865
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1866
|
+
# @param [Google::Apis::RequestOptions] options
|
1867
|
+
# Request-specific options
|
1868
|
+
#
|
1869
|
+
# @yield [result, err] Result & error if block supplied
|
1870
|
+
# @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty] parsed result object
|
1871
|
+
# @yieldparam err [StandardError] error object if request failed
|
1872
|
+
#
|
1873
|
+
# @return [Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty]
|
1874
|
+
#
|
1875
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1876
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1877
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1878
|
+
def delete_project_location_product_integration(name, fields: nil, quota_user: nil, options: nil, &block)
|
1879
|
+
command = make_simple_command(:delete, 'v1alpha/{+name}', options)
|
1880
|
+
command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty::Representation
|
1881
|
+
command.response_class = Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty
|
1882
|
+
command.params['name'] = name unless name.nil?
|
1883
|
+
command.query['fields'] = fields unless fields.nil?
|
1884
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1885
|
+
execute_or_queue_command(command, &block)
|
1886
|
+
end
|
1887
|
+
|
1855
1888
|
# Executes integrations synchronously by passing the trigger id in the request
|
1856
1889
|
# body. The request is not returned until the requested executions are either
|
1857
1890
|
# fulfilled or experienced an error. If the integration name is not specified (
|
@@ -2048,12 +2081,15 @@ module Google
|
|
2048
2081
|
# @param [String] parent
|
2049
2082
|
# Required. The parent resource name of the integration execution.
|
2050
2083
|
# @param [String] filter
|
2051
|
-
# Optional. Standard filter field, we support filtering on
|
2052
|
-
#
|
2053
|
-
#
|
2054
|
-
#
|
2055
|
-
#
|
2056
|
-
#
|
2084
|
+
# Optional. Standard filter field, we support filtering on following fields:
|
2085
|
+
# workflow_name: the name of the integration. CreateTimestamp: the execution
|
2086
|
+
# created time. event_execution_state: the state of the executions. execution_id:
|
2087
|
+
# the id of the execution. trigger_id: the id of the trigger. parameter_type:
|
2088
|
+
# the type of the parameters involved in the execution. All fields support for
|
2089
|
+
# EQUALS, in additional: CreateTimestamp support for LESS_THAN, GREATER_THAN
|
2090
|
+
# ParameterType support for HAS For example: "parameter_type" HAS \"string\"
|
2091
|
+
# Also supports operators like AND, OR, NOT For example, trigger_id=\"id1\" AND
|
2092
|
+
# workflow_name=\"testWorkflow\"
|
2057
2093
|
# @param [String] filter_params_custom_filter
|
2058
2094
|
# Optional user-provided custom filter.
|
2059
2095
|
# @param [Fixnum] filter_params_end_time
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-integrations_v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.11.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|