google-apis-redis_v1beta1 0.78.0 → 0.80.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: 81d6a4b11100654aeba008c9eb4627b67827cadefd87356bcb452df245b50773
4
- data.tar.gz: ea203f9a69c6e00148bcccf9b24e0d044671b09331ef790061d06a9b79255818
3
+ metadata.gz: c79699f5be5880c0c02abc962862fa5c7b89094ded111e38266fac55f9e5b64b
4
+ data.tar.gz: 22b5b1eba396def943d94b95b44eb01fe8a7cb8d60172111afede4e0cee12090
5
5
  SHA512:
6
- metadata.gz: dfb45ba453d2463eeb2c751dad6d581e3ecde0c28698de8a6bb4a45ce19611f9df5a351979bf0316a1e5c7e632d9f915d3c4270086043d5192f9a9478d72b5b9
7
- data.tar.gz: 3362ad5b52980c8738c7ea6617ff69a8563e66541866ac98cb99ec363e300c7f09679f7874da5db4fea34a4b1d0206583f551408a11576c35fe5a460ee84d059
6
+ metadata.gz: 3ddad6fd68567c74524e033eb07f9c89a43b2d89d4de06fffda9883e928a8c919019f426b7af308340e4eb2f5668c534ee2a992088f4ab1e26f3dbe378d475d6
7
+ data.tar.gz: b52df1ce6aeab52a057a6c6892f0fef7e356df2990181f7a8871ed646979b44f4500ccc92536b6b5e0a1da3f040376dbe2fbd69c72584cc0f078e0ca39d733f6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.80.0 (2026-04-19)
4
+
5
+ * Regenerated from discovery document revision 20260406
6
+
7
+ ### v0.79.0 (2026-03-15)
8
+
9
+ * Regenerated from discovery document revision 20260309
10
+
3
11
  ### v0.78.0 (2026-02-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20260210
@@ -41,6 +41,155 @@ module Google
41
41
  end
42
42
  end
43
43
 
