aws-sdk-elasticache 1.81.0 → 1.82.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: 7a3248b4a28fd0f6d813e45406cc65f094137dc22cb1f3ae19218211b14a8153
4
- data.tar.gz: 1d6a9ff4e6bb0fd8e2b9b4c93bfd5c46a21a910e51b71c541fa3ae05e9053137
3
+ metadata.gz: 935f20896aa6453e9eb6799ff9754694695d787f4003893b4f3aa937952cac19
4
+ data.tar.gz: aceb5ad1a07c68029b0834fbf0525e469bfbce9c9841e8a830a9bf752690e540
5
5
  SHA512:
6
- metadata.gz: '005383495c0cf2c1fc49ca0dd29c42e9ec1fdc008fbfa236be0b7433bbf8f667075fa722259afc6d1815255f7d89da7ddfc0c0a03d86e71f13cb6fb7ec6c8544'
7
- data.tar.gz: 92ae3a7e5a7301191d69afe36397b8402dcada2081d5d2ae2b50f5faf57259354c375ed2654b50d0d91b3f84b3272993f808f3544aa26f51ef580df249231251
6
+ metadata.gz: 533f4cb24367ed15fe855679dd699c3955ad102ba0d487e4dec1fd95677a769680a01d442a03eaf932163bf7ef4798ed4a8faac5d0be2e7f5a332da41caa205a
7
+ data.tar.gz: 82dc5e0032054cdd2c82a2d577e6da476d711a60bb2d9a11e5b991c38b43509c18838eb688123fd4f0adfc7b040610fa19139ff0236c97d3ac6d977bbb3a1399
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2022-11-16)
5
+ ------------------
6
+
7
+ * Feature - for Redis now supports AWS Identity and Access Management authentication access to Redis clusters starting with redis-engine version 7.0
8
+
4
9
  1.81.0 (2022-11-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.81.0
1
+ 1.82.0
@@ -2964,6 +2964,9 @@ module Aws::ElastiCache
2964
2964
  # pair. A tag key must be accompanied by a tag value, although null is
2965
2965
  # accepted.
2966
2966
  #
2967
+ # @option params [Types::AuthenticationMode] :authentication_mode
2968
+ # Specifies how to authenticate the user.
2969
+ #
2967
2970
  # @return [Types::User] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2968
2971
  #
2969
2972
  # * {Types::User#user_id #user_id} => String
@@ -2991,6 +2994,10 @@ module Aws::ElastiCache
2991
2994
  # value: "String",
2992
2995
  # },
2993
2996
  # ],
2997
+ # authentication_mode: {
2998
+ # type: "password", # accepts password, no-password-required, iam
2999
+ # passwords: ["String"],
3000
+ # },
2994
3001
  # })
2995
3002
  #
2996
3003
  # @example Response structure
@@ -3003,7 +3010,7 @@ module Aws::ElastiCache
3003
3010
  # resp.access_string #=> String
3004
3011
  # resp.user_group_ids #=> Array
3005
3012
  # resp.user_group_ids[0] #=> String
3006
- # resp.authentication.type #=> String, one of "password", "no-password"
3013
+ # resp.authentication.type #=> String, one of "password", "no-password", "iam"
3007
3014
  # resp.authentication.password_count #=> Integer
3008
3015
  # resp.arn #=> String
3009
3016
  #
@@ -3955,7 +3962,7 @@ module Aws::ElastiCache
3955
3962
  # resp.access_string #=> String
3956
3963
  # resp.user_group_ids #=> Array
3957
3964
  # resp.user_group_ids[0] #=> String
3958
- # resp.authentication.type #=> String, one of "password", "no-password"
3965
+ # resp.authentication.type #=> String, one of "password", "no-password", "iam"
3959
3966
  # resp.authentication.password_count #=> Integer
3960
3967
  # resp.arn #=> String
3961
3968
  #
@@ -7612,7 +7619,7 @@ module Aws::ElastiCache
7612
7619
  # resp.users[0].access_string #=> String
7613
7620
  # resp.users[0].user_group_ids #=> Array
7614
7621
  # resp.users[0].user_group_ids[0] #=> String
7615
- # resp.users[0].authentication.type #=> String, one of "password", "no-password"
7622
+ # resp.users[0].authentication.type #=> String, one of "password", "no-password", "iam"
7616
7623
  # resp.users[0].authentication.password_count #=> Integer
7617
7624
  # resp.users[0].arn #=> String
7618
7625
  # resp.marker #=> String
@@ -9441,6 +9448,9 @@ module Aws::ElastiCache
9441
9448
  # @option params [Boolean] :no_password_required
9442
9449
  # Indicates no password is required for the user.
9443
9450
  #
9451
+ # @option params [Types::AuthenticationMode] :authentication_mode
9452
+ # Specifies how to authenticate the user.
9453
+ #
9444
9454
  # @return [Types::User] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9445
9455
  #
9446
9456
  # * {Types::User#user_id #user_id} => String
@@ -9461,6 +9471,10 @@ module Aws::ElastiCache
9461
9471
  # append_access_string: "AccessString",
9462
9472
  # passwords: ["String"],
9463
9473
  # no_password_required: false,
9474
+ # authentication_mode: {
9475
+ # type: "password", # accepts password, no-password-required, iam
9476
+ # passwords: ["String"],
9477
+ # },
9464
9478
  # })
9465
9479
  #
9466
9480
  # @example Response structure
@@ -9473,7 +9487,7 @@ module Aws::ElastiCache
9473
9487
  # resp.access_string #=> String
9474
9488
  # resp.user_group_ids #=> Array
9475
9489
  # resp.user_group_ids[0] #=> String
9476
- # resp.authentication.type #=> String, one of "password", "no-password"
9490
+ # resp.authentication.type #=> String, one of "password", "no-password", "iam"
9477
9491
  # resp.authentication.password_count #=> Integer
9478
9492
  # resp.arn #=> String
9479
9493
  #
@@ -10352,7 +10366,7 @@ module Aws::ElastiCache
10352
10366
  params: params,
10353
10367
  config: config)
