Module Values.CreateLicenseRequestSource

Creates a license.

Sourcetype nonrec t = {
  1. licenseName : String_.t;
    (*

    License name.

    *)
  2. productName : String_.t;
    (*

    Product name.

    *)
  3. productSKU : String_.t;
    (*

    Product SKU.

    *)
  4. issuer : Issuer.t;
    (*

    License issuer.

    *)
  5. homeRegion : String_.t;
    (*

    Home Region for the license.

    *)
  6. validity : DatetimeRange.t;
    (*

    Date and time range during which the license is valid, in ISO8601-UTC format.

    *)
  7. entitlements : EntitlementList.t;
    (*

    License entitlements.

    *)
  8. beneficiary : String_.t;
    (*

    License beneficiary.

    *)
  9. consumptionConfiguration : ConsumptionConfiguration.t;
    (*

    Configuration for consumption of the license. Choose a provisional configuration for workloads running with continuous connectivity. Choose a borrow configuration for workloads with offline usage.

    *)
  10. licenseMetadata : MetadataList.t option;
    (*

    Information about the license.

    *)
  11. clientToken : ClientToken.t;
    (*

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  12. tags : TagList.t option;
    (*

    Tags to add to the license. For more information about tagging support in License Manager, see the TagResource operation.

    *)
}
Sourceval context_ : string
Sourceval make : ?licenseMetadata:??? -> ?tags:??? -> licenseName:String_.t -> productName:String_.t -> productSKU:String_.t -> issuer:Issuer.t -> homeRegion:String_.t -> validity:DatetimeRange.t -> entitlements:EntitlementList.t -> beneficiary:String_.t -> consumptionConfiguration:ConsumptionConfiguration.t -> clientToken:ClientToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of BoxBoolean.t | `Enum of string | `Long of Long.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Boolean of BoxBoolean.t | `Integer of BoxInteger.t ]) list ]) 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