@leaflow/sdk 0.72.0 → 0.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2667,6 +2667,11 @@ export interface components {
|
|
|
2667
2667
|
/** @enum {string} */
|
|
2668
2668
|
OrderState: "pending" | "paid" | "fulfilled" | "failed" | "canceled";
|
|
2669
2669
|
Order: {
|
|
2670
|
+
/**
|
|
2671
|
+
* Format: date-time
|
|
2672
|
+
* @description When fulfillment began. Funds and sellable quota remain reserved until success or confirmed failure; this order can no longer be canceled.
|
|
2673
|
+
*/
|
|
2674
|
+
fulfillment_started_at?: string | null;
|
|
2670
2675
|
/** @description Total tax after discounts, including any tax already included in the price. */
|
|
2671
2676
|
tax_amount?: string;
|
|
2672
2677
|
/** @description The part of tax_amount already included in gross_amount; it is not charged again. */
|
|
@@ -2713,8 +2718,8 @@ export interface components {
|
|
|
2713
2718
|
refundable_amount?: components["schemas"]["Money"];
|
|
2714
2719
|
/**
|
|
2715
2720
|
* Format: date-time
|
|
2716
|
-
* @description
|
|
2717
|
-
*
|
|
2721
|
+
* @description The deadline to pay and begin fulfillment. Absent after fulfillment starts or the order
|
|
2722
|
+
* ends. Once fulfillment starts, its reservations remain held until success or confirmed failure.
|
|
2718
2723
|
*/
|
|
2719
2724
|
reservation_expires_at?: string | null;
|
|
2720
2725
|
/** Format: date-time */
|
|
@@ -400,7 +400,7 @@ export interface paths {
|
|
|
400
400
|
put?: never;
|
|
401
401
|
/**
|
|
402
402
|
* Create instances
|
|
403
|
-
* @description Creates a Billing order, including for metered pricing. The price must belong to the resource’s Billing Plan; applicable contract pricing is resolved by Billing. Technical capacity is checked before sellable quota is reserved. Provisioning continues automatically after payment; do not submit a new purchase after paying. Reuse the original idempotency key after an uncertain response. Exactly one of image_id, private_image_id or boot_disk_id is required, and exactly one of port_id or subnet_id. Existing ports, boot disks or floating IPs require count=1. Image boots require boot_disk; existing disks retain their own subscription. Instances, disks and public IPs keep their own subscription items on the same order.
|
|
403
|
+
* @description Creates a Billing order, including for metered pricing. The price must belong to the resource’s Billing Plan; applicable contract pricing is resolved by Billing. Technical capacity is checked before sellable quota is reserved. Provisioning continues automatically after payment; do not submit a new purchase after paying. Reuse the original idempotency key after an uncertain response. Exactly one of image_id, private_image_id or boot_disk_id is required, and exactly one of port_id or subnet_id. Existing ports, boot disks or floating IPs require count=1. Image boots require boot_disk; existing disks retain their own subscription. Instances, disks and public IPs keep their own subscription items on the same order. A request for several instances is all or nothing — if any instance cannot be created, every instance of that request is released and the order fails, so nothing is charged. Each instance is named after this request with a number appended, and each has its own task.
|
|
404
404
|
*/
|
|
405
405
|
post: operations["launch-instance"];
|
|
406
406
|
delete?: never;
|