10354
10368
  context[:gem_name] = 'aws-sdk-elasticache'
10355
- context[:gem_version] = '1.81.0'
10369
+ context[:gem_version] = '1.82.0'
10356
10370
  Seahorse::Client::Request.new(handlers, context)
10357
10371
  end
10358
10372
 
@@ -22,6 +22,7 @@ module Aws::ElastiCache
22
22
  AuthTokenUpdateStatus = Shapes::StringShape.new(name: 'AuthTokenUpdateStatus')
23
23
  AuthTokenUpdateStrategyType = Shapes::StringShape.new(name: 'AuthTokenUpdateStrategyType')
24
24
  Authentication = Shapes::StructureShape.new(name: 'Authentication')
25
+ AuthenticationMode = Shapes::StructureShape.new(name: 'AuthenticationMode')
25
26
  AuthenticationType = Shapes::StringShape.new(name: 'AuthenticationType')
26
27
  AuthorizationAlreadyExistsFault = Shapes::StructureShape.new(name: 'AuthorizationAlreadyExistsFault')
27
28
  AuthorizationNotFoundFault = Shapes::StructureShape.new(name: 'AuthorizationNotFoundFault')
@@ -183,6 +184,7 @@ module Aws::ElastiCache
183
184
  IncreaseNodeGroupsInGlobalReplicationGroupResult = Shapes::StructureShape.new(name: 'IncreaseNodeGroupsInGlobalReplicationGroupResult')
184
185
  IncreaseReplicaCountMessage = Shapes::StructureShape.new(name: 'IncreaseReplicaCountMessage')
185
186
  IncreaseReplicaCountResult = Shapes::StructureShape.new(name: 'IncreaseReplicaCountResult')
187
+ InputAuthenticationType = Shapes::StringShape.new(name: 'InputAuthenticationType')
186
188
  InsufficientCacheClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientCacheClusterCapacityFault')
187
189
  Integer = Shapes::IntegerShape.new(name: 'Integer')
188
190
  IntegerOptional = Shapes::IntegerShape.new(name: 'IntegerOptional')
@@ -389,6 +391,10 @@ module Aws::ElastiCache
389
391
  Authentication.add_member(:password_count, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PasswordCount"))
390
392
  Authentication.struct_class = Types::Authentication
391
393
 
394
+ AuthenticationMode.add_member(:type, Shapes::ShapeRef.new(shape: InputAuthenticationType, location_name: "Type"))
395
+ AuthenticationMode.add_member(:passwords, Shapes::ShapeRef.new(shape: PasswordListInput, location_name: "Passwords"))
396
+ AuthenticationMode.struct_class = Types::AuthenticationMode
397
+
392
398
  AuthorizationAlreadyExistsFault.struct_class = Types::AuthorizationAlreadyExistsFault
393
399
 
394
400
  AuthorizationNotFoundFault.struct_class = Types::AuthorizationNotFoundFault
@@ -766,6 +772,7 @@ module Aws::ElastiCache
766
772
  CreateUserMessage.add_member(:access_string, Shapes::ShapeRef.new(shape: AccessString, required: true, location_name: "AccessString"))
767
773
  CreateUserMessage.add_member(:no_password_required, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoPasswordRequired"))
768
774
  CreateUserMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
775
+ CreateUserMessage.add_member(:authentication_mode, Shapes::ShapeRef.new(shape: AuthenticationMode, location_name: "AuthenticationMode"))
769
776
  CreateUserMessage.struct_class = Types::CreateUserMessage
770
777
 
771
778
  CustomerNodeEndpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "Address"))
@@ -1263,6 +1270,7 @@ module Aws::ElastiCache
1263
1270
  ModifyUserMessage.add_member(:append_access_string, Shapes::ShapeRef.new(shape: AccessString, location_name: "AppendAccessString"))
