google-cloud-container-v1beta1 0.44.0 → 0.45.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: 31333a25f156dcd7bedb165af33c9fd703e2afb3fd5f71ebc3336944b651f432
4
- data.tar.gz: b9565e85d272c8285ebfc650018bb5ef15453b25a2e7de8d5c02585e9fbb90fa
3
+ metadata.gz: 36cefa461ecebbe52aa35c99c9faa02b1a8f345146f4b28490eb784e7a6ea427
4
+ data.tar.gz: a3e3d1705306825b10a76310f2abff3de881418447409eaab36a29c4ae55b50e
5
5
  SHA512:
6
- metadata.gz: c8295d31f56952edddd84c119c530ec8f3a8bc910b3dabb655c122e75f30e800f786065e69bd5542b063712c86cb9f9f561573fa8261842e49e4810f63590189
7
- data.tar.gz: 1f195a371de615f737df32f88e381fab0dbf29f8be78ffa12de5db26fe899378a59da7cf6091b3291cacf77c380bd1845d042d226608775612e050ac4bd3d485
6
+ metadata.gz: 1879bd8c9d563c4984ca0baee5c24af1c1832d4dce461fe1fae5ef51cfdd35ed1fca910fb952efe2ce91f6074a83467f85242b1da4441685b1d5b5587e31c627
7
+ data.tar.gz: 34b6d46cea4a0e0e0045d5f735416f0e4cb4c4528c03ea28a380f4596ad23b46964d5c215625d3c8b2fad07cb7c208157d29c32301e0cce4750efc0d41ac3ed8
data/README.md CHANGED
@@ -85,7 +85,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
85
85
 
86
86
  ## Supported Ruby Versions
87
87
 
88
- This library is supported on Ruby 2.7+.
88
+ This library is supported on Ruby 3.0+.
89
89
 
90
90
  Google provides official support for Ruby versions that are actively supported
91
91
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -3940,6 +3940,13 @@ module Google
3940
3940
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
3941
3941
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
3942
3942
  # * (`nil`) indicating no credentials
3943
+ #
3944
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
3945
+ # external source for authentication to Google Cloud, you must validate it before
3946
+ # providing it to a Google API client library. Providing an unvalidated credential
3947
+ # configuration to Google APIs can compromise the security of your systems and data.
3948
+ # For more information, refer to [Validate credential configurations from external
3949
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
3943
3950
  # @return [::Object]
3944
3951
  # @!attribute [rw] scope
3945
3952
  # The OAuth scopes
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Container
23
23
  module V1beta1
24
- VERSION = "0.44.0"
24
+ VERSION = "0.45.0"
25
25
  end
26
26
  end
27
27
  end
@@ -2916,12 +2916,18 @@ module Google
2916
2916
  # @!attribute [rw] int_value
2917
2917
  # @return [::Integer]
2918
2918
  # For metrics with integer value.
2919
+ #
2920
+ # Note: The following fields are mutually exclusive: `int_value`, `double_value`, `string_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
2919
2921
  # @!attribute [rw] double_value
2920
2922
  # @return [::Float]
2921
2923
  # For metrics with floating point value.
2924
+ #
2925
+ # Note: The following fields are mutually exclusive: `double_value`, `int_value`, `string_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
2922
2926
  # @!attribute [rw] string_value
2923
2927
  # @return [::String]
2924
2928
  # For metrics with custom values (ratios, visual progress, etc.).
2929
+ #
2930
+ # Note: The following fields are mutually exclusive: `string_value`, `int_value`, `double_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
2925
2931
  class Metric
2926
2932
  include ::Google::Protobuf::MessageExts
2927
2933
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -3868,9 +3874,13 @@ module Google
3868
3874
  # @!attribute [rw] standard_rollout_policy
3869
3875
  # @return [::Google::Cloud::Container::V1beta1::BlueGreenSettings::StandardRolloutPolicy]
3870
3876
  # Standard policy for the blue-green upgrade.
3877
+ #
3878
+ # Note: The following fields are mutually exclusive: `standard_rollout_policy`, `autoscaled_rollout_policy`. If a field in that set is populated, all other fields in the set will automatically be cleared.
3871
3879
  # @!attribute [rw] autoscaled_rollout_policy
3872
3880
  # @return [::Google::Cloud::Container::V1beta1::BlueGreenSettings::AutoscaledRolloutPolicy]
