google-apis-integrations_v1 0.1.0 → 0.2.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.
@@ -42,185 +42,6 @@ module Google
42
42
  end
43
43
  end
44
44
 
45
- #
46
- class EnterpriseCrmCardsCellValue
47
- include Google::Apis::Core::Hashable
48
-
49
- #
50
- # Corresponds to the JSON property `booleanValue`
51
- # @return [Boolean]
52
- attr_accessor :boolean_value
53
- alias_method :boolean_value?, :boolean_value
54
-
55
- #
56
- # Corresponds to the JSON property `doubleValue`
57
- # @return [Float]
58
- attr_accessor :double_value
59
-
60
- # A generic empty message that you can re-use to avoid defining duplicated empty
61
- # messages in your APIs. A typical example is to use it as the request or the
62
- # response type of an API method. For instance: service Foo ` rpc Bar(google.
63
- # protobuf.Empty) returns (google.protobuf.Empty); `
64
- # Corresponds to the JSON property `empty`
65
- # @return [Google::Apis::IntegrationsV1::GoogleProtobufEmpty]
66
- attr_accessor :empty
67
-
68
- #
69
- # Corresponds to the JSON property `longValue`
70
- # @return [Fixnum]
71
- attr_accessor :long_value
72
-
73
- #
74
- # Corresponds to the JSON property `stringValue`
75
- # @return [String]
76
- attr_accessor :string_value
77
-
78
- def initialize(**args)
79
- update!(**args)
80
- end
81
-
82
- # Update properties of this object
83
- def update!(**args)
84
- @boolean_value = args[:boolean_value] if args.key?(:boolean_value)
85
- @double_value = args[:double_value] if args.key?(:double_value)
86
- @empty = args[:empty] if args.key?(:empty)
87
- @long_value = args[:long_value] if args.key?(:long_value)
88
- @string_value = args[:string_value] if args.key?(:string_value)
89
- end
90
- end
91
-
92
- #
93
- class EnterpriseCrmCardsRow
94
- include Google::Apis::Core::Hashable
95
-
96
- # Ordered list of cell values within a row.
97
- # Corresponds to the JSON property `cells`
98
- # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmCardsCellValue>]
99
- attr_accessor :cells
100
-
101
- def initialize(**args)
102
- update!(**args)
103
- end
104
-
105
- # Update properties of this object
106
- def update!(**args)
107
- @cells = args[:cells] if args.key?(:cells)
108
- end
109
- end
110
-
111
- # The generic data format returned from all connectors.
112
- class EnterpriseCrmCardsTabularData
113
- include Google::Apis::Core::Hashable
114
-
115
- # Ordered list of column headers.
116
- # Corresponds to the JSON property `headers`
117
- # @return [Array<String>]
118
- attr_accessor :headers
119
-
120
- # Ordered list of table rows.
121
- # Corresponds to the JSON property `rows`
122
- # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmCardsRow>]
123
- attr_accessor :rows
124
-
125
- def initialize(**args)
126
- update!(**args)
127
- end
128
-
129
- # Update properties of this object
130
- def update!(**args)
131
- @headers = args[:headers] if args.key?(:headers)
132
- @rows = args[:rows] if args.key?(:rows)
133
- end
134
- end
135
-
136
- # Data used to render an Aplos Series card.
137
- class EnterpriseCrmCardsTemplatesAplosSeriesData
138
- include Google::Apis::Core::Hashable
139
-
140
- # A single Series Row
141
- # Corresponds to the JSON property `rows`
142
- # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmCardsTemplatesAplosSeriesDataRow>]
143
- attr_accessor :rows
144
-
145
- def initialize(**args)
146
- update!(**args)
147
- end
148
-
149
- # Update properties of this object
150
- def update!(**args)
151
- @rows = args[:rows] if args.key?(:rows)
152
- end
153
- end
154
-
155
- # Aplos series row is exactly two columns labeled x and y.
156
- class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
157
- include Google::Apis::Core::Hashable
158
-
159
- #
160
- # Corresponds to the JSON property `x`
161
- # @return [Google::Apis::IntegrationsV1::EnterpriseCrmCardsCellValue]
162
- attr_accessor :x
163
-
164
- #
165
- # Corresponds to the JSON property `y`
166
- # @return [Google::Apis::IntegrationsV1::EnterpriseCrmCardsCellValue]
167
- attr_accessor :y
168
-
169
- def initialize(**args)
170
- update!(**args)
171
- end
172
-
173
- # Update properties of this object
174
- def update!(**args)
175
- @x = args[:x] if args.key?(:x)
176
- @y = args[:y] if args.key?(:y)
177
- end
178
- end
179
-
180
- # Data used for Aplos charts that accept multiple Series.
181
- class EnterpriseCrmCardsTemplatesAplosSeriesListData
182
- include Google::Apis::Core::Hashable
183
-
184
- #
185
- # Corresponds to the JSON property `series`
186
- # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries>]
187
- attr_accessor :series
188
-
189
- def initialize(**args)
190
- update!(**args)
191
- end
192
-
193
- # Update properties of this object
194
- def update!(**args)
195
- @series = args[:series] if args.key?(:series)
196
- end
197
- end
198
-
199
- #
200
- class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
201
- include Google::Apis::Core::Hashable
202
-
203
- # Data used to render an Aplos Series card.
204
- # Corresponds to the JSON property `data`
205
- # @return [Google::Apis::IntegrationsV1::EnterpriseCrmCardsTemplatesAplosSeriesData]
206
- attr_accessor :data
207
-
208
- #
209
- # Corresponds to the JSON property `name`
210
- # @return [String]
211
- attr_accessor :name
212
-
213
- def initialize(**args)
214
- update!(**args)
215
- end
216
-
217
- # Update properties of this object
218
- def update!(**args)
219
- @data = args[:data] if args.key?(:data)
220
- @name = args[:name] if args.key?(:name)
221
- end
222
- end
223
-
224
45
  #
225
46
  class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
226
47
  include Google::Apis::Core::Hashable
@@ -301,8 +122,7 @@ module Google
301
122
  end
302
123
 
303
124
  # Attributes are additional options that can be associated with each event
304
- # property. For more information, see go/integration-platform/event_bus/
305
- # attributes_registry.md. Next available: 8
125
+ # property. For more information, see
306
126
  class EnterpriseCrmEventbusProtoAttributes
307
127
  include Google::Apis::Core::Hashable
308
128
 
@@ -333,12 +153,23 @@ module Google
333
153
 
334
154
  # The LogSettings define the logging attributes for an event property. These
335
155
  # attributes are used to map the property to the parameter in the log proto.
336
- # Also used to define scrubbing/truncation behavior and PII information. See go/
337
- # integration-platform/analytics/logging_task.md for details.
156
+ # Also used to define scrubbing/truncation behavior and PII information.
338
157
  # Corresponds to the JSON property `logSettings`
339
158
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoLogSettings]
340
159
  attr_accessor :log_settings
341
160
 
161
+ # True if this workflow parameter should be masked in the logs
162
+ # Corresponds to the JSON property `masked`
163
+ # @return [Boolean]
164
+ attr_accessor :masked
165
+ alias_method :masked?, :masked
166
+
167
+ # Used to indicate if the ParameterEntry is a read only field or not.
168
+ # Corresponds to the JSON property `readOnly`
169
+ # @return [Boolean]
170
+ attr_accessor :read_only
171
+ alias_method :read_only?, :read_only
172
+
342
173
  #
343
174
  # Corresponds to the JSON property `searchable`
344
175
  # @return [String]
@@ -360,6 +191,8 @@ module Google
360
191
  @is_required = args[:is_required] if args.key?(:is_required)
361
192
  @is_searchable = args[:is_searchable] if args.key?(:is_searchable)
362
193
  @log_settings = args[:log_settings] if args.key?(:log_settings)
194
+ @masked = args[:masked] if args.key?(:masked)
195
+ @read_only = args[:read_only] if args.key?(:read_only)
363
196
  @searchable = args[:searchable] if args.key?(:searchable)
364
197
  @task_visibility = args[:task_visibility] if args.key?(:task_visibility)
365
198
  end
@@ -398,7 +231,7 @@ module Google
398
231
  # the duration threshold value should be specified in the threshold_duration_ms
399
232
  # member below. For *AVERAGE_DURATION metrics, these fields should not be set at
400
233
  # all. A different member, threshold_duration_ms, must be set in the
401
- # EventAlertConfig or the TaskAlertConfig. See go/eventbus-alert-config-examples
234
+ # EventAlertConfig or the TaskAlertConfig.
402
235
  class EnterpriseCrmEventbusProtoBaseAlertConfigThresholdValue
403
236
  include Google::Apis::Core::Hashable
404
237
 
@@ -569,6 +402,65 @@ module Google
569
402
  end
570
403
  end
571
404
 
405
+ #
406
+ class EnterpriseCrmEventbusProtoCloudKmsConfig
407
+ include Google::Apis::Core::Hashable
408
+
409
+ # Optional. The id of GCP project where the KMS key is stored. If not provided,
410
+ # assume the key is stored in the same GCP project defined in Client (tag 14).
411
+ # Corresponds to the JSON property `gcpProjectId`
412
+ # @return [String]
413
+ attr_accessor :gcp_project_id
414
+
415
+ # A Cloud KMS key is a named object containing one or more key versions, along
416
+ # with metadata for the key. A key exists on exactly one key ring tied to a
417
+ # specific location.
418
+ # Corresponds to the JSON property `keyName`
419
+ # @return [String]
420
+ attr_accessor :key_name
421
+
422
+ # A key ring organizes keys in a specific Google Cloud location and allows you
423
+ # to manage access control on groups of keys. A key ring's name does not need to
424
+ # be unique across a Google Cloud project, but must be unique within a given
425
+ # location.
426
+ # Corresponds to the JSON property `keyRingName`
427
+ # @return [String]
428
+ attr_accessor :key_ring_name
429
+
430
+ # Optional. Each version of a key contains key material used for encryption or
431
+ # signing. A key's version is represented by an integer, starting at 1. To
432
+ # decrypt data or verify a signature, you must use the same key version that was
433
+ # used to encrypt or sign the data.
434
+ # Corresponds to the JSON property `keyVersionName`
435
+ # @return [String]
436
+ attr_accessor :key_version_name
437
+
438
+ # Location name of the key ring, e.g. "us-west1".
439
+ # Corresponds to the JSON property `locationName`
440
+ # @return [String]
441
+ attr_accessor :location_name
442
+
443
+ # Optional. The service account used for authentication of this KMS key. If this
444
+ # is not provided, the service account in Client.clientSource will be used.
445
+ # Corresponds to the JSON property `serviceAccount`
446
+ # @return [String]
447
+ attr_accessor :service_account
448
+
449
+ def initialize(**args)
450
+ update!(**args)
451
+ end
452
+
453
+ # Update properties of this object
454
+ def update!(**args)
455
+ @gcp_project_id = args[:gcp_project_id] if args.key?(:gcp_project_id)
456
+ @key_name = args[:key_name] if args.key?(:key_name)
457
+ @key_ring_name = args[:key_ring_name] if args.key?(:key_ring_name)
458
+ @key_version_name = args[:key_version_name] if args.key?(:key_version_name)
459
+ @location_name = args[:location_name] if args.key?(:location_name)
460
+ @service_account = args[:service_account] if args.key?(:service_account)
461
+ end
462
+ end
463
+
572
464
  # Cloud Scheduler Trigger configuration
573
465
  class EnterpriseCrmEventbusProtoCloudSchedulerConfig
574
466
  include Google::Apis::Core::Hashable
@@ -784,8 +676,8 @@ module Google
784
676
  class EnterpriseCrmEventbusProtoCustomSuspensionRequest
785
677
  include Google::Apis::Core::Hashable
786
678
 
787
- # Use this request to post all workflows associated with a given trigger id.
788
- # Next available id: 10
679
+ # LINT.IfChange Use this request to post all workflows associated with a given
680
+ # trigger id. Next available id: 13
789
681
  # Corresponds to the JSON property `postToQueueWithTriggerIdRequest`
790
682
  # @return [Google::Apis::IntegrationsV1::GoogleInternalCloudCrmEventbusV3PostToQueueWithTriggerIdRequest]
791
683
  attr_accessor :post_to_queue_with_trigger_id_request
@@ -923,8 +815,7 @@ module Google
923
815
  end
924
816
 
925
817
  # LINT.IfChange This message is used for storing key value pair properties for
926
- # each Event / Task in the EventBus. Please see go/cloud-crm-eng/platform/
927
- # event_bus.md for more details.
818
+ # each Event / Task in the EventBus.
928
819
  class EnterpriseCrmEventbusProtoEventBusProperties
929
820
  include Google::Apis::Core::Hashable
930
821
 
@@ -945,7 +836,7 @@ module Google
945
836
 
946
837
  # Contains the details of the execution info of this event: this includes the
947
838
  # tasks execution details plus the event execution statistics. Next available id:
948
- # 10
839
+ # 11
949
840
  class EnterpriseCrmEventbusProtoEventExecutionDetails
950
841
  include Google::Apis::Core::Hashable
951
842
 
@@ -959,6 +850,11 @@ module Google
959
850
  # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventExecutionSnapshot>]
960
851
  attr_accessor :event_execution_snapshot
961
852
 
853
+ # Total size of all event_execution_snapshots for an execution
854
+ # Corresponds to the JSON property `eventExecutionSnapshotsSize`
855
+ # @return [Fixnum]
856
+ attr_accessor :event_execution_snapshots_size
857
+
962
858
  #
963
859
  # Corresponds to the JSON property `eventExecutionState`
964
860
  # @return [String]
@@ -1000,6 +896,7 @@ module Google
1000
896
  def update!(**args)
1001
897
  @event_attempt_stats = args[:event_attempt_stats] if args.key?(:event_attempt_stats)
1002
898
  @event_execution_snapshot = args[:event_execution_snapshot] if args.key?(:event_execution_snapshot)
899
+ @event_execution_snapshots_size = args[:event_execution_snapshots_size] if args.key?(:event_execution_snapshots_size)
1003
900
  @event_execution_state = args[:event_execution_state] if args.key?(:event_execution_state)
1004
901
  @event_retries_from_beginning_count = args[:event_retries_from_beginning_count] if args.key?(:event_retries_from_beginning_count)
1005
902
  @log_file_path = args[:log_file_path] if args.key?(:log_file_path)
@@ -1053,7 +950,7 @@ module Google
1053
950
 
1054
951
  # LINT.IfChange This message is used for processing and persisting (when
1055
952
  # applicable) key value pair parameters for each event in the event bus. Please
1056
- # see go/integration-platform/event_bus.md for more details. Next id: 4
953
+ # see
1057
954
  # Corresponds to the JSON property `diffParams`
1058
955
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventParameters]
1059
956
  attr_accessor :diff_params
@@ -1075,7 +972,7 @@ module Google
1075
972
 
1076
973
  # LINT.IfChange This message is used for processing and persisting (when
1077
974
  # applicable) key value pair parameters for each event in the event bus. Please
1078
- # see go/integration-platform/event_bus.md for more details. Next id: 4
975
+ # see
1079
976
  # Corresponds to the JSON property `eventParams`
1080
977
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventParameters]
1081
978
  attr_accessor :event_params
@@ -1125,16 +1022,38 @@ module Google
1125
1022
  class EnterpriseCrmEventbusProtoEventExecutionSnapshotEventExecutionSnapshotMetadata
1126
1023
  include Google::Apis::Core::Hashable
1127
1024
 
1025
+ # Ancestor iteration number for the task(it will only be non-empty if the task
1026
+ # is under 'private workflow')
1027
+ # Corresponds to the JSON property `ancestorIterationNumbers`
1028
+ # @return [Array<String>]
1029
+ attr_accessor :ancestor_iteration_numbers
1030
+
1031
+ # Ancestor task number for the task(it will only be non-empty if the task is
1032
+ # under 'private workflow')
1033
+ # Corresponds to the JSON property `ancestorTaskNumbers`
1034
+ # @return [Array<String>]
1035
+ attr_accessor :ancestor_task_numbers
1036
+
1128
1037
  # the event attempt number this snapshot belongs to.
1129
1038
  # Corresponds to the JSON property `eventAttemptNum`
1130
1039
  # @return [Fixnum]
1131
1040
  attr_accessor :event_attempt_num
1132
1041
 
1042
+ # The direct integration which the event execution snapshots belongs to
1043
+ # Corresponds to the JSON property `integrationName`
1044
+ # @return [String]
1045
+ attr_accessor :integration_name
1046
+
1133
1047
  # the task attempt number this snapshot belongs to. Could be empty.
1134
1048
  # Corresponds to the JSON property `taskAttemptNum`
1135
1049
  # @return [Fixnum]
1136
1050
  attr_accessor :task_attempt_num
1137
1051
 
1052
+ # the task label associated with this snapshot. Could be empty.
1053
+ # Corresponds to the JSON property `taskLabel`
1054
+ # @return [String]
1055
+ attr_accessor :task_label
1056
+
1138
1057
  # the task name associated with this snapshot. Could be empty.
1139
1058
  # Corresponds to the JSON property `taskName`
1140
1059
  # @return [String]
@@ -1151,8 +1070,12 @@ module Google
1151
1070
 
1152
1071
  # Update properties of this object
1153
1072
  def update!(**args)
1073
+ @ancestor_iteration_numbers = args[:ancestor_iteration_numbers] if args.key?(:ancestor_iteration_numbers)
1074
+ @ancestor_task_numbers = args[:ancestor_task_numbers] if args.key?(:ancestor_task_numbers)
1154
1075
  @event_attempt_num = args[:event_attempt_num] if args.key?(:event_attempt_num)
1076
+ @integration_name = args[:integration_name] if args.key?(:integration_name)
1155
1077
  @task_attempt_num = args[:task_attempt_num] if args.key?(:task_attempt_num)
1078
+ @task_label = args[:task_label] if args.key?(:task_label)
1156
1079
  @task_name = args[:task_name] if args.key?(:task_name)
1157
1080
  @task_number = args[:task_number] if args.key?(:task_number)
1158
1081
  end
@@ -1160,7 +1083,7 @@ module Google
1160
1083
 
1161
1084
  # LINT.IfChange This message is used for processing and persisting (when
1162
1085
  # applicable) key value pair parameters for each event in the event bus. Please
1163
- # see go/integration-platform/event_bus.md for more details. Next id: 4
1086
+ # see
1164
1087
  class EnterpriseCrmEventbusProtoEventParameters
1165
1088
  include Google::Apis::Core::Hashable
1166
1089
 
@@ -1282,7 +1205,7 @@ module Google
1282
1205
  end
1283
1206
  end
1284
1207
 
1285
- # Information about the value and type of the field. Next Id: 8
1208
+ # Information about the value and type of the field.
1286
1209
  class EnterpriseCrmEventbusProtoField
1287
1210
  include Google::Apis::Core::Hashable
1288
1211
 
@@ -1321,14 +1244,13 @@ module Google
1321
1244
  attr_accessor :reference_key
1322
1245
 
1323
1246
  # This is the transform expression to fetch the input field value. for e.g. $
1324
- # param1$.CONCAT('test'). See go/transform-functions-design for more details.
1325
- # Keep points - 1. Only input field can have a transform expression. 2. If a
1326
- # transform expression is provided, reference_key will be ignored. 3. If no
1327
- # value is returned after evaluation of transform expression, default_value can
1328
- # be mapped if provided. 4. The field_type should be the type of the final
1329
- # object returned after the transform expression is evaluated. Scrubs the
1330
- # transform expression before logging as value provided by user so may or may
1331
- # not contain PII or SPII data.
1247
+ # param1$.CONCAT('test'). Keep points - 1. Only input field can have a transform
1248
+ # expression. 2. If a transform expression is provided, reference_key will be
1249
+ # ignored. 3. If no value is returned after evaluation of transform expression,
1250
+ # default_value can be mapped if provided. 4. The field_type should be the type
1251
+ # of the final object returned after the transform expression is evaluated.
1252
+ # Scrubs the transform expression before logging as value provided by user so
1253
+ # may or may not contain PII or SPII data.
1332
1254
  # Corresponds to the JSON property `transformExpression`
