12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- syntax = "proto3";
- package google.cloud.connectors.v1;
- option go_package = "google.golang.org/genproto/googleapis/cloud/connectors/v1;connectors";
- option java_multiple_files = true;
- message DestinationConfig {
-
- string key = 1;
-
- repeated Destination destinations = 2;
- }
- message Destination {
- oneof destination {
-
-
- string service_attachment = 1;
-
- string host = 2;
- }
-
- int32 port = 3;
- }
|