44
+ # The ACL policy resource.
45
+ class AclPolicy
46
+ include Google::Apis::Core::Hashable
47
+
48
+ # Output only. Etag for the ACL policy.
49
+ # Corresponds to the JSON property `etag`
50
+ # @return [String]
51
+ attr_accessor :etag
52
+
53
+ # Identifier. Full resource path of the ACL policy.
54
+ # Corresponds to the JSON property `name`
55
+ # @return [String]
56
+ attr_accessor :name
57
+
58
+ # Required. The ACL rules within the ACL policy.
59
+ # Corresponds to the JSON property `rules`
60
+ # @return [Array<Google::Apis::RedisV1beta1::AclRule>]
61
+ attr_accessor :rules
62
+
63
+ # Output only. The state of the ACL policy.
64
+ # Corresponds to the JSON property `state`
65
+ # @return [String]
66
+ attr_accessor :state
67
+
68
+ # Output only. The version of the ACL policy. Used in drift resolution.
69
+ # Corresponds to the JSON property `version`
70
+ # @return [Fixnum]
71
+ attr_accessor :version
72
+
73
+ def initialize(**args)
74
+ update!(**args)
75
+ end
76
+
77
+ # Update properties of this object
78
+ def update!(**args)
79
+ @etag = args[:etag] if args.key?(:etag)
80
+ @name = args[:name] if args.key?(:name)
81
+ @rules = args[:rules] if args.key?(:rules)
82
+ @state = args[:state] if args.key?(:state)
83
+ @version = args[:version] if args.key?(:version)
84
+ end
85
+ end
86
+
87
+ # A single ACL rule which defines the policy for a user.
88
+ class AclRule
89
+ include Google::Apis::Core::Hashable
90
+
91
+ # Required. The rule to be applied to the username. Ex: "on >password123 ~* +@
92
+ # all" The format of the rule is defined by Redis OSS: https://redis.io/docs/
93
+ # latest/operate/oss_and_stack/management/security/acl/
94
+ # Corresponds to the JSON property `rule`
95
+ # @return [String]
96
+ attr_accessor :rule
97
+
98
+ # Required. Specifies the IAM user or service account to be added to the ACL
99
+ # policy. This username will be directly set on the Redis OSS.
100
+ # Corresponds to the JSON property `username`
101
+ # @return [String]
102
+ attr_accessor :username
103
+
104
+ def initialize(**args)
105
+ update!(**args)
106
+ end
107
+
108
+ # Update properties of this object
109
+ def update!(**args)
110
+ @rule = args[:rule] if args.key?(:rule)
111
+ @username = args[:username] if args.key?(:username)
112
+ end
113
+ end
114
+
115
+ # Request message for AddAuthToken.
116
+ class AddAuthTokenRequest
117
+ include Google::Apis::Core::Hashable
118
+
119
+ # Auth token for the cluster.
120
+ # Corresponds to the JSON property `authToken`
121
+ # @return [Google::Apis::RedisV1beta1::AuthToken]
122
+ attr_accessor :auth_token
123
+
124
+ def initialize(**args)
125
+ update!(**args)
126
+ end
127
+
128
+ # Update properties of this object
129
+ def update!(**args)
130
+ @auth_token = args[:auth_token] if args.key?(:auth_token)
131
+ end
132
+ end
133
+
134
+ # Request message for AddTokenAuthUser.
135
+ class AddTokenAuthUserRequest
136
+ include Google::Apis::Core::Hashable
137
+
138
+ # Required. The id of the token auth user to add.
139
+ # Corresponds to the JSON property `tokenAuthUser`
140
+ # @return [String]
141
+ attr_accessor :token_auth_user
142
+
143
+ def initialize(**args)
144
+ update!(**args)
145
+ end
146
+
147
+ # Update properties of this object
148
+ def update!(**args)
149
+ @token_auth_user = args[:token_auth_user] if args.key?(:token_auth_user)
150
+ end
151
+ end
152
+
153
+ # Auth token for the cluster.
154
+ class AuthToken
155
+ include Google::Apis::Core::Hashable
156
+
157
+ # Output only. Create time of the auth token.
158
+ # Corresponds to the JSON property `createTime`
159
+ # @return [String]
160
+ attr_accessor :create_time
161
+
162
+ # Identifier. Name of the auth token. Format: projects/`project`/locations/`
163
+ # location`/clusters/`cluster`/tokenAuthUsers/`token_auth_user`/authTokens/`
164
+ # auth_token`
165
+ # Corresponds to the JSON property `name`
166
+ # @return [String]
167
+ attr_accessor :name
168
+
169
+ # Output only. State of the auth token.
170
+ # Corresponds to the JSON property `state`
171
+ # @return [String]
172
+ attr_accessor :state
173
+
174
+ # Output only. The service generated authentication token used to connect to the
175
+ # Redis cluster.
176
+ # Corresponds to the JSON property `token`
177
+ # @return [String]
178
+ attr_accessor :token
179
+
180
+ def initialize(**args)
181
+ update!(**args)
182
+ end
183
+
184
+ # Update properties of this object
185
+ def update!(**args)
186
+ @create_time = args[:create_time] if args.key?(:create_time)
187
+ @name = args[:name] if args.key?(:name)
188
+ @state = args[:state] if args.key?(:state)
189
+ @token = args[:token] if args.key?(:token)
190
+ end
191
+ end
192
+
44
193
  # The automated backup config for a cluster.
45
194
  class AutomatedBackupConfig
46
195
  include Google::Apis::Core::Hashable
@@ -234,7 +383,7 @@ module Google
234
383
  end
235
384
  end
236
385
 
237
- # Request for [BackupCluster].
386
+ # Request for `BackupCluster`.
238
387
  class BackupClusterRequest
239
388
  include Google::Apis::Core::Hashable
240
389
 
@@ -555,6 +704,19 @@ module Google
555
704
  class Cluster
556
705
  include Google::Apis::Core::Hashable
557
706
 
