/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the storagegateway-2013-06-30.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.StorageGateway.Model { /// /// A JSON object containing the following fields: /// public partial class DescribeChapCredentialsResponse : AmazonWebServiceResponse { private List _chapCredentials = new List(); /// /// Gets and sets the property ChapCredentials. /// /// An array of ChapInfo objects that represent CHAP credentials. Each object in /// the array contains CHAP credential information for one target-initiator pair. If no /// CHAP credentials are set, an empty array is returned. CHAP credential information /// is provided in a JSON object with the following fields: /// ///
  • /// /// InitiatorName: The iSCSI initiator that connects to the target. /// ///
  • /// /// SecretToAuthenticateInitiator: The secret key that the initiator (for example, /// the Windows client) must provide to participate in mutual CHAP with the target. /// ///
  • /// /// SecretToAuthenticateTarget: The secret key that the target must provide to /// participate in mutual CHAP with the initiator (e.g. Windows client). /// ///
  • /// /// TargetARN: The Amazon Resource Name (ARN) of the storage volume. /// ///
///
public List ChapCredentials { get { return this._chapCredentials; } set { this._chapCredentials = value; } } // Check to see if ChapCredentials property is set internal bool IsSetChapCredentials() { return this._chapCredentials != null && this._chapCredentials.Count > 0; } } }