1333
1255
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTransformExpression]
1334
1256
  attr_accessor :transform_expression
@@ -1349,7 +1271,7 @@ module Google
1349
1271
  end
1350
1272
 
1351
1273
  # Field Mapping Config to map multiple output fields values from input fields
1352
- # values. Next id: 2
1274
+ # values.
1353
1275
  class EnterpriseCrmEventbusProtoFieldMappingConfig
1354
1276
  include Google::Apis::Core::Hashable
1355
1277
 
@@ -1576,8 +1498,7 @@ module Google
1576
1498
 
1577
1499
  # The LogSettings define the logging attributes for an event property. These
1578
1500
  # attributes are used to map the property to the parameter in the log proto.
1579
- # Also used to define scrubbing/truncation behavior and PII information. See go/
1580
- # integration-platform/analytics/logging_task.md for details.
1501
+ # Also used to define scrubbing/truncation behavior and PII information.
1581
1502
  class EnterpriseCrmEventbusProtoLogSettings
1582
1503
  include Google::Apis::Core::Hashable
1583
1504
 
@@ -1667,16 +1588,16 @@ module Google
1667
1588
  end
1668
1589
  end
1669
1590
 
1670
- # Mapped field is a pair of input field and output field. Next Id: 3
1591
+ # Mapped field is a pair of input field and output field.
1671
1592
  class EnterpriseCrmEventbusProtoMappedField
1672
1593
  include Google::Apis::Core::Hashable
1673
1594
 
1674
- # Information about the value and type of the field. Next Id: 8
1595
+ # Information about the value and type of the field.
1675
1596
  # Corresponds to the JSON property `inputField`
1676
1597
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoField]
1677
1598
  attr_accessor :input_field
1678
1599
 
1679
- # Information about the value and type of the field. Next Id: 8
1600
+ # Information about the value and type of the field.
1680
1601
  # Corresponds to the JSON property `outputField`
1681
1602
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoField]
1682
1603
  attr_accessor :output_field
@@ -2054,6 +1975,12 @@ module Google
2054
1975
  # @return [String]
2055
1976
  attr_accessor :key
2056
1977
 
1978
+ # True if this parameter should be masked in the logs
1979
+ # Corresponds to the JSON property `masked`
1980
+ # @return [Boolean]
1981
+ attr_accessor :masked
1982
+ alias_method :masked?, :masked
1983
+
2057
1984
  # LINT.IfChange To support various types of parameter values. Next available id:
2058
1985
  # 14
2059
1986
  # Corresponds to the JSON property `value`
@@ -2067,6 +1994,7 @@ module Google
2067
1994
  # Update properties of this object
2068
1995
  def update!(**args)
2069
1996
  @key = args[:key] if args.key?(:key)
1997
+ @masked = args[:masked] if args.key?(:masked)
2070
1998
  @value = args[:value] if args.key?(:value)
2071
1999
  end
2072
2000
  end
@@ -2630,11 +2558,27 @@ module Google
2630
2558
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoSuspensionResolutionInfoAudit]
2631
2559
  attr_accessor :audit
2632
2560
 
2561
+ # The event data user sends as request.
2562
+ # Corresponds to the JSON property `clientId`
2563
+ # @return [String]
2564
+ attr_accessor :client_id
2565
+
2566
+ # KMS info, used by cmek/gmek integration
2567
+ # Corresponds to the JSON property `cloudKmsConfig`
2568
+ # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoCloudKmsConfig]
2569
+ attr_accessor :cloud_kms_config
2570
+
2633
2571
  # Auto-generated.
2634
2572
  # Corresponds to the JSON property `createdTimestamp`
2635
2573
  # @return [String]
2636
2574
  attr_accessor :created_timestamp
2637
2575
 
2576
+ # Encrypted SuspensionResolutionInfo
2577
+ # Corresponds to the JSON property `encryptedSuspensionResolutionInfo`
2578
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
2579
+ # @return [String]
2580
+ attr_accessor :encrypted_suspension_resolution_info
2581
+
2638
2582
  # Required. ID of the associated execution.
2639
2583
  # Corresponds to the JSON property `eventExecutionInfoId`
2640
2584
  # @return [String]
@@ -2681,6 +2625,12 @@ module Google
2681
2625
  # @return [String]
2682
2626
  attr_accessor :workflow_name
2683
2627
 
2628
+ # Wrapped dek
2629
+ # Corresponds to the JSON property `wrappedDek`
2630
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
2631
+ # @return [String]
2632
+ attr_accessor :wrapped_dek
2633
+
2684
2634
  def initialize(**args)
2685
2635
  update!(**args)
2686
2636
  end
@@ -2688,7 +2638,10 @@ module Google
2688
2638
  # Update properties of this object
2689
2639
  def update!(**args)
2690
2640
  @audit = args[:audit] if args.key?(:audit)
2641
+ @client_id = args[:client_id] if args.key?(:client_id)
2642
+ @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
2691
2643
  @created_timestamp = args[:created_timestamp] if args.key?(:created_timestamp)
2644
+ @encrypted_suspension_resolution_info = args[:encrypted_suspension_resolution_info] if args.key?(:encrypted_suspension_resolution_info)
2692
2645
  @event_execution_info_id = args[:event_execution_info_id] if args.key?(:event_execution_info_id)
2693
2646
  @external_traffic = args[:external_traffic] if args.key?(:external_traffic)
2694
2647
  @last_modified_timestamp = args[:last_modified_timestamp] if args.key?(:last_modified_timestamp)
@@ -2698,6 +2651,7 @@ module Google
2698
2651
  @suspension_id = args[:suspension_id] if args.key?(:suspension_id)
2699
2652
  @task_number = args[:task_number] if args.key?(:task_number)
2700
2653
  @workflow_name = args[:workflow_name] if args.key?(:workflow_name)
2654
+ @wrapped_dek = args[:wrapped_dek] if args.key?(:wrapped_dek)
2701
2655
  end
2702
2656
  end
2703
2657
 
@@ -2733,8 +2687,7 @@ module Google
2733
2687
  end
2734
2688
 
2735
2689
  # Message to be used to configure alerting in the `@code TaskConfig` protos for
2736
- # tasks in an event. See go/eventbus-alert-config-examples for examples of the
2737
- # different alerts that can be configured.
2690
+ # tasks in an event.
2738
2691
  class EnterpriseCrmEventbusProtoTaskAlertConfig
2739
2692
  include Google::Apis::Core::Hashable
2740
2693
 
@@ -2812,7 +2765,7 @@ module Google
2812
2765
  # the duration threshold value should be specified in the threshold_duration_ms
2813
2766
  # member below. For *AVERAGE_DURATION metrics, these fields should not be set at
2814
2767
  # all. A different member, threshold_duration_ms, must be set in the
2815
- # EventAlertConfig or the TaskAlertConfig. See go/eventbus-alert-config-examples
2768
+ # EventAlertConfig or the TaskAlertConfig.
2816
2769
  # Corresponds to the JSON property `thresholdValue`
2817
2770
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoBaseAlertConfigThresholdValue]
2818
2771
  attr_accessor :threshold_value
@@ -2902,7 +2855,6 @@ module Google
2902
2855
  end
2903
2856
 
2904
2857
  # TaskMetadata are attributes that are associated to every common Task we have.
2905
- # Next available: 26
2906
2858
  class EnterpriseCrmEventbusProtoTaskMetadata
2907
2859
  include Google::Apis::Core::Hashable
2908
2860
 
@@ -2988,7 +2940,7 @@ module Google
2988
2940
 
2989
2941
  # URL to gstatic image icon for this task. This icon shows up on the task list
2990
2942
  # panel along with the task name in the Workflow Editor screen. Use the 24p, 2x,
2991
- # gray color icon image format. See go/icons.
2943
+ # gray color icon image format.
2992
2944
  # Corresponds to the JSON property `iconLink`
2993
2945
  # @return [String]
2994
2946
  attr_accessor :icon_link
@@ -3089,8 +3041,7 @@ module Google
3089
3041
 
3090
3042
  # Task authors would use this type to configure the UI for a particular task by
3091
3043
  # specifying what UI config modules should be included to compose the UI. Learn
3092
- # more about config module framework: go/integration-platform-config-module-
3093
- # framework
3044
+ # more about config module framework:
3094
3045
  class EnterpriseCrmEventbusProtoTaskUiConfig
3095
3046
  include Google::Apis::Core::Hashable
3096
3047
 
@@ -3170,14 +3121,13 @@ module Google
3170
3121
 
3171
3122
  # LINT.IfChange This message is used for processing and persisting (when
3172
3123
  # applicable) key value pair parameters for each event in the event bus. Please
3173
- # see go/integration-platform/event_bus.md for more details. Next id: 4
3124
+ # see
3174
3125
  # Corresponds to the JSON property `parameters`
3175
3126
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventParameters]
3176
3127
  attr_accessor :parameters
3177
3128
 
3178
3129
  # LINT.IfChange This message is used for storing key value pair properties for
3179
- # each Event / Task in the EventBus. Please see go/cloud-crm-eng/platform/
3180
- # event_bus.md for more details.
3130
+ # each Event / Task in the EventBus.
3181
3131
  # Corresponds to the JSON property `properties`
3182
3132
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventBusProperties]
3183
3133
  attr_accessor :properties
@@ -3265,7 +3215,7 @@ module Google
3265
3215
 
3266
3216
  # LINT.IfChange This message is used for processing and persisting (when
3267
3217
  # applicable) key value pair parameters for each event in the event bus. Please
3268
- # see go/integration-platform/event_bus.md for more details. Next id: 4
3218
+ # see
3269
3219
  # Corresponds to the JSON property `parameters`
3270
3220
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventParameters]
3271
3221
  attr_accessor :parameters
@@ -3352,8 +3302,7 @@ module Google
3352
3302
  end
3353
3303
 
3354
3304
  # Message to be used to configure custom alerting in the `@code EventConfig`
3355
- # protos for an event. See go/eventbus-alert-config-examples for examples of the
3356
- # different alerts that can be configured.
3305
+ # protos for an event.
3357
3306
  class EnterpriseCrmEventbusProtoWorkflowAlertConfig
3358
3307
  include Google::Apis::Core::Hashable
3359
3308
 
@@ -3431,7 +3380,7 @@ module Google
3431
3380
  # the duration threshold value should be specified in the threshold_duration_ms
3432
3381
  # member below. For *AVERAGE_DURATION metrics, these fields should not be set at
3433
3382
  # all. A different member, threshold_duration_ms, must be set in the
3434
- # EventAlertConfig or the TaskAlertConfig. See go/eventbus-alert-config-examples
3383
+ # EventAlertConfig or the TaskAlertConfig.
3435
3384
  # Corresponds to the JSON property `thresholdValue`
3436
3385
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoBaseAlertConfigThresholdValue]
3437
3386
  attr_accessor :threshold_value
@@ -3620,7 +3569,7 @@ module Google
3620
3569
 
3621
3570
  # Contains the details of the execution info of this event: this includes the
3622
3571
  # tasks execution details plus the event execution statistics. Next available id:
3623
- # 10
3572
+ # 11
3624
3573
  class EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails
3625
3574
  include Google::Apis::Core::Hashable
3626
3575
 
@@ -3635,6 +3584,11 @@ module Google
3635
3584
  # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventExecutionSnapshot>]
3636
3585
  attr_accessor :event_execution_snapshot
3637
3586
 
3587
+ # Total size of all event_execution_snapshots for an execution
3588
+ # Corresponds to the JSON property `eventExecutionSnapshotsSize`
3589
+ # @return [Fixnum]
3590
+ attr_accessor :event_execution_snapshots_size
3591
+
3638
3592
  # The execution state of this event.
3639
3593
  # Corresponds to the JSON property `eventExecutionState`
3640
3594
  # @return [String]
@@ -3676,6 +3630,7 @@ module Google
3676
3630
  def update!(**args)
3677
3631
  @event_attempt_stats = args[:event_attempt_stats] if args.key?(:event_attempt_stats)
3678
3632
  @event_execution_snapshot = args[:event_execution_snapshot] if args.key?(:event_execution_snapshot)
3633
+ @event_execution_snapshots_size = args[:event_execution_snapshots_size] if args.key?(:event_execution_snapshots_size)
3679
3634
  @event_execution_state = args[:event_execution_state] if args.key?(:event_execution_state)
3680
3635
  @event_retries_from_beginning_count = args[:event_retries_from_beginning_count] if args.key?(:event_retries_from_beginning_count)
3681
3636
  @log_file_path = args[:log_file_path] if args.key?(:log_file_path)
@@ -3714,7 +3669,7 @@ module Google
3714
3669
 
3715
3670
  # Contains the details of the execution info of this event: this includes the
3716
3671
  # tasks execution details plus the event execution statistics. Next available id:
3717
- # 10
3672
+ # 11
3718
3673
  # Corresponds to the JSON property `eventExecutionDetails`
3719
3674
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventExecutionDetails]
3720
3675
  attr_accessor :event_execution_details
@@ -3753,14 +3708,14 @@ module Google
3753
3708
 
3754
3709
  # LINT.IfChange This message is used for processing and persisting (when
3755
3710
  # applicable) key value pair parameters for each event in the event bus. Please
3756
- # see go/integration-platform/event_bus.md for more details. Next id: 4
3711
+ # see
3757
3712
  # Corresponds to the JSON property `requestParams`
3758
3713
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
3759
3714
  attr_accessor :request_params
3760
3715
 
3761
3716
  # LINT.IfChange This message is used for processing and persisting (when
3762
3717
  # applicable) key value pair parameters for each event in the event bus. Please
3763
- # see go/integration-platform/event_bus.md for more details. Next id: 4
3718
+ # see
3764
3719
  # Corresponds to the JSON property `responseParams`
3765
3720
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
3766
3721
  attr_accessor :response_params
@@ -3844,7 +3799,7 @@ module Google
3844
3799
 
3845
3800
  # LINT.IfChange This message is used for processing and persisting (when
3846
3801
  # applicable) key value pair parameters for each event in the event bus. Please
3847
- # see go/integration-platform/event_bus.md for more details. Next id: 4
3802
+ # see
3848
3803
  # Corresponds to the JSON property `diffParams`
3849
3804
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
3850
3805
  attr_accessor :diff_params
@@ -3866,7 +3821,7 @@ module Google
3866
3821
 
3867
3822
  # LINT.IfChange This message is used for processing and persisting (when
3868
3823
  # applicable) key value pair parameters for each event in the event bus. Please
3869
- # see go/integration-platform/event_bus.md for more details. Next id: 4
3824
+ # see
3870
3825
  # Corresponds to the JSON property `eventParams`
3871
3826
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
3872
3827
  attr_accessor :event_params
@@ -3907,7 +3862,7 @@ module Google
3907
3862
 
3908
3863
  # LINT.IfChange This message is used for processing and persisting (when
3909
3864
  # applicable) key value pair parameters for each event in the event bus. Please
3910
- # see go/integration-platform/event_bus.md for more details. Next id: 4
3865
+ # see
3911
3866
  class EnterpriseCrmFrontendsEventbusProtoEventParameters
3912
3867
  include Google::Apis::Core::Hashable
3913
3868
 
@@ -4077,6 +4032,12 @@ module Google
4077
4032
  # @return [String]
4078
4033
  attr_accessor :key
4079
4034
 
4035
+ # True if this parameter should be masked in the logs
4036
+ # Corresponds to the JSON property `masked`
4037
+ # @return [Boolean]
4038
+ attr_accessor :masked
4039
+ alias_method :masked?, :masked
4040
+
4080
4041
  # To support various types of parameter values. Next available id: 14
4081
4042
  # Corresponds to the JSON property `value`
4082
4043
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoParameterValueType]
@@ -4090,6 +4051,7 @@ module Google
4090
4051
  def update!(**args)
4091
4052
  @data_type = args[:data_type] if args.key?(:data_type)
4092
4053
  @key = args[:key] if args.key?(:key)
4054
+ @masked = args[:masked] if args.key?(:masked)
4093
4055
  @value = args[:value] if args.key?(:value)
4094
4056
  end
4095
4057
  end
@@ -4288,7 +4250,7 @@ module Google
4288
4250
 
4289
4251
  # LINT.IfChange This message is used for processing and persisting (when
4290
4252
  # applicable) key value pair parameters for each event in the event bus. Please
4291
- # see go/integration-platform/event_bus.md for more details. Next id: 4
4253
+ # see
4292
4254
  # Corresponds to the JSON property `parameters`
4293
4255
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
4294
4256
  attr_accessor :parameters
@@ -4358,7 +4320,7 @@ module Google
4358
4320
  end
4359
4321
 
4360
4322
  # The task configuration details. This is not the implementation of Task. There
4361
- # might be multiple TaskConfigs for the same Task. Next available id: 27
4323
+ # might be multiple TaskConfigs for the same Task.
4362
4324
  class EnterpriseCrmFrontendsEventbusProtoTaskConfig
4363
4325
  include Google::Apis::Core::Hashable
4364
4326
 
@@ -4395,6 +4357,17 @@ module Google
4395
4357
  attr_accessor :disable_strict_type_validation
4396
4358
  alias_method :disable_strict_type_validation?, :disable_strict_type_validation
4397
4359
 
4360
+ # Optional Error catcher id of the error catch flow which will be executed when
4361
+ # execution error happens in the task
4362
+ # Corresponds to the JSON property `errorCatcherId`
4363
+ # @return [String]
4364
+ attr_accessor :error_catcher_id
4365
+
4366
+ #
4367
+ # Corresponds to the JSON property `externalTaskType`
4368
+ # @return [String]
4369
+ attr_accessor :external_task_type
4370
+
4398
4371
  # Policy that defines the task retry logic and failure type. If no FailurePolicy
4399
4372
  # is defined for a task, all its dependent tasks will not be executed (i.e, a `
4400
4373
  # retry_strategy` of NONE will be applied).
@@ -4500,8 +4473,7 @@ module Google
4500
4473
 
4501
4474
  # A string template that allows user to configure task parameters (with either
4502
4475
  # literal default values or tokens which will be resolved at execution time) for
4503
- # the task. It will eventually replace the old "parameters" field. Please refer
4504
- # to go/eventbus-task-spec-example for detailed usage example.
4476
+ # the task. It will eventually replace the old "parameters" field.
4505
4477
  # Corresponds to the JSON property `taskSpec`
4506
4478
  # @return [String]
4507
4479
  attr_accessor :task_spec
@@ -4527,6 +4499,8 @@ module Google
4527
4499
  @creator_email = args[:creator_email] if args.key?(:creator_email)
4528
4500
  @description = args[:description] if args.key?(:description)
4529
4501
  @disable_strict_type_validation = args[:disable_strict_type_validation] if args.key?(:disable_strict_type_validation)
4502
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
4503
+ @external_task_type = args[:external_task_type] if args.key?(:external_task_type)
4530
4504
  @failure_policy = args[:failure_policy] if args.key?(:failure_policy)
4531
4505
  @incoming_edge_count = args[:incoming_edge_count] if args.key?(:incoming_edge_count)
4532
4506
  @json_validation_option = args[:json_validation_option] if args.key?(:json_validation_option)
@@ -4562,7 +4536,6 @@ module Google
4562
4536
  alias_method :disabled_for_vpc_sc?, :disabled_for_vpc_sc
4563
4537
 
4564
4538
  # TaskMetadata are attributes that are associated to every common Task we have.
4565
- # Next available: 26
4566
4539
  # Corresponds to the JSON property `metadata`
4567
4540
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskMetadata]
4568
4541
  attr_accessor :metadata
@@ -4585,8 +4558,7 @@ module Google
4585
4558
 
4586
4559
  # Task authors would use this type to configure the UI for a particular task by
4587
4560
  # specifying what UI config modules should be included to compose the UI. Learn
4588
- # more about config module framework: go/integration-platform-config-module-
4589
- # framework
4561
+ # more about config module framework:
4590
4562
  # Corresponds to the JSON property `uiConfig`