707
+ # Optional. The ACL policy to be applied to the cluster.
708
+ # Corresponds to the JSON property `aclPolicy`
709
+ # @return [String]
710
+ attr_accessor :acl_policy
711
+
712
+ # Optional. Output only. Indicates whether the ACL rules applied to the cluster
713
+ # are in sync with the latest ACL policy rules. This field is only applicable if
714
+ # the ACL policy is set for the cluster.
715
+ # Corresponds to the JSON property `aclPolicyInSync`
716
+ # @return [Boolean]
717
+ attr_accessor :acl_policy_in_sync
718
+ alias_method :acl_policy_in_sync?, :acl_policy_in_sync
719
+
558
720
  # Optional. Immutable. Deprecated, do not use.
559
721
  # Corresponds to the JSON property `allowFewerZonesDeployment`
560
722
  # @return [Boolean]
@@ -807,6 +969,8 @@ module Google
807
969
 
808
970
  # Update properties of this object
809
971
  def update!(**args)
972
+ @acl_policy = args[:acl_policy] if args.key?(:acl_policy)
973
+ @acl_policy_in_sync = args[:acl_policy_in_sync] if args.key?(:acl_policy_in_sync)
810
974
  @allow_fewer_zones_deployment = args[:allow_fewer_zones_deployment] if args.key?(:allow_fewer_zones_deployment)
811
975
  @async_cluster_endpoints_deletion_enabled = args[:async_cluster_endpoints_deletion_enabled] if args.key?(:async_cluster_endpoints_deletion_enabled)
812
976
  @authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
@@ -1181,7 +1345,7 @@ module Google
1181
1345
 
1182
1346
  # Database resource signal data. This is used to send signals to Condor which
1183
1347
  # are based on the DB/Instance/Fleet level configurations. These will be used to
1184
- # send signals for all inventory types. Next ID: 7
1348
+ # send signals for all inventory types. Next ID: 10
1185
1349
  # Corresponds to the JSON property `databaseResourceSignalData`
1186
1350
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceSignalData]
1187
1351
  attr_accessor :database_resource_signal_data
@@ -1216,7 +1380,7 @@ module Google
1216
1380
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceId]
1217
1381
  attr_accessor :resource_id
1218
1382
 
1219
- # Common model for database resource instance metadata. Next ID: 31
1383
+ # Common model for database resource instance metadata. Next ID: 32
1220
1384
  # Corresponds to the JSON property `resourceMetadata`
1221
1385
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceMetadata]
1222
1386
  attr_accessor :resource_metadata
@@ -1414,7 +1578,7 @@ module Google
1414
1578
  end
1415
1579
  end
1416
1580
 
1417
- # Common model for database resource instance metadata. Next ID: 31
1581
+ # Common model for database resource instance metadata. Next ID: 32
1418
1582
  class DatabaseResourceMetadata
1419
1583
  include Google::Apis::Core::Hashable
1420
1584
 
@@ -1513,6 +1677,11 @@ module Google
1513
1677
  # @return [Google::Apis::RedisV1beta1::ResourceMaintenanceInfo]
1514
1678
  attr_accessor :maintenance_info
1515
1679
 
1680
+ # Optional. The modes of the database resource.
1681
+ # Corresponds to the JSON property `modes`
1682
+ # @return [Array<String>]
1683
+ attr_accessor :modes
1684
+
1516
1685
  # DatabaseResourceId will serve as primary key for any resource ingestion event.
1517
1686
  # Corresponds to the JSON property `primaryResourceId`
1518
1687
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceId]
@@ -1603,6 +1772,7 @@ module Google
1603
1772
  @location = args[:location] if args.key?(:location)
1604
1773
  @machine_configuration = args[:machine_configuration] if args.key?(:machine_configuration)
1605
1774
  @maintenance_info = args[:maintenance_info] if args.key?(:maintenance_info)
1775
+ @modes = args[:modes] if args.key?(:modes)
1606
1776
  @primary_resource_id = args[:primary_resource_id] if args.key?(:primary_resource_id)
1607
1777
  @primary_resource_location = args[:primary_resource_location] if args.key?(:primary_resource_location)
1608
1778
  @product = args[:product] if args.key?(:product)
@@ -1692,10 +1862,15 @@ module Google
1692
1862
 
1693
1863
  # Database resource signal data. This is used to send signals to Condor which
1694
1864
  # are based on the DB/Instance/Fleet level configurations. These will be used to
