Module Values.FileSystemEndpointSource

An Amazon FSx for NetApp ONTAP file system has two endpoints that are used to access data or to manage the file system using the NetApp ONTAP CLI, REST API, or NetApp SnapMirror. They are the Management and Intercluster endpoints.

Sourcetype nonrec t = {
  1. dNSName : DNSName.t option;
  2. ipAddresses : OntapEndpointIpAddresses.t option;
    (*

    The IPv4 addresses of the file system endpoint.

    *)
  3. ipv6Addresses : OntapEndpointIpAddresses.t option;
    (*

    The IPv6 addresses of the file system endpoint.

    *)
}
Sourceval make : ?dNSName:??? -> ?ipAddresses:??? -> ?ipv6Addresses:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of IpAddress.t ] list | `String of DNSName.t ]) 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