google-apis-connectors_v1 0.45.0 → 0.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 906a1ca993a255521946b258539d5b78514125252acb90f6ca4693300fd6ef84
4
- data.tar.gz: b5452fbf2a9b33202caca7afdcf625070797757c5f329ee910c1b9739b592598
3
+ metadata.gz: 161812d4fff5e0e348afcd94964824210f755bf6efc1fcd32010c3683ed48abf
4
+ data.tar.gz: 6461f2d8799bb0f994858dc56eacb87c15cc9cffc26381d47fe21a355f65f6dd
5
5
  SHA512:
6
- metadata.gz: 87c952a0c3100465940fa6a14dc6bac6e28254284fd76a5ad1717a0e2687b1321434d5e9905ca8bca7ec4d5ffa01d7345c4fd47605c39f970766423a05dfadfd
7
- data.tar.gz: ac4861a98d914572d2fc87025bb1408c545fb34071834d72c1eba6a6417facc483583c38a794541a9203576cd1a325f6ce7c50ba070537f8632ef89273e14714
6
+ metadata.gz: 5820375ddf437a83da7276c37380b94fed3ec405fe01224cacfd541dab154977e0eb416606b6a4d451bf81b54393e90fb9efad887e6365c79cb709a6517a4f1d
7
+ data.tar.gz: b3fc99fc875215bd8c2a8a6855c8c4fcf1914239b286bcfae84f7b1bf5e02201998ac45e446a195e6004f8cb68c03d09f627a2c6215b10739e413a01288a86a1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.46.0 (2023-12-10)
4
+
5
+ * Regenerated from discovery document revision 20231205
6
+
3
7
  ### v0.45.0 (2023-12-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20231126
@@ -419,6 +419,12 @@ module Google
419
419
  # @return [String]
420
420
  attr_accessor :key
421
421
 
422
+ # Optional. Location Tyep denotes where this value should be sent in BYOC
423
+ # connections.
424
+ # Corresponds to the JSON property `locationType`
425
+ # @return [String]
426
+ attr_accessor :location_type
427
+
422
428
  # Flag represents that this `ConfigVariable` must be provided for a connection.
423
429
  # Corresponds to the JSON property `required`
424
430
  # @return [Boolean]
@@ -468,6 +474,7 @@ module Google
468
474
  @enum_options = args[:enum_options] if args.key?(:enum_options)
469
475
  @is_advanced = args[:is_advanced] if args.key?(:is_advanced)
470
476
  @key = args[:key] if args.key?(:key)
477
+ @location_type = args[:location_type] if args.key?(:location_type)
471
478
  @required = args[:required] if args.key?(:required)
472
479
  @required_condition = args[:required_condition] if args.key?(:required_condition)
473
480
  @role_grant = args[:role_grant] if args.key?(:role_grant)
@@ -1002,6 +1009,11 @@ module Google
1002
1009
  # @return [Google::Apis::ConnectorsV1::SupportedRuntimeFeatures]
1003
1010
  attr_accessor :supported_runtime_features
1004
1011
 
1012
+ # Output only. Unsupported connection types.
1013
+ # Corresponds to the JSON property `unsupportedConnectionTypes`
1014
+ # @return [Array<String>]
1015
+ attr_accessor :unsupported_connection_types
1016
+
1005
1017
  # Output only. Updated time.
1006
1018
  # Corresponds to the JSON property `updateTime`
1007
1019
  # @return [String]
@@ -1029,6 +1041,7 @@ module Google
1029
1041
  @role_grants = args[:role_grants] if args.key?(:role_grants)
1030
1042
  @ssl_config_template = args[:ssl_config_template] if args.key?(:ssl_config_template)
1031
1043
  @supported_runtime_features = args[:supported_runtime_features] if args.key?(:supported_runtime_features)
1044
+ @unsupported_connection_types = args[:unsupported_connection_types] if args.key?(:unsupported_connection_types)
1032
1045
  @update_time = args[:update_time] if args.key?(:update_time)
1033
1046
  end
1034
1047
  end
@@ -1184,18 +1197,25 @@ module Google
1184
1197
  # @return [Google::Apis::ConnectorsV1::AuthConfig]
1185
1198
  attr_accessor :auth_config
1186
1199
 
1200
+ # Optional. Backend variables config templates. This translates to additional
1201
+ # variable templates in connection.
1202
+ # Corresponds to the JSON property `backendVariableTemplates`
1203
+ # @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]
1204
+ attr_accessor :backend_variable_templates
1205
+
1187
1206
  # Output only. Created time.
