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
2 changes: 2 additions & 0 deletions packages_generated/instance/src/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ export const unmarshalPrivateNIC = (data: unknown): PrivateNIC => {
}

return {
creationDate: unmarshalDate(data.creation_date),
id: data.id,
macAddress: data.mac_address,
privateNetworkId: data.private_network_id,
Expand Down Expand Up @@ -2260,6 +2261,7 @@ const marshalPrivateNIC = (
request: PrivateNIC,
defaults: DefaultValues,
): Record<string, unknown> => ({
creation_date: request.creationDate,
id: request.id,
mac_address: request.macAddress,
private_network_id: request.privateNetworkId,
Expand Down
4 changes: 4 additions & 0 deletions packages_generated/instance/src/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,10 @@ export interface PrivateNIC {
* Private NIC tags.
*/
tags: string[]
/**
* Private NIC creation date.
*/
creationDate?: Date
}

export interface SecurityGroupSummary {
Expand Down
Loading