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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 161812d4fff5e0e348afcd94964824210f755bf6efc1fcd32010c3683ed48abf
|
4
|
+
data.tar.gz: 6461f2d8799bb0f994858dc56eacb87c15cc9cffc26381d47fe21a355f65f6dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5820375ddf437a83da7276c37380b94fed3ec405fe01224cacfd541dab154977e0eb416606b6a4d451bf81b54393e90fb9efad887e6365c79cb709a6517a4f1d
|
7
|
+
data.tar.gz: b3fc99fc875215bd8c2a8a6855c8c4fcf1914239b286bcfae84f7b1bf5e02201998ac45e446a195e6004f8cb68c03d09f627a2c6215b10739e413a01288a86a1
|
data/CHANGELOG.md
CHANGED
@@ -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
|
-
#
|
1193
|
-
#
|
1194
|
-
#
|
1195
|
-
|
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.
|
1198
|
-
#
|
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
|
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
|
-
@
|
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.
|
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 = "
|
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
|
-
|
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.
|
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-
|
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.
|
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: []
|