google-apis-gkehub_v1beta 0.89.0 → 0.91.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: 15932d3781244b6754d76da2ad1e60463eafb9e9a9b6a68185bd4afaa1fd9799
|
|
4
|
+
data.tar.gz: 2fad1ae29a80c56e31151e03ed6e6b6d0f3a52ee401623acd548d0ad2c40a938
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3b750b75a2c77fc1822ec9403b764370168d917faaeb732de36c31bab1606aaf7d7230e5d54fb67dc571b27d1415285a4e3d77c54995ec18443f8f35c0dd095
|
|
7
|
+
data.tar.gz: 2a4c1bd0eaf6811858cad35b3d1560e9694e7420258c898e45b94b71ad2227ac9709eb4db704f4fdab1c4d4fa15ac9e73fd86cbe2d2a4242bcc797279826f5cc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.91.0 (2025-10-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251002
|
|
6
|
+
|
|
7
|
+
### v0.90.0 (2025-10-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250925
|
|
10
|
+
|
|
3
11
|
### v0.89.0 (2025-09-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250907
|
|
@@ -1707,6 +1707,11 @@ module Google
|
|
|
1707
1707
|
# @return [Google::Apis::GkehubV1beta::ConfigManagementHierarchyControllerState]
|
|
1708
1708
|
attr_accessor :hierarchy_controller_state
|
|
1709
1709
|
|
|
1710
|
+
# Output only. The Kubernetes API server version of the cluster.
|
|
1711
|
+
# Corresponds to the JSON property `kubernetesApiServerVersion`
|
|
1712
|
+
# @return [String]
|
|
1713
|
+
attr_accessor :kubernetes_api_server_version
|
|
1714
|
+
|
|
1710
1715
|
# **Anthos Config Management**: Configuration for a single cluster. Intended to
|
|
1711
1716
|
# parallel the ConfigManagement CR.
|
|
1712
1717
|
# Corresponds to the JSON property `membershipSpec`
|
|
@@ -1733,6 +1738,7 @@ module Google
|
|
|
1733
1738
|
@cluster_name = args[:cluster_name] if args.key?(:cluster_name)
|
|
1734
1739
|
@config_sync_state = args[:config_sync_state] if args.key?(:config_sync_state)
|
|
1735
1740
|
@hierarchy_controller_state = args[:hierarchy_controller_state] if args.key?(:hierarchy_controller_state)
|
|
1741
|
+
@kubernetes_api_server_version = args[:kubernetes_api_server_version] if args.key?(:kubernetes_api_server_version)
|
|
1736
1742
|
@membership_spec = args[:membership_spec] if args.key?(:membership_spec)
|
|
1737
1743
|
@operator_state = args[:operator_state] if args.key?(:operator_state)
|
|
1738
1744
|
@policy_controller_state = args[:policy_controller_state] if args.key?(:policy_controller_state)
|
|
@@ -3832,6 +3838,13 @@ module Google
|
|
|
3832
3838
|
# @return [Array<Google::Apis::GkehubV1beta::Operation>]
|
|
3833
3839
|
attr_accessor :operations
|
|
3834
3840
|
|
|
3841
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
3842
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
3843
|
+
# when attempting to list all resources across all supported locations.
|
|
3844
|
+
# Corresponds to the JSON property `unreachable`
|
|
3845
|
+
# @return [Array<String>]
|
|
3846
|
+
attr_accessor :unreachable
|
|
3847
|
+
|
|
3835
3848
|
def initialize(**args)
|
|
3836
3849
|
update!(**args)
|
|
3837
3850
|
end
|
|
@@ -3840,6 +3853,7 @@ module Google
|
|
|
3840
3853
|
def update!(**args)
|
|
3841
3854
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3842
3855
|
@operations = args[:operations] if args.key?(:operations)
|
|
3856
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3843
3857
|
end
|
|
3844
3858
|
end
|
|
3845
3859
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module GkehubV1beta
|
|
18
18
|
# Version of the google-apis-gkehub_v1beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.91.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
|
|
@@ -1507,6 +1507,7 @@ module Google
|
|
|
1507
1507
|
|
|
1508
1508
|
property :hierarchy_controller_state, as: 'hierarchyControllerState', class: Google::Apis::GkehubV1beta::ConfigManagementHierarchyControllerState, decorator: Google::Apis::GkehubV1beta::ConfigManagementHierarchyControllerState::Representation
|
|
1509
1509
|
|
|
1510
|
+
property :kubernetes_api_server_version, as: 'kubernetesApiServerVersion'
|
|
1510
1511
|
property :membership_spec, as: 'membershipSpec', class: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec, decorator: Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec::Representation
|
|
1511
1512
|
|
|
1512
1513
|
property :operator_state, as: 'operatorState', class: Google::Apis::GkehubV1beta::ConfigManagementOperatorState, decorator: Google::Apis::GkehubV1beta::ConfigManagementOperatorState::Representation
|
|
@@ -2111,6 +2112,7 @@ module Google
|
|
|
2111
2112
|
property :next_page_token, as: 'nextPageToken'
|
|
2112
2113
|
collection :operations, as: 'operations', class: Google::Apis::GkehubV1beta::Operation, decorator: Google::Apis::GkehubV1beta::Operation::Representation
|
|
2113
2114
|
|
|
2115
|
+
collection :unreachable, as: 'unreachable'
|
|
2114
2116
|
end
|
|
2115
2117
|
end
|
|
2116
2118
|
|
|
@@ -1649,6 +1649,13 @@ module Google
|
|
|
1649
1649
|
# The standard list page size.
|
|
1650
1650
|
# @param [String] page_token
|
|
1651
1651
|
# The standard list page token.
|
|
1652
|
+
# @param [Boolean] return_partial_success
|
|
1653
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1654
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
|
1655
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
|
1656
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
1657
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
1658
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
1652
1659
|
# @param [String] fields
|
|
1653
1660
|
# Selector specifying which fields to include in a partial response.
|
|
1654
1661
|
# @param [String] quota_user
|
|
@@ -1666,7 +1673,7 @@ module Google
|
|
|
1666
1673
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1667
1674
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1668
1675
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1669
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1676
|
+
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)
|
|
1670
1677
|
command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
|
|
1671
1678
|
command.response_representation = Google::Apis::GkehubV1beta::ListOperationsResponse::Representation
|
|
1672
1679
|
command.response_class = Google::Apis::GkehubV1beta::ListOperationsResponse
|
|
@@ -1674,6 +1681,7 @@ module Google
|
|
|
1674
1681
|
command.query['filter'] = filter unless filter.nil?
|
|
1675
1682
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1676
1683
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1684
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1677
1685
|
command.query['fields'] = fields unless fields.nil?
|
|
1678
1686
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1679
1687
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-gkehub_v1beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.91.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_v1beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.91.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|