1188
1207
  # Corresponds to the JSON property `createTime`
1189
1208
  # @return [String]
1190
1209
  attr_accessor :create_time
1191
1210
 
1192
- # Define the Connectors target endpoint.
1193
- # Corresponds to the JSON property `destinationConfig`
1194
- # @return [Google::Apis::ConnectorsV1::DestinationConfig]
1195
- attr_accessor :destination_config
1211
+ # Optional. Destination config(s) for accessing connector facade/ proxy. This is
1212
+ # used only when enable_backend_destination_config is true.
1213
+ # Corresponds to the JSON property `destinationConfigs`
1214
+ # @return [Array<Google::Apis::ConnectorsV1::DestinationConfig>]
1215
+ attr_accessor :destination_configs
1196
1216
 
1197
- # Optional. Whether to enable backend destination config. This is the backend
1198
- # server that the connector connects to.
1217
+ # Optional. When enabled, the connector will be a facade/ proxy, and connects to
1218
+ # the destination provided during connection creation.
1199
1219
  # Corresponds to the JSON property `enableBackendDestinationConfig`
1200
1220
  # @return [Boolean]
1201
1221
  attr_accessor :enable_backend_destination_config
@@ -1215,8 +1235,7 @@ module Google
1215
1235
  # @return [String]
1216
1236
  attr_accessor :name
1217
1237
 
1218
- # Required. Service account needed for runtime plane to access Custom Connector
1219
- # secrets.
1238
+ # Required. Service account used by runtime plane to access auth config secrets.
1220
1239
  # Corresponds to the JSON property `serviceAccount`
1221
1240
  # @return [String]
1222
1241
  attr_accessor :service_account
@@ -1238,8 +1257,9 @@ module Google
1238
1257
  # Update properties of this object
1239
1258
  def update!(**args)
1240
1259
  @auth_config = args[:auth_config] if args.key?(:auth_config)
1260
+ @backend_variable_templates = args[:backend_variable_templates] if args.key?(:backend_variable_templates)
1241
1261
  @create_time = args[:create_time] if args.key?(:create_time)
1242
- @destination_config = args[:destination_config] if args.key?(:destination_config)
1262
+ @destination_configs = args[:destination_configs] if args.key?(:destination_configs)
1243
1263
  @enable_backend_destination_config = args[:enable_backend_destination_config] if args.key?(:enable_backend_destination_config)
1244
1264
  @labels = args[:labels] if args.key?(:labels)
1245
1265
  @name = args[:name] if args.key?(:name)
@@ -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.45.0"
19
+ GEM_VERSION = "0.46.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231126"
25
+ REVISION = "20231205"
26
26
  end
27
27
  end
28
28
  end
@@ -746,6 +746,7 @@ module Google
746
746
 
747
747
  property :is_advanced, as: 'isAdvanced'
748
748
  property :key, as: 'key'
749
+ property :location_type, as: 'locationType'
749
750
  property :required, as: 'required'
750
751
  property :required_condition, as: 'requiredCondition', class: Google::Apis::ConnectorsV1::LogicalExpression, decorator: Google::Apis::ConnectorsV1::LogicalExpression::Representation
751
752
 
@@ -887,6 +888,7 @@ module Google
887
888
 
888
889
  property :supported_runtime_features, as: 'supportedRuntimeFeatures', class: Google::Apis::ConnectorsV1::SupportedRuntimeFeatures, decorator: Google::Apis::ConnectorsV1::SupportedRuntimeFeatures::Representation
889
890
 
891
+ collection :unsupported_connection_types, as: 'unsupportedConnectionTypes'
890
892
  property :update_time, as: 'updateTime'
891
893
  end
892
894
  end
@@ -933,8 +935,10 @@ module Google
933
935
  class Representation < Google::Apis::Core::JsonRepresentation
934
936
  property :auth_config, as: 'authConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
935
937
 
938
+ collection :backend_variable_templates, as: 'backendVariableTemplates', class: Google::Apis::ConnectorsV1::ConfigVariableTemplate, decorator: Google::Apis::ConnectorsV1::ConfigVariableTemplate::Representation
939
+
936
940
  property :create_time, as: 'createTime'
937
- property :destination_config, as: 'destinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
941
+ collection :destination_configs, as: 'destinationConfigs', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
938
942
 
939
943
  property :enable_backend_destination_config, as: 'enableBackendDestinationConfig'
940
944
  hash :labels, as: 'labels'
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.45.0
4
+ version: 0.46.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-03 00:00:00.000000000 Z
11
+ date: 2023-12-10 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.45.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.46.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: []