google-apis-connectors_v1 0.63.0 → 0.65.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -118,6 +118,13 @@ module Google
118
118
  # @return [Google::Apis::ConnectorsV1::Oauth2AuthCodeFlow]
119
119
  attr_accessor :oauth2_auth_code_flow
120
120
 
121
+ # Parameters to support Oauth 2.0 Auth Code Grant Authentication using Google
122
+ # Provided OAuth Client. See https://tools.ietf.org/html/rfc6749#section-1.3.1
123
+ # for more details.
124
+ # Corresponds to the JSON property `oauth2AuthCodeFlowGoogleManaged`
125
+ # @return [Google::Apis::ConnectorsV1::Oauth2AuthCodeFlowGoogleManaged]
126
+ attr_accessor :oauth2_auth_code_flow_google_managed
127
+
121
128
  # Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See
122
129
  # https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
123
130
  # Corresponds to the JSON property `oauth2ClientCredentials`
@@ -151,6 +158,7 @@ module Google
151
158
  @auth_key = args[:auth_key] if args.key?(:auth_key)
152
159
  @auth_type = args[:auth_type] if args.key?(:auth_type)
153
160
  @oauth2_auth_code_flow = args[:oauth2_auth_code_flow] if args.key?(:oauth2_auth_code_flow)
161
+ @oauth2_auth_code_flow_google_managed = args[:oauth2_auth_code_flow_google_managed] if args.key?(:oauth2_auth_code_flow_google_managed)
154
162
  @oauth2_client_credentials = args[:oauth2_client_credentials] if args.key?(:oauth2_client_credentials)
155
163
  @oauth2_jwt_bearer = args[:oauth2_jwt_bearer] if args.key?(:oauth2_jwt_bearer)
156
164
  @ssh_public_key = args[:ssh_public_key] if args.key?(:ssh_public_key)
@@ -187,6 +195,12 @@ module Google
187
195
  # @return [String]
188
196
  attr_accessor :display_name
189
197
 
198
+ # Whether the auth config is the default one.
199
+ # Corresponds to the JSON property `isDefault`
200
+ # @return [Boolean]
201
+ attr_accessor :is_default
202
+ alias_method :is_default?, :is_default
203
+
190
204
  def initialize(**args)
191
205
  update!(**args)
192
206
  end
@@ -198,6 +212,170 @@ module Google
198
212
  @config_variable_templates = args[:config_variable_templates] if args.key?(:config_variable_templates)
199
213
  @description = args[:description] if args.key?(:description)
200
214
  @display_name = args[:display_name] if args.key?(:display_name)
215
+ @is_default = args[:is_default] if args.key?(:is_default)
216
+ end
217
+ end
218
+
219
+ # AuthField defines a field in an authentication type.
220
+ class AuthField
221
+ include Google::Apis::Core::Hashable
222
+
223
+ # Data type of the field.
224
+ # Corresponds to the JSON property `dataType`
225
+ # @return [String]
226
+ attr_accessor :data_type
227
+
228
+ # Description of the field.
229
+ # Corresponds to the JSON property `description`
230
+ # @return [String]
231
+ attr_accessor :description
232
+
233
+ # Key of the field.
234
+ # Corresponds to the JSON property `key`
235
+ # @return [String]
236
+ attr_accessor :key
237
+
238
+ def initialize(**args)
239
+ update!(**args)
240
+ end
241
+
242
+ # Update properties of this object
243
+ def update!(**args)
244
+ @data_type = args[:data_type] if args.key?(:data_type)
245
+ @description = args[:description] if args.key?(:description)
246
+ @key = args[:key] if args.key?(:key)
247
+ end
248
+ end
249
+
250
+ # AuthObject defines a JSON schema of an authentication type.
251
+ class AuthObject
252
+ include Google::Apis::Core::Hashable
253
+
254
+ # Whether the object has additional properties.
255
+ # Corresponds to the JSON property `additionalProperties`
256
+ # @return [Boolean]
257
+ attr_accessor :additional_properties
258
+ alias_method :additional_properties?, :additional_properties
259
+
260
+ # Auth key of the object.
261
+ # Corresponds to the JSON property `authKey`
262
+ # @return [String]
263
+ attr_accessor :auth_key
264
+
265
+ # Auth type of the object.
266
+ # Corresponds to the JSON property `authType`
267
+ # @return [String]
268
+ attr_accessor :auth_type
269
+
270
+ # Description of the object.
271
+ # Corresponds to the JSON property `description`
272
+ # @return [String]
273
+ attr_accessor :description
274
+
275
+ # Whether the object is the default one.
276
+ # Corresponds to the JSON property `isDefault`
277
+ # @return [Boolean]
278
+ attr_accessor :is_default
279
+ alias_method :is_default?, :is_default
280
+
281
+ # Properties of the object.
282
+ # Corresponds to the JSON property `properties`
283
+ # @return [Hash<String,Google::Apis::ConnectorsV1::AuthProperty>]
284
+ attr_accessor :properties
285
+
286
+ # Type of the object.
287
+ # Corresponds to the JSON property `type`
288
+ # @return [String]
289
+ attr_accessor :type
290
+
291
+ def initialize(**args)
292
+ update!(**args)
293
+ end
294
+
295
+ # Update properties of this object
296
+ def update!(**args)
297
+ @additional_properties = args[:additional_properties] if args.key?(:additional_properties)
298
+ @auth_key = args[:auth_key] if args.key?(:auth_key)
299
+ @auth_type = args[:auth_type] if args.key?(:auth_type)
300
+ @description = args[:description] if args.key?(:description)
301
+ @is_default = args[:is_default] if args.key?(:is_default)
302
+ @properties = args[:properties] if args.key?(:properties)
303
+ @type = args[:type] if args.key?(:type)
304
+ end
305
+ end
306
+
307
+ # AuthProperty defines a property of an authentication type.
308
+ class AuthProperty
309
+ include Google::Apis::Core::Hashable
310
+
311
+ # Description of the property.
312
+ # Corresponds to the JSON property `description`
313
+ # @return [String]
314
+ attr_accessor :description
315
+
316
+ # Type of the property.
317
+ # Corresponds to the JSON property `type`
318
+ # @return [String]
319
+ attr_accessor :type
320
+
321
+ def initialize(**args)
322
+ update!(**args)
323
+ end
324
+
325
+ # Update properties of this object
326
+ def update!(**args)
327
+ @description = args[:description] if args.key?(:description)
328
+ @type = args[:type] if args.key?(:type)
329
+ end
330
+ end
331
+
332
+ # AuthSchema defines the schema of an authentication type.
333
+ class AuthSchema
334
+ include Google::Apis::Core::Hashable
335
+
336
+ # List of AuthFields.
337
+ # Corresponds to the JSON property `authFields`
338
+ # @return [Array<Google::Apis::ConnectorsV1::AuthField>]
339
+ attr_accessor :auth_fields
340
+
341
+ # Auth key of the schema.
342
+ # Corresponds to the JSON property `authKey`
343
+ # @return [String]
344
+ attr_accessor :auth_key
345
+
346
+ # Auth type of the schema.
347
+ # Corresponds to the JSON property `authType`
348
+ # @return [String]
349
+ attr_accessor :auth_type
350
+
351
+ # Description of the schema.
352
+ # Corresponds to the JSON property `description`
353
+ # @return [String]
354
+ attr_accessor :description
355
+
356
+ # Display name of the schema.
357
+ # Corresponds to the JSON property `displayName`
358
+ # @return [String]
359
+ attr_accessor :display_name
360
+
361
+ # Whether the auth schema is the default one.
362
+ # Corresponds to the JSON property `isDefault`
363
+ # @return [Boolean]
364
+ attr_accessor :is_default
365
+ alias_method :is_default?, :is_default
366
+
367
+ def initialize(**args)
368
+ update!(**args)
369
+ end
370
+
371
+ # Update properties of this object
372
+ def update!(**args)
373
+ @auth_fields = args[:auth_fields] if args.key?(:auth_fields)
374
+ @auth_key = args[:auth_key] if args.key?(:auth_key)
375
+ @auth_type = args[:auth_type] if args.key?(:auth_type)
376
+ @description = args[:description] if args.key?(:description)
377
+ @display_name = args[:display_name] if args.key?(:display_name)
378
+ @is_default = args[:is_default] if args.key?(:is_default)
201
379
  end
202
380
  end
