File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ export const unmarshalPrivateNIC = (data: unknown): PrivateNIC => {
157157 }
158158
159159 return {
160+ creationDate : unmarshalDate ( data . creation_date ) ,
160161 id : data . id ,
161162 macAddress : data . mac_address ,
162163 privateNetworkId : data . private_network_id ,
@@ -2260,6 +2261,7 @@ const marshalPrivateNIC = (
22602261 request : PrivateNIC ,
22612262 defaults : DefaultValues ,
22622263) : Record < string , unknown > => ( {
2264+ creation_date : request . creationDate ,
22632265 id : request . id ,
22642266 mac_address : request . macAddress ,
22652267 private_network_id : request . privateNetworkId ,
Original file line number Diff line number Diff line change @@ -334,6 +334,10 @@ export interface PrivateNIC {
334334 * Private NIC tags.
335335 */
336336 tags : string [ ]
337+ /**
338+ * Private NIC creation date.
339+ */
340+ creationDate ?: Date
337341}
338342
339343export interface SecurityGroupSummary {
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export type {
2525 DomainLastStatusAutoconfigStateReason ,
2626 DomainLastStatusDkimRecord ,
2727 DomainLastStatusDmarcRecord ,
28+ DomainLastStatusMXRecord ,
2829 DomainLastStatusRecordStatus ,
2930 DomainLastStatusSpfRecord ,
3031 DomainRecords ,
You can’t perform that action at this time.
0 commit comments