google-apis-memcache_v1 0.46.0 → 0.47.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: c8e2ca37a7aad3aabef405982764546a461d60c286894d1cd52b225be92df752
4
- data.tar.gz: 22ff88fad4432823644f7d8071a9c2ccf5ef64b3250efce4ac709260e98e8920
3
+ metadata.gz: 007ccb5a99d7e8280fd3465d20dbbb48a4fee067eb0524ed41fa141d9a918bc5
4
+ data.tar.gz: 23709524c692d8a0945da6a21c2e811855b6a3c67050326ff554cb06d8c5e2f4
5
5
  SHA512:
6
- metadata.gz: 306a71137b8ebfc450c7e13d68fa21d70d943dfa2aebc6a60064dcec627309dab59637c43b540da44fead54329f9c40aef6d4a175d1377b896cccd25eae567ce
7
- data.tar.gz: c97ca3e77a8f57fd4a1f1c9f4931406c3bdfd87c7626438009ba3ce7e4b4fe2dcde0d852dda1cd210ae4621c5eb2377d0e8ac1fd7f9f3acbc9eb308b8fc76eb1
6
+ metadata.gz: 894cd21d4871c5d6066c0cbcd67a059f799a175a29895dd6e5fbf24d42d0811f7158efe7c9cf538026175830fe68339e825eede0f17a01c8e9c326067b0f1e9c
7
+ data.tar.gz: c74ab5e8101063067345f797dc9b2c130c8a61a7675334bf8fd92e455b84c1fe40a2231729e826b30852334bce7318ee73626d63c0a33d9fa60192b541daf58f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-memcache_v1
2
2
 
3
+ ### v0.47.0 (2025-08-31)
4
+
5
+ * Regenerated from discovery document revision 20250821
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.46.0 (2025-05-11)
4
9
 
5
10
  * Regenerated from discovery document revision 20250505
@@ -195,6 +195,59 @@ module Google
195
195
  end
196
196
  end
197
197
 
198
+ # Request message for GetTags.
199
+ class GetTagsRequest
200
+ include Google::Apis::Core::Hashable
201
+
202
+ # Required. The full One Platform resource name of the service resource.
203
+ # Corresponds to the JSON property `name`
204
+ # @return [String]
205
+ attr_accessor :name
206
+
207
+ def initialize(**args)
208
+ update!(**args)
209
+ end
210
+
211
+ # Update properties of this object
212
+ def update!(**args)
213
+ @name = args[:name] if args.key?(:name)
214
+ end
215
+ end
216
+
217
+ # Response message for GetTags.
218
+ class GetTagsResponse
219
+ include Google::Apis::Core::Hashable
220
+
221
+ # Required. The full One Platform resource name of the service resource.
222
+ # Corresponds to the JSON property `name`
223
+ # @return [String]
224
+ attr_accessor :name
225
+
226
+ # Required. Tag keys/values directly bound to this resource. Each item in the
227
+ # map must be expressed as " : ". For example: "123/environment" : "production",
228
+ # "123/costCenter" : "marketing"
229
+ # Corresponds to the JSON property `tags`
230
+ # @return [Hash<String,String>]
231
+ attr_accessor :tags
232
+
233
+ # A checksum based on the current bindings. This field is always set in server
234
+ # responses.
235
+ # Corresponds to the JSON property `tagsEtag`
236
+ # @return [String]
237
+ attr_accessor :tags_etag
238
+
239
+ def initialize(**args)
240
+ update!(**args)
241
+ end
242
+
243
+ # Update properties of this object
244
+ def update!(**args)
245
+ @name = args[:name] if args.key?(:name)
246
+ @tags = args[:tags] if args.key?(:tags)
247
+ @tags_etag = args[:tags_etag] if args.key?(:tags_etag)
248
+ end
249
+ end
250
+
198
251
  # Metadata for the given google.cloud.location.Location.
199
252
  class GoogleCloudMemcacheV1LocationMetadata
200
253
  include Google::Apis::Core::Hashable
@@ -1553,6 +1606,81 @@ module Google
1553
1606
  end
1554
1607
  end
1555
1608
 
