google-apis-container_v1beta1 0.56.0 → 0.58.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: 5b5aa3f8d41821db6c8f59f541e240eabf93eb417fc4e24d61ae05594b1a6602
4
- data.tar.gz: 3e6c70be4b1e4786aa2e63ad75160f66678d08d38fb822cb167165bb0dd35839
3
+ metadata.gz: 94274995caa757c4019fd90f3379112237db206864b480dc1256dd9927a77c7d
4
+ data.tar.gz: 355cbf1f475c58fe890251cb21df8dcf7cbc801b5643781e813fd5a891177def
5
5
  SHA512:
6
- metadata.gz: 73a32aaf429d30490af43d0c2c5c440dd37f4f0993c7e918124124a2ee7e989a72eff4b364337fa1ddf3a17905e27557cdf0c7f946dd01a6636095f5e154b31b
7
- data.tar.gz: b94b767601edad00d17023e79ace5c8087d80b6d1df612d5961c786d1519eb42f5f3f2f95e9e574470e9da519636ef31b9bd9c51efb70557cea00e4c9f8aca5e
6
+ metadata.gz: 96f48f0fc141625a9ee64e7aced7b315b3ce80cebcd8c09978f9cac1779f95d875a869adf390b160726656e74af2dcb87f8878607ec399938be6eae97b7ff1de
7
+ data.tar.gz: b12abf451226f30138f87459d91dfb48471c4d849a76516d73a4c34a87b3faeed1960fba26dc91dc567e0e14b849c9e69897d6fb1bdda1f0af987ff9f0a0c084
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.58.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230914
6
+
7
+ ### v0.57.0 (2023-08-27)
8
+
9
+ * Regenerated from discovery document revision 20230810
10
+
3
11
  ### v0.56.0 (2023-08-13)
4
12
 
5
13
  * Regenerated from discovery document revision 20230802
@@ -4190,6 +4190,14 @@ module Google
4190
4190
  # @return [String]
4191
4191
  attr_accessor :disk_type
4192
4192
 
4193
+ # Optional. Enable confidential storage on Hyperdisk. boot_disk_kms_key is
4194
+ # required when enable_confidential_storage is true. This is only available for
4195
+ # private preview.
4196
+ # Corresponds to the JSON property `enableConfidentialStorage`
4197
+ # @return [Boolean]
4198
+ attr_accessor :enable_confidential_storage
4199
+ alias_method :enable_confidential_storage?, :enable_confidential_storage
4200
+
4193
4201
  # EphemeralStorageConfig contains configuration for the ephemeral storage
4194
4202
  # filesystem.
4195
4203
  # Corresponds to the JSON property `ephemeralStorageConfig`
@@ -4416,6 +4424,7 @@ module Google
4416
4424
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
4417
4425
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
4418
4426
  @disk_type = args[:disk_type] if args.key?(:disk_type)
4427
+ @enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
4419
4428
  @ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
4420
4429
  @ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
4421
4430
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
@@ -7089,6 +7098,20 @@ module Google
7089
7098
  # @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
7090
7099
  attr_accessor :confidential_nodes
7091
7100
 
7101
+ # Optional. The desired disk size for nodes in the node pool. Initiates an
7102
+ # upgrade operation that migrates the nodes in the node pool to the specified
7103
+ # disk size.
7104
+ # Corresponds to the JSON property `diskSizeGb`
7105
+ # @return [Fixnum]
7106
+ attr_accessor :disk_size_gb
7107
+
7108
+ # Optional. The desired disk type for nodes in the node pool. Initiates an
7109
+ # upgrade operation that migrates the nodes in the node pool to the specified
7110
+ # disk type.
7111
+ # Corresponds to the JSON property `diskType`
7112
+ # @return [String]
7113
+ attr_accessor :disk_type
7114
+
7092
7115
  # The current etag of the node pool. If an etag is provided and does not match
7093
7116
  # the current etag of the node pool, update will be blocked and an ABORTED error
7094
7117
  # will be returned.
@@ -7148,6 +7171,13 @@ module Google
7148
7171
  # @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
7149
7172
  attr_accessor :logging_config
7150
7173
 
7174
+ # Optional. The desired machine type for nodes in the node pool. Initiates an
7175
+ # upgrade operation that migrates the nodes in the node pool to the specified
7176
+ # machine type.
7177
+ # Corresponds to the JSON property `machineType`
7178
+ # @return [String]
7179
+ attr_accessor :machine_type
7180
+
7151
7181
  # The name (project, location, cluster, node pool) of the node pool to update.
7152
7182
  # Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.
7153
7183
  # Corresponds to the JSON property `name`
@@ -7251,6 +7281,8 @@ module Google
7251
7281
  def update!(**args)
7252
7282
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
7253
7283
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
7284
+ @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
7285
+ @disk_type = args[:disk_type] if args.key?(:disk_type)
7254
7286
  @etag = args[:etag] if args.key?(:etag)
7255
7287
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
7256
7288
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
@@ -7261,6 +7293,7 @@ module Google
7261
7293
  @linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
7262
7294
  @locations = args[:locations] if args.key?(:locations)
7263
7295
  @logging_config = args[:logging_config] if args.key?(:logging_config)
7296
+ @machine_type = args[:machine_type] if args.key?(:machine_type)
7264
7297
  @name = args[:name] if args.key?(:name)
7265
7298
  @node_network_config = args[:node_network_config] if args.key?(:node_network_config)
7266
7299
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
@@ -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.56.0"
19
+ GEM_VERSION = "0.58.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 = "20230802"
25
+ REVISION = "20230914"
26
26
  end
27
27
  end
28
28
  end
@@ -2242,6 +2242,7 @@ module Google
2242
2242
 
2243
2243
  property :disk_size_gb, as: 'diskSizeGb'
2244
2244
  property :disk_type, as: 'diskType'
2245
+ property :enable_confidential_storage, as: 'enableConfidentialStorage'
2245
2246
  property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
2246
2247
 
2247
2248
  property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageLocalSsdConfig::Representation
@@ -2954,6 +2955,8 @@ module Google
2954
2955
  property :cluster_id, as: 'clusterId'
2955
2956
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
2956
2957
 
2958
+ property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
2959
+ property :disk_type, as: 'diskType'
2957
2960
  property :etag, as: 'etag'
2958
2961
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
2959
2962
 
@@ -2971,6 +2974,7 @@ module Google
2971
2974
  collection :locations, as: 'locations'
2972
2975
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
2973
2976
 
2977
+ property :machine_type, as: 'machineType'
2974
2978
  property :name, as: 'name'
2975
2979
  property :node_network_config, as: 'nodeNetworkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
2976
2980
 
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.56.0
4
+ version: 0.58.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-08-13 00:00:00.000000000 Z
11
+ date: 2023-09-24 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.56.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.58.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Kubernetes Engine API V1beta1