google-apis-connectors_v1 0.68.0 → 0.69.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: 4841ee63df55b0d18f05358313eb194e0d7596e877e0dcb210a17b1b2803b054
|
4
|
+
data.tar.gz: 36d9a9053f64f8cd14be0bc6dc245c55347903ad0b0fee04a36f2bb3dd258035
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71317e968a0f95a8b2d0160e3740907d60cf5950789097efc02f627f3d47cb8ed0236af2cf21f2da246c4237e3078e09d8dca8ab4b607654be0fab0f75233883
|
7
|
+
data.tar.gz: bf80ade48ad787c32b000db394c08b7470868fc1157bc9565f984ef8e8e21bc9f4a263dab3eacb2115744d31ef59c587e9f079a59dee76fad0de23c31997cd7a
|
data/CHANGELOG.md
CHANGED
@@ -1227,6 +1227,12 @@ module Google
|
|
1227
1227
|
attr_accessor :provision_cloud_spanner
|
1228
1228
|
alias_method :provision_cloud_spanner?, :provision_cloud_spanner
|
1229
1229
|
|
1230
|
+
# Indicate whether memstore is required for connector job.
|
1231
|
+
# Corresponds to the JSON property `provisionMemstore`
|
1232
|
+
# @return [Boolean]
|
1233
|
+
attr_accessor :provision_memstore
|
1234
|
+
alias_method :provision_memstore?, :provision_memstore
|
1235
|
+
|
1230
1236
|
# Max QPS supported by the connector version before throttling of requests.
|
1231
1237
|
# Corresponds to the JSON property `ratelimitThreshold`
|
1232
1238
|
# @return [Fixnum]
|
@@ -1263,6 +1269,7 @@ module Google
|
|
1263
1269
|
@migrate_deployment_model = args[:migrate_deployment_model] if args.key?(:migrate_deployment_model)
|
1264
1270
|
@migrate_tls = args[:migrate_tls] if args.key?(:migrate_tls)
|
1265
1271
|
@provision_cloud_spanner = args[:provision_cloud_spanner] if args.key?(:provision_cloud_spanner)
|
1272
|
+
@provision_memstore = args[:provision_memstore] if args.key?(:provision_memstore)
|
1266
1273
|
@ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
|
1267
1274
|
@resource_limits = args[:resource_limits] if args.key?(:resource_limits)
|
1268
1275
|
@resource_requests = args[:resource_requests] if args.key?(:resource_requests)
|
@@ -3784,6 +3791,11 @@ module Google
|
|
3784
3791
|
# @return [String]
|
3785
3792
|
attr_accessor :next_page_token
|
3786
3793
|
|
3794
|
+
# Locations that could not be reached.
|
3795
|
+
# Corresponds to the JSON property `unreachable`
|
3796
|
+
# @return [Array<String>]
|
3797
|
+
attr_accessor :unreachable
|
3798
|
+
|
3787
3799
|
def initialize(**args)
|
3788
3800
|
update!(**args)
|
3789
3801
|
end
|
@@ -3792,6 +3804,7 @@ module Google
|
|
3792
3804
|
def update!(**args)
|
3793
3805
|
@managed_zones = args[:managed_zones] if args.key?(:managed_zones)
|
3794
3806
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3807
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3795
3808
|
end
|
3796
3809
|
end
|
3797
3810
|
|
@@ -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.69.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250327"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1211,6 +1211,7 @@ module Google
|
|
1211
1211
|
property :migrate_deployment_model, as: 'migrateDeploymentModel'
|
1212
1212
|
property :migrate_tls, as: 'migrateTls'
|
1213
1213
|
property :provision_cloud_spanner, as: 'provisionCloudSpanner'
|
1214
|
+
property :provision_memstore, as: 'provisionMemstore'
|
1214
1215
|
property :ratelimit_threshold, :numeric_string => true, as: 'ratelimitThreshold'
|
1215
1216
|
property :resource_limits, as: 'resourceLimits', class: Google::Apis::ConnectorsV1::ResourceLimits, decorator: Google::Apis::ConnectorsV1::ResourceLimits::Representation
|
1216
1217
|
|
@@ -1898,6 +1899,7 @@ module Google
|
|
1898
1899
|
collection :managed_zones, as: 'managedZones', class: Google::Apis::ConnectorsV1::ManagedZone, decorator: Google::Apis::ConnectorsV1::ManagedZone::Representation
|
1899
1900
|
|
1900
1901
|
property :next_page_token, as: 'nextPageToken'
|
1902
|
+
collection :unreachable, as: 'unreachable'
|
1901
1903
|
end
|
1902
1904
|
end
|
1903
1905
|
|
@@ -147,6 +147,9 @@ module Google
|
|
147
147
|
# Lists information about the supported locations for this service.
|
148
148
|
# @param [String] name
|
149
149
|
# The resource that owns the locations collection, if applicable.
|
150
|
+
# @param [Array<String>, String] extra_location_types
|
151
|
+
# Optional. A list of extra location types that should be used as conditions for
|
152
|
+
# controlling the visibility of the locations.
|
150
153
|
# @param [String] filter
|
151
154
|
# A filter to narrow down results to a preferred subset. The filtering language
|
152
155
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -174,11 +177,12 @@ module Google
|
|
174
177
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
175
178
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
176
179
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
177
|
-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
180
|
+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
178
181
|
command = make_simple_command(:get, 'v1/{+name}/locations', options)
|
179
182
|
command.response_representation = Google::Apis::ConnectorsV1::ListLocationsResponse::Representation
|
180
183
|
command.response_class = Google::Apis::ConnectorsV1::ListLocationsResponse
|
181
184
|
command.params['name'] = name unless name.nil?
|
185
|
+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
|
182
186
|
command.query['filter'] = filter unless filter.nil?
|
183
187
|
command.query['pageSize'] = page_size unless page_size.nil?
|
184
188
|
command.query['pageToken'] = page_token unless page_token.nil?
|
@@ -2001,6 +2005,9 @@ module Google
|
|
2001
2005
|
# Page size.
|
2002
2006
|
# @param [String] page_token
|
2003
2007
|
# Page token.
|
2008
|
+
# @param [Boolean] return_partial_success
|
2009
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
2010
|
+
# requests.
|
2004
2011
|
# @param [String] fields
|
2005
2012
|
# Selector specifying which fields to include in a partial response.
|
2006
2013
|
# @param [String] quota_user
|
@@ -2018,7 +2025,7 @@ module Google
|
|
2018
2025
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2019
2026
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2020
2027
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2021
|
-
def list_project_location_global_managed_zones(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2028
|
+
def list_project_location_global_managed_zones(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2022
2029
|
command = make_simple_command(:get, 'v1/{+parent}/managedZones', options)
|
2023
2030
|
command.response_representation = Google::Apis::ConnectorsV1::ListManagedZonesResponse::Representation
|
2024
2031
|
command.response_class = Google::Apis::ConnectorsV1::ListManagedZonesResponse
|
@@ -2027,6 +2034,7 @@ module Google
|
|
2027
2034
|
command.query['orderBy'] = order_by unless order_by.nil?
|
2028
2035
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2029
2036
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2037
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2030
2038
|
command.query['fields'] = fields unless fields.nil?
|
2031
2039
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2032
2040
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.69.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:
|