1609
+ # Request message for SetTags.
1610
+ class SetTagsRequest
1611
+ include Google::Apis::Core::Hashable
1612
+
1613
+ # Required. The full One Platform resource name of the service resource.
1614
+ # Corresponds to the JSON property `name`
1615
+ # @return [String]
1616
+ attr_accessor :name
1617
+
1618
+ # Optional. A unique identifier for this request. Must be a valid UUID. This
1619
+ # request is only idempotent if a `request_id` is provided.
1620
+ # Corresponds to the JSON property `requestId`
1621
+ # @return [String]
1622
+ attr_accessor :request_id
1623
+
1624
+ # Required. These bindings will override any bindings previously set and will be
1625
+ # effective immediately. Each item in the map must be expressed as " : ". For
1626
+ # example: "123/environment" : "production", "123/costCenter" : "marketing"
1627
+ # Corresponds to the JSON property `tags`
1628
+ # @return [Hash<String,String>]
1629
+ attr_accessor :tags
1630
+
1631
+ # Optional. A checksum based on the current bindings which can be passed to
1632
+ # prevent race conditions. If not passed, etag check would be skipped.
1633
+ # Corresponds to the JSON property `tagsEtag`
1634
+ # @return [String]
1635
+ attr_accessor :tags_etag
1636
+
1637
+ def initialize(**args)
1638
+ update!(**args)
1639
+ end
1640
+
1641
+ # Update properties of this object
1642
+ def update!(**args)
1643
+ @name = args[:name] if args.key?(:name)
1644
+ @request_id = args[:request_id] if args.key?(:request_id)
1645
+ @tags = args[:tags] if args.key?(:tags)
1646
+ @tags_etag = args[:tags_etag] if args.key?(:tags_etag)
1647
+ end
1648
+ end
1649
+
1650
+ # Response message for SetTags.
1651
+ class SetTagsResponse
1652
+ include Google::Apis::Core::Hashable
1653
+
1654
+ # Required. The full One Platform resource name of the service resource.
1655
+ # Corresponds to the JSON property `name`
1656
+ # @return [String]
1657
+ attr_accessor :name
1658
+
1659
+ # Required. Tag keys/values directly bound to this resource. Each item in the
1660
+ # map must be expressed as " : ". For example: "123/environment" : "production",
1661
+ # "123/costCenter" : "marketing"
1662
+ # Corresponds to the JSON property `tags`
1663
+ # @return [Hash<String,String>]
1664
+ attr_accessor :tags
1665
+
1666
+ # A checksum based on the current bindings. This field is always set in server
1667
+ # responses.
1668
+ # Corresponds to the JSON property `tagsEtag`
1669
+ # @return [String]
1670
+ attr_accessor :tags_etag
1671
+
1672
+ def initialize(**args)
1673
+ update!(**args)
1674
+ end
1675
+
1676
+ # Update properties of this object
1677
+ def update!(**args)
1678
+ @name = args[:name] if args.key?(:name)
1679
+ @tags = args[:tags] if args.key?(:tags)
1680
+ @tags_etag = args[:tags_etag] if args.key?(:tags_etag)
1681
+ end
1682
+ end
1683
+
1556
1684
  # The `Status` type defines a logical error model that is suitable for different
1557
1685
  # programming environments, including REST APIs and RPC APIs. It is used by [
1558
1686
  # 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 MemcacheV1
18
18
  # Version of the google-apis-memcache_v1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250505"
25
+ REVISION = "20250821"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,18 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class GetTagsRequest
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
67
+ class GetTagsResponse
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
61
73
  class GoogleCloudMemcacheV1LocationMetadata
62
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
75
 
@@ -244,6 +256,18 @@ module Google
244
256
  include Google::Apis::Core::JsonObjectSupport
245
257
  end
246
258
 
259
+ class SetTagsRequest
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
265
+ class SetTagsResponse
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
247
271
  class Status
248
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
273
 
@@ -336,6 +360,22 @@ module Google
336
360
  end
337
361
  end
338
362
 
363
+ class GetTagsRequest
364
+ # @private
365
+ class Representation < Google::Apis::Core::JsonRepresentation
366
+ property :name, as: 'name'
367
+ end
368
+ end
369
+
370
+ class GetTagsResponse
371
+ # @private
372
+ class Representation < Google::Apis::Core::JsonRepresentation
373
+ property :name, as: 'name'
374
+ hash :tags, as: 'tags'
375
+ property :tags_etag, as: 'tagsEtag'
376
+ end
377
+ end
378
+
339
379
  class GoogleCloudMemcacheV1LocationMetadata
340
380
  # @private
341
381
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -678,6 +718,25 @@ module Google
678
718
  end
679
719
  end
680
720
 
721
+ class SetTagsRequest
722
+ # @private
723
+ class Representation < Google::Apis::Core::JsonRepresentation
724
+ property :name, as: 'name'
725
+ property :request_id, as: 'requestId'
726
+ hash :tags, as: 'tags'
727
+ property :tags_etag, as: 'tagsEtag'
728
+ end
729
+ end
730
+
731
+ class SetTagsResponse
732
+ # @private
733
+ class Representation < Google::Apis::Core::JsonRepresentation
734
+ property :name, as: 'name'
735
+ hash :tags, as: 'tags'
736
+ property :tags_etag, as: 'tagsEtag'
737
+ end
738
+ end
739
+
681
740
  class Status
682
741
  # @private
683
742
  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. A list of extra location types that should be used as conditions for
90
- # controlling the visibility of the locations.
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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.47.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.46.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.47.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1
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.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Memorystore for Memcached API V1
79
79
  test_files: []