google-cloud-memcache-v1 0.3.0 → 0.5.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.
@@ -21,19 +21,20 @@ module Google
21
21
  module Cloud
22
22
  module Memcache
23
23
  module V1
24
+ # A Memorystore for Memcached instance
24
25
  # @!attribute [rw] name
25
26
  # @return [::String]
26
27
  # Required. Unique name of the resource in this scope including project and
27
28
  # location using the form:
28
29
  # `projects/{project_id}/locations/{location_id}/instances/{instance_id}`
29
30
  #
30
- # Note: Memcached instances are managed and addressed at regional level so
31
- # location_id here refers to a GCP region; however, users may choose which
32
- # zones Memcached nodes within an instances should be provisioned in.
33
- # Refer to [zones] field for more details.
31
+ # Note: Memcached instances are managed and addressed at the regional level
32
+ # so `location_id` here refers to a Google Cloud region; however, users may
33
+ # choose which zones Memcached nodes should be provisioned in within an
34
+ # instance. Refer to {::Google::Cloud::Memcache::V1::Instance#zones zones} field for more details.
34
35
  # @!attribute [rw] display_name
35
36
  # @return [::String]
36
- # User provided name for the instance only used for display
37
+ # User provided name for the instance, which is only used for display
37
38
  # purposes. Cannot be more than 80 characters.
38
39
  # @!attribute [rw] labels
39
40
  # @return [::Google::Protobuf::Map{::String => ::String}]
@@ -48,7 +49,7 @@ module Google
48
49
  # will be used.
49
50
  # @!attribute [rw] zones
50
51
  # @return [::Array<::String>]
51
- # Zones where Memcached nodes should be provisioned in.
52
+ # Zones in which Memcached nodes should be provisioned.
52
53
  # Memcached nodes will be equally distributed across these zones. If not
53
54
  # provided, the service will by default create nodes in all zones in the
54
55
  # region for the instance.
@@ -62,17 +63,17 @@ module Google
62
63
  # @return [::Google::Cloud::Memcache::V1::MemcacheVersion]
63
64
  # The major version of Memcached software.
64
65
  # If not provided, latest supported version will be used. Currently the
65
- # latest supported major version is MEMCACHE_1_5.
66
+ # latest supported major version is `MEMCACHE_1_5`.
66
67
  # The minor version will be automatically determined by our system based on
67
68
  # the latest supported minor version.
68
69
  # @!attribute [rw] parameters
69
70
  # @return [::Google::Cloud::Memcache::V1::MemcacheParameters]
70
- # Optional: User defined parameters to apply to the memcached process
71
+ # User defined parameters to apply to the memcached process
71
72
  # on each node.
72
73
  # @!attribute [r] memcache_nodes
73
74
  # @return [::Array<::Google::Cloud::Memcache::V1::Instance::Node>]
74
75
  # Output only. List of Memcached nodes.
75
- # Refer to [Node] message for more details.
76
+ # Refer to {::Google::Cloud::Memcache::V1::Instance::Node Node} message for more details.
76
77
  # @!attribute [r] create_time
77
78
  # @return [::Google::Protobuf::Timestamp]
78
79
  # Output only. The time the instance was created.
@@ -90,10 +91,18 @@ module Google
90
91
  # The full version format will be "memcached-1.5.16".
91
92
  # @!attribute [rw] instance_messages
92
93
  # @return [::Array<::Google::Cloud::Memcache::V1::Instance::InstanceMessage>]
93
- # List of messages that describe current statuses of memcached instance.
94
+ # List of messages that describe the current state of the Memcached instance.
94
95
  # @!attribute [r] discovery_endpoint
95
96
  # @return [::String]
96
- # Output only. Endpoint for Discovery API
97
+ # Output only. Endpoint for the Discovery API.
98
+ # @!attribute [rw] maintenance_policy
99
+ # @return [::Google::Cloud::Memcache::V1::MaintenancePolicy]
100
+ # The maintenance policy for the instance. If not provided,
101
+ # the maintenance event will be performed based on Memorystore
102
+ # internal rollout schedule.
103
+ # @!attribute [r] maintenance_schedule
104
+ # @return [::Google::Cloud::Memcache::V1::MaintenanceSchedule]
105
+ # Output only. Published maintenance schedule.
97
106
  class Instance
98
107
  include ::Google::Protobuf::MessageExts