203
381
 
@@ -206,13 +384,18 @@ module Google
206
384
  class AuthorizationCodeLink
207
385
  include Google::Apis::Core::Hashable
208
386
 
209
- # The client ID assigned to the Google Cloud Connectors OAuth app for the
210
- # connector data source.
387
+ # Optional. The client ID assigned to the Google Cloud Connectors OAuth app for
388
+ # the connector data source.
211
389
  # Corresponds to the JSON property `clientId`
212
390
  # @return [String]
213
391
  attr_accessor :client_id
214
392
 
215
- # Whether to enable PKCE for the auth code flow.
393
+ # Secret provides a reference to entries in Secret Manager.
394
+ # Corresponds to the JSON property `clientSecret`
395
+ # @return [Google::Apis::ConnectorsV1::Secret]
396
+ attr_accessor :client_secret
397
+
398
+ # Optional. Whether to enable PKCE for the auth code flow.
216
399
  # Corresponds to the JSON property `enablePkce`
217
400
  # @return [Boolean]
218
401
  attr_accessor :enable_pkce
@@ -224,13 +407,14 @@ module Google
224
407
  attr_accessor :omit_query_params
225
408
  alias_method :omit_query_params?, :omit_query_params
226
409
 
227
- # The scopes for which the user will authorize Google Cloud Connectors on the
228
- # connector data source.
410
+ # Optional. The scopes for which the user will authorize Google Cloud Connectors
411
+ # on the connector data source.
229
412
  # Corresponds to the JSON property `scopes`
230
413
  # @return [Array<String>]
231
414
  attr_accessor :scopes
232
415
 
233
- # The base URI the user must click to trigger the authorization code login flow.
416
+ # Optional. The base URI the user must click to trigger the authorization code
417
+ # login flow.
234
418
  # Corresponds to the JSON property `uri`
235
419
  # @return [String]
236
420
  attr_accessor :uri
@@ -242,6 +426,7 @@ module Google
242
426
  # Update properties of this object
243
427
  def update!(**args)
244
428
  @client_id = args[:client_id] if args.key?(:client_id)
429
+ @client_secret = args[:client_secret] if args.key?(:client_secret)
245
430
  @enable_pkce = args[:enable_pkce] if args.key?(:enable_pkce)
246
431
  @omit_query_params = args[:omit_query_params] if args.key?(:omit_query_params)
247
432
  @scopes = args[:scopes] if args.key?(:scopes)
@@ -444,17 +629,17 @@ module Google
444
629
  # @return [Google::Apis::ConnectorsV1::AuthorizationCodeLink]
445
630
  attr_accessor :authorization_code_link
446
631
 
447
- # Description.
632
+ # Optional. Description.
448
633
  # Corresponds to the JSON property `description`
449
634
  # @return [String]
450
635
  attr_accessor :description
451
636
 
452
- # Display name of the parameter.
637
+ # Optional. Display name of the parameter.
453
638
  # Corresponds to the JSON property `displayName`
454
639
  # @return [String]
455
640
  attr_accessor :display_name
456
641
 
457
- # Enum options. To be populated if `ValueType` is `ENUM`
642
+ # Optional. Enum options. To be populated if `ValueType` is `ENUM`
458
643
  # Corresponds to the JSON property `enumOptions`
459
644
  # @return [Array<Google::Apis::ConnectorsV1::EnumOption>]
460
645
  attr_accessor :enum_options
@@ -464,13 +649,13 @@ module Google
464
649
  # @return [String]
465
650
  attr_accessor :enum_source
466
651
 
467
- # Indicates if current template is part of advanced settings
652
+ # Optional. Indicates if current template is part of advanced settings
468
653
  # Corresponds to the JSON property `isAdvanced`
469
654
  # @return [Boolean]
470
655
  attr_accessor :is_advanced
471
656
  alias_method :is_advanced?, :is_advanced
472
657
 
473
- # Key of the config variable.
658
+ # Optional. Key of the config variable.
474
659
  # Corresponds to the JSON property `key`
475
660
  # @return [String]
476
661
  attr_accessor :key
@@ -486,7 +671,8 @@ module Google
486
671
  # @return [Google::Apis::ConnectorsV1::MultipleSelectConfig]
487
672
  attr_accessor :multiple_select_config
488
673
 
489
- # Flag represents that this `ConfigVariable` must be provided for a connection.
674
+ # Optional. Flag represents that this `ConfigVariable` must be provided for a
675
+ # connection.
490
676
  # Corresponds to the JSON property `required`
491
677
  # @return [Boolean]
492
678
  attr_accessor :required
@@ -506,19 +692,19 @@ module Google
506
692
  # @return [Google::Apis::ConnectorsV1::RoleGrant]
507
693
  attr_accessor :role_grant
508
694
 
509
- # State of the config variable.
695
+ # Output only. State of the config variable.
510
696
  # Corresponds to the JSON property `state`
511
697
  # @return [String]
512
698
  attr_accessor :state
513
699
 
514
- # Regular expression in RE2 syntax used for validating the `value` of a `
515
- # ConfigVariable`.
700
+ # Optional. Regular expression in RE2 syntax used for validating the `value` of
701
+ # a `ConfigVariable`.
516
702
  # Corresponds to the JSON property `validationRegex`
517
703
  # @return [String]
518
704
  attr_accessor :validation_regex
519
705
 
520
- # Type of the parameter: string, int, bool etc. consider custom type for the
521
- # benefit for the validation.
706
+ # Optional. Type of the parameter: string, int, bool etc. consider custom type
707
+ # for the benefit for the validation.
522
708
  # Corresponds to the JSON property `valueType`
523
709
  # @return [String]
524
710
  attr_accessor :value_type
@@ -564,6 +750,14 @@ module Google
564
750
  # @return [Google::Apis::ConnectorsV1::AuthConfig]
565
751
  attr_accessor :auth_config
566
752
 
753
+ # Optional. Auth override enabled for the connection. If Auth Override is
754
+ # enabled, Connection allows the backend service auth to be overridden in the
755
+ # entities/actions API.
756
+ # Corresponds to the JSON property `authOverrideEnabled`
757
+ # @return [Boolean]
758
+ attr_accessor :auth_override_enabled
759
+ alias_method :auth_override_enabled?, :auth_override_enabled
760
+
567
761
  # Billing config for the connection.
568
762
  # Corresponds to the JSON property `billingConfig`
569
763
  # @return [Google::Apis::ConnectorsV1::BillingConfig]
@@ -636,6 +830,12 @@ module Google
636
830
  # @return [Google::Apis::ConnectorsV1::EventingRuntimeData]
637
831
  attr_accessor :eventing_runtime_data
638
832
 
833
+ # Output only. The name of the Hostname of the Service Directory service with
834
+ # TLS.
835
+ # Corresponds to the JSON property `host`
836
+ # @return [String]
837
+ attr_accessor :host
838
+
639
839
  # Output only. GCR location where the runtime image is stored. formatted like:
640
840
  # gcr.io/`bucketName`/`imageName`
641
841
  # Corresponds to the JSON property `imageLocation`
@@ -713,6 +913,11 @@ module Google
713
913
  attr_accessor :suspended
714
914
  alias_method :suspended?, :suspended
715
915
 
916
+ # Output only. The name of the Service Directory service with TLS.
917
+ # Corresponds to the JSON property `tlsServiceDirectory`
918
+ # @return [String]
919
+ attr_accessor :tls_service_directory
920
+
716
921
  # Output only. Updated time.
717
922
  # Corresponds to the JSON property `updateTime`
718
923
  # @return [String]
@@ -726,6 +931,7 @@ module Google
726
931
  def update!(**args)
727
932
  @async_operations_enabled = args[:async_operations_enabled] if args.key?(:async_operations_enabled)
728
933
  @auth_config = args[:auth_config] if args.key?(:auth_config)
934
+ @auth_override_enabled = args[:auth_override_enabled] if args.key?(:auth_override_enabled)
729
935
  @billing_config = args[:billing_config] if args.key?(:billing_config)
730
936
  @config_variables = args[:config_variables] if args.key?(:config_variables)
731
937
  @connection_revision = args[:connection_revision] if args.key?(:connection_revision)
@@ -739,6 +945,7 @@ module Google
739
945
  @eventing_config = args[:eventing_config] if args.key?(:eventing_config)