4591
4563
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoTaskUiConfig]
4592
4564
  attr_accessor :ui_config
@@ -4606,7 +4578,7 @@ module Google
4606
4578
  end
4607
4579
  end
4608
4580
 
4609
- # Configuration detail of a trigger. Next available id: 17
4581
+ # Configuration detail of a trigger. Next available id: 20
4610
4582
  class EnterpriseCrmFrontendsEventbusProtoTriggerConfig
4611
4583
  include Google::Apis::Core::Hashable
4612
4584
 
@@ -4638,6 +4610,12 @@ module Google
4638
4610
  # @return [Array<String>]
4639
4611
  attr_accessor :enabled_clients
4640
4612
 
4613
+ # Optional Error catcher id of the error catch flow which will be executed when
4614
+ # execution error happens in the task
4615
+ # Corresponds to the JSON property `errorCatcherId`
4616
+ # @return [String]
4617
+ attr_accessor :error_catcher_id
4618
+
4641
4619
  # The user created label for a particular trigger.
4642
4620
  # Corresponds to the JSON property `label`
4643
4621
  # @return [String]
@@ -4689,6 +4667,13 @@ module Google
4689
4667
  # @return [String]
4690
4668
  attr_accessor :trigger_id
4691
4669
 
4670
+ # Optional. Name of the trigger This is added to identify the type of trigger.
4671
+ # This is avoid the logic on triggerId to identify the trigger_type and push the
4672
+ # same to monitoring.
4673
+ # Corresponds to the JSON property `triggerName`
4674
+ # @return [String]
4675
+ attr_accessor :trigger_name
4676
+
4692
4677
  # Required. A number to uniquely identify each trigger config within the
4693
4678
  # workflow on UI.
4694
4679
  # Corresponds to the JSON property `triggerNumber`
@@ -4710,6 +4695,7 @@ module Google
4710
4695
  @cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
4711
4696
  @description = args[:description] if args.key?(:description)
4712
4697
  @enabled_clients = args[:enabled_clients] if args.key?(:enabled_clients)
4698
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
4713
4699
  @label = args[:label] if args.key?(:label)
4714
4700
  @next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
4715
4701
  @pause_workflow_executions = args[:pause_workflow_executions] if args.key?(:pause_workflow_executions)
@@ -4718,6 +4704,7 @@ module Google
4718
4704
  @start_tasks = args[:start_tasks] if args.key?(:start_tasks)
4719
4705
  @trigger_criteria = args[:trigger_criteria] if args.key?(:trigger_criteria)
4720
4706
  @trigger_id = args[:trigger_id] if args.key?(:trigger_id)
4707
+ @trigger_name = args[:trigger_name] if args.key?(:trigger_name)
4721
4708
  @trigger_number = args[:trigger_number] if args.key?(:trigger_number)
4722
4709
  @trigger_type = args[:trigger_type] if args.key?(:trigger_type)
4723
4710
  end
@@ -4728,8 +4715,7 @@ module Google
4728
4715
  include Google::Apis::Core::Hashable
4729
4716
 
4730
4717
  # Attributes are additional options that can be associated with each event
4731
- # property. For more information, see go/integration-platform/event_bus/
4732
- # attributes_registry.md. Next available: 8
4718
+ # property. For more information, see
4733
4719
  # Corresponds to the JSON property `attributes`
4734
4720
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoAttributes]
4735
4721
  attr_accessor :attributes
@@ -4740,6 +4726,13 @@ module Google
4740
4726
  # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntry>]
4741
4727
  attr_accessor :children
4742
4728
 
4729
+ # Indicates whether this variable contains large data and need to be uploaded to
4730
+ # Cloud Storage.
4731
+ # Corresponds to the JSON property `containsLargeData`
4732
+ # @return [Boolean]
4733
+ attr_accessor :contains_large_data
4734
+ alias_method :contains_large_data?, :contains_large_data
4735
+
4743
4736
  # The data type of the parameter.
4744
4737
  # Corresponds to the JSON property `dataType`
4745
4738
  # @return [String]
@@ -4750,12 +4743,17 @@ module Google
4750
4743
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoParameterValueType]
4751
4744
  attr_accessor :default_value
4752
4745
 
4746
+ # Optional. The description about the parameter
4747
+ # Corresponds to the JSON property `description`
4748
+ # @return [String]
4749
+ attr_accessor :description
4750
+
4753
4751
  # Specifies the input/output type for the parameter.
4754
4752
  # Corresponds to the JSON property `inOutType`
4755
4753
  # @return [String]
4756
4754
  attr_accessor :in_out_type
4757
4755
 
4758
- # Whether this parameter is a transient parameter. go/ip-transient-parameters
4756
+ # Whether this parameter is a transient parameter.
4759
4757
  # Corresponds to the JSON property `isTransient`
4760
4758
  # @return [Boolean]
4761
4759
  attr_accessor :is_transient
@@ -4802,6 +4800,12 @@ module Google
4802
4800
  # @return [String]
4803
4801
  attr_accessor :proto_def_path
4804
4802
 
4803
+ #
4804
+ # Corresponds to the JSON property `required`
4805
+ # @return [Boolean]
4806
+ attr_accessor :required
4807
+ alias_method :required?, :required
4808
+
4805
4809
  def initialize(**args)
4806
4810
  update!(**args)
4807
4811
  end
@@ -4810,8 +4814,10 @@ module Google
4810
4814
  def update!(**args)
4811
4815
  @attributes = args[:attributes] if args.key?(:attributes)
4812
4816
  @children = args[:children] if args.key?(:children)
4817
+ @contains_large_data = args[:contains_large_data] if args.key?(:contains_large_data)
4813
4818
  @data_type = args[:data_type] if args.key?(:data_type)
4814
4819
  @default_value = args[:default_value] if args.key?(:default_value)
4820
+ @description = args[:description] if args.key?(:description)
4815
4821
  @in_out_type = args[:in_out_type] if args.key?(:in_out_type)
4816
4822
  @is_transient = args[:is_transient] if args.key?(:is_transient)
4817
4823
  @json_schema = args[:json_schema] if args.key?(:json_schema)
@@ -4821,6 +4827,7 @@ module Google
4821
4827
  @producer = args[:producer] if args.key?(:producer)
4822
4828
  @proto_def_name = args[:proto_def_name] if args.key?(:proto_def_name)
4823
4829
  @proto_def_path = args[:proto_def_path] if args.key?(:proto_def_path)
4830
+ @required = args[:required] if args.key?(:required)
4824
4831
  end
4825
4832
  end
4826
4833
 
@@ -4948,11 +4955,22 @@ module Google
4948
4955
  # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConfigVariable>]
4949
4956
  attr_accessor :additional_variables
4950
4957
 
4958
+ # Identifier key for auth config
4959
+ # Corresponds to the JSON property `authKey`
4960
+ # @return [String]
4961
+ attr_accessor :auth_key
4962
+
4951
4963
  # The type of authentication configured.
4952
4964
  # Corresponds to the JSON property `authType`
4953
4965
  # @return [String]
4954
4966
  attr_accessor :auth_type
4955
4967
 
4968
+ # Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://
4969
+ # www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.
4970
+ # Corresponds to the JSON property `oauth2AuthCodeFlow`
4971
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow]
4972
+ attr_accessor :oauth2_auth_code_flow
4973
+
4956
4974
  # Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See
4957
4975
  # https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
4958
4976
  # Corresponds to the JSON property `oauth2ClientCredentials`
@@ -4983,7 +5001,9 @@ module Google
4983
5001
  # Update properties of this object
4984
5002
  def update!(**args)
4985
5003
  @additional_variables = args[:additional_variables] if args.key?(:additional_variables)
5004
+ @auth_key = args[:auth_key] if args.key?(:auth_key)
4986
5005
  @auth_type = args[:auth_type] if args.key?(:auth_type)
5006
+ @oauth2_auth_code_flow = args[:oauth2_auth_code_flow] if args.key?(:oauth2_auth_code_flow)
4987
5007
  @oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials)
4988
5008
  @oauth2_jwt_bearer = args[:oauth2_jwt_bearer] if args.key?(:oauth2_jwt_bearer)
4989
5009
  @ssh_public_key = args[:ssh_public_key] if args.key?(:ssh_public_key)
@@ -4991,12 +5011,22 @@ module Google
4991
5011
  end
4992
5012
  end
4993
5013
 
4994
- # Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See
4995
- # https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
4996
- class GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials
5014
+ # Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://
5015
+ # www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.
5016
+ class GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow
4997
5017
  include Google::Apis::Core::Hashable
4998
5018
 
4999
- # The client identifier.
5019
+ # Authorization code to be exchanged for access and refresh tokens.
5020
+ # Corresponds to the JSON property `authCode`
5021
+ # @return [String]
5022
+ attr_accessor :auth_code
5023
+
5024
+ # Auth URL for Authorization Code Flow
5025
+ # Corresponds to the JSON property `authUri`
5026
+ # @return [String]
5027
+ attr_accessor :auth_uri
5028
+
5029
+ # Client ID for user-provided OAuth app.
5000
5030
  # Corresponds to the JSON property `clientId`
5001
5031
  # @return [String]
5002
5032
  attr_accessor :client_id
@@ -5006,24 +5036,77 @@ module Google
5006
5036
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
5007
5037
  attr_accessor :client_secret
5008
5038
 
5039
+ # Whether to enable PKCE when the user performs the auth code flow.
5040
+ # Corresponds to the JSON property `enablePkce`
5041
+ # @return [Boolean]
5042
+ attr_accessor :enable_pkce
5043
+ alias_method :enable_pkce?, :enable_pkce
5044
+
5045
+ # PKCE verifier to be used during the auth code exchange.
5046
+ # Corresponds to the JSON property `pkceVerifier`
5047
+ # @return [String]
5048
+ attr_accessor :pkce_verifier
5049
+
5050
+ # Redirect URI to be provided during the auth code exchange.
5051
+ # Corresponds to the JSON property `redirectUri`
5052
+ # @return [String]
5053
+ attr_accessor :redirect_uri
5054
+
5055
+ # Scopes the connection will request when the user performs the auth code flow.
5056
+ # Corresponds to the JSON property `scopes`
5057
+ # @return [Array<String>]
5058
+ attr_accessor :scopes
5059
+
5009
5060
  def initialize(**args)
5010
5061
  update!(**args)
5011
5062
  end
5012
5063
 
5013
5064
  # Update properties of this object
5014
5065
  def update!(**args)
5066
+ @auth_code = args[:auth_code] if args.key?(:auth_code)
5067
+ @auth_uri = args[:auth_uri] if args.key?(:auth_uri)
5015
5068
  @client_id = args[:client_id] if args.key?(:client_id)
5016
5069
  @client_secret = args[:client_secret] if args.key?(:client_secret)
5070
+ @enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
5071
+ @pkce_verifier = args[:pkce_verifier] if args.key?(:pkce_verifier)
5072
+ @redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri)
5073
+ @scopes = args[:scopes] if args.key?(:scopes)
5017
5074
  end
5018
5075
  end
5019
5076
 
5020
- # Parameters to support JSON Web Token (JWT) Profile for Oauth 2.0 Authorization
5021
- # Grant based authentication. See https://tools.ietf.org/html/rfc7523 for more
5022
- # details.
5023
- class GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer
5077
+ # Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See
5078
+ # https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
5079
+ class GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials
5024
5080
  include Google::Apis::Core::Hashable
5025
5081
 
5026
- # Secret provides a reference to entries in Secret Manager.
5082
+ # The client identifier.
5083
+ # Corresponds to the JSON property `clientId`
5084
+ # @return [String]
5085
+ attr_accessor :client_id
5086
+
5087
+ # Secret provides a reference to entries in Secret Manager.
5088
+ # Corresponds to the JSON property `clientSecret`
5089
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
5090
+ attr_accessor :client_secret
5091
+
5092
+ def initialize(**args)
5093
+ update!(**args)
5094
+ end
5095
+
5096
+ # Update properties of this object
5097
+ def update!(**args)
5098
+ @client_id = args[:client_id] if args.key?(:client_id)
5099
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
5100
+ end
5101
+ end
5102
+
5103
+ # Parameters to support JSON Web Token (JWT) Profile for Oauth 2.0 Authorization
5104
+ # Grant based authentication. See https://tools.ietf.org/html/rfc7523 for more
5105
+ # details.
5106
+ class GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer
5107
+ include Google::Apis::Core::Hashable
5108
+
5109
+ # Secret provides a reference to entries in Secret Manager.
5027
5110
  # Corresponds to the JSON property `clientKey`
5028
5111
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
5029
5112
  attr_accessor :client_key
@@ -5137,6 +5220,25 @@ module Google
5137
5220
  end
5138
5221
  end
5139
5222
 
5223
+ # Billing config for the connection.
5224
+ class GoogleCloudConnectorsV1BillingConfig
5225
+ include Google::Apis::Core::Hashable
5226
+
5227
+ # Output only. Billing category for the connector.
5228
+ # Corresponds to the JSON property `billingCategory`
5229
+ # @return [String]
5230
+ attr_accessor :billing_category
5231
+
5232
+ def initialize(**args)
5233
+ update!(**args)
5234
+ end
5235
+
5236
+ # Update properties of this object
5237
+ def update!(**args)
5238
+ @billing_category = args[:billing_category] if args.key?(:billing_category)
5239
+ end
5240
+ end
5241
+
5140
5242
  # ConfigVariable represents a configuration variable present in a Connection. or
5141
5243
  # AuthConfig.
5142
5244
  class GoogleCloudConnectorsV1ConfigVariable
@@ -5148,6 +5250,11 @@ module Google
5148
5250
  attr_accessor :bool_value
5149
5251
  alias_method :bool_value?, :bool_value
5150
5252
 
5253
+ # Encryption Key value.
5254
+ # Corresponds to the JSON property `encryptionKeyValue`
5255
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EncryptionKey]
5256
+ attr_accessor :encryption_key_value
5257
+
5151
5258
  # Value is an integer
5152
5259
  # Corresponds to the JSON property `intValue`
5153
5260
  # @return [Fixnum]
@@ -5175,6 +5282,7 @@ module Google
5175
5282
  # Update properties of this object
5176
5283
  def update!(**args)
5177
5284
  @bool_value = args[:bool_value] if args.key?(:bool_value)
5285
+ @encryption_key_value = args[:encryption_key_value] if args.key?(:encryption_key_value)
5178
5286
  @int_value = args[:int_value] if args.key?(:int_value)
5179
5287
  @key = args[:key] if args.key?(:key)
5180
5288
  @secret_value = args[:secret_value] if args.key?(:secret_value)
@@ -5191,11 +5299,22 @@ module Google
5191
5299
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig]
5192
5300
  attr_accessor :auth_config
5193
5301
 
5302
+ # Billing config for the connection.
5303
+ # Corresponds to the JSON property `billingConfig`
5304
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1BillingConfig]
5305
+ attr_accessor :billing_config
5306
+
5194
5307
  # Optional. Configuration for configuring the connection with an external system.
5195
5308
  # Corresponds to the JSON property `configVariables`
5196
5309
  # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConfigVariable>]
5197
5310
  attr_accessor :config_variables
5198
5311
 
5312
+ # Output only. Connection revision. This field is only updated when the
5313
+ # connection is created or updated by User.
5314
+ # Corresponds to the JSON property `connectionRevision`
5315
+ # @return [Fixnum]
5316
+ attr_accessor :connection_revision
5317
+
5199
5318
  # Required. Connector version on which the connection is created. The format is:
5200
5319
  # projects/*/locations/*/providers/*/connectors/*/versions/* Only global
5201
5320
  # location is supported for ConnectorVersion resource.
@@ -5203,6 +5322,17 @@ module Google
5203
5322
  # @return [String]
5204
5323
  attr_accessor :connector_version
5205
5324
 
5325
+ # This cofiguration provides infra configs like rate limit threshold which need
5326
+ # to be configurable for every connector version
5327
+ # Corresponds to the JSON property `connectorVersionInfraConfig`
5328
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConnectorVersionInfraConfig]
5329
+ attr_accessor :connector_version_infra_config
5330
+
5331
+ # Output only. Flag to mark the version indicating the launch stage.
5332
+ # Corresponds to the JSON property `connectorVersionLaunchStage`
5333
+ # @return [String]
5334
+ attr_accessor :connector_version_launch_stage
5335
+
5206
5336
  # Output only. Created time.
5207
5337
  # Corresponds to the JSON property `createTime`
5208
5338
  # @return [String]
@@ -5225,12 +5355,34 @@ module Google
5225
5355
  # @return [String]
5226
5356
  attr_accessor :envoy_image_location
5227
5357
 
5358
+ # Eventing Configuration of a connection
5359
+ # Corresponds to the JSON property `eventingConfig`
5360
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfig]
5361
+ attr_accessor :eventing_config
5362
+
5363
+ # Optional. Eventing enablement type. Will be nil if eventing is not enabled.
5364
+ # Corresponds to the JSON property `eventingEnablementType`
5365
+ # @return [String]
5366
+ attr_accessor :eventing_enablement_type
5367
+
5368
+ # Eventing runtime data has the details related to eventing managed by the
5369
+ # system.
5370
+ # Corresponds to the JSON property `eventingRuntimeData`
5371
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingRuntimeData]
5372
+ attr_accessor :eventing_runtime_data
5373
+
5228
5374
  # Output only. GCR location where the runtime image is stored. formatted like:
5229
5375
  # gcr.io/`bucketName`/`imageName`
5230
5376
  # Corresponds to the JSON property `imageLocation`
5231
5377
  # @return [String]
5232
5378
  attr_accessor :image_location
5233
5379
 
5380
+ # Output only. Is trusted tester program enabled for the project.
5381
+ # Corresponds to the JSON property `isTrustedTester`
5382
+ # @return [Boolean]
5383
+ attr_accessor :is_trusted_tester
5384
+ alias_method :is_trusted_tester?, :is_trusted_tester
5385
+
5234
5386
  # Optional. Resource labels to represent user-provided metadata. Refer to cloud
5235
5387
  # documentation on labels for more details. https://cloud.google.com/compute/
5236
5388
  # docs/labeling-resources
@@ -5244,6 +5396,11 @@ module Google
5244
5396
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1LockConfig]
5245
5397
  attr_accessor :lock_config
5246
5398
 
5399
+ # Log configuration for the connection.
5400
+ # Corresponds to the JSON property `logConfig`
5401
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1LogConfig]
5402
+ attr_accessor :log_config
5403
+
5247
5404
  # Output only. Resource name of the Connection. Format: projects/`project`/
5248
5405
  # locations/`location`/connections/`connection`
5249
5406
  # Corresponds to the JSON property `name`
@@ -5255,7 +5412,8 @@ module Google
5255
5412
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1NodeConfig]
5256
5413
  attr_accessor :node_config
5257
5414
 
5258
- # Optional. Service account needed for runtime plane to access GCP resources.
5415
+ # Optional. Service account needed for runtime plane to access Google Cloud
5416
+ # resources.
5259
5417
  # Corresponds to the JSON property `serviceAccount`
5260
5418
  # @return [String]
5261
5419
  attr_accessor :service_account
@@ -5268,11 +5426,22 @@ module Google
5268
5426
  # @return [String]
5269
5427
  attr_accessor :service_directory
5270
5428
 
5429
+ # SSL Configuration of a connection
5430
+ # Corresponds to the JSON property `sslConfig`
5431
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1SslConfig]
5432
+ attr_accessor :ssl_config
5433
+
5271
5434
  # ConnectionStatus indicates the state of the connection.
5272
5435
  # Corresponds to the JSON property `status`
5273
5436
  # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConnectionStatus]
5274
5437
  attr_accessor :status
5275
5438
 
5439
+ # Output only. This subscription type enum states the subscription type of the
5440
+ # project.
5441
+ # Corresponds to the JSON property `subscriptionType`
5442
+ # @return [String]
5443
+ attr_accessor :subscription_type
5444
+
5276
5445
  # Optional. Suspended indicates if a user has suspended a connection or not.
