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
1 change: 1 addition & 0 deletions packages_generated/cockpit/src/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ export const unmarshalExporter = (data: unknown): Exporter => {
id: data.id,
name: data.name,
otlpDestination: data.otlp_destination ? unmarshalExporterOTLPDestination(data.otlp_destination) : undefined,
region: data.region,
status: data.status,
updatedAt: unmarshalDate(data.updated_at),
} as Exporter
Expand Down
4 changes: 4 additions & 0 deletions packages_generated/cockpit/src/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,10 @@ export interface Exporter {
* A timestamp of the last update date of the data export.
*/
updatedAt?: Date
/**
* The region in which the export is located.
*/
region: ScwRegion
}


Expand Down
Loading