File tree 2 files changed +3
-3
lines changed
packages/clients/src/api/instance/v1
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1566,10 +1566,10 @@ export type UpdateIpRequest = {
1566
1566
/** IP ID or IP address */
1567
1567
ip : string
1568
1568
/** Reverse domain name */
1569
- reverse ?: string
1569
+ reverse ?: string | null
1570
1570
/** An array of keywords you want to tag this IP with */
1571
1571
tags ?: Array < string >
1572
- server ?: string
1572
+ server ?: string | null
1573
1573
}
1574
1574
1575
1575
export type DeleteIpRequest = {
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ export type UpdateServerRequest = {
179
179
protected ?: boolean
180
180
securityGroup ?: SecurityGroupTemplate
181
181
/** Placement group ID if server must be part of a placement group */
182
- placementGroup ?: string
182
+ placementGroup ?: string | null
183
183
/** The server private NICs */
184
184
privateNics ?: Array < PrivateNIC >
185
185
}
You can’t perform that action at this time.
0 commit comments