google-apis-redis_v1beta1 0.75.0 → 0.76.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: 300e602ad6d6b4e0e24f56214355e9afd9cfbf6851b1d3a5631143175f423910
4
- data.tar.gz: 13b15d39d8aa988fc620688a648bc5aecca7b0c3a67dcfbd2ec654ffd48f0ccb
3
+ metadata.gz: 18337f21c101f19396dc230ede8e7eb5914f784655ad27c793ecd603a9bb7050
4
+ data.tar.gz: bccce8c8ffcd1f86aa93840417dd073877e85f16e66d5391d883b3c2af8921c0
5
5
  SHA512:
6
- metadata.gz: 13fcc7b2d7b08cd6da83958a45c561657d0d8b30d6c13b0fae23d3d8bb3cb4a14927aee46f7491e4123b01aea36b56d59256b48ad426b70a219e5905f45ee80d
7
- data.tar.gz: aeb99753d2c21ef67e07ec157253ece38ca2c80c58691f35f2843128db39b2602f565408440271992d13de1f76ce9479c63d9ba38772299360de8b48837480a3
6
+ metadata.gz: b3995589e694466b6a9b7f0372066fcde6bbe8d86055c860fd7fb52327f2879a6552ab88ec6b97c94270587dd2598ea8e46a64afb2103917e98195952dd84cd6
7
+ data.tar.gz: 94bb999f3c44008a0081a2bb9894336df2a89809d1111b91a5043389c91c6b6133b4bf447e3c4c4a2d79a1995952e1f0225673ef0fce00b2bf0e98eaa1940141
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.76.0 (2026-01-11)
4
+
5
+ * Regenerated from discovery document revision 20260107
6
+
3
7
  ### v0.75.0 (2025-11-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20251104
@@ -2727,8 +2727,9 @@ module Google
2727
2727
  attr_accessor :operations
2728
2728
 
2729
2729
  # Unordered list. Unreachable resources. Populated when the request sets `
2730
- # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2731
- # when attempting to list all resources across all supported locations.
2730
+ # ListOperationsRequest.return_partial_success` and reads across collections.
2731
+ # For example, when attempting to list all resources across all supported
2732
+ # locations.
2732
2733
  # Corresponds to the JSON property `unreachable`
2733
2734
  # @return [Array<String>]
2734
2735
  attr_accessor :unreachable
@@ -2799,12 +2800,24 @@ module Google
2799
2800
  class MachineConfiguration
2800
2801
  include Google::Apis::Core::Hashable
2801
2802
 
2803
+ # Optional. Baseline slots for BigQuery Reservations. Baseline slots are in
2804
+ # increments of 50.
2805
+ # Corresponds to the JSON property `baselineSlots`
2806
+ # @return [Fixnum]
2807
+ attr_accessor :baseline_slots
2808
+
2802
2809
  # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
2803
2810
  # proto validations again after bug fix.
2804
2811
  # Corresponds to the JSON property `cpuCount`
2805
2812
  # @return [Fixnum]
2806
2813
  attr_accessor :cpu_count
2807
2814
 
2815
+ # Optional. Max slots for BigQuery Reservations. Max slots are in increments of
2816
+ # 50.
2817
+ # Corresponds to the JSON property `maxReservationSlots`
2818
+ # @return [Fixnum]
2819
+ attr_accessor :max_reservation_slots
2820
+
2808
2821
  # Memory size in bytes. TODO(b/342344482) add proto validations again after bug
2809
2822
  # fix.
2810
2823
  # Corresponds to the JSON property `memorySizeInBytes`
@@ -2828,7 +2841,9 @@ module Google
2828
2841
 
2829
2842
  # Update properties of this object
2830
2843
  def update!(**args)
2844
+ @baseline_slots = args[:baseline_slots] if args.key?(:baseline_slots)
2831
2845
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
2846
+ @max_reservation_slots = args[:max_reservation_slots] if args.key?(:max_reservation_slots)
2832
2847
  @memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
2833
2848
  @shard_count = args[:shard_count] if args.key?(:shard_count)
2834
2849
  @vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RedisV1beta1
18
18
  # Version of the google-apis-redis_v1beta1 gem
19
- GEM_VERSION = "0.75.0"
19
+ GEM_VERSION = "0.76.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251104"
25
+ REVISION = "20260107"
26
26
  end
27
27
  end
28
28
  end
@@ -1320,7 +1320,9 @@ module Google
1320
1320
  class MachineConfiguration
1321
1321
  # @private
1322
1322
  class Representation < Google::Apis::Core::JsonRepresentation
1323
+ property :baseline_slots, :numeric_string => true, as: 'baselineSlots'
1323
1324
  property :cpu_count, as: 'cpuCount'
1325
+ property :max_reservation_slots, :numeric_string => true, as: 'maxReservationSlots'
1324
1326
  property :memory_size_in_bytes, :numeric_string => true, as: 'memorySizeInBytes'
1325
1327
  property :shard_count, as: 'shardCount'
1326
1328
  property :vcpu_count, as: 'vcpuCount'
@@ -1209,11 +1209,12 @@ module Google
1209
1209
  # The standard list page token.
1210
1210
  # @param [Boolean] return_partial_success
1211
1211
  # When set to `true`, operations that are reachable are returned as normal, and
1212
- # those that are unreachable are returned in the [ListOperationsResponse.
1213
- # unreachable] field. This can only be `true` when reading across collections e.
1214
- # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1215
- # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1216
- # explicitly documented otherwise in service or product specific documentation.
1212
+ # those that are unreachable are returned in the ListOperationsResponse.
1213
+ # unreachable field. This can only be `true` when reading across collections.
1214
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1215
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1216
+ # if set unless explicitly documented otherwise in service or product specific
1217
+ # documentation.
1217
1218
  # @param [String] fields
1218
1219
  # Selector specifying which fields to include in a partial response.
1219
1220
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.75.0
4
+ version: 0.76.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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-redis_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.75.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.76.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1
63
63
  rdoc_options: []
64
64
  require_paths: