google-apis-redis_v1 0.61.0 → 0.63.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 +8 -0
- data/lib/google/apis/redis_v1/classes.rb +112 -434
- data/lib/google/apis/redis_v1/gem_version.rb +2 -2
- data/lib/google/apis/redis_v1/representations.rb +42 -224
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 457bd7040432659ea73550295cefbd0d60e46334338e6cfc2499b2317dd2070d
|
4
|
+
data.tar.gz: 3dcc0f79ac2d91a045034d80aa73dad5ba1fcf33eb7ae690e952f4ab586fa10f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfb860db638f578ed8a35ae6614c1a63a511e62347b32c7ffd073d613b17f5da610c0da17ff1f7406f50ab4aa671d557fd679cd6a9e985e9a402185ee872ef9e
|
7
|
+
data.tar.gz: 9e12b72ced0109ff5d45468f27195d76bd847b8ee3b2798201ffb03bca504dc7656b57697db122cdedf4e5d5e8fdd065be0f2c85614fc86b71345df362c31129
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-redis_v1
|
2
2
|
|
3
|
+
### v0.63.0 (2024-10-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241017
|
6
|
+
|
7
|
+
### v0.62.0 (2024-10-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241003
|
10
|
+
|
3
11
|
### v0.61.0 (2024-09-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240924
|
@@ -41,53 +41,6 @@ module Google
|
|
41
41
|
end
|
42
42
|
end
|
43
43
|
|
44
|
-
# Provides the mapping of a cloud asset to a direct physical location or to a
|
45
|
-
# proxy that defines the location on its behalf.
|
46
|
-
class AssetLocation
|
47
|
-
include Google::Apis::Core::Hashable
|
48
|
-
|
49
|
-
# Spanner path of the CCFE RMS database. It is only applicable for CCFE tenants
|
50
|
-
# that use CCFE RMS for storing resource metadata.
|
51
|
-
# Corresponds to the JSON property `ccfeRmsPath`
|
52
|
-
# @return [String]
|
53
|
-
attr_accessor :ccfe_rms_path
|
54
|
-
|
55
|
-
# Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state
|
56
|
-
# of the region at the time of asset creation.
|
57
|
-
# Corresponds to the JSON property `expected`
|
58
|
-
# @return [Google::Apis::RedisV1::IsolationExpectations]
|
59
|
-
attr_accessor :expected
|
60
|
-
|
61
|
-
# Defines extra parameters required for specific asset types.
|
62
|
-
# Corresponds to the JSON property `extraParameters`
|
63
|
-
# @return [Array<Google::Apis::RedisV1::ExtraParameter>]
|
64
|
-
attr_accessor :extra_parameters
|
65
|
-
|
66
|
-
# Contains all kinds of physical location definitions for this asset.
|
67
|
-
# Corresponds to the JSON property `locationData`
|
68
|
-
# @return [Array<Google::Apis::RedisV1::LocationData>]
|
69
|
-
attr_accessor :location_data
|
70
|
-
|
71
|
-
# Defines parents assets if any in order to allow later generation of
|
72
|
-
# child_asset_location data via child assets.
|
73
|
-
# Corresponds to the JSON property `parentAsset`
|
74
|
-
# @return [Array<Google::Apis::RedisV1::CloudAsset>]
|
75
|
-
attr_accessor :parent_asset
|
76
|
-
|
77
|
-
def initialize(**args)
|
78
|
-
update!(**args)
|
79
|
-
end
|
80
|
-
|
81
|
-
# Update properties of this object
|
82
|
-
def update!(**args)
|
83
|
-
@ccfe_rms_path = args[:ccfe_rms_path] if args.key?(:ccfe_rms_path)
|
84
|
-
@expected = args[:expected] if args.key?(:expected)
|
85
|
-
@extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
|
86
|
-
@location_data = args[:location_data] if args.key?(:location_data)
|
87
|
-
@parent_asset = args[:parent_asset] if args.key?(:parent_asset)
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
44
|
# Configuration for availability of database instance
|
92
45
|
class AvailabilityConfiguration
|
93
46
|
include Google::Apis::Core::Hashable
|
@@ -213,26 +166,6 @@ module Google
|
|
213
166
|
end
|
214
167
|
end
|
215
168
|
|
216
|
-
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
217
|
-
# guide#data-metadata-placement-and-failure-domains
|
218
|
-
class BlobstoreLocation
|
219
|
-
include Google::Apis::Core::Hashable
|
220
|
-
|
221
|
-
#
|
222
|
-
# Corresponds to the JSON property `policyId`
|
223
|
-
# @return [Array<String>]
|
224
|
-
attr_accessor :policy_id
|
225
|
-
|
226
|
-
def initialize(**args)
|
227
|
-
update!(**args)
|
228
|
-
end
|
229
|
-
|
230
|
-
# Update properties of this object
|
231
|
-
def update!(**args)
|
232
|
-
@policy_id = args[:policy_id] if args.key?(:policy_id)
|
233
|
-
end
|
234
|
-
end
|
235
|
-
|
236
169
|
#
|
237
170
|
class CertChain
|
238
171
|
include Google::Apis::Core::Hashable
|
@@ -279,50 +212,6 @@ module Google
|
|
279
212
|
end
|
280
213
|
end
|
281
214
|
|
282
|
-
#
|
283
|
-
class CloudAsset
|
284
|
-
include Google::Apis::Core::Hashable
|
285
|
-
|
286
|
-
#
|
287
|
-
# Corresponds to the JSON property `assetName`
|
288
|
-
# @return [String]
|
289
|
-
attr_accessor :asset_name
|
290
|
-
|
291
|
-
#
|
292
|
-
# Corresponds to the JSON property `assetType`
|
293
|
-
# @return [String]
|
294
|
-
attr_accessor :asset_type
|
295
|
-
|
296
|
-
def initialize(**args)
|
297
|
-
update!(**args)
|
298
|
-
end
|
299
|
-
|
300
|
-
# Update properties of this object
|
301
|
-
def update!(**args)
|
302
|
-
@asset_name = args[:asset_name] if args.key?(:asset_name)
|
303
|
-
@asset_type = args[:asset_type] if args.key?(:asset_type)
|
304
|
-
end
|
305
|
-
end
|
306
|
-
|
307
|
-
#
|
308
|
-
class CloudAssetComposition
|
309
|
-
include Google::Apis::Core::Hashable
|
310
|
-
|
311
|
-
#
|
312
|
-
# Corresponds to the JSON property `childAsset`
|
313
|
-
# @return [Array<Google::Apis::RedisV1::CloudAsset>]
|
314
|
-
attr_accessor :child_asset
|
315
|
-
|
316
|
-
def initialize(**args)
|
317
|
-
update!(**args)
|
318
|
-
end
|
319
|
-
|
320
|
-
# Update properties of this object
|
321
|
-
def update!(**args)
|
322
|
-
@child_asset = args[:child_asset] if args.key?(:child_asset)
|
323
|
-
end
|
324
|
-
end
|
325
|
-
|
326
215
|
# A cluster instance.
|
327
216
|
class Cluster
|
328
217
|
include Google::Apis::Core::Hashable
|
@@ -333,6 +222,11 @@ module Google
|
|
333
222
|
# @return [String]
|
334
223
|
attr_accessor :authorization_mode
|
335
224
|
|
225
|
+
# Optional. A list of cluster enpoints.
|
226
|
+
# Corresponds to the JSON property `clusterEndpoints`
|
227
|
+
# @return [Array<Google::Apis::RedisV1::ClusterEndpoint>]
|
228
|
+
attr_accessor :cluster_endpoints
|
229
|
+
|
336
230
|
# Output only. The timestamp associated with the cluster creation request.
|
337
231
|
# Corresponds to the JSON property `createTime`
|
338
232
|
# @return [String]
|
@@ -388,7 +282,7 @@ module Google
|
|
388
282
|
# @return [Float]
|
389
283
|
attr_accessor :precise_size_gb
|
390
284
|
|
391
|
-
#
|
285
|
+
# Optional. Each PscConfig configures the consumer network where IPs will be
|
392
286
|
# designated to the cluster for client access through Private Service Connect
|
393
287
|
# Automation. Currently, only one PscConfig is supported.
|
394
288
|
# Corresponds to the JSON property `pscConfigs`
|
@@ -401,6 +295,11 @@ module Google
|
|
401
295
|
# @return [Array<Google::Apis::RedisV1::PscConnection>]
|
402
296
|
attr_accessor :psc_connections
|
403
297
|
|
298
|
+
# Output only. Service attachment details to configure Psc connections
|
299
|
+
# Corresponds to the JSON property `pscServiceAttachments`
|
300
|
+
# @return [Array<Google::Apis::RedisV1::PscServiceAttachment>]
|
301
|
+
attr_accessor :psc_service_attachments
|
302
|
+
|
404
303
|
# Optional. Key/Value pairs of customer overrides for mutable Redis Configs
|
405
304
|
# Corresponds to the JSON property `redisConfigs`
|
406
305
|
# @return [Hash<String,String>]
|
@@ -456,6 +355,7 @@ module Google
|
|
456
355
|
# Update properties of this object
|
457
356
|
def update!(**args)
|
458
357
|
@authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
|
358
|
+
@cluster_endpoints = args[:cluster_endpoints] if args.key?(:cluster_endpoints)
|
459
359
|
@create_time = args[:create_time] if args.key?(:create_time)
|
460
360
|
@cross_cluster_replication_config = args[:cross_cluster_replication_config] if args.key?(:cross_cluster_replication_config)
|
461
361
|
@deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
|
@@ -468,6 +368,7 @@ module Google
|
|
468
368
|
@precise_size_gb = args[:precise_size_gb] if args.key?(:precise_size_gb)
|
469
369
|
@psc_configs = args[:psc_configs] if args.key?(:psc_configs)
|
470
370
|
@psc_connections = args[:psc_connections] if args.key?(:psc_connections)
|
371
|
+
@psc_service_attachments = args[:psc_service_attachments] if args.key?(:psc_service_attachments)
|
471
372
|
@redis_configs = args[:redis_configs] if args.key?(:redis_configs)
|
472
373
|
@replica_count = args[:replica_count] if args.key?(:replica_count)
|
473
374
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
@@ -480,6 +381,28 @@ module Google
|
|
480
381
|
end
|
481
382
|
end
|
482
383
|
|
384
|
+
# ClusterEndpoint consists of PSC connections that are created as a group in
|
385
|
+
# each VPC network for accessing the cluster. In each group, there shall be one
|
386
|
+
# connection for each service attachment in the cluster.
|
387
|
+
class ClusterEndpoint
|
388
|
+
include Google::Apis::Core::Hashable
|
389
|
+
|
390
|
+
# A group of PSC connections. They are created in the same VPC network, one for
|
391
|
+
# each service attachment in the cluster.
|
392
|
+
# Corresponds to the JSON property `connections`
|
393
|
+
# @return [Array<Google::Apis::RedisV1::ConnectionDetail>]
|
394
|
+
attr_accessor :connections
|
395
|
+
|
396
|
+
def initialize(**args)
|
397
|
+
update!(**args)
|
398
|
+
end
|
399
|
+
|
400
|
+
# Update properties of this object
|
401
|
+
def update!(**args)
|
402
|
+
@connections = args[:connections] if args.key?(:connections)
|
403
|
+
end
|
404
|
+
end
|
405
|
+
|
483
406
|
# Maintenance policy per cluster.
|
484
407
|
class ClusterMaintenancePolicy
|
485
408
|
include Google::Apis::Core::Hashable
|
@@ -626,6 +549,25 @@ module Google
|
|
626
549
|
end
|
627
550
|
end
|
628
551
|
|
552
|
+
# Detailed information of each PSC connection.
|
553
|
+
class ConnectionDetail
|
554
|
+
include Google::Apis::Core::Hashable
|
555
|
+
|
556
|
+
# Details of consumer resources in a PSC connection.
|
557
|
+
# Corresponds to the JSON property `pscConnection`
|
558
|
+
# @return [Google::Apis::RedisV1::PscConnection]
|
559
|
+
attr_accessor :psc_connection
|
560
|
+
|
561
|
+
def initialize(**args)
|
562
|
+
update!(**args)
|
563
|
+
end
|
564
|
+
|
565
|
+
# Update properties of this object
|
566
|
+
def update!(**args)
|
567
|
+
@psc_connection = args[:psc_connection] if args.key?(:psc_connection)
|
568
|
+
end
|
569
|
+
end
|
570
|
+
|
629
571
|
# Cross cluster replication config.
|
630
572
|
class CrossClusterReplicationConfig
|
631
573
|
include Google::Apis::Core::Hashable
|
@@ -1135,25 +1077,6 @@ module Google
|
|
1135
1077
|
end
|
1136
1078
|
end
|
1137
1079
|
|
1138
|
-
#
|
1139
|
-
class DirectLocationAssignment
|
1140
|
-
include Google::Apis::Core::Hashable
|
1141
|
-
|
1142
|
-
#
|
1143
|
-
# Corresponds to the JSON property `location`
|
1144
|
-
# @return [Array<Google::Apis::RedisV1::LocationAssignment>]
|
1145
|
-
attr_accessor :location
|
1146
|
-
|
1147
|
-
def initialize(**args)
|
1148
|
-
update!(**args)
|
1149
|
-
end
|
1150
|
-
|
1151
|
-
# Update properties of this object
|
1152
|
-
def update!(**args)
|
1153
|
-
@location = args[:location] if args.key?(:location)
|
1154
|
-
end
|
1155
|
-
end
|
1156
|
-
|
1157
1080
|
# Endpoints on each network, for Redis clients to connect to the cluster.
|
1158
1081
|
class DiscoveryEndpoint
|
1159
1082
|
include Google::Apis::Core::Hashable
|
@@ -1248,26 +1171,6 @@ module Google
|
|
1248
1171
|
end
|
1249
1172
|
end
|
1250
1173
|
|
1251
|
-
# Defines parameters that should only be used for specific asset types.
|
1252
|
-
class ExtraParameter
|
1253
|
-
include Google::Apis::Core::Hashable
|
1254
|
-
|
1255
|
-
# To be used for specifying the intended distribution of regional compute.
|
1256
|
-
# googleapis.com/InstanceGroupManager instances
|
1257
|
-
# Corresponds to the JSON property `regionalMigDistributionPolicy`
|
1258
|
-
# @return [Google::Apis::RedisV1::RegionalMigDistributionPolicy]
|
1259
|
-
attr_accessor :regional_mig_distribution_policy
|
1260
|
-
|
1261
|
-
def initialize(**args)
|
1262
|
-
update!(**args)
|
1263
|
-
end
|
1264
|
-
|
1265
|
-
# Update properties of this object
|
1266
|
-
def update!(**args)
|
1267
|
-
@regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
|
1268
|
-
end
|
1269
|
-
end
|
1270
|
-
|
1271
1174
|
# Request for Failover.
|
1272
1175
|
class FailoverInstanceRequest
|
1273
1176
|
include Google::Apis::Core::Hashable
|
@@ -1818,70 +1721,6 @@ module Google
|
|
1818
1721
|
end
|
1819
1722
|
end
|
1820
1723
|
|
1821
|
-
#
|
1822
|
-
class IsolationExpectations
|
1823
|
-
include Google::Apis::Core::Hashable
|
1824
|
-
|
1825
|
-
# Explicit overrides for ZI and ZS requirements to be used for resources that
|
1826
|
-
# should be excluded from ZI/ZS verification logic.
|
1827
|
-
# Corresponds to the JSON property `requirementOverride`
|
1828
|
-
# @return [Google::Apis::RedisV1::RequirementOverride]
|
1829
|
-
attr_accessor :requirement_override
|
1830
|
-
|
1831
|
-
#
|
1832
|
-
# Corresponds to the JSON property `ziOrgPolicy`
|
1833
|
-
# @return [String]
|
1834
|
-
attr_accessor :zi_org_policy
|
1835
|
-
|
1836
|
-
#
|
1837
|
-
# Corresponds to the JSON property `ziRegionPolicy`
|
1838
|
-
# @return [String]
|
1839
|
-
attr_accessor :zi_region_policy
|
1840
|
-
|
1841
|
-
#
|
1842
|
-
# Corresponds to the JSON property `ziRegionState`
|
1843
|
-
# @return [String]
|
1844
|
-
attr_accessor :zi_region_state
|
1845
|
-
|
1846
|
-
# Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
|
1847
|
-
# for setting ZI expectations as per go/zicy-publish-physical-location.
|
1848
|
-
# Corresponds to the JSON property `zoneIsolation`
|
1849
|
-
# @return [String]
|
1850
|
-
attr_accessor :zone_isolation
|
1851
|
-
|
1852
|
-
# Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
|
1853
|
-
# expectations as per go/zicy-publish-physical-location.
|
1854
|
-
# Corresponds to the JSON property `zoneSeparation`
|
1855
|
-
# @return [String]
|
1856
|
-
attr_accessor :zone_separation
|
1857
|
-
|
1858
|
-
#
|
1859
|
-
# Corresponds to the JSON property `zsOrgPolicy`
|
1860
|
-
# @return [String]
|
1861
|
-
attr_accessor :zs_org_policy
|
1862
|
-
|
1863
|
-
#
|
1864
|
-
# Corresponds to the JSON property `zsRegionState`
|
1865
|
-
# @return [String]
|
1866
|
-
attr_accessor :zs_region_state
|
1867
|
-
|
1868
|
-
def initialize(**args)
|
1869
|
-
update!(**args)
|
1870
|
-
end
|
1871
|
-
|
1872
|
-
# Update properties of this object
|
1873
|
-
def update!(**args)
|
1874
|
-
@requirement_override = args[:requirement_override] if args.key?(:requirement_override)
|
1875
|
-
@zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
|
1876
|
-
@zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
|
1877
|
-
@zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
|
1878
|
-
@zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
|
1879
|
-
@zone_separation = args[:zone_separation] if args.key?(:zone_separation)
|
1880
|
-
@zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
|
1881
|
-
@zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
|
1882
|
-
end
|
1883
|
-
end
|
1884
|
-
|
1885
1724
|
# Response for ListClusters.
|
1886
1725
|
class ListClustersResponse
|
1887
1726
|
include Google::Apis::Core::Hashable
|
@@ -2059,82 +1898,6 @@ module Google
|
|
2059
1898
|
end
|
2060
1899
|
end
|
2061
1900
|
|
2062
|
-
#
|
2063
|
-
class LocationAssignment
|
2064
|
-
include Google::Apis::Core::Hashable
|
2065
|
-
|
2066
|
-
#
|
2067
|
-
# Corresponds to the JSON property `location`
|
2068
|
-
# @return [String]
|
2069
|
-
attr_accessor :location
|
2070
|
-
|
2071
|
-
#
|
2072
|
-
# Corresponds to the JSON property `locationType`
|
2073
|
-
# @return [String]
|
2074
|
-
attr_accessor :location_type
|
2075
|
-
|
2076
|
-
def initialize(**args)
|
2077
|
-
update!(**args)
|
2078
|
-
end
|
2079
|
-
|
2080
|
-
# Update properties of this object
|
2081
|
-
def update!(**args)
|
2082
|
-
@location = args[:location] if args.key?(:location)
|
2083
|
-
@location_type = args[:location_type] if args.key?(:location_type)
|
2084
|
-
end
|
2085
|
-
end
|
2086
|
-
|
2087
|
-
#
|
2088
|
-
class LocationData
|
2089
|
-
include Google::Apis::Core::Hashable
|
2090
|
-
|
2091
|
-
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
2092
|
-
# guide#data-metadata-placement-and-failure-domains
|
2093
|
-
# Corresponds to the JSON property `blobstoreLocation`
|
2094
|
-
# @return [Google::Apis::RedisV1::BlobstoreLocation]
|
2095
|
-
attr_accessor :blobstore_location
|
2096
|
-
|
2097
|
-
#
|
2098
|
-
# Corresponds to the JSON property `childAssetLocation`
|
2099
|
-
# @return [Google::Apis::RedisV1::CloudAssetComposition]
|
2100
|
-
attr_accessor :child_asset_location
|
2101
|
-
|
2102
|
-
#
|
2103
|
-
# Corresponds to the JSON property `directLocation`
|
2104
|
-
# @return [Google::Apis::RedisV1::DirectLocationAssignment]
|
2105
|
-
attr_accessor :direct_location
|
2106
|
-
|
2107
|
-
#
|
2108
|
-
# Corresponds to the JSON property `gcpProjectProxy`
|
2109
|
-
# @return [Google::Apis::RedisV1::TenantProjectProxy]
|
2110
|
-
attr_accessor :gcp_project_proxy
|
2111
|
-
|
2112
|
-
# Message describing that the location of the customer resource is tied to
|
2113
|
-
# placer allocations
|
2114
|
-
# Corresponds to the JSON property `placerLocation`
|
2115
|
-
# @return [Google::Apis::RedisV1::PlacerLocation]
|
2116
|
-
attr_accessor :placer_location
|
2117
|
-
|
2118
|
-
#
|
2119
|
-
# Corresponds to the JSON property `spannerLocation`
|
2120
|
-
# @return [Google::Apis::RedisV1::SpannerLocation]
|
2121
|
-
attr_accessor :spanner_location
|
2122
|
-
|
2123
|
-
def initialize(**args)
|
2124
|
-
update!(**args)
|
2125
|
-
end
|
2126
|
-
|
2127
|
-
# Update properties of this object
|
2128
|
-
def update!(**args)
|
2129
|
-
@blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
|
2130
|
-
@child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
|
2131
|
-
@direct_location = args[:direct_location] if args.key?(:direct_location)
|
2132
|
-
@gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
|
2133
|
-
@placer_location = args[:placer_location] if args.key?(:placer_location)
|
2134
|
-
@spanner_location = args[:spanner_location] if args.key?(:spanner_location)
|
2135
|
-
end
|
2136
|
-
end
|
2137
|
-
|
2138
1901
|
# MachineConfiguration describes the configuration of a machine specific to
|
2139
1902
|
# Database Resource.
|
2140
1903
|
class MachineConfiguration
|
@@ -2588,27 +2351,6 @@ module Google
|
|
2588
2351
|
end
|
2589
2352
|
end
|
2590
2353
|
|
2591
|
-
# Message describing that the location of the customer resource is tied to
|
2592
|
-
# placer allocations
|
2593
|
-
class PlacerLocation
|
2594
|
-
include Google::Apis::Core::Hashable
|
2595
|
-
|
2596
|
-
# Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
|
2597
|
-
# root/my-dir")
|
2598
|
-
# Corresponds to the JSON property `placerConfig`
|
2599
|
-
# @return [String]
|
2600
|
-
attr_accessor :placer_config
|
2601
|
-
|
2602
|
-
def initialize(**args)
|
2603
|
-
update!(**args)
|
2604
|
-
end
|
2605
|
-
|
2606
|
-
# Update properties of this object
|
2607
|
-
def update!(**args)
|
2608
|
-
@placer_config = args[:placer_config] if args.key?(:placer_config)
|
2609
|
-
end
|
2610
|
-
end
|
2611
|
-
|
2612
2354
|
# Product specification for Condor resources.
|
2613
2355
|
class Product
|
2614
2356
|
include Google::Apis::Core::Hashable
|
@@ -2671,6 +2413,11 @@ module Google
|
|
2671
2413
|
# @return [String]
|
2672
2414
|
attr_accessor :address
|
2673
2415
|
|
2416
|
+
# Output only. Type of the PSC connection.
|
2417
|
+
# Corresponds to the JSON property `connectionType`
|
2418
|
+
# @return [String]
|
2419
|
+
attr_accessor :connection_type
|
2420
|
+
|
2674
2421
|
# Required. The URI of the consumer side forwarding rule. Example: projects/`
|
2675
2422
|
# projectNumOrId`/regions/us-east1/forwardingRules/`resourceId`.
|
2676
2423
|
# Corresponds to the JSON property `forwardingRule`
|
@@ -2695,6 +2442,14 @@ module Google
|
|
2695
2442
|
# @return [String]
|
2696
2443
|
attr_accessor :psc_connection_id
|
2697
2444
|
|
2445
|
+
# Output only. The status of the PSC connection. Please note that this value is
|
2446
|
+
# updated periodically. To get the latest status of a PSC connection, follow
|
2447
|
+
# https://cloud.google.com/vpc/docs/configure-private-service-connect-services#
|
2448
|
+
# endpoint-details.
|
2449
|
+
# Corresponds to the JSON property `pscConnectionStatus`
|
2450
|
+
# @return [String]
|
2451
|
+
attr_accessor :psc_connection_status
|
2452
|
+
|
2698
2453
|
# Required. The service attachment which is the target of the PSC connection, in
|
2699
2454
|
# the form of projects/`project-id`/regions/`region`/serviceAttachments/`service-
|
2700
2455
|
# attachment-id`.
|
@@ -2709,10 +2464,39 @@ module Google
|
|
2709
2464
|
# Update properties of this object
|
2710
2465
|
def update!(**args)
|
2711
2466
|
@address = args[:address] if args.key?(:address)
|
2467
|
+
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
2712
2468
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
2713
2469
|
@network = args[:network] if args.key?(:network)
|
2714
2470
|
@project_id = args[:project_id] if args.key?(:project_id)
|
2715
2471
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
2472
|
+
@psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
|
2473
|
+
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
2474
|
+
end
|
2475
|
+
end
|
2476
|
+
|
2477
|
+
# Configuration of a service attachment of the cluster, for creating PSC
|
2478
|
+
# connections.
|
2479
|
+
class PscServiceAttachment
|
2480
|
+
include Google::Apis::Core::Hashable
|
2481
|
+
|
2482
|
+
# Output only. Type of a PSC connection targeting this service attachment.
|
2483
|
+
# Corresponds to the JSON property `connectionType`
|
2484
|
+
# @return [String]
|
2485
|
+
attr_accessor :connection_type
|
2486
|
+
|
2487
|
+
# Output only. Service attachment URI which your self-created PscConnection
|
2488
|
+
# should use as target
|
2489
|
+
# Corresponds to the JSON property `serviceAttachment`
|
2490
|
+
# @return [String]
|
2491
|
+
attr_accessor :service_attachment
|
2492
|
+
|
2493
|
+
def initialize(**args)
|
2494
|
+
update!(**args)
|
2495
|
+
end
|
2496
|
+
|
2497
|
+
# Update properties of this object
|
2498
|
+
def update!(**args)
|
2499
|
+
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
2716
2500
|
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
2717
2501
|
end
|
2718
2502
|
end
|
@@ -2770,33 +2554,6 @@ module Google
|
|
2770
2554
|
end
|
2771
2555
|
end
|
2772
2556
|
|
2773
|
-
# To be used for specifying the intended distribution of regional compute.
|
2774
|
-
# googleapis.com/InstanceGroupManager instances
|
2775
|
-
class RegionalMigDistributionPolicy
|
2776
|
-
include Google::Apis::Core::Hashable
|
2777
|
-
|
2778
|
-
# The shape in which the group converges around distribution of resources.
|
2779
|
-
# Instance of proto2 enum
|
2780
|
-
# Corresponds to the JSON property `targetShape`
|
2781
|
-
# @return [Fixnum]
|
2782
|
-
attr_accessor :target_shape
|
2783
|
-
|
2784
|
-
# Cloud zones used by regional MIG to create instances.
|
2785
|
-
# Corresponds to the JSON property `zones`
|
2786
|
-
# @return [Array<Google::Apis::RedisV1::ZoneConfiguration>]
|
2787
|
-
attr_accessor :zones
|
2788
|
-
|
2789
|
-
def initialize(**args)
|
2790
|
-
update!(**args)
|
2791
|
-
end
|
2792
|
-
|
2793
|
-
# Update properties of this object
|
2794
|
-
def update!(**args)
|
2795
|
-
@target_shape = args[:target_shape] if args.key?(:target_shape)
|
2796
|
-
@zones = args[:zones] if args.key?(:zones)
|
2797
|
-
end
|
2798
|
-
end
|
2799
|
-
|
2800
2557
|
# Details of the remote cluster associated with this cluster in a cross cluster
|
2801
2558
|
# replication setup.
|
2802
2559
|
class RemoteCluster
|
@@ -2824,31 +2581,6 @@ module Google
|
|
2824
2581
|
end
|
2825
2582
|
end
|
2826
2583
|
|
2827
|
-
#
|
2828
|
-
class RequirementOverride
|
2829
|
-
include Google::Apis::Core::Hashable
|
2830
|
-
|
2831
|
-
#
|
2832
|
-
# Corresponds to the JSON property `ziOverride`
|
2833
|
-
# @return [String]
|
2834
|
-
attr_accessor :zi_override
|
2835
|
-
|
2836
|
-
#
|
2837
|
-
# Corresponds to the JSON property `zsOverride`
|
2838
|
-
# @return [String]
|
2839
|
-
attr_accessor :zs_override
|
2840
|
-
|
2841
|
-
def initialize(**args)
|
2842
|
-
update!(**args)
|
2843
|
-
end
|
2844
|
-
|
2845
|
-
# Update properties of this object
|
2846
|
-
def update!(**args)
|
2847
|
-
@zi_override = args[:zi_override] if args.key?(:zi_override)
|
2848
|
-
@zs_override = args[:zs_override] if args.key?(:zs_override)
|
2849
|
-
end
|
2850
|
-
end
|
2851
|
-
|
2852
2584
|
# Request for rescheduling a cluster maintenance.
|
2853
2585
|
class RescheduleClusterMaintenanceRequest
|
2854
2586
|
include Google::Apis::Core::Hashable
|
@@ -2929,6 +2661,11 @@ module Google
|
|
2929
2661
|
# @return [String]
|
2930
2662
|
attr_accessor :time_based_retention
|
2931
2663
|
|
2664
|
+
# Timestamp based retention period i.e. 2024-05-01T00:00:00Z
|
2665
|
+
# Corresponds to the JSON property `timestampBasedRetentionTime`
|
2666
|
+
# @return [String]
|
2667
|
+
attr_accessor :timestamp_based_retention_time
|
2668
|
+
|
2932
2669
|
def initialize(**args)
|
2933
2670
|
update!(**args)
|
2934
2671
|
end
|
@@ -2939,32 +2676,7 @@ module Google
|
|
2939
2676
|
@quantity_based_retention = args[:quantity_based_retention] if args.key?(:quantity_based_retention)
|
2940
2677
|
@retention_unit = args[:retention_unit] if args.key?(:retention_unit)
|
2941
2678
|
@time_based_retention = args[:time_based_retention] if args.key?(:time_based_retention)
|
2942
|
-
|
2943
|
-
end
|
2944
|
-
|
2945
|
-
#
|
2946
|
-
class SpannerLocation
|
2947
|
-
include Google::Apis::Core::Hashable
|
2948
|
-
|
2949
|
-
# Set of backups used by the resource with name in the same format as what is
|
2950
|
-
# available at http://table/spanner_automon.backup_metadata
|
2951
|
-
# Corresponds to the JSON property `backupName`
|
2952
|
-
# @return [Array<String>]
|
2953
|
-
attr_accessor :backup_name
|
2954
|
-
|
2955
|
-
# Set of databases used by the resource in format /span//
|
2956
|
-
# Corresponds to the JSON property `dbName`
|
2957
|
-
# @return [Array<String>]
|
2958
|
-
attr_accessor :db_name
|
2959
|
-
|
2960
|
-
def initialize(**args)
|
2961
|
-
update!(**args)
|
2962
|
-
end
|
2963
|
-
|
2964
|
-
# Update properties of this object
|
2965
|
-
def update!(**args)
|
2966
|
-
@backup_name = args[:backup_name] if args.key?(:backup_name)
|
2967
|
-
@db_name = args[:db_name] if args.key?(:db_name)
|
2679
|
+
@timestamp_based_retention_time = args[:timestamp_based_retention_time] if args.key?(:timestamp_based_retention_time)
|
2968
2680
|
end
|
2969
2681
|
end
|
2970
2682
|
|
@@ -3047,49 +2759,34 @@ module Google
|
|
3047
2759
|
end
|
3048
2760
|
end
|
3049
2761
|
|
3050
|
-
#
|
3051
|
-
class TenantProjectProxy
|
3052
|
-
include Google::Apis::Core::Hashable
|
3053
|
-
|
3054
|
-
#
|
3055
|
-
# Corresponds to the JSON property `projectNumbers`
|
3056
|
-
# @return [Array<String>]
|
3057
|
-
attr_accessor :project_numbers
|
3058
|
-
|
3059
|
-
def initialize(**args)
|
3060
|
-
update!(**args)
|
3061
|
-
end
|
3062
|
-
|
3063
|
-
# Update properties of this object
|
3064
|
-
def update!(**args)
|
3065
|
-
@project_numbers = args[:project_numbers] if args.key?(:project_numbers)
|
3066
|
-
end
|
3067
|
-
end
|
3068
|
-
|
3069
2762
|
# Represents a time of day. The date and time zone are either not significant or
|
3070
2763
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
3071
2764
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
3072
2765
|
class TimeOfDay
|
3073
2766
|
include Google::Apis::Core::Hashable
|
3074
2767
|
|
3075
|
-
# Hours of day in 24 hour format.
|
3076
|
-
#
|
2768
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
2769
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
2770
|
+
# value "24:00:00" for scenarios like business closing time.
|
3077
2771
|
# Corresponds to the JSON property `hours`
|
3078
2772
|
# @return [Fixnum]
|
3079
2773
|
attr_accessor :hours
|
3080
2774
|
|
3081
|
-
# Minutes of hour
|
2775
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
2776
|
+
# to 59.
|
3082
2777
|
# Corresponds to the JSON property `minutes`
|
3083
2778
|
# @return [Fixnum]
|
3084
2779
|
attr_accessor :minutes
|
3085
2780
|
|
3086
|
-
# Fractions of seconds in nanoseconds. Must be
|
2781
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
|
2782
|
+
# less than or equal to 999,999,999.
|
3087
2783
|
# Corresponds to the JSON property `nanos`
|
3088
2784
|
# @return [Fixnum]
|
3089
2785
|
attr_accessor :nanos
|
3090
2786
|
|
3091
|
-
# Seconds of
|
3092
|
-
# allow the value 60 if it allows leap-
|
2787
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must be
|
2788
|
+
# less than or equal to 59. An API may allow the value 60 if it allows leap-
|
2789
|
+
# seconds.
|
3093
2790
|
# Corresponds to the JSON property `seconds`
|
3094
2791
|
# @return [Fixnum]
|
3095
2792
|
attr_accessor :seconds
|
@@ -3291,25 +2988,6 @@ module Google
|
|
3291
2988
|
end
|
3292
2989
|
end
|
3293
2990
|
|
3294
|
-
#
|
3295
|
-
class ZoneConfiguration
|
3296
|
-
include Google::Apis::Core::Hashable
|
3297
|
-
|
3298
|
-
#
|
3299
|
-
# Corresponds to the JSON property `zone`
|
3300
|
-
# @return [String]
|
3301
|
-
attr_accessor :zone
|
3302
|
-
|
3303
|
-
def initialize(**args)
|
3304
|
-
update!(**args)
|
3305
|
-
end
|
3306
|
-
|
3307
|
-
# Update properties of this object
|
3308
|
-
def update!(**args)
|
3309
|
-
@zone = args[:zone] if args.key?(:zone)
|
3310
|
-
end
|
3311
|
-
end
|
3312
|
-
|
3313
2991
|
# Zone distribution config for allocation of cluster resources.
|
3314
2992
|
class ZoneDistributionConfig
|
3315
2993
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RedisV1
|
18
18
|
# Version of the google-apis-redis_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.63.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241017"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,12 +28,6 @@ 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
31
|
class AvailabilityConfiguration
|
38
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
33
|
|
@@ -52,12 +46,6 @@ module Google
|
|
52
46
|
include Google::Apis::Core::JsonObjectSupport
|
53
47
|
end
|
54
48
|
|
55
|
-
class BlobstoreLocation
|
56
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
-
|
58
|
-
include Google::Apis::Core::JsonObjectSupport
|
59
|
-
end
|
60
|
-
|
61
49
|
class CertChain
|
62
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
51
|
|
@@ -70,19 +58,13 @@ module Google
|
|
70
58
|
include Google::Apis::Core::JsonObjectSupport
|
71
59
|
end
|
72
60
|
|
73
|
-
class
|
74
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
-
|
76
|
-
include Google::Apis::Core::JsonObjectSupport
|
77
|
-
end
|
78
|
-
|
79
|
-
class CloudAssetComposition
|
61
|
+
class Cluster
|
80
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
63
|
|
82
64
|
include Google::Apis::Core::JsonObjectSupport
|
83
65
|
end
|
84
66
|
|
85
|
-
class
|
67
|
+
class ClusterEndpoint
|
86
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
69
|
|
88
70
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -118,6 +100,12 @@ module Google
|
|
118
100
|
include Google::Apis::Core::JsonObjectSupport
|
119
101
|
end
|
120
102
|
|
103
|
+
class ConnectionDetail
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
121
109
|
class CrossClusterReplicationConfig
|
122
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
111
|
|
@@ -160,12 +148,6 @@ module Google
|
|
160
148
|
include Google::Apis::Core::JsonObjectSupport
|
161
149
|
end
|
162
150
|
|
163
|
-
class DirectLocationAssignment
|
164
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
-
|
166
|
-
include Google::Apis::Core::JsonObjectSupport
|
167
|
-
end
|
168
|
-
|
169
151
|
class DiscoveryEndpoint
|
170
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
153
|
|
@@ -190,12 +172,6 @@ module Google
|
|
190
172
|
include Google::Apis::Core::JsonObjectSupport
|
191
173
|
end
|
192
174
|
|
193
|
-
class ExtraParameter
|
194
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
-
|
196
|
-
include Google::Apis::Core::JsonObjectSupport
|
197
|
-
end
|
198
|
-
|
199
175
|
class FailoverInstanceRequest
|
200
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
177
|
|
@@ -262,12 +238,6 @@ module Google
|
|
262
238
|
include Google::Apis::Core::JsonObjectSupport
|
263
239
|
end
|
264
240
|
|
265
|
-
class IsolationExpectations
|
266
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
-
|
268
|
-
include Google::Apis::Core::JsonObjectSupport
|
269
|
-
end
|
270
|
-
|
271
241
|
class ListClustersResponse
|
272
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
243
|
|
@@ -298,18 +268,6 @@ module Google
|
|
298
268
|
include Google::Apis::Core::JsonObjectSupport
|
299
269
|
end
|
300
270
|
|
301
|
-
class LocationAssignment
|
302
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
-
|
304
|
-
include Google::Apis::Core::JsonObjectSupport
|
305
|
-
end
|
306
|
-
|
307
|
-
class LocationData
|
308
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
-
|
310
|
-
include Google::Apis::Core::JsonObjectSupport
|
311
|
-
end
|
312
|
-
|
313
271
|
class MachineConfiguration
|
314
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
273
|
|
@@ -382,12 +340,6 @@ module Google
|
|
382
340
|
include Google::Apis::Core::JsonObjectSupport
|
383
341
|
end
|
384
342
|
|
385
|
-
class PlacerLocation
|
386
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
-
|
388
|
-
include Google::Apis::Core::JsonObjectSupport
|
389
|
-
end
|
390
|
-
|
391
343
|
class Product
|
392
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
345
|
|
@@ -406,19 +358,19 @@ module Google
|
|
406
358
|
include Google::Apis::Core::JsonObjectSupport
|
407
359
|
end
|
408
360
|
|
409
|
-
class
|
361
|
+
class PscServiceAttachment
|
410
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
363
|
|
412
364
|
include Google::Apis::Core::JsonObjectSupport
|
413
365
|
end
|
414
366
|
|
415
|
-
class
|
367
|
+
class RdbConfig
|
416
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
369
|
|
418
370
|
include Google::Apis::Core::JsonObjectSupport
|
419
371
|
end
|
420
372
|
|
421
|
-
class
|
373
|
+
class ReconciliationOperationMetadata
|
422
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
375
|
|
424
376
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -430,12 +382,6 @@ module Google
|
|
430
382
|
include Google::Apis::Core::JsonObjectSupport
|
431
383
|
end
|
432
384
|
|
433
|
-
class RequirementOverride
|
434
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
-
|
436
|
-
include Google::Apis::Core::JsonObjectSupport
|
437
|
-
end
|
438
|
-
|
439
385
|
class RescheduleClusterMaintenanceRequest
|
440
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
387
|
|
@@ -454,12 +400,6 @@ module Google
|
|
454
400
|
include Google::Apis::Core::JsonObjectSupport
|
455
401
|
end
|
456
402
|
|
457
|
-
class SpannerLocation
|
458
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
|
-
|
460
|
-
include Google::Apis::Core::JsonObjectSupport
|
461
|
-
end
|
462
|
-
|
463
403
|
class StateInfo
|
464
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
405
|
|
@@ -478,12 +418,6 @@ module Google
|
|
478
418
|
include Google::Apis::Core::JsonObjectSupport
|
479
419
|
end
|
480
420
|
|
481
|
-
class TenantProjectProxy
|
482
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
-
|
484
|
-
include Google::Apis::Core::JsonObjectSupport
|
485
|
-
end
|
486
|
-
|
487
421
|
class TimeOfDay
|
488
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
423
|
|
@@ -526,12 +460,6 @@ module Google
|
|
526
460
|
include Google::Apis::Core::JsonObjectSupport
|
527
461
|
end
|
528
462
|
|
529
|
-
class ZoneConfiguration
|
530
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
|
-
|
532
|
-
include Google::Apis::Core::JsonObjectSupport
|
533
|
-
end
|
534
|
-
|
535
463
|
class ZoneDistributionConfig
|
536
464
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
465
|
|
@@ -545,21 +473,6 @@ module Google
|
|
545
473
|
end
|
546
474
|
end
|
547
475
|
|
548
|
-
class AssetLocation
|
549
|
-
# @private
|
550
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
551
|
-
property :ccfe_rms_path, as: 'ccfeRmsPath'
|
552
|
-
property :expected, as: 'expected', class: Google::Apis::RedisV1::IsolationExpectations, decorator: Google::Apis::RedisV1::IsolationExpectations::Representation
|
553
|
-
|
554
|
-
collection :extra_parameters, as: 'extraParameters', class: Google::Apis::RedisV1::ExtraParameter, decorator: Google::Apis::RedisV1::ExtraParameter::Representation
|
555
|
-
|
556
|
-
collection :location_data, as: 'locationData', class: Google::Apis::RedisV1::LocationData, decorator: Google::Apis::RedisV1::LocationData::Representation
|
557
|
-
|
558
|
-
collection :parent_asset, as: 'parentAsset', class: Google::Apis::RedisV1::CloudAsset, decorator: Google::Apis::RedisV1::CloudAsset::Representation
|
559
|
-
|
560
|
-
end
|
561
|
-
end
|
562
|
-
|
563
476
|
class AvailabilityConfiguration
|
564
477
|
# @private
|
565
478
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -592,13 +505,6 @@ module Google
|
|
592
505
|
end
|
593
506
|
end
|
594
507
|
|
595
|
-
class BlobstoreLocation
|
596
|
-
# @private
|
597
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
598
|
-
collection :policy_id, as: 'policyId'
|
599
|
-
end
|
600
|
-
end
|
601
|
-
|
602
508
|
class CertChain
|
603
509
|
# @private
|
604
510
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -615,26 +521,12 @@ module Google
|
|
615
521
|
end
|
616
522
|
end
|
617
523
|
|
618
|
-
class CloudAsset
|
619
|
-
# @private
|
620
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
621
|
-
property :asset_name, as: 'assetName'
|
622
|
-
property :asset_type, as: 'assetType'
|
623
|
-
end
|
624
|
-
end
|
625
|
-
|
626
|
-
class CloudAssetComposition
|
627
|
-
# @private
|
628
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
629
|
-
collection :child_asset, as: 'childAsset', class: Google::Apis::RedisV1::CloudAsset, decorator: Google::Apis::RedisV1::CloudAsset::Representation
|
630
|
-
|
631
|
-
end
|
632
|
-
end
|
633
|
-
|
634
524
|
class Cluster
|
635
525
|
# @private
|
636
526
|
class Representation < Google::Apis::Core::JsonRepresentation
|
637
527
|
property :authorization_mode, as: 'authorizationMode'
|
528
|
+
collection :cluster_endpoints, as: 'clusterEndpoints', class: Google::Apis::RedisV1::ClusterEndpoint, decorator: Google::Apis::RedisV1::ClusterEndpoint::Representation
|
529
|
+
|
638
530
|
property :create_time, as: 'createTime'
|
639
531
|
property :cross_cluster_replication_config, as: 'crossClusterReplicationConfig', class: Google::Apis::RedisV1::CrossClusterReplicationConfig, decorator: Google::Apis::RedisV1::CrossClusterReplicationConfig::Representation
|
640
532
|
|
@@ -654,6 +546,8 @@ module Google
|
|
654
546
|
|
655
547
|
collection :psc_connections, as: 'pscConnections', class: Google::Apis::RedisV1::PscConnection, decorator: Google::Apis::RedisV1::PscConnection::Representation
|
656
548
|
|
549
|
+
collection :psc_service_attachments, as: 'pscServiceAttachments', class: Google::Apis::RedisV1::PscServiceAttachment, decorator: Google::Apis::RedisV1::PscServiceAttachment::Representation
|
550
|
+
|
657
551
|
hash :redis_configs, as: 'redisConfigs'
|
658
552
|
property :replica_count, as: 'replicaCount'
|
659
553
|
property :shard_count, as: 'shardCount'
|
@@ -668,6 +562,14 @@ module Google
|
|
668
562
|
end
|
669
563
|
end
|
670
564
|
|
565
|
+
class ClusterEndpoint
|
566
|
+
# @private
|
567
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
568
|
+
collection :connections, as: 'connections', class: Google::Apis::RedisV1::ConnectionDetail, decorator: Google::Apis::RedisV1::ConnectionDetail::Representation
|
569
|
+
|
570
|
+
end
|
571
|
+
end
|
572
|
+
|
671
573
|
class ClusterMaintenancePolicy
|
672
574
|
# @private
|
673
575
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -714,6 +616,14 @@ module Google
|
|
714
616
|
end
|
715
617
|
end
|
716
618
|
|
619
|
+
class ConnectionDetail
|
620
|
+
# @private
|
621
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
622
|
+
property :psc_connection, as: 'pscConnection', class: Google::Apis::RedisV1::PscConnection, decorator: Google::Apis::RedisV1::PscConnection::Representation
|
623
|
+
|
624
|
+
end
|
625
|
+
end
|
626
|
+
|
717
627
|
class CrossClusterReplicationConfig
|
718
628
|
# @private
|
719
629
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -837,14 +747,6 @@ module Google
|
|
837
747
|
end
|
838
748
|
end
|
839
749
|
|
840
|
-
class DirectLocationAssignment
|
841
|
-
# @private
|
842
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
843
|
-
collection :location, as: 'location', class: Google::Apis::RedisV1::LocationAssignment, decorator: Google::Apis::RedisV1::LocationAssignment::Representation
|
844
|
-
|
845
|
-
end
|
846
|
-
end
|
847
|
-
|
848
750
|
class DiscoveryEndpoint
|
849
751
|
# @private
|
850
752
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -877,14 +779,6 @@ module Google
|
|
877
779
|
end
|
878
780
|
end
|
879
781
|
|
880
|
-
class ExtraParameter
|
881
|
-
# @private
|
882
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
883
|
-
property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::RedisV1::RegionalMigDistributionPolicy, decorator: Google::Apis::RedisV1::RegionalMigDistributionPolicy::Representation
|
884
|
-
|
885
|
-
end
|
886
|
-
end
|
887
|
-
|
888
782
|
class FailoverInstanceRequest
|
889
783
|
# @private
|
890
784
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1019,21 +913,6 @@ module Google
|
|
1019
913
|
end
|
1020
914
|
end
|
1021
915
|
|
1022
|
-
class IsolationExpectations
|
1023
|
-
# @private
|
1024
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1025
|
-
property :requirement_override, as: 'requirementOverride', class: Google::Apis::RedisV1::RequirementOverride, decorator: Google::Apis::RedisV1::RequirementOverride::Representation
|
1026
|
-
|
1027
|
-
property :zi_org_policy, as: 'ziOrgPolicy'
|
1028
|
-
property :zi_region_policy, as: 'ziRegionPolicy'
|
1029
|
-
property :zi_region_state, as: 'ziRegionState'
|
1030
|
-
property :zone_isolation, as: 'zoneIsolation'
|
1031
|
-
property :zone_separation, as: 'zoneSeparation'
|
1032
|
-
property :zs_org_policy, as: 'zsOrgPolicy'
|
1033
|
-
property :zs_region_state, as: 'zsRegionState'
|
1034
|
-
end
|
1035
|
-
end
|
1036
|
-
|
1037
916
|
class ListClustersResponse
|
1038
917
|
# @private
|
1039
918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1083,32 +962,6 @@ module Google
|
|
1083
962
|
end
|
1084
963
|
end
|
1085
964
|
|
1086
|
-
class LocationAssignment
|
1087
|
-
# @private
|
1088
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1089
|
-
property :location, as: 'location'
|
1090
|
-
property :location_type, as: 'locationType'
|
1091
|
-
end
|
1092
|
-
end
|
1093
|
-
|
1094
|
-
class LocationData
|
1095
|
-
# @private
|
1096
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1097
|
-
property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::RedisV1::BlobstoreLocation, decorator: Google::Apis::RedisV1::BlobstoreLocation::Representation
|
1098
|
-
|
1099
|
-
property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::RedisV1::CloudAssetComposition, decorator: Google::Apis::RedisV1::CloudAssetComposition::Representation
|
1100
|
-
|
1101
|
-
property :direct_location, as: 'directLocation', class: Google::Apis::RedisV1::DirectLocationAssignment, decorator: Google::Apis::RedisV1::DirectLocationAssignment::Representation
|
1102
|
-
|
1103
|
-
property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::RedisV1::TenantProjectProxy, decorator: Google::Apis::RedisV1::TenantProjectProxy::Representation
|
1104
|
-
|
1105
|
-
property :placer_location, as: 'placerLocation', class: Google::Apis::RedisV1::PlacerLocation, decorator: Google::Apis::RedisV1::PlacerLocation::Representation
|
1106
|
-
|
1107
|
-
property :spanner_location, as: 'spannerLocation', class: Google::Apis::RedisV1::SpannerLocation, decorator: Google::Apis::RedisV1::SpannerLocation::Representation
|
1108
|
-
|
1109
|
-
end
|
1110
|
-
end
|
1111
|
-
|
1112
965
|
class MachineConfiguration
|
1113
966
|
# @private
|
1114
967
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1229,13 +1082,6 @@ module Google
|
|
1229
1082
|
end
|
1230
1083
|
end
|
1231
1084
|
|
1232
|
-
class PlacerLocation
|
1233
|
-
# @private
|
1234
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1235
|
-
property :placer_config, as: 'placerConfig'
|
1236
|
-
end
|
1237
|
-
end
|
1238
|
-
|
1239
1085
|
class Product
|
1240
1086
|
# @private
|
1241
1087
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1256,10 +1102,20 @@ module Google
|
|
1256
1102
|
# @private
|
1257
1103
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1258
1104
|
property :address, as: 'address'
|
1105
|
+
property :connection_type, as: 'connectionType'
|
1259
1106
|
property :forwarding_rule, as: 'forwardingRule'
|
1260
1107
|
property :network, as: 'network'
|
1261
1108
|
property :project_id, as: 'projectId'
|
1262
1109
|
property :psc_connection_id, as: 'pscConnectionId'
|
1110
|
+
property :psc_connection_status, as: 'pscConnectionStatus'
|
1111
|
+
property :service_attachment, as: 'serviceAttachment'
|
1112
|
+
end
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
class PscServiceAttachment
|
1116
|
+
# @private
|
1117
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1118
|
+
property :connection_type, as: 'connectionType'
|
1263
1119
|
property :service_attachment, as: 'serviceAttachment'
|
1264
1120
|
end
|
1265
1121
|
end
|
@@ -1280,15 +1136,6 @@ module Google
|
|
1280
1136
|
end
|
1281
1137
|
end
|
1282
1138
|
|
1283
|
-
class RegionalMigDistributionPolicy
|
1284
|
-
# @private
|
1285
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1286
|
-
property :target_shape, as: 'targetShape'
|
1287
|
-
collection :zones, as: 'zones', class: Google::Apis::RedisV1::ZoneConfiguration, decorator: Google::Apis::RedisV1::ZoneConfiguration::Representation
|
1288
|
-
|
1289
|
-
end
|
1290
|
-
end
|
1291
|
-
|
1292
1139
|
class RemoteCluster
|
1293
1140
|
# @private
|
1294
1141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1297,14 +1144,6 @@ module Google
|
|
1297
1144
|
end
|
1298
1145
|
end
|
1299
1146
|
|
1300
|
-
class RequirementOverride
|
1301
|
-
# @private
|
1302
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1303
|
-
property :zi_override, as: 'ziOverride'
|
1304
|
-
property :zs_override, as: 'zsOverride'
|
1305
|
-
end
|
1306
|
-
end
|
1307
|
-
|
1308
1147
|
class RescheduleClusterMaintenanceRequest
|
1309
1148
|
# @private
|
1310
1149
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1328,14 +1167,7 @@ module Google
|
|
1328
1167
|
property :quantity_based_retention, as: 'quantityBasedRetention'
|
1329
1168
|
property :retention_unit, as: 'retentionUnit'
|
1330
1169
|
property :time_based_retention, as: 'timeBasedRetention'
|
1331
|
-
|
1332
|
-
end
|
1333
|
-
|
1334
|
-
class SpannerLocation
|
1335
|
-
# @private
|
1336
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1337
|
-
collection :backup_name, as: 'backupName'
|
1338
|
-
collection :db_name, as: 'dbName'
|
1170
|
+
property :timestamp_based_retention_time, as: 'timestampBasedRetentionTime'
|
1339
1171
|
end
|
1340
1172
|
end
|
1341
1173
|
|
@@ -1363,13 +1195,6 @@ module Google
|
|
1363
1195
|
end
|
1364
1196
|
end
|
1365
1197
|
|
1366
|
-
class TenantProjectProxy
|
1367
|
-
# @private
|
1368
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1369
|
-
collection :project_numbers, as: 'projectNumbers'
|
1370
|
-
end
|
1371
|
-
end
|
1372
|
-
|
1373
1198
|
class TimeOfDay
|
1374
1199
|
# @private
|
1375
1200
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1433,13 +1258,6 @@ module Google
|
|
1433
1258
|
end
|
1434
1259
|
end
|
1435
1260
|
|
1436
|
-
class ZoneConfiguration
|
1437
|
-
# @private
|
1438
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1439
|
-
property :zone, as: 'zone'
|
1440
|
-
end
|
1441
|
-
end
|
1442
|
-
|
1443
1261
|
class ZoneDistributionConfig
|
1444
1262
|
# @private
|
1445
1263
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-redis_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.63.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-10-27 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-redis_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.63.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Cloud Memorystore for Redis API V1
|