@@ -9881,18 +9881,26 @@ export interface components {
9881
9881
*/
9882
9882
type: "assign" | "unassign";
9883
9883
};
9884
- floating_ip_action_assign: {
9885
- type: "assign";
9886
- } & (Omit<components["schemas"]["floatingIPsAction"], "type"> & {
9884
+ floating_ip_action_assign: Omit<components["schemas"]["floatingIPsAction"], "type"> & {
9887
9885
/**
9888
9886
* @description The ID of the Droplet that the floating IP will be assigned to.
9889
9887
* @example 758604968
9890
9888
*/
9891
9889
droplet_id: number;
9892
- });
9893
- floating_ip_action_unassign: {
9890
+ } & {
9891
+ /**
9892
+ * @description discriminator enum property added by openapi-typescript
9893
+ * @enum {string}
9894
+ */
9895
+ type: "assign";
9896
+ };
9897
+ floating_ip_action_unassign: Omit<components["schemas"]["floatingIPsAction"], "type"> & Record<string, never> & {
9898
+ /**
9899
+ * @description discriminator enum property added by openapi-typescript
9900
+ * @enum {string}
9901
+ */
9894
9902
type: "unassign";
9895
- } & (Omit<components["schemas"]["floatingIPsAction"], "type"> & Record<string, never>) ;
9903
+ };
9896
9904
namespace_info: {
9897
9905
/**
9898
9906
* @description The namespace's API hostname. Each function in a namespace is provided an endpoint at the namespace's hostname.
@@ -11555,18 +11563,26 @@ export interface components {
11555
11563
*/
11556
11564
type: "assign" | "unassign";
11557
11565
};
11558
- reserved_ip_action_assign: {
11559
- type: "assign";
11560
- } & (Omit<components["schemas"]["reserved_ip_action_type"], "type"> & {
11566
+ reserved_ip_action_assign: Omit<components["schemas"]["reserved_ip_action_type"], "type"> & {
11561
11567
/**
11562
11568
* @description The ID of the Droplet that the reserved IP will be assigned to.
11563
11569
* @example 758604968
11564
11570
*/
11565
11571
droplet_id: number;
11566
- });
11567
- reserved_ip_action_unassign: {
11572
+ } & {
11573
+ /**
11574
+ * @description discriminator enum property added by openapi-typescript
11575
+ * @enum {string}
11576
+ */
11577
+ type: "assign";
11578
+ };
11579
+ reserved_ip_action_unassign: Omit<components["schemas"]["reserved_ip_action_type"], "type"> & Record<string, never> & {
11580
+ /**
11581
+ * @description discriminator enum property added by openapi-typescript
11582
+ * @enum {string}
11583
+ */
11568
11584
type: "unassign";
11569
- } & (Omit<components["schemas"]["reserved_ip_action_type"], "type"> & Record<string, never>) ;
11585
+ };
11570
11586
snapshots: {
11571
11587
/**
11572
11588
* @description The unique identifier for the snapshot.
0 commit comments