1264
1271
  ModifyUserMessage.add_member(:passwords, Shapes::ShapeRef.new(shape: PasswordListInput, location_name: "Passwords"))
1265
1272
  ModifyUserMessage.add_member(:no_password_required, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoPasswordRequired"))
1273
+ ModifyUserMessage.add_member(:authentication_mode, Shapes::ShapeRef.new(shape: AuthenticationMode, location_name: "AuthenticationMode"))
1266
1274
  ModifyUserMessage.struct_class = Types::ModifyUserMessage
1267
1275
 
1268
1276
  NetworkTypeList.member = Shapes::ShapeRef.new(shape: NetworkType)
@@ -109,6 +109,35 @@ module Aws::ElastiCache
109
109
  include Aws::Structure
110
110
  end
111
111
 
112
+ # Specifies the authentication mode to use.
113
+ #
114
+ # @note When making an API call, you may pass AuthenticationMode
115
+ # data as a hash:
116
+ #
117
+ # {
118
+ # type: "password", # accepts password, no-password-required, iam
119
+ # passwords: ["String"],
120
+ # }
121
+ #
122
+ # @!attribute [rw] type
123
+ # Specifies the authentication type. Possible options are IAM
124
+ # authentication, password and no password.
125
+ # @return [String]
126
+ #
127
+ # @!attribute [rw] passwords
128
+ # Specifies the passwords to use for authentication if `Type` is set
129
+ # to `password`.
130
+ # @return [Array<String>]
131
+ #
132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/AuthenticationMode AWS API Documentation
133
+ #
134
+ class AuthenticationMode < Struct.new(
135
+ :type,
136
+ :passwords)
137
+ SENSITIVE = []
138
+ include Aws::Structure
139
+ end
140
+
112
141
  # The specified Amazon EC2 security group is already authorized for the
113
142
  # specified cache security group.
114
143
  #
@@ -3132,6 +3161,10 @@ module Aws::ElastiCache
3132
3161
  # value: "String",
3133
3162
  # },
3134
3163
  # ],
3164
+ # authentication_mode: {
3165
+ # type: "password", # accepts password, no-password-required, iam
3166
+ # passwords: ["String"],
3167
+ # },
3135
3168
  # }
3136
3169
  #
3137
3170
  # @!attribute [rw] user_id
@@ -3165,6 +3198,10 @@ module Aws::ElastiCache
3165
3198
  # accepted.
3166
3199
  # @return [Array<Types::Tag>]
3167
3200
  #
3201
+ # @!attribute [rw] authentication_mode
3202
+ # Specifies how to authenticate the user.
3203
+ # @return [Types::AuthenticationMode]
3204
+ #
3168
3205
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateUserMessage AWS API Documentation
3169
3206
  #
3170
3207
  class CreateUserMessage < Struct.new(
@@ -3174,7 +3211,8 @@ module Aws::ElastiCache
3174
3211
  :passwords,
3175
3212
  :access_string,
3176
3213
  :no_password_required,
3177
- :tags)
3214
+ :tags,
3215
+ :authentication_mode)
3178
3216
  SENSITIVE = []
3179
3217
  include Aws::Structure
3180
3218
  end
@@ -6981,6 +7019,10 @@ module Aws::ElastiCache
6981
7019
  # append_access_string: "AccessString",
6982
7020
  # passwords: ["String"],
6983
7021
  # no_password_required: false,
7022
+ # authentication_mode: {
7023
+ # type: "password", # accepts password, no-password-required, iam
7024
+ # passwords: ["String"],
7025
+ # },
6984
7026
  # }
6985
7027
  #
6986
7028
  # @!attribute [rw] user_id
@@ -7003,6 +7045,10 @@ module Aws::ElastiCache
7003
7045
  # Indicates no password is required for the user.
7004
7046
  # @return [Boolean]
7005
7047
  #
7048
+ # @!attribute [rw] authentication_mode
7049
+ # Specifies how to authenticate the user.
7050
+ # @return [Types::AuthenticationMode]
7051
+ #
7006
7052
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyUserMessage AWS API Documentation
7007
7053
  #
7008
7054
  class ModifyUserMessage < Struct.new(
@@ -7010,7 +7056,8 @@ module Aws::ElastiCache
7010
7056
  :access_string,
7011
7057
  :append_access_string,
7012
7058
  :passwords,
7013
- :no_password_required)
7059
+ :no_password_required,
7060
+ :authentication_mode)
7014
7061
  SENSITIVE = []
7015
7062
  include Aws::Structure
7016
7063
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticache/customizations'
53
53
  # @!group service
54
54
  module Aws::ElastiCache
55
55
 
56
- GEM_VERSION = '1.81.0'
56
+ GEM_VERSION = '1.82.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.81.0
4
+ version: 1.82.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2022-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core