@@ -3984,7 +3984,7 @@ export interface external {
3984
3984
*/
3985
3985
type?: "custom" | "lets_encrypt";
3986
3986
};
3987
- /** Custom Certificate Request */ certificate_request_custom: certificate_create_base[ ] & {
3987
+ /** Custom Certificate Request */ certificate_request_custom: external["resources/certificates/models/certificate_create.yml"]["certificate_create_base" ] & {
3988
3988
/**
3989
3989
* @description The contents of a PEM-formatted private-key corresponding to the SSL certificate.
3990
3990
* @example -----BEGIN PRIVATE KEY-----
@@ -4113,7 +4113,7 @@ export interface external {
4113
4113
*/
4114
4114
certificate_chain?: string;
4115
4115
};
4116
- /** Let's Encrypt Certificate Request */ certificate_request_lets_encrypt: certificate_create_base[ ] & {
4116
+ /** Let's Encrypt Certificate Request */ certificate_request_lets_encrypt: external["resources/certificates/models/certificate_create.yml"]["certificate_create_base" ] & {
4117
4117
/**
4118
4118
* @description An array of fully qualified domain names (FQDNs) for which the certificate was issued. A certificate covering all subdomains can be issued using a wildcard (e.g. `*.example.com`).
4119
4119
* @example [
@@ -7686,14 +7686,14 @@ export interface external {
7686
7686
*/
7687
7687
type: "enable_backups" | "disable_backups" | "reboot" | "power_cycle" | "shutdown" | "power_off" | "power_on" | "restore" | "password_reset" | "resize" | "rebuild" | "rename" | "change_kernel" | "enable_ipv6" | "snapshot";
7688
7688
};
7689
- droplet_action_restore: droplet_action[ ] & {
7689
+ droplet_action_restore: external["resources/droplets/models/droplet_actions.yml"]["droplet_action" ] & {
7690
7690
/**
7691
7691
* @description The ID of a backup of the current Droplet instance to restore from.
7692
7692
* @example 12389723
7693
7693
*/
7694
7694
image?: number;
7695
7695
};
7696
- droplet_action_resize: droplet_action[ ] & {
7696
+ droplet_action_resize: external["resources/droplets/models/droplet_actions.yml"]["droplet_action" ] & {
7697
7697
/**
7698
7698
* @description When `true`, the Droplet's disk will be resized in addition to its RAM and CPU. This is a permanent change and cannot be reversed as a Droplet's disk size cannot be decreased.
7699
7699
* @example true
@@ -7705,28 +7705,28 @@ export interface external {
7705
7705
*/
7706
7706
size?: string;
7707
7707
};
7708
- droplet_action_rebuild: droplet_action[ ] & ({
7708
+ droplet_action_rebuild: external["resources/droplets/models/droplet_actions.yml"]["droplet_action" ] & ({
7709
7709
/**
7710
7710
* @description The image ID of a public or private image or the slug identifier for a public image. The Droplet will be rebuilt using this image as its base.
7711
7711
* @example ubuntu-20-04-x64
7712
7712
*/
7713
7713
image?: string | number;
7714
7714
});
7715
- droplet_action_rename: droplet_action[ ] & {
7715
+ droplet_action_rename: external["resources/droplets/models/droplet_actions.yml"]["droplet_action" ] & {
7716
7716
/**
7717
7717
* @description The new name for the Droplet.
7718
7718
* @example nifty-new-name
7719
7719
*/
7720
7720
name?: string;
7721
7721
};
7722
- droplet_action_change_kernel: droplet_action[ ] & {
7722
+ droplet_action_change_kernel: external["resources/droplets/models/droplet_actions.yml"]["droplet_action" ] & {
7723
7723
/**
7724
7724
* @description A unique number used to identify and reference a specific kernel.
7725
7725
* @example 12389723
7726
7726
*/
7727
7727
kernel?: number;
7728
7728
};
7729
- droplet_action_snapshot: droplet_action[ ] & {
7729
+ droplet_action_snapshot: external["resources/droplets/models/droplet_actions.yml"]["droplet_action" ] & {
7730
7730
/**
7731
7731
* @description The name to give the new snapshot of the Droplet.
7732
7732
* @example Nifty New Snapshot
@@ -9037,10 +9037,10 @@ export interface external {
9037
9037
};
9038
9038
floating_ip_action_unassign: {
9039
9039
type: undefined;
9040
- } & Omit<floatingIPsAction[ ], "type"> & Record<string, never>;
9040
+ } & Omit<external["resources/floating_ips/models/floating_ip_actions.yml"]["floatingIPsAction" ], "type"> & Record<string, never>;
9041
9041
floating_ip_action_assign: {
9042
9042
type: undefined;
9043
- } & Omit<floatingIPsAction[ ], "type"> & {
9043
+ } & Omit<external["resources/floating_ips/models/floating_ip_actions.yml"]["floatingIPsAction" ], "type"> & {
9044
9044
/**
9045
9045
* @description The ID of the Droplet that the floating IP will be assigned to.
9046
9046
* @example 758604968
@@ -9850,7 +9850,7 @@ export interface external {
9850
9850
*/
9851
9851
type: "convert" | "transfer";
9852
9852
};
9853
- image_action_transfer: image_action_base[ ] & {
9853
+ image_action_transfer: external["resources/images/models/image_action.yml"]["image_action_base" ] & {
9854
9854
region: external["shared/attributes/region_slug.yml"];
9855
9855
};
9856
9856
};
@@ -10672,7 +10672,7 @@ export interface external {
10672
10672
* }
10673
10673
* ]
10674
10674
*/
10675
- load_balancers?: associated_kubernetes_resource[ ][];
10675
+ load_balancers?: external["resources/kubernetes/models/associated_kubernetes_resources.yml"]["associated_kubernetes_resource" ][];
10676
10676
/**
10677
10677
* @description A list of names and IDs for associated volumes that can be destroyed along with the cluster.
10678
10678
* @example [
@@ -10682,7 +10682,7 @@ export interface external {
10682
10682
* }
10683
10683
* ]
10684
10684
*/
10685
- volumes?: associated_kubernetes_resource[ ][];
10685
+ volumes?: external["resources/kubernetes/models/associated_kubernetes_resources.yml"]["associated_kubernetes_resource" ][];
10686
10686
/**
10687
10687
* @description A list of names and IDs for associated volume snapshots that can be destroyed along with the cluster.
10688
10688
* @example [
@@ -10692,7 +10692,7 @@ export interface external {
10692
10692
* }
10693
10693
* ]
10694
10694
*/
10695
- volume_snapshots?: associated_kubernetes_resource[ ][];
10695
+ volume_snapshots?: external["resources/kubernetes/models/associated_kubernetes_resources.yml"]["associated_kubernetes_resource" ][];
10696
10696
};
10697
10697
associated_kubernetes_resource: {
10698
10698
/**
@@ -13771,10 +13771,10 @@ export interface external {
13771
13771
};
13772
13772
reserved_ip_action_unassign: {
13773
13773
type: undefined;
13774
- } & Omit<reserved_ip_action_type[ ], "type"> & Record<string, never>;
13774
+ } & Omit<external["resources/reserved_ips/models/reserved_ip_actions.yml"]["reserved_ip_action_type" ], "type"> & Record<string, never>;
13775
13775
reserved_ip_action_assign: {
13776
13776
type: undefined;
13777
- } & Omit<reserved_ip_action_type[ ], "type"> & {
13777
+ } & Omit<external["resources/reserved_ips/models/reserved_ip_actions.yml"]["reserved_ip_action_type" ], "type"> & {
13778
13778
/**
13779
13779
* @description The ID of the Droplet that the reserved IP will be assigned to.
13780
13780
* @example 758604968
@@ -15984,7 +15984,7 @@ export interface external {
15984
15984
}
15985
15985
"shared/pages.yml": {
15986
15986
pagination: {
15987
- links?: page_links[ ];
15987
+ links?: external["shared/pages.yml"]["page_links" ];
15988
15988
};
15989
15989
page_links: {
15990
15990
/**
@@ -15997,8 +15997,8 @@ export interface external {
15997
15997
*/
15998
15998
pages?: unknown;
15999
15999
};
16000
- backward_links: link_to_first_page[] & link_to_prev_page[ ];
16001
- forward_links: link_to_last_page[] & link_to_next_page[ ];
16000
+ backward_links: external["shared/pages.yml"]["link_to_first_page"] & external["shared/pages.yml"]["link_to_prev_page" ];
16001
+ forward_links: external["shared/pages.yml"]["link_to_last_page"] & external["shared/pages.yml"]["link_to_next_page" ];
16002
16002
link_to_first_page: {
16003
16003
/**
16004
16004
* @description URI of the first page of the results.
0 commit comments