Class: Aws::StorageGateway::Types::UpdateChapCredentialsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::UpdateChapCredentialsInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-storagegateway/types.rb
Overview
A JSON object containing one or more of the following fields:
-
UpdateChapCredentialsInput$InitiatorName
-
UpdateChapCredentialsInput$SecretToAuthenticateInitiator
-
UpdateChapCredentialsInput$SecretToAuthenticateTarget
-
UpdateChapCredentialsInput$TargetARN
Constant Summary collapse
- SENSITIVE =
[:secret_to_authenticate_initiator, :secret_to_authenticate_target]
Instance Attribute Summary collapse
-
#initiator_name ⇒ String
The iSCSI initiator that connects to the target.
-
#secret_to_authenticate_initiator ⇒ String
The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.
-
#secret_to_authenticate_target ⇒ String
The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).
-
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the iSCSI volume target.
Instance Attribute Details
#initiator_name ⇒ String
The iSCSI initiator that connects to the target.
6734 6735 6736 6737 6738 6739 6740 6741 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 6734 class UpdateChapCredentialsInput < Struct.new( :target_arn, :secret_to_authenticate_initiator, :initiator_name, :secret_to_authenticate_target) SENSITIVE = [:secret_to_authenticate_initiator, :secret_to_authenticate_target] include Aws::Structure end |
#secret_to_authenticate_initiator ⇒ String
The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.
<note markdown=“1”> The secret key must be between 12 and 16 bytes when encoded in UTF-8.
</note>
6734 6735 6736 6737 6738 6739 6740 6741 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 6734 class UpdateChapCredentialsInput < Struct.new( :target_arn, :secret_to_authenticate_initiator, :initiator_name, :secret_to_authenticate_target) SENSITIVE = [:secret_to_authenticate_initiator, :secret_to_authenticate_target] include Aws::Structure end |
#secret_to_authenticate_target ⇒ String
The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).
Byte constraints: Minimum bytes of 12. Maximum bytes of 16.
<note markdown=“1”> The secret key must be between 12 and 16 bytes when encoded in UTF-8.
</note>
6734 6735 6736 6737 6738 6739 6740 6741 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 6734 class UpdateChapCredentialsInput < Struct.new( :target_arn, :secret_to_authenticate_initiator, :initiator_name, :secret_to_authenticate_target) SENSITIVE = [:secret_to_authenticate_initiator, :secret_to_authenticate_target] include Aws::Structure end |
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the iSCSI volume target. Use the DescribeStorediSCSIVolumes operation to return the TargetARN for specified VolumeARN.
6734 6735 6736 6737 6738 6739 6740 6741 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 6734 class UpdateChapCredentialsInput < Struct.new( :target_arn, :secret_to_authenticate_initiator, :initiator_name, :secret_to_authenticate_target) SENSITIVE = [:secret_to_authenticate_initiator, :secret_to_authenticate_target] include Aws::Structure end |