99
108
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -192,6 +201,10 @@ module Google
192
201
  # Memcached instance has been created and ready to be used.
193
202
  READY = 2
194
203
 
204
+ # Memcached instance is updating configuration such as maintenance policy
205
+ # and schedule.
206
+ UPDATING = 3
207
+
195
208
  # Memcached instance is being deleted.
196
209
  DELETING = 4
197
210
 
@@ -200,6 +213,93 @@ module Google
200
213
  end
201
214
  end
202
215
 
216
+ # Maintenance policy per instance.
217
+ # @!attribute [r] create_time
218
+ # @return [::Google::Protobuf::Timestamp]
219
+ # Output only. The time when the policy was created.
220
+ # @!attribute [r] update_time
221
+ # @return [::Google::Protobuf::Timestamp]
222
+ # Output only. The time when the policy was updated.
223
+ # @!attribute [rw] description
224
+ # @return [::String]
225
+ # Description of what this policy is for. Create/Update methods
226
+ # return INVALID_ARGUMENT if the length is greater than 512.
227
+ # @!attribute [rw] weekly_maintenance_window
228
+ # @return [::Array<::Google::Cloud::Memcache::V1::WeeklyMaintenanceWindow>]
229
+ # Required. Maintenance window that is applied to resources covered by this
230
+ # policy. Minimum 1. For the current version, the maximum number of
231
+ # weekly_maintenance_windows is expected to be one.
232
+ class MaintenancePolicy
233
+ include ::Google::Protobuf::MessageExts
234
+ extend ::Google::Protobuf::MessageExts::ClassMethods
235
+ end
236
+
237
+ # Time window specified for weekly operations.
238
+ # @!attribute [rw] day
239
+ # @return [::Google::Type::DayOfWeek]
240
+ # Required. Allows to define schedule that runs specified day of the week.
241
+ # @!attribute [rw] start_time
242
+ # @return [::Google::Type::TimeOfDay]
243
+ # Required. Start time of the window in UTC.
244
+ # @!attribute [rw] duration
245
+ # @return [::Google::Protobuf::Duration]
246
+ # Required. Duration of the time window.
247
+ class WeeklyMaintenanceWindow
248
+ include ::Google::Protobuf::MessageExts
249
+ extend ::Google::Protobuf::MessageExts::ClassMethods
250
+ end
251
+
252
+ # Upcoming maintenance schedule.
253
+ # @!attribute [r] start_time
254
+ # @return [::Google::Protobuf::Timestamp]
255
+ # Output only. The start time of any upcoming scheduled maintenance for this instance.
256
+ # @!attribute [r] end_time
257
+ # @return [::Google::Protobuf::Timestamp]
258
+ # Output only. The end time of any upcoming scheduled maintenance for this instance.
259
+ # @!attribute [r] schedule_deadline_time
260
+ # @return [::Google::Protobuf::Timestamp]
261
+ # Output only. The deadline that the maintenance schedule start time can not go beyond,
262
+ # including reschedule.
263
+ class MaintenanceSchedule
264
+ include ::Google::Protobuf::MessageExts
265
+ extend ::Google::Protobuf::MessageExts::ClassMethods
266
+ end
267
+
268
+ # Request for {::Google::Cloud::Memcache::V1::CloudMemcache::Client#reschedule_maintenance RescheduleMaintenance}.
269
+ # @!attribute [rw] instance
270
+ # @return [::String]
271
+ # Required. Memcache instance resource name using the form:
272
+ # `projects/{project_id}/locations/{location_id}/instances/{instance_id}`
273
+ # where `location_id` refers to a GCP region.
274
+ # @!attribute [rw] reschedule_type
275
+ # @return [::Google::Cloud::Memcache::V1::RescheduleMaintenanceRequest::RescheduleType]
276
+ # Required. If reschedule type is SPECIFIC_TIME, must set up schedule_time as well.
277
+ # @!attribute [rw] schedule_time
278
+ # @return [::Google::Protobuf::Timestamp]
279
+ # Timestamp when the maintenance shall be rescheduled to if
280
+ # reschedule_type=SPECIFIC_TIME, in RFC 3339 format, for
281
+ # example `2012-11-15T16:19:00.094Z`.
282
+ class RescheduleMaintenanceRequest
283
+ include ::Google::Protobuf::MessageExts
284
+ extend ::Google::Protobuf::MessageExts::ClassMethods
285
+
286
+ # Reschedule options.
287
+ module RescheduleType
288
+ # Not set.
289
+ RESCHEDULE_TYPE_UNSPECIFIED = 0
290
+
291
+ # If the user wants to schedule the maintenance to happen now.
292
+ IMMEDIATE = 1
293
+
294
+ # If the user wants to use the existing maintenance policy to find the
295
+ # next available window.
296
+ NEXT_AVAILABLE_WINDOW = 2
297
+
298
+ # If the user wants to reschedule the maintenance to a specific time.
299
+ SPECIFIC_TIME = 3
300
+ end
301
+ end
302
+
203
303
  # Request for {::Google::Cloud::Memcache::V1::CloudMemcache::Client#list_instances ListInstances}.
204
304
  # @!attribute [rw] parent
205
305
  # @return [::String]
@@ -211,18 +311,17 @@ module Google
211
311
  # The maximum number of items to return.
212
312
  #
213
313
  # If not specified, a default value of 1000 will be used by the service.
214
- # Regardless of the page_size value, the response may include a partial list
215
- # and a caller should only rely on response's
216
- # [next_page_token][CloudMemcache.ListInstancesResponse.next_page_token]
314
+ # Regardless of the `page_size` value, the response may include a partial
315
+ # list and a caller should only rely on response's
316
+ # {::Google::Cloud::Memcache::V1::ListInstancesResponse#next_page_token `next_page_token`}
217
317
  # to determine if there are more instances left to be queried.
218
318
  # @!attribute [rw] page_token
219
319
  # @return [::String]
220
- # The next_page_token value returned from a previous List request,
221
- # if any.
320
+ # The `next_page_token` value returned from a previous List request, if any.
222
321
  # @!attribute [rw] filter
223
322
  # @return [::String]
224
323
  # List filter. For example, exclude all Memcached instances with name as
225
- # my-instance by specifying "name != my-instance".
324
+ # my-instance by specifying `"name != my-instance"`.
226
325
  # @!attribute [rw] order_by
227
326
  # @return [::String]
228
327
  # Sort results. Supported values are "name", "name desc" or "" (unsorted).
@@ -277,9 +376,9 @@ module Google
277
376
  # * Must start with a letter.
278
377
  # * Must be between 1-40 characters.
279
378
  # * Must end with a number or a letter.
280
- # * Must be unique within the user project / location
379
+ # * Must be unique within the user project / location.
281
380
  #
282
- # If any of the above are not met, will raise an invalid argument error.
381
+ # If any of the above are not met, the API raises an invalid argument error.
283
382
  # @!attribute [rw] instance
284
383
  # @return [::Google::Cloud::Memcache::V1::Instance]
285
384
  # Required. A Memcached Instance
@@ -292,6 +391,7 @@ module Google
292
391
  # @!attribute [rw] update_mask
293
392
  # @return [::Google::Protobuf::FieldMask]
294
393
  # Required. Mask of fields to update.
394
+ #
295
395
  # * `displayName`
296
396
  # @!attribute [rw] instance
297
397
  # @return [::Google::Cloud::Memcache::V1::Instance]
@@ -320,12 +420,12 @@ module Google
320
420
  # should be applied.
321
421
  # @!attribute [rw] node_ids
322
422
  # @return [::Array<::String>]
323
- # Nodes to which we should apply the instance-level parameter group.
423
+ # Nodes to which the instance-level parameter group is applied.
324
424
  # @!attribute [rw] apply_all
325
425
  # @return [::Boolean]
326
426
  # Whether to apply instance-level parameter group to all nodes. If set to
327
- # true, will explicitly restrict users from specifying any nodes, and apply
328
- # parameter group updates to all nodes within the instance.
427
+ # true, users are restricted from specifying individual nodes, and
428
+ # `ApplyParameters` updates all nodes within the instance.
329
429
  class ApplyParametersRequest
330
430
  include ::Google::Protobuf::MessageExts
331
431
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -351,8 +451,9 @@ module Google
351
451
  # @return [::String]
352
452
  # Output only. The unique ID associated with this set of parameters. Users
353
453
  # can use this id to determine if the parameters associated with the instance
