Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions packages/google-cloud-networkmanagement/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**/node_modules
**/.coverage
build/
docs/
protos/
system-test/
samples/generated/
4 changes: 4 additions & 0 deletions packages/google-cloud-networkmanagement/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "./node_modules/gts",
"root": true
}
4 changes: 2 additions & 2 deletions packages/google-cloud-networkmanagement/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ More Information: [Google Cloud Platform Launch Stages][launch_stages]

## Contributing

Contributions welcome! See the [Contributing Guide](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-networkmanagement/CONTRIBUTING.md).
Contributions welcome! See the [Contributing Guide](https://github.com/googleapis/google-cloud-node/blob/main/CONTRIBUTING.md).

Please note that this `README.md`
and a variety of configuration files in this repository (including `.nycrc` and `tsconfig.json`)
Expand All @@ -139,7 +139,7 @@ are generated from a central template.

Apache Version 2.0

See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-networkmanagement/LICENSE)
See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/LICENSE)

[shell_img]: https://gstatic.com/cloudssh/images/open-btn.png
[projects]: https://console.cloud.google.com/project
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,13 @@ message Endpoint {
// Applicable only to source endpoint.
CloudRunRevisionEndpoint cloud_run_revision = 12;

// A [Cloud Run](https://cloud.google.com/run)
// [job](https://docs.cloud.google.com/run/docs/reference/rest/v2/projects.locations.jobs#Job)
// URI.
// Applicable only to source endpoint.
// The format is: projects/{project}/locations/{location}/jobs/{job}
string cloud_run_job = 24;

// A VPC network URI. For source endpoints, used according to the
// `network_type`. For destination endpoints, used only when the source is an
// external IP address endpoint, and the destination is an internal IP address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ message Step {
// A CloudRunRevisionInfo is populated with starting revision information.
START_FROM_CLOUD_RUN_REVISION = 26;

// Initial state: packet originating from a Cloud Run Job.
// A CloudRunJobInfo is populated with starting Job information.
START_FROM_CLOUD_RUN_JOB = 50;

// Initial state: packet originating from a Storage Bucket. Used only for
// return traces.
// The storage_bucket information is populated.
Expand Down Expand Up @@ -353,6 +357,9 @@ message Step {
// Display information of a Cloud Run revision.
CloudRunRevisionInfo cloud_run_revision = 23;

// Display information of a Cloud Run job.
CloudRunJobInfo cloud_run_job = 45;

// Display information of a NAT.
NatInfo nat = 25;

Expand Down Expand Up @@ -1155,6 +1162,9 @@ message DeliverInfo {

// Target is a GKE Pod.
GKE_POD = 19;

// Target is a Cloud Run Job. Used only for return traces.
CLOUD_RUN_JOB = 20;
}

// Recognized type of a Google Service.
Expand Down Expand Up @@ -1714,6 +1724,9 @@ message DropInfo {
// Packet sent from a Cloud Run revision that is not ready.
CLOUD_RUN_REVISION_NOT_READY = 29;

// Packet sent from a Cloud Run job that is not ready.
CLOUD_RUN_JOB_NOT_READY = 113;

// Packet was dropped inside Private Service Connect service producer.
DROPPED_INSIDE_PSC_SERVICE_PRODUCER = 37;

Expand Down Expand Up @@ -2121,6 +2134,18 @@ message CloudRunRevisionInfo {
string service_uri = 5;
}

// For display only. Metadata associated with a Cloud Run job.
message CloudRunJobInfo {
// Name of a Cloud Run job.
string display_name = 1;

// URI of a Cloud Run job.
string uri = 2;

// Location in which this job is deployed.
string location = 3;
}

// For display only. Metadata associated with an App Engine version.
message AppEngineVersionInfo {
// Name of an App Engine version.
Expand Down
Loading
Loading