1695
- # send signals for all inventory types. Next ID: 7
1865
+ # send signals for all inventory types. Next ID: 10
1696
1866
  class DatabaseResourceSignalData
1697
1867
  include Google::Apis::Core::Hashable
1698
1868
 
1869
+ # A backup run.
1870
+ # Corresponds to the JSON property `backupRun`
1871
+ # @return [Google::Apis::RedisV1beta1::BackupRun]
1872
+ attr_accessor :backup_run
1873
+
1699
1874
  # Required. Full Resource name of the source resource.
1700
1875
  # Corresponds to the JSON property `fullResourceName`
1701
1876
  # @return [String]
@@ -1706,17 +1881,28 @@ module Google
1706
1881
  # @return [String]
1707
1882
  attr_accessor :last_refresh_time
1708
1883
 
1884
+ # Resource location.
1885
+ # Corresponds to the JSON property `location`
1886
+ # @return [String]
1887
+ attr_accessor :location
1888
+
1709
1889
  # DatabaseResourceId will serve as primary key for any resource ingestion event.
1710
1890
  # Corresponds to the JSON property `resourceId`
1711
1891
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceId]
1712
1892
  attr_accessor :resource_id
1713
1893
 
1714
- # Signal data for boolean signals.
1894
+ # Deprecated: Use signal_metadata_list instead.
1715
1895
  # Corresponds to the JSON property `signalBoolValue`
1716
1896
  # @return [Boolean]
1717
1897
  attr_accessor :signal_bool_value
1718
1898
  alias_method :signal_bool_value?, :signal_bool_value
1719
1899
 
1900
+ # This will support array of OneOf signal metadata information for a given
1901
+ # signal type.
1902
+ # Corresponds to the JSON property `signalMetadataList`
1903
+ # @return [Array<Google::Apis::RedisV1beta1::SignalMetadata>]
1904
+ attr_accessor :signal_metadata_list
1905
+
1720
1906
  # Required. Output only. Signal state of the signal
1721
1907
  # Corresponds to the JSON property `signalState`
1722
1908
  # @return [String]
@@ -1733,10 +1919,13 @@ module Google
1733
1919
 
1734
1920
  # Update properties of this object
1735
1921
  def update!(**args)
1922
+ @backup_run = args[:backup_run] if args.key?(:backup_run)
1736
1923
  @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
1737
1924
  @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
1925
+ @location = args[:location] if args.key?(:location)
1738
1926
  @resource_id = args[:resource_id] if args.key?(:resource_id)
1739
1927
  @signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
1928
+ @signal_metadata_list = args[:signal_metadata_list] if args.key?(:signal_metadata_list)
1740
1929
  @signal_state = args[:signal_state] if args.key?(:signal_state)
1741
1930
  @signal_type = args[:signal_type] if args.key?(:signal_type)
1742
1931
  end
@@ -1896,7 +2085,7 @@ module Google
1896
2085
  end
1897
2086
  end
1898
2087
 
1899
- # Request for [ExportBackup].
2088
+ # Request for `ExportBackup`.
1900
2089
  class ExportBackupRequest
1901
2090
  include Google::Apis::Core::Hashable
1902
2091
 
@@ -2349,11 +2538,12 @@ module Google
2349
2538
  # @return [String]
2350
2539
  attr_accessor :read_replicas_mode
2351
2540
 
2352
- # Optional. Redis configuration parameters, according to http://redis.io/topics/
2353
- # config. Currently, the only supported parameters are: Redis version 3.2 and
2354
- # newer: * maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer:
2355
- # * activedefrag * lfu-decay-time * lfu-log-factor * maxmemory-gb Redis version
2356
- # 5.0 and newer: * stream-node-max-bytes * stream-node-max-entries
2541
+ # Optional. Redis configuration parameters, according to [Redis configuration](
2542
+ # https://redis.io/docs/latest/operate/oss_and_stack/management/config/).
2543
+ # Currently, the only supported parameters are: Redis version 3.2 and newer: *
2544
+ # maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer: *
2545
+ # activedefrag * lfu-decay-time * lfu-log-factor * maxmemory-gb Redis version 5.
2546
+ # 0 and newer: * stream-node-max-bytes * stream-node-max-entries
2357
2547
  # Corresponds to the JSON property `redisConfigs`