740
946
  @eventing_enablement_type = args[:eventing_enablement_type] if args.key?(:eventing_enablement_type)
741
947
  @eventing_runtime_data = args[:eventing_runtime_data] if args.key?(:eventing_runtime_data)
948
+ @host = args[:host] if args.key?(:host)
742
949
  @image_location = args[:image_location] if args.key?(:image_location)
743
950
  @is_trusted_tester = args[:is_trusted_tester] if args.key?(:is_trusted_tester)
744
951
  @labels = args[:labels] if args.key?(:labels)
@@ -752,6 +959,7 @@ module Google
752
959
  @status = args[:status] if args.key?(:status)
753
960
  @subscription_type = args[:subscription_type] if args.key?(:subscription_type)
754
961
  @suspended = args[:suspended] if args.key?(:suspended)
962
+ @tls_service_directory = args[:tls_service_directory] if args.key?(:tls_service_directory)
755
963
  @update_time = args[:update_time] if args.key?(:update_time)
756
964
  end
757
965
  end
@@ -902,6 +1110,11 @@ module Google
902
1110
  # @return [String]
903
1111
  attr_accessor :launch_stage
904
1112
 
1113
+ # Marketplace connector details.
1114
+ # Corresponds to the JSON property `marketplaceConnectorDetails`
1115
+ # @return [Google::Apis::ConnectorsV1::MarketplaceConnectorDetails]
1116
+ attr_accessor :marketplace_connector_details
1117
+
905
1118
  # Output only. Resource name of the Connector. Format: projects/`project`/
906
1119
  # locations/`location`/providers/`provider`/connectors/`connector` Only global
907
1120
  # location is supported for Connector resource.
@@ -940,6 +1153,7 @@ module Google
940
1153
  @external_uri = args[:external_uri] if args.key?(:external_uri)
941
1154
  @labels = args[:labels] if args.key?(:labels)
942
1155
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
1156
+ @marketplace_connector_details = args[:marketplace_connector_details] if args.key?(:marketplace_connector_details)
943
1157
  @name = args[:name] if args.key?(:name)
944
1158
  @tags = args[:tags] if args.key?(:tags)
945
1159
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -952,11 +1166,23 @@ module Google
952
1166
  class ConnectorInfraConfig
953
1167
  include Google::Apis::Core::Hashable
954
1168
 
1169
+ # Indicates that the Cloud Run CPU should always be allocated.
1170
+ # Corresponds to the JSON property `alwaysAllocateCpu`
1171
+ # @return [Boolean]
1172
+ attr_accessor :always_allocate_cpu
1173
+ alias_method :always_allocate_cpu?, :always_allocate_cpu
1174
+
955
1175
  # The window used for ratelimiting runtime requests to connections.
956
1176
  # Corresponds to the JSON property `connectionRatelimitWindowSeconds`
957
1177
  # @return [Fixnum]
958
1178
  attr_accessor :connection_ratelimit_window_seconds
959
1179
 
1180
+ # Indicate whether connector versioning is enabled.
1181
+ # Corresponds to the JSON property `connectorVersioningEnabled`
1182
+ # @return [Boolean]
1183
+ attr_accessor :connector_versioning_enabled
1184
+ alias_method :connector_versioning_enabled?, :connector_versioning_enabled
1185
+
960
1186
  # Indicate whether connector is deployed on GKE/CloudRun
961
1187
  # Corresponds to the JSON property `deploymentModel`
962
1188
  # @return [String]
@@ -972,12 +1198,29 @@ module Google
972
1198
  # @return [Fixnum]
973
1199
  attr_accessor :internalclient_ratelimit_threshold
974
1200
 
1201
+ # Max Instance Request Conncurrency for Cloud Run service.
1202
+ # Corresponds to the JSON property `maxInstanceRequestConcurrency`
1203
+ # @return [Fixnum]
1204
+ attr_accessor :max_instance_request_concurrency
1205
+
975
1206
  # Indicate whether connector is being migrated to cloud run deployment model.
976
1207
  # Corresponds to the JSON property `migrateDeploymentModel`
977
1208
  # @return [Boolean]
978
1209
  attr_accessor :migrate_deployment_model
979
1210
  alias_method :migrate_deployment_model?, :migrate_deployment_model
980
1211
 
1212
+ # Indicate whether connector is being migrated to TLS.
1213
+ # Corresponds to the JSON property `migrateTls`
1214
+ # @return [Boolean]
1215
+ attr_accessor :migrate_tls
1216
+ alias_method :migrate_tls?, :migrate_tls
1217
+
1218
+ # Indicate whether cloud spanner is required for connector job.
1219
+ # Corresponds to the JSON property `provisionCloudSpanner`
1220
+ # @return [Boolean]
1221
+ attr_accessor :provision_cloud_spanner
1222
+ alias_method :provision_cloud_spanner?, :provision_cloud_spanner
1223
+
981
1224
  # Max QPS supported by the connector version before throttling of requests.
982
1225
  # Corresponds to the JSON property `ratelimitThreshold`
983
1226
  # @return [Fixnum]
@@ -1004,11 +1247,16 @@ module Google
1004
1247
 
1005
1248
  # Update properties of this object
1006
1249
  def update!(**args)
1250
+ @always_allocate_cpu = args[:always_allocate_cpu] if args.key?(:always_allocate_cpu)
1007
1251
  @connection_ratelimit_window_seconds = args[:connection_ratelimit_window_seconds] if args.key?(:connection_ratelimit_window_seconds)
1252
+ @connector_versioning_enabled = args[:connector_versioning_enabled] if args.key?(:connector_versioning_enabled)
1008
1253
  @deployment_model = args[:deployment_model] if args.key?(:deployment_model)
1009
1254
  @hpa_config = args[:hpa_config] if args.key?(:hpa_config)
1010
1255
  @internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
1256
+ @max_instance_request_concurrency = args[:max_instance_request_concurrency] if args.key?(:max_instance_request_concurrency)
1011
1257
  @migrate_deployment_model = args[:migrate_deployment_model] if args.key?(:migrate_deployment_model)
1258
+ @migrate_tls = args[:migrate_tls] if args.key?(:migrate_tls)
1259
+ @provision_cloud_spanner = args[:provision_cloud_spanner] if args.key?(:provision_cloud_spanner)
1012
1260
  @ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
1013
1261
  @resource_limits = args[:resource_limits] if args.key?(:resource_limits)
1014
1262
  @resource_requests = args[:resource_requests] if args.key?(:resource_requests)
@@ -1070,6 +1318,24 @@ module Google
1070
1318
  # @return [Google::Apis::ConnectorsV1::EventingConfigTemplate]
1071
1319
  attr_accessor :eventing_config_template
1072
1320
 
1321
+ # Output only. Is async operations supported.
1322
+ # Corresponds to the JSON property `isAsyncOperationsSupported`
1323
+ # @return [Boolean]
1324
+ attr_accessor :is_async_operations_supported
1325
+ alias_method :is_async_operations_supported?, :is_async_operations_supported
1326
+
1327
+ # Output only. Is custom actions supported.
1328
+ # Corresponds to the JSON property `isCustomActionsSupported`
1329
+ # @return [Boolean]
1330
+ attr_accessor :is_custom_actions_supported
1331
+ alias_method :is_custom_actions_supported?, :is_custom_actions_supported
1332
+
1333
+ # Output only. Is custom entities supported.
1334
+ # Corresponds to the JSON property `isCustomEntitiesSupported`
1335
+ # @return [Boolean]
1336
+ attr_accessor :is_custom_entities_supported
1337
+ alias_method :is_custom_entities_supported?, :is_custom_entities_supported
1338
+
1073
1339
  # Output only. Resource labels to represent user-provided metadata. Refer to
1074
1340
  # cloud documentation on labels for more details. https://cloud.google.com/
1075
1341
  # compute/docs/labeling-resources
@@ -1123,6 +1389,16 @@ module Google
1123
1389
  # @return [Google::Apis::ConnectorsV1::SupportedRuntimeFeatures]
1124
1390
  attr_accessor :supported_runtime_features
1125
1391
 
1392
+ # Output only. Supported standard actions.
1393
+ # Corresponds to the JSON property `supportedStandardActions`
1394
+ # @return [Array<Google::Apis::ConnectorsV1::StandardAction>]
1395
+ attr_accessor :supported_standard_actions
1396
+
1397
+ # Output only. Supported standard entities.
1398
+ # Corresponds to the JSON property `supportedStandardEntities`
1399
+ # @return [Array<Google::Apis::ConnectorsV1::StandardEntity>]
1400
+ attr_accessor :supported_standard_entities
1401
+
1126
1402
  # Output only. Unsupported connection types.
