File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
packages/clients/src/api/instance/v1 Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1755,6 +1755,7 @@ export const marshalCreatePrivateNICRequest = (
17551755 defaults : DefaultValues ,
17561756) : Record < string , unknown > => ( {
17571757 ip_ids : request . ipIds ,
1758+ ipam_ip_ids : request . ipamIpIds ,
17581759 private_network_id : request . privateNetworkId ,
17591760 tags : request . tags ,
17601761} )
Original file line number Diff line number Diff line change @@ -912,8 +912,13 @@ export type CreatePrivateNICRequest = {
912912 privateNetworkId : string
913913 /** Private NIC tags. */
914914 tags ?: string [ ]
915- /** Ip_ids defined from IPAM. */
915+ /** @deprecated Ip_ids defined from IPAM. */
916916 ipIds ?: string [ ]
917+ /**
918+ * UUID of IPAM ips, to be attached to the instance in the requested private
919+ * network.
920+ */
921+ ipamIpIds ?: string [ ]
917922}
918923
919924export interface CreatePrivateNICResponse {
You can’t perform that action at this time.
0 commit comments