google-apis-redis_v1 0.59.0 → 0.60.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/redis_v1/classes.rb +458 -2
- data/lib/google/apis/redis_v1/gem_version.rb +2 -2
- data/lib/google/apis/redis_v1/representations.rb +246 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf8f29222c186b61ad5962155347619a0f0050ef5d0c97fcfdff30504100d470
|
4
|
+
data.tar.gz: eda57dd9bacb1f69e8bcee62dd0b3e1fb933fde3293aab60dace91fb2db8a10d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 608bf7fbf9c01f479f639bdb44ba742130f335a8da878bc423f0d2b30fd12e93f5145a29e994e920d70dcfbad776e60b425fe7c9ab6e3edd5e600d191c0f087e
|
7
|
+
data.tar.gz: 46e8573e9149f1f31695cc534b832ba249e0ec7a90244b2ea64c187df5ae50fa3d40107d41d454f55bdf33abbb6e68ac1935e3cd03b7b288df78c376f3d3740a
|
data/CHANGELOG.md
CHANGED
@@ -41,6 +41,53 @@ 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
|
+
|
44
91
|
# Configuration for availability of database instance
|
45
92
|
class AvailabilityConfiguration
|
46
93
|
include Google::Apis::Core::Hashable
|
@@ -166,6 +213,26 @@ module Google
|
|
166
213
|
end
|
167
214
|
end
|
168
215
|
|
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
|
+
|
169
236
|
#
|
170
237
|
class CertChain
|
171
238
|
include Google::Apis::Core::Hashable
|
@@ -212,6 +279,50 @@ module Google
|
|
212
279
|
end
|
213
280
|
end
|
214
281
|
|
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
|
+
|
215
326
|
# A cluster instance.
|
216
327
|
class Cluster
|
217
328
|
include Google::Apis::Core::Hashable
|
@@ -631,7 +742,7 @@ module Google
|
|
631
742
|
# @return [Google::Apis::RedisV1::DatabaseResourceId]
|
632
743
|
attr_accessor :resource_id
|
633
744
|
|
634
|
-
# Common model for database resource instance metadata.
|
745
|
+
# Common model for database resource instance metadata. Next ID: 21
|
635
746
|
# Corresponds to the JSON property `resourceMetadata`
|
636
747
|
# @return [Google::Apis::RedisV1::DatabaseResourceMetadata]
|
637
748
|
attr_accessor :resource_metadata
|
@@ -806,7 +917,7 @@ module Google
|
|
806
917
|
end
|
807
918
|
end
|
808
919
|
|
809
|
-
# Common model for database resource instance metadata.
|
920
|
+
# Common model for database resource instance metadata. Next ID: 21
|
810
921
|
class DatabaseResourceMetadata
|
811
922
|
include Google::Apis::Core::Hashable
|
812
923
|
|
@@ -902,6 +1013,13 @@ module Google
|
|
902
1013
|
# @return [String]
|
903
1014
|
attr_accessor :resource_name
|
904
1015
|
|
1016
|
+
# Message type for storing tags. Tags provide a way to create annotations for
|
1017
|
+
# resources, and in some cases conditionally allow or deny policies based on
|
1018
|
+
# whether a resource has a specific tag.
|
1019
|
+
# Corresponds to the JSON property `tagsSet`
|
1020
|
+
# @return [Google::Apis::RedisV1::Tags]
|
1021
|
+
attr_accessor :tags_set
|
1022
|
+
|
905
1023
|
# The time at which the resource was updated and recorded at partner service.
|
906
1024
|
# Corresponds to the JSON property `updationTime`
|
907
1025
|
# @return [String]
|
@@ -936,6 +1054,7 @@ module Google
|
|
936
1054
|
@product = args[:product] if args.key?(:product)
|
937
1055
|
@resource_container = args[:resource_container] if args.key?(:resource_container)
|
938
1056
|
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
1057
|
+
@tags_set = args[:tags_set] if args.key?(:tags_set)
|
939
1058
|
@updation_time = args[:updation_time] if args.key?(:updation_time)
|
940
1059
|
@user_label_set = args[:user_label_set] if args.key?(:user_label_set)
|
941
1060
|
end
|
@@ -1014,6 +1133,25 @@ module Google
|
|
1014
1133
|
end
|
1015
1134
|
end
|
1016
1135
|
|
1136
|
+
#
|
1137
|
+
class DirectLocationAssignment
|
1138
|
+
include Google::Apis::Core::Hashable
|
1139
|
+
|
1140
|
+
#
|
1141
|
+
# Corresponds to the JSON property `location`
|
1142
|
+
# @return [Array<Google::Apis::RedisV1::LocationAssignment>]
|
1143
|
+
attr_accessor :location
|
1144
|
+
|
1145
|
+
def initialize(**args)
|
1146
|
+
update!(**args)
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
# Update properties of this object
|
1150
|
+
def update!(**args)
|
1151
|
+
@location = args[:location] if args.key?(:location)
|
1152
|
+
end
|
1153
|
+
end
|
1154
|
+
|
1017
1155
|
# Endpoints on each network, for Redis clients to connect to the cluster.
|
1018
1156
|
class DiscoveryEndpoint
|
1019
1157
|
include Google::Apis::Core::Hashable
|
@@ -1108,6 +1246,26 @@ module Google
|
|
1108
1246
|
end
|
1109
1247
|
end
|
1110
1248
|
|
1249
|
+
# Defines parameters that should only be used for specific asset types.
|
1250
|
+
class ExtraParameter
|
1251
|
+
include Google::Apis::Core::Hashable
|
1252
|
+
|
1253
|
+
# To be used for specifying the intended distribution of regional compute.
|
1254
|
+
# googleapis.com/InstanceGroupManager instances
|
1255
|
+
# Corresponds to the JSON property `regionalMigDistributionPolicy`
|
1256
|
+
# @return [Google::Apis::RedisV1::RegionalMigDistributionPolicy]
|
1257
|
+
attr_accessor :regional_mig_distribution_policy
|
1258
|
+
|
1259
|
+
def initialize(**args)
|
1260
|
+
update!(**args)
|
1261
|
+
end
|
1262
|
+
|
1263
|
+
# Update properties of this object
|
1264
|
+
def update!(**args)
|
1265
|
+
@regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
|
1266
|
+
end
|
1267
|
+
end
|
1268
|
+
|
1111
1269
|
# Request for Failover.
|
1112
1270
|
class FailoverInstanceRequest
|
1113
1271
|
include Google::Apis::Core::Hashable
|
@@ -1658,6 +1816,70 @@ module Google
|
|
1658
1816
|
end
|
1659
1817
|
end
|
1660
1818
|
|
1819
|
+
#
|
1820
|
+
class IsolationExpectations
|
1821
|
+
include Google::Apis::Core::Hashable
|
1822
|
+
|
1823
|
+
# Explicit overrides for ZI and ZS requirements to be used for resources that
|
1824
|
+
# should be excluded from ZI/ZS verification logic.
|
1825
|
+
# Corresponds to the JSON property `requirementOverride`
|
1826
|
+
# @return [Google::Apis::RedisV1::RequirementOverride]
|
1827
|
+
attr_accessor :requirement_override
|
1828
|
+
|
1829
|
+
#
|
1830
|
+
# Corresponds to the JSON property `ziOrgPolicy`
|
1831
|
+
# @return [String]
|
1832
|
+
attr_accessor :zi_org_policy
|
1833
|
+
|
1834
|
+
#
|
1835
|
+
# Corresponds to the JSON property `ziRegionPolicy`
|
1836
|
+
# @return [String]
|
1837
|
+
attr_accessor :zi_region_policy
|
1838
|
+
|
1839
|
+
#
|
1840
|
+
# Corresponds to the JSON property `ziRegionState`
|
1841
|
+
# @return [String]
|
1842
|
+
attr_accessor :zi_region_state
|
1843
|
+
|
1844
|
+
# Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
|
1845
|
+
# for setting ZI expectations as per go/zicy-publish-physical-location.
|
1846
|
+
# Corresponds to the JSON property `zoneIsolation`
|
1847
|
+
# @return [String]
|
1848
|
+
attr_accessor :zone_isolation
|
1849
|
+
|
1850
|
+
# Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
|
1851
|
+
# expectations as per go/zicy-publish-physical-location.
|
1852
|
+
# Corresponds to the JSON property `zoneSeparation`
|
1853
|
+
# @return [String]
|
1854
|
+
attr_accessor :zone_separation
|
1855
|
+
|
1856
|
+
#
|
1857
|
+
# Corresponds to the JSON property `zsOrgPolicy`
|
1858
|
+
# @return [String]
|
1859
|
+
attr_accessor :zs_org_policy
|
1860
|
+
|
1861
|
+
#
|
1862
|
+
# Corresponds to the JSON property `zsRegionState`
|
1863
|
+
# @return [String]
|
1864
|
+
attr_accessor :zs_region_state
|
1865
|
+
|
1866
|
+
def initialize(**args)
|
1867
|
+
update!(**args)
|
1868
|
+
end
|
1869
|
+
|
1870
|
+
# Update properties of this object
|
1871
|
+
def update!(**args)
|
1872
|
+
@requirement_override = args[:requirement_override] if args.key?(:requirement_override)
|
1873
|
+
@zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
|
1874
|
+
@zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
|
1875
|
+
@zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
|
1876
|
+
@zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
|
1877
|
+
@zone_separation = args[:zone_separation] if args.key?(:zone_separation)
|
1878
|
+
@zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
|
1879
|
+
@zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
|
1880
|
+
end
|
1881
|
+
end
|
1882
|
+
|
1661
1883
|
# Response for ListClusters.
|
1662
1884
|
class ListClustersResponse
|
1663
1885
|
include Google::Apis::Core::Hashable
|
@@ -1835,6 +2057,82 @@ module Google
|
|
1835
2057
|
end
|
1836
2058
|
end
|
1837
2059
|
|
2060
|
+
#
|
2061
|
+
class LocationAssignment
|
2062
|
+
include Google::Apis::Core::Hashable
|
2063
|
+
|
2064
|
+
#
|
2065
|
+
# Corresponds to the JSON property `location`
|
2066
|
+
# @return [String]
|
2067
|
+
attr_accessor :location
|
2068
|
+
|
2069
|
+
#
|
2070
|
+
# Corresponds to the JSON property `locationType`
|
2071
|
+
# @return [String]
|
2072
|
+
attr_accessor :location_type
|
2073
|
+
|
2074
|
+
def initialize(**args)
|
2075
|
+
update!(**args)
|
2076
|
+
end
|
2077
|
+
|
2078
|
+
# Update properties of this object
|
2079
|
+
def update!(**args)
|
2080
|
+
@location = args[:location] if args.key?(:location)
|
2081
|
+
@location_type = args[:location_type] if args.key?(:location_type)
|
2082
|
+
end
|
2083
|
+
end
|
2084
|
+
|
2085
|
+
#
|
2086
|
+
class LocationData
|
2087
|
+
include Google::Apis::Core::Hashable
|
2088
|
+
|
2089
|
+
# Policy ID that identified data placement in Blobstore as per go/blobstore-user-
|
2090
|
+
# guide#data-metadata-placement-and-failure-domains
|
2091
|
+
# Corresponds to the JSON property `blobstoreLocation`
|
2092
|
+
# @return [Google::Apis::RedisV1::BlobstoreLocation]
|
2093
|
+
attr_accessor :blobstore_location
|
2094
|
+
|
2095
|
+
#
|
2096
|
+
# Corresponds to the JSON property `childAssetLocation`
|
2097
|
+
# @return [Google::Apis::RedisV1::CloudAssetComposition]
|
2098
|
+
attr_accessor :child_asset_location
|
2099
|
+
|
2100
|
+
#
|
2101
|
+
# Corresponds to the JSON property `directLocation`
|
2102
|
+
# @return [Google::Apis::RedisV1::DirectLocationAssignment]
|
2103
|
+
attr_accessor :direct_location
|
2104
|
+
|
2105
|
+
#
|
2106
|
+
# Corresponds to the JSON property `gcpProjectProxy`
|
2107
|
+
# @return [Google::Apis::RedisV1::TenantProjectProxy]
|
2108
|
+
attr_accessor :gcp_project_proxy
|
2109
|
+
|
2110
|
+
# Message describing that the location of the customer resource is tied to
|
2111
|
+
# placer allocations
|
2112
|
+
# Corresponds to the JSON property `placerLocation`
|
2113
|
+
# @return [Google::Apis::RedisV1::PlacerLocation]
|
2114
|
+
attr_accessor :placer_location
|
2115
|
+
|
2116
|
+
#
|
2117
|
+
# Corresponds to the JSON property `spannerLocation`
|
2118
|
+
# @return [Google::Apis::RedisV1::SpannerLocation]
|
2119
|
+
attr_accessor :spanner_location
|
2120
|
+
|
2121
|
+
def initialize(**args)
|
2122
|
+
update!(**args)
|
2123
|
+
end
|
2124
|
+
|
2125
|
+
# Update properties of this object
|
2126
|
+
def update!(**args)
|
2127
|
+
@blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
|
2128
|
+
@child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
|
2129
|
+
@direct_location = args[:direct_location] if args.key?(:direct_location)
|
2130
|
+
@gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
|
2131
|
+
@placer_location = args[:placer_location] if args.key?(:placer_location)
|
2132
|
+
@spanner_location = args[:spanner_location] if args.key?(:spanner_location)
|
2133
|
+
end
|
2134
|
+
end
|
2135
|
+
|
1838
2136
|
# MachineConfiguration describes the configuration of a machine specific to
|
1839
2137
|
# Database Resource.
|
1840
2138
|
class MachineConfiguration
|
@@ -2282,6 +2580,27 @@ module Google
|
|
2282
2580
|
end
|
2283
2581
|
end
|
2284
2582
|
|
2583
|
+
# Message describing that the location of the customer resource is tied to
|
2584
|
+
# placer allocations
|
2585
|
+
class PlacerLocation
|
2586
|
+
include Google::Apis::Core::Hashable
|
2587
|
+
|
2588
|
+
# Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
|
2589
|
+
# root/my-dir")
|
2590
|
+
# Corresponds to the JSON property `placerConfig`
|
2591
|
+
# @return [String]
|
2592
|
+
attr_accessor :placer_config
|
2593
|
+
|
2594
|
+
def initialize(**args)
|
2595
|
+
update!(**args)
|
2596
|
+
end
|
2597
|
+
|
2598
|
+
# Update properties of this object
|
2599
|
+
def update!(**args)
|
2600
|
+
@placer_config = args[:placer_config] if args.key?(:placer_config)
|
2601
|
+
end
|
2602
|
+
end
|
2603
|
+
|
2285
2604
|
# Product specification for Condor resources.
|
2286
2605
|
class Product
|
2287
2606
|
include Google::Apis::Core::Hashable
|
@@ -2435,6 +2754,33 @@ module Google
|
|
2435
2754
|
end
|
2436
2755
|
end
|
2437
2756
|
|
2757
|
+
# To be used for specifying the intended distribution of regional compute.
|
2758
|
+
# googleapis.com/InstanceGroupManager instances
|
2759
|
+
class RegionalMigDistributionPolicy
|
2760
|
+
include Google::Apis::Core::Hashable
|
2761
|
+
|
2762
|
+
# The shape in which the group converges around distribution of resources.
|
2763
|
+
# Instance of proto2 enum
|
2764
|
+
# Corresponds to the JSON property `targetShape`
|
2765
|
+
# @return [Fixnum]
|
2766
|
+
attr_accessor :target_shape
|
2767
|
+
|
2768
|
+
# Cloud zones used by regional MIG to create instances.
|
2769
|
+
# Corresponds to the JSON property `zones`
|
2770
|
+
# @return [Array<Google::Apis::RedisV1::ZoneConfiguration>]
|
2771
|
+
attr_accessor :zones
|
2772
|
+
|
2773
|
+
def initialize(**args)
|
2774
|
+
update!(**args)
|
2775
|
+
end
|
2776
|
+
|
2777
|
+
# Update properties of this object
|
2778
|
+
def update!(**args)
|
2779
|
+
@target_shape = args[:target_shape] if args.key?(:target_shape)
|
2780
|
+
@zones = args[:zones] if args.key?(:zones)
|
2781
|
+
end
|
2782
|
+
end
|
2783
|
+
|
2438
2784
|
# Details of the remote cluster associated with this cluster in a cross cluster
|
2439
2785
|
# replication setup.
|
2440
2786
|
class RemoteCluster
|
@@ -2462,6 +2808,31 @@ module Google
|
|
2462
2808
|
end
|
2463
2809
|
end
|
2464
2810
|
|
2811
|
+
#
|
2812
|
+
class RequirementOverride
|
2813
|
+
include Google::Apis::Core::Hashable
|
2814
|
+
|
2815
|
+
#
|
2816
|
+
# Corresponds to the JSON property `ziOverride`
|
2817
|
+
# @return [String]
|
2818
|
+
attr_accessor :zi_override
|
2819
|
+
|
2820
|
+
#
|
2821
|
+
# Corresponds to the JSON property `zsOverride`
|
2822
|
+
# @return [String]
|
2823
|
+
attr_accessor :zs_override
|
2824
|
+
|
2825
|
+
def initialize(**args)
|
2826
|
+
update!(**args)
|
2827
|
+
end
|
2828
|
+
|
2829
|
+
# Update properties of this object
|
2830
|
+
def update!(**args)
|
2831
|
+
@zi_override = args[:zi_override] if args.key?(:zi_override)
|
2832
|
+
@zs_override = args[:zs_override] if args.key?(:zs_override)
|
2833
|
+
end
|
2834
|
+
end
|
2835
|
+
|
2465
2836
|
# Request for rescheduling a cluster maintenance.
|
2466
2837
|
class RescheduleClusterMaintenanceRequest
|
2467
2838
|
include Google::Apis::Core::Hashable
|
@@ -2549,6 +2920,32 @@ module Google
|
|
2549
2920
|
end
|
2550
2921
|
end
|
2551
2922
|
|
2923
|
+
#
|
2924
|
+
class SpannerLocation
|
2925
|
+
include Google::Apis::Core::Hashable
|
2926
|
+
|
2927
|
+
# Set of backups used by the resource with name in the same format as what is
|
2928
|
+
# available at http://table/spanner_automon.backup_metadata
|
2929
|
+
# Corresponds to the JSON property `backupName`
|
2930
|
+
# @return [Array<String>]
|
2931
|
+
attr_accessor :backup_name
|
2932
|
+
|
2933
|
+
# Set of databases used by the resource in format /span//
|
2934
|
+
# Corresponds to the JSON property `dbName`
|
2935
|
+
# @return [Array<String>]
|
2936
|
+
attr_accessor :db_name
|
2937
|
+
|
2938
|
+
def initialize(**args)
|
2939
|
+
update!(**args)
|
2940
|
+
end
|
2941
|
+
|
2942
|
+
# Update properties of this object
|
2943
|
+
def update!(**args)
|
2944
|
+
@backup_name = args[:backup_name] if args.key?(:backup_name)
|
2945
|
+
@db_name = args[:db_name] if args.key?(:db_name)
|
2946
|
+
end
|
2947
|
+
end
|
2948
|
+
|
2552
2949
|
# Represents additional information about the state of the cluster.
|
2553
2950
|
class StateInfo
|
2554
2951
|
include Google::Apis::Core::Hashable
|
@@ -2607,6 +3004,46 @@ module Google
|
|
2607
3004
|
end
|
2608
3005
|
end
|
2609
3006
|
|
3007
|
+
# Message type for storing tags. Tags provide a way to create annotations for
|
3008
|
+
# resources, and in some cases conditionally allow or deny policies based on
|
3009
|
+
# whether a resource has a specific tag.
|
3010
|
+
class Tags
|
3011
|
+
include Google::Apis::Core::Hashable
|
3012
|
+
|
3013
|
+
# The Tag key/value mappings.
|
3014
|
+
# Corresponds to the JSON property `tags`
|
3015
|
+
# @return [Hash<String,String>]
|
3016
|
+
attr_accessor :tags
|
3017
|
+
|
3018
|
+
def initialize(**args)
|
3019
|
+
update!(**args)
|
3020
|
+
end
|
3021
|
+
|
3022
|
+
# Update properties of this object
|
3023
|
+
def update!(**args)
|
3024
|
+
@tags = args[:tags] if args.key?(:tags)
|
3025
|
+
end
|
3026
|
+
end
|
3027
|
+
|
3028
|
+
#
|
3029
|
+
class TenantProjectProxy
|
3030
|
+
include Google::Apis::Core::Hashable
|
3031
|
+
|
3032
|
+
#
|
3033
|
+
# Corresponds to the JSON property `projectNumbers`
|
3034
|
+
# @return [Array<String>]
|
3035
|
+
attr_accessor :project_numbers
|
3036
|
+
|
3037
|
+
def initialize(**args)
|
3038
|
+
update!(**args)
|
3039
|
+
end
|
3040
|
+
|
3041
|
+
# Update properties of this object
|
3042
|
+
def update!(**args)
|
3043
|
+
@project_numbers = args[:project_numbers] if args.key?(:project_numbers)
|
3044
|
+
end
|
3045
|
+
end
|
3046
|
+
|
2610
3047
|
# Represents a time of day. The date and time zone are either not significant or
|
2611
3048
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
2612
3049
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
@@ -2832,6 +3269,25 @@ module Google
|
|
2832
3269
|
end
|
2833
3270
|
end
|
2834
3271
|
|
3272
|
+
#
|
3273
|
+
class ZoneConfiguration
|
3274
|
+
include Google::Apis::Core::Hashable
|
3275
|
+
|
3276
|
+
#
|
3277
|
+
# Corresponds to the JSON property `zone`
|
3278
|
+
# @return [String]
|
3279
|
+
attr_accessor :zone
|
3280
|
+
|
3281
|
+
def initialize(**args)
|
3282
|
+
update!(**args)
|
3283
|
+
end
|
3284
|
+
|
3285
|
+
# Update properties of this object
|
3286
|
+
def update!(**args)
|
3287
|
+
@zone = args[:zone] if args.key?(:zone)
|
3288
|
+
end
|
3289
|
+
end
|
3290
|
+
|
2835
3291
|
# Zone distribution config for allocation of cluster resources.
|
2836
3292
|
class ZoneDistributionConfig
|
2837
3293
|
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.60.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 = "20240904"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +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
|
+
|
31
37
|
class AvailabilityConfiguration
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -46,6 +52,12 @@ module Google
|
|
46
52
|
include Google::Apis::Core::JsonObjectSupport
|
47
53
|
end
|
48
54
|
|
55
|
+
class BlobstoreLocation
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
49
61
|
class CertChain
|
50
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
63
|
|
@@ -58,6 +70,18 @@ module Google
|
|
58
70
|
include Google::Apis::Core::JsonObjectSupport
|
59
71
|
end
|
60
72
|
|
73
|
+
class CloudAsset
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
79
|
+
class CloudAssetComposition
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
61
85
|
class Cluster
|
62
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
87
|
|
@@ -136,6 +160,12 @@ module Google
|
|
136
160
|
include Google::Apis::Core::JsonObjectSupport
|
137
161
|
end
|
138
162
|
|
163
|
+
class DirectLocationAssignment
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
139
169
|
class DiscoveryEndpoint
|
140
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
171
|
|
@@ -160,6 +190,12 @@ module Google
|
|
160
190
|
include Google::Apis::Core::JsonObjectSupport
|
161
191
|
end
|
162
192
|
|
193
|
+
class ExtraParameter
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
163
199
|
class FailoverInstanceRequest
|
164
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
201
|
|
@@ -226,6 +262,12 @@ module Google
|
|
226
262
|
include Google::Apis::Core::JsonObjectSupport
|
227
263
|
end
|
228
264
|
|
265
|
+
class IsolationExpectations
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
229
271
|
class ListClustersResponse
|
230
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
273
|
|
@@ -256,6 +298,18 @@ module Google
|
|
256
298
|
include Google::Apis::Core::JsonObjectSupport
|
257
299
|
end
|
258
300
|
|
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
|
+
|
259
313
|
class MachineConfiguration
|
260
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
315
|
|
@@ -328,6 +382,12 @@ module Google
|
|
328
382
|
include Google::Apis::Core::JsonObjectSupport
|
329
383
|
end
|
330
384
|
|
385
|
+
class PlacerLocation
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
331
391
|
class Product
|
332
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
393
|
|
@@ -358,12 +418,24 @@ module Google
|
|
358
418
|
include Google::Apis::Core::JsonObjectSupport
|
359
419
|
end
|
360
420
|
|
421
|
+
class RegionalMigDistributionPolicy
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
361
427
|
class RemoteCluster
|
362
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
429
|
|
364
430
|
include Google::Apis::Core::JsonObjectSupport
|
365
431
|
end
|
366
432
|
|
433
|
+
class RequirementOverride
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
367
439
|
class RescheduleClusterMaintenanceRequest
|
368
440
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
441
|
|
@@ -382,6 +454,12 @@ module Google
|
|
382
454
|
include Google::Apis::Core::JsonObjectSupport
|
383
455
|
end
|
384
456
|
|
457
|
+
class SpannerLocation
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
|
+
|
460
|
+
include Google::Apis::Core::JsonObjectSupport
|
461
|
+
end
|
462
|
+
|
385
463
|
class StateInfo
|
386
464
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
465
|
|
@@ -394,6 +472,18 @@ module Google
|
|
394
472
|
include Google::Apis::Core::JsonObjectSupport
|
395
473
|
end
|
396
474
|
|
475
|
+
class Tags
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
|
+
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
479
|
+
end
|
480
|
+
|
481
|
+
class TenantProjectProxy
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
397
487
|
class TimeOfDay
|
398
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
489
|
|
@@ -436,6 +526,12 @@ module Google
|
|
436
526
|
include Google::Apis::Core::JsonObjectSupport
|
437
527
|
end
|
438
528
|
|
529
|
+
class ZoneConfiguration
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
|
+
|
532
|
+
include Google::Apis::Core::JsonObjectSupport
|
533
|
+
end
|
534
|
+
|
439
535
|
class ZoneDistributionConfig
|
440
536
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
537
|
|
@@ -449,6 +545,21 @@ module Google
|
|
449
545
|
end
|
450
546
|
end
|
451
547
|
|
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
|
+
|
452
563
|
class AvailabilityConfiguration
|
453
564
|
# @private
|
454
565
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -481,6 +592,13 @@ module Google
|
|
481
592
|
end
|
482
593
|
end
|
483
594
|
|
595
|
+
class BlobstoreLocation
|
596
|
+
# @private
|
597
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
598
|
+
collection :policy_id, as: 'policyId'
|
599
|
+
end
|
600
|
+
end
|
601
|
+
|
484
602
|
class CertChain
|
485
603
|
# @private
|
486
604
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -497,6 +615,22 @@ module Google
|
|
497
615
|
end
|
498
616
|
end
|
499
617
|
|
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
|
+
|
500
634
|
class Cluster
|
501
635
|
# @private
|
502
636
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -681,6 +815,8 @@ module Google
|
|
681
815
|
|
682
816
|
property :resource_container, as: 'resourceContainer'
|
683
817
|
property :resource_name, as: 'resourceName'
|
818
|
+
property :tags_set, as: 'tagsSet', class: Google::Apis::RedisV1::Tags, decorator: Google::Apis::RedisV1::Tags::Representation
|
819
|
+
|
684
820
|
property :updation_time, as: 'updationTime'
|
685
821
|
property :user_label_set, as: 'userLabelSet', class: Google::Apis::RedisV1::UserLabels, decorator: Google::Apis::RedisV1::UserLabels::Representation
|
686
822
|
|
@@ -701,6 +837,14 @@ module Google
|
|
701
837
|
end
|
702
838
|
end
|
703
839
|
|
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
|
+
|
704
848
|
class DiscoveryEndpoint
|
705
849
|
# @private
|
706
850
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -733,6 +877,14 @@ module Google
|
|
733
877
|
end
|
734
878
|
end
|
735
879
|
|
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
|
+
|
736
888
|
class FailoverInstanceRequest
|
737
889
|
# @private
|
738
890
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -867,6 +1019,21 @@ module Google
|
|
867
1019
|
end
|
868
1020
|
end
|
869
1021
|
|
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
|
+
|
870
1037
|
class ListClustersResponse
|
871
1038
|
# @private
|
872
1039
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -916,6 +1083,32 @@ module Google
|
|
916
1083
|
end
|
917
1084
|
end
|
918
1085
|
|
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
|
+
|
919
1112
|
class MachineConfiguration
|
920
1113
|
# @private
|
921
1114
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1035,6 +1228,13 @@ module Google
|
|
1035
1228
|
end
|
1036
1229
|
end
|
1037
1230
|
|
1231
|
+
class PlacerLocation
|
1232
|
+
# @private
|
1233
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1234
|
+
property :placer_config, as: 'placerConfig'
|
1235
|
+
end
|
1236
|
+
end
|
1237
|
+
|
1038
1238
|
class Product
|
1039
1239
|
# @private
|
1040
1240
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1078,6 +1278,15 @@ module Google
|
|
1078
1278
|
end
|
1079
1279
|
end
|
1080
1280
|
|
1281
|
+
class RegionalMigDistributionPolicy
|
1282
|
+
# @private
|
1283
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1284
|
+
property :target_shape, as: 'targetShape'
|
1285
|
+
collection :zones, as: 'zones', class: Google::Apis::RedisV1::ZoneConfiguration, decorator: Google::Apis::RedisV1::ZoneConfiguration::Representation
|
1286
|
+
|
1287
|
+
end
|
1288
|
+
end
|
1289
|
+
|
1081
1290
|
class RemoteCluster
|
1082
1291
|
# @private
|
1083
1292
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1086,6 +1295,14 @@ module Google
|
|
1086
1295
|
end
|
1087
1296
|
end
|
1088
1297
|
|
1298
|
+
class RequirementOverride
|
1299
|
+
# @private
|
1300
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1301
|
+
property :zi_override, as: 'ziOverride'
|
1302
|
+
property :zs_override, as: 'zsOverride'
|
1303
|
+
end
|
1304
|
+
end
|
1305
|
+
|
1089
1306
|
class RescheduleClusterMaintenanceRequest
|
1090
1307
|
# @private
|
1091
1308
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1111,6 +1328,14 @@ module Google
|
|
1111
1328
|
end
|
1112
1329
|
end
|
1113
1330
|
|
1331
|
+
class SpannerLocation
|
1332
|
+
# @private
|
1333
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1334
|
+
collection :backup_name, as: 'backupName'
|
1335
|
+
collection :db_name, as: 'dbName'
|
1336
|
+
end
|
1337
|
+
end
|
1338
|
+
|
1114
1339
|
class StateInfo
|
1115
1340
|
# @private
|
1116
1341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1128,6 +1353,20 @@ module Google
|
|
1128
1353
|
end
|
1129
1354
|
end
|
1130
1355
|
|
1356
|
+
class Tags
|
1357
|
+
# @private
|
1358
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1359
|
+
hash :tags, as: 'tags'
|
1360
|
+
end
|
1361
|
+
end
|
1362
|
+
|
1363
|
+
class TenantProjectProxy
|
1364
|
+
# @private
|
1365
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1366
|
+
collection :project_numbers, as: 'projectNumbers'
|
1367
|
+
end
|
1368
|
+
end
|
1369
|
+
|
1131
1370
|
class TimeOfDay
|
1132
1371
|
# @private
|
1133
1372
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1191,6 +1430,13 @@ module Google
|
|
1191
1430
|
end
|
1192
1431
|
end
|
1193
1432
|
|
1433
|
+
class ZoneConfiguration
|
1434
|
+
# @private
|
1435
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1436
|
+
property :zone, as: 'zone'
|
1437
|
+
end
|
1438
|
+
end
|
1439
|
+
|
1194
1440
|
class ZoneDistributionConfig
|
1195
1441
|
# @private
|
1196
1442
|
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.60.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-09-
|
11
|
+
date: 2024-09-15 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.60.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: []
|