We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 783ba6b commit efaf8c6Copy full SHA for efaf8c6
packages/clients/src/api/instance/v1/api.gen.ts
@@ -1420,6 +1420,7 @@ export class API extends ParentAPI {
1420
? request.tags.join(',')
1421
: undefined,
1422
],
1423
+ ['type', request.type],
1424
),
1425
},
1426
unmarshalListIpsResponse,
packages/clients/src/api/instance/v1/types.gen.ts
@@ -1636,6 +1636,11 @@ export type ListIpsRequest = {
1636
perPage?: number
1637
/** A positive integer to choose the page to return. */
1638
page?: number
1639
+ /**
1640
+ * Filter on the IP Mobility IP type (whose value should be either 'nat',
1641
+ * 'routed_ipv4' or 'routed_ipv6').
1642
+ */
1643
+ type?: string
1644
}
1645
1646
export type CreateIpRequest = {
0 commit comments