Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

feat: add new deliver targets and drop causes for Private Service Connect #195

Merged
merged 13 commits into from
Jul 18, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: add new deliver targets and drop causes for Private Service Con…
…nect

PiperOrigin-RevId: 460906802

Source-Link: googleapis/googleapis@fdb523d

Source-Link: https://github.com/googleapis/googleapis-gen/commit/c70c0dc1f6d97041ad2583f85fa206833ce06949
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYzcwYzBkYzFmNmQ5NzA0MWFkMjU4M2Y4NWZhMjA2ODMzY2UwNjk0OSJ9
  • Loading branch information
gcf-owl-bot[bot] committed Jul 14, 2022
commit a92d347945653ffededbcbf0cd453c3ceeee0df6

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,18 @@ message DeliverInfo {

// Target is a Cloud SQL instance.
CLOUD_SQL_INSTANCE = 5;

// Target is a published service using [Private Service
// Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-services).
PSC_PUBLISHED_SERVICE = 6;

// Target is all Google APIs using [Private Service
// Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-apis).
PSC_GOOGLE_API = 7;

// Target is VPC-SC using [Private Service
// Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-apis).
PSC_VPC_SC = 8;
}

// Target type where the packet is delivered to.
Expand Down Expand Up @@ -885,6 +897,13 @@ message DropInfo {
// Packet could be dropped because the VPC connector is not in a running
// state.
VPC_CONNECTOR_NOT_RUNNING = 24;

// Packet could be dropped because it was sent from a different region
// to a regional forwarding without global access.
FORWARDING_RULE_REGION_MISMATCH = 25;

// Privte Service Connect (PSC) connection is not in accepted state.
PSC_CONNECTION_NOT_ACCEPTED = 26;
}

// Cause that the packet is dropped.
Expand Down