google-apis-container_v1beta1 0.1.0 → 0.2.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: 728edd736e49afed458515150706cd62d6c296f798fa7a2f46d42de8f2d1f94d
|
|
4
|
+
data.tar.gz: 403e3fafc5ec0321fddd5e6bab5689d6540c6b55d5d591962e57e7b50fcb7353
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f43e1111e2a7ac2e79f0409d25fb03c7f8d88e257116eeb6becf3e89a93cbafa3d28a37171670f75134a809c6415366ea187f9cf9fb7503473752582f2d7b4ea
|
|
7
|
+
data.tar.gz: d3d0812d83db10d674abe21e06a75e66939c39f1dbb93d69d39ce533fdc2746bfabc5c2ffd450f8e6320770a4548413b40717f9132c47459ee317878126c03bc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.2.0 (2021-02-09)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20210205
|
|
6
|
+
* Regenerated using generator version 0.1.2
|
|
7
|
+
|
|
3
8
|
### v0.1.0 (2021-01-07)
|
|
4
9
|
|
|
5
10
|
* Regenerated using generator version 0.1.1
|
|
@@ -4834,6 +4834,48 @@ module Google
|
|
|
4834
4834
|
end
|
|
4835
4835
|
end
|
|
4836
4836
|
|
|
4837
|
+
# UpgradeAvailableEvent is a notification sent to customers when a new available
|
|
4838
|
+
# version is released.
|
|
4839
|
+
class UpgradeAvailableEvent
|
|
4840
|
+
include Google::Apis::Core::Hashable
|
|
4841
|
+
|
|
4842
|
+
# ReleaseChannel indicates which release channel a cluster is subscribed to.
|
|
4843
|
+
# Release channels are arranged in order of risk. When a cluster is subscribed
|
|
4844
|
+
# to a release channel, Google maintains both the master version and the node
|
|
4845
|
+
# version. Node auto-upgrade defaults to true and cannot be disabled.
|
|
4846
|
+
# Corresponds to the JSON property `releaseChannel`
|
|
4847
|
+
# @return [Google::Apis::ContainerV1beta1::ReleaseChannel]
|
|
4848
|
+
attr_accessor :release_channel
|
|
4849
|
+
|
|
4850
|
+
# Optional. Optional relative path to the resource. For example, the relative
|
|
4851
|
+
# path of the node pool.
|
|
4852
|
+
# Corresponds to the JSON property `resource`
|
|
4853
|
+
# @return [String]
|
|
4854
|
+
attr_accessor :resource
|
|
4855
|
+
|
|
4856
|
+
# The resource type of the release version.
|
|
4857
|
+
# Corresponds to the JSON property `resourceType`
|
|
4858
|
+
# @return [String]
|
|
4859
|
+
attr_accessor :resource_type
|
|
4860
|
+
|
|
4861
|
+
# The release version available for upgrade.
|
|
4862
|
+
# Corresponds to the JSON property `version`
|
|
4863
|
+
# @return [String]
|
|
4864
|
+
attr_accessor :version
|
|
4865
|
+
|
|
4866
|
+
def initialize(**args)
|
|
4867
|
+
update!(**args)
|
|
4868
|
+
end
|
|
4869
|
+
|
|
4870
|
+
# Update properties of this object
|
|
4871
|
+
def update!(**args)
|
|
4872
|
+
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
|
4873
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
4874
|
+
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
|
4875
|
+
@version = args[:version] if args.key?(:version)
|
|
4876
|
+
end
|
|
4877
|
+
end
|
|
4878
|
+
|
|
4837
4879
|
# UpgradeEvent is a notification sent to customers by the cluster server when a
|
|
4838
4880
|
# resource is upgrading.
|
|
4839
4881
|
class UpgradeEvent
|
|
@@ -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.2.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.1.
|
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210205"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -634,6 +634,12 @@ module Google
|
|
|
634
634
|
include Google::Apis::Core::JsonObjectSupport
|
|
635
635
|
end
|
|
636
636
|
|
|
637
|
+
class UpgradeAvailableEvent
|
|
638
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
639
|
+
|
|
640
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
641
|
+
end
|
|
642
|
+
|
|
637
643
|
class UpgradeEvent
|
|
638
644
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
639
645
|
|
|
@@ -1863,6 +1869,17 @@ module Google
|
|
|
1863
1869
|
end
|
|
1864
1870
|
end
|
|
1865
1871
|
|
|
1872
|
+
class UpgradeAvailableEvent
|
|
1873
|
+
# @private
|
|
1874
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1875
|
+
property :release_channel, as: 'releaseChannel', class: Google::Apis::ContainerV1beta1::ReleaseChannel, decorator: Google::Apis::ContainerV1beta1::ReleaseChannel::Representation
|
|
1876
|
+
|
|
1877
|
+
property :resource, as: 'resource'
|
|
1878
|
+
property :resource_type, as: 'resourceType'
|
|
1879
|
+
property :version, as: 'version'
|
|
1880
|
+
end
|
|
1881
|
+
end
|
|
1882
|
+
|
|
1866
1883
|
class UpgradeEvent
|
|
1867
1884
|
# @private
|
|
1868
1885
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.2.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-
|
|
11
|
+
date: 2021-02-15 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.2.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: []
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
72
|
+
rubygems_version: 3.2.6
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Simple REST client for Kubernetes Engine API V1beta1
|