google-apis-gkehub_v1 0.77.0 → 0.78.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: d237acd1db8290f5b4ccd1d2c05237086c0100c2b47dfed08c61ba7419a4e59e
|
4
|
+
data.tar.gz: 5098782ad6e4b181ae4f0decf5af34b789b1b7091c9836da922ea747f864a394
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5113ca81e68f1b3a1915bd2a5b6ec639373e094358f76a7b0065e82213d4d2d1a2321e71cb8ff82f0474b3236e545b436a982963e5564b0a301fcea46f5b9f07
|
7
|
+
data.tar.gz: 1cec6fed445d3a8ec349be26f641d0766cb896ce2100a62a513f7935d5fc24777afebd6f3057cb6dcd3756ad368086f3647bc07f81b7e45073a25668c3fec3f0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1
|
2
2
|
|
3
|
+
### v0.78.0 (2024-08-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240727
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.77.0 (2024-07-25)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240706
|
@@ -2096,6 +2096,12 @@ module Google
|
|
2096
2096
|
# @return [Google::Apis::GkehubV1::CommonFeatureState]
|
2097
2097
|
attr_accessor :state
|
2098
2098
|
|
2099
|
+
# Output only. List of locations that could not be reached while fetching this
|
2100
|
+
# feature.
|
2101
|
+
# Corresponds to the JSON property `unreachable`
|
2102
|
+
# @return [Array<String>]
|
2103
|
+
attr_accessor :unreachable
|
2104
|
+
|
2099
2105
|
# Output only. When the Feature resource was last updated.
|
2100
2106
|
# Corresponds to the JSON property `updateTime`
|
2101
2107
|
# @return [String]
|
@@ -2119,6 +2125,7 @@ module Google
|
|
2119
2125
|
@scope_states = args[:scope_states] if args.key?(:scope_states)
|
2120
2126
|
@spec = args[:spec] if args.key?(:spec)
|
2121
2127
|
@state = args[:state] if args.key?(:state)
|
2128
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2122
2129
|
@update_time = args[:update_time] if args.key?(:update_time)
|
2123
2130
|
end
|
2124
2131
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1
|
18
18
|
# Version of the google-apis-gkehub_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.78.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240727"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1537,6 +1537,7 @@ module Google
|
|
1537
1537
|
|
1538
1538
|
property :state, as: 'state', class: Google::Apis::GkehubV1::CommonFeatureState, decorator: Google::Apis::GkehubV1::CommonFeatureState::Representation
|
1539
1539
|
|
1540
|
+
collection :unreachable, as: 'unreachable'
|
1540
1541
|
property :update_time, as: 'updateTime'
|
1541
1542
|
end
|
1542
1543
|
end
|
@@ -267,6 +267,11 @@ module Google
|
|
267
267
|
# @param [String] name
|
268
268
|
# Required. The Feature resource name in the format `projects/*/locations/*/
|
269
269
|
# features/*`
|
270
|
+
# @param [Boolean] return_partial_success
|
271
|
+
# Optional. If set to true, the response will return partial results when some
|
272
|
+
# regions are unreachable and the unreachable field in Feature proto will be
|
273
|
+
# populated. If set to false, the request will fail when some regions are
|
274
|
+
# unreachable.
|
270
275
|
# @param [String] fields
|
271
276
|
# Selector specifying which fields to include in a partial response.
|
272
277
|
# @param [String] quota_user
|
@@ -284,11 +289,12 @@ module Google
|
|
284
289
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
285
290
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
286
291
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
287
|
-
def get_project_location_feature(name, fields: nil, quota_user: nil, options: nil, &block)
|
292
|
+
def get_project_location_feature(name, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
288
293
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
289
294
|
command.response_representation = Google::Apis::GkehubV1::Feature::Representation
|
290
295
|
command.response_class = Google::Apis::GkehubV1::Feature
|
291
296
|
command.params['name'] = name unless name.nil?
|
297
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
292
298
|
command.query['fields'] = fields unless fields.nil?
|
293
299
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
294
300
|
execute_or_queue_command(command, &block)
|
@@ -359,6 +365,11 @@ module Google
|
|
359
365
|
# @param [String] page_token
|
360
366
|
# Token returned by previous call to `ListFeatures` which specifies the position
|
361
367
|
# in the list from where to continue listing the resources.
|
368
|
+
# @param [Boolean] return_partial_success
|
369
|
+
# Optional. If set to true, the response will return partial results when some
|
370
|
+
# regions are unreachable and the unreachable field in Feature proto will be
|
371
|
+
# populated. If set to false, the request will fail when some regions are
|
372
|
+
# unreachable.
|
362
373
|
# @param [String] fields
|
363
374
|
# Selector specifying which fields to include in a partial response.
|
364
375
|
# @param [String] quota_user
|
@@ -376,7 +387,7 @@ module Google
|
|
376
387
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
377
388
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
378
389
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
379
|
-
def list_project_location_features(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
390
|
+
def list_project_location_features(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
380
391
|
command = make_simple_command(:get, 'v1/{+parent}/features', options)
|
381
392
|
command.response_representation = Google::Apis::GkehubV1::ListFeaturesResponse::Representation
|
382
393
|
command.response_class = Google::Apis::GkehubV1::ListFeaturesResponse
|
@@ -385,6 +396,7 @@ module Google
|
|
385
396
|
command.query['orderBy'] = order_by unless order_by.nil?
|
386
397
|
command.query['pageSize'] = page_size unless page_size.nil?
|
387
398
|
command.query['pageToken'] = page_token unless page_token.nil?
|
399
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
388
400
|
command.query['fields'] = fields unless fields.nil?
|
389
401
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
390
402
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.78.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-
|
11
|
+
date: 2024-08-11 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-gkehub_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.78.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|