google-apis-connectors_v1 0.53.0 → 0.55.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed5a8f214209828f547d9d605582d7a16a5bc2cc62cab378a0ea295443d55247
|
4
|
+
data.tar.gz: 25bcde34044fd5ba67e8b054f187d3780d9040241c65a127252934cb28324e09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a42bddd57ac6493245f57c75ed95e9e8294caeedaba6c8c5cdbbc0723d3d8f7a26928e8abaf57f734d941bfb74d03224304db1f9d7417e1ee21d77e9507eede
|
7
|
+
data.tar.gz: 16916134408420f3be4aeebf56e9b50ecb19a77e1a3fd2671635d0485b1a5758d77f90d3edbf3467d144c6a7c7659e29923f20f605ae9b39edec7c9a355a6ba2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
2
2
|
|
3
|
+
### v0.55.0 (2024-03-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240319
|
6
|
+
|
7
|
+
### v0.54.0 (2024-03-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240305
|
10
|
+
|
3
11
|
### v0.53.0 (2024-03-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240226
|
@@ -953,6 +953,12 @@ module Google
|
|
953
953
|
# @return [Array<Google::Apis::ConnectorsV1::AuthConfigTemplate>]
|
954
954
|
attr_accessor :auth_config_templates
|
955
955
|
|
956
|
+
# Output only. Flag to mark the dynamic auth override.
|
957
|
+
# Corresponds to the JSON property `authOverrideEnabled`
|
958
|
+
# @return [Boolean]
|
959
|
+
attr_accessor :auth_override_enabled
|
960
|
+
alias_method :auth_override_enabled?, :auth_override_enabled
|
961
|
+
|
956
962
|
# Output only. List of config variables needed to create a connection.
|
957
963
|
# Corresponds to the JSON property `configVariableTemplates`
|
958
964
|
# @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
|
@@ -1030,6 +1036,11 @@ module Google
|
|
1030
1036
|
# @return [Array<Google::Apis::ConnectorsV1::RoleGrant>]
|
1031
1037
|
attr_accessor :role_grants
|
1032
1038
|
|
1039
|
+
# Config for connection schema refresh
|
1040
|
+
# Corresponds to the JSON property `schemaRefreshConfig`
|
1041
|
+
# @return [Google::Apis::ConnectorsV1::SchemaRefreshConfig]
|
1042
|
+
attr_accessor :schema_refresh_config
|
1043
|
+
|
1033
1044
|
# Ssl config details of a connector version
|
1034
1045
|
# Corresponds to the JSON property `sslConfigTemplate`
|
1035
1046
|
# @return [Google::Apis::ConnectorsV1::SslConfigTemplate]
|
@@ -1057,6 +1068,7 @@ module Google
|
|
1057
1068
|
# Update properties of this object
|
1058
1069
|
def update!(**args)
|
1059
1070
|
@auth_config_templates = args[:auth_config_templates] if args.key?(:auth_config_templates)
|
1071
|
+
@auth_override_enabled = args[:auth_override_enabled] if args.key?(:auth_override_enabled)
|
1060
1072
|
@config_variable_templates = args[:config_variable_templates] if args.key?(:config_variable_templates)
|
1061
1073
|
@connector_infra_config = args[:connector_infra_config] if args.key?(:connector_infra_config)
|
1062
1074
|
@create_time = args[:create_time] if args.key?(:create_time)
|
@@ -1070,6 +1082,7 @@ module Google
|
|
1070
1082
|
@release_version = args[:release_version] if args.key?(:release_version)
|
1071
1083
|
@role_grant = args[:role_grant] if args.key?(:role_grant)
|
1072
1084
|
@role_grants = args[:role_grants] if args.key?(:role_grants)
|
1085
|
+
@schema_refresh_config = args[:schema_refresh_config] if args.key?(:schema_refresh_config)
|
1073
1086
|
@ssl_config_template = args[:ssl_config_template] if args.key?(:ssl_config_template)
|
1074
1087
|
@supported_runtime_features = args[:supported_runtime_features] if args.key?(:supported_runtime_features)
|
1075
1088
|
@unsupported_connection_types = args[:unsupported_connection_types] if args.key?(:unsupported_connection_types)
|
@@ -1290,6 +1303,11 @@ module Google
|
|
1290
1303
|
# @return [String]
|
1291
1304
|
attr_accessor :spec_location
|
1292
1305
|
|
1306
|
+
# Output only. Server URLs parsed from the spec.
|
1307
|
+
# Corresponds to the JSON property `specServerUrls`
|
1308
|
+
# @return [Array<String>]
|
1309
|
+
attr_accessor :spec_server_urls
|
1310
|
+
|
1293
1311
|
# Output only. State of the custom connector version.
|
1294
1312
|
# Corresponds to the JSON property `state`
|
1295
1313
|
# @return [String]
|
@@ -1315,6 +1333,7 @@ module Google
|
|
1315
1333
|
@name = args[:name] if args.key?(:name)
|
1316
1334
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1317
1335
|
@spec_location = args[:spec_location] if args.key?(:spec_location)
|
1336
|
+
@spec_server_urls = args[:spec_server_urls] if args.key?(:spec_server_urls)
|
1318
1337
|
@state = args[:state] if args.key?(:state)
|
1319
1338
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1320
1339
|
end
|
@@ -1522,6 +1541,11 @@ module Google
|
|
1522
1541
|
class DestinationConfigTemplate
|
1523
1542
|
include Google::Apis::Core::Hashable
|
1524
1543
|
|
1544
|
+
# Autocomplete suggestions for destination URL field.
|
1545
|
+
# Corresponds to the JSON property `autocompleteSuggestions`
|
1546
|
+
# @return [Array<String>]
|
1547
|
+
attr_accessor :autocomplete_suggestions
|
1548
|
+
|
1525
1549
|
# The default port.
|
1526
1550
|
# Corresponds to the JSON property `defaultPort`
|
1527
1551
|
# @return [Fixnum]
|
@@ -1574,6 +1598,7 @@ module Google
|
|
1574
1598
|
|
1575
1599
|
# Update properties of this object
|
1576
1600
|
def update!(**args)
|
1601
|
+
@autocomplete_suggestions = args[:autocomplete_suggestions] if args.key?(:autocomplete_suggestions)
|
1577
1602
|
@default_port = args[:default_port] if args.key?(:default_port)
|
1578
1603
|
@description = args[:description] if args.key?(:description)
|
1579
1604
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -2238,6 +2263,11 @@ module Google
|
|
2238
2263
|
# @return [Google::Apis::ConnectorsV1::EventingStatus]
|
2239
2264
|
attr_accessor :status
|
2240
2265
|
|
2266
|
+
# WebhookData has details of webhook configuration.
|
2267
|
+
# Corresponds to the JSON property `webhookData`
|
2268
|
+
# @return [Google::Apis::ConnectorsV1::WebhookData]
|
2269
|
+
attr_accessor :webhook_data
|
2270
|
+
|
2241
2271
|
def initialize(**args)
|
2242
2272
|
update!(**args)
|
2243
2273
|
end
|
@@ -2247,6 +2277,7 @@ module Google
|
|
2247
2277
|
@events_listener_endpoint = args[:events_listener_endpoint] if args.key?(:events_listener_endpoint)
|
2248
2278
|
@events_listener_psc_sa = args[:events_listener_psc_sa] if args.key?(:events_listener_psc_sa)
|
2249
2279
|
@status = args[:status] if args.key?(:status)
|
2280
|
+
@webhook_data = args[:webhook_data] if args.key?(:webhook_data)
|
2250
2281
|
end
|
2251
2282
|
end
|
2252
2283
|
|
@@ -3468,7 +3499,7 @@ module Google
|
|
3468
3499
|
end
|
3469
3500
|
end
|
3470
3501
|
|
3471
|
-
#
|
3502
|
+
# Defines policies to service maintenance events.
|
3472
3503
|
class MaintenancePolicy
|
3473
3504
|
include Google::Apis::Core::Hashable
|
3474
3505
|
|
@@ -4715,6 +4746,33 @@ module Google
|
|
4715
4746
|
end
|
4716
4747
|
end
|
4717
4748
|
|
4749
|
+
# Config for connection schema refresh
|
4750
|
+
class SchemaRefreshConfig
|
4751
|
+
include Google::Apis::Core::Hashable
|
4752
|
+
|
4753
|
+
# Whether to use displayName for actions in UI.
|
4754
|
+
# Corresponds to the JSON property `useActionDisplayNames`
|
4755
|
+
# @return [Boolean]
|
4756
|
+
attr_accessor :use_action_display_names
|
4757
|
+
alias_method :use_action_display_names?, :use_action_display_names
|
4758
|
+
|
4759
|
+
# Whether to use synchronous schema refresh.
|
4760
|
+
# Corresponds to the JSON property `useSynchronousSchemaRefresh`
|
4761
|
+
# @return [Boolean]
|
4762
|
+
attr_accessor :use_synchronous_schema_refresh
|
4763
|
+
alias_method :use_synchronous_schema_refresh?, :use_synchronous_schema_refresh
|
4764
|
+
|
4765
|
+
def initialize(**args)
|
4766
|
+
update!(**args)
|
4767
|
+
end
|
4768
|
+
|
4769
|
+
# Update properties of this object
|
4770
|
+
def update!(**args)
|
4771
|
+
@use_action_display_names = args[:use_action_display_names] if args.key?(:use_action_display_names)
|
4772
|
+
@use_synchronous_schema_refresh = args[:use_synchronous_schema_refresh] if args.key?(:use_synchronous_schema_refresh)
|
4773
|
+
end
|
4774
|
+
end
|
4775
|
+
|
4718
4776
|
# Secret provides a reference to entries in Secret Manager.
|
4719
4777
|
class Secret
|
4720
4778
|
include Google::Apis::Core::Hashable
|
@@ -5286,6 +5344,108 @@ module Google
|
|
5286
5344
|
end
|
5287
5345
|
end
|
5288
5346
|
|
5347
|
+
# Request message for ConnectorsService.ValidateCustomConnectorSpec
|
5348
|
+
class ValidateCustomConnectorSpecRequest
|
5349
|
+
include Google::Apis::Core::Hashable
|
5350
|
+
|
5351
|
+
# Required. Service account to access the spec from Google Cloud Storage.
|
5352
|
+
# Corresponds to the JSON property `serviceAccount`
|
5353
|
+
# @return [String]
|
5354
|
+
attr_accessor :service_account
|
5355
|
+
|
5356
|
+
# Required. Location of the custom connector spec. The location can be either a
|
5357
|
+
# public url like `https://public-url.com/spec` Or a Google Cloud Storage
|
5358
|
+
# location like `gs:///`
|
5359
|
+
# Corresponds to the JSON property `specLocation`
|
5360
|
+
# @return [String]
|
5361
|
+
attr_accessor :spec_location
|
5362
|
+
|
5363
|
+
# Required. Spec type of the custom connector spec.
|
5364
|
+
# Corresponds to the JSON property `specType`
|
5365
|
+
# @return [String]
|
5366
|
+
attr_accessor :spec_type
|
5367
|
+
|
5368
|
+
def initialize(**args)
|
5369
|
+
update!(**args)
|
5370
|
+
end
|
5371
|
+
|
5372
|
+
# Update properties of this object
|
5373
|
+
def update!(**args)
|
5374
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
5375
|
+
@spec_location = args[:spec_location] if args.key?(:spec_location)
|
5376
|
+
@spec_type = args[:spec_type] if args.key?(:spec_type)
|
5377
|
+
end
|
5378
|
+
end
|
5379
|
+
|
5380
|
+
# Response message for ConnectorsService.ValidateCustomConnectorSpec
|
5381
|
+
class ValidateCustomConnectorSpecResponse
|
5382
|
+
include Google::Apis::Core::Hashable
|
5383
|
+
|
5384
|
+
# Error message. The spec is valid if the error message is empty.
|
5385
|
+
# Corresponds to the JSON property `errorMessage`
|
5386
|
+
# @return [String]
|
5387
|
+
attr_accessor :error_message
|
5388
|
+
|
5389
|
+
def initialize(**args)
|
5390
|
+
update!(**args)
|
5391
|
+
end
|
5392
|
+
|
5393
|
+
# Update properties of this object
|
5394
|
+
def update!(**args)
|
5395
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
5396
|
+
end
|
5397
|
+
end
|
5398
|
+
|
5399
|
+
# WebhookData has details of webhook configuration.
|
5400
|
+
class WebhookData
|
5401
|
+
include Google::Apis::Core::Hashable
|
5402
|
+
|
5403
|
+
# Output only. Additional webhook related field values.
|
5404
|
+
# Corresponds to the JSON property `additionalVariables`
|
5405
|
+
# @return [Array<Google::Apis::ConnectorsV1::ConfigVariable>]
|
5406
|
+
attr_accessor :additional_variables
|
5407
|
+
|
5408
|
+
# Output only. Timestamp when the webhook was created.
|
5409
|
+
# Corresponds to the JSON property `createTime`
|
5410
|
+
# @return [String]
|
5411
|
+
attr_accessor :create_time
|
5412
|
+
|
5413
|
+
# Output only. ID to uniquely identify webhook.
|
5414
|
+
# Corresponds to the JSON property `id`
|
5415
|
+
# @return [String]
|
5416
|
+
attr_accessor :id
|
5417
|
+
|
5418
|
+
# Output only. Name of the Webhook
|
5419
|
+
# Corresponds to the JSON property `name`
|
5420
|
+
# @return [String]
|
5421
|
+
attr_accessor :name
|
5422
|
+
|
5423
|
+
# Output only. Next webhook refresh time. Will be null if refresh is not
|
5424
|
+
# supported.
|
5425
|
+
# Corresponds to the JSON property `nextRefreshTime`
|
5426
|
+
# @return [String]
|
5427
|
+
attr_accessor :next_refresh_time
|
5428
|
+
|
5429
|
+
# Output only. Timestamp when the webhook was last updated.
|
5430
|
+
# Corresponds to the JSON property `updateTime`
|
5431
|
+
# @return [String]
|
5432
|
+
attr_accessor :update_time
|
5433
|
+
|
5434
|
+
def initialize(**args)
|
5435
|
+
update!(**args)
|
5436
|
+
end
|
5437
|
+
|
5438
|
+
# Update properties of this object
|
5439
|
+
def update!(**args)
|
5440
|
+
@additional_variables = args[:additional_variables] if args.key?(:additional_variables)
|
5441
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
5442
|
+
@id = args[:id] if args.key?(:id)
|
5443
|
+
@name = args[:name] if args.key?(:name)
|
5444
|
+
@next_refresh_time = args[:next_refresh_time] if args.key?(:next_refresh_time)
|
5445
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
5446
|
+
end
|
5447
|
+
end
|
5448
|
+
|
5289
5449
|
# Time window specified for weekly operations.
|
5290
5450
|
class WeeklyCycle
|
5291
5451
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConnectorsV1
|
18
18
|
# Version of the google-apis-connectors_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.55.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240319"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -658,6 +658,12 @@ module Google
|
|
658
658
|
include Google::Apis::Core::JsonObjectSupport
|
659
659
|
end
|
660
660
|
|
661
|
+
class SchemaRefreshConfig
|
662
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
663
|
+
|
664
|
+
include Google::Apis::Core::JsonObjectSupport
|
665
|
+
end
|
666
|
+
|
661
667
|
class Secret
|
662
668
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
663
669
|
|
@@ -754,6 +760,24 @@ module Google
|
|
754
760
|
include Google::Apis::Core::JsonObjectSupport
|
755
761
|
end
|
756
762
|
|
763
|
+
class ValidateCustomConnectorSpecRequest
|
764
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
765
|
+
|
766
|
+
include Google::Apis::Core::JsonObjectSupport
|
767
|
+
end
|
768
|
+
|
769
|
+
class ValidateCustomConnectorSpecResponse
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
|
+
|
772
|
+
include Google::Apis::Core::JsonObjectSupport
|
773
|
+
end
|
774
|
+
|
775
|
+
class WebhookData
|
776
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
777
|
+
|
778
|
+
include Google::Apis::Core::JsonObjectSupport
|
779
|
+
end
|
780
|
+
|
757
781
|
class WeeklyCycle
|
758
782
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
783
|
|
@@ -979,6 +1003,7 @@ module Google
|
|
979
1003
|
class Representation < Google::Apis::Core::JsonRepresentation
|
980
1004
|
collection :auth_config_templates, as: 'authConfigTemplates', class: Google::Apis::ConnectorsV1::AuthConfigTemplate, decorator: Google::Apis::ConnectorsV1::AuthConfigTemplate::Representation
|
981
1005
|
|
1006
|
+
property :auth_override_enabled, as: 'authOverrideEnabled'
|
982
1007
|
collection :config_variable_templates, as: 'configVariableTemplates', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
|
983
1008
|
|
984
1009
|
property :connector_infra_config, as: 'connectorInfraConfig', class: Google::Apis::ConnectorsV1::ConnectorInfraConfig, decorator: Google::Apis::ConnectorsV1::ConnectorInfraConfig::Representation
|
@@ -999,6 +1024,8 @@ module Google
|
|
999
1024
|
|
1000
1025
|
collection :role_grants, as: 'roleGrants', class: Google::Apis::ConnectorsV1::RoleGrant, decorator: Google::Apis::ConnectorsV1::RoleGrant::Representation
|
1001
1026
|
|
1027
|
+
property :schema_refresh_config, as: 'schemaRefreshConfig', class: Google::Apis::ConnectorsV1::SchemaRefreshConfig, decorator: Google::Apis::ConnectorsV1::SchemaRefreshConfig::Representation
|
1028
|
+
|
1002
1029
|
property :ssl_config_template, as: 'sslConfigTemplate', class: Google::Apis::ConnectorsV1::SslConfigTemplate, decorator: Google::Apis::ConnectorsV1::SslConfigTemplate::Representation
|
1003
1030
|
|
1004
1031
|
property :supported_runtime_features, as: 'supportedRuntimeFeatures', class: Google::Apis::ConnectorsV1::SupportedRuntimeFeatures, decorator: Google::Apis::ConnectorsV1::SupportedRuntimeFeatures::Representation
|
@@ -1062,6 +1089,7 @@ module Google
|
|
1062
1089
|
property :name, as: 'name'
|
1063
1090
|
property :service_account, as: 'serviceAccount'
|
1064
1091
|
property :spec_location, as: 'specLocation'
|
1092
|
+
collection :spec_server_urls, as: 'specServerUrls'
|
1065
1093
|
property :state, as: 'state'
|
1066
1094
|
property :update_time, as: 'updateTime'
|
1067
1095
|
end
|
@@ -1126,6 +1154,7 @@ module Google
|
|
1126
1154
|
class DestinationConfigTemplate
|
1127
1155
|
# @private
|
1128
1156
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1157
|
+
collection :autocomplete_suggestions, as: 'autocompleteSuggestions'
|
1129
1158
|
property :default_port, as: 'defaultPort'
|
1130
1159
|
property :description, as: 'description'
|
1131
1160
|
property :display_name, as: 'displayName'
|
@@ -1318,6 +1347,8 @@ module Google
|
|
1318
1347
|
property :events_listener_psc_sa, as: 'eventsListenerPscSa'
|
1319
1348
|
property :status, as: 'status', class: Google::Apis::ConnectorsV1::EventingStatus, decorator: Google::Apis::ConnectorsV1::EventingStatus::Representation
|
1320
1349
|
|
1350
|
+
property :webhook_data, as: 'webhookData', class: Google::Apis::ConnectorsV1::WebhookData, decorator: Google::Apis::ConnectorsV1::WebhookData::Representation
|
1351
|
+
|
1321
1352
|
end
|
1322
1353
|
end
|
1323
1354
|
|
@@ -1994,6 +2025,14 @@ module Google
|
|
1994
2025
|
end
|
1995
2026
|
end
|
1996
2027
|
|
2028
|
+
class SchemaRefreshConfig
|
2029
|
+
# @private
|
2030
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2031
|
+
property :use_action_display_names, as: 'useActionDisplayNames'
|
2032
|
+
property :use_synchronous_schema_refresh, as: 'useSynchronousSchemaRefresh'
|
2033
|
+
end
|
2034
|
+
end
|
2035
|
+
|
1997
2036
|
class Secret
|
1998
2037
|
# @private
|
1999
2038
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2154,6 +2193,35 @@ module Google
|
|
2154
2193
|
end
|
2155
2194
|
end
|
2156
2195
|
|
2196
|
+
class ValidateCustomConnectorSpecRequest
|
2197
|
+
# @private
|
2198
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2199
|
+
property :service_account, as: 'serviceAccount'
|
2200
|
+
property :spec_location, as: 'specLocation'
|
2201
|
+
property :spec_type, as: 'specType'
|
2202
|
+
end
|
2203
|
+
end
|
2204
|
+
|
2205
|
+
class ValidateCustomConnectorSpecResponse
|
2206
|
+
# @private
|
2207
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2208
|
+
property :error_message, as: 'errorMessage'
|
2209
|
+
end
|
2210
|
+
end
|
2211
|
+
|
2212
|
+
class WebhookData
|
2213
|
+
# @private
|
2214
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2215
|
+
collection :additional_variables, as: 'additionalVariables', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
|
2216
|
+
|
2217
|
+
property :create_time, as: 'createTime'
|
2218
|
+
property :id, as: 'id'
|
2219
|
+
property :name, as: 'name'
|
2220
|
+
property :next_refresh_time, as: 'nextRefreshTime'
|
2221
|
+
property :update_time, as: 'updateTime'
|
2222
|
+
end
|
2223
|
+
end
|
2224
|
+
|
2157
2225
|
class WeeklyCycle
|
2158
2226
|
# @private
|
2159
2227
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1123,6 +1123,71 @@ module Google
|
|
1123
1123
|
execute_or_queue_command(command, &block)
|
1124
1124
|
end
|
1125
1125
|
|
1126
|
+
# Validates a Custom Connector Spec.
|
1127
|
+
# @param [String] parent
|
1128
|
+
# Required. Location at which the custom connector is being created.
|
1129
|
+
# @param [Google::Apis::ConnectorsV1::ValidateCustomConnectorSpecRequest] validate_custom_connector_spec_request_object
|
1130
|
+
# @param [String] fields
|
1131
|
+
# Selector specifying which fields to include in a partial response.
|
1132
|
+
# @param [String] quota_user
|
1133
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1134
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1135
|
+
# @param [Google::Apis::RequestOptions] options
|
1136
|
+
# Request-specific options
|
1137
|
+
#
|
1138
|
+
# @yield [result, err] Result & error if block supplied
|
1139
|
+
# @yieldparam result [Google::Apis::ConnectorsV1::ValidateCustomConnectorSpecResponse] parsed result object
|
1140
|
+
# @yieldparam err [StandardError] error object if request failed
|
1141
|
+
#
|
1142
|
+
# @return [Google::Apis::ConnectorsV1::ValidateCustomConnectorSpecResponse]
|
1143
|
+
#
|
1144
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1145
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1146
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1147
|
+
def validate_custom_connector_spec(parent, validate_custom_connector_spec_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1148
|
+
command = make_simple_command(:post, 'v1/{+parent}/customConnectors:validateCustomConnectorSpec', options)
|
1149
|
+
command.request_representation = Google::Apis::ConnectorsV1::ValidateCustomConnectorSpecRequest::Representation
|
1150
|
+
command.request_object = validate_custom_connector_spec_request_object
|
1151
|
+
command.response_representation = Google::Apis::ConnectorsV1::ValidateCustomConnectorSpecResponse::Representation
|
1152
|
+
command.response_class = Google::Apis::ConnectorsV1::ValidateCustomConnectorSpecResponse
|
1153
|
+
command.params['parent'] = parent unless parent.nil?
|
1154
|
+
command.query['fields'] = fields unless fields.nil?
|
1155
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1156
|
+
execute_or_queue_command(command, &block)
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
# Deletes a single CustomConnectorVersion.
|
1160
|
+
# @param [String] name
|
1161
|
+
# Required. Resource name of the form: `projects/`project`/locations/`location`/
|
1162
|
+
# customConnectors/`custom_connector`/customConnectorVersions/`
|
1163
|
+
# custom_connector_version``
|
1164
|
+
# @param [String] fields
|
1165
|
+
# Selector specifying which fields to include in a partial response.
|
1166
|
+
# @param [String] quota_user
|
1167
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1168
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1169
|
+
# @param [Google::Apis::RequestOptions] options
|
1170
|
+
# Request-specific options
|
1171
|
+
#
|
1172
|
+
# @yield [result, err] Result & error if block supplied
|
1173
|
+
# @yieldparam result [Google::Apis::ConnectorsV1::Operation] parsed result object
|
1174
|
+
# @yieldparam err [StandardError] error object if request failed
|
1175
|
+
#
|
1176
|
+
# @return [Google::Apis::ConnectorsV1::Operation]
|
1177
|
+
#
|
1178
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1179
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1180
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1181
|
+
def delete_project_location_custom_connector_custom_connector_version(name, fields: nil, quota_user: nil, options: nil, &block)
|
1182
|
+
command = make_simple_command(:delete, 'v1/{+name}', options)
|
1183
|
+
command.response_representation = Google::Apis::ConnectorsV1::Operation::Representation
|
1184
|
+
command.response_class = Google::Apis::ConnectorsV1::Operation
|
1185
|
+
command.params['name'] = name unless name.nil?
|
1186
|
+
command.query['fields'] = fields unless fields.nil?
|
1187
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1188
|
+
execute_or_queue_command(command, &block)
|
1189
|
+
end
|
1190
|
+
|
1126
1191
|
# Creates a new EndpointAttachment in a given project and location.
|
1127
1192
|
# @param [String] parent
|
1128
1193
|
# Required. Parent resource of the EndpointAttachment, of the form: `projects/*/
|
@@ -1597,38 +1662,6 @@ module Google
|
|
1597
1662
|
execute_or_queue_command(command, &block)
|
1598
1663
|
end
|
1599
1664
|
|
1600
|
-
# Deletes a single CustomConnectorVersion.
|
1601
|
-
# @param [String] name
|
1602
|
-
# Required. Resource name of the form: `projects/`project`/locations/`location`/
|
1603
|
-
# customConnectors/`custom_connector`/customConnectorVersions/`
|
1604
|
-
# custom_connector_version``
|
1605
|
-
# @param [String] fields
|
1606
|
-
# Selector specifying which fields to include in a partial response.
|
1607
|
-
# @param [String] quota_user
|
1608
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1609
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1610
|
-
# @param [Google::Apis::RequestOptions] options
|
1611
|
-
# Request-specific options
|
1612
|
-
#
|
1613
|
-
# @yield [result, err] Result & error if block supplied
|
1614
|
-
# @yieldparam result [Google::Apis::ConnectorsV1::Operation] parsed result object
|
1615
|
-
# @yieldparam err [StandardError] error object if request failed
|
1616
|
-
#
|
1617
|
-
# @return [Google::Apis::ConnectorsV1::Operation]
|
1618
|
-
#
|
1619
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1620
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1621
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1622
|
-
def delete_project_location_global_custom_connector_custom_connector_version(name, fields: nil, quota_user: nil, options: nil, &block)
|
1623
|
-
command = make_simple_command(:delete, 'v1/{+name}', options)
|
1624
|
-
command.response_representation = Google::Apis::ConnectorsV1::Operation::Representation
|
1625
|
-
command.response_class = Google::Apis::ConnectorsV1::Operation
|
1626
|
-
command.params['name'] = name unless name.nil?
|
1627
|
-
command.query['fields'] = fields unless fields.nil?
|
1628
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1629
|
-
execute_or_queue_command(command, &block)
|
1630
|
-
end
|
1631
|
-
|
1632
1665
|
# Gets details of a single CustomConnectorVersion.
|
1633
1666
|
# @param [String] name
|
1634
1667
|
# Required. Resource name of the form: `projects/*/locations/`location`/
|
@@ -1697,48 +1730,6 @@ module Google
|
|
1697
1730
|
execute_or_queue_command(command, &block)
|
1698
1731
|
end
|
1699
1732
|
|
1700
|
-
# Updates the parameters of a CustomConnectorVersion.
|
1701
|
-
# @param [String] name
|
1702
|
-
# Output only. Identifier. Resource name of the Version. Format: projects/`
|
1703
|
-
# project`/locations/`location`/customConnectors/`custom_connector`/
|
1704
|
-
# customConnectorVersions/`custom_connector_version`
|
1705
|
-
# @param [Google::Apis::ConnectorsV1::CustomConnectorVersion] custom_connector_version_object
|
1706
|
-
# @param [String] update_mask
|
1707
|
-
# Required. Field mask is used to specify the fields to be overwritten in the
|
1708
|
-
# Connector resource by the update. The fields specified in the update_mask are
|
1709
|
-
# relative to the resource, not the full request. A field will be overwritten if
|
1710
|
-
# it is in the mask. Set the mask as "*" for full replacement, which means all
|
1711
|
-
# fields will be overwritten.
|
1712
|
-
# @param [String] fields
|
1713
|
-
# Selector specifying which fields to include in a partial response.
|
1714
|
-
# @param [String] quota_user
|
1715
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1716
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1717
|
-
# @param [Google::Apis::RequestOptions] options
|
1718
|
-
# Request-specific options
|
1719
|
-
#
|
1720
|
-
# @yield [result, err] Result & error if block supplied
|
1721
|
-
# @yieldparam result [Google::Apis::ConnectorsV1::Operation] parsed result object
|
1722
|
-
# @yieldparam err [StandardError] error object if request failed
|
1723
|
-
#
|
1724
|
-
# @return [Google::Apis::ConnectorsV1::Operation]
|
1725
|
-
#
|
1726
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1727
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1728
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1729
|
-
def patch_project_location_global_custom_connector_custom_connector_version(name, custom_connector_version_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1730
|
-
command = make_simple_command(:patch, 'v1/{+name}', options)
|
1731
|
-
command.request_representation = Google::Apis::ConnectorsV1::CustomConnectorVersion::Representation
|
1732
|
-
command.request_object = custom_connector_version_object
|
1733
|
-
command.response_representation = Google::Apis::ConnectorsV1::Operation::Representation
|
1734
|
-
command.response_class = Google::Apis::ConnectorsV1::Operation
|
1735
|
-
command.params['name'] = name unless name.nil?
|
1736
|
-
command.query['updateMask'] = update_mask unless update_mask.nil?
|
1737
|
-
command.query['fields'] = fields unless fields.nil?
|
1738
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1739
|
-
execute_or_queue_command(command, &block)
|
1740
|
-
end
|
1741
|
-
|
1742
1733
|
# Creates a new ManagedZone in a given project and location.
|
1743
1734
|
# @param [String] parent
|
1744
1735
|
# Required. Parent resource of the ManagedZone, of the form: `projects/*/
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.55.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.55.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|