google-apis-redis_v1 0.47.0 → 0.48.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/redis_v1/classes.rb +29 -0
- data/lib/google/apis/redis_v1/gem_version.rb +2 -2
- data/lib/google/apis/redis_v1/representations.rb +15 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 913ca549ca81125e9510638fc6e573b633b938077c8aa1da1936b3b10c78055b
|
4
|
+
data.tar.gz: 7f1cde727e061705744b33ea16c2c8a99f0661586d5333fe94c2d8ff6e8a55f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '054974d84109cb4057f9c6083654707a9ea1258c1a50c159ca12a628e227c1792224066958c858ae83e1ed9e6d246d4512276a5daf8c1067d5a244fd87cb4302'
|
7
|
+
data.tar.gz: cfea1ecd3a16c1ea174251171779ac8900126730f3a3ebe1f411684e758de0372a4927b802202693eff60785f7b50e96b8b9f592b78e174a16b817bd46990aa9
|
data/CHANGELOG.md
CHANGED
@@ -660,6 +660,13 @@ module Google
|
|
660
660
|
# @return [String]
|
661
661
|
attr_accessor :updation_time
|
662
662
|
|
663
|
+
# Message type for storing user labels. User labels are used to tag App Engine
|
664
|
+
# resources, allowing users to search for resources matching a set of labels and
|
665
|
+
# to aggregate usage data by labels.
|
666
|
+
# Corresponds to the JSON property `userLabelSet`
|
667
|
+
# @return [Google::Apis::RedisV1::UserLabels]
|
668
|
+
attr_accessor :user_label_set
|
669
|
+
|
663
670
|
# User-provided labels, represented as a dictionary where each label is a single
|
664
671
|
# key value pair.
|
665
672
|
# Corresponds to the JSON property `userLabels`
|
@@ -688,6 +695,7 @@ module Google
|
|
688
695
|
@resource_container = args[:resource_container] if args.key?(:resource_container)
|
689
696
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
690
697
|
@updation_time = args[:updation_time] if args.key?(:updation_time)
|
698
|
+
@user_label_set = args[:user_label_set] if args.key?(:user_label_set)
|
691
699
|
@user_labels = args[:user_labels] if args.key?(:user_labels)
|
692
700
|
end
|
693
701
|
end
|
@@ -2259,6 +2267,27 @@ module Google
|
|
2259
2267
|
end
|
2260
2268
|
end
|
2261
2269
|
|
2270
|
+
# Message type for storing user labels. User labels are used to tag App Engine
|
2271
|
+
# resources, allowing users to search for resources matching a set of labels and
|
2272
|
+
# to aggregate usage data by labels.
|
2273
|
+
class UserLabels
|
2274
|
+
include Google::Apis::Core::Hashable
|
2275
|
+
|
2276
|
+
#
|
2277
|
+
# Corresponds to the JSON property `labels`
|
2278
|
+
# @return [Hash<String,String>]
|
2279
|
+
attr_accessor :labels
|
2280
|
+
|
2281
|
+
def initialize(**args)
|
2282
|
+
update!(**args)
|
2283
|
+
end
|
2284
|
+
|
2285
|
+
# Update properties of this object
|
2286
|
+
def update!(**args)
|
2287
|
+
@labels = args[:labels] if args.key?(:labels)
|
2288
|
+
end
|
2289
|
+
end
|
2290
|
+
|
2262
2291
|
# Time window in which disruptive maintenance updates occur. Non-disruptive
|
2263
2292
|
# updates can occur inside or outside this window.
|
2264
2293
|
class WeeklyMaintenanceWindow
|
@@ -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.48.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240307"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -346,6 +346,12 @@ module Google
|
|
346
346
|
include Google::Apis::Core::JsonObjectSupport
|
347
347
|
end
|
348
348
|
|
349
|
+
class UserLabels
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
349
355
|
class WeeklyMaintenanceWindow
|
350
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
357
|
|
@@ -525,6 +531,8 @@ module Google
|
|
525
531
|
property :resource_container, as: 'resourceContainer'
|
526
532
|
property :resource_name, as: 'resourceName'
|
527
533
|
property :updation_time, as: 'updationTime'
|
534
|
+
property :user_label_set, as: 'userLabelSet', class: Google::Apis::RedisV1::UserLabels, decorator: Google::Apis::RedisV1::UserLabels::Representation
|
535
|
+
|
528
536
|
hash :user_labels, as: 'userLabels'
|
529
537
|
end
|
530
538
|
end
|
@@ -937,6 +945,13 @@ module Google
|
|
937
945
|
end
|
938
946
|
end
|
939
947
|
|
948
|
+
class UserLabels
|
949
|
+
# @private
|
950
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
951
|
+
hash :labels, as: 'labels'
|
952
|
+
end
|
953
|
+
end
|
954
|
+
|
940
955
|
class WeeklyMaintenanceWindow
|
941
956
|
# @private
|
942
957
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.48.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: 2024-03-
|
11
|
+
date: 2024-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.48.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|