1127
1403
  # Corresponds to the JSON property `unsupportedConnectionTypes`
1128
1404
  # @return [Array<String>]
@@ -1148,6 +1424,9 @@ module Google
1148
1424
  @display_name = args[:display_name] if args.key?(:display_name)
1149
1425
  @egress_control_config = args[:egress_control_config] if args.key?(:egress_control_config)
1150
1426
  @eventing_config_template = args[:eventing_config_template] if args.key?(:eventing_config_template)
1427
+ @is_async_operations_supported = args[:is_async_operations_supported] if args.key?(:is_async_operations_supported)
1428
+ @is_custom_actions_supported = args[:is_custom_actions_supported] if args.key?(:is_custom_actions_supported)
1429
+ @is_custom_entities_supported = args[:is_custom_entities_supported] if args.key?(:is_custom_entities_supported)
1151
1430
  @labels = args[:labels] if args.key?(:labels)
1152
1431
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
1153
1432
  @name = args[:name] if args.key?(:name)
@@ -1157,6 +1436,8 @@ module Google
1157
1436
  @schema_refresh_config = args[:schema_refresh_config] if args.key?(:schema_refresh_config)
1158
1437
  @ssl_config_template = args[:ssl_config_template] if args.key?(:ssl_config_template)
1159
1438
  @supported_runtime_features = args[:supported_runtime_features] if args.key?(:supported_runtime_features)
1439
+ @supported_standard_actions = args[:supported_standard_actions] if args.key?(:supported_standard_actions)
1440
+ @supported_standard_entities = args[:supported_standard_entities] if args.key?(:supported_standard_entities)
1160
1441
  @unsupported_connection_types = args[:unsupported_connection_types] if args.key?(:unsupported_connection_types)
1161
1442
  @update_time = args[:update_time] if args.key?(:update_time)
1162
1443
  end
@@ -1172,7 +1453,7 @@ module Google
1172
1453
  # @return [Fixnum]
1173
1454
  attr_accessor :connection_ratelimit_window_seconds
1174
1455
 
1175
- # Optional. Indicates whether connector is deployed on GKE/CloudRun
1456
+ # Output only. Indicates whether connector is deployed on GKE/CloudRun
1176
1457
  # Corresponds to the JSON property `deploymentModel`
1177
1458
  # @return [String]
1178
1459
  attr_accessor :deployment_model
@@ -1192,6 +1473,11 @@ module Google
1192
1473
  # @return [Fixnum]
1193
1474
  attr_accessor :internalclient_ratelimit_threshold
1194
1475
 
1476
+ # Output only. Max instance request concurrency.
1477
+ # Corresponds to the JSON property `maxInstanceRequestConcurrency`
1478
+ # @return [Fixnum]
1479
+ attr_accessor :max_instance_request_concurrency
1480
+
1195
1481
  # Output only. Max QPS supported by the connector version before throttling of
1196
1482
  # requests.
1197
1483
  # Corresponds to the JSON property `ratelimitThreshold`
@@ -1213,6 +1499,11 @@ module Google
1213
1499
  # @return [String]
1214
1500
  attr_accessor :shared_deployment
1215
1501
 
1502
+ # Output only. Status of the TLS migration.
1503
+ # Corresponds to the JSON property `tlsMigrationState`
1504
+ # @return [String]
1505
+ attr_accessor :tls_migration_state
1506
+
1216
1507
  def initialize(**args)
1217
1508
  update!(**args)
1218
1509
  end
@@ -1224,10 +1515,12 @@ module Google
1224
1515
  @deployment_model_migration_state = args[:deployment_model_migration_state] if args.key?(:deployment_model_migration_state)
1225
1516
  @hpa_config = args[:hpa_config] if args.key?(:hpa_config)
1226
1517
  @internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
1518
+ @max_instance_request_concurrency = args[:max_instance_request_concurrency] if args.key?(:max_instance_request_concurrency)
1227
1519
  @ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
1228
1520
  @resource_limits = args[:resource_limits] if args.key?(:resource_limits)
1229
1521
  @resource_requests = args[:resource_requests] if args.key?(:resource_requests)
1230
1522
  @shared_deployment = args[:shared_deployment] if args.key?(:shared_deployment)
1523
+ @tls_migration_state = args[:tls_migration_state] if args.key?(:tls_migration_state)
1231
1524
  end
1232
1525
  end
1233
1526
 
@@ -1272,6 +1565,11 @@ module Google
1272
1565
  # @return [Array<String>]
1273
1566
  attr_accessor :all_connector_versions
1274
1567
 
1568
+ # Output only. All marketplace versions.
1569
+ # Corresponds to the JSON property `allMarketplaceVersions`
1570
+ # @return [Array<String>]
1571
+ attr_accessor :all_marketplace_versions
1572
+
1275
1573
  # Output only. Created time.
1276
1574
  # Corresponds to the JSON property `createTime`
1277
1575
  # @return [String]
@@ -1310,6 +1608,11 @@ module Google
1310
1608
  # @return [String]
1311
1609
  attr_accessor :name
1312
1610
 
1611
+ # Output only. Published marketplace versions.
1612
+ # Corresponds to the JSON property `publishedMarketplaceVersions`
1613
+ # @return [Array<String>]
1614
+ attr_accessor :published_marketplace_versions
1615
+
1313
1616
  # Output only. Updated time.
1314
1617
  # Corresponds to the JSON property `updateTime`
1315
1618
  # @return [String]
@@ -1323,6 +1626,7 @@ module Google
1323
1626
  def update!(**args)
1324
1627
  @active_connector_versions = args[:active_connector_versions] if args.key?(:active_connector_versions)
1325
1628
  @all_connector_versions = args[:all_connector_versions] if args.key?(:all_connector_versions)
1629
+ @all_marketplace_versions = args[:all_marketplace_versions] if args.key?(:all_marketplace_versions)
1326
1630
  @create_time = args[:create_time] if args.key?(:create_time)
1327
1631
  @custom_connector_type = args[:custom_connector_type] if args.key?(:custom_connector_type)
1328
1632
  @description = args[:description] if args.key?(:description)
@@ -1330,6 +1634,7 @@ module Google
1330
1634
  @labels = args[:labels] if args.key?(:labels)
1331
1635
  @logo = args[:logo] if args.key?(:logo)
1332
1636
  @name = args[:name] if args.key?(:name)
1637
+ @published_marketplace_versions = args[:published_marketplace_versions] if args.key?(:published_marketplace_versions)
1333
1638
  @update_time = args[:update_time] if args.key?(:update_time)
1334
1639
  end
1335
1640
  end
@@ -1381,6 +1686,18 @@ module Google
1381
1686
  # @return [String]
1382
1687
  attr_accessor :name
1383
1688
 
1689
+ # Partner metadata details. This will be populated when publishing the custom
1690
+ # connector as a partner connector version. On publishing, parntner connector
1691
+ # version will be created using the fields in PartnerMetadata.
1692
+ # Corresponds to the JSON property `partnerMetadata`
1693
+ # @return [Google::Apis::ConnectorsV1::PartnerMetadata]
1694
+ attr_accessor :partner_metadata
1695
+
1696
+ # Publish status of a custom connector.
1697
+ # Corresponds to the JSON property `publishStatus`
1698
+ # @return [Google::Apis::ConnectorsV1::PublishStatus]
1699
+ attr_accessor :publish_status
1700
+
1384
1701
  # Optional. Service account used by runtime plane to access auth config secrets.
1385
1702
  # Corresponds to the JSON property `serviceAccount`
1386
1703
  # @return [String]
@@ -1421,6 +1738,8 @@ module Google
1421
1738
  @enable_backend_destination_config = args[:enable_backend_destination_config] if args.key?(:enable_backend_destination_config)
1422
1739
  @labels = args[:labels] if args.key?(:labels)
1423
1740
  @name = args[:name] if args.key?(:name)
1741
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
1742
+ @publish_status = args[:publish_status] if args.key?(:publish_status)
1424
1743
  @service_account = args[:service_account] if args.key?(:service_account)
1425
1744
  @spec_location = args[:spec_location] if args.key?(:spec_location)
