Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/clients/src/api/instance/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1566,10 +1566,10 @@ export type UpdateIpRequest = {
/** IP ID or IP address */
ip: string
/** Reverse domain name */
reverse?: string
reverse?: string | null
/** An array of keywords you want to tag this IP with */
tags?: Array<string>
server?: string
server?: string | null
}

export type DeleteIpRequest = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export type UpdateServerRequest = {
protected?: boolean
securityGroup?: SecurityGroupTemplate
/** Placement group ID if server must be part of a placement group */
placementGroup?: string
placementGroup?: string | null
/** The server private NICs */
privateNics?: Array<PrivateNIC>
}
Expand Down