google-apis-container_v1 0.45.0 → 0.46.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: b67d9161086df8ac4cadf7ced05b5c1ca1ce6ecaf98a820aec7ab52865d36174
|
4
|
+
data.tar.gz: bf2f035f702396c3466798a9bfa447f60f7c481d78d3ec377a7f0cbbbf737160
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 327c723bc07e43807cd5d04c03aa32210dc2bacdc539a441dc58a5438e2dd5b37ad395e8b5b0ebd53d1c421719cd972e1d09edde549994ea61afc6eca33d2cde
|
7
|
+
data.tar.gz: c8a7126931ba22aafa19a716df50669c2e5c5fe779c53b7c40ed54335137e60c8d2ee0a8a37e274a637cdfd8fee004b109062192a8f0ed037a29563989716bf7
|
data/CHANGELOG.md
CHANGED
@@ -728,6 +728,11 @@ module Google
|
|
728
728
|
# @return [String]
|
729
729
|
attr_accessor :expire_time
|
730
730
|
|
731
|
+
# Fleet is the fleet configuration for the cluster.
|
732
|
+
# Corresponds to the JSON property `fleet`
|
733
|
+
# @return [Google::Apis::ContainerV1::Fleet]
|
734
|
+
attr_accessor :fleet
|
735
|
+
|
731
736
|
# Output only. Unique id for the cluster.
|
732
737
|
# Corresponds to the JSON property `id`
|
733
738
|
# @return [String]
|
@@ -1035,6 +1040,7 @@ module Google
|
|
1035
1040
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
1036
1041
|
@etag = args[:etag] if args.key?(:etag)
|
1037
1042
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1043
|
+
@fleet = args[:fleet] if args.key?(:fleet)
|
1038
1044
|
@id = args[:id] if args.key?(:id)
|
1039
1045
|
@identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
|
1040
1046
|
@initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
|
@@ -1881,6 +1887,42 @@ module Google
|
|
1881
1887
|
end
|
1882
1888
|
end
|
1883
1889
|
|
1890
|
+
# Fleet is the fleet configuration for the cluster.
|
1891
|
+
class Fleet
|
1892
|
+
include Google::Apis::Core::Hashable
|
1893
|
+
|
1894
|
+
# [Output only] The full resource name of the registered fleet membership of the
|
1895
|
+
# cluster, in the format `//gkehub.googleapis.com/projects/*/locations/*/
|
1896
|
+
# memberships/*`.
|
1897
|
+
# Corresponds to the JSON property `membership`
|
1898
|
+
# @return [String]
|
1899
|
+
attr_accessor :membership
|
1900
|
+
|
1901
|
+
# [Output only] Whether the cluster has been registered through the fleet API.
|
1902
|
+
# Corresponds to the JSON property `preRegistered`
|
1903
|
+
# @return [Boolean]
|
1904
|
+
attr_accessor :pre_registered
|
1905
|
+
alias_method :pre_registered?, :pre_registered
|
1906
|
+
|
1907
|
+
# The Fleet host project(project ID or project number) where this cluster will
|
1908
|
+
# be registered to. This field cannot be changed after the cluster has been
|
1909
|
+
# registered.
|
1910
|
+
# Corresponds to the JSON property `project`
|
1911
|
+
# @return [String]
|
1912
|
+
attr_accessor :project
|
1913
|
+
|
1914
|
+
def initialize(**args)
|
1915
|
+
update!(**args)
|
1916
|
+
end
|
1917
|
+
|
1918
|
+
# Update properties of this object
|
1919
|
+
def update!(**args)
|
1920
|
+
@membership = args[:membership] if args.key?(:membership)
|
1921
|
+
@pre_registered = args[:pre_registered] if args.key?(:pre_registered)
|
1922
|
+
@project = args[:project] if args.key?(:project)
|
1923
|
+
end
|
1924
|
+
end
|
1925
|
+
|
1884
1926
|
# GPUSharingConfig represents the GPU sharing configuration for Hardware
|
1885
1927
|
# Accelerators.
|
1886
1928
|
class GpuSharingConfig
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.46.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 = "20230304"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -232,6 +232,12 @@ module Google
|
|
232
232
|
include Google::Apis::Core::JsonObjectSupport
|
233
233
|
end
|
234
234
|
|
235
|
+
class Fleet
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
235
241
|
class GpuSharingConfig
|
236
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
243
|
|
@@ -1068,6 +1074,8 @@ module Google
|
|
1068
1074
|
property :endpoint, as: 'endpoint'
|
1069
1075
|
property :etag, as: 'etag'
|
1070
1076
|
property :expire_time, as: 'expireTime'
|
1077
|
+
property :fleet, as: 'fleet', class: Google::Apis::ContainerV1::Fleet, decorator: Google::Apis::ContainerV1::Fleet::Representation
|
1078
|
+
|
1071
1079
|
property :id, as: 'id'
|
1072
1080
|
property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1::IdentityServiceConfig::Representation
|
1073
1081
|
|
@@ -1355,6 +1363,15 @@ module Google
|
|
1355
1363
|
end
|
1356
1364
|
end
|
1357
1365
|
|
1366
|
+
class Fleet
|
1367
|
+
# @private
|
1368
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1369
|
+
property :membership, as: 'membership'
|
1370
|
+
property :pre_registered, as: 'preRegistered'
|
1371
|
+
property :project, as: 'project'
|
1372
|
+
end
|
1373
|
+
end
|
1374
|
+
|
1358
1375
|
class GpuSharingConfig
|
1359
1376
|
# @private
|
1360
1377
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.46.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-03-26 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-container_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.46.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|