google-apis-memcache_v1beta2 0.41.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,10 @@
|
|
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
|
+
|
3
8
|
### v0.41.0 (2024-06-16)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240604
|
@@ -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
|
@@ -1003,6 +1153,70 @@ module Google
|
|
1003
1153
|
end
|
1004
1154
|
end
|
1005
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
|
+
|
1006
1220
|
# Response for ListInstances.
|
1007
1221
|
class ListInstancesResponse
|
1008
1222
|
include Google::Apis::Core::Hashable
|
@@ -1135,6 +1349,82 @@ module Google
|
|
1135
1349
|
end
|
1136
1350
|
end
|
1137
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
|
+
|
1138
1428
|
# Metadata for the given google.cloud.location.Location.
|
1139
1429
|
class LocationMetadata
|
1140
1430
|
include Google::Apis::Core::Hashable
|
@@ -1524,6 +1814,79 @@ module Google
|
|
1524
1814
|
end
|
1525
1815
|
end
|
1526
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
|
+
|
1527
1890
|
# Request for RescheduleMaintenance.
|
1528
1891
|
class RescheduleMaintenanceRequest
|
1529
1892
|
include Google::Apis::Core::Hashable
|
@@ -1584,6 +1947,32 @@ module Google
|
|
1584
1947
|
end
|
1585
1948
|
end
|
1586
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
|
+
|
1587
1976
|
# The `Status` type defines a logical error model that is suitable for different
|
1588
1977
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1589
1978
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -1623,30 +2012,53 @@ module Google
|
|
1623
2012
|
end
|
1624
2013
|
end
|
1625
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
|
+
|
1626
2034
|
# Represents a time of day. The date and time zone are either not significant or
|
1627
2035
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
1628
2036
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
1629
2037
|
class TimeOfDay
|
1630
2038
|
include Google::Apis::Core::Hashable
|
1631
2039
|
|
1632
|
-
# Hours of day in 24 hour format.
|
1633
|
-
#
|
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.
|
1634
2043
|
# Corresponds to the JSON property `hours`
|
1635
2044
|
# @return [Fixnum]
|
1636
2045
|
attr_accessor :hours
|
1637
2046
|
|
1638
|
-
# Minutes of hour
|
2047
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
2048
|
+
# to 59.
|
1639
2049
|
# Corresponds to the JSON property `minutes`
|
1640
2050
|
# @return [Fixnum]
|
1641
2051
|
attr_accessor :minutes
|
1642
2052
|
|
1643
|
-
# 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.
|
1644
2055
|
# Corresponds to the JSON property `nanos`
|
1645
2056
|
# @return [Fixnum]
|
1646
2057
|
attr_accessor :nanos
|
1647
2058
|
|
1648
|
-
# Seconds of
|
1649
|
-
# 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.
|
1650
2062
|
# Corresponds to the JSON property `seconds`
|
1651
2063
|
# @return [Fixnum]
|
1652
2064
|
attr_accessor :seconds
|
@@ -1774,6 +2186,25 @@ module Google
|
|
1774
2186
|
end
|
1775
2187
|
end
|
1776
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
|
+
|
1777
2208
|
#
|
1778
2209
|
class ZoneMetadata
|
1779
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
|
@@ -538,6 +682,21 @@ module Google
|
|
538
682
|
end
|
539
683
|
end
|
540
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
|
+
|
541
700
|
class ListInstancesResponse
|
542
701
|
# @private
|
543
702
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -577,6 +736,32 @@ module Google
|
|
577
736
|
end
|
578
737
|
end
|
579
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
|
+
|
580
765
|
class LocationMetadata
|
581
766
|
# @private
|
582
767
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -675,6 +860,30 @@ module Google
|
|
675
860
|
end
|
676
861
|
end
|
677
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
|
+
|
678
887
|
class RescheduleMaintenanceRequest
|
679
888
|
# @private
|
680
889
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -693,6 +902,14 @@ module Google
|
|
693
902
|
end
|
694
903
|
end
|
695
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
|
+
|
696
913
|
class Status
|
697
914
|
# @private
|
698
915
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -702,6 +919,13 @@ module Google
|
|
702
919
|
end
|
703
920
|
end
|
704
921
|
|
922
|
+
class TenantProjectProxy
|
923
|
+
# @private
|
924
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
925
|
+
collection :project_numbers, as: 'projectNumbers'
|
926
|
+
end
|
927
|
+
end
|
928
|
+
|
705
929
|
class TimeOfDay
|
706
930
|
# @private
|
707
931
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -750,6 +974,13 @@ module Google
|
|
750
974
|
end
|
751
975
|
end
|
752
976
|
|
977
|
+
class ZoneConfiguration
|
978
|
+
# @private
|
979
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
980
|
+
property :zone, as: 'zone'
|
981
|
+
end
|
982
|
+
end
|
983
|
+
|
753
984
|
class ZoneMetadata
|
754
985
|
# @private
|
755
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
|