google-apis-gkeonprem_v1 0.12.0 → 0.14.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: 235cd429953cfb664becbc49cb03b22c0925f46be820dac4b3ee08c808e03f27
|
4
|
+
data.tar.gz: f432bbf9c666bfa66032e057b03d75bdaea73da719f4db573e8acd71e90883b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9feea9588ef7fa0d46bea2469707ee61a4e3a993d2866a013767e405d734d090b05aed1888f7b3b28454cc239015b11e678741c679d4618d0928ce09d3e375c
|
7
|
+
data.tar.gz: 9f7e8dd5760bb8e29f36445f337880e32253bc9da57f5ce4d8466d9704de7f3909edbdd8d2bff9de5ccae5a6ca7d24f3d3d8f95358a58aee6849092e0379a36f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkeonprem_v1
|
2
2
|
|
3
|
+
### v0.14.0 (2023-11-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231101
|
6
|
+
|
7
|
+
### v0.13.0 (2023-10-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231004
|
10
|
+
|
3
11
|
### v0.12.0 (2023-10-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230925
|
@@ -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
|
@@ -75,7 +75,7 @@ module Google
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
-
#
|
78
|
+
# Resource that represents a bare metal admin cluster. LINT.IfChange
|
79
79
|
class BareMetalAdminCluster
|
80
80
|
include Google::Apis::Core::Hashable
|
81
81
|
|
@@ -862,7 +862,7 @@ module Google
|
|
862
862
|
end
|
863
863
|
end
|
864
864
|
|
865
|
-
# Resource that represents a bare metal user cluster.
|
865
|
+
# Resource that represents a bare metal user cluster. LINT.IfChange
|
866
866
|
class BareMetalCluster
|
867
867
|
include Google::Apis::Core::Hashable
|
868
868
|
|
@@ -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`
|
@@ -3755,6 +3782,12 @@ module Google
|
|
3755
3782
|
# @return [Google::Apis::GkeonpremV1::VmwarePlatformConfig]
|
3756
3783
|
attr_accessor :platform_config
|
3757
3784
|
|
3785
|
+
# VmwareAdminPreparedSecretsConfig represents configuration for admin cluster
|
3786
|
+
# prepared secrets.
|
3787
|
+
# Corresponds to the JSON property `preparedSecrets`
|
3788
|
+
# @return [Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig]
|
3789
|
+
attr_accessor :prepared_secrets
|
3790
|
+
|
3758
3791
|
# Output only. If set, there are currently changes in flight to the VMware admin
|
3759
3792
|
# cluster.
|
3760
3793
|
# Corresponds to the JSON property `reconciling`
|
@@ -3798,6 +3831,7 @@ module Google
|
|
3798
3831
|
@addon_node = args[:addon_node] if args.key?(:addon_node)
|
3799
3832
|
@annotations = args[:annotations] if args.key?(:annotations)
|
3800
3833
|
@anti_affinity_groups = args[:anti_affinity_groups] if args.key?(:anti_affinity_groups)
|
3834
|
+
@authorization = args[:authorization] if args.key?(:authorization)
|
3801
3835
|
@auto_repair_config = args[:auto_repair_config] if args.key?(:auto_repair_config)
|
3802
3836
|
@bootstrap_cluster_membership = args[:bootstrap_cluster_membership] if args.key?(:bootstrap_cluster_membership)
|
3803
3837
|
@control_plane_node = args[:control_plane_node] if args.key?(:control_plane_node)
|
@@ -3813,6 +3847,7 @@ module Google
|
|
3813
3847
|
@network_config = args[:network_config] if args.key?(:network_config)
|
3814
3848
|
@on_prem_version = args[:on_prem_version] if args.key?(:on_prem_version)
|
3815
3849
|
@platform_config = args[:platform_config] if args.key?(:platform_config)
|
3850
|
+
@prepared_secrets = args[:prepared_secrets] if args.key?(:prepared_secrets)
|
3816
3851
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
3817
3852
|
@state = args[:state] if args.key?(:state)
|
3818
3853
|
@status = args[:status] if args.key?(:status)
|
@@ -4093,6 +4128,27 @@ module Google
|
|
4093
4128
|
end
|
4094
4129
|
end
|
4095
4130
|
|
4131
|
+
# VmwareAdminPreparedSecretsConfig represents configuration for admin cluster
|
4132
|
+
# prepared secrets.
|
4133
|
+
class VmwareAdminPreparedSecretsConfig
|
4134
|
+
include Google::Apis::Core::Hashable
|
4135
|
+
|
4136
|
+
# Whether prepared secrets is enabled.
|
4137
|
+
# Corresponds to the JSON property `enabled`
|
4138
|
+
# @return [Boolean]
|
4139
|
+
attr_accessor :enabled
|
4140
|
+
alias_method :enabled?, :enabled
|
4141
|
+
|
4142
|
+
def initialize(**args)
|
4143
|
+
update!(**args)
|
4144
|
+
end
|
4145
|
+
|
4146
|
+
# Update properties of this object
|
4147
|
+
def update!(**args)
|
4148
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
4149
|
+
end
|
4150
|
+
end
|
4151
|
+
|
4096
4152
|
# VmwareSeesawConfig represents configuration parameters for an already existing
|
4097
4153
|
# Seesaw load balancer. IMPORTANT: Please note that the Anthos On-Prem API will
|
4098
4154
|
# not generate or update Seesaw configurations it can only bind a pre-existing
|
@@ -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.14.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 = "20231101"
|
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
|
|
@@ -712,6 +718,12 @@ module Google
|
|
712
718
|
include Google::Apis::Core::JsonObjectSupport
|
713
719
|
end
|
714
720
|
|
721
|
+
class VmwareAdminPreparedSecretsConfig
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
723
|
+
|
724
|
+
include Google::Apis::Core::JsonObjectSupport
|
725
|
+
end
|
726
|
+
|
715
727
|
class VmwareAdminSeesawConfig
|
716
728
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
729
|
|
@@ -1949,6 +1961,14 @@ module Google
|
|
1949
1961
|
end
|
1950
1962
|
end
|
1951
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
|
+
|
1952
1972
|
class VmwareAdminCluster
|
1953
1973
|
# @private
|
1954
1974
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1957,6 +1977,8 @@ module Google
|
|
1957
1977
|
hash :annotations, as: 'annotations'
|
1958
1978
|
property :anti_affinity_groups, as: 'antiAffinityGroups', class: Google::Apis::GkeonpremV1::VmwareAagConfig, decorator: Google::Apis::GkeonpremV1::VmwareAagConfig::Representation
|
1959
1979
|
|
1980
|
+
property :authorization, as: 'authorization', class: Google::Apis::GkeonpremV1::VmwareAdminAuthorizationConfig, decorator: Google::Apis::GkeonpremV1::VmwareAdminAuthorizationConfig::Representation
|
1981
|
+
|
1960
1982
|
property :auto_repair_config, as: 'autoRepairConfig', class: Google::Apis::GkeonpremV1::VmwareAutoRepairConfig, decorator: Google::Apis::GkeonpremV1::VmwareAutoRepairConfig::Representation
|
1961
1983
|
|
1962
1984
|
property :bootstrap_cluster_membership, as: 'bootstrapClusterMembership'
|
@@ -1978,6 +2000,8 @@ module Google
|
|
1978
2000
|
property :on_prem_version, as: 'onPremVersion'
|
1979
2001
|
property :platform_config, as: 'platformConfig', class: Google::Apis::GkeonpremV1::VmwarePlatformConfig, decorator: Google::Apis::GkeonpremV1::VmwarePlatformConfig::Representation
|
1980
2002
|
|
2003
|
+
property :prepared_secrets, as: 'preparedSecrets', class: Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig, decorator: Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig::Representation
|
2004
|
+
|
1981
2005
|
property :reconciling, as: 'reconciling'
|
1982
2006
|
property :state, as: 'state'
|
1983
2007
|
property :status, as: 'status', class: Google::Apis::GkeonpremV1::ResourceStatus, decorator: Google::Apis::GkeonpremV1::ResourceStatus::Representation
|
@@ -2065,6 +2089,13 @@ module Google
|
|
2065
2089
|
end
|
2066
2090
|
end
|
2067
2091
|
|
2092
|
+
class VmwareAdminPreparedSecretsConfig
|
2093
|
+
# @private
|
2094
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2095
|
+
property :enabled, as: 'enabled'
|
2096
|
+
end
|
2097
|
+
end
|
2098
|
+
|
2068
2099
|
class VmwareAdminSeesawConfig
|
2069
2100
|
# @private
|
2070
2101
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.14.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-12 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.14.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: []
|