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