google-apis-gkeonprem_v1 0.13.0 → 0.15.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: 7e26f6e27d1cf17c9d97fda3edaf996cfc42d0515131b259b61b6845c944fd44
|
4
|
+
data.tar.gz: b6ee35a50c6bd6df80c719d637017e50b3f0e12aebd3b9e70d66af0b4b71cbe2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa48fe65f0db5093d0d60537c91a3ac19c0dd09dab9745067509359d596fe30537cfaa32f8f33abb15a7a6abb54a482332bca9a1033448620fb2b822dc8dd85d
|
7
|
+
data.tar.gz: 1a6627e5445111e79ac15901de2ce3218285c464382bc01441211f808cab046e774d4f4c36757787664b3168e3c2494b26928c9a04ccdb1b28b5308316a31c5a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkeonprem_v1
|
2
2
|
|
3
|
+
### v0.15.0 (2023-11-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231108
|
6
|
+
|
7
|
+
### v0.14.0 (2023-11-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231101
|
10
|
+
|
3
11
|
### v0.13.0 (2023-10-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231004
|
@@ -27,10 +27,10 @@ module Google
|
|
27
27
|
class Authorization
|
28
28
|
include Google::Apis::Core::Hashable
|
29
29
|
|
30
|
-
#
|
31
|
-
#
|
32
|
-
#
|
33
|
-
#
|
30
|
+
# For VMware and bare metal user clusters, users will be granted the cluster-
|
31
|
+
# admin role on the cluster, which provides full administrative access to the
|
32
|
+
# cluster. For bare metal admin clusters, users will be granted the cluster-view
|
33
|
+
# role, which limits users to read-only access.
|
34
34
|
# Corresponds to the JSON property `adminUsers`
|
35
35
|
# @return [Array<Google::Apis::GkeonpremV1::ClusterUser>]
|
36
36
|
attr_accessor :admin_users
|
@@ -3637,6 +3637,27 @@ module Google
|
|
3637
3637
|
end
|
3638
3638
|
end
|
3639
3639
|
|
3640
|
+
# VmwareAdminAuthorizationConfig represents configuration for admin cluster
|
3641
|
+
# authorization.
|
3642
|
+
class VmwareAdminAuthorizationConfig
|
3643
|
+
include Google::Apis::Core::Hashable
|
3644
|
+
|
3645
|
+
# For VMware admin clusters, users will be granted the cluster-viewer role on
|
3646
|
+
# the cluster.
|
3647
|
+
# Corresponds to the JSON property `viewerUsers`
|
3648
|
+
# @return [Array<Google::Apis::GkeonpremV1::ClusterUser>]
|
3649
|
+
attr_accessor :viewer_users
|
3650
|
+
|
3651
|
+
def initialize(**args)
|
3652
|
+
update!(**args)
|
3653
|
+
end
|
3654
|
+
|
3655
|
+
# Update properties of this object
|
3656
|
+
def update!(**args)
|
3657
|
+
@viewer_users = args[:viewer_users] if args.key?(:viewer_users)
|
3658
|
+
end
|
3659
|
+
end
|
3660
|
+
|
3640
3661
|
# Resource that represents a VMware admin cluster.
|
3641
3662
|
class VmwareAdminCluster
|
3642
3663
|
include Google::Apis::Core::Hashable
|
@@ -3662,6 +3683,12 @@ module Google
|
|
3662
3683
|
# @return [Google::Apis::GkeonpremV1::VmwareAagConfig]
|
3663
3684
|
attr_accessor :anti_affinity_groups
|
3664
3685
|
|
3686
|
+
# VmwareAdminAuthorizationConfig represents configuration for admin cluster
|
3687
|
+
# authorization.
|
3688
|
+
# Corresponds to the JSON property `authorization`
|
3689
|
+
# @return [Google::Apis::GkeonpremV1::VmwareAdminAuthorizationConfig]
|
3690
|
+
attr_accessor :authorization
|
3691
|
+
|
3665
3692
|
# Specifies config to enable/disable auto repair. The cluster-health-controller
|
3666
3693
|
# is deployed only if Enabled is true.
|
3667
3694
|
# Corresponds to the JSON property `autoRepairConfig`
|
@@ -3804,6 +3831,7 @@ module Google
|
|
3804
3831
|
@addon_node = args[:addon_node] if args.key?(:addon_node)
|
3805
3832
|
@annotations = args[:annotations] if args.key?(:annotations)
|
3806
3833
|
@anti_affinity_groups = args[:anti_affinity_groups] if args.key?(:anti_affinity_groups)
|
3834
|
+
@authorization = args[:authorization] if args.key?(:authorization)
|
3807
3835
|
@auto_repair_config = args[:auto_repair_config] if args.key?(:auto_repair_config)
|
3808
3836
|
@bootstrap_cluster_membership = args[:bootstrap_cluster_membership] if args.key?(:bootstrap_cluster_membership)
|
3809
3837
|
@control_plane_node = args[:control_plane_node] if args.key?(:control_plane_node)
|
@@ -5032,8 +5060,8 @@ module Google
|
|
5032
5060
|
# @return [Google::Apis::GkeonpremV1::VmwareStaticIpConfig]
|
5033
5061
|
attr_accessor :static_ip_config
|
5034
5062
|
|
5035
|
-
#
|
5036
|
-
#
|
5063
|
+
# vcenter_network specifies vCenter network name. Inherited from the admin
|
5064
|
+
# cluster.
|
5037
5065
|
# Corresponds to the JSON property `vcenterNetwork`
|
5038
5066
|
# @return [String]
|
5039
5067
|
attr_accessor :vcenter_network
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkeonpremV1
|
18
18
|
# Version of the google-apis-gkeonprem_v1 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.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231108"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -664,6 +664,12 @@ module Google
|
|
664
664
|
include Google::Apis::Core::JsonObjectSupport
|
665
665
|
end
|
666
666
|
|
667
|
+
class VmwareAdminAuthorizationConfig
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
|
+
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
671
|
+
end
|
672
|
+
|
667
673
|
class VmwareAdminCluster
|
668
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
675
|
|
@@ -1955,6 +1961,14 @@ module Google
|
|
1955
1961
|
end
|
1956
1962
|
end
|
1957
1963
|
|
1964
|
+
class VmwareAdminAuthorizationConfig
|
1965
|
+
# @private
|
1966
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1967
|
+
collection :viewer_users, as: 'viewerUsers', class: Google::Apis::GkeonpremV1::ClusterUser, decorator: Google::Apis::GkeonpremV1::ClusterUser::Representation
|
1968
|
+
|
1969
|
+
end
|
1970
|
+
end
|
1971
|
+
|
1958
1972
|
class VmwareAdminCluster
|
1959
1973
|
# @private
|
1960
1974
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1963,6 +1977,8 @@ module Google
|
|
1963
1977
|
hash :annotations, as: 'annotations'
|
1964
1978
|
property :anti_affinity_groups, as: 'antiAffinityGroups', class: Google::Apis::GkeonpremV1::VmwareAagConfig, decorator: Google::Apis::GkeonpremV1::VmwareAagConfig::Representation
|
1965
1979
|
|
1980
|
+
property :authorization, as: 'authorization', class: Google::Apis::GkeonpremV1::VmwareAdminAuthorizationConfig, decorator: Google::Apis::GkeonpremV1::VmwareAdminAuthorizationConfig::Representation
|
1981
|
+
|
1966
1982
|
property :auto_repair_config, as: 'autoRepairConfig', class: Google::Apis::GkeonpremV1::VmwareAutoRepairConfig, decorator: Google::Apis::GkeonpremV1::VmwareAutoRepairConfig::Representation
|
1967
1983
|
|
1968
1984
|
property :bootstrap_cluster_membership, as: 'bootstrapClusterMembership'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkeonprem_v1
|
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
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-19 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-gkeonprem_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.15.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkeonprem_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|