google-apis-container_v1beta1 0.2.0 → 0.3.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: 87767e2858d8d8be09c08e44331d36095f57b55815e41dcdf8d7765c61fc1299
|
4
|
+
data.tar.gz: 350f1e6f0c8d3b38a40a39b6dca576156fff40a56a1c4585d6edf439eb21c2ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bcc97f9a5be6e5ea9bab38cf132926b885d1b5bec978e57b61848621501ae222c4548cc57ae15b230d367aa56637000ab09404cec9bb24142be4238b58d5679
|
7
|
+
data.tar.gz: 463c557a9ebceb34717c418dd8431bf6ae5b03c957b07f72cbb7afe01b58dff59a8218225d9a5691ae3eda3e3f79a0912cb2ba39786b981f1b37539c0e8e0b86
|
data/CHANGELOG.md
CHANGED
@@ -184,6 +184,27 @@ module Google
|
|
184
184
|
end
|
185
185
|
end
|
186
186
|
|
187
|
+
# Autopilot is the configuration for Autopilot settings on the cluster. It is
|
188
|
+
# the official product name of what is previously known as AutoGKE
|
189
|
+
class Autopilot
|
190
|
+
include Google::Apis::Core::Hashable
|
191
|
+
|
192
|
+
# Enable Autopilot
|
193
|
+
# Corresponds to the JSON property `enabled`
|
194
|
+
# @return [Boolean]
|
195
|
+
attr_accessor :enabled
|
196
|
+
alias_method :enabled?, :enabled
|
197
|
+
|
198
|
+
def initialize(**args)
|
199
|
+
update!(**args)
|
200
|
+
end
|
201
|
+
|
202
|
+
# Update properties of this object
|
203
|
+
def update!(**args)
|
204
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
187
208
|
# AutoprovisioningNodePoolDefaults contains defaults for a node pool created by
|
188
209
|
# NAP.
|
189
210
|
class AutoprovisioningNodePoolDefaults
|
@@ -482,6 +503,12 @@ module Google
|
|
482
503
|
# @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
|
483
504
|
attr_accessor :authenticator_groups_config
|
484
505
|
|
506
|
+
# Autopilot is the configuration for Autopilot settings on the cluster. It is
|
507
|
+
# the official product name of what is previously known as AutoGKE
|
508
|
+
# Corresponds to the JSON property `autopilot`
|
509
|
+
# @return [Google::Apis::ContainerV1beta1::Autopilot]
|
510
|
+
attr_accessor :autopilot
|
511
|
+
|
485
512
|
# ClusterAutoscaling contains global, per-cluster information required by
|
486
513
|
# Cluster Autoscaler to automatically adjust the size of the cluster and create/
|
487
514
|
# delete node pools based on the current needs.
|
@@ -873,6 +900,7 @@ module Google
|
|
873
900
|
def update!(**args)
|
874
901
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
875
902
|
@authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
|
903
|
+
@autopilot = args[:autopilot] if args.key?(:autopilot)
|
876
904
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
877
905
|
@binary_authorization = args[:binary_authorization] if args.key?(:binary_authorization)
|
878
906
|
@cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1beta1
|
18
18
|
# Version of the google-apis-container_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.3.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210216"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class Autopilot
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class AutoprovisioningNodePoolDefaults
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -732,6 +738,13 @@ module Google
|
|
732
738
|
end
|
733
739
|
end
|
734
740
|
|
741
|
+
class Autopilot
|
742
|
+
# @private
|
743
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
744
|
+
property :enabled, as: 'enabled'
|
745
|
+
end
|
746
|
+
end
|
747
|
+
|
735
748
|
class AutoprovisioningNodePoolDefaults
|
736
749
|
# @private
|
737
750
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -812,6 +825,8 @@ module Google
|
|
812
825
|
|
813
826
|
property :authenticator_groups_config, as: 'authenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
|
814
827
|
|
828
|
+
property :autopilot, as: 'autopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
|
829
|
+
|
815
830
|
property :autoscaling, as: 'autoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
|
816
831
|
|
817
832
|
property :binary_authorization, as: 'binaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.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: 2021-02-
|
11
|
+
date: 2021-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.3.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|