google-apis-memcache_v1beta2 0.44.0 → 0.45.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: 3bf5620032f2da443742c2c08faba56c1b68f72b9f3d31a9f789a5671a9ce598
|
4
|
+
data.tar.gz: aef58915aee3362b0610792f2051030f579446fb0d5f486dfd72260b5b011893
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f41e5ad336d79d1e82f1fc960957ce89364fe883e1f3be356d205eb32b47a11b4c97c42932f3e3464ec994fdb2914a8ebd80132372c68de281b0cecc0b5568c3
|
7
|
+
data.tar.gz: 3b7bd3ec564390b88e8da3e84ca3326a8373225fa93651208a85b802f1a22ab0a4de2c2955458c0c3f950de70806afc737a9159da0310dd8c0457d33a5128c8e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-memcache_v1beta2
|
2
2
|
|
3
|
+
### v0.45.0 (2025-08-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250821
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.44.0 (2025-05-11)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20250505
|
@@ -224,6 +224,59 @@ module Google
|
|
224
224
|
end
|
225
225
|
end
|
226
226
|
|
227
|
+
# Request message for GetTags.
|
228
|
+
class GetTagsRequest
|
229
|
+
include Google::Apis::Core::Hashable
|
230
|
+
|
231
|
+
# Required. The full One Platform resource name of the service resource.
|
232
|
+
# Corresponds to the JSON property `name`
|
233
|
+
# @return [String]
|
234
|
+
attr_accessor :name
|
235
|
+
|
236
|
+
def initialize(**args)
|
237
|
+
update!(**args)
|
238
|
+
end
|
239
|
+
|
240
|
+
# Update properties of this object
|
241
|
+
def update!(**args)
|
242
|
+
@name = args[:name] if args.key?(:name)
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
# Response message for GetTags.
|
247
|
+
class GetTagsResponse
|
248
|
+
include Google::Apis::Core::Hashable
|
249
|
+
|
250
|
+
# Required. The full One Platform resource name of the service resource.
|
251
|
+
# Corresponds to the JSON property `name`
|
252
|
+
# @return [String]
|
253
|
+
attr_accessor :name
|
254
|
+
|
255
|
+
# Required. Tag keys/values directly bound to this resource. Each item in the
|
256
|
+
# map must be expressed as " : ". For example: "123/environment" : "production",
|
257
|
+
# "123/costCenter" : "marketing"
|
258
|
+
# Corresponds to the JSON property `tags`
|
259
|
+
# @return [Hash<String,String>]
|
260
|
+
attr_accessor :tags
|
261
|
+
|
262
|
+
# A checksum based on the current bindings. This field is always set in server
|
263
|
+
# responses.
|
264
|
+
# Corresponds to the JSON property `tagsEtag`
|
265
|
+
# @return [String]
|
266
|
+
attr_accessor :tags_etag
|
267
|
+
|
268
|
+
def initialize(**args)
|
269
|
+
update!(**args)
|
270
|
+
end
|
271
|
+
|
272
|
+
# Update properties of this object
|
273
|
+
def update!(**args)
|
274
|
+
@name = args[:name] if args.key?(:name)
|
275
|
+
@tags = args[:tags] if args.key?(:tags)
|
276
|
+
@tags_etag = args[:tags_etag] if args.key?(:tags_etag)
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
227
280
|
# Metadata for the given google.cloud.location.Location.
|
228
281
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
229
282
|
include Google::Apis::Core::Hashable
|
@@ -1596,6 +1649,81 @@ module Google
|
|
1596
1649
|
end
|
1597
1650
|
end
|
1598
1651
|
|
1652
|
+
# Request message for SetTags.
|
1653
|
+
class SetTagsRequest
|
1654
|
+
include Google::Apis::Core::Hashable
|
1655
|
+
|
1656
|
+
# Required. The full One Platform resource name of the service resource.
|
1657
|
+
# Corresponds to the JSON property `name`
|
1658
|
+
# @return [String]
|
1659
|
+
attr_accessor :name
|
1660
|
+
|
1661
|
+
# Optional. A unique identifier for this request. Must be a valid UUID. This
|
1662
|
+
# request is only idempotent if a `request_id` is provided.
|
1663
|
+
# Corresponds to the JSON property `requestId`
|
1664
|
+
# @return [String]
|
1665
|
+
attr_accessor :request_id
|
1666
|
+
|
1667
|
+
# Required. These bindings will override any bindings previously set and will be
|
1668
|
+
# effective immediately. Each item in the map must be expressed as " : ". For
|
1669
|
+
# example: "123/environment" : "production", "123/costCenter" : "marketing"
|
1670
|
+
# Corresponds to the JSON property `tags`
|
1671
|
+
# @return [Hash<String,String>]
|
1672
|
+
attr_accessor :tags
|
1673
|
+
|
1674
|
+
# Optional. A checksum based on the current bindings which can be passed to
|
1675
|
+
# prevent race conditions. If not passed, etag check would be skipped.
|
1676
|
+
# Corresponds to the JSON property `tagsEtag`
|
1677
|
+
# @return [String]
|
1678
|
+
attr_accessor :tags_etag
|
1679
|
+
|
1680
|
+
def initialize(**args)
|
1681
|
+
update!(**args)
|
1682
|
+
end
|
1683
|
+
|
1684
|
+
# Update properties of this object
|
1685
|
+
def update!(**args)
|
1686
|
+
@name = args[:name] if args.key?(:name)
|
1687
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
1688
|
+
@tags = args[:tags] if args.key?(:tags)
|
1689
|
+
@tags_etag = args[:tags_etag] if args.key?(:tags_etag)
|
1690
|
+
end
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
# Response message for SetTags.
|
1694
|
+
class SetTagsResponse
|
1695
|
+
include Google::Apis::Core::Hashable
|
1696
|
+
|
1697
|
+
# Required. The full One Platform resource name of the service resource.
|
1698
|
+
# Corresponds to the JSON property `name`
|
1699
|
+
# @return [String]
|
1700
|
+
attr_accessor :name
|
1701
|
+
|
1702
|
+
# Required. Tag keys/values directly bound to this resource. Each item in the
|
1703
|
+
# map must be expressed as " : ". For example: "123/environment" : "production",
|
1704
|
+
# "123/costCenter" : "marketing"
|
1705
|
+
# Corresponds to the JSON property `tags`
|
1706
|
+
# @return [Hash<String,String>]
|
1707
|
+
attr_accessor :tags
|
1708
|
+
|
1709
|
+
# A checksum based on the current bindings. This field is always set in server
|
1710
|
+
# responses.
|
1711
|
+
# Corresponds to the JSON property `tagsEtag`
|
1712
|
+
# @return [String]
|
1713
|
+
attr_accessor :tags_etag
|
1714
|
+
|
1715
|
+
def initialize(**args)
|
1716
|
+
update!(**args)
|
1717
|
+
end
|
1718
|
+
|
1719
|
+
# Update properties of this object
|
1720
|
+
def update!(**args)
|
1721
|
+
@name = args[:name] if args.key?(:name)
|
1722
|
+
@tags = args[:tags] if args.key?(:tags)
|
1723
|
+
@tags_etag = args[:tags_etag] if args.key?(:tags_etag)
|
1724
|
+
end
|
1725
|
+
end
|
1726
|
+
|
1599
1727
|
# The `Status` type defines a logical error model that is suitable for different
|
1600
1728
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1601
1729
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MemcacheV1beta2
|
18
18
|
# Version of the google-apis-memcache_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,18 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class GetTagsRequest
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class GetTagsResponse
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
@@ -250,6 +262,18 @@ module Google
|
|
250
262
|
include Google::Apis::Core::JsonObjectSupport
|
251
263
|
end
|
252
264
|
|
265
|
+
class SetTagsRequest
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class SetTagsResponse
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
253
277
|
class Status
|
254
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
279
|
|
@@ -350,6 +374,22 @@ module Google
|
|
350
374
|
end
|
351
375
|
end
|
352
376
|
|
377
|
+
class GetTagsRequest
|
378
|
+
# @private
|
379
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
380
|
+
property :name, as: 'name'
|
381
|
+
end
|
382
|
+
end
|
383
|
+
|
384
|
+
class GetTagsResponse
|
385
|
+
# @private
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
387
|
+
property :name, as: 'name'
|
388
|
+
hash :tags, as: 'tags'
|
389
|
+
property :tags_etag, as: 'tagsEtag'
|
390
|
+
end
|
391
|
+
end
|
392
|
+
|
353
393
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
354
394
|
# @private
|
355
395
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -694,6 +734,25 @@ module Google
|
|
694
734
|
end
|
695
735
|
end
|
696
736
|
|
737
|
+
class SetTagsRequest
|
738
|
+
# @private
|
739
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
740
|
+
property :name, as: 'name'
|
741
|
+
property :request_id, as: 'requestId'
|
742
|
+
hash :tags, as: 'tags'
|
743
|
+
property :tags_etag, as: 'tagsEtag'
|
744
|
+
end
|
745
|
+
end
|
746
|
+
|
747
|
+
class SetTagsResponse
|
748
|
+
# @private
|
749
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
750
|
+
property :name, as: 'name'
|
751
|
+
hash :tags, as: 'tags'
|
752
|
+
property :tags_etag, as: 'tagsEtag'
|
753
|
+
end
|
754
|
+
end
|
755
|
+
|
697
756
|
class Status
|
698
757
|
# @private
|
699
758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -86,8 +86,8 @@ module Google
|
|
86
86
|
# @param [String] name
|
87
87
|
# The resource that owns the locations collection, if applicable.
|
88
88
|
# @param [Array<String>, String] extra_location_types
|
89
|
-
# Optional.
|
90
|
-
#
|
89
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
90
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
91
91
|
# @param [String] filter
|
92
92
|
# A filter to narrow down results to a preferred subset. The filtering language
|
93
93
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-memcache_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.45.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-memcache_v1beta2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.45.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1beta2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Cloud Memorystore for Memcached API V1beta2
|
79
79
|
test_files: []
|