2358
2548
  # @return [Hash<String,String>]
2359
2549
  attr_accessor :redis_configs
@@ -2565,7 +2755,73 @@ module Google
2565
2755
  end
2566
2756
  end
2567
2757
 
2568
- # Response for [ListBackupCollections].
2758
+ # Response for `ListAclPolicies`.
2759
+ class ListAclPoliciesResponse
2760
+ include Google::Apis::Core::Hashable
2761
+
2762
+ # A list of ACL policies in the project in the specified location, or across all
2763
+ # locations. If the `location_id` in the parent field of the request is "-", all
2764
+ # regions available to the project are queried, and the results aggregated.
2765
+ # Corresponds to the JSON property `aclPolicies`
2766
+ # @return [Array<Google::Apis::RedisV1beta1::AclPolicy>]
2767
+ attr_accessor :acl_policies
2768
+
2769
+ # Token to retrieve the next page of results, or empty if there are no more
2770
+ # results in the list.
2771
+ # Corresponds to the JSON property `nextPageToken`
2772
+ # @return [String]
2773
+ attr_accessor :next_page_token
2774
+
2775
+ # Locations that could not be reached.
2776
+ # Corresponds to the JSON property `unreachable`
2777
+ # @return [Array<String>]
2778
+ attr_accessor :unreachable
2779
+
2780
+ def initialize(**args)
2781
+ update!(**args)
2782
+ end
2783
+
2784
+ # Update properties of this object
2785
+ def update!(**args)
2786
+ @acl_policies = args[:acl_policies] if args.key?(:acl_policies)
2787
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2788
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2789
+ end
2790
+ end
2791
+
2792
+ # Response message for ListAuthTokens.
2793
+ class ListAuthTokensResponse
2794
+ include Google::Apis::Core::Hashable
2795
+
2796
+ # A list of auth tokens in the project.
2797
+ # Corresponds to the JSON property `authTokens`
2798
+ # @return [Array<Google::Apis::RedisV1beta1::AuthToken>]
2799
+ attr_accessor :auth_tokens
2800
+
2801
+ # Token to retrieve the next page of results, or empty if there are no more
2802
+ # results in the list.
2803
+ # Corresponds to the JSON property `nextPageToken`
2804
+ # @return [String]
2805
+ attr_accessor :next_page_token
2806
+
2807
+ # Unordered list. Auth tokens that could not be reached.
2808
+ # Corresponds to the JSON property `unreachable`
2809
+ # @return [Array<String>]
2810
+ attr_accessor :unreachable
2811
+
2812
+ def initialize(**args)
2813
+ update!(**args)
2814
+ end
2815
+
2816
+ # Update properties of this object
2817
+ def update!(**args)
2818
+ @auth_tokens = args[:auth_tokens] if args.key?(:auth_tokens)
2819
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2820
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2821
+ end
2822
+ end
2823
+
2824
+ # Response for `ListBackupCollections`.
2569
2825
  class ListBackupCollectionsResponse
2570
2826
  include Google::Apis::Core::Hashable
2571
2827
 
@@ -2604,7 +2860,7 @@ module Google
2604
2860
  end
2605
2861
  end
2606
2862
 
2607
- # Response for [ListBackups].
2863
+ # Response for `ListBackups`.
2608
2864
  class ListBackupsResponse
2609
2865
  include Google::Apis::Core::Hashable
2610
2866
 
@@ -2636,7 +2892,7 @@ module Google
2636
2892
  end
2637
2893
  end
2638
2894
 
2639
- # Response for ListClusters.
2895
+ # Response for `ListClusters`.
2640
2896
  class ListClustersResponse
2641
2897
  include Google::Apis::Core::Hashable
2642
2898
 
@@ -2773,6 +3029,38 @@ module Google
2773
3029
  end
2774
3030
  end
2775
3031
 
