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

UpgradeStepItem

import type { UpgradeStepItem } from "https://aws-api.deno.dev/v0.3/services/opensearch.ts?docs=full";

Represents a single step of the upgrade or upgrade eligibility check workflow.

interface UpgradeStepItem {
Issues?: string[] | null;
ProgressPercent?: number | null;
UpgradeStep?: UpgradeStep | null;
UpgradeStepStatus?: UpgradeStatus | null;
}

§Properties

§
Issues?: string[] | null
[src]

A list of strings containing detailed information about the errors encountered in a particular step.

§
ProgressPercent?: number | null
[src]

The floating point value representing the progress percentage of a particular step.

§
UpgradeStep?: UpgradeStep | null
[src]

One of three steps an upgrade or upgrade eligibility check goes through:

  • PreUpgradeCheck
  • Snapshot
  • Upgrade
§
UpgradeStepStatus?: UpgradeStatus | null
[src]

The current status of the upgrade. The status can take one of the following values:

  • In Progress
  • Succeeded
  • Succeeded with Issues
  • Failed