5277
5446
  # Corresponds to the JSON property `suspended`
5278
5447
  # @return [Boolean]
@@ -5291,20 +5460,31 @@ module Google
5291
5460
  # Update properties of this object
5292
5461
  def update!(**args)
5293
5462
  @auth_config = args[:auth_config] if args.key?(:auth_config)
5463
+ @billing_config = args[:billing_config] if args.key?(:billing_config)
5294
5464
  @config_variables = args[:config_variables] if args.key?(:config_variables)
5465
+ @connection_revision = args[:connection_revision] if args.key?(:connection_revision)
5295
5466
  @connector_version = args[:connector_version] if args.key?(:connector_version)
5467
+ @connector_version_infra_config = args[:connector_version_infra_config] if args.key?(:connector_version_infra_config)
5468
+ @connector_version_launch_stage = args[:connector_version_launch_stage] if args.key?(:connector_version_launch_stage)
5296
5469
  @create_time = args[:create_time] if args.key?(:create_time)
5297
5470
  @description = args[:description] if args.key?(:description)
5298
5471
  @destination_configs = args[:destination_configs] if args.key?(:destination_configs)
5299
5472
  @envoy_image_location = args[:envoy_image_location] if args.key?(:envoy_image_location)
5473
+ @eventing_config = args[:eventing_config] if args.key?(:eventing_config)
5474
+ @eventing_enablement_type = args[:eventing_enablement_type] if args.key?(:eventing_enablement_type)
5475
+ @eventing_runtime_data = args[:eventing_runtime_data] if args.key?(:eventing_runtime_data)
5300
5476
  @image_location = args[:image_location] if args.key?(:image_location)
5477
+ @is_trusted_tester = args[:is_trusted_tester] if args.key?(:is_trusted_tester)
5301
5478
  @labels = args[:labels] if args.key?(:labels)
5302
5479
  @lock_config = args[:lock_config] if args.key?(:lock_config)
5480
+ @log_config = args[:log_config] if args.key?(:log_config)
5303
5481
  @name = args[:name] if args.key?(:name)
5304
5482
  @node_config = args[:node_config] if args.key?(:node_config)
5305
5483
  @service_account = args[:service_account] if args.key?(:service_account)
5306
5484
  @service_directory = args[:service_directory] if args.key?(:service_directory)
5485
+ @ssl_config = args[:ssl_config] if args.key?(:ssl_config)
5307
5486
  @status = args[:status] if args.key?(:status)
5487
+ @subscription_type = args[:subscription_type] if args.key?(:subscription_type)
5308
5488
  @suspended = args[:suspended] if args.key?(:suspended)
5309
5489
  @update_time = args[:update_time] if args.key?(:update_time)
5310
5490
  end
@@ -5341,6 +5521,69 @@ module Google
5341
5521
  end
5342
5522
  end
5343
5523
 
5524
+ # This cofiguration provides infra configs like rate limit threshold which need
5525
+ # to be configurable for every connector version
5526
+ class GoogleCloudConnectorsV1ConnectorVersionInfraConfig
5527
+ include Google::Apis::Core::Hashable
5528
+
5529
+ # Output only. The window used for ratelimiting runtime requests to connections.
5530
+ # Corresponds to the JSON property `connectionRatelimitWindowSeconds`
5531
+ # @return [Fixnum]
5532
+ attr_accessor :connection_ratelimit_window_seconds
5533
+
5534
+ # Optional. Indicates whether connector is deployed on GKE/CloudRun
5535
+ # Corresponds to the JSON property `deploymentModel`
5536
+ # @return [String]
5537
+ attr_accessor :deployment_model
5538
+
5539
+ # Autoscaling config for connector deployment system metrics.
5540
+ # Corresponds to the JSON property `hpaConfig`
5541
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1HpaConfig]
5542
+ attr_accessor :hpa_config
5543
+
5544
+ # Output only. Max QPS supported for internal requests originating from Connd.
5545
+ # Corresponds to the JSON property `internalclientRatelimitThreshold`
5546
+ # @return [Fixnum]
5547
+ attr_accessor :internalclient_ratelimit_threshold
5548
+
5549
+ # Output only. Max QPS supported by the connector version before throttling of
5550
+ # requests.
5551
+ # Corresponds to the JSON property `ratelimitThreshold`
5552
+ # @return [Fixnum]
5553
+ attr_accessor :ratelimit_threshold
5554
+
5555
+ # Resource limits defined for connection pods of a given connector type.
5556
+ # Corresponds to the JSON property `resourceLimits`
5557
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ResourceLimits]
5558
+ attr_accessor :resource_limits
5559
+
5560
+ # Resource requests defined for connection pods of a given connector type.
5561
+ # Corresponds to the JSON property `resourceRequests`
5562
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ResourceRequests]
5563
+ attr_accessor :resource_requests
5564
+
5565
+ # Output only. The name of shared connector deployment.
5566
+ # Corresponds to the JSON property `sharedDeployment`
5567
+ # @return [String]
5568
+ attr_accessor :shared_deployment
5569
+
5570
+ def initialize(**args)
5571
+ update!(**args)
5572
+ end
5573
+
5574
+ # Update properties of this object
5575
+ def update!(**args)
5576
+ @connection_ratelimit_window_seconds = args[:connection_ratelimit_window_seconds] if args.key?(:connection_ratelimit_window_seconds)
5577
+ @deployment_model = args[:deployment_model] if args.key?(:deployment_model)
5578
+ @hpa_config = args[:hpa_config] if args.key?(:hpa_config)
5579
+ @internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
5580
+ @ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
5581
+ @resource_limits = args[:resource_limits] if args.key?(:resource_limits)
5582
+ @resource_requests = args[:resource_requests] if args.key?(:resource_requests)
5583
+ @shared_deployment = args[:shared_deployment] if args.key?(:shared_deployment)
5584
+ end
5585
+ end
5586
+
5344
5587
  #
5345
5588
  class GoogleCloudConnectorsV1Destination
5346
5589
  include Google::Apis::Core::Hashable
@@ -5397,6 +5640,269 @@ module Google
5397
5640
  end
5398
5641
  end
5399
5642
 
5643
+ # Encryption Key value.
5644
+ class GoogleCloudConnectorsV1EncryptionKey
5645
+ include Google::Apis::Core::Hashable
5646
+
5647
+ # The [KMS key name] with which the content of the Operation is encrypted. The
5648
+ # expected format: `projects/*/locations/*/keyRings/*/cryptoKeys/*`. Will be
5649
+ # empty string if google managed.
5650
+ # Corresponds to the JSON property `kmsKeyName`
5651
+ # @return [String]
5652
+ attr_accessor :kms_key_name
5653
+
5654
+ # Type.
5655
+ # Corresponds to the JSON property `type`
5656
+ # @return [String]
5657
+ attr_accessor :type
5658
+
5659
+ def initialize(**args)
5660
+ update!(**args)
5661
+ end
5662
+
5663
+ # Update properties of this object
5664
+ def update!(**args)
5665
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
5666
+ @type = args[:type] if args.key?(:type)
5667
+ end
5668
+ end
5669
+
5670
+ # Eventing Configuration of a connection
5671
+ class GoogleCloudConnectorsV1EventingConfig
5672
+ include Google::Apis::Core::Hashable
5673
+
5674
+ # Additional eventing related field values
5675
+ # Corresponds to the JSON property `additionalVariables`
5676
+ # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConfigVariable>]
5677
+ attr_accessor :additional_variables
5678
+
5679
+ # AuthConfig defines details of a authentication type.
5680
+ # Corresponds to the JSON property `authConfig`
5681
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig]
5682
+ attr_accessor :auth_config
5683
+
5684
+ # Dead Letter configuration details provided by the user.
5685
+ # Corresponds to the JSON property `deadLetterConfig`
5686
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingConfigDeadLetterConfig]
5687
+ attr_accessor :dead_letter_config
5688
+
5689
+ # Enrichment Enabled.
5690
+ # Corresponds to the JSON property `enrichmentEnabled`
5691
+ # @return [Boolean]
5692
+ attr_accessor :enrichment_enabled
5693
+ alias_method :enrichment_enabled?, :enrichment_enabled
5694
+
5695
+ # Optional. Ingress endpoint of the event listener. This is used only when
5696
+ # private connectivity is enabled.
5697
+ # Corresponds to the JSON property `eventsListenerIngressEndpoint`
5698
+ # @return [String]
5699
+ attr_accessor :events_listener_ingress_endpoint
5700
+
5701
+ # AuthConfig defines details of a authentication type.
5702
+ # Corresponds to the JSON property `listenerAuthConfig`
5703
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfig]
5704
+ attr_accessor :listener_auth_config
5705
+
5706
+ # Optional. Private Connectivity Enabled.
5707
+ # Corresponds to the JSON property `privateConnectivityEnabled`
5708
+ # @return [Boolean]
5709
+ attr_accessor :private_connectivity_enabled
5710
+ alias_method :private_connectivity_enabled?, :private_connectivity_enabled
5711
+
5712
+ # Define the Connectors target endpoint.
5713
+ # Corresponds to the JSON property `proxyDestinationConfig`
5714
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig]
5715
+ attr_accessor :proxy_destination_config
5716
+
5717
+ # Define the Connectors target endpoint.
5718
+ # Corresponds to the JSON property `registrationDestinationConfig`
5719
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1DestinationConfig]
5720
+ attr_accessor :registration_destination_config
5721
+
5722
+ def initialize(**args)
5723
+ update!(**args)
5724
+ end
5725
+
5726
+ # Update properties of this object
5727
+ def update!(**args)
5728
+ @additional_variables = args[:additional_variables] if args.key?(:additional_variables)
5729
+ @auth_config = args[:auth_config] if args.key?(:auth_config)
5730
+ @dead_letter_config = args[:dead_letter_config] if args.key?(:dead_letter_config)
5731
+ @enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled)
5732
+ @events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint)
5733
+ @listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config)
5734
+ @private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
5735
+ @proxy_destination_config = args[:proxy_destination_config] if args.key?(:proxy_destination_config)
5736
+ @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
5737
+ end
5738
+ end
5739
+
5740
+ # Dead Letter configuration details provided by the user.
5741
+ class GoogleCloudConnectorsV1EventingConfigDeadLetterConfig
5742
+ include Google::Apis::Core::Hashable
5743
+
5744
+ # Optional. Project which has the topic given.
5745
+ # Corresponds to the JSON property `projectId`
5746
+ # @return [String]
5747
+ attr_accessor :project_id
5748
+
5749
+ # Optional. Topic to push events which couldn't be processed.
5750
+ # Corresponds to the JSON property `topic`
5751
+ # @return [String]
5752
+ attr_accessor :topic
5753
+
5754
+ def initialize(**args)
5755
+ update!(**args)
5756
+ end
5757
+
5758
+ # Update properties of this object
5759
+ def update!(**args)
5760
+ @project_id = args[:project_id] if args.key?(:project_id)
5761
+ @topic = args[:topic] if args.key?(:topic)
5762
+ end
5763
+ end
5764
+
5765
+ # Eventing runtime data has the details related to eventing managed by the
5766
+ # system.
5767
+ class GoogleCloudConnectorsV1EventingRuntimeData
5768
+ include Google::Apis::Core::Hashable
5769
+
5770
+ # Output only. Events listener endpoint. The value will populated after
5771
+ # provisioning the events listener.
5772
+ # Corresponds to the JSON property `eventsListenerEndpoint`
5773
+ # @return [String]
5774
+ attr_accessor :events_listener_endpoint
5775
+
5776
+ # Output only. Events listener PSC Service attachment. The value will be
5777
+ # populated after provisioning the events listener with private connectivity
5778
+ # enabled.
5779
+ # Corresponds to the JSON property `eventsListenerPscSa`
5780
+ # @return [String]
5781
+ attr_accessor :events_listener_psc_sa
5782
+
5783
+ # EventingStatus indicates the state of eventing.
5784
+ # Corresponds to the JSON property `status`
5785
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingStatus]
5786
+ attr_accessor :status
5787
+
5788
+ # WebhookData has details of webhook configuration.
5789
+ # Corresponds to the JSON property `webhookData`
5790
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1EventingRuntimeDataWebhookData]
5791
+ attr_accessor :webhook_data
5792
+
5793
+ def initialize(**args)
5794
+ update!(**args)
5795
+ end
5796
+
5797
+ # Update properties of this object
5798
+ def update!(**args)
5799
+ @events_listener_endpoint = args[:events_listener_endpoint] if args.key?(:events_listener_endpoint)
5800
+ @events_listener_psc_sa = args[:events_listener_psc_sa] if args.key?(:events_listener_psc_sa)
5801
+ @status = args[:status] if args.key?(:status)
5802
+ @webhook_data = args[:webhook_data] if args.key?(:webhook_data)
5803
+ end
5804
+ end
5805
+
5806
+ # WebhookData has details of webhook configuration.
5807
+ class GoogleCloudConnectorsV1EventingRuntimeDataWebhookData
5808
+ include Google::Apis::Core::Hashable
5809
+
5810
+ # Output only. Additional webhook related field values.
5811
+ # Corresponds to the JSON property `additionalVariables`
5812
+ # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConfigVariable>]
5813
+ attr_accessor :additional_variables
5814
+
5815
+ # Output only. Timestamp when the webhook was created.
5816
+ # Corresponds to the JSON property `createTime`
5817
+ # @return [String]
5818
+ attr_accessor :create_time
5819
+
5820
+ # Output only. ID to uniquely identify webhook.
5821
+ # Corresponds to the JSON property `id`
5822
+ # @return [String]
5823
+ attr_accessor :id
5824
+
5825
+ # Output only. Name of the Webhook
5826
+ # Corresponds to the JSON property `name`
5827
+ # @return [String]
5828
+ attr_accessor :name
5829
+
5830
+ # Output only. Next webhook refresh time. Will be null if refresh is not
5831
+ # supported.
5832
+ # Corresponds to the JSON property `nextRefreshTime`
5833
+ # @return [String]
5834
+ attr_accessor :next_refresh_time
5835
+
5836
+ # Output only. Timestamp when the webhook was last updated.
5837
+ # Corresponds to the JSON property `updateTime`
5838
+ # @return [String]
5839
+ attr_accessor :update_time
5840
+
5841
+ def initialize(**args)
5842
+ update!(**args)
5843
+ end
5844
+
5845
+ # Update properties of this object
5846
+ def update!(**args)
5847
+ @additional_variables = args[:additional_variables] if args.key?(:additional_variables)
5848
+ @create_time = args[:create_time] if args.key?(:create_time)
5849
+ @id = args[:id] if args.key?(:id)
5850
+ @name = args[:name] if args.key?(:name)
5851
+ @next_refresh_time = args[:next_refresh_time] if args.key?(:next_refresh_time)
5852
+ @update_time = args[:update_time] if args.key?(:update_time)
5853
+ end
5854
+ end
5855
+
5856
+ # EventingStatus indicates the state of eventing.
5857
+ class GoogleCloudConnectorsV1EventingStatus
5858
+ include Google::Apis::Core::Hashable
5859
+
5860
+ # Output only. Description of error if State is set to "ERROR".
5861
+ # Corresponds to the JSON property `description`
5862
+ # @return [String]
5863
+ attr_accessor :description
5864
+
5865
+ # Output only. State.
5866
+ # Corresponds to the JSON property `state`
5867
+ # @return [String]
5868
+ attr_accessor :state
5869
+
5870
+ def initialize(**args)
5871
+ update!(**args)
5872
+ end
5873
+
5874
+ # Update properties of this object
5875
+ def update!(**args)
5876
+ @description = args[:description] if args.key?(:description)
5877
+ @state = args[:state] if args.key?(:state)
5878
+ end
5879
+ end
5880
+
5881
+ # Autoscaling config for connector deployment system metrics.
5882
+ class GoogleCloudConnectorsV1HpaConfig
5883
+ include Google::Apis::Core::Hashable
5884
+
5885
+ # Output only. Percent CPU utilization where HPA triggers autoscaling.
5886
+ # Corresponds to the JSON property `cpuUtilizationThreshold`
5887
+ # @return [Fixnum]
5888
+ attr_accessor :cpu_utilization_threshold
5889
+
5890
+ # Output only. Percent Memory utilization where HPA triggers autoscaling.
5891
+ # Corresponds to the JSON property `memoryUtilizationThreshold`
5892
+ # @return [Fixnum]
5893
+ attr_accessor :memory_utilization_threshold
5894
+
5895
+ def initialize(**args)
5896
+ update!(**args)
5897
+ end
5898
+
5899
+ # Update properties of this object
5900
+ def update!(**args)
5901
+ @cpu_utilization_threshold = args[:cpu_utilization_threshold] if args.key?(:cpu_utilization_threshold)
5902
+ @memory_utilization_threshold = args[:memory_utilization_threshold] if args.key?(:memory_utilization_threshold)
5903
+ end
5904
+ end
5905
+
5400
5906
  # Determines whether or no a connection is locked. If locked, a reason must be
5401
5907
  # specified.
5402
5908
  class GoogleCloudConnectorsV1LockConfig
@@ -5424,6 +5930,26 @@ module Google
5424
5930
  end
5425
5931
  end
5426
5932
 
5933
+ # Log configuration for the connection.
5934
+ class GoogleCloudConnectorsV1LogConfig
5935
+ include Google::Apis::Core::Hashable
5936
+
5937
+ # Enabled represents whether logging is enabled or not for a connection.
5938
+ # Corresponds to the JSON property `enabled`
5939
+ # @return [Boolean]
5940
+ attr_accessor :enabled
5941
+ alias_method :enabled?, :enabled
5942
+
5943
+ def initialize(**args)
5944
+ update!(**args)
5945
+ end
5946
+
5947
+ # Update properties of this object
5948
+ def update!(**args)
5949
+ @enabled = args[:enabled] if args.key?(:enabled)
5950
+ end
5951
+ end
5952
+
5427
5953
  # Node configuration for the connection.
5428
5954
  class GoogleCloudConnectorsV1NodeConfig
5429
5955
  include Google::Apis::Core::Hashable
@@ -5449,6 +5975,56 @@ module Google
5449
5975
  end
5450
5976
  end
5451
5977
 
5978
+ # Resource limits defined for connection pods of a given connector type.
5979
+ class GoogleCloudConnectorsV1ResourceLimits
5980
+ include Google::Apis::Core::Hashable
5981
+
5982
+ # Output only. CPU limit.
5983
+ # Corresponds to the JSON property `cpu`
5984
+ # @return [String]
5985
+ attr_accessor :cpu
5986
+
5987
+ # Output only. Memory limit.
5988
+ # Corresponds to the JSON property `memory`
5989
+ # @return [String]
5990
+ attr_accessor :memory
5991
+
5992
+ def initialize(**args)
5993
+ update!(**args)
5994
+ end
5995
+
5996
+ # Update properties of this object
5997
+ def update!(**args)
5998
+ @cpu = args[:cpu] if args.key?(:cpu)
5999
+ @memory = args[:memory] if args.key?(:memory)
6000
+ end
6001
+ end
6002
+
6003
+ # Resource requests defined for connection pods of a given connector type.
6004
+ class GoogleCloudConnectorsV1ResourceRequests
6005
+ include Google::Apis::Core::Hashable
6006
+
6007
+ # Output only. CPU request.
6008
+ # Corresponds to the JSON property `cpu`
6009
+ # @return [String]
6010
+ attr_accessor :cpu
6011
+
6012
+ # Output only. Memory request.
6013
+ # Corresponds to the JSON property `memory`
6014
+ # @return [String]
6015
+ attr_accessor :memory
6016
+
6017
+ def initialize(**args)
6018
+ update!(**args)
6019
+ end
6020
+
6021
+ # Update properties of this object
6022
+ def update!(**args)
6023
+ @cpu = args[:cpu] if args.key?(:cpu)
6024
+ @memory = args[:memory] if args.key?(:memory)
6025
+ end
6026
+ end
6027
+
5452
6028
  # Secret provides a reference to entries in Secret Manager.
