google-apis-redis_v1beta1 0.83.0 → 0.85.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4867cedf375cc9427909c748ec5d960fceb5077f8212413ae74a40ca61bf1180
|
|
4
|
+
data.tar.gz: b3c686cac332aa744fc4bc80de3b3f3a8ea9f43a53106a4b3daeb43e5b8c4a02
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 662c114bb6228cb4fd3308e3fb5b92e0dccacd0bc081563e979d8602d96249bd3a08a4b545857ab12049b0f9b93be98a66fe4d7a3bf027c9ef543667f30daff4
|
|
7
|
+
data.tar.gz: 4f41d338725e0d08a6b6909473a181c7c5f5161325ecf312bb42d8892faaeb765f16b408f5f3e1c6252f53cc065ce61a1dfe39bb9966725bfdc4e1ab0fb498d9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-redis_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.85.0 (2026-07-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260720
|
|
6
|
+
|
|
7
|
+
### v0.84.0 (2026-07-12)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260707
|
|
10
|
+
|
|
3
11
|
### v0.83.0 (2026-07-05)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260616
|
|
@@ -45,6 +45,16 @@ module Google
|
|
|
45
45
|
class AclPolicy
|
|
46
46
|
include Google::Apis::Core::Hashable
|
|
47
47
|
|
|
48
|
+
# Output only. The ACL policy attachment status for each attached cluster.
|
|
49
|
+
# Corresponds to the JSON property `clusterAclPolicyAttachments`
|
|
50
|
+
# @return [Array<Google::Apis::RedisV1beta1::ClusterAclPolicyAttachment>]
|
|
51
|
+
attr_accessor :cluster_acl_policy_attachments
|
|
52
|
+
|
|
53
|
+
# Output only. The timestamp that the ACL policy was created.
|
|
54
|
+
# Corresponds to the JSON property `createTime`
|
|
55
|
+
# @return [String]
|
|
56
|
+
attr_accessor :create_time
|
|
57
|
+
|
|
48
58
|
# Output only. Etag for the ACL policy.
|
|
49
59
|
# Corresponds to the JSON property `etag`
|
|
50
60
|
# @return [String]
|
|
@@ -65,6 +75,11 @@ module Google
|
|
|
65
75
|
# @return [String]
|
|
66
76
|
attr_accessor :state
|
|
67
77
|
|
|
78
|
+
# Output only. The timestamp that the ACL policy was last updated.
|
|
79
|
+
# Corresponds to the JSON property `updateTime`
|
|
80
|
+
# @return [String]
|
|
81
|
+
attr_accessor :update_time
|
|
82
|
+
|
|
68
83
|
# Output only. Deprecated: Used in drift resolution.
|
|
69
84
|
# Corresponds to the JSON property `version`
|
|
70
85
|
# @return [Fixnum]
|
|
@@ -76,14 +91,143 @@ module Google
|
|
|
76
91
|
|
|
77
92
|
# Update properties of this object
|
|
78
93
|
def update!(**args)
|
|
94
|
+
@cluster_acl_policy_attachments = args[:cluster_acl_policy_attachments] if args.key?(:cluster_acl_policy_attachments)
|
|
95
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
79
96
|
@etag = args[:etag] if args.key?(:etag)
|
|
80
97
|
@name = args[:name] if args.key?(:name)
|
|
81
98
|
@rules = args[:rules] if args.key?(:rules)
|
|
82
99
|
@state = args[:state] if args.key?(:state)
|
|
100
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
83
101
|
@version = args[:version] if args.key?(:version)
|
|
84
102
|
end
|
|
85
103
|
end
|
|
86
104
|
|
|
105
|
+
# Details of the applied ACL policy.
|
|
106
|
+
class AclPolicyInfo
|
|
107
|
+
include Google::Apis::Core::Hashable
|
|
108
|
+
|
|
109
|
+
# Output only. A list of status for various revisions of this ACL policy on the
|
|
110
|
+
# cluster.
|
|
111
|
+
# Corresponds to the JSON property `aclPolicyRevisionStatuses`
|
|
112
|
+
# @return [Array<Google::Apis::RedisV1beta1::AclPolicyRevisionStatus>]
|
|
113
|
+
attr_accessor :acl_policy_revision_statuses
|
|
114
|
+
|
|
115
|
+
# Output only. The resource name of the applied ACL policy. Format: "projects/`
|
|
116
|
+
# project`/locations/`location`/aclPolicies/`acl_policy`"
|
|
117
|
+
# Corresponds to the JSON property `appliedAclPolicy`
|
|
118
|
+
# @return [String]
|
|
119
|
+
attr_accessor :applied_acl_policy
|
|
120
|
+
|
|
121
|
+
# Output only. The resource name of the applied ACL policy revision. Format: "
|
|
122
|
+
# projects/`project`/locations/`location`/aclPolicies/`acl_policy`/revisions/`
|
|
123
|
+
# revision`"
|
|
124
|
+
# Corresponds to the JSON property `appliedAclPolicyRevision`
|
|
125
|
+
# @return [String]
|
|
126
|
+
attr_accessor :applied_acl_policy_revision
|
|
127
|
+
|
|
128
|
+
# Output only. The revision number of the applied ACL policy revision.
|
|
129
|
+
# Corresponds to the JSON property `appliedAclPolicyRevisionNumber`
|
|
130
|
+
# @return [Fixnum]
|
|
131
|
+
attr_accessor :applied_acl_policy_revision_number
|
|
132
|
+
|
|
133
|
+
def initialize(**args)
|
|
134
|
+
update!(**args)
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
# Update properties of this object
|
|
138
|
+
def update!(**args)
|
|
139
|
+
@acl_policy_revision_statuses = args[:acl_policy_revision_statuses] if args.key?(:acl_policy_revision_statuses)
|
|
140
|
+
@applied_acl_policy = args[:applied_acl_policy] if args.key?(:applied_acl_policy)
|
|
141
|
+
@applied_acl_policy_revision = args[:applied_acl_policy_revision] if args.key?(:applied_acl_policy_revision)
|
|
142
|
+
@applied_acl_policy_revision_number = args[:applied_acl_policy_revision_number] if args.key?(:applied_acl_policy_revision_number)
|
|
143
|
+
end
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
# The ACL policy revision resource.
|
|
147
|
+
class AclPolicyRevision
|
|
148
|
+
include Google::Apis::Core::Hashable
|
|
149
|
+
|
|
150
|
+
# Output only. A list of clusters that are attached to this ACL policy revision.
|
|
151
|
+
# Corresponds to the JSON property `attachedClusters`
|
|
152
|
+
# @return [Array<String>]
|
|
153
|
+
attr_accessor :attached_clusters
|
|
154
|
+
|
|
155
|
+
# Output only. The timestamp that the revision was created.
|
|
156
|
+
# Corresponds to the JSON property `createTime`
|
|
157
|
+
# @return [String]
|
|
158
|
+
attr_accessor :create_time
|
|
159
|
+
|
|
160
|
+
# Identifier. The name of the ACL policy revision. Format: "projects/`project`/
|
|
161
|
+
# locations/`location`/aclPolicies/`acl_policy`/revisions/`revision`"
|
|
162
|
+
# Corresponds to the JSON property `name`
|
|
163
|
+
# @return [String]
|
|
164
|
+
attr_accessor :name
|
|
165
|
+
|
|
166
|
+
# Output only. The revision number of the ACL policy revision.
|
|
167
|
+
# Corresponds to the JSON property `revisionNumber`
|
|
168
|
+
# @return [Fixnum]
|
|
169
|
+
attr_accessor :revision_number
|
|
170
|
+
|
|
171
|
+
# The ACL policy resource.
|
|
172
|
+
# Corresponds to the JSON property `snapshot`
|
|
173
|
+
# @return [Google::Apis::RedisV1beta1::AclPolicy]
|
|
174
|
+
attr_accessor :snapshot
|
|
175
|
+
|
|
176
|
+
def initialize(**args)
|
|
177
|
+
update!(**args)
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
# Update properties of this object
|
|
181
|
+
def update!(**args)
|
|
182
|
+
@attached_clusters = args[:attached_clusters] if args.key?(:attached_clusters)
|
|
183
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
184
|
+
@name = args[:name] if args.key?(:name)
|
|
185
|
+
@revision_number = args[:revision_number] if args.key?(:revision_number)
|
|
186
|
+
@snapshot = args[:snapshot] if args.key?(:snapshot)
|
|
187
|
+
end
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
# AclPolicyRevisionStatus stores the per-revision status for an attached cluster.
|
|
191
|
+
class AclPolicyRevisionStatus
|
|
192
|
+
include Google::Apis::Core::Hashable
|
|
193
|
+
|
|
194
|
+
# Output only. The resource name of the ACL policy revision this status refers
|
|
195
|
+
# to. Format: "projects/`project`/locations/`location`/aclPolicies/`acl_policy`/
|
|
196
|
+
# revisions/`revision`"
|
|
197
|
+
# Corresponds to the JSON property `aclPolicyRevision`
|
|
198
|
+
# @return [String]
|
|
199
|
+
attr_accessor :acl_policy_revision
|
|
200
|
+
|
|
201
|
+
# Output only. The revision number of the ACL policy revision this status refers
|
|
202
|
+
# to.
|
|
203
|
+
# Corresponds to the JSON property `aclPolicyRevisionNumber`
|
|
204
|
+
# @return [Fixnum]
|
|
205
|
+
attr_accessor :acl_policy_revision_number
|
|
206
|
+
|
|
207
|
+
# Output only. Human-readable error message providing more details for FAILED
|
|
208
|
+
# states.
|
|
209
|
+
# Corresponds to the JSON property `errorMessage`
|
|
210
|
+
# @return [String]
|
|
211
|
+
attr_accessor :error_message
|
|
212
|
+
|
|
213
|
+
# Output only. AclPolicyRevision state.
|
|
214
|
+
# Corresponds to the JSON property `state`
|
|
215
|
+
# @return [String]
|
|
216
|
+
attr_accessor :state
|
|
217
|
+
|
|
218
|
+
def initialize(**args)
|
|
219
|
+
update!(**args)
|
|
220
|
+
end
|
|
221
|
+
|
|
222
|
+
# Update properties of this object
|
|
223
|
+
def update!(**args)
|
|
224
|
+
@acl_policy_revision = args[:acl_policy_revision] if args.key?(:acl_policy_revision)
|
|
225
|
+
@acl_policy_revision_number = args[:acl_policy_revision_number] if args.key?(:acl_policy_revision_number)
|
|
226
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
|
227
|
+
@state = args[:state] if args.key?(:state)
|
|
228
|
+
end
|
|
229
|
+
end
|
|
230
|
+
|
|
87
231
|
# A single ACL rule which defines the policy for a user.
|
|
88
232
|
class AclRule
|
|
89
233
|
include Google::Apis::Core::Hashable
|
|
@@ -716,6 +860,11 @@ module Google
|
|
|
716
860
|
attr_accessor :acl_policy_in_sync
|
|
717
861
|
alias_method :acl_policy_in_sync?, :acl_policy_in_sync
|
|
718
862
|
|
|
863
|
+
# Details of the applied ACL policy.
|
|
864
|
+
# Corresponds to the JSON property `aclPolicyInfo`
|
|
865
|
+
# @return [Google::Apis::RedisV1beta1::AclPolicyInfo]
|
|
866
|
+
attr_accessor :acl_policy_info
|
|
867
|
+
|
|
719
868
|
# Optional. Immutable. Deprecated, do not use.
|
|
720
869
|
# Corresponds to the JSON property `allowFewerZonesDeployment`
|
|
721
870
|
# @return [Boolean]
|
|
@@ -970,6 +1119,7 @@ module Google
|
|
|
970
1119
|
def update!(**args)
|
|
971
1120
|
@acl_policy = args[:acl_policy] if args.key?(:acl_policy)
|
|
972
1121
|
@acl_policy_in_sync = args[:acl_policy_in_sync] if args.key?(:acl_policy_in_sync)
|
|
1122
|
+
@acl_policy_info = args[:acl_policy_info] if args.key?(:acl_policy_info)
|
|
973
1123
|
@allow_fewer_zones_deployment = args[:allow_fewer_zones_deployment] if args.key?(:allow_fewer_zones_deployment)
|
|
974
1124
|
@async_cluster_endpoints_deletion_enabled = args[:async_cluster_endpoints_deletion_enabled] if args.key?(:async_cluster_endpoints_deletion_enabled)
|
|
975
1125
|
@authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
|
|
@@ -1016,6 +1166,34 @@ module Google
|
|
|
1016
1166
|
end
|
|
1017
1167
|
end
|
|
1018
1168
|
|
|
1169
|
+
# ClusterAclPolicyAttachment stores the ACL policy status for an attached
|
|
1170
|
+
# cluster for the revisions successfully applied, under application or failed.
|
|
1171
|
+
class ClusterAclPolicyAttachment
|
|
1172
|
+
include Google::Apis::Core::Hashable
|
|
1173
|
+
|
|
1174
|
+
# Output only. A list of status for various revisions of this ACL policy on the
|
|
1175
|
+
# cluster.
|
|
1176
|
+
# Corresponds to the JSON property `aclPolicyRevisionStatuses`
|
|
1177
|
+
# @return [Array<Google::Apis::RedisV1beta1::AclPolicyRevisionStatus>]
|
|
1178
|
+
attr_accessor :acl_policy_revision_statuses
|
|
1179
|
+
|
|
1180
|
+
# Output only. The resource name of the attached Cluster. Format: "projects/`
|
|
1181
|
+
# project`/locations/`location`/clusters/`cluster`"
|
|
1182
|
+
# Corresponds to the JSON property `cluster`
|
|
1183
|
+
# @return [String]
|
|
1184
|
+
attr_accessor :cluster
|
|
1185
|
+
|
|
1186
|
+
def initialize(**args)
|
|
1187
|
+
update!(**args)
|
|
1188
|
+
end
|
|
1189
|
+
|
|
1190
|
+
# Update properties of this object
|
|
1191
|
+
def update!(**args)
|
|
1192
|
+
@acl_policy_revision_statuses = args[:acl_policy_revision_statuses] if args.key?(:acl_policy_revision_statuses)
|
|
1193
|
+
@cluster = args[:cluster] if args.key?(:cluster)
|
|
1194
|
+
end
|
|
1195
|
+
end
|
|
1196
|
+
|
|
1019
1197
|
# ClusterEndpoint consists of PSC connections that are created as a group in
|
|
1020
1198
|
# each VPC network for accessing the cluster. In each group, there shall be one
|
|
1021
1199
|
# connection for each service attachment in the cluster.
|
|
@@ -1548,12 +1726,13 @@ module Google
|
|
|
1548
1726
|
# Required. The type of resource this ID is identifying. Ex go/keep-sorted start
|
|
1549
1727
|
# alloydb.googleapis.com/Cluster, alloydb.googleapis.com/Instance, bigtableadmin.
|
|
1550
1728
|
# googleapis.com/Cluster, bigtableadmin.googleapis.com/Instance compute.
|
|
1551
|
-
# googleapis.com/Instance firestore.googleapis.com/Database,
|
|
1552
|
-
# com/Instance, redis.googleapis.com/
|
|
1553
|
-
#
|
|
1554
|
-
# oracledatabase.googleapis.com/
|
|
1555
|
-
#
|
|
1556
|
-
# go/keep-sorted end REQUIRED Please
|
|
1729
|
+
# googleapis.com/Instance firestore.googleapis.com/Database, memorystore.
|
|
1730
|
+
# googleapis.com/Instance, redis.googleapis.com/Instance, redis.googleapis.com/
|
|
1731
|
+
# Cluster, oracledatabase.googleapis.com/CloudExadataInfrastructure
|
|
1732
|
+
# oracledatabase.googleapis.com/CloudVmCluster oracledatabase.googleapis.com/
|
|
1733
|
+
# AutonomousDatabase spanner.googleapis.com/Instance, spanner.googleapis.com/
|
|
1734
|
+
# Database, sqladmin.googleapis.com/Instance, go/keep-sorted end REQUIRED Please
|
|
1735
|
+
# refer go/condor-common-datamodel
|
|
1557
1736
|
# Corresponds to the JSON property `resourceType`
|
|
1558
1737
|
# @return [String]
|
|
1559
1738
|
attr_accessor :resource_type
|
|
@@ -2834,6 +3013,38 @@ module Google
|
|
|
2834
3013
|
end
|
|
2835
3014
|
end
|
|
2836
3015
|
|
|
3016
|
+
# Response for `ListAclPolicyRevisions`.
|
|
3017
|
+
class ListAclPolicyRevisionsResponse
|
|
3018
|
+
include Google::Apis::Core::Hashable
|
|
3019
|
+
|
|
3020
|
+
# A list of ACL policy revisions.
|
|
3021
|
+
# Corresponds to the JSON property `aclPolicyRevisions`
|
|
3022
|
+
# @return [Array<Google::Apis::RedisV1beta1::AclPolicyRevision>]
|
|
3023
|
+
attr_accessor :acl_policy_revisions
|
|
3024
|
+
|
|
3025
|
+
# Token to retrieve the next page of results, or empty if there are no more
|
|
3026
|
+
# results in the list.
|
|
3027
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
3028
|
+
# @return [String]
|
|
3029
|
+
attr_accessor :next_page_token
|
|
3030
|
+
|
|
3031
|
+
# Unordered list. Locations that could not be reached.
|
|
3032
|
+
# Corresponds to the JSON property `unreachable`
|
|
3033
|
+
# @return [Array<String>]
|
|
3034
|
+
attr_accessor :unreachable
|
|
3035
|
+
|
|
3036
|
+
def initialize(**args)
|
|
3037
|
+
update!(**args)
|
|
3038
|
+
end
|
|
3039
|
+
|
|
3040
|
+
# Update properties of this object
|
|
3041
|
+
def update!(**args)
|
|
3042
|
+
@acl_policy_revisions = args[:acl_policy_revisions] if args.key?(:acl_policy_revisions)
|
|
3043
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3044
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3045
|
+
end
|
|
3046
|
+
end
|
|
3047
|
+
|
|
2837
3048
|
# Response message for ListAuthTokens.
|
|
2838
3049
|
class ListAuthTokensResponse
|
|
2839
3050
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module RedisV1beta1
|
|
18
18
|
# Version of the google-apis-redis_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.85.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260720"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -34,6 +34,24 @@ module Google
|
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
+
class AclPolicyInfo
|
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
|
+
|
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
class AclPolicyRevision
|
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
45
|
+
|
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
class AclPolicyRevisionStatus
|
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
|
+
|
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
53
|
+
end
|
|
54
|
+
|
|
37
55
|
class AclRule
|
|
38
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
57
|
|
|
@@ -136,6 +154,12 @@ module Google
|
|
|
136
154
|
include Google::Apis::Core::JsonObjectSupport
|
|
137
155
|
end
|
|
138
156
|
|
|
157
|
+
class ClusterAclPolicyAttachment
|
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
|
+
|
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
161
|
+
end
|
|
162
|
+
|
|
139
163
|
class ClusterEndpoint
|
|
140
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
141
165
|
|
|
@@ -370,6 +394,12 @@ module Google
|
|
|
370
394
|
include Google::Apis::Core::JsonObjectSupport
|
|
371
395
|
end
|
|
372
396
|
|
|
397
|
+
class ListAclPolicyRevisionsResponse
|
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
399
|
+
|
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
401
|
+
end
|
|
402
|
+
|
|
373
403
|
class ListAuthTokensResponse
|
|
374
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
375
405
|
|
|
@@ -704,15 +734,52 @@ module Google
|
|
|
704
734
|
class AclPolicy
|
|
705
735
|
# @private
|
|
706
736
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
737
|
+
collection :cluster_acl_policy_attachments, as: 'clusterAclPolicyAttachments', class: Google::Apis::RedisV1beta1::ClusterAclPolicyAttachment, decorator: Google::Apis::RedisV1beta1::ClusterAclPolicyAttachment::Representation
|
|
738
|
+
|
|
739
|
+
property :create_time, as: 'createTime'
|
|
707
740
|
property :etag, as: 'etag'
|
|
708
741
|
property :name, as: 'name'
|
|
709
742
|
collection :rules, as: 'rules', class: Google::Apis::RedisV1beta1::AclRule, decorator: Google::Apis::RedisV1beta1::AclRule::Representation
|
|
710
743
|
|
|
711
744
|
property :state, as: 'state'
|
|
745
|
+
property :update_time, as: 'updateTime'
|
|
712
746
|
property :version, :numeric_string => true, as: 'version'
|
|
713
747
|
end
|
|
714
748
|
end
|
|
715
749
|
|
|
750
|
+
class AclPolicyInfo
|
|
751
|
+
# @private
|
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
753
|
+
collection :acl_policy_revision_statuses, as: 'aclPolicyRevisionStatuses', class: Google::Apis::RedisV1beta1::AclPolicyRevisionStatus, decorator: Google::Apis::RedisV1beta1::AclPolicyRevisionStatus::Representation
|
|
754
|
+
|
|
755
|
+
property :applied_acl_policy, as: 'appliedAclPolicy'
|
|
756
|
+
property :applied_acl_policy_revision, as: 'appliedAclPolicyRevision'
|
|
757
|
+
property :applied_acl_policy_revision_number, :numeric_string => true, as: 'appliedAclPolicyRevisionNumber'
|
|
758
|
+
end
|
|
759
|
+
end
|
|
760
|
+
|
|
761
|
+
class AclPolicyRevision
|
|
762
|
+
# @private
|
|
763
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
764
|
+
collection :attached_clusters, as: 'attachedClusters'
|
|
765
|
+
property :create_time, as: 'createTime'
|
|
766
|
+
property :name, as: 'name'
|
|
767
|
+
property :revision_number, :numeric_string => true, as: 'revisionNumber'
|
|
768
|
+
property :snapshot, as: 'snapshot', class: Google::Apis::RedisV1beta1::AclPolicy, decorator: Google::Apis::RedisV1beta1::AclPolicy::Representation
|
|
769
|
+
|
|
770
|
+
end
|
|
771
|
+
end
|
|
772
|
+
|
|
773
|
+
class AclPolicyRevisionStatus
|
|
774
|
+
# @private
|
|
775
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
776
|
+
property :acl_policy_revision, as: 'aclPolicyRevision'
|
|
777
|
+
property :acl_policy_revision_number, :numeric_string => true, as: 'aclPolicyRevisionNumber'
|
|
778
|
+
property :error_message, as: 'errorMessage'
|
|
779
|
+
property :state, as: 'state'
|
|
780
|
+
end
|
|
781
|
+
end
|
|
782
|
+
|
|
716
783
|
class AclRule
|
|
717
784
|
# @private
|
|
718
785
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -887,6 +954,8 @@ module Google
|
|
|
887
954
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
888
955
|
property :acl_policy, as: 'aclPolicy'
|
|
889
956
|
property :acl_policy_in_sync, as: 'aclPolicyInSync'
|
|
957
|
+
property :acl_policy_info, as: 'aclPolicyInfo', class: Google::Apis::RedisV1beta1::AclPolicyInfo, decorator: Google::Apis::RedisV1beta1::AclPolicyInfo::Representation
|
|
958
|
+
|
|
890
959
|
property :allow_fewer_zones_deployment, as: 'allowFewerZonesDeployment'
|
|
891
960
|
property :async_cluster_endpoints_deletion_enabled, as: 'asyncClusterEndpointsDeletionEnabled'
|
|
892
961
|
property :authorization_mode, as: 'authorizationMode'
|
|
@@ -948,6 +1017,15 @@ module Google
|
|
|
948
1017
|
end
|
|
949
1018
|
end
|
|
950
1019
|
|
|
1020
|
+
class ClusterAclPolicyAttachment
|
|
1021
|
+
# @private
|
|
1022
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1023
|
+
collection :acl_policy_revision_statuses, as: 'aclPolicyRevisionStatuses', class: Google::Apis::RedisV1beta1::AclPolicyRevisionStatus, decorator: Google::Apis::RedisV1beta1::AclPolicyRevisionStatus::Representation
|
|
1024
|
+
|
|
1025
|
+
property :cluster, as: 'cluster'
|
|
1026
|
+
end
|
|
1027
|
+
end
|
|
1028
|
+
|
|
951
1029
|
class ClusterEndpoint
|
|
952
1030
|
# @private
|
|
953
1031
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1423,6 +1501,16 @@ module Google
|
|
|
1423
1501
|
end
|
|
1424
1502
|
end
|
|
1425
1503
|
|
|
1504
|
+
class ListAclPolicyRevisionsResponse
|
|
1505
|
+
# @private
|
|
1506
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1507
|
+
collection :acl_policy_revisions, as: 'aclPolicyRevisions', class: Google::Apis::RedisV1beta1::AclPolicyRevision, decorator: Google::Apis::RedisV1beta1::AclPolicyRevision::Representation
|
|
1508
|
+
|
|
1509
|
+
property :next_page_token, as: 'nextPageToken'
|
|
1510
|
+
collection :unreachable, as: 'unreachable'
|
|
1511
|
+
end
|
|
1512
|
+
end
|
|
1513
|
+
|
|
1426
1514
|
class ListAuthTokensResponse
|
|
1427
1515
|
# @private
|
|
1428
1516
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -385,6 +385,76 @@ module Google
|
|
|
385
385
|
execute_or_queue_command(command, &block)
|
|
386
386
|
end
|
|
387
387
|
|
|
388
|
+
# Gets details of a specific ACL policy revision.
|
|
389
|
+
# @param [String] name
|
|
390
|
+
# Required. Redis ACL policy revision resource name using the form: `projects/`
|
|
391
|
+
# project_id`/locations/`location_id`/aclPolicies/`acl_policy_id`/revisions/`
|
|
392
|
+
# revision_id`` where `location_id` refers to a GCP region.
|
|
393
|
+
# @param [String] fields
|
|
394
|
+
# Selector specifying which fields to include in a partial response.
|
|
395
|
+
# @param [String] quota_user
|
|
396
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
397
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
398
|
+
# @param [Google::Apis::RequestOptions] options
|
|
399
|
+
# Request-specific options
|
|
400
|
+
#
|
|
401
|
+
# @yield [result, err] Result & error if block supplied
|
|
402
|
+
# @yieldparam result [Google::Apis::RedisV1beta1::AclPolicyRevision] parsed result object
|
|
403
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
404
|
+
#
|
|
405
|
+
# @return [Google::Apis::RedisV1beta1::AclPolicyRevision]
|
|
406
|
+
#
|
|
407
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
408
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
409
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
410
|
+
def get_project_location_acl_policy_revision(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
411
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
|
412
|
+
command.response_representation = Google::Apis::RedisV1beta1::AclPolicyRevision::Representation
|
|
413
|
+
command.response_class = Google::Apis::RedisV1beta1::AclPolicyRevision
|
|
414
|
+
command.params['name'] = name unless name.nil?
|
|
415
|
+
command.query['fields'] = fields unless fields.nil?
|
|
416
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
417
|
+
execute_or_queue_command(command, &block)
|
|
418
|
+
end
|
|
419
|
+
|
|
420
|
+
# Lists all ACL policy revisions in a given ACL policy.
|
|
421
|
+
# @param [String] parent
|
|
422
|
+
# Required. The name of the ACL policy to list revisions for. Format: "projects/`
|
|
423
|
+
# project_id`/locations/`location_id`/aclPolicies/`acl_policy_id`"
|
|
424
|
+
# @param [Fixnum] page_size
|
|
425
|
+
# Optional. The maximum number of items to return.
|
|
426
|
+
# @param [String] page_token
|
|
427
|
+
# Optional. The `next_page_token` value returned from a previous `
|
|
428
|
+
# ListAclPolicyRevisions` request, if any.
|
|
429
|
+
# @param [String] fields
|
|
430
|
+
# Selector specifying which fields to include in a partial response.
|
|
431
|
+
# @param [String] quota_user
|
|
432
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
433
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
434
|
+
# @param [Google::Apis::RequestOptions] options
|
|
435
|
+
# Request-specific options
|
|
436
|
+
#
|
|
437
|
+
# @yield [result, err] Result & error if block supplied
|
|
438
|
+
# @yieldparam result [Google::Apis::RedisV1beta1::ListAclPolicyRevisionsResponse] parsed result object
|
|
439
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
440
|
+
#
|
|
441
|
+
# @return [Google::Apis::RedisV1beta1::ListAclPolicyRevisionsResponse]
|
|
442
|
+
#
|
|
443
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
444
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
445
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
446
|
+
def list_project_location_acl_policy_revisions(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
447
|
+
command = make_simple_command(:get, 'v1beta1/{+parent}/revisions', options)
|
|
448
|
+
command.response_representation = Google::Apis::RedisV1beta1::ListAclPolicyRevisionsResponse::Representation
|
|
449
|
+
command.response_class = Google::Apis::RedisV1beta1::ListAclPolicyRevisionsResponse
|
|
450
|
+
command.params['parent'] = parent unless parent.nil?
|
|
451
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
|
452
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
453
|
+
command.query['fields'] = fields unless fields.nil?
|
|
454
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
455
|
+
execute_or_queue_command(command, &block)
|
|
456
|
+
end
|
|
457
|
+
|
|
388
458
|
# Get a backup collection.
|
|
389
459
|
# @param [String] name
|
|
390
460
|
# Required. Redis backupCollection resource name using the form: `projects/`
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-redis_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.85.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.85.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1
|
|
63
63
|
rdoc_options: []
|
|
64
64
|
require_paths:
|