Module Values.SvmEndpointsSource

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.

Sourcetype nonrec t = {
  1. iscsi : SvmEndpoint.t option;
    (*

    An endpoint for connecting using the Internet Small Computer Systems Interface (iSCSI) protocol.

    *)
  2. management : SvmEndpoint.t option;
    (*

    An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager.

    *)
  3. nfs : SvmEndpoint.t option;
    (*

    An endpoint for connecting using the Network File System (NFS) protocol.

    *)
  4. smb : SvmEndpoint.t option;
    (*

    An endpoint for connecting using the Server Message Block (SMB) protocol.

    *)
}
Sourceval make : ?iscsi:??? -> ?management:??? -> ?nfs:??? -> ?smb:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of IpAddress.t ] list | `String of DNSName.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t