Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Report

import type { Report } from "https://googleapis.deno.dev/v1/migrationcenter:v1.ts";

Report represents a point-in-time rendering of the ReportConfig results.

interface Report {
readonly createTime?: Date;
description?: string;
displayName?: string;
readonly name?: string;
state?:
| "STATE_UNSPECIFIED"
| "PENDING"
| "SUCCEEDED"
| "FAILED";
readonly summary?: ReportSummary;
type?: "TYPE_UNSPECIFIED" | "TOTAL_COST_OF_OWNERSHIP";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Creation timestamp.

§
description?: string
[src]

Free-text description.

§
displayName?: string
[src]

User-friendly display name. Maximum length is 63 characters.

§
readonly name?: string
[src]

Output only. Name of resource.

§
state?: "STATE_UNSPECIFIED" | "PENDING" | "SUCCEEDED" | "FAILED"
[src]

Report creation state.

§
readonly summary?: ReportSummary
[src]

Output only. Summary view of the Report.

§
type?: "TYPE_UNSPECIFIED" | "TOTAL_COST_OF_OWNERSHIP"
[src]

Report type.

§
readonly updateTime?: Date
[src]

Output only. Last update timestamp.