5453
6029
  class GoogleCloudConnectorsV1Secret
5454
6030
  include Google::Apis::Core::Hashable
@@ -5469,6 +6045,80 @@ module Google
5469
6045
  end
5470
6046
  end
5471
6047
 
6048
+ # SSL Configuration of a connection
6049
+ class GoogleCloudConnectorsV1SslConfig
6050
+ include Google::Apis::Core::Hashable
6051
+
6052
+ # Additional SSL related field values
6053
+ # Corresponds to the JSON property `additionalVariables`
6054
+ # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1ConfigVariable>]
6055
+ attr_accessor :additional_variables
6056
+
6057
+ # Type of Client Cert (PEM/JKS/.. etc.)
6058
+ # Corresponds to the JSON property `clientCertType`
6059
+ # @return [String]
6060
+ attr_accessor :client_cert_type
6061
+
6062
+ # Secret provides a reference to entries in Secret Manager.
6063
+ # Corresponds to the JSON property `clientCertificate`
6064
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
6065
+ attr_accessor :client_certificate
6066
+
6067
+ # Secret provides a reference to entries in Secret Manager.
6068
+ # Corresponds to the JSON property `clientPrivateKey`
6069
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
6070
+ attr_accessor :client_private_key
6071
+
6072
+ # Secret provides a reference to entries in Secret Manager.
6073
+ # Corresponds to the JSON property `clientPrivateKeyPass`
6074
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
6075
+ attr_accessor :client_private_key_pass
6076
+
6077
+ # Secret provides a reference to entries in Secret Manager.
6078
+ # Corresponds to the JSON property `privateServerCertificate`
6079
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret]
6080
+ attr_accessor :private_server_certificate
6081
+
6082
+ # Type of Server Cert (PEM/JKS/.. etc.)
6083
+ # Corresponds to the JSON property `serverCertType`
6084
+ # @return [String]
6085
+ attr_accessor :server_cert_type
6086
+
6087
+ # Trust Model of the SSL connection
6088
+ # Corresponds to the JSON property `trustModel`
6089
+ # @return [String]
6090
+ attr_accessor :trust_model
6091
+
6092
+ # Controls the ssl type for the given connector version.
6093
+ # Corresponds to the JSON property `type`
6094
+ # @return [String]
6095
+ attr_accessor :type
6096
+
6097
+ # Bool for enabling SSL
6098
+ # Corresponds to the JSON property `useSsl`
6099
+ # @return [Boolean]
6100
+ attr_accessor :use_ssl
6101
+ alias_method :use_ssl?, :use_ssl
6102
+
6103
+ def initialize(**args)
6104
+ update!(**args)
6105
+ end
6106
+
6107
+ # Update properties of this object
6108
+ def update!(**args)
6109
+ @additional_variables = args[:additional_variables] if args.key?(:additional_variables)
6110
+ @client_cert_type = args[:client_cert_type] if args.key?(:client_cert_type)
6111
+ @client_certificate = args[:client_certificate] if args.key?(:client_certificate)
6112
+ @client_private_key = args[:client_private_key] if args.key?(:client_private_key)
6113
+ @client_private_key_pass = args[:client_private_key_pass] if args.key?(:client_private_key_pass)
6114
+ @private_server_certificate = args[:private_server_certificate] if args.key?(:private_server_certificate)
6115
+ @server_cert_type = args[:server_cert_type] if args.key?(:server_cert_type)
6116
+ @trust_model = args[:trust_model] if args.key?(:trust_model)
6117
+ @type = args[:type] if args.key?(:type)
6118
+ @use_ssl = args[:use_ssl] if args.key?(:use_ssl)
6119
+ end
6120
+ end
6121
+
5472
6122
  # The access token represents the authorization of a specific application to
5473
6123
  # access specific parts of a user’s data.
5474
6124
  class GoogleCloudIntegrationsV1alphaAccessToken
@@ -5515,69 +6165,17 @@ module Google
5515
6165
  end
5516
6166
  end
5517
6167
 
5518
- # Request for ArchiveBundle.
5519
- class GoogleCloudIntegrationsV1alphaArchiveBundleRequest
5520
- include Google::Apis::Core::Hashable
5521
-
5522
- def initialize(**args)
5523
- update!(**args)
5524
- end
5525
-
5526
- # Update properties of this object
5527
- def update!(**args)
5528
- end
5529
- end
5530
-
5531
- # Response for ArchiveBundle.
5532
- class GoogleCloudIntegrationsV1alphaArchiveBundleResponse
5533
- include Google::Apis::Core::Hashable
5534
-
5535
- def initialize(**args)
5536
- update!(**args)
5537
- end
5538
-
5539
- # Update properties of this object
5540
- def update!(**args)
5541
- end
5542
- end
5543
-
5544
- # Request for ArchiveIntegrationVersion.
5545
- class GoogleCloudIntegrationsV1alphaArchiveIntegrationVersionRequest
5546
- include Google::Apis::Core::Hashable
5547
-
5548
- def initialize(**args)
5549
- update!(**args)
5550
- end
5551
-
5552
- # Update properties of this object
5553
- def update!(**args)
5554
- end
5555
- end
5556
-
5557
- # Response for ArchiveIntegrationVersion.
5558
- class GoogleCloudIntegrationsV1alphaArchiveIntegrationVersionResponse
5559
- include Google::Apis::Core::Hashable
5560
-
5561
- def initialize(**args)
5562
- update!(**args)
5563
- end
5564
-
5565
- # Update properties of this object
5566
- def update!(**args)
5567
- end
5568
- end
5569
-
5570
6168
  # Status for the execution attempt.
5571
6169
  class GoogleCloudIntegrationsV1alphaAttemptStats
5572
6170
  include Google::Apis::Core::Hashable
5573
6171
 
5574
- # The end time of the event execution for current attempt.
6172
+ # The end time of the integration execution for current attempt.
5575
6173
  # Corresponds to the JSON property `endTime`
5576
6174
  # @return [String]
5577
6175
  attr_accessor :end_time
5578
6176
 
5579
- # The start time of the event execution for current attempt. This could be in
5580
- # the future if it's been scheduled.
6177
+ # The start time of the integration execution for current attempt. This could be
6178
+ # in the future if it's been scheduled.
5581
6179
  # Corresponds to the JSON property `startTime`
5582
6180
  # @return [String]
5583
6181
  attr_accessor :start_time
@@ -5628,7 +6226,7 @@ module Google
5628
6226
  # @return [String]
5629
6227
  attr_accessor :description
5630
6228
 
5631
- # The name of the auth config.
6229
+ # Required. The name of the auth config.
5632
6230
  # Corresponds to the JSON property `displayName`
5633
6231
  # @return [String]
5634
6232
  attr_accessor :display_name
@@ -5652,8 +6250,9 @@ module Google
5652
6250
  # @return [String]
5653
6251
  attr_accessor :last_modifier_email
5654
6252
 
5655
- # Resource name of the SFDC instance projects/`project`/locations/`location`/
5656
- # authConfigs/`authConfig`.
6253
+ # Resource name of the auth config. For more information, see Manage
6254
+ # authentication profiles. projects/`project`/locations/`location`/authConfigs/`
6255
+ # authConfig`.
5657
6256
  # Corresponds to the JSON property `name`
5658
6257
  # @return [String]
5659
6258
  attr_accessor :name
@@ -5815,7 +6414,7 @@ module Google
5815
6414
  # @return [String]
5816
6415
  attr_accessor :description
5817
6416
 
5818
- # Name of the certificate
6417
+ # Required. Name of the certificate
5819
6418
  # Corresponds to the JSON property `displayName`
5820
6419
  # @return [String]
5821
6420
  attr_accessor :display_name
@@ -5943,11 +6542,6 @@ module Google
5943
6542
  # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig]
5944
6543
  attr_accessor :cloud_kms_config
5945
6544
 
5946
- # Config info for Cloud Logging
5947
- # Corresponds to the JSON property `cloudLoggingConfig`
5948
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingConfig]
5949
- attr_accessor :cloud_logging_config
5950
-
5951
6545
  # The timestamp when the client was first created.
5952
6546
  # Corresponds to the JSON property `createTime`
5953
6547
  # @return [String]
@@ -5958,12 +6552,24 @@ module Google
5958
6552
  # @return [String]
5959
6553
  attr_accessor :description
5960
6554
 
6555
+ # Optional. True if variable masking feature should be turned on for this region
6556
+ # Corresponds to the JSON property `enableVariableMasking`
6557
+ # @return [Boolean]
6558
+ attr_accessor :enable_variable_masking
6559
+ alias_method :enable_variable_masking?, :enable_variable_masking
6560
+
5961
6561
  # Globally unique ID (project_id + region)
5962
6562
  # Corresponds to the JSON property `id`
5963
6563
  # @return [String]
5964
6564
  attr_accessor :id
5965
6565
 
5966
- # The P4SA account associated with this client
6566
+ # Optional. Indicates the client is provisioned with CMEK or GMEK.
6567
+ # Corresponds to the JSON property `isGmek`
6568
+ # @return [Boolean]
6569
+ attr_accessor :is_gmek
6570
+ alias_method :is_gmek?, :is_gmek
6571
+
6572
+ # The service agent associated with this client
5967
6573
  # Corresponds to the JSON property `p4ServiceAccount`
5968
6574
  # @return [String]
5969
6575
  attr_accessor :p4_service_account
@@ -5978,6 +6584,13 @@ module Google
5978
6584
  # @return [String]
5979
6585
  attr_accessor :region
5980
6586
 
6587
+ # Default run-as service account email, set up during project provision time,
6588
+ # that will be used to generate auth token to be used in Connector task, Rest
6589
+ # caller task, Cloud function task and Subworkflows.
6590
+ # Corresponds to the JSON property `runAsServiceAccount`
6591
+ # @return [String]
6592
+ attr_accessor :run_as_service_account
6593
+
5981
6594
  def initialize(**args)
5982
6595
  update!(**args)
5983
6596
  end
@@ -5987,13 +6600,15 @@ module Google
5987
6600
  @billing_type = args[:billing_type] if args.key?(:billing_type)
5988
6601
  @client_state = args[:client_state] if args.key?(:client_state)
5989
6602
  @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
5990
- @cloud_logging_config = args[:cloud_logging_config] if args.key?(:cloud_logging_config)
5991
6603
  @create_time = args[:create_time] if args.key?(:create_time)
5992
6604
  @description = args[:description] if args.key?(:description)
6605
+ @enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
5993
6606
  @id = args[:id] if args.key?(:id)
6607
+ @is_gmek = args[:is_gmek] if args.key?(:is_gmek)
5994
6608
  @p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
5995
6609
  @project_id = args[:project_id] if args.key?(:project_id)
5996
6610
  @region = args[:region] if args.key?(:region)
6611
+ @run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
5997
6612
  end
5998
6613
  end
5999
6614
 
@@ -6019,7 +6634,15 @@ module Google
6019
6634
  # Required. Location name of the key ring, e.g. "us-west1".
6020
6635
  # Corresponds to the JSON property `kmsLocation`
6021
6636
  # @return [String]
6022
- attr_accessor :kms_location
6637
+ attr_accessor :kms_location
6638
+
6639
+ # Optional. The gcp project id of the project where the kms key stored. If empty,
6640
+ # the kms key is stored at the same project as customer's project and ecrypted
6641
+ # with CMEK, otherwise, the kms key is stored in the tenant project and
6642
+ # encrypted with GMEK
6643
+ # Corresponds to the JSON property `kmsProjectId`
6644
+ # @return [String]
6645
+ attr_accessor :kms_project_id
6023
6646
 
6024
6647
  # Required. A key ring organizes keys in a specific Google Cloud location and
6025
6648
  # allows you to manage access control on groups of keys. A key ring's name does
@@ -6038,20 +6661,23 @@ module Google
6038
6661
  @key = args[:key] if args.key?(:key)
6039
6662
  @key_version = args[:key_version] if args.key?(:key_version)
6040
6663
  @kms_location = args[:kms_location] if args.key?(:kms_location)
6664
+ @kms_project_id = args[:kms_project_id] if args.key?(:kms_project_id)
6041
6665
  @kms_ring = args[:kms_ring] if args.key?(:kms_ring)
6042
6666
  end
6043
6667
  end
6044
6668
 
6045
- # Config info for Cloud Logging
6046
- class GoogleCloudIntegrationsV1alphaCloudLoggingConfig
6669
+ # Cloud Logging details for execution info
6670
+ class GoogleCloudIntegrationsV1alphaCloudLoggingDetails
6047
6671
  include Google::Apis::Core::Hashable
6048
6672
 
6049
- # Cloud bucket name for the project.
6050
- # Corresponds to the JSON property `bucket`
6673
+ # Optional. Severity selected by the customer for the logs to be sent to Cloud
6674
+ # Logging, for the integration version getting executed.
6675
+ # Corresponds to the JSON property `cloudLoggingSeverity`
6051
6676
  # @return [String]
6052
- attr_accessor :bucket
6677
+ attr_accessor :cloud_logging_severity
6053
6678
 
6054
- # This field determines whether the logs should be sent to cloud logging api
6679
+ # Optional. Status of whether Cloud Logging is enabled or not for the
6680
+ # integration version getting executed.
6055
6681
  # Corresponds to the JSON property `enableCloudLogging`
6056
6682
  # @return [Boolean]
6057
6683
  attr_accessor :enable_cloud_logging
@@ -6063,7 +6689,7 @@ module Google
6063
6689
 
6064
6690
  # Update properties of this object
6065
6691
  def update!(**args)
6066
- @bucket = args[:bucket] if args.key?(:bucket)
6692
+ @cloud_logging_severity = args[:cloud_logging_severity] if args.key?(:cloud_logging_severity)
6067
6693
  @enable_cloud_logging = args[:enable_cloud_logging] if args.key?(:enable_cloud_logging)
6068
6694
  end
6069
6695
  end
@@ -6132,6 +6758,31 @@ module Google
6132
6758
  end
6133
6759
  end
6134
6760
 
6761
+ # Configuration detail of coordinate, it used for UI
6762
+ class GoogleCloudIntegrationsV1alphaCoordinate
6763
+ include Google::Apis::Core::Hashable
6764
+
6765
+ # Required. X axis of the coordinate
6766
+ # Corresponds to the JSON property `x`
6767
+ # @return [Fixnum]
6768
+ attr_accessor :x
6769
+
6770
+ # Required. Y axis of the coordinate
6771
+ # Corresponds to the JSON property `y`
6772
+ # @return [Fixnum]
6773
+ attr_accessor :y
6774
+
6775
+ def initialize(**args)
6776
+ update!(**args)
6777
+ end
6778
+
6779
+ # Update properties of this object
6780
+ def update!(**args)
6781
+ @x = args[:x] if args.key?(:x)
6782
+ @y = args[:y] if args.key?(:y)
6783
+ end
6784
+ end
6785
+
6135
6786
  # Request for CreateAppsScriptProject rpc call.
6136
6787
  class GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
6137
6788
  include Google::Apis::Core::Hashable
@@ -6177,68 +6828,6 @@ module Google
6177
6828
  end
6178
6829
  end
6179
6830
 
6180
- # PROTECT WITH A VISIBILITY LABEL. THIS METHOD WILL BE MOVED TO A SEPARATE
6181
- # SERVICE. Request to create a new Bundle.
6182
- class GoogleCloudIntegrationsV1alphaCreateBundleRequest
6183
- include Google::Apis::Core::Hashable
6184
-
6185
- # Required. name of the bundle that will be created
6186
- # Corresponds to the JSON property `bundleId`
6187
- # @return [String]
6188
- attr_accessor :bundle_id
6189
-
6190
- # A list of integrations that can be executed by the bundle
6191
- # Corresponds to the JSON property `integrations`
6192
- # @return [Array<String>]
6193
- attr_accessor :integrations
6194
-
6195
- # Optional. The prefix for the SA, it should be in the format "o". This is an
6196
- # optional field, and if empty service account will be created per project,
6197
- # where we are creating bundle. This should only be used as the org ID for which
6198
- # we want to run the integrations in the bundle.
6199
- # Corresponds to the JSON property `secondaryCustomerOrgId`
6200
- # @return [String]
6201
- attr_accessor :secondary_customer_org_id
6202
-
6203
- def initialize(**args)
6204
- update!(**args)
6205
- end
6206
-
6207
- # Update properties of this object
6208
- def update!(**args)
6209
- @bundle_id = args[:bundle_id] if args.key?(:bundle_id)
6210
- @integrations = args[:integrations] if args.key?(:integrations)
6211
- @secondary_customer_org_id = args[:secondary_customer_org_id] if args.key?(:secondary_customer_org_id)
6212
- end
6213
- end
6214
-
6215
- # Response for create bundle.
6216
- class GoogleCloudIntegrationsV1alphaCreateBundleResponse
6217
- include Google::Apis::Core::Hashable
6218
-
6219
- # This proto holds the core runner data in the bundle task. It is not expected
6220
- # to be directly edited by the user. Instead, a default value will be provided
6221
- # at the task creation time.
6222
- # Corresponds to the JSON property `config`
6223
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig]
6224
- attr_accessor :config
6225
-
6226
- # trigger_id of the bundle task
6227
- # Corresponds to the JSON property `triggerId`
6228
- # @return [String]
6229
- attr_accessor :trigger_id
6230
-
6231
- def initialize(**args)
6232
- update!(**args)
6233
- end
6234
-
6235
- # Update properties of this object
6236
- def update!(**args)
6237
- @config = args[:config] if args.key?(:config)
6238
- @trigger_id = args[:trigger_id] if args.key?(:trigger_id)
6239
- end
6240
- end
6241
-
6242
6831
  # Request for Creating Cloud Function rpc call.
6243
6832
  class GoogleCloudIntegrationsV1alphaCreateCloudFunctionRequest
6244
6833
  include Google::Apis::Core::Hashable
@@ -6369,32 +6958,6 @@ module Google
6369
6958
  end
6370
6959
  end
6371
6960
 
6372
- # Request for DeactivateIntegrationVersion.
6373
- class GoogleCloudIntegrationsV1alphaDeactivateIntegrationVersionRequest
6374
- include Google::Apis::Core::Hashable
6375
-
6376
- def initialize(**args)
6377
- update!(**args)
6378
- end
6379
-
6380
- # Update properties of this object
6381
- def update!(**args)
6382
- end
6383
- end
6384
-
6385
- # Response for DeactivateIntegrationVersion.
6386
- class GoogleCloudIntegrationsV1alphaDeactivateIntegrationVersionResponse
6387
- include Google::Apis::Core::Hashable
6388
-
6389
- def initialize(**args)
6390
- update!(**args)
6391
- end
6392
-
6393
- # Update properties of this object
6394
- def update!(**args)
6395
- end
6396
- end
6397
-
6398
6961
  # Request for the Deprovision rpc
6399
6962
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
6400
6963
  include Google::Apis::Core::Hashable
@@ -6450,11 +7013,16 @@ module Google
6450
7013
  class GoogleCloudIntegrationsV1alphaDownloadIntegrationVersionResponse
6451
7014
  include Google::Apis::Core::Hashable
6452
7015
 
6453
- # String representation of the integration version.
7016
+ # String representation of the requested file.
6454
7017
  # Corresponds to the JSON property `content`
6455
7018
  # @return [String]
6456
7019
  attr_accessor :content
6457
7020
 
7021
+ # List containing String represendation for multiple file with type.
7022
+ # Corresponds to the JSON property `files`
7023
+ # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSerializedFile>]
7024
+ attr_accessor :files
7025
+
6458
7026
  def initialize(**args)
6459
7027
  update!(**args)
6460
7028
  end
@@ -6462,6 +7030,26 @@ module Google
6462
7030
  # Update properties of this object
6463
7031
  def update!(**args)
6464
7032
  @content = args[:content] if args.key?(:content)
