google-apis-container_v1 0.56.0 → 0.57.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: b82bc844cbae5eddc256321de3e6f4c693ca41501edc08a39cfd4c165f8ae3af
|
4
|
+
data.tar.gz: 77555c614748bb649d23073d72ba580513b6d05105d59e4090876b5a1ec26dd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7dc631fb034f022e86d2ea81dd52f6d7c519ac3cb0dfbd138ddc6172b0ea51cdba0280f9400d6e7aaa17f7eef3f91f66914c825fc0d9f9afec0aa96814bfba4
|
7
|
+
data.tar.gz: d295c9b6978ad9aae352897394e38d40b4737d3a630d488d0c0e84127998a038dda84ae6177e327f44c1ebf8f75a3e51803c06ade52c2ca5398eedfd3ceafaf7
|
data/CHANGELOG.md
CHANGED
@@ -4820,6 +4820,12 @@ module Google
|
|
4820
4820
|
# @return [String]
|
4821
4821
|
attr_accessor :policy_name
|
4822
4822
|
|
4823
|
+
# Optional. TPU placement topology for pod slice node pool. https://cloud.google.
|
4824
|
+
# com/tpu/docs/types-topologies#tpu_topologies
|
4825
|
+
# Corresponds to the JSON property `tpuTopology`
|
4826
|
+
# @return [String]
|
4827
|
+
attr_accessor :tpu_topology
|
4828
|
+
|
4823
4829
|
# The type of placement.
|
4824
4830
|
# Corresponds to the JSON property `type`
|
4825
4831
|
# @return [String]
|
@@ -4832,6 +4838,7 @@ module Google
|
|
4832
4838
|
# Update properties of this object
|
4833
4839
|
def update!(**args)
|
4834
4840
|
@policy_name = args[:policy_name] if args.key?(:policy_name)
|
4841
|
+
@tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
|
4835
4842
|
@type = args[:type] if args.key?(:type)
|
4836
4843
|
end
|
4837
4844
|
end
|
@@ -6529,6 +6536,20 @@ module Google
|
|
6529
6536
|
# @return [Google::Apis::ContainerV1::ConfidentialNodes]
|
6530
6537
|
attr_accessor :confidential_nodes
|
6531
6538
|
|
6539
|
+
# Optional. The desired disk size for nodes in the node pool specified in GB.
|
6540
|
+
# The smallest allowed disk size is 10GB. Initiates an upgrade operation that
|
6541
|
+
# migrates the nodes in the node pool to the specified disk size.
|
6542
|
+
# Corresponds to the JSON property `diskSizeGb`
|
6543
|
+
# @return [Fixnum]
|
6544
|
+
attr_accessor :disk_size_gb
|
6545
|
+
|
6546
|
+
# Optional. The desired disk type (e.g. 'pd-standard', 'pd-ssd' or 'pd-balanced')
|
6547
|
+
# for nodes in the node pool. Initiates an upgrade operation that migrates the
|
6548
|
+
# nodes in the node pool to the specified disk type.
|
6549
|
+
# Corresponds to the JSON property `diskType`
|
6550
|
+
# @return [String]
|
6551
|
+
attr_accessor :disk_type
|
6552
|
+
|
6532
6553
|
# The current etag of the node pool. If an etag is provided and does not match
|
6533
6554
|
# the current etag of the node pool, update will be blocked and an ABORTED error
|
6534
6555
|
# will be returned.
|
@@ -6589,6 +6610,14 @@ module Google
|
|
6589
6610
|
# @return [Google::Apis::ContainerV1::NodePoolLoggingConfig]
|
6590
6611
|
attr_accessor :logging_config
|
6591
6612
|
|
6613
|
+
# Optional. The desired [Google Compute Engine machine type](https://cloud.
|
6614
|
+
# google.com/compute/docs/machine-types) for nodes in the node pool. Initiates
|
6615
|
+
# an upgrade operation that migrates the nodes in the node pool to the specified
|
6616
|
+
# machine type.
|
6617
|
+
# Corresponds to the JSON property `machineType`
|
6618
|
+
# @return [String]
|
6619
|
+
attr_accessor :machine_type
|
6620
|
+
|
6592
6621
|
# The name (project, location, cluster, node pool) of the node pool to update.
|
6593
6622
|
# Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.
|
6594
6623
|
# Corresponds to the JSON property `name`
|
@@ -6705,6 +6734,8 @@ module Google
|
|
6705
6734
|
def update!(**args)
|
6706
6735
|
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
6707
6736
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
6737
|
+
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
6738
|
+
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
6708
6739
|
@etag = args[:etag] if args.key?(:etag)
|
6709
6740
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
6710
6741
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
@@ -6715,6 +6746,7 @@ module Google
|
|
6715
6746
|
@linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
|
6716
6747
|
@locations = args[:locations] if args.key?(:locations)
|
6717
6748
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
6749
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
6718
6750
|
@name = args[:name] if args.key?(:name)
|
6719
6751
|
@node_network_config = args[:node_network_config] if args.key?(:node_network_config)
|
6720
6752
|
@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 ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.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 = "20230809"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2252,6 +2252,7 @@ module Google
|
|
2252
2252
|
# @private
|
2253
2253
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2254
2254
|
property :policy_name, as: 'policyName'
|
2255
|
+
property :tpu_topology, as: 'tpuTopology'
|
2255
2256
|
property :type, as: 'type'
|
2256
2257
|
end
|
2257
2258
|
end
|
@@ -2678,6 +2679,8 @@ module Google
|
|
2678
2679
|
property :cluster_id, as: 'clusterId'
|
2679
2680
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
|
2680
2681
|
|
2682
|
+
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
2683
|
+
property :disk_type, as: 'diskType'
|
2681
2684
|
property :etag, as: 'etag'
|
2682
2685
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
|
2683
2686
|
|
@@ -2695,6 +2698,7 @@ module Google
|
|
2695
2698
|
collection :locations, as: 'locations'
|
2696
2699
|
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
|
2697
2700
|
|
2701
|
+
property :machine_type, as: 'machineType'
|
2698
2702
|
property :name, as: 'name'
|
2699
2703
|
property :node_network_config, as: 'nodeNetworkConfig', class: Google::Apis::ContainerV1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1::NodeNetworkConfig::Representation
|
2700
2704
|
|
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.57.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-08-27 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.57.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: []
|
@@ -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.
|
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 V1
|