File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/clients/src/api/instance/v1 Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1566,10 +1566,10 @@ export type UpdateIpRequest = {
15661566 /** IP ID or IP address */
15671567 ip : string
15681568 /** Reverse domain name */
1569- reverse ?: string
1569+ reverse ?: string | null
15701570 /** An array of keywords you want to tag this IP with */
15711571 tags ?: Array < string >
1572- server ?: string
1572+ server ?: string | null
15731573}
15741574
15751575export type DeleteIpRequest = {
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ export type UpdateServerRequest = {
179179 protected ?: boolean
180180 securityGroup ?: SecurityGroupTemplate
181181 /** Placement group ID if server must be part of a placement group */
182- placementGroup ?: string
182+ placementGroup ?: string | null
183183 /** The server private NICs */
184184 privateNics ?: Array < PrivateNIC >
185185}
You can’t perform that action at this time.
0 commit comments