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

DeprecationStatus

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

Deprecation status for a public resource.

interface DeprecationStatus {
deleted?: string;
deprecated?: string;
obsolete?: string;
replacement?: string;
state?:
| "ACTIVE"
| "DELETED"
| "DEPRECATED"
| "OBSOLETE";
}

§Properties

§
deleted?: string
[src]

An optional RFC3339 timestamp on or after which the state of this resource is intended to change to DELETED. This is only informational and the status will not change unless the client explicitly changes it.

§
deprecated?: string
[src]

An optional RFC3339 timestamp on or after which the state of this resource is intended to change to DEPRECATED. This is only informational and the status will not change unless the client explicitly changes it.

§
obsolete?: string
[src]

An optional RFC3339 timestamp on or after which the state of this resource is intended to change to OBSOLETE. This is only informational and the status will not change unless the client explicitly changes it.

§
replacement?: string
[src]

The URL of the suggested replacement for a deprecated resource. The suggested replacement resource must be the same kind of resource as the deprecated resource.

§
state?: "ACTIVE" | "DELETED" | "DEPRECATED" | "OBSOLETE"
[src]

The deprecation state of this resource. This can be ACTIVE, DEPRECATED, OBSOLETE, or DELETED. Operations which communicate the end of life date for an image, can use ACTIVE. Operations which create a new resource using a DEPRECATED resource will return successfully, but with a warning indicating the deprecated resource and recommending its replacement. Operations which use OBSOLETE or DELETED resources will be rejected and result in an error.