google-cloud-container-v1 0.13.0 → 0.14.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: 8a8e1dfa894f159b41ddfdcc35533d2f43748f1b28f92b156c85e4c8f89acbd8
4
- data.tar.gz: 8a0595406eef4bb4bd2e8322990acf8490d7c20d24afddc0d8278277fdd087c0
3
+ metadata.gz: 5ae995acf44ae5a846f5ad51746d1edd7b63ae179ab12292ddb5ee3411cedb07
4
+ data.tar.gz: c34af62ee3f8c28f227a56dc7f0b6d72c2760c60959af771fafa9dc2915f80f8
5
5
  SHA512:
6
- metadata.gz: cd058bf190e9850fff92d7802b89078c360b34fec237acdb66de0ba9c64bc60dbba1ad8faa73187b3f802babdc34302bbac5030a7dce7a7bfcfbf7029fe74aef
7
- data.tar.gz: 86588e96fd50b8afca0ceb4305c57c0eb7dfc45c59ad88ef8698bcf55ad094404d5351820f5a461ef9090c7c8f0478a553262a5b368c92f9d21b6029d4d3d733
6
+ metadata.gz: a6648c52455f95866f6ec6439f7559558139e966ec888dc93144c3f01e58e788ced6defd090eaa63679a8b5eed7745ec787c9868fbb6e80c5fda6db426d1a76b
7
+ data.tar.gz: 810a9a0f63f81daf197138f9a7708a915cfae47371015cdbd03af1a7b775d1e4e15510064e1286e61b906a6e329dcd140800b3c121b26a409cce847727dbb4fb
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Container
23
23
  module V1
24
- VERSION = "0.13.0"
24
+ VERSION = "0.14.0"
25
25
  end
26
26
  end
27
27
  end
@@ -372,6 +372,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
372
372
  optional :desired_node_pool_auto_config_network_tags, :message, 110, "google.container.v1.NetworkTags"
373
373
  optional :desired_gateway_api_config, :message, 114, "google.container.v1.GatewayAPIConfig"
374
374
  optional :desired_node_pool_logging_config, :message, 116, "google.container.v1.NodePoolLoggingConfig"
375
+ optional :desired_stack_type, :enum, 119, "google.container.v1.StackType"
375
376
  end
376
377
  add_message "google.container.v1.Operation" do
377
378
  optional :name, :string, 1
@@ -1666,6 +1666,11 @@ module Google
1666
1666
  # @!attribute [rw] desired_node_pool_logging_config
1667
1667
  # @return [::Google::Cloud::Container::V1::NodePoolLoggingConfig]
1668
1668
  # The desired node pool logging configuration defaults for the cluster.
1669
+ # @!attribute [rw] desired_stack_type
1670
+ # @return [::Google::Cloud::Container::V1::StackType]
1671
+ # The desired stack type of the cluster.
1672
+ # If a stack type is provided and does not match the current stack type of
1673
+ # the cluster, update will attempt to change the stack type to the new type.
1669
1674
  class ClusterUpdate
1670
1675
  include ::Google::Protobuf::MessageExts
1671
1676
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -27,7 +27,7 @@ module Google
27
27
  # `OUT_OF_RANGE` over `FAILED_PRECONDITION` if both codes apply.
28
28
  # Similarly prefer `NOT_FOUND` or `ALREADY_EXISTS` over `FAILED_PRECONDITION`.
29
29
  module Code
30
- # Not an error; returned on success
30
+ # Not an error; returned on success.
31
31
  #
32
32
  # HTTP Mapping: 200 OK
33
33
  OK = 0
@@ -66,7 +66,7 @@ module Google
66
66
  # Some requested entity (e.g., file or directory) was not found.
67
67
  #
68
68
  # Note to server developers: if a request is denied for an entire class
69
- # of users, such as gradual feature rollout or undocumented whitelist,
69
+ # of users, such as gradual feature rollout or undocumented allowlist,
70
70
  # `NOT_FOUND` may be used. If a request is denied for some users within
71
71
  # a class of users, such as user-based access control, `PERMISSION_DENIED`
72
72
  # must be used.
@@ -112,11 +112,11 @@ module Google
112
112
  # Service implementors can use the following guidelines to decide
113
113
  # between `FAILED_PRECONDITION`, `ABORTED`, and `UNAVAILABLE`:
114
114
  # (a) Use `UNAVAILABLE` if the client can retry just the failing call.
115
- # (b) Use `ABORTED` if the client should retry at a higher level
116
- # (e.g., when a client-specified test-and-set fails, indicating the
117
- # client should restart a read-modify-write sequence).
115
+ # (b) Use `ABORTED` if the client should retry at a higher level. For
116
+ # example, when a client-specified test-and-set fails, indicating the
117
+ # client should restart a read-modify-write sequence.
118
118
  # (c) Use `FAILED_PRECONDITION` if the client should not retry until
119
- # the system state has been explicitly fixed. E.g., if an "rmdir"
119
+ # the system state has been explicitly fixed. For example, if an "rmdir"
120
120
  # fails because the directory is non-empty, `FAILED_PRECONDITION`
121
121
  # should be returned since the client should not retry unless
122
122
  # the files are deleted from the directory.
@@ -28,12 +28,14 @@ module Google
28
28
  # [API Design Guide](https://cloud.google.com/apis/design/errors).
29
29
  # @!attribute [rw] code
30
30
  # @return [::Integer]
31
- # The status code, which should be an enum value of {::Google::Rpc::Code google.rpc.Code}.
31
+ # The status code, which should be an enum value of
32
+ # {::Google::Rpc::Code google.rpc.Code}.
32
33
  # @!attribute [rw] message
33
34
  # @return [::String]
34
35
  # A developer-facing error message, which should be in English. Any
35
36
  # user-facing error message should be localized and sent in the
36
- # {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized by the client.
37
+ # {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
38
+ # by the client.
37
39
  # @!attribute [rw] details
38
40
  # @return [::Array<::Google::Protobuf::Any>]
39
41
  # A list of messages that carry the error details. There is a common set of
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.13.0
4
+ version: 0.14.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-12-09 00:00:00.000000000 Z
11
+ date: 2022-12-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common