RetryPhase
import type { RetryPhase } from "https://googleapis.deno.dev/v1/clouddeploy:v1.ts";
RetryPhase contains the retry attempts and the metadata for initiating a new attempt.
interface RetryPhase {
readonly attempts?: RetryAttempt[];
readonly backoffMode?: "BACKOFF_MODE_UNSPECIFIED" | "BACKOFF_MODE_LINEAR" | "BACKOFF_MODE_EXPONENTIAL";
readonly totalAttempts?: bigint;
}