google-apis-gkehub_v2 0.13.0 → 0.15.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: 6aeeb224f5e5dc80ca0f5e422cdd03acc99796937853f88c1feac976c44d9de9
|
4
|
+
data.tar.gz: a95776d6de8fbca6312e2c85d5879c8e5f6807db38f65367f6e4a7f659bab164
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a7eb50a99e45a505d674087bbf7b3604774fe7944aeb599e631dabbe106f2878a6b597ff394dcfc2e45042699d5930e929826f694aacff52613e7ca4aae1c1f
|
7
|
+
data.tar.gz: e762851aa855899c48ec66855adbc94a0b6a1ef6ae402cd79bb6387e2e3327b2982d5fdec15675f34ad518654655fba48976f8486ac42dd9ae673dbccfdd2e98
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v2
|
2
2
|
|
3
|
+
### v0.15.0 (2025-10-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20251002
|
6
|
+
|
7
|
+
### v0.14.0 (2025-10-05)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250925
|
10
|
+
|
3
11
|
### v0.13.0 (2025-09-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250907
|
@@ -1315,6 +1315,11 @@ module Google
|
|
1315
1315
|
# @return [Google::Apis::GkehubV2::ConfigManagementHierarchyControllerState]
|
1316
1316
|
attr_accessor :hierarchy_controller_state
|
1317
1317
|
|
1318
|
+
# Output only. The Kubernetes API server version of the cluster.
|
1319
|
+
# Corresponds to the JSON property `kubernetesApiServerVersion`
|
1320
|
+
# @return [String]
|
1321
|
+
attr_accessor :kubernetes_api_server_version
|
1322
|
+
|
1318
1323
|
# **Anthos Config Management**: Configuration for a single cluster. Intended to
|
1319
1324
|
# parallel the ConfigManagement CR.
|
1320
1325
|
# Corresponds to the JSON property `membershipSpec`
|
@@ -1341,6 +1346,7 @@ module Google
|
|
1341
1346
|
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
1342
1347
|
@config_sync_state = args[:config_sync_state] if args.key?(:config_sync_state)
|
1343
1348
|
@hierarchy_controller_state = args[:hierarchy_controller_state] if args.key?(:hierarchy_controller_state)
|
1349
|
+
@kubernetes_api_server_version = args[:kubernetes_api_server_version] if args.key?(:kubernetes_api_server_version)
|
1344
1350
|
@membership_spec = args[:membership_spec] if args.key?(:membership_spec)
|
1345
1351
|
@operator_state = args[:operator_state] if args.key?(:operator_state)
|
1346
1352
|
@policy_controller_state = args[:policy_controller_state] if args.key?(:policy_controller_state)
|
@@ -2365,6 +2371,13 @@ module Google
|
|
2365
2371
|
# @return [Array<Google::Apis::GkehubV2::Operation>]
|
2366
2372
|
attr_accessor :operations
|
2367
2373
|
|
2374
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
2375
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
2376
|
+
# when attempting to list all resources across all supported locations.
|
2377
|
+
# Corresponds to the JSON property `unreachable`
|
2378
|
+
# @return [Array<String>]
|
2379
|
+
attr_accessor :unreachable
|
2380
|
+
|
2368
2381
|
def initialize(**args)
|
2369
2382
|
update!(**args)
|
2370
2383
|
end
|
@@ -2373,6 +2386,7 @@ module Google
|
|
2373
2386
|
def update!(**args)
|
2374
2387
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2375
2388
|
@operations = args[:operations] if args.key?(:operations)
|
2389
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2376
2390
|
end
|
2377
2391
|
end
|
2378
2392
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV2
|
18
18
|
# Version of the google-apis-gkehub_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.15.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 = "20251002"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -967,6 +967,7 @@ module Google
|
|
967
967
|
|
968
968
|
property :hierarchy_controller_state, as: 'hierarchyControllerState', class: Google::Apis::GkehubV2::ConfigManagementHierarchyControllerState, decorator: Google::Apis::GkehubV2::ConfigManagementHierarchyControllerState::Representation
|
969
969
|
|
970
|
+
property :kubernetes_api_server_version, as: 'kubernetesApiServerVersion'
|
970
971
|
property :membership_spec, as: 'membershipSpec', class: Google::Apis::GkehubV2::ConfigManagementSpec, decorator: Google::Apis::GkehubV2::ConfigManagementSpec::Representation
|
971
972
|
|
972
973
|
property :operator_state, as: 'operatorState', class: Google::Apis::GkehubV2::ConfigManagementOperatorState, decorator: Google::Apis::GkehubV2::ConfigManagementOperatorState::Representation
|
@@ -1262,6 +1263,7 @@ module Google
|
|
1262
1263
|
property :next_page_token, as: 'nextPageToken'
|
1263
1264
|
collection :operations, as: 'operations', class: Google::Apis::GkehubV2::Operation, decorator: Google::Apis::GkehubV2::Operation::Representation
|
1264
1265
|
|
1266
|
+
collection :unreachable, as: 'unreachable'
|
1265
1267
|
end
|
1266
1268
|
end
|
1267
1269
|
|
@@ -413,6 +413,13 @@ module Google
|
|
413
413
|
# The standard list page size.
|
414
414
|
# @param [String] page_token
|
415
415
|
# The standard list page token.
|
416
|
+
# @param [Boolean] return_partial_success
|
417
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
418
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
419
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
420
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
421
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
422
|
+
# explicitly documented otherwise in service or product specific documentation.
|
416
423
|
# @param [String] fields
|
417
424
|
# Selector specifying which fields to include in a partial response.
|
418
425
|
# @param [String] quota_user
|
@@ -430,7 +437,7 @@ module Google
|
|
430
437
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
431
438
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
432
439
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
433
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
440
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
434
441
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
435
442
|
command.response_representation = Google::Apis::GkehubV2::ListOperationsResponse::Representation
|
436
443
|
command.response_class = Google::Apis::GkehubV2::ListOperationsResponse
|
@@ -438,6 +445,7 @@ module Google
|
|
438
445
|
command.query['filter'] = filter unless filter.nil?
|
439
446
|
command.query['pageSize'] = page_size unless page_size.nil?
|
440
447
|
command.query['pageToken'] = page_token unless page_token.nil?
|
448
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
441
449
|
command.query['fields'] = fields unless fields.nil?
|
442
450
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
443
451
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.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-gkehub_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2/v0.15.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|