Module Values.WorkspaceConfigurationDescriptionSource

This structure contains the description of the workspace configuration.

Sourcetype nonrec t = {
  1. status : WorkspaceConfigurationStatus.t option;
    (*

    This structure displays the current status of the workspace configuration, and might also contain a reason for that status.

    *)
  2. limitsPerLabelSet : LimitsPerLabelSetList.t option;
    (*

    This is an array of structures, where each structure displays one label sets for the workspace and the limits for that label set.

    *)
  3. retentionPeriodInDays : WorkspaceConfigurationDescriptionRetentionPeriodInDaysInteger.t option;
    (*

    This field displays how many days that metrics are retained in the workspace.

    *)
}
Sourceval make : ?status:??? -> ?limitsPerLabelSet:??? -> ?retentionPeriodInDays:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of WorkspaceConfigurationDescriptionRetentionPeriodInDaysInteger.t | `List of [> `Structure of (string * [> `Map of ([> `String of LabelName.t ] * [> `String of LabelValue.t ]) list | `Structure of (string * [> `Long of LimitsPerLabelSetEntryMaxSeriesLong.t ]) list ]) list ] list | `Structure of (string * [> `Enum of string | `String of String_.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