google-apis-integrations_v1alpha 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e8926a401a2f7c2068b13cb671a9266846473f25fdf4285ebdf9e1eecf3c32e0
4
- data.tar.gz: b249c059ce70bcfd166aa4eca89ebe9646c8f00568a0ee9c4760558c01946710
3
+ metadata.gz: edf76d40c7cb899c2e373b8bb4c37823b3fc24e4de046873105b8a6f80b6ed12
4
+ data.tar.gz: d7a8baf576f2d9c028d072615b0924816278930a9dd8a8e5538f578a3ce74f6c
5
5
  SHA512:
6
- metadata.gz: 3b5438164749e50bbaac58625b93534b9cd9d68f4c53f6a873dc7829187c8004d00ca8b5c5af947190965604ec616c9b8637a275427f0a9536bf51153a1061b5
7
- data.tar.gz: 253fd94bd8bc33212852c8adba5df5a1302e1b5315d4dd97e285f0300f2884985e7f968ba797ebeda4b37dc430e5427c9172aed4354d230924e52ea8cd891999
6
+ metadata.gz: a6e92243fc75bc2046a1693341786994143116424c45769cae8663c580fc9a6b08e78dfb3fc78c0da828ab9c91e5f6aef98953b66cbf1896fbd99ba23939c502
7
+ data.tar.gz: b51389822a6bb795eb2cb3005647d025d64ac192443fe938eb17f17107e96e5ec41ae75a4a47bdd01d403d1d55cac6708b97e58083a3bad1ecdb986857e2761d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.10.0 (2023-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230222
@@ -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,11 +4284,11 @@ module Google
4206
4284
  attr_accessor :disable_strict_type_validation
4207
4285
  alias_method :disable_strict_type_validation?, :disable_strict_type_validation
4208
4286
 
4209
- # Optional Error catcher config id of the error catch flow which will be
4210
- # executed when execution error happens in the task
4211
- # Corresponds to the JSON property `errorCatcherConfigId`
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`
4212
4290
  # @return [String]
4213
- attr_accessor :error_catcher_config_id
4291
+ attr_accessor :error_catcher_id
4214
4292
 
4215
4293
  #
4216
4294
  # Corresponds to the JSON property `externalTaskType`
@@ -4348,7 +4426,7 @@ module Google
4348
4426
  @creator_email = args[:creator_email] if args.key?(:creator_email)
4349
4427
  @description = args[:description] if args.key?(:description)
4350
4428
  @disable_strict_type_validation = args[:disable_strict_type_validation] if args.key?(:disable_strict_type_validation)
4351
- @error_catcher_config_id = args[:error_catcher_config_id] if args.key?(:error_catcher_config_id)
4429
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
4352
4430
  @external_task_type = args[:external_task_type] if args.key?(:external_task_type)
4353
4431
  @failure_policy = args[:failure_policy] if args.key?(:failure_policy)
4354
4432
  @incoming_edge_count = args[:incoming_edge_count] if args.key?(:incoming_edge_count)
@@ -4427,7 +4505,7 @@ module Google
4427
4505
  end
4428
4506
  end
4429
4507
 
4430
- # Configuration detail of a trigger. Next available id: 18
4508
+ # Configuration detail of a trigger. Next available id: 19
4431
4509
  class EnterpriseCrmFrontendsEventbusProtoTriggerConfig
4432
4510
  include Google::Apis::Core::Hashable
4433
4511
 
@@ -4459,11 +4537,11 @@ module Google
4459
4537
  # @return [Array<String>]
4460
4538
  attr_accessor :enabled_clients
4461
4539
 
4462
- # Optional Error catcher config id of the error catch flow which will be
4463
- # executed when execution error happens in the task
4464
- # Corresponds to the JSON property `errorCatcherConfigId`
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`
4465
4543
  # @return [String]
4466
- attr_accessor :error_catcher_config_id
4544
+ attr_accessor :error_catcher_id
4467
4545
 
4468
4546
  # The user created label for a particular trigger.
4469
4547
  # Corresponds to the JSON property `label`
@@ -4537,7 +4615,7 @@ module Google
4537
4615
  @cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
4538
4616
  @description = args[:description] if args.key?(:description)
4539
4617
  @enabled_clients = args[:enabled_clients] if args.key?(:enabled_clients)
4540
- @error_catcher_config_id = args[:error_catcher_config_id] if args.key?(:error_catcher_config_id)
4618
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
4541
4619
  @label = args[:label] if args.key?(:label)
4542
4620
  @next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
4543
4621
  @pause_workflow_executions = args[:pause_workflow_executions] if args.key?(:pause_workflow_executions)
@@ -5843,6 +5921,31 @@ module Google
5843
5921
  end
5844
5922
  end
5845
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
+
5846
5949
  # Request for CreateAppsScriptProject rpc call.
5847
5950
  class GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
5848
5951
  include Google::Apis::Core::Hashable
@@ -6036,11 +6139,11 @@ module Google
6036
6139
  attr_accessor :description
6037
6140
 
6038
6141
  # Required. An error catcher id is string representation for the error catcher
6039
- # config. Within a workflow, error_catch_id uniquely identifies an error catcher
6040
- # config among all error catcher configs for the workflow
6041
- # Corresponds to the JSON property `errorCatchId`
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`
6042
6145
  # @return [String]
6043
- attr_accessor :error_catch_id
6146
+ attr_accessor :error_catcher_id
6044
6147
 
6045
6148
  # Required. A number to uniquely identify each error catcher config within the
6046
6149
  # workflow on UI.
@@ -6053,6 +6156,11 @@ module Google
6053
6156
  # @return [String]
6054
6157
  attr_accessor :label
6055
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
+
6056
6164
  # Required. The set of start tasks that are to be executed for the error catch
6057
6165
  # flow
6058
6166
  # Corresponds to the JSON property `startErrorTasks`
@@ -6066,9 +6174,10 @@ module Google
6066
6174
  # Update properties of this object
6067
6175
  def update!(**args)
6068
6176
  @description = args[:description] if args.key?(:description)
6069
- @error_catch_id = args[:error_catch_id] if args.key?(:error_catch_id)
6177
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
6070
6178
  @error_catcher_number = args[:error_catcher_number] if args.key?(:error_catcher_number)
6071
6179
  @label = args[:label] if args.key?(:label)
6180
+ @position = args[:position] if args.key?(:position)
6072
6181
  @start_error_tasks = args[:start_error_tasks] if args.key?(:start_error_tasks)
6073
6182
  end
6074
6183
  end
@@ -8450,11 +8559,11 @@ module Google
8450
8559
  # @return [String]
8451
8560
  attr_accessor :display_name
8452
8561
 
8453
- # Optional. Optional Error catcher config id of the error catch flow which will
8454
- # be executed when execution error happens in the task
8455
- # Corresponds to the JSON property `errorCatcherConfigId`
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`
8456
8565
  # @return [String]
8457
- attr_accessor :error_catcher_config_id
8566
+ attr_accessor :error_catcher_id
8458
8567
 
8459
8568
  # Optional. External task type of the task
8460
8569
  # Corresponds to the JSON property `externalTaskType`
@@ -8493,6 +8602,11 @@ module Google
8493
8602
  # @return [Hash<String,Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaEventParameter>]
8494
8603
  attr_accessor :parameters
8495
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
+
8496
8610
  # Policy that dictates the behavior for the task after it completes successfully.
8497
8611
  # Corresponds to the JSON property `successPolicy`
8498
8612
  # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuccessPolicy]
@@ -8536,13 +8650,14 @@ module Google
8536
8650
  def update!(**args)
8537
8651
  @description = args[:description] if args.key?(:description)
8538
8652
  @display_name = args[:display_name] if args.key?(:display_name)
8539
- @error_catcher_config_id = args[:error_catcher_config_id] if args.key?(:error_catcher_config_id)
8653
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
8540
8654
  @external_task_type = args[:external_task_type] if args.key?(:external_task_type)
8541
8655
  @failure_policy = args[:failure_policy] if args.key?(:failure_policy)
8542
8656
  @json_validation_option = args[:json_validation_option] if args.key?(:json_validation_option)
8543
8657
  @next_tasks = args[:next_tasks] if args.key?(:next_tasks)
8544
8658
  @next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
8545
8659
  @parameters = args[:parameters] if args.key?(:parameters)
8660
+ @position = args[:position] if args.key?(:position)
8546
8661
  @success_policy = args[:success_policy] if args.key?(:success_policy)
8547
8662
  @synchronous_call_failure_policy = args[:synchronous_call_failure_policy] if args.key?(:synchronous_call_failure_policy)
8548
8663
  @task = args[:task] if args.key?(:task)
@@ -8607,11 +8722,11 @@ module Google
8607
8722
  # @return [String]
8608
8723
  attr_accessor :description
8609
8724
 
8610
- # Optional. Optional Error catcher config id of the error catch flow which will
8611
- # be executed when execution error happens in the task
8612
- # Corresponds to the JSON property `errorCatcherConfigId`
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`
8613
8728
  # @return [String]
8614
- attr_accessor :error_catcher_config_id
8729
+ attr_accessor :error_catcher_id
8615
8730
 
8616
8731
  # Optional. The user created label for a particular trigger.
8617
8732
  # Corresponds to the JSON property `label`
@@ -8623,6 +8738,11 @@ module Google
8623
8738
  # @return [String]
8624
8739
  attr_accessor :next_tasks_execution_policy
8625
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
+
8626
8746
  # Optional. Configurable properties of the trigger, not to be confused with
8627
8747
  # integration parameters. E.g. "name" is a property for API triggers and "
8628
8748
  # subscription" is a property for Pub/sub triggers.
@@ -8663,9 +8783,10 @@ module Google
8663
8783
  @alert_config = args[:alert_config] if args.key?(:alert_config)
8664
8784
  @cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
8665
8785
  @description = args[:description] if args.key?(:description)
8666
- @error_catcher_config_id = args[:error_catcher_config_id] if args.key?(:error_catcher_config_id)
8786
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
8667
8787
  @label = args[:label] if args.key?(:label)
8668
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)
8669
8790
  @properties = args[:properties] if args.key?(:properties)
8670
8791
  @start_tasks = args[:start_tasks] if args.key?(:start_tasks)
8671
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.10.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 = "20230222"
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
 
@@ -892,6 +898,12 @@ module Google
892
898
  include Google::Apis::Core::JsonObjectSupport
893
899
  end
894
900
 
901
+ class GoogleCloudIntegrationsV1alphaCoordinate
902
+ class Representation < Google::Apis::Core::JsonRepresentation; end
903
+
904
+ include Google::Apis::Core::JsonObjectSupport
905
+ end
906
+
895
907
  class GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
896
908
  class Representation < Google::Apis::Core::JsonRepresentation; end
897
909
 
@@ -1462,6 +1474,17 @@ module Google
1462
1474
  end
1463
1475
  end
1464
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
+
1465
1488
  class EnterpriseCrmEventbusProtoCloudSchedulerConfig
1466
1489
  # @private
1467
1490
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2096,7 +2119,11 @@ module Google
2096
2119
  class Representation < Google::Apis::Core::JsonRepresentation
2097
2120
  property :audit, as: 'audit', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit::Representation
2098
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
+
2099
2125
  property :created_timestamp, as: 'createdTimestamp'
2126
+ property :encrypted_suspension_resolution_info, :base64 => true, as: 'encryptedSuspensionResolutionInfo'
2100
2127
  property :event_execution_info_id, as: 'eventExecutionInfoId'
2101
2128
  property :external_traffic, as: 'externalTraffic', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoExternalTraffic, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoExternalTraffic::Representation
2102
2129
 
@@ -2108,6 +2135,7 @@ module Google
2108
2135
  property :suspension_id, as: 'suspensionId'
2109
2136
  property :task_number, as: 'taskNumber'
2110
2137
  property :workflow_name, as: 'workflowName'
2138
+ property :wrapped_dek, :base64 => true, as: 'wrappedDek'
2111
2139
  end
2112
2140
  end
2113
2141
 
@@ -2560,7 +2588,7 @@ module Google
2560
2588
  property :creator_email, as: 'creatorEmail'
2561
2589
  property :description, as: 'description'
2562
2590
  property :disable_strict_type_validation, as: 'disableStrictTypeValidation'
2563
- property :error_catcher_config_id, as: 'errorCatcherConfigId'
2591
+ property :error_catcher_id, as: 'errorCatcherId'
2564
2592
  property :external_task_type, as: 'externalTaskType'
2565
2593
  property :failure_policy, as: 'failurePolicy', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoFailurePolicy, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoFailurePolicy::Representation
2566
2594
 
@@ -2619,7 +2647,7 @@ module Google
2619
2647
 
2620
2648
  property :description, as: 'description'
2621
2649
  collection :enabled_clients, as: 'enabledClients'
2622
- property :error_catcher_config_id, as: 'errorCatcherConfigId'
2650
+ property :error_catcher_id, as: 'errorCatcherId'
2623
2651
  property :label, as: 'label'
2624
2652
  property :next_tasks_execution_policy, as: 'nextTasksExecutionPolicy'
2625
2653
  property :pause_workflow_executions, as: 'pauseWorkflowExecutions'
@@ -2982,6 +3010,14 @@ module Google
2982
3010
  end
2983
3011
  end
2984
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
+
2985
3021
  class GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
2986
3022
  # @private
2987
3023
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3045,9 +3081,11 @@ module Google
3045
3081
  # @private
3046
3082
  class Representation < Google::Apis::Core::JsonRepresentation
3047
3083
  property :description, as: 'description'
3048
- property :error_catch_id, as: 'errorCatchId'
3084
+ property :error_catcher_id, as: 'errorCatcherId'
3049
3085
  property :error_catcher_number, as: 'errorCatcherNumber'
3050
3086
  property :label, as: 'label'
3087
+ property :position, as: 'position', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate::Representation
3088
+
3051
3089
  collection :start_error_tasks, as: 'startErrorTasks', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask::Representation
3052
3090
 
3053
3091
  end
@@ -3718,7 +3756,7 @@ module Google
3718
3756
  class Representation < Google::Apis::Core::JsonRepresentation
3719
3757
  property :description, as: 'description'
3720
3758
  property :display_name, as: 'displayName'
3721
- property :error_catcher_config_id, as: 'errorCatcherConfigId'
3759
+ property :error_catcher_id, as: 'errorCatcherId'
3722
3760
  property :external_task_type, as: 'externalTaskType'
3723
3761
  property :failure_policy, as: 'failurePolicy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaFailurePolicy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaFailurePolicy::Representation
3724
3762
 
@@ -3728,6 +3766,8 @@ module Google
3728
3766
  property :next_tasks_execution_policy, as: 'nextTasksExecutionPolicy'
3729
3767
  hash :parameters, as: 'parameters', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaEventParameter, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaEventParameter::Representation
3730
3768
 
3769
+ property :position, as: 'position', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCoordinate::Representation
3770
+
3731
3771
  property :success_policy, as: 'successPolicy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuccessPolicy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSuccessPolicy::Representation
3732
3772
 
3733
3773
  property :synchronous_call_failure_policy, as: 'synchronousCallFailurePolicy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaFailurePolicy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaFailurePolicy::Representation
@@ -3757,9 +3797,11 @@ module Google
3757
3797
  property :cloud_scheduler_config, as: 'cloudSchedulerConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCloudSchedulerConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCloudSchedulerConfig::Representation
3758
3798
 
3759
3799
  property :description, as: 'description'
3760
- property :error_catcher_config_id, as: 'errorCatcherConfigId'
3800
+ property :error_catcher_id, as: 'errorCatcherId'
3761
3801
  property :label, as: 'label'
3762
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
+
3763
3805
  hash :properties, as: 'properties'
3764
3806
  collection :start_tasks, as: 'startTasks', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask::Representation
3765
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 all fields in
797
- # EventExecutionParamIndexes table. All fields support for EQUALS, in additional:
798
- # CreateTimestamp support for LESS_THAN, GREATER_THAN ParameterKey,
799
- # ParameterValue, ParameterType support for HAS For example: "parameter_value"
800
- # HAS \"parameter1\" Also supports operators like AND, OR, NOT For example,
801
- # trigger_id=\"id1\" AND event_execution_state=\"FAILED\"
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
@@ -2078,12 +2081,15 @@ module Google
2078
2081
  # @param [String] parent
2079
2082
  # Required. The parent resource name of the integration execution.
2080
2083
  # @param [String] filter
2081
- # Optional. Standard filter field, we support filtering on all fields in
2082
- # EventExecutionParamIndexes table. All fields support for EQUALS, in additional:
2083
- # CreateTimestamp support for LESS_THAN, GREATER_THAN ParameterKey,
2084
- # ParameterValue, ParameterType support for HAS For example: "parameter_value"
2085
- # HAS \"parameter1\" Also supports operators like AND, OR, NOT For example,
2086
- # trigger_id=\"id1\" AND event_execution_state=\"FAILED\"
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\"
2087
2093
  # @param [String] filter_params_custom_filter
2088
2094
  # Optional user-provided custom filter.
2089
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.10.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-02-26 00:00:00.000000000 Z
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.10.0
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: []