google-cloud-container-v1 0.12.0 → 0.13.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a8e1dfa894f159b41ddfdcc35533d2f43748f1b28f92b156c85e4c8f89acbd8
|
4
|
+
data.tar.gz: 8a0595406eef4bb4bd2e8322990acf8490d7c20d24afddc0d8278277fdd087c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd058bf190e9850fff92d7802b89078c360b34fec237acdb66de0ba9c64bc60dbba1ad8faa73187b3f802babdc34302bbac5030a7dce7a7bfcfbf7029fe74aef
|
7
|
+
data.tar.gz: 86588e96fd50b8afca0ceb4305c57c0eb7dfc45c59ad88ef8698bcf55ad094404d5351820f5a461ef9090c7c8f0478a553262a5b368c92f9d21b6029d4d3d733
|
data/README.md
CHANGED
@@ -46,7 +46,7 @@ for general usage information.
|
|
46
46
|
## Enabling Logging
|
47
47
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
49
|
-
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/
|
49
|
+
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
50
50
|
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
@@ -650,7 +650,7 @@ module Google
|
|
650
650
|
# @param options [::Gapic::CallOptions, ::Hash]
|
651
651
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
652
652
|
#
|
653
|
-
# @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, node_network_config: nil, gcfs_config: nil, confidential_nodes: nil, gvnic: nil, logging_config: nil, resource_labels: nil)
|
653
|
+
# @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, node_network_config: nil, gcfs_config: nil, confidential_nodes: nil, gvnic: nil, fast_socket: nil, logging_config: nil, resource_labels: nil)
|
654
654
|
# Pass arguments to `update_node_pool` via keyword arguments. Note that at
|
655
655
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
656
656
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
@@ -723,6 +723,8 @@ module Google
|
|
723
723
|
# All the nodes in the node pool will be Confidential VM once enabled.
|
724
724
|
# @param gvnic [::Google::Cloud::Container::V1::VirtualNIC, ::Hash]
|
725
725
|
# Enable or disable gvnic on the node pool.
|
726
|
+
# @param fast_socket [::Google::Cloud::Container::V1::FastSocket, ::Hash]
|
727
|
+
# Enable or disable NCCL fast socket for the node pool.
|
726
728
|
# @param logging_config [::Google::Cloud::Container::V1::NodePoolLoggingConfig, ::Hash]
|
727
729
|
# Logging configuration.
|
728
730
|
# @param resource_labels [::Google::Cloud::Container::V1::ResourceLabels, ::Hash]
|
@@ -59,6 +59,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
59
59
|
optional :gvnic, :message, 29, "google.container.v1.VirtualNIC"
|
60
60
|
optional :spot, :bool, 32
|
61
61
|
optional :confidential_nodes, :message, 35, "google.container.v1.ConfidentialNodes"
|
62
|
+
proto3_optional :fast_socket, :message, 36, "google.container.v1.FastSocket"
|
62
63
|
map :resource_labels, :string, :string, 37
|
63
64
|
optional :logging_config, :message, 38, "google.container.v1.NodePoolLoggingConfig"
|
64
65
|
end
|
@@ -468,6 +469,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
468
469
|
optional :gcfs_config, :message, 22, "google.container.v1.GcfsConfig"
|
469
470
|
optional :confidential_nodes, :message, 23, "google.container.v1.ConfidentialNodes"
|
470
471
|
optional :gvnic, :message, 29, "google.container.v1.VirtualNIC"
|
472
|
+
optional :fast_socket, :message, 31, "google.container.v1.FastSocket"
|
471
473
|
optional :logging_config, :message, 32, "google.container.v1.NodePoolLoggingConfig"
|
472
474
|
optional :resource_labels, :message, 33, "google.container.v1.ResourceLabels"
|
473
475
|
end
|
@@ -1036,6 +1038,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
1036
1038
|
add_message "google.container.v1.VirtualNIC" do
|
1037
1039
|
optional :enabled, :bool, 1
|
1038
1040
|
end
|
1041
|
+
add_message "google.container.v1.FastSocket" do
|
1042
|
+
optional :enabled, :bool, 1
|
1043
|
+
end
|
1039
1044
|
add_message "google.container.v1.NotificationConfig" do
|
1040
1045
|
optional :pubsub, :message, 1, "google.container.v1.NotificationConfig.PubSub"
|
1041
1046
|
end
|
@@ -1325,6 +1330,7 @@ module Google
|
|
1325
1330
|
DefaultSnatStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.DefaultSnatStatus").msgclass
|
1326
1331
|
ShieldedNodes = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ShieldedNodes").msgclass
|
1327
1332
|
VirtualNIC = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.VirtualNIC").msgclass
|
1333
|
+
FastSocket = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.FastSocket").msgclass
|
1328
1334
|
NotificationConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NotificationConfig").msgclass
|
1329
1335
|
NotificationConfig::PubSub = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NotificationConfig.PubSub").msgclass
|
1330
1336
|
NotificationConfig::Filter = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NotificationConfig.Filter").msgclass
|
@@ -302,6 +302,9 @@ module Google
|
|
302
302
|
# @return [::Google::Cloud::Container::V1::ConfidentialNodes]
|
303
303
|
# Confidential nodes config.
|
304
304
|
# All the nodes in the node pool will be Confidential VM once enabled.
|
305
|
+
# @!attribute [rw] fast_socket
|
306
|
+
# @return [::Google::Cloud::Container::V1::FastSocket]
|
307
|
+
# Enable or disable NCCL fast socket for the node pool.
|
305
308
|
# @!attribute [rw] resource_labels
|
306
309
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
307
310
|
# The resource labels for the node pool to use to annotate any related
|
@@ -953,9 +956,8 @@ module Google
|
|
953
956
|
# anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.
|
954
957
|
# @!attribute [rw] evaluation_mode
|
955
958
|
# @return [::Google::Cloud::Container::V1::BinaryAuthorization::EvaluationMode]
|
956
|
-
# Mode of operation for binauthz policy evaluation.
|
957
|
-
#
|
958
|
-
# DISABLED.
|
959
|
+
# Mode of operation for binauthz policy evaluation. If unspecified, defaults
|
960
|
+
# to DISABLED.
|
959
961
|
class BinaryAuthorization
|
960
962
|
include ::Google::Protobuf::MessageExts
|
961
963
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -2013,6 +2015,9 @@ module Google
|
|
2013
2015
|
# @!attribute [rw] gvnic
|
2014
2016
|
# @return [::Google::Cloud::Container::V1::VirtualNIC]
|
2015
2017
|
# Enable or disable gvnic on the node pool.
|
2018
|
+
# @!attribute [rw] fast_socket
|
2019
|
+
# @return [::Google::Cloud::Container::V1::FastSocket]
|
2020
|
+
# Enable or disable NCCL fast socket for the node pool.
|
2016
2021
|
# @!attribute [rw] logging_config
|
2017
2022
|
# @return [::Google::Cloud::Container::V1::NodePoolLoggingConfig]
|
2018
2023
|
# Logging configuration.
|
@@ -4209,6 +4214,15 @@ module Google
|
|
4209
4214
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4210
4215
|
end
|
4211
4216
|
|
4217
|
+
# Configuration of Fast Socket feature.
|
4218
|
+
# @!attribute [rw] enabled
|
4219
|
+
# @return [::Boolean]
|
4220
|
+
# Whether Fast Socket features are enabled in the node pool.
|
4221
|
+
class FastSocket
|
4222
|
+
include ::Google::Protobuf::MessageExts
|
4223
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4224
|
+
end
|
4225
|
+
|
4212
4226
|
# NotificationConfig is the configuration of notifications.
|
4213
4227
|
# @!attribute [rw] pubsub
|
4214
4228
|
# @return [::Google::Cloud::Container::V1::NotificationConfig::PubSub]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-container-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.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: 2022-
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|