google-apis-memcache_v1 0.43.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24a3d24658bce414f23c96a2bb1a2183439b93408ffb9b0922868b9288d7da6d
|
4
|
+
data.tar.gz: 4953bb1c05cdf123e38269757000caeb37d8f4d704cb7193194fa6a49028785a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd21491eefb5cf35676d7b0d53255858dea45ce2da0040a6cfcc88519560787456fd57ef7daf5e850609f644213ef2b903d3c2ce31f2af02625bfbce662677f8
|
7
|
+
data.tar.gz: ccde5c81dea0bdf3638b73da0ef008a05eb3231bf12bc3e3041682cb19b29e8b4232d7a90910ac8c5e585fcfbdc389fc355482160ad09522d2f044f4fbc381e1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-memcache_v1
|
2
2
|
|
3
|
+
### v0.44.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250206
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.43.0 (2024-10-20)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241010
|
@@ -50,73 +50,6 @@ 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
|
-
|
120
53
|
# The request message for Operations.CancelOperation.
|
121
54
|
class CancelOperationRequest
|
122
55
|
include Google::Apis::Core::Hashable
|
@@ -130,50 +63,6 @@ module Google
|
|
130
63
|
end
|
131
64
|
end
|
132
65
|
|
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
|
-
|
177
66
|
# Time window specified for daily operations.
|
178
67
|
class DailyCycle
|
179
68
|
include Google::Apis::Core::Hashable
|
@@ -290,25 +179,6 @@ module Google
|
|
290
179
|
end
|
291
180
|
end
|
292
181
|
|
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
|
-
|
312
182
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
313
183
|
# messages in your APIs. A typical example is to use it as the request or the
|
314
184
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -325,26 +195,6 @@ module Google
|
|
325
195
|
end
|
326
196
|
end
|
327
197
|
|
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
|
-
|
348
198
|
# Metadata for the given google.cloud.location.Location.
|
349
199
|
class GoogleCloudMemcacheV1LocationMetadata
|
350
200
|
include Google::Apis::Core::Hashable
|
@@ -1117,70 +967,6 @@ module Google
|
|
1117
967
|
end
|
1118
968
|
end
|
1119
969
|
|
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
|
-
|
1184
970
|
# Response for ListInstances.
|
1185
971
|
class ListInstancesResponse
|
1186
972
|
include Google::Apis::Core::Hashable
|
@@ -1313,82 +1099,6 @@ module Google
|
|
1313
1099
|
end
|
1314
1100
|
end
|
1315
1101
|
|
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
|
-
|
1392
1102
|
# Metadata for the given google.cloud.location.Location.
|
1393
1103
|
class LocationMetadata
|
1394
1104
|
include Google::Apis::Core::Hashable
|
@@ -1771,79 +1481,6 @@ module Google
|
|
1771
1481
|
end
|
1772
1482
|
end
|
1773
1483
|
|
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
|
-
|
1847
1484
|
# Request for RescheduleMaintenance.
|
1848
1485
|
class RescheduleMaintenanceRequest
|
1849
1486
|
include Google::Apis::Core::Hashable
|
@@ -1904,32 +1541,6 @@ module Google
|
|
1904
1541
|
end
|
1905
1542
|
end
|
1906
1543
|
|
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
|
-
|
1933
1544
|
# The `Status` type defines a logical error model that is suitable for different
|
1934
1545
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1935
1546
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -1969,25 +1580,6 @@ module Google
|
|
1969
1580
|
end
|
1970
1581
|
end
|
1971
1582
|
|
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
|
-
|
1991
1583
|
# Represents a time of day. The date and time zone are either not significant or
|
1992
1584
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
1993
1585
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
@@ -2143,25 +1735,6 @@ module Google
|
|
2143
1735
|
end
|
2144
1736
|
end
|
2145
1737
|
|
2146
|
-
#
|
2147
|
-
class ZoneConfiguration
|
2148
|
-
include Google::Apis::Core::Hashable
|
2149
|
-
|
2150
|
-
#
|
2151
|
-
# Corresponds to the JSON property `zone`
|
2152
|
-
# @return [String]
|
2153
|
-
attr_accessor :zone
|
2154
|
-
|
2155
|
-
def initialize(**args)
|
2156
|
-
update!(**args)
|
2157
|
-
end
|
2158
|
-
|
2159
|
-
# Update properties of this object
|
2160
|
-
def update!(**args)
|
2161
|
-
@zone = args[:zone] if args.key?(:zone)
|
2162
|
-
end
|
2163
|
-
end
|
2164
|
-
|
2165
1738
|
#
|
2166
1739
|
class ZoneMetadata
|
2167
1740
|
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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250206"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,36 +28,12 @@ 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
|
-
|
43
31
|
class CancelOperationRequest
|
44
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
33
|
|
46
34
|
include Google::Apis::Core::JsonObjectSupport
|
47
35
|
end
|
48
36
|
|
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
|
-
|
61
37
|
class DailyCycle
|
62
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
39
|
|
@@ -76,24 +52,12 @@ module Google
|
|
76
52
|
include Google::Apis::Core::JsonObjectSupport
|
77
53
|
end
|
78
54
|
|
79
|
-
class DirectLocationAssignment
|
80
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
-
|
82
|
-
include Google::Apis::Core::JsonObjectSupport
|
83
|
-
end
|
84
|
-
|
85
55
|
class Empty
|
86
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
57
|
|
88
58
|
include Google::Apis::Core::JsonObjectSupport
|
89
59
|
end
|
90
60
|
|
91
|
-
class ExtraParameter
|
92
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
-
|
94
|
-
include Google::Apis::Core::JsonObjectSupport
|
95
|
-
end
|
96
|
-
|
97
61
|
class GoogleCloudMemcacheV1LocationMetadata
|
98
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
63
|
|
@@ -190,12 +154,6 @@ module Google
|
|
190
154
|
include Google::Apis::Core::JsonObjectSupport
|
191
155
|
end
|
192
156
|
|
193
|
-
class IsolationExpectations
|
194
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
-
|
196
|
-
include Google::Apis::Core::JsonObjectSupport
|
197
|
-
end
|
198
|
-
|
199
157
|
class ListInstancesResponse
|
200
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
159
|
|
@@ -220,18 +178,6 @@ module Google
|
|
220
178
|
include Google::Apis::Core::JsonObjectSupport
|
221
179
|
end
|
222
180
|
|
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
|
-
|
235
181
|
class LocationMetadata
|
236
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
183
|
|
@@ -286,24 +232,6 @@ module Google
|
|
286
232
|
include Google::Apis::Core::JsonObjectSupport
|
287
233
|
end
|
288
234
|
|
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
|
-
|
307
235
|
class RescheduleMaintenanceRequest
|
308
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
237
|
|
@@ -316,24 +244,12 @@ module Google
|
|
316
244
|
include Google::Apis::Core::JsonObjectSupport
|
317
245
|
end
|
318
246
|
|
319
|
-
class SpannerLocation
|
320
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
-
|
322
|
-
include Google::Apis::Core::JsonObjectSupport
|
323
|
-
end
|
324
|
-
|
325
247
|
class Status
|
326
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
249
|
|
328
250
|
include Google::Apis::Core::JsonObjectSupport
|
329
251
|
end
|
330
252
|
|
331
|
-
class TenantProjectProxy
|
332
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
-
|
334
|
-
include Google::Apis::Core::JsonObjectSupport
|
335
|
-
end
|
336
|
-
|
337
253
|
class TimeOfDay
|
338
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
255
|
|
@@ -364,12 +280,6 @@ module Google
|
|
364
280
|
include Google::Apis::Core::JsonObjectSupport
|
365
281
|
end
|
366
282
|
|
367
|
-
class ZoneConfiguration
|
368
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
-
|
370
|
-
include Google::Apis::Core::JsonObjectSupport
|
371
|
-
end
|
372
|
-
|
373
283
|
class ZoneMetadata
|
374
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
285
|
|
@@ -384,50 +294,12 @@ module Google
|
|
384
294
|
end
|
385
295
|
end
|
386
296
|
|
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
|
-
|
409
297
|
class CancelOperationRequest
|
410
298
|
# @private
|
411
299
|
class Representation < Google::Apis::Core::JsonRepresentation
|
412
300
|
end
|
413
301
|
end
|
414
302
|
|
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
|
-
|
431
303
|
class DailyCycle
|
432
304
|
# @private
|
433
305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -458,28 +330,12 @@ module Google
|
|
458
330
|
end
|
459
331
|
end
|
460
332
|
|
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
|
-
|
469
333
|
class Empty
|
470
334
|
# @private
|
471
335
|
class Representation < Google::Apis::Core::JsonRepresentation
|
472
336
|
end
|
473
337
|
end
|
474
338
|
|
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
|
-
|
483
339
|
class GoogleCloudMemcacheV1LocationMetadata
|
484
340
|
# @private
|
485
341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -667,21 +523,6 @@ module Google
|
|
667
523
|
end
|
668
524
|
end
|
669
525
|
|
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
|
-
|
685
526
|
class ListInstancesResponse
|
686
527
|
# @private
|
687
528
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -721,32 +562,6 @@ module Google
|
|
721
562
|
end
|
722
563
|
end
|
723
564
|
|
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
|
-
|
750
565
|
class LocationMetadata
|
751
566
|
# @private
|
752
567
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -844,30 +659,6 @@ module Google
|
|
844
659
|
end
|
845
660
|
end
|
846
661
|
|
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
|
-
|
871
662
|
class RescheduleMaintenanceRequest
|
872
663
|
# @private
|
873
664
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -886,14 +677,6 @@ module Google
|
|
886
677
|
end
|
887
678
|
end
|
888
679
|
|
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
|
-
|
897
680
|
class Status
|
898
681
|
# @private
|
899
682
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -903,13 +686,6 @@ module Google
|
|
903
686
|
end
|
904
687
|
end
|
905
688
|
|
906
|
-
class TenantProjectProxy
|
907
|
-
# @private
|
908
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
909
|
-
collection :project_numbers, as: 'projectNumbers'
|
910
|
-
end
|
911
|
-
end
|
912
|
-
|
913
689
|
class TimeOfDay
|
914
690
|
# @private
|
915
691
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -958,13 +734,6 @@ module Google
|
|
958
734
|
end
|
959
735
|
end
|
960
736
|
|
961
|
-
class ZoneConfiguration
|
962
|
-
# @private
|
963
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
964
|
-
property :zone, as: 'zone'
|
965
|
-
end
|
966
|
-
end
|
967
|
-
|
968
737
|
class ZoneMetadata
|
969
738
|
# @private
|
970
739
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -470,8 +470,8 @@ module Google
|
|
470
470
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
471
471
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
472
472
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
473
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
474
|
-
# corresponding to `Code.CANCELLED`.
|
473
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
474
|
+
# , corresponding to `Code.CANCELLED`.
|
475
475
|
# @param [String] name
|
476
476
|
# The name of the operation resource to be cancelled.
|
477
477
|
# @param [Google::Apis::MemcacheV1::CancelOperationRequest] cancel_operation_request_object
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.44.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1/v0.44.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Memorystore for Memcached API V1
|
82
79
|
test_files: []
|