Module Values.SoftwareAssociationsSource

The association between a license-included application and a resource.

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

    The name of the license-included application. Possible values include the following: Microsoft_Office_2021_LTSC_Professional_Plus_32Bit Microsoft_Office_2021_LTSC_Professional_Plus_64Bit Microsoft_Office_2024_LTSC_Professional_Plus_32Bit Microsoft_Office_2024_LTSC_Professional_Plus_64Bit Microsoft_Visio_2021_LTSC_Professional_32Bit Microsoft_Visio_2021_LTSC_Professional_64Bit Microsoft_Visio_2024_LTSC_Professional_32Bit Microsoft_Visio_2024_LTSC_Professional_64Bit Microsoft_Project_2021_Professional_32Bit Microsoft_Project_2021_Professional_64Bit Microsoft_Project_2024_Professional_32Bit Microsoft_Project_2024_Professional_64Bit Microsoft_Office_2021_LTSC_Standard_32Bit Microsoft_Office_2021_LTSC_Standard_64Bit Microsoft_Office_2024_LTSC_Standard_32Bit Microsoft_Office_2024_LTSC_Standard_64Bit Microsoft_Visio_2021_LTSC_Standard_32Bit Microsoft_Visio_2021_LTSC_Standard_64Bit Microsoft_Visio_2024_LTSC_Standard_32Bit Microsoft_Visio_2024_LTSC_Standard_64Bit Microsoft_Project_2021_Standard_32Bit Microsoft_Project_2021_Standard_64Bit Microsoft_Project_2024_Standard_32Bit Microsoft_Project_2024_Standard_64Bit

    *)
  2. status : SoftwareDeploymentStatus.t option;
    (*

    The deployment status of the license-included application.

    *)
  3. deploymentError : ErrorDetailsList.t option;
    (*

    The error details for failed deployments of the license-included application.

    *)
}
Sourceval make : ?softwareName:??? -> ?status:??? -> ?deploymentError:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of 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