3032
+ # Response message for ListTokenAuthUsers.
3033
+ class ListTokenAuthUsersResponse
3034
+ include Google::Apis::Core::Hashable
3035
+
3036
+ # Token to retrieve the next page of results, or empty if there are no more
3037
+ # results in the list.
3038
+ # Corresponds to the JSON property `nextPageToken`
3039
+ # @return [String]
3040
+ attr_accessor :next_page_token
3041
+
3042
+ # A list of token auth users in the project.
3043
+ # Corresponds to the JSON property `tokenAuthUsers`
3044
+ # @return [Array<Google::Apis::RedisV1beta1::TokenAuthUser>]
3045
+ attr_accessor :token_auth_users
3046
+
3047
+ # Unordered list. Token auth users that could not be reached.
3048
+ # Corresponds to the JSON property `unreachable`
3049
+ # @return [Array<String>]
3050
+ attr_accessor :unreachable
3051
+
3052
+ def initialize(**args)
3053
+ update!(**args)
3054
+ end
3055
+
3056
+ # Update properties of this object
3057
+ def update!(**args)
3058
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3059
+ @token_auth_users = args[:token_auth_users] if args.key?(:token_auth_users)
3060
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3061
+ end
3062
+ end
3063
+
2776
3064
  # A resource that represents a Google Cloud location.
2777
3065
  class Location
2778
3066
  include Google::Apis::Core::Hashable
@@ -3978,6 +4266,34 @@ module Google
3978
4266
  end
3979
4267
  end
3980
4268
 
4269
+ # SignalMetadata contains one of the signal metadata proto messages associated
4270
+ # with a SignalType. This proto will be mapped to SignalMetadata message in
4271
+ # storage.proto. Next ID: 3
4272
+ class SignalMetadata
4273
+ include Google::Apis::Core::Hashable
4274
+
4275
+ # A backup run.
4276
+ # Corresponds to the JSON property `backupRun`
4277
+ # @return [Google::Apis::RedisV1beta1::BackupRun]
4278
+ attr_accessor :backup_run
4279
+
4280
+ # Signal data for boolean signals.
4281
+ # Corresponds to the JSON property `signalBoolValue`
4282
+ # @return [Boolean]
4283
+ attr_accessor :signal_bool_value
4284
+ alias_method :signal_bool_value?, :signal_bool_value
4285
+
4286
+ def initialize(**args)
4287
+ update!(**args)
4288
+ end
4289
+
4290
+ # Update properties of this object
4291
+ def update!(**args)
4292
+ @backup_run = args[:backup_run] if args.key?(:backup_run)
4293
+ @signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
4294
+ end
4295
+ end
4296
+
3981
4297
  # Represents additional information about the state of the cluster.
3982
4298
  class StateInfo
3983
4299
  include Google::Apis::Core::Hashable
@@ -4147,6 +4463,33 @@ module Google
4147
4463
  end
4148
4464
  end
4149
4465
 
4466
+ # Represents a token based auth user for the cluster.
4467
+ class TokenAuthUser
4468
+ include Google::Apis::Core::Hashable
4469
+
4470
+ # Identifier. The resource name of the token based auth user. Format: projects/`
4471
+ # project`/locations/`location`/clusters/`cluster`/tokenAuthUsers/`
4472
+ # token_auth_user`
4473
+ # Corresponds to the JSON property `name`
4474
+ # @return [String]
4475
+ attr_accessor :name
4476
+
4477
+ # Output only. The state of the token based auth user.
4478
+ # Corresponds to the JSON property `state`
4479
+ # @return [String]
4480
+ attr_accessor :state
4481
+
4482
+ def initialize(**args)
4483
+ update!(**args)
4484
+ end
4485
+
4486
+ # Update properties of this object
4487
+ def update!(**args)
4488
+ @name = args[:name] if args.key?(:name)
4489
+ @state = args[:state] if args.key?(:state)
4490
+ end
4491
+ end
4492
+
4150
4493
  # TypedValue represents the value of a metric type. It can either be a double,
4151
4494
  # an int64, a string or a bool.
4152
4495
  class TypedValue
@@ -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.78.0"
19
+ GEM_VERSION = "0.80.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260210"
25
+ REVISION = "20260406"
26
26
  end
27
27
  end
28
28
  end