google-apis-container_v1beta1 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: 4a52b27b62734794348a341a149a853837b48c52aa622cd227ec0415ab91cf64
4
- data.tar.gz: a48167e86c95e41b08b846f752eea72bf1c8b8bb6e372046a24c6e9c01b2b088
3
+ metadata.gz: 7ad732c38a0eeef288e7b29bf4b2cabb28a2ececc97c91fc04d056996cc3e81a
4
+ data.tar.gz: 4668fa6b9eedfe522a0bb570535db694761acee5c3dca7cf727c26076b3e2e91
5
5
  SHA512:
6
- metadata.gz: cecccacc243cc218b48d63bcadbab5cbbec8277e85c6896fe4ee93d61a1daae99af65afbbaac53ad758d49e7f22dc97bfa8816ad3edeefc42d541f8cf0977f61
7
- data.tar.gz: 7f8a59fe299d46c5bdf19b280f4176fd9128252d5462b8918204ed6c2adcb1b53febacf3ec54b8d6c7546d3ecf9d57aafbbea183b60ed081265c9cb0baf3e995
6
+ metadata.gz: 5f6ed4e3a5e3d8a6e12a241b8ab37c88ed8bef32d016e207fb777b7af92d6aa24a40a40c3b2945f77be0903c78ea1f7651b55f9dc3fdeaa43b6191a2a43ab9c6
7
+ data.tar.gz: c1e027f2c1963fbb7b3c7129b77e70f44b61de7f2438b6c92d7ee47c9b1b6ac0ab59c900307e8b07d2ac82e95e48aed4a20b0240d29f8623060e24213b8b5748
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.46.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230304
6
+
7
+ ### v0.45.0 (2023-02-19)
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
@@ -773,6 +773,11 @@ module Google
773
773
  # @return [String]
774
774
  attr_accessor :expire_time
775
775
 
776
+ # Fleet is the fleet configuration for the cluster.
777
+ # Corresponds to the JSON property `fleet`
778
+ # @return [Google::Apis::ContainerV1beta1::Fleet]
779
+ attr_accessor :fleet
780
+
776
781
  # Output only. Unique id for the cluster.
777
782
  # Corresponds to the JSON property `id`
778
783
  # @return [String]
@@ -1131,6 +1136,7 @@ module Google
1131
1136
  @endpoint = args[:endpoint] if args.key?(:endpoint)
1132
1137
  @etag = args[:etag] if args.key?(:etag)
1133
1138
  @expire_time = args[:expire_time] if args.key?(:expire_time)
1139
+ @fleet = args[:fleet] if args.key?(:fleet)
1134
1140
  @id = args[:id] if args.key?(:id)
1135
1141
  @identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
1136
1142
  @initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
@@ -2122,6 +2128,42 @@ module Google
2122
2128
  end
2123
2129
  end
2124
2130
 
2131
+ # Fleet is the fleet configuration for the cluster.
2132
+ class Fleet
2133
+ include Google::Apis::Core::Hashable
2134
+
2135
+ # [Output only] The full resource name of the registered fleet membership of the
2136
+ # cluster, in the format `//gkehub.googleapis.com/projects/*/locations/*/
2137
+ # memberships/*`.
2138
+ # Corresponds to the JSON property `membership`
2139
+ # @return [String]
2140
+ attr_accessor :membership
2141
+
2142
+ # [Output only] Whether the cluster has been registered through the fleet API.
2143
+ # Corresponds to the JSON property `preRegistered`
2144
+ # @return [Boolean]
2145
+ attr_accessor :pre_registered
2146
+ alias_method :pre_registered?, :pre_registered
2147
+
2148
+ # The Fleet host project(project ID or project number) where this cluster will
2149
+ # be registered to. This field cannot be changed after the cluster has been
2150
+ # registered.
2151
+ # Corresponds to the JSON property `project`
2152
+ # @return [String]
2153
+ attr_accessor :project
2154
+
2155
+ def initialize(**args)
2156
+ update!(**args)
2157
+ end
2158
+
2159
+ # Update properties of this object
2160
+ def update!(**args)
2161
+ @membership = args[:membership] if args.key?(:membership)
2162
+ @pre_registered = args[:pre_registered] if args.key?(:pre_registered)
2163
+ @project = args[:project] if args.key?(:project)
2164
+ end
2165
+ end
2166
+
2125
2167
  # GPUSharingConfig represents the GPU sharing configuration for Hardware
2126
2168
  # Accelerators.
2127
2169
  class GpuSharingConfig
@@ -4389,7 +4431,7 @@ module Google
4389
4431
  end
4390
4432
  end
4391
4433
 
4392
- # Kubernetes taint is comprised of three fields: key, value, and effect. Effect
4434
+ # Kubernetes taint is composed of three fields: key, value, and effect. Effect
4393
4435
  # can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
4394
4436
  # [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
4395
4437
  # for more information, including usage and the valid values.
@@ -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.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
@@ -256,6 +256,12 @@ module Google
256
256
  include Google::Apis::Core::JsonObjectSupport
257
257
  end
258
258
 
259
+ class Fleet
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
259
265
  class GpuSharingConfig
260
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
267
 
@@ -1185,6 +1191,8 @@ module Google
1185
1191
  property :endpoint, as: 'endpoint'
1186
1192
  property :etag, as: 'etag'
1187
1193
  property :expire_time, as: 'expireTime'
1194
+ property :fleet, as: 'fleet', class: Google::Apis::ContainerV1beta1::Fleet, decorator: Google::Apis::ContainerV1beta1::Fleet::Representation
1195
+
1188
1196
  property :id, as: 'id'
1189
1197
  property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
1190
1198
 
@@ -1523,6 +1531,15 @@ module Google
1523
1531
  end
1524
1532
  end
1525
1533
 
1534
+ class Fleet
1535
+ # @private
1536
+ class Representation < Google::Apis::Core::JsonRepresentation
1537
+ property :membership, as: 'membership'
1538
+ property :pre_registered, as: 'preRegistered'
1539
+ property :project, as: 'project'
1540
+ end
1541
+ end
1542
+
1526
1543
  class GpuSharingConfig
1527
1544
  # @private
1528
1545
  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.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-19 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.44.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.46.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []