google-apis-memcache_v1beta2 0.42.0 → 0.44.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/memcache_v1beta2/classes.rb +12 -427
- data/lib/google/apis/memcache_v1beta2/gem_version.rb +3 -3
- data/lib/google/apis/memcache_v1beta2/representations.rb +1 -231
- data/lib/google/apis/memcache_v1beta2/service.rb +7 -3
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 247fd57a7ee27f482c056801a2592b2dd9ffa03f0a9a786343ad37655b97aec9
|
4
|
+
data.tar.gz: '09979597f78ef9b627b6d68d561f0e7afad4b93f8ace4a9c28ff481db800bf05'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4ece636bb50cf172ee7e0dfe08460bb0f0d1f3427a2923228763fc2d641df48e479d3bc255acc5348dde6f55ac5b2b31484138b37fe4ce77fb0b702dbd31394
|
7
|
+
data.tar.gz: caa905109f565283f460ad08eb7fa194f6e766da98ba24e84bb665f9ded87599c2ca0a980dd4d2c78d6bcc5984d68070d9261ed0ba939e0d6af92e17209661a5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-memcache_v1beta2
|
2
2
|
|
3
|
+
### v0.44.0 (2025-05-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250505
|
6
|
+
* Regenerated using generator version 0.17.0
|
7
|
+
|
8
|
+
### v0.43.0 (2025-02-26)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20250206
|
11
|
+
* Regenerated using generator version 0.16.0
|
12
|
+
|
3
13
|
### v0.42.0 (2024-12-02)
|
4
14
|
|
5
15
|
* Regenerated from discovery document revision 20241010
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/memorystore/) may provide g
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -79,73 +79,6 @@ module Google
|
|
79
79
|
end
|
80
80
|
end
|
81
81
|
|
82
|
-
# Provides the mapping of a cloud asset to a direct physical location or to a
|
83
|
-
# proxy that defines the location on its behalf.
|
84
|
-
class AssetLocation
|
85
|
-
include Google::Apis::Core::Hashable
|
86
|
-
|
87
|
-
# Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants
|
88
|
-
# that use CCFE RMS for storing resource metadata.
|
89
|
-
# Corresponds to the JSON property `ccfeRmsPath`
|
90
|
-
# @return [String]
|
91
|
-
attr_accessor :ccfe_rms_path
|
92
|
-
|
93
|
-
# Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state
|
94
|
-
# of the region at the time of asset creation.
|
95
|
-
# Corresponds to the JSON property `expected`
|
96
|
-
# @return [Google::Apis::MemcacheV1beta2::IsolationExpectations]
|
97
|
-
attr_accessor :expected
|
98
|
-
|
99
|
-
# Defines extra parameters required for specific asset types.
|
100
|
-
# Corresponds to the JSON property `extraParameters`
|
101
|
-
# @return [Array<Google::Apis::MemcacheV1beta2::ExtraParameter>]
|
102
|
-
attr_accessor :extra_parameters
|
103
|
-
|
104
|
-
# Contains all kinds of physical location definitions for this asset.
|
105
|
-
# Corresponds to the JSON property `locationData`
|
106
|
-
# @return [Array<Google::Apis::MemcacheV1beta2::LocationData>]
|
107
|
-
attr_accessor :location_data
|
108
|
-
|
109
|
-
# Defines parents assets if any in order to allow later generation of
|
110
|
-
# child_asset_location data via child assets.
|
111
|
-
# Corresponds to the JSON property `parentAsset`
|
112
|
-
# @return [Array<Google::Apis::MemcacheV1beta2::CloudAsset>]
|
113
|
-
attr_accessor :parent_asset
|
114
|
-
|
115
|
-
def initialize(**args)
|
116
|
-
update!(**args)
|
117
|
-
end
|
118
|
-
|
119
|
-
# Update properties of this object
|
120
|
-
def update!(**args)
|
121
|
-
@ccfe_rms_path = args[:ccfe_rms_path] if args.key?(:ccfe_rms_path)
|
122
|
-
@expected = args[:expected] if args.key?(:expected)
|
123
|
-
@extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
|
124
|
-
@location_data = args[:location_data] if args.key?(:location_data)
|
125
|
-
@parent_asset = args[:parent_asset] if args.key?(:parent_asset)
|
126
|
-
end
|
127
|
-
end
|
128
|
-
|
129
|
-
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
130
|
-
# guide#data-metadata-placement-and-failure-domains
|
131
|
-
class BlobstoreLocation
|
132
|
-
include Google::Apis::Core::Hashable
|
133
|
-
|
134
|
-
#
|
135
|
-
# Corresponds to the JSON property `policyId`
|
136
|
-
# @return [Array<String>]
|
137
|
-
attr_accessor :policy_id
|
138
|
-
|
139
|
-
def initialize(**args)
|
140
|
-
update!(**args)
|
141
|
-
end
|
142
|
-
|
143
|
-
# Update properties of this object
|
144
|
-
def update!(**args)
|
145
|
-
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
146
|
-
end
|
147
|
-
end
|
148
|
-
|
149
82
|
# The request message for Operations.CancelOperation.
|
150
83
|
class CancelOperationRequest
|
151
84
|
include Google::Apis::Core::Hashable
|
@@ -159,50 +92,6 @@ module Google
|
|
159
92
|
end
|
160
93
|
end
|
161
94
|
|
162
|
-
#
|
163
|
-
class CloudAsset
|
164
|
-
include Google::Apis::Core::Hashable
|
165
|
-
|
166
|
-
#
|
167
|
-
# Corresponds to the JSON property `assetName`
|
168
|
-
# @return [String]
|
169
|
-
attr_accessor :asset_name
|
170
|
-
|
171
|
-
#
|
172
|
-
# Corresponds to the JSON property `assetType`
|
173
|
-
# @return [String]
|
174
|
-
attr_accessor :asset_type
|
175
|
-
|
176
|
-
def initialize(**args)
|
177
|
-
update!(**args)
|
178
|
-
end
|
179
|
-
|
180
|
-
# Update properties of this object
|
181
|
-
def update!(**args)
|
182
|
-
@asset_name = args[:asset_name] if args.key?(:asset_name)
|
183
|
-
@asset_type = args[:asset_type] if args.key?(:asset_type)
|
184
|
-
end
|
185
|
-
end
|
186
|
-
|
187
|
-
#
|
188
|
-
class CloudAssetComposition
|
189
|
-
include Google::Apis::Core::Hashable
|
190
|
-
|
191
|
-
#
|
192
|
-
# Corresponds to the JSON property `childAsset`
|
193
|
-
# @return [Array<Google::Apis::MemcacheV1beta2::CloudAsset>]
|
194
|
-
attr_accessor :child_asset
|
195
|
-
|
196
|
-
def initialize(**args)
|
197
|
-
update!(**args)
|
198
|
-
end
|
199
|
-
|
200
|
-
# Update properties of this object
|
201
|
-
def update!(**args)
|
202
|
-
@child_asset = args[:child_asset] if args.key?(:child_asset)
|
203
|
-
end
|
204
|
-
end
|
205
|
-
|
206
95
|
# Time window specified for daily operations.
|
207
96
|
class DailyCycle
|
208
97
|
include Google::Apis::Core::Hashable
|
@@ -319,25 +208,6 @@ module Google
|
|
319
208
|
end
|
320
209
|
end
|
321
210
|
|
322
|
-
#
|
323
|
-
class DirectLocationAssignment
|
324
|
-
include Google::Apis::Core::Hashable
|
325
|
-
|
326
|
-
#
|
327
|
-
# Corresponds to the JSON property `location`
|
328
|
-
# @return [Array<Google::Apis::MemcacheV1beta2::LocationAssignment>]
|
329
|
-
attr_accessor :location
|
330
|
-
|
331
|
-
def initialize(**args)
|
332
|
-
update!(**args)
|
333
|
-
end
|
334
|
-
|
335
|
-
# Update properties of this object
|
336
|
-
def update!(**args)
|
337
|
-
@location = args[:location] if args.key?(:location)
|
338
|
-
end
|
339
|
-
end
|
340
|
-
|
341
211
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
342
212
|
# messages in your APIs. A typical example is to use it as the request or the
|
343
213
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -354,26 +224,6 @@ module Google
|
|
354
224
|
end
|
355
225
|
end
|
356
226
|
|
357
|
-
# Defines parameters that should only be used for specific asset types.
|
358
|
-
class ExtraParameter
|
359
|
-
include Google::Apis::Core::Hashable
|
360
|
-
|
361
|
-
# To be used for specifying the intended distribution of regional compute.
|
362
|
-
# googleapis.com/InstanceGroupManager instances
|
363
|
-
# Corresponds to the JSON property `regionalMigDistributionPolicy`
|
364
|
-
# @return [Google::Apis::MemcacheV1beta2::RegionalMigDistributionPolicy]
|
365
|
-
attr_accessor :regional_mig_distribution_policy
|
366
|
-
|
367
|
-
def initialize(**args)
|
368
|
-
update!(**args)
|
369
|
-
end
|
370
|
-
|
371
|
-
# Update properties of this object
|
372
|
-
def update!(**args)
|
373
|
-
@regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
|
374
|
-
end
|
375
|
-
end
|
376
|
-
|
377
227
|
# Metadata for the given google.cloud.location.Location.
|
378
228
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
379
229
|
include Google::Apis::Core::Hashable
|
@@ -554,6 +404,17 @@ module Google
|
|
554
404
|
# @return [String]
|
555
405
|
attr_accessor :consumer_defined_name
|
556
406
|
|
407
|
+
# Optional. The consumer_project_number associated with this Apigee instance.
|
408
|
+
# This field is added specifically to support Apigee integration with SLM
|
409
|
+
# Rollout and UMM. It represents the numerical project ID of the GCP project
|
410
|
+
# that consumes this Apigee instance. It is used for SLM rollout notifications
|
411
|
+
# and UMM integration, enabling proper mapping to customer projects and log
|
412
|
+
# delivery for Apigee instances. This field complements consumer_project_id and
|
413
|
+
# may be used for specific Apigee scenarios where the numerical ID is required.
|
414
|
+
# Corresponds to the JSON property `consumerProjectNumber`
|
415
|
+
# @return [String]
|
416
|
+
attr_accessor :consumer_project_number
|
417
|
+
|
557
418
|
# Output only. Timestamp when the resource was created.
|
558
419
|
# Corresponds to the JSON property `createTime`
|
559
420
|
# @return [String]
|
@@ -670,6 +531,7 @@ module Google
|
|
670
531
|
# Update properties of this object
|
671
532
|
def update!(**args)
|
672
533
|
@consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
|
534
|
+
@consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
|
673
535
|
@create_time = args[:create_time] if args.key?(:create_time)
|
674
536
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
675
537
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -1153,70 +1015,6 @@ module Google
|
|
1153
1015
|
end
|
1154
1016
|
end
|
1155
1017
|
|
1156
|
-
#
|
1157
|
-
class IsolationExpectations
|
1158
|
-
include Google::Apis::Core::Hashable
|
1159
|
-
|
1160
|
-
# Explicit overrides for ZI and ZS requirements to be used for resources that
|
1161
|
-
# should be excluded from ZI/ZS verification logic.
|
1162
|
-
# Corresponds to the JSON property `requirementOverride`
|
1163
|
-
# @return [Google::Apis::MemcacheV1beta2::RequirementOverride]
|
1164
|
-
attr_accessor :requirement_override
|
1165
|
-
|
1166
|
-
#
|
1167
|
-
# Corresponds to the JSON property `ziOrgPolicy`
|
1168
|
-
# @return [String]
|
1169
|
-
attr_accessor :zi_org_policy
|
1170
|
-
|
1171
|
-
#
|
1172
|
-
# Corresponds to the JSON property `ziRegionPolicy`
|
1173
|
-
# @return [String]
|
1174
|
-
attr_accessor :zi_region_policy
|
1175
|
-
|
1176
|
-
#
|
1177
|
-
# Corresponds to the JSON property `ziRegionState`
|
1178
|
-
# @return [String]
|
1179
|
-
attr_accessor :zi_region_state
|
1180
|
-
|
1181
|
-
# Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
|
1182
|
-
# for setting ZI expectations as per go/zicy-publish-physical-location.
|
1183
|
-
# Corresponds to the JSON property `zoneIsolation`
|
1184
|
-
# @return [String]
|
1185
|
-
attr_accessor :zone_isolation
|
1186
|
-
|
1187
|
-
# Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
|
1188
|
-
# expectations as per go/zicy-publish-physical-location.
|
1189
|
-
# Corresponds to the JSON property `zoneSeparation`
|
1190
|
-
# @return [String]
|
1191
|
-
attr_accessor :zone_separation
|
1192
|
-
|
1193
|
-
#
|
1194
|
-
# Corresponds to the JSON property `zsOrgPolicy`
|
1195
|
-
# @return [String]
|
1196
|
-
attr_accessor :zs_org_policy
|
1197
|
-
|
1198
|
-
#
|
1199
|
-
# Corresponds to the JSON property `zsRegionState`
|
1200
|
-
# @return [String]
|
1201
|
-
attr_accessor :zs_region_state
|
1202
|
-
|
1203
|
-
def initialize(**args)
|
1204
|
-
update!(**args)
|
1205
|
-
end
|
1206
|
-
|
1207
|
-
# Update properties of this object
|
1208
|
-
def update!(**args)
|
1209
|
-
@requirement_override = args[:requirement_override] if args.key?(:requirement_override)
|
1210
|
-
@zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
|
1211
|
-
@zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
|
1212
|
-
@zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
|
1213
|
-
@zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
|
1214
|
-
@zone_separation = args[:zone_separation] if args.key?(:zone_separation)
|
1215
|
-
@zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
|
1216
|
-
@zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
|
1217
|
-
end
|
1218
|
-
end
|
1219
|
-
|
1220
1018
|
# Response for ListInstances.
|
1221
1019
|
class ListInstancesResponse
|
1222
1020
|
include Google::Apis::Core::Hashable
|
@@ -1349,82 +1147,6 @@ module Google
|
|
1349
1147
|
end
|
1350
1148
|
end
|
1351
1149
|
|
1352
|
-
#
|
1353
|
-
class LocationAssignment
|
1354
|
-
include Google::Apis::Core::Hashable
|
1355
|
-
|
1356
|
-
#
|
1357
|
-
# Corresponds to the JSON property `location`
|
1358
|
-
# @return [String]
|
1359
|
-
attr_accessor :location
|
1360
|
-
|
1361
|
-
#
|
1362
|
-
# Corresponds to the JSON property `locationType`
|
1363
|
-
# @return [String]
|
1364
|
-
attr_accessor :location_type
|
1365
|
-
|
1366
|
-
def initialize(**args)
|
1367
|
-
update!(**args)
|
1368
|
-
end
|
1369
|
-
|
1370
|
-
# Update properties of this object
|
1371
|
-
def update!(**args)
|
1372
|
-
@location = args[:location] if args.key?(:location)
|
1373
|
-
@location_type = args[:location_type] if args.key?(:location_type)
|
1374
|
-
end
|
1375
|
-
end
|
1376
|
-
|
1377
|
-
#
|
1378
|
-
class LocationData
|
1379
|
-
include Google::Apis::Core::Hashable
|
1380
|
-
|
1381
|
-
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
1382
|
-
# guide#data-metadata-placement-and-failure-domains
|
1383
|
-
# Corresponds to the JSON property `blobstoreLocation`
|
1384
|
-
# @return [Google::Apis::MemcacheV1beta2::BlobstoreLocation]
|
1385
|
-
attr_accessor :blobstore_location
|
1386
|
-
|
1387
|
-
#
|
1388
|
-
# Corresponds to the JSON property `childAssetLocation`
|
1389
|
-
# @return [Google::Apis::MemcacheV1beta2::CloudAssetComposition]
|
1390
|
-
attr_accessor :child_asset_location
|
1391
|
-
|
1392
|
-
#
|
1393
|
-
# Corresponds to the JSON property `directLocation`
|
1394
|
-
# @return [Google::Apis::MemcacheV1beta2::DirectLocationAssignment]
|
1395
|
-
attr_accessor :direct_location
|
1396
|
-
|
1397
|
-
#
|
1398
|
-
# Corresponds to the JSON property `gcpProjectProxy`
|
1399
|
-
# @return [Google::Apis::MemcacheV1beta2::TenantProjectProxy]
|
1400
|
-
attr_accessor :gcp_project_proxy
|
1401
|
-
|
1402
|
-
# Message describing that the location of the customer resource is tied to
|
1403
|
-
# placer allocations
|
1404
|
-
# Corresponds to the JSON property `placerLocation`
|
1405
|
-
# @return [Google::Apis::MemcacheV1beta2::PlacerLocation]
|
1406
|
-
attr_accessor :placer_location
|
1407
|
-
|
1408
|
-
#
|
1409
|
-
# Corresponds to the JSON property `spannerLocation`
|
1410
|
-
# @return [Google::Apis::MemcacheV1beta2::SpannerLocation]
|
1411
|
-
attr_accessor :spanner_location
|
1412
|
-
|
1413
|
-
def initialize(**args)
|
1414
|
-
update!(**args)
|
1415
|
-
end
|
1416
|
-
|
1417
|
-
# Update properties of this object
|
1418
|
-
def update!(**args)
|
1419
|
-
@blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
|
1420
|
-
@child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
|
1421
|
-
@direct_location = args[:direct_location] if args.key?(:direct_location)
|
1422
|
-
@gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
|
1423
|
-
@placer_location = args[:placer_location] if args.key?(:placer_location)
|
1424
|
-
@spanner_location = args[:spanner_location] if args.key?(:spanner_location)
|
1425
|
-
end
|
1426
|
-
end
|
1427
|
-
|
1428
1150
|
# Metadata for the given google.cloud.location.Location.
|
1429
1151
|
class LocationMetadata
|
1430
1152
|
include Google::Apis::Core::Hashable
|
@@ -1814,79 +1536,6 @@ module Google
|
|
1814
1536
|
end
|
1815
1537
|
end
|
1816
1538
|
|
1817
|
-
# Message describing that the location of the customer resource is tied to
|
1818
|
-
# placer allocations
|
1819
|
-
class PlacerLocation
|
1820
|
-
include Google::Apis::Core::Hashable
|
1821
|
-
|
1822
|
-
# Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
|
1823
|
-
# root/my-dir")
|
1824
|
-
# Corresponds to the JSON property `placerConfig`
|
1825
|
-
# @return [String]
|
1826
|
-
attr_accessor :placer_config
|
1827
|
-
|
1828
|
-
def initialize(**args)
|
1829
|
-
update!(**args)
|
1830
|
-
end
|
1831
|
-
|
1832
|
-
# Update properties of this object
|
1833
|
-
def update!(**args)
|
1834
|
-
@placer_config = args[:placer_config] if args.key?(:placer_config)
|
1835
|
-
end
|
1836
|
-
end
|
1837
|
-
|
1838
|
-
# To be used for specifying the intended distribution of regional compute.
|
1839
|
-
# googleapis.com/InstanceGroupManager instances
|
1840
|
-
class RegionalMigDistributionPolicy
|
1841
|
-
include Google::Apis::Core::Hashable
|
1842
|
-
|
1843
|
-
# The shape in which the group converges around distribution of resources.
|
1844
|
-
# Instance of proto2 enum
|
1845
|
-
# Corresponds to the JSON property `targetShape`
|
1846
|
-
# @return [Fixnum]
|
1847
|
-
attr_accessor :target_shape
|
1848
|
-
|
1849
|
-
# Cloud zones used by regional MIG to create instances.
|
1850
|
-
# Corresponds to the JSON property `zones`
|
1851
|
-
# @return [Array<Google::Apis::MemcacheV1beta2::ZoneConfiguration>]
|
1852
|
-
attr_accessor :zones
|
1853
|
-
|
1854
|
-
def initialize(**args)
|
1855
|
-
update!(**args)
|
1856
|
-
end
|
1857
|
-
|
1858
|
-
# Update properties of this object
|
1859
|
-
def update!(**args)
|
1860
|
-
@target_shape = args[:target_shape] if args.key?(:target_shape)
|
1861
|
-
@zones = args[:zones] if args.key?(:zones)
|
1862
|
-
end
|
1863
|
-
end
|
1864
|
-
|
1865
|
-
#
|
1866
|
-
class RequirementOverride
|
1867
|
-
include Google::Apis::Core::Hashable
|
1868
|
-
|
1869
|
-
#
|
1870
|
-
# Corresponds to the JSON property `ziOverride`
|
1871
|
-
# @return [String]
|
1872
|
-
attr_accessor :zi_override
|
1873
|
-
|
1874
|
-
#
|
1875
|
-
# Corresponds to the JSON property `zsOverride`
|
1876
|
-
# @return [String]
|
1877
|
-
attr_accessor :zs_override
|
1878
|
-
|
1879
|
-
def initialize(**args)
|
1880
|
-
update!(**args)
|
1881
|
-
end
|
1882
|
-
|
1883
|
-
# Update properties of this object
|
1884
|
-
def update!(**args)
|
1885
|
-
@zi_override = args[:zi_override] if args.key?(:zi_override)
|
1886
|
-
@zs_override = args[:zs_override] if args.key?(:zs_override)
|
1887
|
-
end
|
1888
|
-
end
|
1889
|
-
|
1890
1539
|
# Request for RescheduleMaintenance.
|
1891
1540
|
class RescheduleMaintenanceRequest
|
1892
1541
|
include Google::Apis::Core::Hashable
|
@@ -1947,32 +1596,6 @@ module Google
|
|
1947
1596
|
end
|
1948
1597
|
end
|
1949
1598
|
|
1950
|
-
#
|
1951
|
-
class SpannerLocation
|
1952
|
-
include Google::Apis::Core::Hashable
|
1953
|
-
|
1954
|
-
# Set of backups used by the resource with name in the same format as what is
|
1955
|
-
# available at http://table/spanner_automon.backup_metadata
|
1956
|
-
# Corresponds to the JSON property `backupName`
|
1957
|
-
# @return [Array<String>]
|
1958
|
-
attr_accessor :backup_name
|
1959
|
-
|
1960
|
-
# Set of databases used by the resource in format /span//
|
1961
|
-
# Corresponds to the JSON property `dbName`
|
1962
|
-
# @return [Array<String>]
|
1963
|
-
attr_accessor :db_name
|
1964
|
-
|
1965
|
-
def initialize(**args)
|
1966
|
-
update!(**args)
|
1967
|
-
end
|
1968
|
-
|
1969
|
-
# Update properties of this object
|
1970
|
-
def update!(**args)
|
1971
|
-
@backup_name = args[:backup_name] if args.key?(:backup_name)
|
1972
|
-
@db_name = args[:db_name] if args.key?(:db_name)
|
1973
|
-
end
|
1974
|
-
end
|
1975
|
-
|
1976
1599
|
# The `Status` type defines a logical error model that is suitable for different
|
1977
1600
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1978
1601
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -2012,25 +1635,6 @@ module Google
|
|
2012
1635
|
end
|
2013
1636
|
end
|
2014
1637
|
|
2015
|
-
#
|
2016
|
-
class TenantProjectProxy
|
2017
|
-
include Google::Apis::Core::Hashable
|
2018
|
-
|
2019
|
-
#
|
2020
|
-
# Corresponds to the JSON property `projectNumbers`
|
2021
|
-
# @return [Array<String>]
|
2022
|
-
attr_accessor :project_numbers
|
2023
|
-
|
2024
|
-
def initialize(**args)
|
2025
|
-
update!(**args)
|
2026
|
-
end
|
2027
|
-
|
2028
|
-
# Update properties of this object
|
2029
|
-
def update!(**args)
|
2030
|
-
@project_numbers = args[:project_numbers] if args.key?(:project_numbers)
|
2031
|
-
end
|
2032
|
-
end
|
2033
|
-
|
2034
1638
|
# Represents a time of day. The date and time zone are either not significant or
|
2035
1639
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
2036
1640
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
@@ -2186,25 +1790,6 @@ module Google
|
|
2186
1790
|
end
|
2187
1791
|
end
|
2188
1792
|
|
2189
|
-
#
|
2190
|
-
class ZoneConfiguration
|
2191
|
-
include Google::Apis::Core::Hashable
|
2192
|
-
|
2193
|
-
#
|
2194
|
-
# Corresponds to the JSON property `zone`
|
2195
|
-
# @return [String]
|
2196
|
-
attr_accessor :zone
|
2197
|
-
|
2198
|
-
def initialize(**args)
|
2199
|
-
update!(**args)
|
2200
|
-
end
|
2201
|
-
|
2202
|
-
# Update properties of this object
|
2203
|
-
def update!(**args)
|
2204
|
-
@zone = args[:zone] if args.key?(:zone)
|
2205
|
-
end
|
2206
|
-
end
|
2207
|
-
|
2208
1793
|
#
|
2209
1794
|
class ZoneMetadata
|
2210
1795
|
include Google::Apis::Core::Hashable
|
@@ -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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250505"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,36 +34,12 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
-
class AssetLocation
|
38
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
-
|
40
|
-
include Google::Apis::Core::JsonObjectSupport
|
41
|
-
end
|
42
|
-
|
43
|
-
class BlobstoreLocation
|
44
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
-
|
46
|
-
include Google::Apis::Core::JsonObjectSupport
|
47
|
-
end
|
48
|
-
|
49
37
|
class CancelOperationRequest
|
50
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
39
|
|
52
40
|
include Google::Apis::Core::JsonObjectSupport
|
53
41
|
end
|
54
42
|
|
55
|
-
class CloudAsset
|
56
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
-
|
58
|
-
include Google::Apis::Core::JsonObjectSupport
|
59
|
-
end
|
60
|
-
|
61
|
-
class CloudAssetComposition
|
62
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
-
|
64
|
-
include Google::Apis::Core::JsonObjectSupport
|
65
|
-
end
|
66
|
-
|
67
43
|
class DailyCycle
|
68
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
45
|
|
@@ -82,24 +58,12 @@ module Google
|
|
82
58
|
include Google::Apis::Core::JsonObjectSupport
|
83
59
|
end
|
84
60
|
|
85
|
-
class DirectLocationAssignment
|
86
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
-
|
88
|
-
include Google::Apis::Core::JsonObjectSupport
|
89
|
-
end
|
90
|
-
|
91
61
|
class Empty
|
92
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
63
|
|
94
64
|
include Google::Apis::Core::JsonObjectSupport
|
95
65
|
end
|
96
66
|
|
97
|
-
class ExtraParameter
|
98
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
-
|
100
|
-
include Google::Apis::Core::JsonObjectSupport
|
101
|
-
end
|
102
|
-
|
103
67
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
104
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
69
|
|
@@ -196,12 +160,6 @@ module Google
|
|
196
160
|
include Google::Apis::Core::JsonObjectSupport
|
197
161
|
end
|
198
162
|
|
199
|
-
class IsolationExpectations
|
200
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
-
|
202
|
-
include Google::Apis::Core::JsonObjectSupport
|
203
|
-
end
|
204
|
-
|
205
163
|
class ListInstancesResponse
|
206
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
165
|
|
@@ -226,18 +184,6 @@ module Google
|
|
226
184
|
include Google::Apis::Core::JsonObjectSupport
|
227
185
|
end
|
228
186
|
|
229
|
-
class LocationAssignment
|
230
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
-
|
232
|
-
include Google::Apis::Core::JsonObjectSupport
|
233
|
-
end
|
234
|
-
|
235
|
-
class LocationData
|
236
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
-
|
238
|
-
include Google::Apis::Core::JsonObjectSupport
|
239
|
-
end
|
240
|
-
|
241
187
|
class LocationMetadata
|
242
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
189
|
|
@@ -292,24 +238,6 @@ module Google
|
|
292
238
|
include Google::Apis::Core::JsonObjectSupport
|
293
239
|
end
|
294
240
|
|
295
|
-
class PlacerLocation
|
296
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
-
|
298
|
-
include Google::Apis::Core::JsonObjectSupport
|
299
|
-
end
|
300
|
-
|
301
|
-
class RegionalMigDistributionPolicy
|
302
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
-
|
304
|
-
include Google::Apis::Core::JsonObjectSupport
|
305
|
-
end
|
306
|
-
|
307
|
-
class RequirementOverride
|
308
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
-
|
310
|
-
include Google::Apis::Core::JsonObjectSupport
|
311
|
-
end
|
312
|
-
|
313
241
|
class RescheduleMaintenanceRequest
|
314
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
243
|
|
@@ -322,24 +250,12 @@ module Google
|
|
322
250
|
include Google::Apis::Core::JsonObjectSupport
|
323
251
|
end
|
324
252
|
|
325
|
-
class SpannerLocation
|
326
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
-
|
328
|
-
include Google::Apis::Core::JsonObjectSupport
|
329
|
-
end
|
330
|
-
|
331
253
|
class Status
|
332
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
255
|
|
334
256
|
include Google::Apis::Core::JsonObjectSupport
|
335
257
|
end
|
336
258
|
|
337
|
-
class TenantProjectProxy
|
338
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
-
|
340
|
-
include Google::Apis::Core::JsonObjectSupport
|
341
|
-
end
|
342
|
-
|
343
259
|
class TimeOfDay
|
344
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
261
|
|
@@ -370,12 +286,6 @@ module Google
|
|
370
286
|
include Google::Apis::Core::JsonObjectSupport
|
371
287
|
end
|
372
288
|
|
373
|
-
class ZoneConfiguration
|
374
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
-
|
376
|
-
include Google::Apis::Core::JsonObjectSupport
|
377
|
-
end
|
378
|
-
|
379
289
|
class ZoneMetadata
|
380
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
291
|
|
@@ -398,50 +308,12 @@ module Google
|
|
398
308
|
end
|
399
309
|
end
|
400
310
|
|
401
|
-
class AssetLocation
|
402
|
-
# @private
|
403
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
404
|
-
property :ccfe_rms_path, as: 'ccfeRmsPath'
|
405
|
-
property :expected, as: 'expected', class: Google::Apis::MemcacheV1beta2::IsolationExpectations, decorator: Google::Apis::MemcacheV1beta2::IsolationExpectations::Representation
|
406
|
-
|
407
|
-
collection :extra_parameters, as: 'extraParameters', class: Google::Apis::MemcacheV1beta2::ExtraParameter, decorator: Google::Apis::MemcacheV1beta2::ExtraParameter::Representation
|
408
|
-
|
409
|
-
collection :location_data, as: 'locationData', class: Google::Apis::MemcacheV1beta2::LocationData, decorator: Google::Apis::MemcacheV1beta2::LocationData::Representation
|
410
|
-
|
411
|
-
collection :parent_asset, as: 'parentAsset', class: Google::Apis::MemcacheV1beta2::CloudAsset, decorator: Google::Apis::MemcacheV1beta2::CloudAsset::Representation
|
412
|
-
|
413
|
-
end
|
414
|
-
end
|
415
|
-
|
416
|
-
class BlobstoreLocation
|
417
|
-
# @private
|
418
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
419
|
-
collection :policy_id, as: 'policyId'
|
420
|
-
end
|
421
|
-
end
|
422
|
-
|
423
311
|
class CancelOperationRequest
|
424
312
|
# @private
|
425
313
|
class Representation < Google::Apis::Core::JsonRepresentation
|
426
314
|
end
|
427
315
|
end
|
428
316
|
|
429
|
-
class CloudAsset
|
430
|
-
# @private
|
431
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
432
|
-
property :asset_name, as: 'assetName'
|
433
|
-
property :asset_type, as: 'assetType'
|
434
|
-
end
|
435
|
-
end
|
436
|
-
|
437
|
-
class CloudAssetComposition
|
438
|
-
# @private
|
439
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
440
|
-
collection :child_asset, as: 'childAsset', class: Google::Apis::MemcacheV1beta2::CloudAsset, decorator: Google::Apis::MemcacheV1beta2::CloudAsset::Representation
|
441
|
-
|
442
|
-
end
|
443
|
-
end
|
444
|
-
|
445
317
|
class DailyCycle
|
446
318
|
# @private
|
447
319
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -472,28 +344,12 @@ module Google
|
|
472
344
|
end
|
473
345
|
end
|
474
346
|
|
475
|
-
class DirectLocationAssignment
|
476
|
-
# @private
|
477
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
478
|
-
collection :location, as: 'location', class: Google::Apis::MemcacheV1beta2::LocationAssignment, decorator: Google::Apis::MemcacheV1beta2::LocationAssignment::Representation
|
479
|
-
|
480
|
-
end
|
481
|
-
end
|
482
|
-
|
483
347
|
class Empty
|
484
348
|
# @private
|
485
349
|
class Representation < Google::Apis::Core::JsonRepresentation
|
486
350
|
end
|
487
351
|
end
|
488
352
|
|
489
|
-
class ExtraParameter
|
490
|
-
# @private
|
491
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
492
|
-
property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::MemcacheV1beta2::RegionalMigDistributionPolicy, decorator: Google::Apis::MemcacheV1beta2::RegionalMigDistributionPolicy::Representation
|
493
|
-
|
494
|
-
end
|
495
|
-
end
|
496
|
-
|
497
353
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
498
354
|
# @private
|
499
355
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -543,6 +399,7 @@ module Google
|
|
543
399
|
# @private
|
544
400
|
class Representation < Google::Apis::Core::JsonRepresentation
|
545
401
|
property :consumer_defined_name, as: 'consumerDefinedName'
|
402
|
+
property :consumer_project_number, as: 'consumerProjectNumber'
|
546
403
|
property :create_time, as: 'createTime'
|
547
404
|
property :instance_type, as: 'instanceType'
|
548
405
|
hash :labels, as: 'labels'
|
@@ -682,21 +539,6 @@ module Google
|
|
682
539
|
end
|
683
540
|
end
|
684
541
|
|
685
|
-
class IsolationExpectations
|
686
|
-
# @private
|
687
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
688
|
-
property :requirement_override, as: 'requirementOverride', class: Google::Apis::MemcacheV1beta2::RequirementOverride, decorator: Google::Apis::MemcacheV1beta2::RequirementOverride::Representation
|
689
|
-
|
690
|
-
property :zi_org_policy, as: 'ziOrgPolicy'
|
691
|
-
property :zi_region_policy, as: 'ziRegionPolicy'
|
692
|
-
property :zi_region_state, as: 'ziRegionState'
|
693
|
-
property :zone_isolation, as: 'zoneIsolation'
|
694
|
-
property :zone_separation, as: 'zoneSeparation'
|
695
|
-
property :zs_org_policy, as: 'zsOrgPolicy'
|
696
|
-
property :zs_region_state, as: 'zsRegionState'
|
697
|
-
end
|
698
|
-
end
|
699
|
-
|
700
542
|
class ListInstancesResponse
|
701
543
|
# @private
|
702
544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -736,32 +578,6 @@ module Google
|
|
736
578
|
end
|
737
579
|
end
|
738
580
|
|
739
|
-
class LocationAssignment
|
740
|
-
# @private
|
741
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
742
|
-
property :location, as: 'location'
|
743
|
-
property :location_type, as: 'locationType'
|
744
|
-
end
|
745
|
-
end
|
746
|
-
|
747
|
-
class LocationData
|
748
|
-
# @private
|
749
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
750
|
-
property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::MemcacheV1beta2::BlobstoreLocation, decorator: Google::Apis::MemcacheV1beta2::BlobstoreLocation::Representation
|
751
|
-
|
752
|
-
property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::MemcacheV1beta2::CloudAssetComposition, decorator: Google::Apis::MemcacheV1beta2::CloudAssetComposition::Representation
|
753
|
-
|
754
|
-
property :direct_location, as: 'directLocation', class: Google::Apis::MemcacheV1beta2::DirectLocationAssignment, decorator: Google::Apis::MemcacheV1beta2::DirectLocationAssignment::Representation
|
755
|
-
|
756
|
-
property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::MemcacheV1beta2::TenantProjectProxy, decorator: Google::Apis::MemcacheV1beta2::TenantProjectProxy::Representation
|
757
|
-
|
758
|
-
property :placer_location, as: 'placerLocation', class: Google::Apis::MemcacheV1beta2::PlacerLocation, decorator: Google::Apis::MemcacheV1beta2::PlacerLocation::Representation
|
759
|
-
|
760
|
-
property :spanner_location, as: 'spannerLocation', class: Google::Apis::MemcacheV1beta2::SpannerLocation, decorator: Google::Apis::MemcacheV1beta2::SpannerLocation::Representation
|
761
|
-
|
762
|
-
end
|
763
|
-
end
|
764
|
-
|
765
581
|
class LocationMetadata
|
766
582
|
# @private
|
767
583
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -860,30 +676,6 @@ module Google
|
|
860
676
|
end
|
861
677
|
end
|
862
678
|
|
863
|
-
class PlacerLocation
|
864
|
-
# @private
|
865
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
866
|
-
property :placer_config, as: 'placerConfig'
|
867
|
-
end
|
868
|
-
end
|
869
|
-
|
870
|
-
class RegionalMigDistributionPolicy
|
871
|
-
# @private
|
872
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
873
|
-
property :target_shape, as: 'targetShape'
|
874
|
-
collection :zones, as: 'zones', class: Google::Apis::MemcacheV1beta2::ZoneConfiguration, decorator: Google::Apis::MemcacheV1beta2::ZoneConfiguration::Representation
|
875
|
-
|
876
|
-
end
|
877
|
-
end
|
878
|
-
|
879
|
-
class RequirementOverride
|
880
|
-
# @private
|
881
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
882
|
-
property :zi_override, as: 'ziOverride'
|
883
|
-
property :zs_override, as: 'zsOverride'
|
884
|
-
end
|
885
|
-
end
|
886
|
-
|
887
679
|
class RescheduleMaintenanceRequest
|
888
680
|
# @private
|
889
681
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -902,14 +694,6 @@ module Google
|
|
902
694
|
end
|
903
695
|
end
|
904
696
|
|
905
|
-
class SpannerLocation
|
906
|
-
# @private
|
907
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
908
|
-
collection :backup_name, as: 'backupName'
|
909
|
-
collection :db_name, as: 'dbName'
|
910
|
-
end
|
911
|
-
end
|
912
|
-
|
913
697
|
class Status
|
914
698
|
# @private
|
915
699
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -919,13 +703,6 @@ module Google
|
|
919
703
|
end
|
920
704
|
end
|
921
705
|
|
922
|
-
class TenantProjectProxy
|
923
|
-
# @private
|
924
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
925
|
-
collection :project_numbers, as: 'projectNumbers'
|
926
|
-
end
|
927
|
-
end
|
928
|
-
|
929
706
|
class TimeOfDay
|
930
707
|
# @private
|
931
708
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -974,13 +751,6 @@ module Google
|
|
974
751
|
end
|
975
752
|
end
|
976
753
|
|
977
|
-
class ZoneConfiguration
|
978
|
-
# @private
|
979
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
980
|
-
property :zone, as: 'zone'
|
981
|
-
end
|
982
|
-
end
|
983
|
-
|
984
754
|
class ZoneMetadata
|
985
755
|
# @private
|
986
756
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -85,6 +85,9 @@ module Google
|
|
85
85
|
# Lists information about the supported locations for this service.
|
86
86
|
# @param [String] name
|
87
87
|
# The resource that owns the locations collection, if applicable.
|
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.
|
88
91
|
# @param [String] filter
|
89
92
|
# A filter to narrow down results to a preferred subset. The filtering language
|
90
93
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -112,11 +115,12 @@ module Google
|
|
112
115
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
113
116
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
114
117
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
115
|
-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
118
|
+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
116
119
|
command = make_simple_command(:get, 'v1beta2/{+name}/locations', options)
|
117
120
|
command.response_representation = Google::Apis::MemcacheV1beta2::ListLocationsResponse::Representation
|
118
121
|
command.response_class = Google::Apis::MemcacheV1beta2::ListLocationsResponse
|
119
122
|
command.params['name'] = name unless name.nil?
|
123
|
+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
|
120
124
|
command.query['filter'] = filter unless filter.nil?
|
121
125
|
command.query['pageSize'] = page_size unless page_size.nil?
|
122
126
|
command.query['pageToken'] = page_token unless page_token.nil?
|
@@ -504,8 +508,8 @@ module Google
|
|
504
508
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
505
509
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
506
510
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
507
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
508
|
-
# corresponding to `Code.CANCELLED`.
|
511
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
512
|
+
# , corresponding to `Code.CANCELLED`.
|
509
513
|
# @param [String] name
|
510
514
|
# The name of the operation resource to be cancelled.
|
511
515
|
# @param [Google::Apis::MemcacheV1beta2::CancelOperationRequest] cancel_operation_request_object
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.44.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.44.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1beta2
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
66
|
requirements:
|
69
67
|
- - ">="
|
70
68
|
- !ruby/object:Gem::Version
|
71
|
-
version: '
|
69
|
+
version: '3.1'
|
72
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
71
|
requirements:
|
74
72
|
- - ">="
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.8
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Memorystore for Memcached API V1beta2
|
82
79
|
test_files: []
|