@@ -219,7 +219,7 @@ export interface Volume {
219219 /**
220220 * @deprecated Show the volume NBD export URI (deprecated, will always be empty).
221221 */
222- exportUri ? : string
222+ exportUri : string
223223 /**
224224 * Volume disk size.
225225 */
@@ -630,11 +630,11 @@ export interface Server {
630630 /**
631631 * @deprecated True to configure the instance so it uses the routed IP mode. Use of `routed_ip_enabled` as `False` is deprecated.
632632 */
633- routedIpEnabled ? : boolean
633+ routedIpEnabled : boolean
634634 /**
635635 * @deprecated True if IPv6 is enabled (deprecated and always `False` when `routed_ip_enabled` is `True`).
636636 */
637- enableIpv6 ? : boolean
637+ enableIpv6 : boolean
638638 /**
639639 * Instance host name.
640640 */
@@ -829,7 +829,7 @@ export interface SecurityGroup {
829829 /**
830830 * @deprecated True if it is your default security group for this Organization ID.
831831 */
832- organizationDefault ? : boolean
832+ organizationDefault : boolean
833833 /**
834834 * True if it is your default security group for this Project ID.
835835 */
@@ -1018,12 +1018,12 @@ export interface Dashboard {
10181018 /**
10191019 * @deprecated
10201020 */
1021- volumesBSsdCount ? : number
1021+ volumesBSsdCount : number
10221022 volumesLSsdTotalSize : number
10231023 /**
10241024 * @deprecated
10251025 */
1026- volumesBSsdTotalSize ? : number
1026+ volumesBSsdTotalSize : number
10271027 privateNicsCount : number
10281028 placementGroupsCount : number
10291029 volumesScratchCount : number
@@ -1055,7 +1055,7 @@ export interface ServerType {
10551055 /**
10561056 * @deprecated Estimated monthly price, for a 30 days month, in Euro.
10571057 */
1058- monthlyPrice ? : number
1058+ monthlyPrice : number
10591059 /**
10601060 * Hourly price in Euro.
10611061 */
@@ -1552,7 +1552,7 @@ export type CreateServerRequest = {
15521552 /**
15531553 * @deprecated True if IPv6 is enabled on the server (deprecated and always `False` when `routed_ip_enabled` is `True`).
15541554 */
1555- enableIpv6 ? : boolean
1555+ enableIpv6 : boolean
15561556 /**
15571557 * @deprecated ID of the reserved IP to attach to the Instance.
15581558 */
0 commit comments