File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
packages/clients/src/api/instance/v1 Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -320,6 +320,7 @@ const unmarshalServerIp = (data: unknown) => {
320320 id : data . id ,
321321 netmask : data . netmask ,
322322 provisioningMode : data . provisioning_mode ,
323+ tags : data . tags ,
323324 } as ServerIp
324325}
325326
@@ -1554,6 +1555,7 @@ const marshalServerIp = (
15541555 id : request . id ,
15551556 netmask : request . netmask ,
15561557 provisioning_mode : request . provisioningMode ,
1558+ tags : request . tags ,
15571559} )
15581560
15591561const marshalServerIpv6 = (
Original file line number Diff line number Diff line change @@ -635,6 +635,8 @@ export interface ServerIp {
635635 dynamic : boolean
636636 /** Information about this address provisioning mode. */
637637 provisioningMode : ServerIpProvisioningMode
638+ /** Tags associated with the IP. */
639+ tags : string [ ]
638640}
639641
640642/** Server. ipv6. */
You can’t perform that action at this time.
0 commit comments