354
- # differ from the parameters associated with the nodes and any action needs
355
- # to be taken to apply parameters on nodes.
454
+ # differ from the parameters associated with the nodes. A discrepancy between
455
+ # parameter ids can inform users that they may need to take action to apply
456
+ # parameters on nodes.
356
457
  # @!attribute [rw] params
357
458
  # @return [::Google::Protobuf::Map{::String => ::String}]
358
459
  # User defined set of parameters to use in the memcached process.
@@ -400,6 +501,31 @@ module Google
400
501
  extend ::Google::Protobuf::MessageExts::ClassMethods
401
502
  end
402
503
 
504
+ # Metadata for the given `::Google::Cloud::Location::Location`.
505
+ # @!attribute [r] available_zones
506
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Memcache::V1::ZoneMetadata}]
507
+ # Output only. The set of available zones in the location. The map is keyed
508
+ # by the lowercase ID of each zone, as defined by GCE. These keys can be
509
+ # specified in the `zones` field when creating a Memcached instance.
510
+ class LocationMetadata
511
+ include ::Google::Protobuf::MessageExts
512
+ extend ::Google::Protobuf::MessageExts::ClassMethods
513
+
514
+ # @!attribute [rw] key
515
+ # @return [::String]
516
+ # @!attribute [rw] value
517
+ # @return [::Google::Cloud::Memcache::V1::ZoneMetadata]
518
+ class AvailableZonesEntry
519
+ include ::Google::Protobuf::MessageExts
520
+ extend ::Google::Protobuf::MessageExts::ClassMethods
521
+ end
522
+ end
523
+
524
+ class ZoneMetadata
525
+ include ::Google::Protobuf::MessageExts
526
+ extend ::Google::Protobuf::MessageExts::ClassMethods
527
+ end
528
+
403
529
  # Memcached versions supported by our service.
404
530
  module MemcacheVersion
405
531
  MEMCACHE_VERSION_UNSPECIFIED = 0
@@ -26,8 +26,6 @@ module Google
26
26
  # service Foo {
27
27
  # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
28
28
  # }
29
- #
30
- # The JSON representation for `Empty` is empty JSON object `{}`.
31
29
  class Empty
32
30
  include ::Google::Protobuf::MessageExts
33
31
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -28,12 +28,14 @@ module Google
28
28
  # [API Design Guide](https://cloud.google.com/apis/design/errors).
29
29
  # @!attribute [rw] code
30
30
  # @return [::Integer]
31
- # The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
31
+ # The status code, which should be an enum value of
32
+ # [google.rpc.Code][google.rpc.Code].
32
33
  # @!attribute [rw] message
33
34
  # @return [::String]
34
35
  # A developer-facing error message, which should be in English. Any
35
36
  # user-facing error message should be localized and sent in the
36
- # {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized by the client.
37
+ # {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
38
+ # by the client.
37
39
  # @!attribute [rw] details
38
40
  # @return [::Array<::Google::Protobuf::Any>]
39
41
  # A list of messages that carry the error details. There is a common set of
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2022 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Type
22
+ # Represents a day of the week.
23
+ module DayOfWeek
24
+ # The day of the week is unspecified.
25
+ DAY_OF_WEEK_UNSPECIFIED = 0
26
+
27
+ # Monday
28
+ MONDAY = 1
29
+
30
+ # Tuesday
31
+ TUESDAY = 2
32
+
33
+ # Wednesday
34
+ WEDNESDAY = 3
35
+
36
+ # Thursday
37
+ THURSDAY = 4
38
+
39
+ # Friday
40
+ FRIDAY = 5
41
+
42
+ # Saturday
43
+ SATURDAY = 6
44
+
45
+ # Sunday
46
+ SUNDAY = 7
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2022 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Type
22
+ # Represents a time of day. The date and time zone are either not significant
23
+ # or are specified elsewhere. An API may choose to allow leap seconds. Related
24
+ # types are [google.type.Date][google.type.Date] and
25
+ # `google.protobuf.Timestamp`.
26
+ # @!attribute [rw] hours
27
+ # @return [::Integer]
28
+ # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose
29
+ # to allow the value "24:00:00" for scenarios like business closing time.
30
+ # @!attribute [rw] minutes
31
+ # @return [::Integer]
32
+ # Minutes of hour of day. Must be from 0 to 59.
33
+ # @!attribute [rw] seconds
34
+ # @return [::Integer]
35
+ # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
36
+ # allow the value 60 if it allows leap-seconds.
37
+ # @!attribute [rw] nanos
38
+ # @return [::Integer]
39
+ # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
40
+ class TimeOfDay
41
+ include ::Google::Protobuf::MessageExts
42
+ extend ::Google::Protobuf::MessageExts::ClassMethods
43
+ end
44
+ end
45
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-memcache-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.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: 2022-07-05 00:00:00.000000000 Z
11
+ date: 2023-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.10'
19
+ version: 0.18.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.10'
29
+ version: 0.18.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -44,20 +44,40 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: google-cloud-location
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0.4'
54
+ - - "<"
55
+ - !ruby/object:Gem::Version
56
+ version: 2.a
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0.4'
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: 2.a
47
67
  - !ruby/object:Gem::Dependency
