/* * 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 fsx-2018-03-01.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.FSx.Model { /// /// An Amazon FSx for NetApp ONTAP storage virtual machine (SVM) has the following endpoints /// that are used to access data or to manage the SVM using the NetApp ONTAP CLI, REST /// API, or NetApp CloudManager. /// public partial class SvmEndpoints { private SvmEndpoint _iscsi; private SvmEndpoint _management; private SvmEndpoint _nfs; private SvmEndpoint _smb; /// /// Gets and sets the property Iscsi. /// /// An endpoint for connecting using the Internet Small Computer Systems Interface (iSCSI) /// protocol. /// /// public SvmEndpoint Iscsi { get { return this._iscsi; } set { this._iscsi = value; } } // Check to see if Iscsi property is set internal bool IsSetIscsi() { return this._iscsi != null; } /// /// Gets and sets the property Management. /// /// An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp /// CloudManager. /// /// public SvmEndpoint Management { get { return this._management; } set { this._management = value; } } // Check to see if Management property is set internal bool IsSetManagement() { return this._management != null; } /// /// Gets and sets the property Nfs. /// /// An endpoint for connecting using the Network File System (NFS) protocol. /// /// public SvmEndpoint Nfs { get { return this._nfs; } set { this._nfs = value; } } // Check to see if Nfs property is set internal bool IsSetNfs() { return this._nfs != null; } /// /// Gets and sets the property Smb. /// /// An endpoint for connecting using the Server Message Block (SMB) protocol. /// /// public SvmEndpoint Smb { get { return this._smb; } set { this._smb = value; } } // Check to see if Smb property is set internal bool IsSetSmb() { return this._smb != null; } } }