google-apis-memcache_v1 0.41.0 → 0.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/memcache_v1/classes.rb +427 -0
- data/lib/google/apis/memcache_v1/gem_version.rb +3 -3
- data/lib/google/apis/memcache_v1/representations.rb +231 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2026c9751367cb24ebe60f12b87e59be36d8206502d38d0a99806cbdfb5a1155
|
4
|
+
data.tar.gz: 70832dd14c90aa7adaeb6746da7247bd1e6cd27a521c2f63985d2c4cf72ff294
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c82cad5b9833f4081fe3b029ad29ef339fec819e9d22032859608ab1b28581a0fa44ca57368495588b8df94b9f2a08deb6cc5ab1159b49e46fec125f8c3c45d7
|
7
|
+
data.tar.gz: 7222a10c1a3123f613346086ee45ec5fec524d68ee4b77224cbe0e6d83505700ffacfb9d885f90d9826716819b147b3d1e7b867728a67f414a23f404d4f4ca1e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-memcache_v1
|
2
2
|
|
3
|
+
### v0.42.0 (2024-09-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240919
|
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
|
@@ -50,6 +50,73 @@ module Google
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
# Provides the mapping of a cloud asset to a direct physical location or to a
|
54
|
+
# proxy that defines the location on its behalf.
|
55
|
+
class AssetLocation
|
56
|
+
include Google::Apis::Core::Hashable
|
57
|
+
|
58
|
+
# Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants
|
59
|
+
# that use CCFE RMS for storing resource metadata.
|
60
|
+
# Corresponds to the JSON property `ccfeRmsPath`
|
61
|
+
# @return [String]
|
62
|
+
attr_accessor :ccfe_rms_path
|
63
|
+
|
64
|
+
# Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state
|
65
|
+
# of the region at the time of asset creation.
|
66
|
+
# Corresponds to the JSON property `expected`
|
67
|
+
# @return [Google::Apis::MemcacheV1::IsolationExpectations]
|
68
|
+
attr_accessor :expected
|
69
|
+
|
70
|
+
# Defines extra parameters required for specific asset types.
|
71
|
+
# Corresponds to the JSON property `extraParameters`
|
72
|
+
# @return [Array<Google::Apis::MemcacheV1::ExtraParameter>]
|
73
|
+
attr_accessor :extra_parameters
|
74
|
+
|
75
|
+
# Contains all kinds of physical location definitions for this asset.
|
76
|
+
# Corresponds to the JSON property `locationData`
|
77
|
+
# @return [Array<Google::Apis::MemcacheV1::LocationData>]
|
78
|
+
attr_accessor :location_data
|
79
|
+
|
80
|
+
# Defines parents assets if any in order to allow later generation of
|
81
|
+
# child_asset_location data via child assets.
|
82
|
+
# Corresponds to the JSON property `parentAsset`
|
83
|
+
# @return [Array<Google::Apis::MemcacheV1::CloudAsset>]
|
84
|
+
attr_accessor :parent_asset
|
85
|
+
|
86
|
+
def initialize(**args)
|
87
|
+
update!(**args)
|
88
|
+
end
|
89
|
+
|
90
|
+
# Update properties of this object
|
91
|
+
def update!(**args)
|
92
|
+
@ccfe_rms_path = args[:ccfe_rms_path] if args.key?(:ccfe_rms_path)
|
93
|
+
@expected = args[:expected] if args.key?(:expected)
|
94
|
+
@extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
|
95
|
+
@location_data = args[:location_data] if args.key?(:location_data)
|
96
|
+
@parent_asset = args[:parent_asset] if args.key?(:parent_asset)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
101
|
+
# guide#data-metadata-placement-and-failure-domains
|
102
|
+
class BlobstoreLocation
|
103
|
+
include Google::Apis::Core::Hashable
|
104
|
+
|
105
|
+
#
|
106
|
+
# Corresponds to the JSON property `policyId`
|
107
|
+
# @return [Array<String>]
|
108
|
+
attr_accessor :policy_id
|
109
|
+
|
110
|
+
def initialize(**args)
|
111
|
+
update!(**args)
|
112
|
+
end
|
113
|
+
|
114
|
+
# Update properties of this object
|
115
|
+
def update!(**args)
|
116
|
+
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
53
120
|
# The request message for Operations.CancelOperation.
|
54
121
|
class CancelOperationRequest
|
55
122
|
include Google::Apis::Core::Hashable
|
@@ -63,6 +130,50 @@ module Google
|
|
63
130
|
end
|
64
131
|
end
|
65
132
|
|
133
|
+
#
|
134
|
+
class CloudAsset
|
135
|
+
include Google::Apis::Core::Hashable
|
136
|
+
|
137
|
+
#
|
138
|
+
# Corresponds to the JSON property `assetName`
|
139
|
+
# @return [String]
|
140
|
+
attr_accessor :asset_name
|
141
|
+
|
142
|
+
#
|
143
|
+
# Corresponds to the JSON property `assetType`
|
144
|
+
# @return [String]
|
145
|
+
attr_accessor :asset_type
|
146
|
+
|
147
|
+
def initialize(**args)
|
148
|
+
update!(**args)
|
149
|
+
end
|
150
|
+
|
151
|
+
# Update properties of this object
|
152
|
+
def update!(**args)
|
153
|
+
@asset_name = args[:asset_name] if args.key?(:asset_name)
|
154
|
+
@asset_type = args[:asset_type] if args.key?(:asset_type)
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
#
|
159
|
+
class CloudAssetComposition
|
160
|
+
include Google::Apis::Core::Hashable
|
161
|
+
|
162
|
+
#
|
163
|
+
# Corresponds to the JSON property `childAsset`
|
164
|
+
# @return [Array<Google::Apis::MemcacheV1::CloudAsset>]
|
165
|
+
attr_accessor :child_asset
|
166
|
+
|
167
|
+
def initialize(**args)
|
168
|
+
update!(**args)
|
169
|
+
end
|
170
|
+
|
171
|
+
# Update properties of this object
|
172
|
+
def update!(**args)
|
173
|
+
@child_asset = args[:child_asset] if args.key?(:child_asset)
|
174
|
+
end
|
175
|
+
end
|
176
|
+
|
66
177
|
# Time window specified for daily operations.
|
67
178
|
class DailyCycle
|
68
179
|
include Google::Apis::Core::Hashable
|
@@ -179,6 +290,25 @@ module Google
|
|
179
290
|
end
|
180
291
|
end
|
181
292
|
|
293
|
+
#
|
294
|
+
class DirectLocationAssignment
|
295
|
+
include Google::Apis::Core::Hashable
|
296
|
+
|
297
|
+
#
|
298
|
+
# Corresponds to the JSON property `location`
|
299
|
+
# @return [Array<Google::Apis::MemcacheV1::LocationAssignment>]
|
300
|
+
attr_accessor :location
|
301
|
+
|
302
|
+
def initialize(**args)
|
303
|
+
update!(**args)
|
304
|
+
end
|
305
|
+
|
306
|
+
# Update properties of this object
|
307
|
+
def update!(**args)
|
308
|
+
@location = args[:location] if args.key?(:location)
|
309
|
+
end
|
310
|
+
end
|
311
|
+
|
182
312
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
183
313
|
# messages in your APIs. A typical example is to use it as the request or the
|
184
314
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -195,6 +325,26 @@ module Google
|
|
195
325
|
end
|
196
326
|
end
|
197
327
|
|
328
|
+
# Defines parameters that should only be used for specific asset types.
|
329
|
+
class ExtraParameter
|
330
|
+
include Google::Apis::Core::Hashable
|
331
|
+
|
332
|
+
# To be used for specifying the intended distribution of regional compute.
|
333
|
+
# googleapis.com/InstanceGroupManager instances
|
334
|
+
# Corresponds to the JSON property `regionalMigDistributionPolicy`
|
335
|
+
# @return [Google::Apis::MemcacheV1::RegionalMigDistributionPolicy]
|
336
|
+
attr_accessor :regional_mig_distribution_policy
|
337
|
+
|
338
|
+
def initialize(**args)
|
339
|
+
update!(**args)
|
340
|
+
end
|
341
|
+
|
342
|
+
# Update properties of this object
|
343
|
+
def update!(**args)
|
344
|
+
@regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
|
345
|
+
end
|
346
|
+
end
|
347
|
+
|
198
348
|
# Metadata for the given google.cloud.location.Location.
|
199
349
|
class GoogleCloudMemcacheV1LocationMetadata
|
200
350
|
include Google::Apis::Core::Hashable
|
@@ -967,6 +1117,70 @@ module Google
|
|
967
1117
|
end
|
968
1118
|
end
|
969
1119
|
|
1120
|
+
#
|
1121
|
+
class IsolationExpectations
|
1122
|
+
include Google::Apis::Core::Hashable
|
1123
|
+
|
1124
|
+
# Explicit overrides for ZI and ZS requirements to be used for resources that
|
1125
|
+
# should be excluded from ZI/ZS verification logic.
|
1126
|
+
# Corresponds to the JSON property `requirementOverride`
|
1127
|
+
# @return [Google::Apis::MemcacheV1::RequirementOverride]
|
1128
|
+
attr_accessor :requirement_override
|
1129
|
+
|
1130
|
+
#
|
1131
|
+
# Corresponds to the JSON property `ziOrgPolicy`
|
1132
|
+
# @return [String]
|
1133
|
+
attr_accessor :zi_org_policy
|
1134
|
+
|
1135
|
+
#
|
1136
|
+
# Corresponds to the JSON property `ziRegionPolicy`
|
1137
|
+
# @return [String]
|
1138
|
+
attr_accessor :zi_region_policy
|
1139
|
+
|
1140
|
+
#
|
1141
|
+
# Corresponds to the JSON property `ziRegionState`
|
1142
|
+
# @return [String]
|
1143
|
+
attr_accessor :zi_region_state
|
1144
|
+
|
1145
|
+
# Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
|
1146
|
+
# for setting ZI expectations as per go/zicy-publish-physical-location.
|
1147
|
+
# Corresponds to the JSON property `zoneIsolation`
|
1148
|
+
# @return [String]
|
1149
|
+
attr_accessor :zone_isolation
|
1150
|
+
|
1151
|
+
# Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
|
1152
|
+
# expectations as per go/zicy-publish-physical-location.
|
1153
|
+
# Corresponds to the JSON property `zoneSeparation`
|
1154
|
+
# @return [String]
|
1155
|
+
attr_accessor :zone_separation
|
1156
|
+
|
1157
|
+
#
|
1158
|
+
# Corresponds to the JSON property `zsOrgPolicy`
|
1159
|
+
# @return [String]
|
1160
|
+
attr_accessor :zs_org_policy
|
1161
|
+
|
1162
|
+
#
|
1163
|
+
# Corresponds to the JSON property `zsRegionState`
|
1164
|
+
# @return [String]
|
1165
|
+
attr_accessor :zs_region_state
|
1166
|
+
|
1167
|
+
def initialize(**args)
|
1168
|
+
update!(**args)
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
# Update properties of this object
|
1172
|
+
def update!(**args)
|
1173
|
+
@requirement_override = args[:requirement_override] if args.key?(:requirement_override)
|
1174
|
+
@zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
|
1175
|
+
@zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
|
1176
|
+
@zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
|
1177
|
+
@zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
|
1178
|
+
@zone_separation = args[:zone_separation] if args.key?(:zone_separation)
|
1179
|
+
@zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
|
1180
|
+
@zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
|
1181
|
+
end
|
1182
|
+
end
|
1183
|
+
|
970
1184
|
# Response for ListInstances.
|
971
1185
|
class ListInstancesResponse
|
972
1186
|
include Google::Apis::Core::Hashable
|
@@ -1099,6 +1313,82 @@ module Google
|
|
1099
1313
|
end
|
1100
1314
|
end
|
1101
1315
|
|
1316
|
+
#
|
1317
|
+
class LocationAssignment
|
1318
|
+
include Google::Apis::Core::Hashable
|
1319
|
+
|
1320
|
+
#
|
1321
|
+
# Corresponds to the JSON property `location`
|
1322
|
+
# @return [String]
|
1323
|
+
attr_accessor :location
|
1324
|
+
|
1325
|
+
#
|
1326
|
+
# Corresponds to the JSON property `locationType`
|
1327
|
+
# @return [String]
|
1328
|
+
attr_accessor :location_type
|
1329
|
+
|
1330
|
+
def initialize(**args)
|
1331
|
+
update!(**args)
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
# Update properties of this object
|
1335
|
+
def update!(**args)
|
1336
|
+
@location = args[:location] if args.key?(:location)
|
1337
|
+
@location_type = args[:location_type] if args.key?(:location_type)
|
1338
|
+
end
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
#
|
1342
|
+
class LocationData
|
1343
|
+
include Google::Apis::Core::Hashable
|
1344
|
+
|
1345
|
+
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
1346
|
+
# guide#data-metadata-placement-and-failure-domains
|
1347
|
+
# Corresponds to the JSON property `blobstoreLocation`
|
1348
|
+
# @return [Google::Apis::MemcacheV1::BlobstoreLocation]
|
1349
|
+
attr_accessor :blobstore_location
|
1350
|
+
|
1351
|
+
#
|
1352
|
+
# Corresponds to the JSON property `childAssetLocation`
|
1353
|
+
# @return [Google::Apis::MemcacheV1::CloudAssetComposition]
|
1354
|
+
attr_accessor :child_asset_location
|
1355
|
+
|
1356
|
+
#
|
1357
|
+
# Corresponds to the JSON property `directLocation`
|
1358
|
+
# @return [Google::Apis::MemcacheV1::DirectLocationAssignment]
|
1359
|
+
attr_accessor :direct_location
|
1360
|
+
|
1361
|
+
#
|
1362
|
+
# Corresponds to the JSON property `gcpProjectProxy`
|
1363
|
+
# @return [Google::Apis::MemcacheV1::TenantProjectProxy]
|
1364
|
+
attr_accessor :gcp_project_proxy
|
1365
|
+
|
1366
|
+
# Message describing that the location of the customer resource is tied to
|
1367
|
+
# placer allocations
|
1368
|
+
# Corresponds to the JSON property `placerLocation`
|
1369
|
+
# @return [Google::Apis::MemcacheV1::PlacerLocation]
|
1370
|
+
attr_accessor :placer_location
|
1371
|
+
|
1372
|
+
#
|
1373
|
+
# Corresponds to the JSON property `spannerLocation`
|
1374
|
+
# @return [Google::Apis::MemcacheV1::SpannerLocation]
|
1375
|
+
attr_accessor :spanner_location
|
1376
|
+
|
1377
|
+
def initialize(**args)
|
1378
|
+
update!(**args)
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
# Update properties of this object
|
1382
|
+
def update!(**args)
|
1383
|
+
@blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
|
1384
|
+
@child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
|
1385
|
+
@direct_location = args[:direct_location] if args.key?(:direct_location)
|
1386
|
+
@gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
|
1387
|
+
@placer_location = args[:placer_location] if args.key?(:placer_location)
|
1388
|
+
@spanner_location = args[:spanner_location] if args.key?(:spanner_location)
|
1389
|
+
end
|
1390
|
+
end
|
1391
|
+
|
1102
1392
|
# Metadata for the given google.cloud.location.Location.
|
1103
1393
|
class LocationMetadata
|
1104
1394
|
include Google::Apis::Core::Hashable
|
@@ -1481,6 +1771,79 @@ module Google
|
|
1481
1771
|
end
|
1482
1772
|
end
|
1483
1773
|
|
1774
|
+
# Message describing that the location of the customer resource is tied to
|
1775
|
+
# placer allocations
|
1776
|
+
class PlacerLocation
|
1777
|
+
include Google::Apis::Core::Hashable
|
1778
|
+
|
1779
|
+
# Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
|
1780
|
+
# root/my-dir")
|
1781
|
+
# Corresponds to the JSON property `placerConfig`
|
1782
|
+
# @return [String]
|
1783
|
+
attr_accessor :placer_config
|
1784
|
+
|
1785
|
+
def initialize(**args)
|
1786
|
+
update!(**args)
|
1787
|
+
end
|
1788
|
+
|
1789
|
+
# Update properties of this object
|
1790
|
+
def update!(**args)
|
1791
|
+
@placer_config = args[:placer_config] if args.key?(:placer_config)
|
1792
|
+
end
|
1793
|
+
end
|
1794
|
+
|
1795
|
+
# To be used for specifying the intended distribution of regional compute.
|
1796
|
+
# googleapis.com/InstanceGroupManager instances
|
1797
|
+
class RegionalMigDistributionPolicy
|
1798
|
+
include Google::Apis::Core::Hashable
|
1799
|
+
|
1800
|
+
# The shape in which the group converges around distribution of resources.
|
1801
|
+
# Instance of proto2 enum
|
1802
|
+
# Corresponds to the JSON property `targetShape`
|
1803
|
+
# @return [Fixnum]
|
1804
|
+
attr_accessor :target_shape
|
1805
|
+
|
1806
|
+
# Cloud zones used by regional MIG to create instances.
|
1807
|
+
# Corresponds to the JSON property `zones`
|
1808
|
+
# @return [Array<Google::Apis::MemcacheV1::ZoneConfiguration>]
|
1809
|
+
attr_accessor :zones
|
1810
|
+
|
1811
|
+
def initialize(**args)
|
1812
|
+
update!(**args)
|
1813
|
+
end
|
1814
|
+
|
1815
|
+
# Update properties of this object
|
1816
|
+
def update!(**args)
|
1817
|
+
@target_shape = args[:target_shape] if args.key?(:target_shape)
|
1818
|
+
@zones = args[:zones] if args.key?(:zones)
|
1819
|
+
end
|
1820
|
+
end
|
1821
|
+
|
1822
|
+
#
|
1823
|
+
class RequirementOverride
|
1824
|
+
include Google::Apis::Core::Hashable
|
1825
|
+
|
1826
|
+
#
|
1827
|
+
# Corresponds to the JSON property `ziOverride`
|
1828
|
+
# @return [String]
|
1829
|
+
attr_accessor :zi_override
|
1830
|
+
|
1831
|
+
#
|
1832
|
+
# Corresponds to the JSON property `zsOverride`
|
1833
|
+
# @return [String]
|
1834
|
+
attr_accessor :zs_override
|
1835
|
+
|
1836
|
+
def initialize(**args)
|
1837
|
+
update!(**args)
|
1838
|
+
end
|
1839
|
+
|
1840
|
+
# Update properties of this object
|
1841
|
+
def update!(**args)
|
1842
|
+
@zi_override = args[:zi_override] if args.key?(:zi_override)
|
1843
|
+
@zs_override = args[:zs_override] if args.key?(:zs_override)
|
1844
|
+
end
|
1845
|
+
end
|
1846
|
+
|
1484
1847
|
# Request for RescheduleMaintenance.
|
1485
1848
|
class RescheduleMaintenanceRequest
|
1486
1849
|
include Google::Apis::Core::Hashable
|
@@ -1541,6 +1904,32 @@ module Google
|
|
1541
1904
|
end
|
1542
1905
|
end
|
1543
1906
|
|
1907
|
+
#
|
1908
|
+
class SpannerLocation
|
1909
|
+
include Google::Apis::Core::Hashable
|
1910
|
+
|
1911
|
+
# Set of backups used by the resource with name in the same format as what is
|
1912
|
+
# available at http://table/spanner_automon.backup_metadata
|
1913
|
+
# Corresponds to the JSON property `backupName`
|
1914
|
+
# @return [Array<String>]
|
1915
|
+
attr_accessor :backup_name
|
1916
|
+
|
1917
|
+
# Set of databases used by the resource in format /span//
|
1918
|
+
# Corresponds to the JSON property `dbName`
|
1919
|
+
# @return [Array<String>]
|
1920
|
+
attr_accessor :db_name
|
1921
|
+
|
1922
|
+
def initialize(**args)
|
1923
|
+
update!(**args)
|
1924
|
+
end
|
1925
|
+
|
1926
|
+
# Update properties of this object
|
1927
|
+
def update!(**args)
|
1928
|
+
@backup_name = args[:backup_name] if args.key?(:backup_name)
|
1929
|
+
@db_name = args[:db_name] if args.key?(:db_name)
|
1930
|
+
end
|
1931
|
+
end
|
1932
|
+
|
1544
1933
|
# The `Status` type defines a logical error model that is suitable for different
|
1545
1934
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1546
1935
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -1580,6 +1969,25 @@ module Google
|
|
1580
1969
|
end
|
1581
1970
|
end
|
1582
1971
|
|
1972
|
+
#
|
1973
|
+
class TenantProjectProxy
|
1974
|
+
include Google::Apis::Core::Hashable
|
1975
|
+
|
1976
|
+
#
|
1977
|
+
# Corresponds to the JSON property `projectNumbers`
|
1978
|
+
# @return [Array<String>]
|
1979
|
+
attr_accessor :project_numbers
|
1980
|
+
|
1981
|
+
def initialize(**args)
|
1982
|
+
update!(**args)
|
1983
|
+
end
|
1984
|
+
|
1985
|
+
# Update properties of this object
|
1986
|
+
def update!(**args)
|
1987
|
+
@project_numbers = args[:project_numbers] if args.key?(:project_numbers)
|
1988
|
+
end
|
1989
|
+
end
|
1990
|
+
|
1583
1991
|
# Represents a time of day. The date and time zone are either not significant or
|
1584
1992
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
1585
1993
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
@@ -1731,6 +2139,25 @@ module Google
|
|
1731
2139
|
end
|
1732
2140
|
end
|
1733
2141
|
|
2142
|
+
#
|
2143
|
+
class ZoneConfiguration
|
2144
|
+
include Google::Apis::Core::Hashable
|
2145
|
+
|
2146
|
+
#
|
2147
|
+
# Corresponds to the JSON property `zone`
|
2148
|
+
# @return [String]
|
2149
|
+
attr_accessor :zone
|
2150
|
+
|
2151
|
+
def initialize(**args)
|
2152
|
+
update!(**args)
|
2153
|
+
end
|
2154
|
+
|
2155
|
+
# Update properties of this object
|
2156
|
+
def update!(**args)
|
2157
|
+
@zone = args[:zone] if args.key?(:zone)
|
2158
|
+
end
|
2159
|
+
end
|
2160
|
+
|
1734
2161
|
#
|
1735
2162
|
class ZoneMetadata
|
1736
2163
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MemcacheV1
|
18
18
|
# Version of the google-apis-memcache_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
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 = "20240919"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,12 +28,36 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AssetLocation
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
37
|
+
class BlobstoreLocation
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
31
43
|
class CancelOperationRequest
|
32
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
45
|
|
34
46
|
include Google::Apis::Core::JsonObjectSupport
|
35
47
|
end
|
36
48
|
|
49
|
+
class CloudAsset
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
55
|
+
class CloudAssetComposition
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
37
61
|
class DailyCycle
|
38
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
63
|
|
@@ -52,12 +76,24 @@ module Google
|
|
52
76
|
include Google::Apis::Core::JsonObjectSupport
|
53
77
|
end
|
54
78
|
|
79
|
+
class DirectLocationAssignment
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
55
85
|
class Empty
|
56
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
87
|
|
58
88
|
include Google::Apis::Core::JsonObjectSupport
|
59
89
|
end
|
60
90
|
|
91
|
+
class ExtraParameter
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
61
97
|
class GoogleCloudMemcacheV1LocationMetadata
|
62
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
99
|
|
@@ -154,6 +190,12 @@ module Google
|
|
154
190
|
include Google::Apis::Core::JsonObjectSupport
|
155
191
|
end
|
156
192
|
|
193
|
+
class IsolationExpectations
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
157
199
|
class ListInstancesResponse
|
158
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
201
|
|
@@ -178,6 +220,18 @@ module Google
|
|
178
220
|
include Google::Apis::Core::JsonObjectSupport
|
179
221
|
end
|
180
222
|
|
223
|
+
class LocationAssignment
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
|
+
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
227
|
+
end
|
228
|
+
|
229
|
+
class LocationData
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
181
235
|
class LocationMetadata
|
182
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
237
|
|
@@ -232,6 +286,24 @@ module Google
|
|
232
286
|
include Google::Apis::Core::JsonObjectSupport
|
233
287
|
end
|
234
288
|
|
289
|
+
class PlacerLocation
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
295
|
+
class RegionalMigDistributionPolicy
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
301
|
+
class RequirementOverride
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
235
307
|
class RescheduleMaintenanceRequest
|
236
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
309
|
|
@@ -244,12 +316,24 @@ module Google
|
|
244
316
|
include Google::Apis::Core::JsonObjectSupport
|
245
317
|
end
|
246
318
|
|
319
|
+
class SpannerLocation
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
247
325
|
class Status
|
248
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
327
|
|
250
328
|
include Google::Apis::Core::JsonObjectSupport
|
251
329
|
end
|
252
330
|
|
331
|
+
class TenantProjectProxy
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
253
337
|
class TimeOfDay
|
254
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
339
|
|
@@ -280,6 +364,12 @@ module Google
|
|
280
364
|
include Google::Apis::Core::JsonObjectSupport
|
281
365
|
end
|
282
366
|
|
367
|
+
class ZoneConfiguration
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
283
373
|
class ZoneMetadata
|
284
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
375
|
|
@@ -294,12 +384,50 @@ module Google
|
|
294
384
|
end
|
295
385
|
end
|
296
386
|
|
387
|
+
class AssetLocation
|
388
|
+
# @private
|
389
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
390
|
+
property :ccfe_rms_path, as: 'ccfeRmsPath'
|
391
|
+
property :expected, as: 'expected', class: Google::Apis::MemcacheV1::IsolationExpectations, decorator: Google::Apis::MemcacheV1::IsolationExpectations::Representation
|
392
|
+
|
393
|
+
collection :extra_parameters, as: 'extraParameters', class: Google::Apis::MemcacheV1::ExtraParameter, decorator: Google::Apis::MemcacheV1::ExtraParameter::Representation
|
394
|
+
|
395
|
+
collection :location_data, as: 'locationData', class: Google::Apis::MemcacheV1::LocationData, decorator: Google::Apis::MemcacheV1::LocationData::Representation
|
396
|
+
|
397
|
+
collection :parent_asset, as: 'parentAsset', class: Google::Apis::MemcacheV1::CloudAsset, decorator: Google::Apis::MemcacheV1::CloudAsset::Representation
|
398
|
+
|
399
|
+
end
|
400
|
+
end
|
401
|
+
|
402
|
+
class BlobstoreLocation
|
403
|
+
# @private
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
405
|
+
collection :policy_id, as: 'policyId'
|
406
|
+
end
|
407
|
+
end
|
408
|
+
|
297
409
|
class CancelOperationRequest
|
298
410
|
# @private
|
299
411
|
class Representation < Google::Apis::Core::JsonRepresentation
|
300
412
|
end
|
301
413
|
end
|
302
414
|
|
415
|
+
class CloudAsset
|
416
|
+
# @private
|
417
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
418
|
+
property :asset_name, as: 'assetName'
|
419
|
+
property :asset_type, as: 'assetType'
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
423
|
+
class CloudAssetComposition
|
424
|
+
# @private
|
425
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
426
|
+
collection :child_asset, as: 'childAsset', class: Google::Apis::MemcacheV1::CloudAsset, decorator: Google::Apis::MemcacheV1::CloudAsset::Representation
|
427
|
+
|
428
|
+
end
|
429
|
+
end
|
430
|
+
|
303
431
|
class DailyCycle
|
304
432
|
# @private
|
305
433
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -330,12 +458,28 @@ module Google
|
|
330
458
|
end
|
331
459
|
end
|
332
460
|
|
461
|
+
class DirectLocationAssignment
|
462
|
+
# @private
|
463
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
464
|
+
collection :location, as: 'location', class: Google::Apis::MemcacheV1::LocationAssignment, decorator: Google::Apis::MemcacheV1::LocationAssignment::Representation
|
465
|
+
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
333
469
|
class Empty
|
334
470
|
# @private
|
335
471
|
class Representation < Google::Apis::Core::JsonRepresentation
|
336
472
|
end
|
337
473
|
end
|
338
474
|
|
475
|
+
class ExtraParameter
|
476
|
+
# @private
|
477
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
478
|
+
property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::MemcacheV1::RegionalMigDistributionPolicy, decorator: Google::Apis::MemcacheV1::RegionalMigDistributionPolicy::Representation
|
479
|
+
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
339
483
|
class GoogleCloudMemcacheV1LocationMetadata
|
340
484
|
# @private
|
341
485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -523,6 +667,21 @@ module Google
|
|
523
667
|
end
|
524
668
|
end
|
525
669
|
|
670
|
+
class IsolationExpectations
|
671
|
+
# @private
|
672
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
673
|
+
property :requirement_override, as: 'requirementOverride', class: Google::Apis::MemcacheV1::RequirementOverride, decorator: Google::Apis::MemcacheV1::RequirementOverride::Representation
|
674
|
+
|
675
|
+
property :zi_org_policy, as: 'ziOrgPolicy'
|
676
|
+
property :zi_region_policy, as: 'ziRegionPolicy'
|
677
|
+
property :zi_region_state, as: 'ziRegionState'
|
678
|
+
property :zone_isolation, as: 'zoneIsolation'
|
679
|
+
property :zone_separation, as: 'zoneSeparation'
|
680
|
+
property :zs_org_policy, as: 'zsOrgPolicy'
|
681
|
+
property :zs_region_state, as: 'zsRegionState'
|
682
|
+
end
|
683
|
+
end
|
684
|
+
|
526
685
|
class ListInstancesResponse
|
527
686
|
# @private
|
528
687
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -562,6 +721,32 @@ module Google
|
|
562
721
|
end
|
563
722
|
end
|
564
723
|
|
724
|
+
class LocationAssignment
|
725
|
+
# @private
|
726
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
727
|
+
property :location, as: 'location'
|
728
|
+
property :location_type, as: 'locationType'
|
729
|
+
end
|
730
|
+
end
|
731
|
+
|
732
|
+
class LocationData
|
733
|
+
# @private
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
735
|
+
property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::MemcacheV1::BlobstoreLocation, decorator: Google::Apis::MemcacheV1::BlobstoreLocation::Representation
|
736
|
+
|
737
|
+
property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::MemcacheV1::CloudAssetComposition, decorator: Google::Apis::MemcacheV1::CloudAssetComposition::Representation
|
738
|
+
|
739
|
+
property :direct_location, as: 'directLocation', class: Google::Apis::MemcacheV1::DirectLocationAssignment, decorator: Google::Apis::MemcacheV1::DirectLocationAssignment::Representation
|
740
|
+
|
741
|
+
property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::MemcacheV1::TenantProjectProxy, decorator: Google::Apis::MemcacheV1::TenantProjectProxy::Representation
|
742
|
+
|
743
|
+
property :placer_location, as: 'placerLocation', class: Google::Apis::MemcacheV1::PlacerLocation, decorator: Google::Apis::MemcacheV1::PlacerLocation::Representation
|
744
|
+
|
745
|
+
property :spanner_location, as: 'spannerLocation', class: Google::Apis::MemcacheV1::SpannerLocation, decorator: Google::Apis::MemcacheV1::SpannerLocation::Representation
|
746
|
+
|
747
|
+
end
|
748
|
+
end
|
749
|
+
|
565
750
|
class LocationMetadata
|
566
751
|
# @private
|
567
752
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -659,6 +844,30 @@ module Google
|
|
659
844
|
end
|
660
845
|
end
|
661
846
|
|
847
|
+
class PlacerLocation
|
848
|
+
# @private
|
849
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
850
|
+
property :placer_config, as: 'placerConfig'
|
851
|
+
end
|
852
|
+
end
|
853
|
+
|
854
|
+
class RegionalMigDistributionPolicy
|
855
|
+
# @private
|
856
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
857
|
+
property :target_shape, as: 'targetShape'
|
858
|
+
collection :zones, as: 'zones', class: Google::Apis::MemcacheV1::ZoneConfiguration, decorator: Google::Apis::MemcacheV1::ZoneConfiguration::Representation
|
859
|
+
|
860
|
+
end
|
861
|
+
end
|
862
|
+
|
863
|
+
class RequirementOverride
|
864
|
+
# @private
|
865
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
866
|
+
property :zi_override, as: 'ziOverride'
|
867
|
+
property :zs_override, as: 'zsOverride'
|
868
|
+
end
|
869
|
+
end
|
870
|
+
|
662
871
|
class RescheduleMaintenanceRequest
|
663
872
|
# @private
|
664
873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -677,6 +886,14 @@ module Google
|
|
677
886
|
end
|
678
887
|
end
|
679
888
|
|
889
|
+
class SpannerLocation
|
890
|
+
# @private
|
891
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
892
|
+
collection :backup_name, as: 'backupName'
|
893
|
+
collection :db_name, as: 'dbName'
|
894
|
+
end
|
895
|
+
end
|
896
|
+
|
680
897
|
class Status
|
681
898
|
# @private
|
682
899
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -686,6 +903,13 @@ module Google
|
|
686
903
|
end
|
687
904
|
end
|
688
905
|
|
906
|
+
class TenantProjectProxy
|
907
|
+
# @private
|
908
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
909
|
+
collection :project_numbers, as: 'projectNumbers'
|
910
|
+
end
|
911
|
+
end
|
912
|
+
|
689
913
|
class TimeOfDay
|
690
914
|
# @private
|
691
915
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -734,6 +958,13 @@ module Google
|
|
734
958
|
end
|
735
959
|
end
|
736
960
|
|
961
|
+
class ZoneConfiguration
|
962
|
+
# @private
|
963
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
964
|
+
property :zone, as: 'zone'
|
965
|
+
end
|
966
|
+
end
|
967
|
+
|
737
968
|
class ZoneMetadata
|
738
969
|
# @private
|
739
970
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-memcache_v1
|
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-09-29 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|