Module Values.PurchaseOfferingRequestSource

Placeholder documentation for PurchaseOfferingRequest

Sourcetype nonrec t = {
  1. count : int;
    (*

    Number of resources

    *)
  2. name : string option;
    (*

    Name for the new reservation

    *)
  3. offeringId : string;
    (*

    Offering to purchase, e.g. '87654321'

    *)
  4. renewalSettings : RenewalSettings.t option;
    (*

    Renewal settings for the reservation

    *)
  5. requestId : string option;
    (*

    Unique request ID to be specified. This is needed to prevent retries from creating multiple resources.

    *)
  6. start : string option;
    (*

    Requested reservation start time (UTC) in ISO-8601 format. The specified time must be between the first day of the current month and one year from now. If no value is given, the default is now.

    *)
  7. tags : Tags.t option;
    (*

    A collection of key-value pairs

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?renewalSettings:??? -> ?requestId:??? -> ?start:??? -> ?tags:??? -> count:int -> offeringId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `Enum of string | `Integer of int ]) 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