7033
+ @files = args[:files] if args.key?(:files)
7034
+ end
7035
+ end
7036
+
7037
+ # Response for DownloadJsonPackage.
7038
+ class GoogleCloudIntegrationsV1alphaDownloadJsonPackageResponse
7039
+ include Google::Apis::Core::Hashable
7040
+
7041
+ # List containing JSON for multiple file with type information.
7042
+ # Corresponds to the JSON property `files`
7043
+ # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaFile>]
7044
+ attr_accessor :files
7045
+
7046
+ def initialize(**args)
7047
+ update!(**args)
7048
+ end
7049
+
7050
+ # Update properties of this object
7051
+ def update!(**args)
7052
+ @files = args[:files] if args.key?(:files)
6465
7053
  end
6466
7054
  end
6467
7055
 
@@ -6484,8 +7072,62 @@ module Google
6484
7072
  end
6485
7073
  end
6486
7074
 
7075
+ # Configuration detail of a error catch task
7076
+ class GoogleCloudIntegrationsV1alphaErrorCatcherConfig
7077
+ include Google::Apis::Core::Hashable
7078
+
7079
+ # Optional. User-provided description intended to give more business context
7080
+ # about the error catcher config.
7081
+ # Corresponds to the JSON property `description`
7082
+ # @return [String]
7083
+ attr_accessor :description
7084
+
7085
+ # Required. An error catcher id is string representation for the error catcher
7086
+ # config. Within a workflow, error_catcher_id uniquely identifies an error
7087
+ # catcher config among all error catcher configs for the workflow
7088
+ # Corresponds to the JSON property `errorCatcherId`
7089
+ # @return [String]
7090
+ attr_accessor :error_catcher_id
7091
+
7092
+ # Required. A number to uniquely identify each error catcher config within the
7093
+ # workflow on UI.
7094
+ # Corresponds to the JSON property `errorCatcherNumber`
7095
+ # @return [String]
7096
+ attr_accessor :error_catcher_number
7097
+
7098
+ # Optional. The user created label for a particular error catcher. Optional.
7099
+ # Corresponds to the JSON property `label`
7100
+ # @return [String]
7101
+ attr_accessor :label
7102
+
7103
+ # Configuration detail of coordinate, it used for UI
7104
+ # Corresponds to the JSON property `position`
7105
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCoordinate]
7106
+ attr_accessor :position
7107
+
7108
+ # Required. The set of start tasks that are to be executed for the error catch
7109
+ # flow
7110
+ # Corresponds to the JSON property `startErrorTasks`
7111
+ # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaNextTask>]
7112
+ attr_accessor :start_error_tasks
7113
+
7114
+ def initialize(**args)
7115
+ update!(**args)
7116
+ end
7117
+
7118
+ # Update properties of this object
7119
+ def update!(**args)
7120
+ @description = args[:description] if args.key?(:description)
7121
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
7122
+ @error_catcher_number = args[:error_catcher_number] if args.key?(:error_catcher_number)
7123
+ @label = args[:label] if args.key?(:label)
7124
+ @position = args[:position] if args.key?(:position)
7125
+ @start_error_tasks = args[:start_error_tasks] if args.key?(:start_error_tasks)
7126
+ end
7127
+ end
7128
+
6487
7129
  # This message is used for processing and persisting (when applicable) key value
6488
- # pair parameters for each event in the event bus.
7130
+ # pair parameters for each event in the event bus. Next available id: 4
6489
7131
  class GoogleCloudIntegrationsV1alphaEventParameter
6490
7132
  include Google::Apis::Core::Hashable
6491
7133
 
@@ -6496,6 +7138,12 @@ module Google
6496
7138
  # @return [String]
6497
7139
  attr_accessor :key
6498
7140
 
7141
+ # True if this parameter should be masked in the logs
7142
+ # Corresponds to the JSON property `masked`
7143
+ # @return [Boolean]
7144
+ attr_accessor :masked
7145
+ alias_method :masked?, :masked
7146
+
6499
7147
  # The type of the parameter.
6500
7148
  # Corresponds to the JSON property `value`
6501
7149
  # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaValueType]
@@ -6508,10 +7156,30 @@ module Google
6508
7156
  # Update properties of this object
6509
7157
  def update!(**args)
6510
7158
  @key = args[:key] if args.key?(:key)
7159
+ @masked = args[:masked] if args.key?(:masked)
6511
7160
  @value = args[:value] if args.key?(:value)
6512
7161
  end
6513
7162
  end
6514
7163
 
7164
+ # The response for executing an integration.
7165
+ class GoogleCloudIntegrationsV1alphaExecuteEventResponse
7166
+ include Google::Apis::Core::Hashable
7167
+
7168
+ # The id of the execution corresponding to this run of integration.
7169
+ # Corresponds to the JSON property `executionId`
7170
+ # @return [String]
7171
+ attr_accessor :execution_id
7172
+
7173
+ def initialize(**args)
7174
+ update!(**args)
7175
+ end
7176
+
7177
+ # Update properties of this object
7178
+ def update!(**args)
7179
+ @execution_id = args[:execution_id] if args.key?(:execution_id)
7180
+ end
7181
+ end
7182
+
6515
7183
  # The request for executing an integration.
6516
7184
  class GoogleCloudIntegrationsV1alphaExecuteIntegrationsRequest
6517
7185
  include Google::Apis::Core::Hashable
@@ -6544,7 +7212,7 @@ module Google
6544
7212
 
6545
7213
  # LINT.IfChange This message is used for processing and persisting (when
6546
7214
  # applicable) key value pair parameters for each event in the event bus. Please
6547
- # see go/integration-platform/event_bus.md for more details. Next id: 4
7215
+ # see
6548
7216
  # Corresponds to the JSON property `parameters`
6549
7217
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
6550
7218
  attr_accessor :parameters
@@ -6584,7 +7252,7 @@ module Google
6584
7252
 
6585
7253
  # LINT.IfChange This message is used for processing and persisting (when
6586
7254
  # applicable) key value pair parameters for each event in the event bus. Please
6587
- # see go/integration-platform/event_bus.md for more details. Next id: 4
7255
+ # see
6588
7256
  # Corresponds to the JSON property `eventParameters`
6589
7257
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
6590
7258
  attr_accessor :event_parameters
@@ -6632,6 +7300,11 @@ module Google
6632
7300
  class GoogleCloudIntegrationsV1alphaExecution
6633
7301
  include Google::Apis::Core::Hashable
6634
7302
 
7303
+ # Cloud Logging details for execution info
7304
+ # Corresponds to the JSON property `cloudLoggingDetails`
7305
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails]
7306
+ attr_accessor :cloud_logging_details
7307
+
6635
7308
  # Output only. Created time of the execution.
6636
7309
  # Corresponds to the JSON property `createTime`
6637
7310
  # @return [String]
@@ -6644,7 +7317,7 @@ module Google
6644
7317
 
6645
7318
  # Contains the details of the execution info of this event: this includes the
6646
7319
  # tasks execution details plus the event execution statistics. Next available id:
6647
- # 10
7320
+ # 11
6648
7321
  # Corresponds to the JSON property `eventExecutionDetails`
6649
7322
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventExecutionDetails]
6650
7323
  attr_accessor :event_execution_details
@@ -6660,6 +7333,11 @@ module Google
6660
7333
  # @return [String]
6661
7334
  attr_accessor :execution_method
6662
7335
 
7336
+ # Output only. State of the integration version
7337
+ # Corresponds to the JSON property `integrationVersionState`
7338
+ # @return [String]
7339
+ attr_accessor :integration_version_state
7340
+
6663
7341
  # Auto-generated primary key.
6664
7342
  # Corresponds to the JSON property `name`
6665
7343
  # @return [String]
@@ -6685,6 +7363,11 @@ module Google
6685
7363
  # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoParameterEntry>]
6686
7364
  attr_accessor :response_params
6687
7365
 
7366
+ # Output only. An increasing sequence that is set when a new snapshot is created
7367
+ # Corresponds to the JSON property `snapshotNumber`
7368
+ # @return [Fixnum]
7369
+ attr_accessor :snapshot_number
7370
+
6688
7371
  # The trigger id of the integration trigger config. If both trigger_id and
6689
7372
  # client_id is present, the integration is executed from the start tasks
6690
7373
  # provided by the matching trigger config otherwise it is executed from the
@@ -6704,16 +7387,19 @@ module Google
6704
7387
 
6705
7388
  # Update properties of this object
6706
7389
  def update!(**args)
7390
+ @cloud_logging_details = args[:cloud_logging_details] if args.key?(:cloud_logging_details)
6707
7391
  @create_time = args[:create_time] if args.key?(:create_time)
6708
7392
  @direct_sub_executions = args[:direct_sub_executions] if args.key?(:direct_sub_executions)
6709
7393
  @event_execution_details = args[:event_execution_details] if args.key?(:event_execution_details)
6710
7394
  @execution_details = args[:execution_details] if args.key?(:execution_details)
6711
7395
  @execution_method = args[:execution_method] if args.key?(:execution_method)
7396
+ @integration_version_state = args[:integration_version_state] if args.key?(:integration_version_state)
6712
7397
  @name = args[:name] if args.key?(:name)
6713
7398
  @request_parameters = args[:request_parameters] if args.key?(:request_parameters)
6714
7399
  @request_params = args[:request_params] if args.key?(:request_params)
6715
7400
  @response_parameters = args[:response_parameters] if args.key?(:response_parameters)
6716
7401
  @response_params = args[:response_params] if args.key?(:response_params)
7402
+ @snapshot_number = args[:snapshot_number] if args.key?(:snapshot_number)
6717
7403
  @trigger_id = args[:trigger_id] if args.key?(:trigger_id)
6718
7404
  @update_time = args[:update_time] if args.key?(:update_time)
6719
7405
  end
@@ -6729,6 +7415,11 @@ module Google
6729
7415
  # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAttemptStats>]
6730
7416
  attr_accessor :attempt_stats
6731
7417
 
7418
+ # Total size of all event_execution_snapshots for an execution
7419
+ # Corresponds to the JSON property `eventExecutionSnapshotsSize`
7420
+ # @return [Fixnum]
7421
+ attr_accessor :event_execution_snapshots_size
7422
+
6732
7423
  # List of snapshots taken during the execution.
6733
7424
  # Corresponds to the JSON property `executionSnapshots`
6734
7425
  # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecutionSnapshot>]
@@ -6746,6 +7437,7 @@ module Google
6746
7437
  # Update properties of this object
6747
7438
  def update!(**args)
6748
7439
  @attempt_stats = args[:attempt_stats] if args.key?(:attempt_stats)
7440
+ @event_execution_snapshots_size = args[:event_execution_snapshots_size] if args.key?(:event_execution_snapshots_size)
6749
7441
  @execution_snapshots = args[:execution_snapshots] if args.key?(:execution_snapshots)
6750
7442
  @state = args[:state] if args.key?(:state)
6751
7443
  end
@@ -6792,11 +7484,28 @@ module Google
6792
7484
  class GoogleCloudIntegrationsV1alphaExecutionSnapshotExecutionSnapshotMetadata
6793
7485
  include Google::Apis::Core::Hashable
6794
7486
 
7487
+ # Ancestor iteration number for the task(it will only be non-empty if the task
7488
+ # is under 'private workflow')
7489
+ # Corresponds to the JSON property `ancestorIterationNumbers`
7490
+ # @return [Array<String>]
7491
+ attr_accessor :ancestor_iteration_numbers
7492
+
7493
+ # Ancestor task number for the task(it will only be non-empty if the task is
7494
+ # under 'private workflow')
7495
+ # Corresponds to the JSON property `ancestorTaskNumbers`
7496
+ # @return [Array<String>]
7497
+ attr_accessor :ancestor_task_numbers
7498
+
6795
7499
  # the execution attempt number this snapshot belongs to.
6796
7500
  # Corresponds to the JSON property `executionAttempt`
6797
7501
  # @return [Fixnum]
6798
7502
  attr_accessor :execution_attempt
6799
7503
 
7504
+ # The direct integration which the event execution snapshots belongs to
7505
+ # Corresponds to the JSON property `integrationName`
7506
+ # @return [String]
7507
+ attr_accessor :integration_name
7508
+
6800
7509
  # the task name associated with this snapshot.
6801
7510
  # Corresponds to the JSON property `task`
6802
7511
  # @return [String]
@@ -6807,6 +7516,11 @@ module Google
6807
7516
  # @return [Fixnum]
6808
7517
  attr_accessor :task_attempt
6809
7518
 
7519
+ # the task label associated with this snapshot. Could be empty.
7520
+ # Corresponds to the JSON property `taskLabel`
7521
+ # @return [String]
7522
+ attr_accessor :task_label
7523
+
6810
7524
  # The task number associated with this snapshot.
6811
7525
  # Corresponds to the JSON property `taskNumber`
6812
7526
  # @return [String]
@@ -6818,9 +7532,13 @@ module Google
6818
7532
 
6819
7533
  # Update properties of this object
6820
7534
  def update!(**args)
7535
+ @ancestor_iteration_numbers = args[:ancestor_iteration_numbers] if args.key?(:ancestor_iteration_numbers)
7536
+ @ancestor_task_numbers = args[:ancestor_task_numbers] if args.key?(:ancestor_task_numbers)
6821
7537
  @execution_attempt = args[:execution_attempt] if args.key?(:execution_attempt)
7538
+ @integration_name = args[:integration_name] if args.key?(:integration_name)
6822
7539
  @task = args[:task] if args.key?(:task)
6823
7540
  @task_attempt = args[:task_attempt] if args.key?(:task_attempt)
7541
+ @task_label = args[:task_label] if args.key?(:task_label)
6824
7542
  @task_number = args[:task_number] if args.key?(:task_number)
6825
7543
  end
6826
7544
  end
@@ -6862,14 +7580,25 @@ module Google
6862
7580
  end
6863
7581
  end
6864
7582
 
6865
- # Returns success or error message
6866
- class GoogleCloudIntegrationsV1alphaGenerateTokenResponse
7583
+ # To store Integration version related file i.e. Integration Version, Config
7584
+ # variable etc.
7585
+ class GoogleCloudIntegrationsV1alphaFile
6867
7586
  include Google::Apis::Core::Hashable
6868
7587
 
6869
- # The message that notifies the user if the request succeeded or not.
6870
- # Corresponds to the JSON property `message`
7588
+ # Integration version config file
7589
+ # Corresponds to the JSON property `integrationConfig`
7590
+ # @return [Hash<String,Object>]
7591
+ attr_accessor :integration_config
7592
+
7593
+ # The integration version definition.
7594
+ # Corresponds to the JSON property `integrationVersion`
7595
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationVersion]
7596
+ attr_accessor :integration_version
7597
+
7598
+ # File information like Integration version, Integration Config variables etc.
7599
+ # Corresponds to the JSON property `type`
6871
7600
  # @return [String]
6872
- attr_accessor :message
7601
+ attr_accessor :type
6873
7602
 
6874
7603
  def initialize(**args)
6875
7604
  update!(**args)
@@ -6877,20 +7606,20 @@ module Google
6877
7606
 
6878
7607
  # Update properties of this object
6879
7608
  def update!(**args)
6880
- @message = args[:message] if args.key?(:message)
7609
+ @integration_config = args[:integration_config] if args.key?(:integration_config)
7610
+ @integration_version = args[:integration_version] if args.key?(:integration_version)
7611
+ @type = args[:type] if args.key?(:type)
6881
7612
  end
6882
7613
  end
6883
7614
 
6884
- # Response for GetBundle.
6885
- class GoogleCloudIntegrationsV1alphaGetBundleResponse
7615
+ # Returns success or error message
7616
+ class GoogleCloudIntegrationsV1alphaGenerateTokenResponse
6886
7617
  include Google::Apis::Core::Hashable
6887
7618
 
6888
- # This proto holds the core runner data in the bundle task. It is not expected
6889
- # to be directly edited by the user. Instead, a default value will be provided
6890
- # at the task creation time.
6891
- # Corresponds to the JSON property `config`
6892
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig]
6893
- attr_accessor :config
7619
+ # The message that notifies the user if the request succeeded or not.
7620
+ # Corresponds to the JSON property `message`
7621
+ # @return [String]
7622
+ attr_accessor :message
6894
7623
 
6895
7624
  def initialize(**args)
6896
7625
  update!(**args)
@@ -6898,7 +7627,7 @@ module Google
6898
7627
 
6899
7628
  # Update properties of this object
6900
7629
  def update!(**args)
6901
- @config = args[:config] if args.key?(:config)
7630
+ @message = args[:message] if args.key?(:message)
6902
7631
  end
6903
7632
  end
6904
7633
 
@@ -6969,11 +7698,27 @@ module Google
6969
7698
  attr_accessor :active
6970
7699
  alias_method :active?, :active
6971
7700
 
7701
+ # Required. Output only. Auto-generated.
7702
+ # Corresponds to the JSON property `createTime`
7703
+ # @return [String]
7704
+ attr_accessor :create_time
7705
+
7706
+ # Output only. The creator's email address. Generated based on the End User
7707
+ # Credentials/LOAS role of the user making the call.
7708
+ # Corresponds to the JSON property `creatorEmail`
7709
+ # @return [String]
7710
+ attr_accessor :creator_email
7711
+
6972
7712
  # Optional.
6973
7713
  # Corresponds to the JSON property `description`
6974
7714
  # @return [String]
6975
7715
  attr_accessor :description
6976
7716
 
7717
+ # Required. The last modifier of this integration
7718
+ # Corresponds to the JSON property `lastModifierEmail`
7719
+ # @return [String]
7720
+ attr_accessor :last_modifier_email
7721
+
6977
7722
  # Required. The resource name of the integration.
6978
7723
  # Corresponds to the JSON property `name`
6979
7724
  # @return [String]
@@ -6991,7 +7736,10 @@ module Google
6991
7736
  # Update properties of this object
6992
7737
  def update!(**args)
6993
7738
  @active = args[:active] if args.key?(:active)
7739
+ @create_time = args[:create_time] if args.key?(:create_time)
7740
+ @creator_email = args[:creator_email] if args.key?(:creator_email)
6994
7741
  @description = args[:description] if args.key?(:description)
7742
+ @last_modifier_email = args[:last_modifier_email] if args.key?(:last_modifier_email)
6995
7743
  @name = args[:name] if args.key?(:name)
6996
7744
  @update_time = args[:update_time] if args.key?(:update_time)
6997
7745
  end
@@ -7119,22 +7867,25 @@ module Google
7119
7867
  end
7120
7868
  end
7121
7869
 
7122
- # This proto holds the core runner data in the bundle task. It is not expected
7123
- # to be directly edited by the user. Instead, a default value will be provided
7124
- # at the task creation time.
7125
- class GoogleCloudIntegrationsV1alphaIntegrationBundleConfig
7870
+ # Integration Config Parameter is defined in the integration config and are used
7871
+ # to provide external configuration for integration. It provide information
7872
+ # about data types of the expected parameters and provide any default values or
7873
+ # value. They can also be used to add custom attributes.
7874
+ class GoogleCloudIntegrationsV1alphaIntegrationConfigParameter
7126
7875
  include Google::Apis::Core::Hashable
7127
7876
 
7128
- # A bundle of integrations that can be executed by the task at runtime.
7129
- # Corresponds to the JSON property `integrations`
7130
- # @return [Array<String>]
7131
- attr_accessor :integrations
7877
+ # Integration Parameter is defined in the integration config and are used to
7878
+ # provide information about data types of the expected parameters and provide
7879
+ # any default values if needed. They can also be used to add custom attributes.
7880
+ # These are static in nature and should not be used for dynamic event definition.
7881
+ # Corresponds to the JSON property `parameter`
7882
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationParameter]
7883
+ attr_accessor :parameter
7132
7884
 
7133
- # Output only. The service account created and owned by IP and added to the
7134
- # customers GCP project.
7135
- # Corresponds to the JSON property `serviceAccount`
7136
- # @return [String]
7137
- attr_accessor :service_account
7885
+ # The type of the parameter.
7886
+ # Corresponds to the JSON property `value`
7887
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaValueType]
7888
+ attr_accessor :value
7138
7889
 
7139
7890
  def initialize(**args)
7140
7891
  update!(**args)
@@ -7142,8 +7893,8 @@ module Google
7142
7893
 
