google-apis-connectors_v1 0.80.0 → 0.81.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: a44b5606bae5f9d321406385250461e0d86e6dbe599d350374d15d2e5cbdef09
|
|
4
|
+
data.tar.gz: d4c6bc8ed7404f1476951c1d7fc1ae9c724a20c13f5b2c48b141d043b311a82f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94ae89d334e7dfa6b7e41bdea537a5e6d66892e693c705e25d2f89fda096608cd3269eb98e6256aef14e76c2afb7a5a40f0fe3a9c7743d4315f9a50a545fd9e8
|
|
7
|
+
data.tar.gz: 4264304aa4641edb6269ea605686f18cec9f1cf6dc5f8df9ff102580f29b9cadd6f6aa48028a383518eab1dcd21c04ae430535a1b930e3796ef0b43906b885b6
|
data/CHANGELOG.md
CHANGED
|
@@ -1199,6 +1199,13 @@ module Google
|
|
|
1199
1199
|
# @return [Fixnum]
|
|
1200
1200
|
attr_accessor :connection_ratelimit_window_seconds
|
|
1201
1201
|
|
|
1202
|
+
# Indicate whether connection service account is enabled. If false, the common
|
|
1203
|
+
# runtime service agent is used.
|
|
1204
|
+
# Corresponds to the JSON property `connectionServiceAccountEnabled`
|
|
1205
|
+
# @return [Boolean]
|
|
1206
|
+
attr_accessor :connection_service_account_enabled
|
|
1207
|
+
alias_method :connection_service_account_enabled?, :connection_service_account_enabled
|
|
1208
|
+
|
|
1202
1209
|
# Indicate whether connector versioning is enabled.
|
|
1203
1210
|
# Corresponds to the JSON property `connectorVersioningEnabled`
|
|
1204
1211
|
# @return [Boolean]
|
|
@@ -1255,6 +1262,12 @@ module Google
|
|
|
1255
1262
|
attr_accessor :provision_memstore
|
|
1256
1263
|
alias_method :provision_memstore?, :provision_memstore
|
|
1257
1264
|
|
|
1265
|
+
# Indicate whether public network ingress should be enabled.
|
|
1266
|
+
# Corresponds to the JSON property `publicNetworkIngressEnabled`
|
|
1267
|
+
# @return [Boolean]
|
|
1268
|
+
attr_accessor :public_network_ingress_enabled
|
|
1269
|
+
alias_method :public_network_ingress_enabled?, :public_network_ingress_enabled
|
|
1270
|
+
|
|
1258
1271
|
# Max QPS supported by the connector version before throttling of requests.
|
|
1259
1272
|
# Corresponds to the JSON property `ratelimitThreshold`
|
|
1260
1273
|
# @return [Fixnum]
|
|
@@ -1283,6 +1296,7 @@ module Google
|
|
|
1283
1296
|
def update!(**args)
|
|
1284
1297
|
@always_allocate_cpu = args[:always_allocate_cpu] if args.key?(:always_allocate_cpu)
|
|
1285
1298
|
@connection_ratelimit_window_seconds = args[:connection_ratelimit_window_seconds] if args.key?(:connection_ratelimit_window_seconds)
|
|
1299
|
+
@connection_service_account_enabled = args[:connection_service_account_enabled] if args.key?(:connection_service_account_enabled)
|
|
1286
1300
|
@connector_versioning_enabled = args[:connector_versioning_enabled] if args.key?(:connector_versioning_enabled)
|
|
1287
1301
|
@deployment_model = args[:deployment_model] if args.key?(:deployment_model)
|
|
1288
1302
|
@hpa_config = args[:hpa_config] if args.key?(:hpa_config)
|
|
@@ -1293,6 +1307,7 @@ module Google
|
|
|
1293
1307
|
@network_egress_mode_override = args[:network_egress_mode_override] if args.key?(:network_egress_mode_override)
|
|
1294
1308
|
@provision_cloud_spanner = args[:provision_cloud_spanner] if args.key?(:provision_cloud_spanner)
|
|
1295
1309
|
@provision_memstore = args[:provision_memstore] if args.key?(:provision_memstore)
|
|
1310
|
+
@public_network_ingress_enabled = args[:public_network_ingress_enabled] if args.key?(:public_network_ingress_enabled)
|
|
1296
1311
|
@ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
|
|
1297
1312
|
@resource_limits = args[:resource_limits] if args.key?(:resource_limits)
|
|
1298
1313
|
@resource_requests = args[:resource_requests] if args.key?(:resource_requests)
|
|
@@ -2129,6 +2144,22 @@ module Google
|
|
|
2129
2144
|
class EgressControlConfig
|
|
2130
2145
|
include Google::Apis::Core::Hashable
|
|
2131
2146
|
|
|
2147
|
+
# Optional. Access mode for egress control.
|
|
2148
|
+
# Corresponds to the JSON property `accessMode`
|
|
2149
|
+
# @return [String]
|
|
2150
|
+
attr_accessor :access_mode
|
|
2151
|
+
|
|
2152
|
+
# Extraction Rules to identity the backends from customer provided configuration
|
|
2153
|
+
# in Connection resource.
|
|
2154
|
+
# Corresponds to the JSON property `additionalExtractionRules`
|
|
2155
|
+
# @return [Google::Apis::ConnectorsV1::ExtractionRules]
|
|
2156
|
+
attr_accessor :additional_extraction_rules
|
|
2157
|
+
|
|
2158
|
+
# Optional. Used when access_mode is RESTRICTED or ACCESS_MODE_UNSPECIFIED.
|
|
2159
|
+
# Corresponds to the JSON property `allowlistedProjectNumbers`
|
|
2160
|
+
# @return [Array<String>]
|
|
2161
|
+
attr_accessor :allowlisted_project_numbers
|
|
2162
|
+
|
|
2132
2163
|
# Static Comma separated backends which are common for all Connection resources.
|
|
2133
2164
|
# Supported formats for each backend are host:port or just host (host can be ip
|
|
2134
2165
|
# address or domain name).
|
|
@@ -2142,14 +2173,23 @@ module Google
|
|
|
2142
2173
|
# @return [Google::Apis::ConnectorsV1::ExtractionRules]
|
|
2143
2174
|
attr_accessor :extraction_rules
|
|
2144
2175
|
|
|
2176
|
+
# Launch environment for egress control.
|
|
2177
|
+
# Corresponds to the JSON property `launchEnvironment`
|
|
2178
|
+
# @return [String]
|
|
2179
|
+
attr_accessor :launch_environment
|
|
2180
|
+
|
|
2145
2181
|
def initialize(**args)
|
|
2146
2182
|
update!(**args)
|
|
2147
2183
|
end
|
|
2148
2184
|
|
|
2149
2185
|
# Update properties of this object
|
|
2150
2186
|
def update!(**args)
|
|
2187
|
+
@access_mode = args[:access_mode] if args.key?(:access_mode)
|
|
2188
|
+
@additional_extraction_rules = args[:additional_extraction_rules] if args.key?(:additional_extraction_rules)
|
|
2189
|
+
@allowlisted_project_numbers = args[:allowlisted_project_numbers] if args.key?(:allowlisted_project_numbers)
|
|
2151
2190
|
@backends = args[:backends] if args.key?(:backends)
|
|
2152
2191
|
@extraction_rules = args[:extraction_rules] if args.key?(:extraction_rules)
|
|
2192
|
+
@launch_environment = args[:launch_environment] if args.key?(:launch_environment)
|
|
2153
2193
|
end
|
|
2154
2194
|
end
|
|
2155
2195
|
|
|
@@ -3521,6 +3561,12 @@ module Google
|
|
|
3521
3561
|
# @return [String]
|
|
3522
3562
|
attr_accessor :extraction_regex
|
|
3523
3563
|
|
|
3564
|
+
# Format string used to format the extracted backend details. If empty,
|
|
3565
|
+
# extracted backend details will be returned as it is.
|
|
3566
|
+
# Corresponds to the JSON property `formatString`
|
|
3567
|
+
# @return [String]
|
|
3568
|
+
attr_accessor :format_string
|
|
3569
|
+
|
|
3524
3570
|
# Source to extract the backend from.
|
|
3525
3571
|
# Corresponds to the JSON property `source`
|
|
3526
3572
|
# @return [Google::Apis::ConnectorsV1::Source]
|
|
@@ -3533,6 +3579,7 @@ module Google
|
|
|
3533
3579
|
# Update properties of this object
|
|
3534
3580
|
def update!(**args)
|
|
3535
3581
|
@extraction_regex = args[:extraction_regex] if args.key?(:extraction_regex)
|
|
3582
|
+
@format_string = args[:format_string] if args.key?(:format_string)
|
|
3536
3583
|
@source = args[:source] if args.key?(:source)
|
|
3537
3584
|
end
|
|
3538
3585
|
end
|
|
@@ -4528,8 +4575,9 @@ module Google
|
|
|
4528
4575
|
attr_accessor :operations
|
|
4529
4576
|
|
|
4530
4577
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
4531
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
4532
|
-
# when attempting to list all resources across all supported
|
|
4578
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
4579
|
+
# For example, when attempting to list all resources across all supported
|
|
4580
|
+
# locations.
|
|
4533
4581
|
# Corresponds to the JSON property `unreachable`
|
|
4534
4582
|
# @return [Array<String>]
|
|
4535
4583
|
attr_accessor :unreachable
|
|
@@ -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.81.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251216"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1319,6 +1319,7 @@ module Google
|
|
|
1319
1319
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1320
1320
|
property :always_allocate_cpu, as: 'alwaysAllocateCpu'
|
|
1321
1321
|
property :connection_ratelimit_window_seconds, :numeric_string => true, as: 'connectionRatelimitWindowSeconds'
|
|
1322
|
+
property :connection_service_account_enabled, as: 'connectionServiceAccountEnabled'
|
|
1322
1323
|
property :connector_versioning_enabled, as: 'connectorVersioningEnabled'
|
|
1323
1324
|
property :deployment_model, as: 'deploymentModel'
|
|
1324
1325
|
property :hpa_config, as: 'hpaConfig', class: Google::Apis::ConnectorsV1::HpaConfig, decorator: Google::Apis::ConnectorsV1::HpaConfig::Representation
|
|
@@ -1331,6 +1332,7 @@ module Google
|
|
|
1331
1332
|
|
|
1332
1333
|
property :provision_cloud_spanner, as: 'provisionCloudSpanner'
|
|
1333
1334
|
property :provision_memstore, as: 'provisionMemstore'
|
|
1335
|
+
property :public_network_ingress_enabled, as: 'publicNetworkIngressEnabled'
|
|
1334
1336
|
property :ratelimit_threshold, :numeric_string => true, as: 'ratelimitThreshold'
|
|
1335
1337
|
property :resource_limits, as: 'resourceLimits', class: Google::Apis::ConnectorsV1::ResourceLimits, decorator: Google::Apis::ConnectorsV1::ResourceLimits::Representation
|
|
1336
1338
|
|
|
@@ -1549,9 +1551,14 @@ module Google
|
|
|
1549
1551
|
class EgressControlConfig
|
|
1550
1552
|
# @private
|
|
1551
1553
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1554
|
+
property :access_mode, as: 'accessMode'
|
|
1555
|
+
property :additional_extraction_rules, as: 'additionalExtractionRules', class: Google::Apis::ConnectorsV1::ExtractionRules, decorator: Google::Apis::ConnectorsV1::ExtractionRules::Representation
|
|
1556
|
+
|
|
1557
|
+
collection :allowlisted_project_numbers, as: 'allowlistedProjectNumbers'
|
|
1552
1558
|
property :backends, as: 'backends'
|
|
1553
1559
|
property :extraction_rules, as: 'extractionRules', class: Google::Apis::ConnectorsV1::ExtractionRules, decorator: Google::Apis::ConnectorsV1::ExtractionRules::Representation
|
|
1554
1560
|
|
|
1561
|
+
property :launch_environment, as: 'launchEnvironment'
|
|
1555
1562
|
end
|
|
1556
1563
|
end
|
|
1557
1564
|
|
|
@@ -1941,6 +1948,7 @@ module Google
|
|
|
1941
1948
|
# @private
|
|
1942
1949
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1943
1950
|
property :extraction_regex, as: 'extractionRegex'
|
|
1951
|
+
property :format_string, as: 'formatString'
|
|
1944
1952
|
property :source, as: 'source', class: Google::Apis::ConnectorsV1::Source, decorator: Google::Apis::ConnectorsV1::Source::Representation
|
|
1945
1953
|
|
|
1946
1954
|
end
|
|
@@ -148,8 +148,8 @@ module Google
|
|
|
148
148
|
# @param [String] name
|
|
149
149
|
# The resource that owns the locations collection, if applicable.
|
|
150
150
|
# @param [Array<String>, String] extra_location_types
|
|
151
|
-
# Optional.
|
|
152
|
-
#
|
|
151
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
|
152
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
|
153
153
|
# @param [String] filter
|
|
154
154
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
155
155
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -2392,11 +2392,12 @@ module Google
|
|
|
2392
2392
|
# The standard list page token.
|
|
2393
2393
|
# @param [Boolean] return_partial_success
|
|
2394
2394
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
2395
|
-
# those that are unreachable are returned in the
|
|
2396
|
-
# unreachable
|
|
2397
|
-
#
|
|
2398
|
-
# by default
|
|
2399
|
-
# explicitly documented otherwise in service or product specific
|
|
2395
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
2396
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
2397
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
2398
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
2399
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
2400
|
+
# documentation.
|
|
2400
2401
|
# @param [String] fields
|
|
2401
2402
|
# Selector specifying which fields to include in a partial response.
|
|
2402
2403
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.81.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.81.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|