File tree 2 files changed +10
-7
lines changed
packages/clients/src/api/instance/v1
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -1703,6 +1703,7 @@ export const marshalCreatePrivateNICRequest = (
1703
1703
request : CreatePrivateNICRequest ,
1704
1704
defaults : DefaultValues ,
1705
1705
) : Record < string , unknown > => ( {
1706
+ ip_ids : request . ipIds ,
1706
1707
private_network_id : request . privateNetworkId ,
1707
1708
tags : request . tags ,
1708
1709
} )
Original file line number Diff line number Diff line change @@ -888,21 +888,21 @@ export interface VolumeServer {
888
888
/** Volume server template. */
889
889
export interface VolumeServerTemplate {
890
890
/** UUID of the volume. */
891
- id : string
891
+ id ? : string
892
892
/** Force the Instance to boot on this volume. */
893
- boot : boolean
893
+ boot ? : boolean
894
894
/** Name of the volume. */
895
- name : string
895
+ name ? : string
896
896
/** Disk size of the volume, must be a multiple of 512. */
897
- size : number
897
+ size ? : number
898
898
/** Type of the volume. */
899
899
volumeType : VolumeVolumeType
900
900
/** ID of the snapshot on which this volume will be based. */
901
- baseSnapshot : string
901
+ baseSnapshot ? : string
902
902
/** Organization ID of the volume. */
903
- organization : string
903
+ organization ? : string
904
904
/** Project ID of the volume. */
905
- project : string
905
+ project ? : string
906
906
}
907
907
908
908
export interface VolumeSummary {
@@ -1678,6 +1678,8 @@ export type CreatePrivateNICRequest = {
1678
1678
privateNetworkId : string
1679
1679
/** Private NIC tags. */
1680
1680
tags ?: string [ ]
1681
+ /** Ip_ids defined from IPAM. */
1682
+ ipIds ?: string [ ]
1681
1683
}
1682
1684
1683
1685
export type GetPrivateNICRequest = {
You can’t perform that action at this time.
0 commit comments