Module Values_3.ActiveVpnTunnelStatusSource

Contains information about the current security configuration of an active VPN tunnel.

Sourcetype nonrec t = {
  1. phase1EncryptionAlgorithm : Values_0.String_.t option;
    (*

    The encryption algorithm negotiated in Phase 1 IKE negotiations.

    *)
  2. phase2EncryptionAlgorithm : Values_0.String_.t option;
    (*

    The encryption algorithm negotiated in Phase 2 IKE negotiations.

    *)
  3. phase1IntegrityAlgorithm : Values_0.String_.t option;
    (*

    The integrity algorithm negotiated in Phase 1 IKE negotiations.

    *)
  4. phase2IntegrityAlgorithm : Values_0.String_.t option;
    (*

    The integrity algorithm negotiated in Phase 2 IKE negotiations.

    *)
  5. phase1DHGroup : Values_0.Integer.t option;
    (*

    The Diffie-Hellman group number being used in Phase 1 IKE negotiations.

    *)
  6. phase2DHGroup : Values_0.Integer.t option;
    (*

    The Diffie-Hellman group number being used in Phase 2 IKE negotiations.

    *)
  7. ikeVersion : Values_0.String_.t option;
    (*

    The version of the Internet Key Exchange (IKE) protocol being used.

    *)
  8. provisioningStatus : Values_2.VpnTunnelProvisioningStatus.t option;
    (*

    The current provisioning status of the VPN tunnel.

    *)
  9. provisioningStatusReason : Values_0.String_.t option;
    (*

    The reason for the current provisioning status.

    *)
}
Sourceval make : ?phase1EncryptionAlgorithm:??? -> ?phase2EncryptionAlgorithm:??? -> ?phase1IntegrityAlgorithm:??? -> ?phase2IntegrityAlgorithm:??? -> ?phase1DHGroup:??? -> ?phase2DHGroup:??? -> ?ikeVersion:??? -> ?provisioningStatus:??? -> ?provisioningStatusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.String_.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