1426
1745
  @spec_server_urls = args[:spec_server_urls] if args.key?(:spec_server_urls)
@@ -1884,6 +2203,12 @@ module Google
1884
2203
  # @return [String]
1885
2204
  attr_accessor :service_attachment
1886
2205
 
2206
+ # Output only. The Private Service Connect Connection Endpoint State. This value
2207
+ # is only available in the Full view.
2208
+ # Corresponds to the JSON property `state`
2209
+ # @return [String]
2210
+ attr_accessor :state
2211
+
1887
2212
  # Output only. Updated time.
1888
2213
  # Corresponds to the JSON property `updateTime`
1889
2214
  # @return [String]
@@ -1902,6 +2227,7 @@ module Google
1902
2227
  @labels = args[:labels] if args.key?(:labels)
1903
2228
  @name = args[:name] if args.key?(:name)
1904
2229
  @service_attachment = args[:service_attachment] if args.key?(:service_attachment)
2230
+ @state = args[:state] if args.key?(:state)
1905
2231
  @update_time = args[:update_time] if args.key?(:update_time)
1906
2232
  end
1907
2233
  end
@@ -1910,12 +2236,12 @@ module Google
1910
2236
  class EnumOption
1911
2237
  include Google::Apis::Core::Hashable
1912
2238
 
1913
- # Display name of the option.
2239
+ # Optional. Display name of the option.
1914
2240
  # Corresponds to the JSON property `displayName`
1915
2241
  # @return [String]
1916
2242
  attr_accessor :display_name
1917
2243
 
1918
- # Id of the option.
2244
+ # Optional. Id of the option.
1919
2245
  # Corresponds to the JSON property `id`
1920
2246
  # @return [String]
1921
2247
  attr_accessor :id
@@ -2015,6 +2341,11 @@ module Google
2015
2341
  # @return [Google::Apis::ConnectorsV1::EndPoint]
2016
2342
  attr_accessor :endpoint
2017
2343
 
2344
+ # GSUtil message includes details of the Destination Cloud Storage bucket.
2345
+ # Corresponds to the JSON property `gsutil`
2346
+ # @return [Google::Apis::ConnectorsV1::GsUtil]
2347
+ attr_accessor :gsutil
2348
+
2018
2349
  # Service account needed for runtime plane to trigger IP workflow.
2019
2350
  # Corresponds to the JSON property `serviceAccount`
2020
2351
  # @return [String]
@@ -2032,6 +2363,7 @@ module Google
2032
2363
  # Update properties of this object
2033
2364
  def update!(**args)
2034
2365
  @endpoint = args[:endpoint] if args.key?(:endpoint)
2366
+ @gsutil = args[:gsutil] if args.key?(:gsutil)
2035
2367
  @service_account = args[:service_account] if args.key?(:service_account)
2036
2368
  @type = args[:type] if args.key?(:type)
2037
2369
  end
@@ -2132,7 +2464,7 @@ module Google
2132
2464
  class EventingConfig
2133
2465
  include Google::Apis::Core::Hashable
2134
2466
 
2135
- # Additional eventing related field values
2467
+ # Optional. Additional eventing related field values
2136
2468
  # Corresponds to the JSON property `additionalVariables`
2137
2469
  # @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
2138
2470
  attr_accessor :additional_variables
@@ -2147,7 +2479,7 @@ module Google
2147
2479
  # @return [Google::Apis::ConnectorsV1::DeadLetterConfig]
2148
2480
  attr_accessor :dead_letter_config
2149
2481
 
2150
- # Enrichment Enabled.
2482
+ # Optional. Enrichment Enabled.
2151
2483
  # Corresponds to the JSON property `enrichmentEnabled`
2152
2484
  # @return [Boolean]
2153
2485
  attr_accessor :enrichment_enabled
@@ -2380,6 +2712,11 @@ module Google
2380
2712
  # @return [Google::Apis::ConnectorsV1::WebhookData]
2381
2713
  attr_accessor :webhook_data
2382
2714
 
2715
+ # WebhookSubscriptions has details of webhook subscriptions.
2716
+ # Corresponds to the JSON property `webhookSubscriptions`
2717
+ # @return [Google::Apis::ConnectorsV1::WebhookSubscriptions]
2718
+ attr_accessor :webhook_subscriptions
2719
+
2383
2720
  def initialize(**args)
2384
2721
  update!(**args)
2385
2722
  end
@@ -2390,6 +2727,7 @@ module Google
2390
2727
  @events_listener_psc_sa = args[:events_listener_psc_sa] if args.key?(:events_listener_psc_sa)
2391
2728
  @status = args[:status] if args.key?(:status)
2392
2729
  @webhook_data = args[:webhook_data] if args.key?(:webhook_data)
2730
+ @webhook_subscriptions = args[:webhook_subscriptions] if args.key?(:webhook_subscriptions)
2393
2731
  end
2394
2732
  end
2395
2733
 
@@ -2518,6 +2856,31 @@ module Google
2518
2856
  end
2519
2857
  end
2520
2858
 
2859
+ # Response message for Connectors.GetAuthSchema.
2860
+ class FetchAuthSchemaResponse
2861
+ include Google::Apis::Core::Hashable
2862
+
2863
+ # List of AuthSchemas.
2864
+ # Corresponds to the JSON property `authSchemas`
2865
+ # @return [Array<Google::Apis::ConnectorsV1::AuthSchema>]
2866
+ attr_accessor :auth_schemas
2867
+
2868
+ # JsonAuthSchema defines the JSON schema of all authentication types.
2869
+ # Corresponds to the JSON property `jsonSchema`
2870
+ # @return [Google::Apis::ConnectorsV1::JsonAuthSchema]
2871
+ attr_accessor :json_schema
2872
+
2873
+ def initialize(**args)
2874
+ update!(**args)
2875
+ end
2876
+
2877
+ # Update properties of this object
2878
+ def update!(**args)
2879
+ @auth_schemas = args[:auth_schemas] if args.key?(:auth_schemas)
2880
+ @json_schema = args[:json_schema] if args.key?(:json_schema)
2881
+ end
2882
+ end
2883
+
2521
2884
  # Metadata of an entity field.
2522
2885
  class Field
2523
2886
  include Google::Apis::Core::Hashable
@@ -2601,7 +2964,7 @@ module Google
2601
2964
  attr_accessor :bool_value
2602
2965
  alias_method :bool_value?, :bool_value
2603
2966
 
2604
- # Comparator to use for comparing the field value.
2967
+ # Optional. Comparator to use for comparing the field value.
2605
2968
  # Corresponds to the JSON property `comparator`
2606
2969
  # @return [String]
2607
2970
  attr_accessor :comparator
@@ -2611,7 +2974,7 @@ module Google
2611
2974
  # @return [Fixnum]
2612
2975
  attr_accessor :int_value
2613
2976
 
2614
- # Key of the field.
2977
+ # Optional. Key of the field.
2615
2978
  # Corresponds to the JSON property `key`
2616
2979
  # @return [String]
2617
2980
  attr_accessor :key
@@ -2635,6 +2998,25 @@ module Google
2635
2998
  end
2636
2999
  end
2637
3000
 
3001
+ # GSUtil message includes details of the Destination Cloud Storage bucket.
3002
+ class GsUtil
3003
+ include Google::Apis::Core::Hashable
3004
+
3005
+ # Required. The URI of the Cloud Storage bucket.
3006
+ # Corresponds to the JSON property `gsutilUri`
3007
+ # @return [String]
3008
+ attr_accessor :gsutil_uri
3009
+
3010
+ def initialize(**args)
3011
+ update!(**args)
3012
+ end
3013
+
3014
+ # Update properties of this object
3015
+ def update!(**args)
3016
+ @gsutil_uri = args[:gsutil_uri] if args.key?(:gsutil_uri)
3017
+ end
3018
+ end
3019
+
2638
3020
  # Autoscaling config for connector deployment system metrics.
2639
3021
  class HpaConfig
2640
3022
  include Google::Apis::Core::Hashable
@@ -2924,6 +3306,31 @@ module Google
2924
3306
  end
2925
3307
  end
2926
3308
 
