google-apis-gkeonprem_v1 0.12.0 → 0.13.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: ee60e661a425a415af406716ed8042765cedfb2579049e0074a568ddfb07589e
|
4
|
+
data.tar.gz: 377bdaa16dc4886e5ea76eb6cc61a926413ec81ade238b8feb2b7612fcaca130
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5c973c5c168b19711fe4fe06cc44a2d5d6aa2220adffc374d168518e6ff760a3350d1dc0b382888ba016d73d901e991c593e8cc08b0a9fb12d1da1b7fefb4bb
|
7
|
+
data.tar.gz: ba87d30594b6b3e1f4f6380346c5749980fdb8d2e05899e2e0cd5e43441364959e962c2b93cbc56547c8ca73287013f25942048d720eeaf1338594c38286845f
|
data/CHANGELOG.md
CHANGED
@@ -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
|
|
@@ -3755,6 +3755,12 @@ module Google
|
|
3755
3755
|
# @return [Google::Apis::GkeonpremV1::VmwarePlatformConfig]
|
3756
3756
|
attr_accessor :platform_config
|
3757
3757
|
|
3758
|
+
# VmwareAdminPreparedSecretsConfig represents configuration for admin cluster
|
3759
|
+
# prepared secrets.
|
3760
|
+
# Corresponds to the JSON property `preparedSecrets`
|
3761
|
+
# @return [Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig]
|
3762
|
+
attr_accessor :prepared_secrets
|
3763
|
+
|
3758
3764
|
# Output only. If set, there are currently changes in flight to the VMware admin
|
3759
3765
|
# cluster.
|
3760
3766
|
# Corresponds to the JSON property `reconciling`
|
@@ -3813,6 +3819,7 @@ module Google
|
|
3813
3819
|
@network_config = args[:network_config] if args.key?(:network_config)
|
3814
3820
|
@on_prem_version = args[:on_prem_version] if args.key?(:on_prem_version)
|
3815
3821
|
@platform_config = args[:platform_config] if args.key?(:platform_config)
|
3822
|
+
@prepared_secrets = args[:prepared_secrets] if args.key?(:prepared_secrets)
|
3816
3823
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
3817
3824
|
@state = args[:state] if args.key?(:state)
|
3818
3825
|
@status = args[:status] if args.key?(:status)
|
@@ -4093,6 +4100,27 @@ module Google
|
|
4093
4100
|
end
|
4094
4101
|
end
|
4095
4102
|
|
4103
|
+
# VmwareAdminPreparedSecretsConfig represents configuration for admin cluster
|
4104
|
+
# prepared secrets.
|
4105
|
+
class VmwareAdminPreparedSecretsConfig
|
4106
|
+
include Google::Apis::Core::Hashable
|
4107
|
+
|
4108
|
+
# Whether prepared secrets is enabled.
|
4109
|
+
# Corresponds to the JSON property `enabled`
|
4110
|
+
# @return [Boolean]
|
4111
|
+
attr_accessor :enabled
|
4112
|
+
alias_method :enabled?, :enabled
|
4113
|
+
|
4114
|
+
def initialize(**args)
|
4115
|
+
update!(**args)
|
4116
|
+
end
|
4117
|
+
|
4118
|
+
# Update properties of this object
|
4119
|
+
def update!(**args)
|
4120
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
4121
|
+
end
|
4122
|
+
end
|
4123
|
+
|
4096
4124
|
# VmwareSeesawConfig represents configuration parameters for an already existing
|
4097
4125
|
# Seesaw load balancer. IMPORTANT: Please note that the Anthos On-Prem API will
|
4098
4126
|
# 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.13.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 = "20231004"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -712,6 +712,12 @@ module Google
|
|
712
712
|
include Google::Apis::Core::JsonObjectSupport
|
713
713
|
end
|
714
714
|
|
715
|
+
class VmwareAdminPreparedSecretsConfig
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
|
+
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
719
|
+
end
|
720
|
+
|
715
721
|
class VmwareAdminSeesawConfig
|
716
722
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
723
|
|
@@ -1978,6 +1984,8 @@ module Google
|
|
1978
1984
|
property :on_prem_version, as: 'onPremVersion'
|
1979
1985
|
property :platform_config, as: 'platformConfig', class: Google::Apis::GkeonpremV1::VmwarePlatformConfig, decorator: Google::Apis::GkeonpremV1::VmwarePlatformConfig::Representation
|
1980
1986
|
|
1987
|
+
property :prepared_secrets, as: 'preparedSecrets', class: Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig, decorator: Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig::Representation
|
1988
|
+
|
1981
1989
|
property :reconciling, as: 'reconciling'
|
1982
1990
|
property :state, as: 'state'
|
1983
1991
|
property :status, as: 'status', class: Google::Apis::GkeonpremV1::ResourceStatus, decorator: Google::Apis::GkeonpremV1::ResourceStatus::Representation
|
@@ -2065,6 +2073,13 @@ module Google
|
|
2065
2073
|
end
|
2066
2074
|
end
|
2067
2075
|
|
2076
|
+
class VmwareAdminPreparedSecretsConfig
|
2077
|
+
# @private
|
2078
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2079
|
+
property :enabled, as: 'enabled'
|
2080
|
+
end
|
2081
|
+
end
|
2082
|
+
|
2068
2083
|
class VmwareAdminSeesawConfig
|
2069
2084
|
# @private
|
2070
2085
|
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.13.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-10-
|
11
|
+
date: 2023-10-15 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.13.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: []
|