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

CheckUpgradeResponse

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

Message containing information about the result of an upgrade check operation.

interface CheckUpgradeResponse {
readonly buildLogUri?: string;
readonly containsPypiModulesConflict?: "CONFLICT_RESULT_UNSPECIFIED" | "CONFLICT" | "NO_CONFLICT";
imageVersion?: string;
readonly pypiConflictBuildLogExtract?: string;
pypiDependencies?: {
[key: string]: string;
}
;
}

§Properties

§
readonly buildLogUri?: string
[src]

Output only. Url for a docker build log of an upgraded image.

§
readonly containsPypiModulesConflict?: "CONFLICT_RESULT_UNSPECIFIED" | "CONFLICT" | "NO_CONFLICT"
[src]

Output only. Whether build has succeeded or failed on modules conflicts.

§
imageVersion?: string
[src]

Composer image for which the build was happening.

§
readonly pypiConflictBuildLogExtract?: string
[src]

Output only. Extract from a docker image build log containing information about pypi modules conflicts.

§
pypiDependencies?: {
[key: string]: string;
}
[src]

Pypi dependencies specified in the environment configuration, at the time when the build was triggered.