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

RolloutNotificationEvent

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

Payload proto for "clouddeploy.googleapis.com/rollout_notification" Platform Log event that describes the failure to send rollout status change Pub/Sub notification.

interface RolloutNotificationEvent {
message?: string;
pipelineUid?: string;
release?: string;
releaseUid?: string;
rollout?: string;
rolloutUid?: string;
targetId?: string;
type?:
| "TYPE_UNSPECIFIED"
| "TYPE_PUBSUB_NOTIFICATION_FAILURE"
| "TYPE_RESOURCE_STATE_CHANGE"
| "TYPE_PROCESS_ABORTED"
| "TYPE_RESTRICTION_VIOLATED"
| "TYPE_RESOURCE_DELETED"
| "TYPE_ROLLOUT_UPDATE"
| "TYPE_DEPLOY_POLICY_EVALUATION"
| "TYPE_RENDER_STATUES_CHANGE";
}

§Properties

§
message?: string
[src]

Debug message for when a notification fails to send.

§
pipelineUid?: string
[src]

Unique identifier of the DeliveryPipeline.

§
release?: string
[src]

The name of the Release.

§
releaseUid?: string
[src]

Unique identifier of the Release.

§
rollout?: string
[src]

The name of the Rollout.

§
rolloutUid?: string
[src]

Unique identifier of the Rollout.

§
targetId?: string
[src]

ID of the Target that the rollout is deployed to.

§
type?: "TYPE_UNSPECIFIED" | "TYPE_PUBSUB_NOTIFICATION_FAILURE" | "TYPE_RESOURCE_STATE_CHANGE" | "TYPE_PROCESS_ABORTED" | "TYPE_RESTRICTION_VIOLATED" | "TYPE_RESOURCE_DELETED" | "TYPE_ROLLOUT_UPDATE" | "TYPE_DEPLOY_POLICY_EVALUATION" | "TYPE_RENDER_STATUES_CHANGE"
[src]

Type of this notification, e.g. for a Pub/Sub failure.