3873
3881
  # Autoscaled policy for cluster autoscaler enabled blue-green upgrade.
3882
+ #
3883
+ # Note: The following fields are mutually exclusive: `autoscaled_rollout_policy`, `standard_rollout_policy`. If a field in that set is populated, all other fields in the set will automatically be cleared.
3874
3884
  # @!attribute [rw] node_pool_soak_duration
3875
3885
  # @return [::Google::Protobuf::Duration]
3876
3886
  # Time needed after draining entire blue pool. After this period, blue pool
@@ -3884,9 +3894,13 @@ module Google
3884
3894
  # @return [::Float]
3885
3895
  # Percentage of the blue pool nodes to drain in a batch.
3886
3896
  # The range of this field should be (0.0, 1.0].
3897
+ #
3898
+ # Note: The following fields are mutually exclusive: `batch_percentage`, `batch_node_count`. If a field in that set is populated, all other fields in the set will automatically be cleared.
3887
3899
  # @!attribute [rw] batch_node_count
3888
3900
  # @return [::Integer]
3889
3901
  # Number of blue nodes to drain in a batch.
3902
+ #
3903
+ # Note: The following fields are mutually exclusive: `batch_node_count`, `batch_percentage`. If a field in that set is populated, all other fields in the set will automatically be cleared.
3890
3904
  # @!attribute [rw] batch_soak_duration
3891
3905
  # @return [::Google::Protobuf::Duration]
3892
3906
  # Soak time after each batch gets drained. Default to zero.
@@ -4259,11 +4273,15 @@ module Google
4259
4273
  # @!attribute [rw] daily_maintenance_window
4260
4274
  # @return [::Google::Cloud::Container::V1beta1::DailyMaintenanceWindow]
4261
4275
  # DailyMaintenanceWindow specifies a daily maintenance operation window.
4276
+ #
4277
+ # Note: The following fields are mutually exclusive: `daily_maintenance_window`, `recurring_window`. If a field in that set is populated, all other fields in the set will automatically be cleared.
4262
4278
  # @!attribute [rw] recurring_window
4263
4279
  # @return [::Google::Cloud::Container::V1beta1::RecurringTimeWindow]
4264
4280
  # RecurringWindow specifies some number of recurring time periods for
4265
4281
  # maintenance to occur. The time windows may be overlapping. If no
4266
4282
  # maintenance windows are set, maintenance can occur at any time.
4283
+ #
4284
+ # Note: The following fields are mutually exclusive: `recurring_window`, `daily_maintenance_window`. If a field in that set is populated, all other fields in the set will automatically be cleared.
4267
4285
  # @!attribute [rw] maintenance_exclusions
4268
4286
  # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Container::V1beta1::TimeWindow}]
4269
4287
  # Exceptions to maintenance window. Non-emergency maintenance should not
@@ -5160,7 +5178,7 @@ module Google
5160
5178
  # @!attribute [r] network
5161
5179
  # @return [::String]
5162
5180
  # Output only. The relative name of the Google Compute Engine
5163
- # {::Google::Cloud::Container::V1beta1::NetworkConfig#network network}(https://cloud.google.com/compute/docs/networks-and-firewalls#networks)
5181
+ # [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks)
5164
5182
  # to which the cluster is connected. Example:
5165
5183
  # projects/my-project/global/networks/my-network
5166
5184
  # @!attribute [r] subnetwork
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-container-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.44.0
4
+ version: 0.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.24.0
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -84,7 +83,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
84
83
  licenses:
85
84
  - Apache-2.0
86
85
  metadata: {}
87
- post_install_message:
88
86
  rdoc_options: []
89
87
  require_paths:
90
88
  - lib
@@ -92,15 +90,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
92
90
  requirements:
93
91
  - - ">="
94
92
  - !ruby/object:Gem::Version
95
- version: '2.7'
93
+ version: '3.0'
96
94
  required_rubygems_version: !ruby/object:Gem::Requirement
97
95
  requirements:
98
96
  - - ">="
99
97
  - !ruby/object:Gem::Version
100
98
  version: '0'
101
99
  requirements: []
102
- rubygems_version: 3.5.23
103
- signing_key:
100
+ rubygems_version: 3.6.2
104
101
  specification_version: 4
105
102
  summary: Builds and manages container-based applications, powered by the open source
106
103
  Kubernetes technology.