google-apis-container_v1beta1 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: e313c378df56ce38485d56a620f5d1151feb65c2264f77581468d9a2d2ecfce0
4
- data.tar.gz: ead7c36ca4a7f84483b583281d5f32c0ac44fa2400b4f9d6e2f20e3efc710d2e
3
+ metadata.gz: 7ad732c38a0eeef288e7b29bf4b2cabb28a2ececc97c91fc04d056996cc3e81a
4
+ data.tar.gz: 4668fa6b9eedfe522a0bb570535db694761acee5c3dca7cf727c26076b3e2e91
5
5
  SHA512:
6
- metadata.gz: 7a5bbe43b557ee1a1e68d4bdf6bf0fb8448e89d43b7d43277859f502b2856d59fb6651c4aa19254d80c45621cc56a45898e528245aadcdf05c1baa19fa1d4116
7
- data.tar.gz: 197fda813268e2a86607d886379d5aee945e6b47ece2f5907e51fad1aee7276a40090552afd5fc0d8f658b2667de60a6d49ae93585a1c1828c609c27542c505c
6
+ metadata.gz: 5f6ed4e3a5e3d8a6e12a241b8ab37c88ed8bef32d016e207fb777b7af92d6aa24a40a40c3b2945f77be0903c78ea1f7651b55f9dc3fdeaa43b6191a2a43ab9c6
7
+ data.tar.gz: c1e027f2c1963fbb7b3c7129b77e70f44b61de7f2438b6c92d7ee47c9b1b6ac0ab59c900307e8b07d2ac82e95e48aed4a20b0240d29f8623060e24213b8b5748
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.45.0 (2023-02-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20230207
@@ -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
@@ -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.45.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 = "20230207"
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.45.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-02-19 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
@@ -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.45.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: []