google-apis-memcache_v1beta2 0.40.0 → 0.42.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: bf16cdd65fb282aca15a16c82602817b8d3760fb680c874abaf882a02ef43a14
|
|
4
|
+
data.tar.gz: bcbeb26feddcc1f2a046ee0b7228374efa160ba6414dee54975a8a91a9e53da5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83f0cb64fcaba4ea0a1c5f980ad939db1394243e872a4782347ca2d182d3e7ef3a06b78b57678a63d85017609858ea6954d36e9442059795732c8487876dbebc
|
|
7
|
+
data.tar.gz: 8306f4da85a9c6b6310325a0922616c6e7651b180ace399559b6cc6555b35eddb853e24fe649a08fbc739eef72c453ca1b16a12925ad56d556a7863e0ca4e013
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-memcache_v1beta2
|
|
2
2
|
|
|
3
|
+
### v0.42.0 (2024-12-02)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20241010
|
|
6
|
+
* Regenerated using generator version 0.15.1
|
|
7
|
+
|
|
8
|
+
### v0.41.0 (2024-06-16)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20240604
|
|
11
|
+
|
|
3
12
|
### v0.40.0 (2024-05-19)
|
|
4
13
|
|
|
5
14
|
* Regenerated using generator version 0.15.0
|
|
@@ -79,6 +79,73 @@ 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
|
+
|
|
82
149
|
# The request message for Operations.CancelOperation.
|
|
83
150
|
class CancelOperationRequest
|
|
84
151
|
include Google::Apis::Core::Hashable
|
|
@@ -92,6 +159,50 @@ module Google
|
|
|
92
159
|
end
|
|
93
160
|
end
|
|
94
161
|
|
|
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
|
+
|
|
95
206
|
# Time window specified for daily operations.
|
|
96
207
|
class DailyCycle
|
|
97
208
|
include Google::Apis::Core::Hashable
|
|
@@ -208,6 +319,25 @@ module Google
|
|
|
208
319
|
end
|
|
209
320
|
end
|
|
210
321
|
|
|
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
|
+
|
|
211
341
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
212
342
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
213
343
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
@@ -224,6 +354,26 @@ module Google
|
|
|
224
354
|
end
|
|
225
355
|
end
|
|
226
356
|
|
|
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
|
+
|
|
227
377
|
# Metadata for the given google.cloud.location.Location.
|
|
228
378
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
|
229
379
|
include Google::Apis::Core::Hashable
|
|
@@ -912,6 +1062,18 @@ module Google
|
|
|
912
1062
|
# @return [Array<String>]
|
|
913
1063
|
attr_accessor :reserved_ip_range_id
|
|
914
1064
|
|
|
1065
|
+
# Optional. Output only. Reserved for future use.
|
|
1066
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
|
1067
|
+
# @return [Boolean]
|
|
1068
|
+
attr_accessor :satisfies_pzi
|
|
1069
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
|
1070
|
+
|
|
1071
|
+
# Optional. Output only. Reserved for future use.
|
|
1072
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
|
1073
|
+
# @return [Boolean]
|
|
1074
|
+
attr_accessor :satisfies_pzs
|
|
1075
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
|
1076
|
+
|
|
915
1077
|
# Output only. The state of this Memcached instance.
|
|
916
1078
|
# Corresponds to the JSON property `state`
|
|
917
1079
|
# @return [String]
|
|
@@ -957,6 +1119,8 @@ module Google
|
|
|
957
1119
|
@node_count = args[:node_count] if args.key?(:node_count)
|
|
958
1120
|
@parameters = args[:parameters] if args.key?(:parameters)
|
|
959
1121
|
@reserved_ip_range_id = args[:reserved_ip_range_id] if args.key?(:reserved_ip_range_id)
|
|
1122
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
1123
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
960
1124
|
@state = args[:state] if args.key?(:state)
|
|
961
1125
|
@update_available = args[:update_available] if args.key?(:update_available)
|
|
962
1126
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -989,6 +1153,70 @@ module Google
|
|
|
989
1153
|
end
|
|
990
1154
|
end
|
|
991
1155
|
|
|
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
|
+
|
|
992
1220
|
# Response for ListInstances.
|
|
993
1221
|
class ListInstancesResponse
|
|
994
1222
|
include Google::Apis::Core::Hashable
|
|
@@ -1121,6 +1349,82 @@ module Google
|
|
|
1121
1349
|
end
|
|
1122
1350
|
end
|
|
1123
1351
|
|
|
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
|
+
|
|
1124
1428
|
# Metadata for the given google.cloud.location.Location.
|
|
1125
1429
|
class LocationMetadata
|
|
1126
1430
|
include Google::Apis::Core::Hashable
|
|
@@ -1510,6 +1814,79 @@ module Google
|
|
|
1510
1814
|
end
|
|
1511
1815
|
end
|
|
1512
1816
|
|
|
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
|
+
|
|
1513
1890
|
# Request for RescheduleMaintenance.
|
|
1514
1891
|
class RescheduleMaintenanceRequest
|
|
1515
1892
|
include Google::Apis::Core::Hashable
|
|
@@ -1570,6 +1947,32 @@ module Google
|
|
|
1570
1947
|
end
|
|
1571
1948
|
end
|
|
1572
1949
|
|
|
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
|
+
|
|
1573
1976
|
# The `Status` type defines a logical error model that is suitable for different
|
|
1574
1977
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
1575
1978
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
@@ -1609,30 +2012,53 @@ module Google
|
|
|
1609
2012
|
end
|
|
1610
2013
|
end
|
|
1611
2014
|
|
|
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
|
+
|
|
1612
2034
|
# Represents a time of day. The date and time zone are either not significant or
|
|
1613
2035
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
|
1614
2036
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
|
1615
2037
|
class TimeOfDay
|
|
1616
2038
|
include Google::Apis::Core::Hashable
|
|
1617
2039
|
|
|
1618
|
-
# Hours of day in 24 hour format.
|
|
1619
|
-
#
|
|
2040
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
|
2041
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
|
2042
|
+
# value "24:00:00" for scenarios like business closing time.
|
|
1620
2043
|
# Corresponds to the JSON property `hours`
|
|
1621
2044
|
# @return [Fixnum]
|
|
1622
2045
|
attr_accessor :hours
|
|
1623
2046
|
|
|
1624
|
-
# Minutes of hour
|
|
2047
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
|
2048
|
+
# to 59.
|
|
1625
2049
|
# Corresponds to the JSON property `minutes`
|
|
1626
2050
|
# @return [Fixnum]
|
|
1627
2051
|
attr_accessor :minutes
|
|
1628
2052
|
|
|
1629
|
-
# Fractions of seconds in nanoseconds. Must be
|
|
2053
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
|
|
2054
|
+
# less than or equal to 999,999,999.
|
|
1630
2055
|
# Corresponds to the JSON property `nanos`
|
|
1631
2056
|
# @return [Fixnum]
|
|
1632
2057
|
attr_accessor :nanos
|
|
1633
2058
|
|
|
1634
|
-
# Seconds of
|
|
1635
|
-
# allow the value 60 if it allows leap-
|
|
2059
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must be
|
|
2060
|
+
# less than or equal to 59. An API may allow the value 60 if it allows leap-
|
|
2061
|
+
# seconds.
|
|
1636
2062
|
# Corresponds to the JSON property `seconds`
|
|
1637
2063
|
# @return [Fixnum]
|
|
1638
2064
|
attr_accessor :seconds
|
|
@@ -1760,6 +2186,25 @@ module Google
|
|
|
1760
2186
|
end
|
|
1761
2187
|
end
|
|
1762
2188
|
|
|
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
|
+
|
|
1763
2208
|
#
|
|
1764
2209
|
class ZoneMetadata
|
|
1765
2210
|
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.42.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.15.
|
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20241010"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -34,12 +34,36 @@ 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
|
+
|
|
37
49
|
class CancelOperationRequest
|
|
38
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
51
|
|
|
40
52
|
include Google::Apis::Core::JsonObjectSupport
|
|
41
53
|
end
|
|
42
54
|
|
|
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
|
+
|
|
43
67
|
class DailyCycle
|
|
44
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
45
69
|
|
|
@@ -58,12 +82,24 @@ module Google
|
|
|
58
82
|
include Google::Apis::Core::JsonObjectSupport
|
|
59
83
|
end
|
|
60
84
|
|
|
85
|
+
class DirectLocationAssignment
|
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
|
+
|
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
89
|
+
end
|
|
90
|
+
|
|
61
91
|
class Empty
|
|
62
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
93
|
|
|
64
94
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
95
|
end
|
|
66
96
|
|
|
97
|
+
class ExtraParameter
|
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
99
|
+
|
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
101
|
+
end
|
|
102
|
+
|
|
67
103
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
|
68
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
105
|
|
|
@@ -160,6 +196,12 @@ module Google
|
|
|
160
196
|
include Google::Apis::Core::JsonObjectSupport
|
|
161
197
|
end
|
|
162
198
|
|
|
199
|
+
class IsolationExpectations
|
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
|
+
|
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
203
|
+
end
|
|
204
|
+
|
|
163
205
|
class ListInstancesResponse
|
|
164
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
165
207
|
|
|
@@ -184,6 +226,18 @@ module Google
|
|
|
184
226
|
include Google::Apis::Core::JsonObjectSupport
|
|
185
227
|
end
|
|
186
228
|
|
|
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
|
+
|
|
187
241
|
class LocationMetadata
|
|
188
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
243
|
|
|
@@ -238,6 +292,24 @@ module Google
|
|
|
238
292
|
include Google::Apis::Core::JsonObjectSupport
|
|
239
293
|
end
|
|
240
294
|
|
|
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
|
+
|
|
241
313
|
class RescheduleMaintenanceRequest
|
|
242
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
315
|
|
|
@@ -250,12 +322,24 @@ module Google
|
|
|
250
322
|
include Google::Apis::Core::JsonObjectSupport
|
|
251
323
|
end
|
|
252
324
|
|
|
325
|
+
class SpannerLocation
|
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
327
|
+
|
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
329
|
+
end
|
|
330
|
+
|
|
253
331
|
class Status
|
|
254
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
255
333
|
|
|
256
334
|
include Google::Apis::Core::JsonObjectSupport
|
|
257
335
|
end
|
|
258
336
|
|
|
337
|
+
class TenantProjectProxy
|
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
339
|
+
|
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
341
|
+
end
|
|
342
|
+
|
|
259
343
|
class TimeOfDay
|
|
260
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
345
|
|
|
@@ -286,6 +370,12 @@ module Google
|
|
|
286
370
|
include Google::Apis::Core::JsonObjectSupport
|
|
287
371
|
end
|
|
288
372
|
|
|
373
|
+
class ZoneConfiguration
|
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
375
|
+
|
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
377
|
+
end
|
|
378
|
+
|
|
289
379
|
class ZoneMetadata
|
|
290
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
381
|
|
|
@@ -308,12 +398,50 @@ module Google
|
|
|
308
398
|
end
|
|
309
399
|
end
|
|
310
400
|
|
|
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
|
+
|
|
311
423
|
class CancelOperationRequest
|
|
312
424
|
# @private
|
|
313
425
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
314
426
|
end
|
|
315
427
|
end
|
|
316
428
|
|
|
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
|
+
|
|
317
445
|
class DailyCycle
|
|
318
446
|
# @private
|
|
319
447
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -344,12 +472,28 @@ module Google
|
|
|
344
472
|
end
|
|
345
473
|
end
|
|
346
474
|
|
|
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
|
+
|
|
347
483
|
class Empty
|
|
348
484
|
# @private
|
|
349
485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
350
486
|
end
|
|
351
487
|
end
|
|
352
488
|
|
|
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
|
+
|
|
353
497
|
class GoogleCloudMemcacheV1beta2LocationMetadata
|
|
354
498
|
# @private
|
|
355
499
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -521,6 +665,8 @@ module Google
|
|
|
521
665
|
property :parameters, as: 'parameters', class: Google::Apis::MemcacheV1beta2::MemcacheParameters, decorator: Google::Apis::MemcacheV1beta2::MemcacheParameters::Representation
|
|
522
666
|
|
|
523
667
|
collection :reserved_ip_range_id, as: 'reservedIpRangeId'
|
|
668
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
669
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
524
670
|
property :state, as: 'state'
|
|
525
671
|
property :update_available, as: 'updateAvailable'
|
|
526
672
|
property :update_time, as: 'updateTime'
|
|
@@ -536,6 +682,21 @@ module Google
|
|
|
536
682
|
end
|
|
537
683
|
end
|
|
538
684
|
|
|
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
|
+
|
|
539
700
|
class ListInstancesResponse
|
|
540
701
|
# @private
|
|
541
702
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -575,6 +736,32 @@ module Google
|
|
|
575
736
|
end
|
|
576
737
|
end
|
|
577
738
|
|
|
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
|
+
|
|
578
765
|
class LocationMetadata
|
|
579
766
|
# @private
|
|
580
767
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -673,6 +860,30 @@ module Google
|
|
|
673
860
|
end
|
|
674
861
|
end
|
|
675
862
|
|
|
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
|
+
|
|
676
887
|
class RescheduleMaintenanceRequest
|
|
677
888
|
# @private
|
|
678
889
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -691,6 +902,14 @@ module Google
|
|
|
691
902
|
end
|
|
692
903
|
end
|
|
693
904
|
|
|
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
|
+
|
|
694
913
|
class Status
|
|
695
914
|
# @private
|
|
696
915
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -700,6 +919,13 @@ module Google
|
|
|
700
919
|
end
|
|
701
920
|
end
|
|
702
921
|
|
|
922
|
+
class TenantProjectProxy
|
|
923
|
+
# @private
|
|
924
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
925
|
+
collection :project_numbers, as: 'projectNumbers'
|
|
926
|
+
end
|
|
927
|
+
end
|
|
928
|
+
|
|
703
929
|
class TimeOfDay
|
|
704
930
|
# @private
|
|
705
931
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -748,6 +974,13 @@ module Google
|
|
|
748
974
|
end
|
|
749
975
|
end
|
|
750
976
|
|
|
977
|
+
class ZoneConfiguration
|
|
978
|
+
# @private
|
|
979
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
980
|
+
property :zone, as: 'zone'
|
|
981
|
+
end
|
|
982
|
+
end
|
|
983
|
+
|
|
751
984
|
class ZoneMetadata
|
|
752
985
|
# @private
|
|
753
986
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.42.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-
|
|
11
|
+
date: 2024-12-04 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-memcache_v1beta2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.42.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1beta2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.5.
|
|
78
|
+
rubygems_version: 3.5.22
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Cloud Memorystore for Memcached API V1beta2
|