3309
+ # JsonAuthSchema defines the JSON schema of all authentication types.
3310
+ class JsonAuthSchema
3311
+ include Google::Apis::Core::Hashable
3312
+
3313
+ # JSON schema of the AuthSchemas.
3314
+ # Corresponds to the JSON property `$schema`
3315
+ # @return [String]
3316
+ attr_accessor :_schema
3317
+
3318
+ # List of AuthObjects.
3319
+ # Corresponds to the JSON property `oneOf`
3320
+ # @return [Array<Google::Apis::ConnectorsV1::AuthObject>]
3321
+ attr_accessor :one_of
3322
+
3323
+ def initialize(**args)
3324
+ update!(**args)
3325
+ end
3326
+
3327
+ # Update properties of this object
3328
+ def update!(**args)
3329
+ @_schema = args[:_schema] if args.key?(:_schema)
3330
+ @one_of = args[:one_of] if args.key?(:one_of)
3331
+ end
3332
+ end
3333
+
2927
3334
  # JsonSchema representation of schema metadata
2928
3335
  class JsonSchema
2929
3336
  include Google::Apis::Core::Hashable
@@ -3584,17 +3991,17 @@ module Google
3584
3991
  class LogicalExpression
3585
3992
  include Google::Apis::Core::Hashable
3586
3993
 
3587
- # A list of fields to be compared.
3994
+ # Optional. A list of fields to be compared.
3588
3995
  # Corresponds to the JSON property `fieldComparisons`
3589
3996
  # @return [Array<Google::Apis::ConnectorsV1::FieldComparison>]
3590
3997
  attr_accessor :field_comparisons
3591
3998
 
3592
- # A list of nested conditions to be compared.
3999
+ # Optional. A list of nested conditions to be compared.
3593
4000
  # Corresponds to the JSON property `logicalExpressions`
3594
4001
  # @return [Array<Google::Apis::ConnectorsV1::LogicalExpression>]
3595
4002
  attr_accessor :logical_expressions
3596
4003
 
3597
- # The logical operator to use between the fields and conditions.
4004
+ # Optional. The logical operator to use between the fields and conditions.
3598
4005
  # Corresponds to the JSON property `logicalOperator`
3599
4006
  # @return [String]
3600
4007
  attr_accessor :logical_operator
@@ -3855,6 +4262,43 @@ module Google
3855
4262
  end
3856
4263
  end
3857
4264
 
4265
+ # Marketplace connector details.
4266
+ class MarketplaceConnectorDetails
4267
+ include Google::Apis::Core::Hashable
4268
+
4269
+ # Marketplace product name.
4270
+ # Corresponds to the JSON property `marketplaceProduct`
4271
+ # @return [String]
4272
+ attr_accessor :marketplace_product
4273
+
4274
+ # Marketplace product ID.
4275
+ # Corresponds to the JSON property `marketplaceProductId`
4276
+ # @return [String]
4277
+ attr_accessor :marketplace_product_id
4278
+
4279
+ # Marketplace product URL.
4280
+ # Corresponds to the JSON property `marketplaceProductUri`
4281
+ # @return [String]
4282
+ attr_accessor :marketplace_product_uri
4283
+
4284
+ # The name of the partner.
4285
+ # Corresponds to the JSON property `partner`
4286
+ # @return [String]
4287
+ attr_accessor :partner
4288
+
4289
+ def initialize(**args)
4290
+ update!(**args)
4291
+ end
4292
+
4293
+ # Update properties of this object
4294
+ def update!(**args)
4295
+ @marketplace_product = args[:marketplace_product] if args.key?(:marketplace_product)
4296
+ @marketplace_product_id = args[:marketplace_product_id] if args.key?(:marketplace_product_id)
4297
+ @marketplace_product_uri = args[:marketplace_product_uri] if args.key?(:marketplace_product_uri)
4298
+ @partner = args[:partner] if args.key?(:partner)
4299
+ end
4300
+ end
4301
+
3858
4302
  # MultipleSelectConfig represents the multiple options for a config variable.
3859
4303
  class MultipleSelectConfig
3860
4304
  include Google::Apis::Core::Hashable
@@ -4092,6 +4536,40 @@ module Google
4092
4536
  end
4093
4537
  end
4094
4538
 
4539
+ # Parameters to support Oauth 2.0 Auth Code Grant Authentication using Google
4540
+ # Provided OAuth Client. See https://tools.ietf.org/html/rfc6749#section-1.3.1
4541
+ # for more details.
4542
+ class Oauth2AuthCodeFlowGoogleManaged
4543
+ include Google::Apis::Core::Hashable
4544
+
4545
+ # Optional. Authorization code to be exchanged for access and refresh tokens.
4546
+ # Corresponds to the JSON property `authCode`
4547
+ # @return [String]
4548
+ attr_accessor :auth_code
4549
+
4550
+ # Optional. Redirect URI to be provided during the auth code exchange.
4551
+ # Corresponds to the JSON property `redirectUri`
4552
+ # @return [String]
4553
+ attr_accessor :redirect_uri
4554
+
4555
+ # Required. Scopes the connection will request when the user performs the auth
4556
+ # code flow.
4557
+ # Corresponds to the JSON property `scopes`
4558
+ # @return [Array<String>]
4559
+ attr_accessor :scopes
4560
+
4561
+ def initialize(**args)
4562
+ update!(**args)
4563
+ end
4564
+
4565
+ # Update properties of this object
4566
+ def update!(**args)
4567
+ @auth_code = args[:auth_code] if args.key?(:auth_code)
4568
+ @redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri)
4569
+ @scopes = args[:scopes] if args.key?(:scopes)
4570
+ end
4571
+ end
4572
+
4095
4573
  # Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See
4096
4574
  # https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
4097
4575
  class Oauth2ClientCredentials
@@ -4266,6 +4744,118 @@ module Google
4266
4744
  end
4267
4745
  end
4268
4746
 