48
68
  name: google-style
49
69
  requirement: !ruby/object:Gem::Requirement
50
70
  requirements:
51
71
  - - "~>"
52
72
  - !ruby/object:Gem::Version
53
- version: 1.26.1
73
+ version: 1.26.3
54
74
  type: :development
55
75
  prerelease: false
56
76
  version_requirements: !ruby/object:Gem::Requirement
57
77
  requirements:
58
78
  - - "~>"
59
79
  - !ruby/object:Gem::Version
60
- version: 1.26.1
80
+ version: 1.26.3
61
81
  - !ruby/object:Gem::Dependency
62
82
  name: minitest
63
83
  requirement: !ruby/object:Gem::Requirement
@@ -171,16 +191,24 @@ files:
171
191
  - README.md
172
192
  - lib/google-cloud-memcache-v1.rb
173
193
  - lib/google/cloud/memcache/v1.rb
194
+ - lib/google/cloud/memcache/v1/bindings_override.rb
174
195
  - lib/google/cloud/memcache/v1/cloud_memcache.rb
175
196
  - lib/google/cloud/memcache/v1/cloud_memcache/client.rb
176
197
  - lib/google/cloud/memcache/v1/cloud_memcache/credentials.rb
177
198
  - lib/google/cloud/memcache/v1/cloud_memcache/operations.rb
178
199
  - lib/google/cloud/memcache/v1/cloud_memcache/paths.rb
200
+ - lib/google/cloud/memcache/v1/cloud_memcache/rest.rb
201
+ - lib/google/cloud/memcache/v1/cloud_memcache/rest/client.rb
202
+ - lib/google/cloud/memcache/v1/cloud_memcache/rest/operations.rb
203
+ - lib/google/cloud/memcache/v1/cloud_memcache/rest/service_stub.rb
179
204
  - lib/google/cloud/memcache/v1/cloud_memcache_pb.rb
180
205
  - lib/google/cloud/memcache/v1/cloud_memcache_services_pb.rb
206
+ - lib/google/cloud/memcache/v1/rest.rb
181
207
  - lib/google/cloud/memcache/v1/version.rb
182
208
  - proto_docs/README.md
209
+ - proto_docs/google/api/client.rb
183
210
  - proto_docs/google/api/field_behavior.rb
211
+ - proto_docs/google/api/launch_stage.rb
184
212
  - proto_docs/google/api/resource.rb
185
213
  - proto_docs/google/cloud/memcache/v1/cloud_memcache.rb
186
214
  - proto_docs/google/longrunning/operations.rb
@@ -190,6 +218,8 @@ files:
190
218
  - proto_docs/google/protobuf/field_mask.rb
191
219
  - proto_docs/google/protobuf/timestamp.rb
192
220
  - proto_docs/google/rpc/status.rb
221
+ - proto_docs/google/type/dayofweek.rb
222
+ - proto_docs/google/type/timeofday.rb
193
223
  homepage: https://github.com/googleapis/google-cloud-ruby
194
224
  licenses:
195
225
  - Apache-2.0
@@ -209,8 +239,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
239
  - !ruby/object:Gem::Version
210
240
  version: '0'
211
241
  requirements: []
212
- rubygems_version: 3.3.14
242
+ rubygems_version: 3.4.2
213
243
  signing_key:
214
244
  specification_version: 4
215
- summary: API Client library for the Google Cloud Memorystore for Memcached V1 API
245
+ summary: Google Cloud Memorystore for Memcached API is used for creating and managing
246
+ Memcached instances in GCP.
216
247
  test_files: []