Module Values_2.InstanceTopologySource

Information about the instance topology.

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

    The instance ID.

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

    The instance type.

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

    The name of the placement group that the instance is in.

    *)
  4. networkNodes : Values_1.NetworkNodesList.t option;
    (*

    The network nodes. The nodes are hashed based on your account. Instances from different accounts running under the same server will return a different hashed list of strings. The value is null or empty if: The instance type is not supported. The instance is in a state other than running.

    *)
  5. availabilityZone : Values_0.String_.t option;
    (*

    The name of the Availability Zone or Local Zone that the instance is in.

    *)
  6. zoneId : Values_0.String_.t option;
    (*

    The ID of the Availability Zone or Local Zone that the instance is in.

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

    The ID of the Capacity Block. This parameter is only supported for UltraServer instances and identifies instances within the UltraServer domain.

    *)
}
Sourceval make : ?instanceId:??? -> ?instanceType:??? -> ?groupName:??? -> ?networkNodes:??? -> ?availabilityZone:??? -> ?zoneId:??? -> ?capacityBlockId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Values_0.String_.t ] list | `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