google-apis-redis_v1 0.84.0 → 0.85.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: 87670f8d640f3c5d25a139d3c46804ea9c414667c5141baa4a6a38ea6778bcf2
|
|
4
|
+
data.tar.gz: 468204fce97961d75666df6df94d01515612aa55be13a1e516c686510d2f0e2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b1bd191c76a17012dd4bc46a83286764f98cf1d66eb06b0263b9ffabf9029cf10d89f71c46919c2359e203062b0412a0cf5bcd9fb8dad3dec56836731fa2edd
|
|
7
|
+
data.tar.gz: 25a3957bde903f9c479ce261a4efb2ec98c8ae772e6dbff2c7bd5455ccf4b83de7a97cfeef584dd66ca7359475b0550989da2758a391b9e49460b0abd2cb1522
|
data/CHANGELOG.md
CHANGED
|
@@ -2725,8 +2725,9 @@ module Google
|
|
|
2725
2725
|
attr_accessor :operations
|
|
2726
2726
|
|
|
2727
2727
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
2728
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
2729
|
-
# when attempting to list all resources across all supported
|
|
2728
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
2729
|
+
# For example, when attempting to list all resources across all supported
|
|
2730
|
+
# locations.
|
|
2730
2731
|
# Corresponds to the JSON property `unreachable`
|
|
2731
2732
|
# @return [Array<String>]
|
|
2732
2733
|
attr_accessor :unreachable
|
|
@@ -2797,12 +2798,24 @@ module Google
|
|
|
2797
2798
|
class MachineConfiguration
|
|
2798
2799
|
include Google::Apis::Core::Hashable
|
|
2799
2800
|
|
|
2801
|
+
# Optional. Baseline slots for BigQuery Reservations. Baseline slots are in
|
|
2802
|
+
# increments of 50.
|
|
2803
|
+
# Corresponds to the JSON property `baselineSlots`
|
|
2804
|
+
# @return [Fixnum]
|
|
2805
|
+
attr_accessor :baseline_slots
|
|
2806
|
+
|
|
2800
2807
|
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
|
|
2801
2808
|
# proto validations again after bug fix.
|
|
2802
2809
|
# Corresponds to the JSON property `cpuCount`
|
|
2803
2810
|
# @return [Fixnum]
|
|
2804
2811
|
attr_accessor :cpu_count
|
|
2805
2812
|
|
|
2813
|
+
# Optional. Max slots for BigQuery Reservations. Max slots are in increments of
|
|
2814
|
+
# 50.
|
|
2815
|
+
# Corresponds to the JSON property `maxReservationSlots`
|
|
2816
|
+
# @return [Fixnum]
|
|
2817
|
+
attr_accessor :max_reservation_slots
|
|
2818
|
+
|
|
2806
2819
|
# Memory size in bytes. TODO(b/342344482) add proto validations again after bug
|
|
2807
2820
|
# fix.
|
|
2808
2821
|
# Corresponds to the JSON property `memorySizeInBytes`
|
|
@@ -2826,7 +2839,9 @@ module Google
|
|
|
2826
2839
|
|
|
2827
2840
|
# Update properties of this object
|
|
2828
2841
|
def update!(**args)
|
|
2842
|
+
@baseline_slots = args[:baseline_slots] if args.key?(:baseline_slots)
|
|
2829
2843
|
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
|
2844
|
+
@max_reservation_slots = args[:max_reservation_slots] if args.key?(:max_reservation_slots)
|
|
2830
2845
|
@memory_size_in_bytes = args[:memory_size_in_bytes] if args.key?(:memory_size_in_bytes)
|
|
2831
2846
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
|
2832
2847
|
@vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module RedisV1
|
|
18
18
|
# Version of the google-apis-redis_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.85.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 = "
|
|
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
|
|
1213
|
-
# unreachable
|
|
1214
|
-
#
|
|
1215
|
-
# by default
|
|
1216
|
-
# explicitly documented otherwise in service or product specific
|
|
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_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.85.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.85.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|