Values.DeleteAssetModelCompositeModelRequestSourceDeletes a composite model. This action can't be undone. You must delete all assets created from a composite model before you can delete the model. Also, you can't delete a composite model if a parent asset model exists that contains a property formula expression that depends on the asset model that you want to delete. For more information, see Deleting assets and models in the IoT SiteWise User Guide.
type nonrec t = {assetModelId : CustomID.t;The ID of the asset model, in UUID format.
*)assetModelCompositeModelId : CustomID.t;The ID of a composite model on this asset model.
*)clientToken : ClientToken.t option;A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
*)ifMatch : ETag.t option;The expected current entity tag (ETag) for the asset model’s latest or active version (specified using matchForVersionType). The delete request is rejected if the tag does not match the latest or active version's current entity tag. See Optimistic locking for asset model writes in the IoT SiteWise User Guide.
*)ifNoneMatch : SelectAll.t option;Accepts * to reject the delete request if an active version (specified using matchForVersionType as ACTIVE) already exists for the asset model.
*)matchForVersionType : AssetModelVersionType.t option;Specifies the asset model version type (LATEST or ACTIVE) used in conjunction with If-Match or If-None-Match headers to determine the target ETag for the delete operation.
*)}val make :
?clientToken:??? ->
?ifMatch:??? ->
?ifNoneMatch:??? ->
?matchForVersionType:??? ->
assetModelId:CustomID.t ->
assetModelCompositeModelId:CustomID.t ->
unit ->
tval to_value :
t ->
[> `Structure of (string * [> `Enum of string | `String of CustomID.t ]) list ]