4747
+ # Partner metadata details. This will be populated when publishing the custom
4748
+ # connector as a partner connector version. On publishing, parntner connector
4749
+ # version will be created using the fields in PartnerMetadata.
4750
+ class PartnerMetadata
4751
+ include Google::Apis::Core::Hashable
4752
+
4753
+ # Required. Whether the user has accepted the Google Cloud Platform Terms of
4754
+ # Service (https://cloud.google.com/terms/) and the Google Cloud Marketplace
4755
+ # Terms of Service (https://cloud.google.com/terms/marketplace/launcher?hl=en).
4756
+ # Corresponds to the JSON property `acceptGcpTos`
4757
+ # @return [Boolean]
4758
+ attr_accessor :accept_gcp_tos
4759
+ alias_method :accept_gcp_tos?, :accept_gcp_tos
4760
+
4761
+ # Optional. Additional comments for the submission.
4762
+ # Corresponds to the JSON property `additionalComments`
4763
+ # @return [String]
4764
+ attr_accessor :additional_comments
4765
+
4766
+ # Required. Confirmation that connector meets all applicable requirements
4767
+ # mentioned in the Partner Connector Publishing requirements list and Partner
4768
+ # onboardiong requirements list (https://cloud.google.com/marketplace/docs/
4769
+ # partners/get-started#requirements).
4770
+ # Corresponds to the JSON property `confirmPartnerRequirements`
4771
+ # @return [Boolean]
4772
+ attr_accessor :confirm_partner_requirements
4773
+ alias_method :confirm_partner_requirements?, :confirm_partner_requirements
4774
+
4775
+ # Required. Public URL for the demo video.
4776
+ # Corresponds to the JSON property `demoUri`
4777
+ # @return [String]
4778
+ attr_accessor :demo_uri
4779
+
4780
+ # Required. Integration example templates for the custom connector.
4781
+ # Corresponds to the JSON property `integrationTemplates`
4782
+ # @return [String]
4783
+ attr_accessor :integration_templates
4784
+
4785
+ # Optional. Marketplace product name.
4786
+ # Corresponds to the JSON property `marketplaceProduct`
4787
+ # @return [String]
4788
+ attr_accessor :marketplace_product
4789
+
4790
+ # Required. Marketplace product ID.
4791
+ # Corresponds to the JSON property `marketplaceProductId`
4792
+ # @return [String]
4793
+ attr_accessor :marketplace_product_id
4794
+
4795
+ # Optional. Marketplace product project ID.
4796
+ # Corresponds to the JSON property `marketplaceProductProjectId`
4797
+ # @return [String]
4798
+ attr_accessor :marketplace_product_project_id
4799
+
4800
+ # Optional. Marketplace product URL.
4801
+ # Corresponds to the JSON property `marketplaceProductUri`
4802
+ # @return [String]
4803
+ attr_accessor :marketplace_product_uri
4804
+
4805
+ # Required. Partner name.
4806
+ # Corresponds to the JSON property `partner`
4807
+ # @return [String]
4808
+ attr_accessor :partner
4809
+
4810
+ # Required. Partner connector display name.
4811
+ # Corresponds to the JSON property `partnerConnectorDisplayName`
4812
+ # @return [String]
4813
+ attr_accessor :partner_connector_display_name
4814
+
4815
+ # Output only. Publish request time.
4816
+ # Corresponds to the JSON property `publishRequestTime`
4817
+ # @return [String]
4818
+ attr_accessor :publish_request_time
4819
+
4820
+ # Required. Target application for which partner connector is built.
4821
+ # Corresponds to the JSON property `targetApplication`
4822
+ # @return [String]
4823
+ attr_accessor :target_application
4824
+
4825
+ # Required. Target customer segment for the partner connector.
4826
+ # Corresponds to the JSON property `targetCustomerSegment`
4827
+ # @return [String]
4828
+ attr_accessor :target_customer_segment
4829
+
4830
+ # Required. Details about partner connector use cases.
4831
+ # Corresponds to the JSON property `useCases`
4832
+ # @return [String]
4833
+ attr_accessor :use_cases
4834
+
4835
+ def initialize(**args)
4836
+ update!(**args)
4837
+ end
4838
+
4839
+ # Update properties of this object
4840
+ def update!(**args)
4841
+ @accept_gcp_tos = args[:accept_gcp_tos] if args.key?(:accept_gcp_tos)
4842
+ @additional_comments = args[:additional_comments] if args.key?(:additional_comments)
4843
+ @confirm_partner_requirements = args[:confirm_partner_requirements] if args.key?(:confirm_partner_requirements)
4844
+ @demo_uri = args[:demo_uri] if args.key?(:demo_uri)
4845
+ @integration_templates = args[:integration_templates] if args.key?(:integration_templates)
4846
+ @marketplace_product = args[:marketplace_product] if args.key?(:marketplace_product)
4847
+ @marketplace_product_id = args[:marketplace_product_id] if args.key?(:marketplace_product_id)
4848
+ @marketplace_product_project_id = args[:marketplace_product_project_id] if args.key?(:marketplace_product_project_id)
4849
+ @marketplace_product_uri = args[:marketplace_product_uri] if args.key?(:marketplace_product_uri)
4850
+ @partner = args[:partner] if args.key?(:partner)
4851
+ @partner_connector_display_name = args[:partner_connector_display_name] if args.key?(:partner_connector_display_name)
4852
+ @publish_request_time = args[:publish_request_time] if args.key?(:publish_request_time)
4853
+ @target_application = args[:target_application] if args.key?(:target_application)
4854
+ @target_customer_segment = args[:target_customer_segment] if args.key?(:target_customer_segment)
4855
+ @use_cases = args[:use_cases] if args.key?(:use_cases)
4856
+ end
4857
+ end
4858
+
4269
4859
  # PerSliSloEligibility is a mapping from an SLI name to eligibility.
4270
4860
  class PerSliSloEligibility
4271
4861
  include Google::Apis::Core::Hashable
@@ -4497,6 +5087,66 @@ module Google
4497
5087
  end
4498
5088
  end
4499
5089
 
5090
+ # Request message for ConnectorsService.PublishCustomConnectorVersion
5091
+ class PublishCustomConnectorVersionRequest
5092
+ include Google::Apis::Core::Hashable
5093
+
5094
+ # Partner metadata details. This will be populated when publishing the custom
5095
+ # connector as a partner connector version. On publishing, parntner connector
5096
+ # version will be created using the fields in PartnerMetadata.
5097
+ # Corresponds to the JSON property `partnerMetadata`
5098
+ # @return [Google::Apis::ConnectorsV1::PartnerMetadata]
5099
+ attr_accessor :partner_metadata
5100
+
5101
+ def initialize(**args)
5102
+ update!(**args)
5103
+ end
5104
+
5105
+ # Update properties of this object
5106
+ def update!(**args)
5107
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
5108
+ end
5109
+ end
5110
+
5111
+ # Publish status of a custom connector.
5112
+ class PublishStatus
5113
+ include Google::Apis::Core::Hashable
5114
+
5115
+ # Output only. Publish state of the custom connector.
5116
+ # Corresponds to the JSON property `publishState`
5117
+ # @return [String]
5118
+ attr_accessor :publish_state
5119
+
5120
+ # Output only. Publish time.
5121
+ # Corresponds to the JSON property `publishTime`
5122
+ # @return [String]
5123
+ attr_accessor :publish_time
5124
+
5125
+ # Output only. Partner connector name. Will be set on the custom connector.
5126
+ # Format: providers/partner/connectors//versions/
5127
+ # Corresponds to the JSON property `publishedAs`
5128
+ # @return [String]
5129
+ attr_accessor :published_as
5130
+
5131
+ # Output only. Custom connector name. Will be set on the partner connector.
5132
+ # Format: providers/customconnectors/connectors//versions/
5133
+ # Corresponds to the JSON property `publishedSource`
5134
+ # @return [String]
5135
+ attr_accessor :published_source
5136
+
5137
+ def initialize(**args)
5138
+ update!(**args)
5139
+ end
5140
+
5141
+ # Update properties of this object
5142
+ def update!(**args)
5143
+ @publish_state = args[:publish_state] if args.key?(:publish_state)
5144
+ @publish_time = args[:publish_time] if args.key?(:publish_time)
5145
+ @published_as = args[:published_as] if args.key?(:published_as)
5146
+ @published_source = args[:published_source] if args.key?(:published_source)
5147
+ end
5148
+ end
5149
+
4500
5150
  # Request message for ConnectorsService.RefreshConnectionSchemaMetadata.
4501
5151
  class RefreshConnectionSchemaMetadataRequest
4502
5152
  include Google::Apis::Core::Hashable
@@ -4566,14 +5216,14 @@ module Google
4566
5216
  class Resource
4567
5217
  include Google::Apis::Core::Hashable
4568
5218
 
4569
- # Template to uniquely represent a Google Cloud resource in a format IAM expects
4570
- # This is a template that can have references to other values provided in the
4571
- # config variable template.
5219
+ # Optional. Template to uniquely represent a Google Cloud resource in a format
5220
+ # IAM expects This is a template that can have references to other values
5221
+ # provided in the config variable template.
4572
5222
  # Corresponds to the JSON property `pathTemplate`
4573
5223
  # @return [String]
4574
5224
  attr_accessor :path_template
4575
5225
 
4576
- # Different types of resource supported.
5226
+ # Optional. Different types of resource supported.
4577
5227
  # Corresponds to the JSON property `type`
4578
5228
  # @return [String]
4579
5229
  attr_accessor :type
@@ -4711,12 +5361,12 @@ module Google
4711
5361
  class RoleGrant
4712
5362
  include Google::Apis::Core::Hashable
4713
5363
 
4714
- # Template that UI can use to provide helper text to customers.
5364
+ # Optional. Template that UI can use to provide helper text to customers.
4715
5365
  # Corresponds to the JSON property `helperTextTemplate`
4716
5366
  # @return [String]
4717
5367
  attr_accessor :helper_text_template
4718
5368
 
4719
- # Prinicipal/Identity for whom the role need to assigned.
5369
+ # Optional. Prinicipal/Identity for whom the role need to assigned.
4720
5370
  # Corresponds to the JSON property `principal`
4721
5371
  # @return [String]
4722
5372
  attr_accessor :principal
@@ -4726,7 +5376,7 @@ module Google
4726
5376
  # @return [Google::Apis::ConnectorsV1::Resource]
4727
5377
  attr_accessor :resource
4728
5378
 
4729
- # List of roles that need to be granted.
5379
+ # Optional. List of roles that need to be granted.
4730
5380
  # Corresponds to the JSON property `roles`
4731
5381
  # @return [Array<String>]
4732
5382
  attr_accessor :roles
@@ -4773,6 +5423,11 @@ module Google
4773
5423
  # @return [Array<Google::Apis::ConnectorsV1::InputParameter>]
4774
5424
  attr_accessor :input_parameters
4775
5425
 
