google-apis-container_v1 0.44.0 → 0.46.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: 3b04aaaf2d4497dccf881c1508d0fd9180fcc22185566a02d451d8ca28b31146
4
- data.tar.gz: 377a65dc2223e437985ad133f7f638137366b70917e458bb676517c120416600
3
+ metadata.gz: b67d9161086df8ac4cadf7ced05b5c1ca1ce6ecaf98a820aec7ab52865d36174
4
+ data.tar.gz: bf2f035f702396c3466798a9bfa447f60f7c481d78d3ec377a7f0cbbbf737160
5
5
  SHA512:
6
- metadata.gz: '0252469ac2fa59adb6b915d4f55c52e062018b1ef0899c1b764464c16f485c607131fa26593990803197a598dbf7845e02c9756e28d55dd3da8ac529483e0e10'
7
- data.tar.gz: a20ae4d0a92094b46d3656aa07411a3606bdee7ba2ee3d7093bb61fe41fa6f6cf4a920185e11c6de95de464064947f643040b14deca7d2eb37fce574e88e0f7d
6
+ metadata.gz: 327c723bc07e43807cd5d04c03aa32210dc2bacdc539a441dc58a5438e2dd5b37ad395e8b5b0ebd53d1c421719cd972e1d09edde549994ea61afc6eca33d2cde
7
+ data.tar.gz: c8a7126931ba22aafa19a716df50669c2e5c5fe779c53b7c40ed54335137e60c8d2ee0a8a37e274a637cdfd8fee004b109062192a8f0ed037a29563989716bf7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.46.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230304
6
+
7
+ ### v0.45.0 (2023-02-26)
8
+
9
+ * Regenerated from discovery document revision 20230207
10
+ * Regenerated using generator version 0.12.0
11
+
3
12
  ### v0.44.0 (2023-01-29)
4
13
 
5
14
  * Regenerated from discovery document revision 20230117
@@ -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
@@ -4004,7 +4046,7 @@ module Google
4004
4046
  end
4005
4047
  end
4006
4048
 
4007
- # Kubernetes taint is comprised of three fields: key, value, and effect. Effect
4049
+ # Kubernetes taint is composed of three fields: key, value, and effect. Effect
4008
4050
  # can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
4009
4051
  # [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
4010
4052
  # for more information, including usage and the valid values.
@@ -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.44.0"
19
+ GEM_VERSION = "0.46.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230117"
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.44.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-01-29 00:00:00.000000000 Z
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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.44.0
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: []