7143
7894
  # Update properties of this object
7144
7895
  def update!(**args)
7145
- @integrations = args[:integrations] if args.key?(:integrations)
7146
- @service_account = args[:service_account] if args.key?(:service_account)
7896
+ @parameter = args[:parameter] if args.key?(:parameter)
7897
+ @value = args[:value] if args.key?(:value)
7147
7898
  end
7148
7899
  end
7149
7900
 
@@ -7154,6 +7905,13 @@ module Google
7154
7905
  class GoogleCloudIntegrationsV1alphaIntegrationParameter
7155
7906
  include Google::Apis::Core::Hashable
7156
7907
 
7908
+ # Indicates whether this variable contains large data and need to be uploaded to
7909
+ # Cloud Storage.
7910
+ # Corresponds to the JSON property `containsLargeData`
7911
+ # @return [Boolean]
7912
+ attr_accessor :contains_large_data
7913
+ alias_method :contains_large_data?, :contains_large_data
7914
+
7157
7915
  # Type of the parameter.
7158
7916
  # Corresponds to the JSON property `dataType`
7159
7917
  # @return [String]
@@ -7194,6 +7952,12 @@ module Google
7194
7952
  # @return [String]
7195
7953
  attr_accessor :key
7196
7954
 
7955
+ # True if this parameter should be masked in the logs
7956
+ # Corresponds to the JSON property `masked`
7957
+ # @return [Boolean]
7958
+ attr_accessor :masked
7959
+ alias_method :masked?, :masked
7960
+
7197
7961
  # The identifier of the node (TaskConfig/TriggerConfig) this parameter was
7198
7962
  # produced by, if it is a transient param or a copy of an input param.
7199
7963
  # Corresponds to the JSON property `producer`
@@ -7212,6 +7976,7 @@ module Google
7212
7976
 
7213
7977
  # Update properties of this object
7214
7978
  def update!(**args)
7979
+ @contains_large_data = args[:contains_large_data] if args.key?(:contains_large_data)
7215
7980
  @data_type = args[:data_type] if args.key?(:data_type)
7216
7981
  @default_value = args[:default_value] if args.key?(:default_value)
7217
7982
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -7219,6 +7984,7 @@ module Google
7219
7984
  @is_transient = args[:is_transient] if args.key?(:is_transient)
7220
7985
  @json_schema = args[:json_schema] if args.key?(:json_schema)
7221
7986
  @key = args[:key] if args.key?(:key)
7987
+ @masked = args[:masked] if args.key?(:masked)
7222
7988
  @producer = args[:producer] if args.key?(:producer)
7223
7989
  @searchable = args[:searchable] if args.key?(:searchable)
7224
7990
  end
@@ -7228,11 +7994,22 @@ module Google
7228
7994
  class GoogleCloudIntegrationsV1alphaIntegrationVersion
7229
7995
  include Google::Apis::Core::Hashable
7230
7996
 
7997
+ # Cloud Logging details for execution info
7998
+ # Corresponds to the JSON property `cloudLoggingDetails`
7999
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudLoggingDetails]
8000
+ attr_accessor :cloud_logging_details
8001
+
7231
8002
  # Output only. Auto-generated.
7232
8003
  # Corresponds to the JSON property `createTime`
7233
8004
  # @return [String]
7234
8005
  attr_accessor :create_time
7235
8006
 
8007
+ # Optional. Optional. The resource name of the template from which the
8008
+ # integration is created.
8009
+ # Corresponds to the JSON property `createdFromTemplate`
8010
+ # @return [String]
8011
+ attr_accessor :created_from_template
8012
+
7236
8013
  # Optional. Flag to disable database persistence for execution data, including
7237
8014
  # event execution info, execution export info, execution metadata index and
7238
8015
  # execution param index.
@@ -7245,6 +8022,28 @@ module Google
7245
8022
  # @return [String]
7246
8023
  attr_accessor :description
7247
8024
 
8025
+ # Optional. True if variable masking feature should be turned on for this
8026
+ # version
8027
+ # Corresponds to the JSON property `enableVariableMasking`
8028
+ # @return [Boolean]
8029
+ attr_accessor :enable_variable_masking
8030
+ alias_method :enable_variable_masking?, :enable_variable_masking
8031
+
8032
+ # Optional. Error Catch Task configuration for the integration. It's optional.
8033
+ # Corresponds to the JSON property `errorCatcherConfigs`
8034
+ # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaErrorCatcherConfig>]
8035
+ attr_accessor :error_catcher_configs
8036
+
8037
+ # Optional. Config Parameters that are expected to be passed to the integration
8038
+ # when an integration is published. This consists of all the parameters that are
8039
+ # expected to provide configuration in the integration execution. This gives the
8040
+ # user the ability to provide default values, value, add information like
8041
+ # connection url, project based configuration value and also provide data types
8042
+ # of each parameter.
8043
+ # Corresponds to the JSON property `integrationConfigParameters`
8044
+ # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationConfigParameter>]
8045
+ attr_accessor :integration_config_parameters
8046
+
7248
8047
  # Optional. Parameters that are expected to be passed to the integration when an
7249
8048
  # event is triggered. This consists of all the parameters that are expected in
7250
8049
  # the integration execution. This gives the user the ability to provide default
@@ -7292,6 +8091,13 @@ module Google
7292
8091
  # @return [String]
7293
8092
  attr_accessor :parent_template_id
7294
8093
 
8094
+ # Optional. The run-as service account email, if set and auth config is not
8095
+ # configured, that will be used to generate auth token to be used in Connector
8096
+ # task, Rest caller task and Cloud function task.
8097
+ # Corresponds to the JSON property `runAsServiceAccount`
8098
+ # @return [String]
8099
+ attr_accessor :run_as_service_account
8100
+
7295
8101
  # Optional. An increasing sequence that is set when a new snapshot is created.
7296
8102
  # The last created snapshot can be identified by [workflow_name, org_id latest(
7297
8103
  # snapshot_number)]. However, last created snapshot need not be same as the HEAD.
@@ -7356,9 +8162,14 @@ module Google
7356
8162
 
7357
8163
  # Update properties of this object
7358
8164
  def update!(**args)
8165
+ @cloud_logging_details = args[:cloud_logging_details] if args.key?(:cloud_logging_details)
7359
8166
  @create_time = args[:create_time] if args.key?(:create_time)
8167
+ @created_from_template = args[:created_from_template] if args.key?(:created_from_template)
7360
8168
  @database_persistence_policy = args[:database_persistence_policy] if args.key?(:database_persistence_policy)
7361
8169
  @description = args[:description] if args.key?(:description)
8170
+ @enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
8171
+ @error_catcher_configs = args[:error_catcher_configs] if args.key?(:error_catcher_configs)
8172
+ @integration_config_parameters = args[:integration_config_parameters] if args.key?(:integration_config_parameters)
7362
8173
  @integration_parameters = args[:integration_parameters] if args.key?(:integration_parameters)
7363
8174
  @integration_parameters_internal = args[:integration_parameters_internal] if args.key?(:integration_parameters_internal)
7364
8175
  @last_modifier_email = args[:last_modifier_email] if args.key?(:last_modifier_email)
@@ -7366,6 +8177,7 @@ module Google
7366
8177
  @name = args[:name] if args.key?(:name)
7367
8178
  @origin = args[:origin] if args.key?(:origin)
7368
8179
  @parent_template_id = args[:parent_template_id] if args.key?(:parent_template_id)
8180
+ @run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
7369
8181
  @snapshot_number = args[:snapshot_number] if args.key?(:snapshot_number)
7370
8182
  @state = args[:state] if args.key?(:state)
7371
8183
  @status = args[:status] if args.key?(:status)
@@ -7571,32 +8383,7 @@ module Google
7571
8383
 
7572
8384
  # Update properties of this object
7573
8385
  def update!(**args)
7574
- @connections = args[:connections] if args.key?(:connections)
7575
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
7576
- end
7577
- end
7578
-
7579
- # Response for listing the integration execution snapshot.
7580
- class GoogleCloudIntegrationsV1alphaListExecutionSnapshotsResponse
7581
- include Google::Apis::Core::Hashable
7582
-
7583
- # Required. The detailed information for the execution snapshot.
7584
- # Corresponds to the JSON property `executionSnapshots`
7585
- # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventExecutionSnapshot>]
7586
- attr_accessor :execution_snapshots
7587
-
7588
- # The token returned in the previous response.
7589
- # Corresponds to the JSON property `nextPageToken`
7590
- # @return [String]
7591
- attr_accessor :next_page_token
7592
-
7593
- def initialize(**args)
7594
- update!(**args)
7595
- end
7596
-
7597
- # Update properties of this object
7598
- def update!(**args)
7599
- @execution_snapshots = args[:execution_snapshots] if args.key?(:execution_snapshots)
8386
+ @connections = args[:connections] if args.key?(:connections)
7600
8387
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
7601
8388
  end
7602
8389
  end
@@ -7816,193 +8603,6 @@ module Google
7816
8603
  end
7817
8604
  end
7818
8605
 
7819
- # This is a UI only method and will be moved away. Response for ListTaskEntities.
7820
- class GoogleCloudIntegrationsV1alphaListTaskEntitiesResponse
7821
- include Google::Apis::Core::Hashable
7822
-
7823
- # The list of the tasks.
7824
- # Corresponds to the JSON property `taskEntities`
7825
- # @return [Array<Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoTaskEntity>]
7826
- attr_accessor :task_entities
7827
-
7828
- def initialize(**args)
7829
- update!(**args)
7830
- end
7831
-
7832
- # Update properties of this object
7833
- def update!(**args)
7834
- @task_entities = args[:task_entities] if args.key?(:task_entities)
7835
- end
7836
- end
7837
-
7838
- # MashQuery GroupBy parameters.
7839
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
7840
- include Google::Apis::Core::Hashable
7841
-
7842
- # Optional. optional, metrics list for GroupBy.
7843
- # Corresponds to the JSON property `fields`
7844
- # @return [Array<String>]
7845
- attr_accessor :fields
7846
-
7847
- # Optional. optional, reduce function for GroupBy.
7848
- # Corresponds to the JSON property `reducer`
7849
- # @return [String]
7850
- attr_accessor :reducer
7851
-
7852
- def initialize(**args)
7853
- update!(**args)
7854
- end
7855
-
7856
- # Update properties of this object
7857
- def update!(**args)
7858
- @fields = args[:fields] if args.key?(:fields)
7859
- @reducer = args[:reducer] if args.key?(:reducer)
7860
- end
7861
- end
7862
-
7863
- # The MashQuery for searching data, set both queries for Join Operation.
7864
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
7865
- include Google::Apis::Core::Hashable
7866
-
7867
- # The components for constructing MashQuery.
7868
- # Corresponds to the JSON property `firstQuery`
7869
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent]
7870
- attr_accessor :first_query
7871
-
7872
- # Operation between 2 query
7873
- # Corresponds to the JSON property `operationMode`
7874
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode]
7875
- attr_accessor :operation_mode
7876
-
7877
- # The components for constructing MashQuery.
7878
- # Corresponds to the JSON property `secondQuery`
7879
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent]
7880
- attr_accessor :second_query
7881
-
7882
- def initialize(**args)
7883
- update!(**args)
7884
- end
7885
-
7886
- # Update properties of this object
7887
- def update!(**args)
7888
- @first_query = args[:first_query] if args.key?(:first_query)
7889
- @operation_mode = args[:operation_mode] if args.key?(:operation_mode)
7890
- @second_query = args[:second_query] if args.key?(:second_query)
7891
- end
7892
- end
7893
-
7894
- # The components for constructing MashQuery.
7895
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
7896
- include Google::Apis::Core::Hashable
7897
-
7898
- # Required. The metric for monarch.BorgTask.
7899
- # Corresponds to the JSON property `borgTaskMetric`
7900
- # @return [String]
7901
- attr_accessor :borg_task_metric
7902
-
7903
- # Optional. optional, filters on fetched data, "metric:client_id" not supported.
7904
- # Corresponds to the JSON property `dataFilters`
7905
- # @return [Array<String>]
7906
- attr_accessor :data_filters
7907
-
7908
- # Optional. optional, filters for Fetch Raw, "metric:client_id" not supported.
7909
- # Corresponds to the JSON property `fetchFilters`
7910
- # @return [Array<String>]
7911
- attr_accessor :fetch_filters
7912
-
7913
- # MashQuery GroupBy parameters.
7914
- # Corresponds to the JSON property `groupBy`
7915
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy]
7916
- attr_accessor :group_by
7917
-
7918
- # Optional. optional, Point Operation on single query or joined query.
7919
- # Corresponds to the JSON property `pointOperation`
7920
- # @return [String]
7921
- attr_accessor :point_operation
7922
-
7923
- # Required. Window time delta.
7924
- # Corresponds to the JSON property `timeDelta`
7925
- # @return [String]
7926
- attr_accessor :time_delta
7927
-
7928
- def initialize(**args)
7929
- update!(**args)
7930
- end
7931
-
7932
- # Update properties of this object
7933
- def update!(**args)
7934
- @borg_task_metric = args[:borg_task_metric] if args.key?(:borg_task_metric)
7935
- @data_filters = args[:data_filters] if args.key?(:data_filters)
7936
- @fetch_filters = args[:fetch_filters] if args.key?(:fetch_filters)
7937
- @group_by = args[:group_by] if args.key?(:group_by)
7938
- @point_operation = args[:point_operation] if args.key?(:point_operation)
7939
- @time_delta = args[:time_delta] if args.key?(:time_delta)
7940
- end
7941
- end
7942
-
7943
- # Operation between 2 query
7944
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
7945
- include Google::Apis::Core::Hashable
7946
-
7947
- # Join Operation
7948
- # Corresponds to the JSON property `joinConfig`
7949
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig]
7950
- attr_accessor :join_config
7951
-
7952
- # Optional. optional operation types.
7953
- # Corresponds to the JSON property `operationType`
7954
- # @return [String]
7955
- attr_accessor :operation_type
7956
-
7957
- # Union operation
7958
- # Corresponds to the JSON property `unionConfig`
7959
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig]
7960
- attr_accessor :union_config
7961
-
7962
- def initialize(**args)
7963
- update!(**args)
7964
- end
7965
-
7966
- # Update properties of this object
7967
- def update!(**args)
7968
- @join_config = args[:join_config] if args.key?(:join_config)
7969
- @operation_type = args[:operation_type] if args.key?(:operation_type)
7970
- @union_config = args[:union_config] if args.key?(:union_config)
7971
- end
7972
- end
7973
-
7974
- # Join Operation
7975
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
7976
- include Google::Apis::Core::Hashable
7977
-
7978
- def initialize(**args)
7979
- update!(**args)
7980
- end
7981
-
7982
- # Update properties of this object
7983
- def update!(**args)
7984
- end
7985
- end
7986
-
7987
- # Union operation
7988
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
7989
- include Google::Apis::Core::Hashable
7990
-
7991
- # Optional. optional, reduce function
7992
- # Corresponds to the JSON property `reducer`
7993
- # @return [String]
7994
- attr_accessor :reducer
7995
-
7996
- def initialize(**args)
7997
- update!(**args)
7998
- end
7999
-
8000
- # Update properties of this object
8001
- def update!(**args)
8002
- @reducer = args[:reducer] if args.key?(:reducer)
8003
- end
8004
- end
8005
-
8006
8606
  # The task that is next in line to be executed, if the condition specified
8007
8607
  # evaluated to true.
8008
8608
  class GoogleCloudIntegrationsV1alphaNextTask
@@ -8396,6 +8996,11 @@ module Google
8396
8996
  class GoogleCloudIntegrationsV1alphaProjectProperties
8397
8997
  include Google::Apis::Core::Hashable
8398
8998
 
8999
+ # Required. Required: The client billing type that was requested
9000
+ # Corresponds to the JSON property `billingType`
9001
+ # @return [String]
9002
+ attr_accessor :billing_type
9003
+
8399
9004
  # An enum value of what the enablement state is for the given project
8400
9005
  # Corresponds to the JSON property `ipEnablementState`
8401
9006
  # @return [String]
@@ -8412,6 +9017,7 @@ module Google
8412
9017
 
8413
9018
  # Update properties of this object
8414
9019
  def update!(**args)
9020
+ @billing_type = args[:billing_type] if args.key?(:billing_type)
8415
9021
  @ip_enablement_state = args[:ip_enablement_state] if args.key?(:ip_enablement_state)
8416
9022
  @provisioned_regions = args[:provisioned_regions] if args.key?(:provisioned_regions)
8417
9023
  end
@@ -8433,6 +9039,26 @@ module Google
8433
9039
  attr_accessor :create_sample_workflows
8434
9040
  alias_method :create_sample_workflows?, :create_sample_workflows
8435
9041
 
9042
+ # Optional. Deprecated. Indicates provision with GMEK or CMEK. This field is
9043
+ # deprecated and the provision would always be GMEK if cloud_kms_config is not
9044
+ # present in the request.
9045
+ # Corresponds to the JSON property `provisionGmek`
9046
+ # @return [Boolean]
9047
+ attr_accessor :provision_gmek
9048
+ alias_method :provision_gmek?, :provision_gmek
9049
+
9050
+ # Optional. User input run-as service account, if empty, will bring up a new
9051
+ # default service account
9052
+ # Corresponds to the JSON property `runAsServiceAccount`
9053
+ # @return [String]
9054
+ attr_accessor :run_as_service_account
9055
+
9056
+ # Optional. Indicates if skip CP provision or not
9057
+ # Corresponds to the JSON property `skipCpProvision`
9058
+ # @return [Boolean]
9059
+ attr_accessor :skip_cp_provision
9060
+ alias_method :skip_cp_provision?, :skip_cp_provision
9061
+
8436
9062
  def initialize(**args)
8437
9063
  update!(**args)
8438
9064
  end
@@ -8441,6 +9067,9 @@ module Google
8441
9067
  def update!(**args)
8442
9068
  @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
8443
9069
  @create_sample_workflows = args[:create_sample_workflows] if args.key?(:create_sample_workflows)
9070
+ @provision_gmek = args[:provision_gmek] if args.key?(:provision_gmek)
9071
+ @run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
9072
+ @skip_cp_provision = args[:skip_cp_provision] if args.key?(:skip_cp_provision)
8444
9073
  end
8445
9074
  end
8446
9075
 
@@ -8448,12 +9077,18 @@ module Google
8448
9077
  class GoogleCloudIntegrationsV1alphaPublishIntegrationVersionRequest
8449
9078
  include Google::Apis::Core::Hashable
8450
9079
 
9080
+ # Optional. Config parameters used during integration execution.
9081
+ # Corresponds to the JSON property `configParameters`
9082
+ # @return [Hash<String,Object>]
9083
+ attr_accessor :config_parameters
9084
+
8451
9085
  def initialize(**args)
8452
9086
  update!(**args)
8453
9087
  end
8454
9088
 
8455
9089
  # Update properties of this object
8456
9090
  def update!(**args)
9091
+ @config_parameters = args[:config_parameters] if args.key?(:config_parameters)
8457
9092
  end
8458
9093
  end
8459
9094
 
@@ -8470,6 +9105,25 @@ module Google
8470
9105
  end
8471
9106
  end
8472
9107
 
9108
+ # Request for the ReplaceServiceAccount rpc
9109
+ class GoogleCloudIntegrationsV1alphaReplaceServiceAccountRequest
9110
+ include Google::Apis::Core::Hashable
9111
+
9112
+ # Required. REQUIRED: Run-as service account to be updated
9113
+ # Corresponds to the JSON property `runAsServiceAccount`
9114
+ # @return [String]
9115
+ attr_accessor :run_as_service_account
9116
+
9117
+ def initialize(**args)
9118
+ update!(**args)
9119
+ end
9120
+
9121
+ # Update properties of this object
9122
+ def update!(**args)
9123
+ @run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
9124
+ end
9125
+ end
9126
+
8473
9127
  # Request for [Suspensions.ResolveSuspensions].
8474
9128
  class GoogleCloudIntegrationsV1alphaResolveSuspensionRequest
