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

Step

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

A simulated forwarding path is composed of multiple steps. Each step has a well-defined state and an associated configuration.

interface Step {
abort?: AbortInfo;
appEngineVersion?: AppEngineVersionInfo;
causesDrop?: boolean;
cloudFunction?: CloudFunctionInfo;
cloudRunRevision?: CloudRunRevisionInfo;
cloudSqlInstance?: CloudSQLInstanceInfo;
deliver?: DeliverInfo;
description?: string;
drop?: DropInfo;
endpoint?: EndpointInfo;
firewall?: FirewallInfo;
forward?: ForwardInfo;
forwardingRule?: ForwardingRuleInfo;
gkeMaster?: GKEMasterInfo;
googleService?: GoogleServiceInfo;
instance?: InstanceInfo;
loadBalancer?: LoadBalancerInfo;
loadBalancerBackendInfo?: LoadBalancerBackendInfo;
nat?: NatInfo;
network?: NetworkInfo;
projectId?: string;
proxyConnection?: ProxyConnectionInfo;
route?: RouteInfo;
state?:
| "STATE_UNSPECIFIED"
| "START_FROM_INSTANCE"
| "START_FROM_INTERNET"
| "START_FROM_GOOGLE_SERVICE"
| "START_FROM_PRIVATE_NETWORK"
| "START_FROM_GKE_MASTER"
| "START_FROM_CLOUD_SQL_INSTANCE"
| "START_FROM_CLOUD_FUNCTION"
| "START_FROM_APP_ENGINE_VERSION"
| "START_FROM_CLOUD_RUN_REVISION"
| "START_FROM_STORAGE_BUCKET"
| "START_FROM_PSC_PUBLISHED_SERVICE"
| "APPLY_INGRESS_FIREWALL_RULE"
| "APPLY_EGRESS_FIREWALL_RULE"
| "APPLY_ROUTE"
| "APPLY_FORWARDING_RULE"
| "ANALYZE_LOAD_BALANCER_BACKEND"
| "SPOOFING_APPROVED"
| "ARRIVE_AT_INSTANCE"
| "ARRIVE_AT_INTERNAL_LOAD_BALANCER"
| "ARRIVE_AT_EXTERNAL_LOAD_BALANCER"
| "ARRIVE_AT_VPN_GATEWAY"
| "ARRIVE_AT_VPN_TUNNEL"
| "ARRIVE_AT_VPC_CONNECTOR"
| "NAT"
| "PROXY_CONNECTION"
| "DELIVER"
| "DROP"
| "FORWARD"
| "ABORT"
| "VIEWER_PERMISSION_MISSING";
storageBucket?: StorageBucketInfo;
vpcConnector?: VpcConnectorInfo;
vpnGateway?: VpnGatewayInfo;
vpnTunnel?: VpnTunnelInfo;
}

§Properties

§

Display information of the final state "abort" and reason.

§
appEngineVersion?: AppEngineVersionInfo
[src]

Display information of an App Engine service version.

§
causesDrop?: boolean
[src]

This is a step that leads to the final state Drop.

§
cloudFunction?: CloudFunctionInfo
[src]

Display information of a Cloud Function.

§
cloudRunRevision?: CloudRunRevisionInfo
[src]

Display information of a Cloud Run revision.

§
cloudSqlInstance?: CloudSQLInstanceInfo
[src]

Display information of a Cloud SQL instance.

§

Display information of the final state "deliver" and reason.

§
description?: string
[src]

A description of the step. Usually this is a summary of the state.

§

Display information of the final state "drop" and reason.

§

Display information of the source and destination under analysis. The endpoint information in an intermediate state may differ with the initial input, as it might be modified by state like NAT, or Connection Proxy.

§

Display information of a Compute Engine firewall rule.

§

Display information of the final state "forward" and reason.

§
forwardingRule?: ForwardingRuleInfo
[src]

Display information of a Compute Engine forwarding rule.

§
gkeMaster?: GKEMasterInfo
[src]

Display information of a Google Kubernetes Engine cluster master.

§
googleService?: GoogleServiceInfo
[src]

Display information of a Google service

§

Display information of a Compute Engine instance.

§
loadBalancer?: LoadBalancerInfo
[src]

Display information of the load balancers. Deprecated in favor of the load_balancer_backend_info field, not used in new tests.

§
loadBalancerBackendInfo?: LoadBalancerBackendInfo
[src]

Display information of a specific load balancer backend.

§

Display information of a NAT.

§

Display information of a Google Cloud network.

§
projectId?: string
[src]

Project ID that contains the configuration this step is validating.

§
proxyConnection?: ProxyConnectionInfo
[src]

Display information of a ProxyConnection.

§

Display information of a Compute Engine route.

§
state?: "STATE_UNSPECIFIED" | "START_FROM_INSTANCE" | "START_FROM_INTERNET" | "START_FROM_GOOGLE_SERVICE" | "START_FROM_PRIVATE_NETWORK" | "START_FROM_GKE_MASTER" | "START_FROM_CLOUD_SQL_INSTANCE" | "START_FROM_CLOUD_FUNCTION" | "START_FROM_APP_ENGINE_VERSION" | "START_FROM_CLOUD_RUN_REVISION" | "START_FROM_STORAGE_BUCKET" | "START_FROM_PSC_PUBLISHED_SERVICE" | "APPLY_INGRESS_FIREWALL_RULE" | "APPLY_EGRESS_FIREWALL_RULE" | "APPLY_ROUTE" | "APPLY_FORWARDING_RULE" | "ANALYZE_LOAD_BALANCER_BACKEND" | "SPOOFING_APPROVED" | "ARRIVE_AT_INSTANCE" | "ARRIVE_AT_INTERNAL_LOAD_BALANCER" | "ARRIVE_AT_EXTERNAL_LOAD_BALANCER" | "ARRIVE_AT_VPN_GATEWAY" | "ARRIVE_AT_VPN_TUNNEL" | "ARRIVE_AT_VPC_CONNECTOR" | "NAT" | "PROXY_CONNECTION" | "DELIVER" | "DROP" | "FORWARD" | "ABORT" | "VIEWER_PERMISSION_MISSING"
[src]

Each step is in one of the pre-defined states.

§
storageBucket?: StorageBucketInfo
[src]

Display information of a Storage Bucket. Used only for return traces.

§
vpcConnector?: VpcConnectorInfo
[src]

Display information of a VPC connector.

§
vpnGateway?: VpnGatewayInfo
[src]

Display information of a Compute Engine VPN gateway.

§
vpnTunnel?: VpnTunnelInfo
[src]

Display information of a Compute Engine VPN tunnel.