Module Values.DevEnvironmentSummarySource

Information about a Dev Environment.

Sourcetype nonrec t = {
  1. spaceName : NameString.t option;
    (*

    The name of the space.

    *)
  2. projectName : NameString.t option;
    (*

    The name of the project in the space.

    *)
  3. id : Uuid.t option;
    (*

    The system-generated unique ID for the Dev Environment.

    *)
  4. lastUpdatedTime : SyntheticTimestamp_date_time.t option;
    (*

    The time when the Dev Environment was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.

    *)
  5. creatorId : DevEnvironmentSummaryCreatorIdString.t option;
    (*

    The system-generated unique ID of the user who created the Dev Environment.

    *)
  6. status : DevEnvironmentStatus.t option;
    (*

    The status of the Dev Environment.

    *)
  7. statusReason : StatusReason.t option;
    (*

    The reason for the status.

    *)
  8. repositories : DevEnvironmentRepositorySummaries.t option;
    (*

    Information about the repositories that will be cloned into the Dev Environment. If no rvalue is specified, no repository is cloned.

    *)
  9. alias : DevEnvironmentSummaryAliasString.t option;
    (*

    The user-specified alias for the Dev Environment.

    *)
  10. ides : Ides.t option;
    (*

    Information about the integrated development environment (IDE) configured for a Dev Environment.

    *)
  11. instanceType : InstanceType.t option;
    (*

    The Amazon EC2 instace type used for the Dev Environment.

    *)
  12. inactivityTimeoutMinutes : InactivityTimeoutMinutes.t option;
    (*

    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Dev Environments consume compute minutes when running.

    *)
  13. persistentStorage : PersistentStorage.t option;
    (*

    Information about the configuration of persistent storage for the Dev Environment.

    *)
  14. vpcConnectionName : NameString.t option;
    (*

    The name of the connection used to connect to Amazon VPC used when the Dev Environment was created, if any.

    *)
}
Sourceval make : ?spaceName:??? -> ?projectName:??? -> ?id:??? -> ?lastUpdatedTime:??? -> ?creatorId:??? -> ?status:??? -> ?statusReason:??? -> ?repositories:??? -> ?alias:??? -> ?ides:??? -> ?instanceType:??? -> ?inactivityTimeoutMinutes:??? -> ?persistentStorage:??? -> ?vpcConnectionName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of InactivityTimeoutMinutes.t | `List of [> `Structure of (string * [> `String of SourceRepositoryNameString.t ]) list ] list | `String of NameString.t | `Structure of (string * [> `Integer of PersistentStorageSizeInGiBInteger.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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