8475
9129
  include Google::Apis::Core::Hashable
@@ -8564,7 +9218,7 @@ module Google
8564
9218
  end
8565
9219
  end
8566
9220
 
8567
- # The request for scheduling an integration.
9221
+ # The request for scheduling an integration. Next available id: 11
8568
9222
  class GoogleCloudIntegrationsV1alphaScheduleIntegrationsRequest
8569
9223
  include Google::Apis::Core::Hashable
8570
9224
 
@@ -8581,7 +9235,7 @@ module Google
8581
9235
 
8582
9236
  # LINT.IfChange This message is used for processing and persisting (when
8583
9237
  # applicable) key value pair parameters for each event in the event bus. Please
8584
- # see go/integration-platform/event_bus.md for more details. Next id: 4
9238
+ # see
8585
9239
  # Corresponds to the JSON property `parameters`
8586
9240
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventParameters]
8587
9241
  attr_accessor :parameters
@@ -8598,12 +9252,20 @@ module Google
8598
9252
  # @return [String]
8599
9253
  attr_accessor :schedule_time
8600
9254
 
8601
- # Matched against all `@link TriggerConfig`s across all integrations. i.e.
8602
- # TriggerConfig.trigger_id.equals(trigger_id)
9255
+ # Required. Matched against all `@link TriggerConfig`s across all integrations.
9256
+ # i.e. TriggerConfig.trigger_id.equals(trigger_id)
8603
9257
  # Corresponds to the JSON property `triggerId`
8604
9258
  # @return [String]
8605
9259
  attr_accessor :trigger_id
8606
9260
 
9261
+ # Optional. This is a unique id provided by the method caller. If provided this
9262
+ # will be used as the execution_id when a new execution info is created. This is
9263
+ # a string representation of a UUID. Must have no more than 36 characters and
9264
+ # contain only alphanumeric characters and hyphens.
9265
+ # Corresponds to the JSON property `userGeneratedExecutionId`
9266
+ # @return [String]
9267
+ attr_accessor :user_generated_execution_id
9268
+
8607
9269
  def initialize(**args)
8608
9270
  update!(**args)
8609
9271
  end
@@ -8616,6 +9278,7 @@ module Google
8616
9278
  @request_id = args[:request_id] if args.key?(:request_id)
8617
9279
  @schedule_time = args[:schedule_time] if args.key?(:schedule_time)
8618
9280
  @trigger_id = args[:trigger_id] if args.key?(:trigger_id)
9281
+ @user_generated_execution_id = args[:user_generated_execution_id] if args.key?(:user_generated_execution_id)
8619
9282
  end
8620
9283
  end
8621
9284
 
@@ -8638,6 +9301,31 @@ module Google
8638
9301
  end
8639
9302
  end
8640
9303
 
9304
+ # To store string representation of Integration file.
9305
+ class GoogleCloudIntegrationsV1alphaSerializedFile
9306
+ include Google::Apis::Core::Hashable
9307
+
9308
+ # String representation of the file content.
9309
+ # Corresponds to the JSON property `content`
9310
+ # @return [String]
9311
+ attr_accessor :content
9312
+
9313
+ # File information like Integration version, Integration Config variables etc.
9314
+ # Corresponds to the JSON property `file`
9315
+ # @return [String]
9316
+ attr_accessor :file
9317
+
9318
+ def initialize(**args)
9319
+ update!(**args)
9320
+ end
9321
+
9322
+ # Update properties of this object
9323
+ def update!(**args)
9324
+ @content = args[:content] if args.key?(:content)
9325
+ @file = args[:file] if args.key?(:file)
9326
+ end
9327
+ end
9328
+
8641
9329
  # Represents the service account which can be used to generate access token for
8642
9330
  # authenticating the service call.
8643
9331
  class GoogleCloudIntegrationsV1alphaServiceAccountCredentials
@@ -9007,6 +9695,46 @@ module Google
9007
9695
  end
9008
9696
  end
9009
9697
 
9698
+ # Request for the SwitchEncryption rpc
9699
+ class GoogleCloudIntegrationsV1alphaSwitchEncryptionRequest
9700
+ include Google::Apis::Core::Hashable
9701
+
9702
+ # Configuration information for Client's Cloud KMS information
9703
+ # Corresponds to the JSON property `cloudKmsConfig`
9704
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig]
9705
+ attr_accessor :cloud_kms_config
9706
+
9707
+ def initialize(**args)
9708
+ update!(**args)
9709
+ end
9710
+
9711
+ # Update properties of this object
9712
+ def update!(**args)
9713
+ @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
9714
+ end
9715
+ end
9716
+
9717
+ # Request to enable/disable variable masking for a provisioned client
9718
+ class GoogleCloudIntegrationsV1alphaSwitchVariableMaskingRequest
9719
+ include Google::Apis::Core::Hashable
9720
+
9721
+ # Required. REQUIRED: True if variable masking feature should be turned on for
9722
+ # this region
9723
+ # Corresponds to the JSON property `enableVariableMasking`
9724
+ # @return [Boolean]
9725
+ attr_accessor :enable_variable_masking
9726
+ alias_method :enable_variable_masking?, :enable_variable_masking
9727
+
9728
+ def initialize(**args)
9729
+ update!(**args)
9730
+ end
9731
+
9732
+ # Update properties of this object
9733
+ def update!(**args)
9734
+ @enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
9735
+ end
9736
+ end
9737
+
9010
9738
  # Request for TakeoverEditLock.
9011
9739
  class GoogleCloudIntegrationsV1alphaTakeoverEditLockRequest
9012
9740
  include Google::Apis::Core::Hashable
@@ -9055,6 +9783,17 @@ module Google
9055
9783
  # @return [String]
9056
9784
  attr_accessor :display_name
9057
9785
 
9786
+ # Optional. Optional Error catcher id of the error catch flow which will be
9787
+ # executed when execution error happens in the task
9788
+ # Corresponds to the JSON property `errorCatcherId`
9789
+ # @return [String]
9790
+ attr_accessor :error_catcher_id
9791
+
9792
+ # Optional. External task type of the task
9793
+ # Corresponds to the JSON property `externalTaskType`
9794
+ # @return [String]
9795
+ attr_accessor :external_task_type
9796
+
9058
9797
  # Policy that defines the task retry logic and failure type. If no FailurePolicy
9059
9798
  # is defined for a task, all its dependent tasks will not be executed (i.e, a `
9060
9799
  # retry_strategy` of NONE will be applied).
@@ -9087,6 +9826,11 @@ module Google
9087
9826
  # @return [Hash<String,Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaEventParameter>]
9088
9827
  attr_accessor :parameters
9089
9828
 
9829
+ # Configuration detail of coordinate, it used for UI
9830
+ # Corresponds to the JSON property `position`
9831
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCoordinate]
9832
+ attr_accessor :position
9833
+
9090
9834
  # Policy that dictates the behavior for the task after it completes successfully.
9091
9835
  # Corresponds to the JSON property `successPolicy`
9092
9836
  # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaSuccessPolicy]
@@ -9130,11 +9874,14 @@ module Google
9130
9874
  def update!(**args)
9131
9875
  @description = args[:description] if args.key?(:description)
9132
9876
  @display_name = args[:display_name] if args.key?(:display_name)
9877
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
9878
+ @external_task_type = args[:external_task_type] if args.key?(:external_task_type)
9133
9879
  @failure_policy = args[:failure_policy] if args.key?(:failure_policy)
9134
9880
  @json_validation_option = args[:json_validation_option] if args.key?(:json_validation_option)
9135
9881
  @next_tasks = args[:next_tasks] if args.key?(:next_tasks)
9136
9882
  @next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
9137
9883
  @parameters = args[:parameters] if args.key?(:parameters)
9884
+ @position = args[:position] if args.key?(:position)
9138
9885
  @success_policy = args[:success_policy] if args.key?(:success_policy)
9139
9886
  @synchronous_call_failure_policy = args[:synchronous_call_failure_policy] if args.key?(:synchronous_call_failure_policy)
9140
9887
  @task = args[:task] if args.key?(:task)
@@ -9185,6 +9932,11 @@ module Google
9185
9932
  # @return [String]
9186
9933
  attr_accessor :client_id
9187
9934
 
9935
+ # Optional. Config parameters used during integration execution.
9936
+ # Corresponds to the JSON property `configParameters`
9937
+ # @return [Hash<String,Object>]
9938
+ attr_accessor :config_parameters
9939
+
9188
9940
  # Optional. custom deadline of the rpc
9189
9941
  # Corresponds to the JSON property `deadlineSecondsTime`
9190
9942
  # @return [String]
@@ -9202,7 +9954,7 @@ module Google
9202
9954
 
9203
9955
  # LINT.IfChange This message is used for processing and persisting (when
9204
9956
  # applicable) key value pair parameters for each event in the event bus. Please
9205
- # see go/integration-platform/event_bus.md for more details. Next id: 4
9957
+ # see
9206
9958
  # Corresponds to the JSON property `parameters`
9207
9959
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
9208
9960
  attr_accessor :parameters
@@ -9231,6 +9983,7 @@ module Google
9231
9983
  # Update properties of this object
9232
9984
  def update!(**args)
9233
9985
  @client_id = args[:client_id] if args.key?(:client_id)
9986
+ @config_parameters = args[:config_parameters] if args.key?(:config_parameters)
9234
9987
  @deadline_seconds_time = args[:deadline_seconds_time] if args.key?(:deadline_seconds_time)
9235
9988
  @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
9236
9989
  @integration_version = args[:integration_version] if args.key?(:integration_version)
@@ -9246,7 +9999,7 @@ module Google
9246
9999
 
9247
10000
  # LINT.IfChange This message is used for processing and persisting (when
9248
10001
  # applicable) key value pair parameters for each event in the event bus. Please
9249
- # see go/integration-platform/event_bus.md for more details. Next id: 4
10002
+ # see
9250
10003
  # Corresponds to the JSON property `eventParameters`
9251
10004
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventParameters]
9252
10005
  attr_accessor :event_parameters
@@ -9312,6 +10065,12 @@ module Google
9312
10065
  # @return [String]
9313
10066
  attr_accessor :description
9314
10067
 
10068
+ # Optional. Optional Error catcher id of the error catch flow which will be
10069
+ # executed when execution error happens in the task
10070
+ # Corresponds to the JSON property `errorCatcherId`
10071
+ # @return [String]
10072
+ attr_accessor :error_catcher_id
10073
+
9315
10074
  # Optional. The user created label for a particular trigger.
9316
10075
  # Corresponds to the JSON property `label`
9317
10076
  # @return [String]
@@ -9322,6 +10081,11 @@ module Google
9322
10081
  # @return [String]
9323
10082
  attr_accessor :next_tasks_execution_policy
9324
10083
 
10084
+ # Configuration detail of coordinate, it used for UI
10085
+ # Corresponds to the JSON property `position`
10086
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCoordinate]
10087
+ attr_accessor :position
10088
+
9325
10089
  # Optional. Configurable properties of the trigger, not to be confused with
9326
10090
  # integration parameters. E.g. "name" is a property for API triggers and "
9327
10091
  # subscription" is a property for Pub/sub triggers.
@@ -9337,6 +10101,12 @@ module Google
9337
10101
  # @return [Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaNextTask>]
9338
10102
  attr_accessor :start_tasks
9339
10103
 
10104
+ # Optional. Name of the trigger. Example: "API Trigger", "Cloud Pub Sub Trigger"
10105
+ # When set will be sent out to monitoring dashabord for tracking purpose.
10106
+ # Corresponds to the JSON property `trigger`
10107
+ # @return [String]
10108
+ attr_accessor :trigger
10109
+
9340
10110
  # Optional. The backend trigger ID.
9341
10111
  # Corresponds to the JSON property `triggerId`
9342
10112
  # @return [String]
@@ -9362,10 +10132,13 @@ module Google
9362
10132
  @alert_config = args[:alert_config] if args.key?(:alert_config)
9363
10133
  @cloud_scheduler_config = args[:cloud_scheduler_config] if args.key?(:cloud_scheduler_config)
9364
10134
  @description = args[:description] if args.key?(:description)
10135
+ @error_catcher_id = args[:error_catcher_id] if args.key?(:error_catcher_id)
9365
10136
  @label = args[:label] if args.key?(:label)
9366
10137
  @next_tasks_execution_policy = args[:next_tasks_execution_policy] if args.key?(:next_tasks_execution_policy)
10138
+ @position = args[:position] if args.key?(:position)
9367
10139
  @properties = args[:properties] if args.key?(:properties)
9368
10140
  @start_tasks = args[:start_tasks] if args.key?(:start_tasks)
10141
+ @trigger = args[:trigger] if args.key?(:trigger)
9369
10142
  @trigger_id = args[:trigger_id] if args.key?(:trigger_id)
9370
10143
  @trigger_number = args[:trigger_number] if args.key?(:trigger_number)
9371
10144
  @trigger_type = args[:trigger_type] if args.key?(:trigger_type)
@@ -9385,49 +10158,6 @@ module Google
9385
10158
  end
9386
10159
  end
9387
10160
 
9388
- # THIS METHOD WILL BE MOVED TO A SEPARATE SERVICE. Request message for Bundle
9389
- # update
9390
- class GoogleCloudIntegrationsV1alphaUpdateBundleRequest
9391
- include Google::Apis::Core::Hashable
9392
-
9393
- # This proto holds the core runner data in the bundle task. It is not expected
9394
- # to be directly edited by the user. Instead, a default value will be provided
9395
- # at the task creation time.
9396
- # Corresponds to the JSON property `config`
9397
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig]
9398
- attr_accessor :config
9399
-
9400
- def initialize(**args)
9401
- update!(**args)
9402
- end
9403
-
9404
- # Update properties of this object
9405
- def update!(**args)
9406
- @config = args[:config] if args.key?(:config)
9407
- end
9408
- end
9409
-
9410
- # Response message for Bundle update
9411
- class GoogleCloudIntegrationsV1alphaUpdateBundleResponse
9412
- include Google::Apis::Core::Hashable
9413
-
9414
- # This proto holds the core runner data in the bundle task. It is not expected
9415
- # to be directly edited by the user. Instead, a default value will be provided
9416
- # at the task creation time.
9417
- # Corresponds to the JSON property `config`
9418
- # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig]
9419
- attr_accessor :config
9420
-
9421
- def initialize(**args)
9422
- update!(**args)
9423
- end
9424
-
9425
- # Update properties of this object
9426
- def update!(**args)
9427
- @config = args[:config] if args.key?(:config)
9428
- end
9429
- end
9430
-
9431
10161
  # Request for UploadIntegrationVersion.
9432
10162
  class GoogleCloudIntegrationsV1alphaUploadIntegrationVersionRequest
9433
10163
  include Google::Apis::Core::Hashable
@@ -9497,32 +10227,6 @@ module Google
9497
10227
  end
9498
10228
  end
9499
10229
 
9500
- # Request for ValidateIntegrationVersion.
9501
- class GoogleCloudIntegrationsV1alphaValidateIntegrationVersionRequest
9502
- include Google::Apis::Core::Hashable
9503
-
9504
- def initialize(**args)
9505
- update!(**args)
9506
- end
9507
-
9508
- # Update properties of this object
9509
- def update!(**args)
9510
- end
9511
- end
9512
-
9513
- # Response for ValidateIntegrationVersion.
9514
- class GoogleCloudIntegrationsV1alphaValidateIntegrationVersionResponse
9515
- include Google::Apis::Core::Hashable
9516
-
9517
- def initialize(**args)
9518
- update!(**args)
9519
- end
9520
-
9521
- # Update properties of this object
9522
- def update!(**args)
9523
- end
9524
- end
9525
-
9526
10230
  # The type of the parameter.
9527
10231
  class GoogleCloudIntegrationsV1alphaValueType
9528
10232
  include Google::Apis::Core::Hashable
@@ -9591,8 +10295,8 @@ module Google
9591
10295
  end
9592
10296
  end
9593
10297
 
9594
- # Use this request to post all workflows associated with a given trigger id.
9595
- # Next available id: 10
10298
+ # LINT.IfChange Use this request to post all workflows associated with a given
10299
+ # trigger id. Next available id: 13
9596
10300
  class GoogleInternalCloudCrmEventbusV3PostToQueueWithTriggerIdRequest
9597
10301
  include Google::Apis::Core::Hashable
9598
10302
 
@@ -9617,7 +10321,7 @@ module Google
9617
10321
 
9618
10322
  # LINT.IfChange This message is used for processing and persisting (when
9619
10323
  # applicable) key value pair parameters for each event in the event bus. Please
9620
- # see go/integration-platform/event_bus.md for more details. Next id: 4
10324
+ # see
9621
10325
  # Corresponds to the JSON property `parameters`
9622
10326
  # @return [Google::Apis::IntegrationsV1::EnterpriseCrmEventbusProtoEventParameters]
9623
10327
  attr_accessor :parameters
@@ -9627,6 +10331,12 @@ module Google
9627
10331
  # @return [String]
9628
10332
  attr_accessor :priority
9629
10333
 
10334
+ # Optional. This is a field to see the quota retry count for integration
10335
+ # execution
10336
+ # Corresponds to the JSON property `quotaRetryCount`
10337
+ # @return [Fixnum]
10338
+ attr_accessor :quota_retry_count
10339
+
9630
10340
  # Optional. This is used to de-dup incoming request: if the duplicate request
9631
10341
  # was detected, the response from the previous execution is returned. Must have
9632
10342
  # no more than 36 characters and contain only alphanumeric characters and
@@ -9635,6 +10345,13 @@ module Google
9635
10345
  # @return [String]
9636
10346
  attr_accessor :request_id
9637
10347
 
10348
+ # This field is only required when using Admin Access. The resource name of
10349
+ # target, or the parent resource name. For example: "projects/*/locations/*/
10350
+ # integrations/*"
10351
+ # Corresponds to the JSON property `resourceName`
10352
+ # @return [String]
10353
+ attr_accessor :resource_name
10354
+
9638
10355
  # Optional. Time in milliseconds since epoch when the given event would be
9639
10356
  # scheduled.
9640
10357
  # Corresponds to the JSON property `scheduledTime`
@@ -9654,6 +10371,14 @@ module Google
9654
10371
  # @return [String]
9655
10372
  attr_accessor :trigger_id
9656
10373
 
10374
+ # This is a unique id provided by the method caller. If provided this will be
10375
+ # used as the execution_id when a new execution info is created. This is a
10376
+ # string representation of a UUID. Must have no more than 36 characters and
10377
+ # contain only alphanumeric characters and hyphens.
10378
+ # Corresponds to the JSON property `userGeneratedExecutionId`
10379
+ # @return [String]
10380
+ attr_accessor :user_generated_execution_id
10381
+
9657
10382
  # Optional. If provided, the workflow_name is used to filter all the matched
9658
10383
  # workflows having same trigger_id+client_id. A combination of trigger_id,
9659
10384
  # client_id and workflow_name identifies a unique workflow.
@@ -9671,10 +10396,13 @@ module Google
9671
10396
  @ignore_error_if_no_active_workflow = args[:ignore_error_if_no_active_workflow] if args.key?(:ignore_error_if_no_active_workflow)
9672
10397
  @parameters = args[:parameters] if args.key?(:parameters)
9673
10398
  @priority = args[:priority] if args.key?(:priority)
10399
+ @quota_retry_count = args[:quota_retry_count] if args.key?(:quota_retry_count)
9674
10400
  @request_id = args[:request_id] if args.key?(:request_id)
10401
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
9675
10402
  @scheduled_time = args[:scheduled_time] if args.key?(:scheduled_time)
9676
10403
  @test_mode = args[:test_mode] if args.key?(:test_mode)
9677
10404
  @trigger_id = args[:trigger_id] if args.key?(:trigger_id)
10405
+ @user_generated_execution_id = args[:user_generated_execution_id] if args.key?(:user_generated_execution_id)
9678
10406
  @workflow_name = args[:workflow_name] if args.key?(:workflow_name)
9679
10407
  end
9680
10408
  end