5426
+ # Output only. Input schema as string.
5427
+ # Corresponds to the JSON property `inputSchemaAsString`
5428
+ # @return [String]
5429
+ attr_accessor :input_schema_as_string
5430
+
4776
5431
  # JsonSchema representation of schema metadata
4777
5432
  # Corresponds to the JSON property `resultJsonSchema`
4778
5433
  # @return [Google::Apis::ConnectorsV1::JsonSchema]
@@ -4783,6 +5438,11 @@ module Google
4783
5438
  # @return [Array<Google::Apis::ConnectorsV1::ResultMetadata>]
4784
5439
  attr_accessor :result_metadata
4785
5440
 
5441
+ # Output only. Result schema as string.
5442
+ # Corresponds to the JSON property `resultSchemaAsString`
5443
+ # @return [String]
5444
+ attr_accessor :result_schema_as_string
5445
+
4786
5446
  def initialize(**args)
4787
5447
  update!(**args)
4788
5448
  end
@@ -4794,8 +5454,10 @@ module Google
4794
5454
  @display_name = args[:display_name] if args.key?(:display_name)
4795
5455
  @input_json_schema = args[:input_json_schema] if args.key?(:input_json_schema)
4796
5456
  @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
5457
+ @input_schema_as_string = args[:input_schema_as_string] if args.key?(:input_schema_as_string)
4797
5458
  @result_json_schema = args[:result_json_schema] if args.key?(:result_json_schema)
4798
5459
  @result_metadata = args[:result_metadata] if args.key?(:result_metadata)
5460
+ @result_schema_as_string = args[:result_schema_as_string] if args.key?(:result_schema_as_string)
4799
5461
  end
4800
5462
  end
4801
5463
 
@@ -5284,12 +5946,12 @@ module Google
5284
5946
  class SslConfig
5285
5947
  include Google::Apis::Core::Hashable
5286
5948
 
5287
- # Additional SSL related field values
5949
+ # Optional. Additional SSL related field values
5288
5950
  # Corresponds to the JSON property `additionalVariables`
5289
5951
  # @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
5290
5952
  attr_accessor :additional_variables
5291
5953
 
5292
- # Type of Client Cert (PEM/JKS/.. etc.)
5954
+ # Optional. Type of Client Cert (PEM/JKS/.. etc.)
5293
5955
  # Corresponds to the JSON property `clientCertType`
5294
5956
  # @return [String]
5295
5957
  attr_accessor :client_cert_type
@@ -5314,22 +5976,22 @@ module Google
5314
5976
  # @return [Google::Apis::ConnectorsV1::Secret]
5315
5977
  attr_accessor :private_server_certificate
5316
5978
 
5317
- # Type of Server Cert (PEM/JKS/.. etc.)
5979
+ # Optional. Type of Server Cert (PEM/JKS/.. etc.)
5318
5980
  # Corresponds to the JSON property `serverCertType`
5319
5981
  # @return [String]
5320
5982
  attr_accessor :server_cert_type
5321
5983
 
5322
- # Trust Model of the SSL connection
5984
+ # Optional. Trust Model of the SSL connection
5323
5985
  # Corresponds to the JSON property `trustModel`
5324
5986
  # @return [String]
5325
5987
  attr_accessor :trust_model
5326
5988
 
5327
- # Controls the ssl type for the given connector version.
5989
+ # Optional. Controls the ssl type for the given connector version.
5328
5990
  # Corresponds to the JSON property `type`
5329
5991
  # @return [String]
5330
5992
  attr_accessor :type
5331
5993
 
5332
- # Bool for enabling SSL
5994
+ # Optional. Bool for enabling SSL
5333
5995
  # Corresponds to the JSON property `useSsl`
5334
5996
  # @return [Boolean]
5335
5997
  attr_accessor :use_ssl
@@ -5398,6 +6060,44 @@ module Google
5398
6060
  end
5399
6061
  end
5400
6062
 
6063
+ # Standard action
6064
+ class StandardAction
6065
+ include Google::Apis::Core::Hashable
6066
+
6067
+ # Name of the standard action.
6068
+ # Corresponds to the JSON property `name`
6069
+ # @return [String]
6070
+ attr_accessor :name
6071
+
6072
+ def initialize(**args)
6073
+ update!(**args)
6074
+ end
6075
+
6076
+ # Update properties of this object
6077
+ def update!(**args)
6078
+ @name = args[:name] if args.key?(:name)
6079
+ end
6080
+ end
6081
+
6082
+ # Standard entity
6083
+ class StandardEntity
6084
+ include Google::Apis::Core::Hashable
6085
+
6086
+ # Name of the standard entity.
6087
+ # Corresponds to the JSON property `name`
6088
+ # @return [String]
6089
+ attr_accessor :name
6090
+
6091
+ def initialize(**args)
6092
+ update!(**args)
6093
+ end
6094
+
6095
+ # Update properties of this object
6096
+ def update!(**args)
6097
+ @name = args[:name] if args.key?(:name)
6098
+ end
6099
+ end
6100
+
5401
6101
  # The `Status` type defines a logical error model that is suitable for different
5402
6102
  # programming environments, including REST APIs and RPC APIs. It is used by [
5403
6103
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -5517,24 +6217,28 @@ module Google
5517
6217
  class TimeOfDay
5518
6218
  include Google::Apis::Core::Hashable
5519
6219
 
5520
- # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
5521
- # allow the value "24:00:00" for scenarios like business closing time.
6220
+ # Hours of a day in 24 hour format. Must be greater than or equal to 0 and
6221
+ # typically must be less than or equal to 23. An API may choose to allow the
6222
+ # value "24:00:00" for scenarios like business closing time.
5522
6223
  # Corresponds to the JSON property `hours`
5523
6224
  # @return [Fixnum]
5524
6225
  attr_accessor :hours
5525
6226
 
5526
- # Minutes of hour of day. Must be from 0 to 59.
6227
+ # Minutes of an hour. Must be greater than or equal to 0 and less than or equal
6228
+ # to 59.
5527
6229
  # Corresponds to the JSON property `minutes`
5528
6230
  # @return [Fixnum]
5529
6231
  attr_accessor :minutes
5530
6232
 
5531
- # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
6233
+ # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
6234
+ # less than or equal to 999,999,999.
5532
6235
  # Corresponds to the JSON property `nanos`
5533
6236
  # @return [Fixnum]
5534
6237
  attr_accessor :nanos
5535
6238
 
5536
- # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
5537
- # allow the value 60 if it allows leap-seconds.
6239
+ # Seconds of a minute. Must be greater than or equal to 0 and typically must be
6240
+ # less than or equal to 59. An API may allow the value 60 if it allows leap-
6241
+ # seconds.
5538
6242
  # Corresponds to the JSON property `seconds`
5539
6243
  # @return [Fixnum]
5540
6244
  attr_accessor :seconds
@@ -5712,6 +6416,25 @@ module Google
5712
6416
  end
5713
6417
  end
5714
6418
 
6419
+ # WebhookSubscriptions has details of webhook subscriptions.
6420
+ class WebhookSubscriptions
6421
+ include Google::Apis::Core::Hashable
6422
+
6423
+ # Output only. Webhook data.
6424
+ # Corresponds to the JSON property `webhookData`
6425
+ # @return [Array<Google::Apis::ConnectorsV1::WebhookData>]
6426
+ attr_accessor :webhook_data
6427
+
6428
+ def initialize(**args)
6429
+ update!(**args)
6430
+ end
6431
+
6432
+ # Update properties of this object
6433
+ def update!(**args)
6434
+ @webhook_data = args[:webhook_data] if args.key?(:webhook_data)
6435
+ end
6436
+ end
6437
+
5715
6438
  # Time window specified for weekly operations.
5716
6439
  class WeeklyCycle
5717
6440
  include Google::Apis::Core::Hashable
@@ -5730,6 +6453,19 @@ module Google
5730
6453
  @schedule = args[:schedule] if args.key?(:schedule)
5731
6454
  end
5732
6455
  end
6456
+
6457
+ # Request message for ConnectorsService.WithdrawCustomConnectorVersion
6458
+ class WithdrawCustomConnectorVersionRequest
6459
+ include Google::Apis::Core::Hashable
6460
+
6461
+ def initialize(**args)
6462
+ update!(**args)
6463
+ end
6464
+
6465
+ # Update properties of this object
6466
+ def update!(**args)
6467
+ end
6468
+ end
5733
6469
  end
5734
6470
  end
5735
6471
  end