123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- syntax = "proto3";
- package google.cloud.connectors.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/connectors/v1;connectors";
- option java_multiple_files = true;
- option java_outer_classname = "RuntimeProto";
- option java_package = "com.google.cloud.connectors.v1";
- message GetRuntimeConfigRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "connectors.googleapis.com/RuntimeConfig"
- }
- ];
- }
- message RuntimeConfig {
- option (google.api.resource) = {
- type: "connectors.googleapis.com/RuntimeConfig"
- pattern: "projects/{project}/locations/{location}/runtimeConfig"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- INACTIVE = 1 [deprecated = true];
-
- ACTIVATING = 2 [deprecated = true];
-
- ACTIVE = 3;
-
- CREATING = 4;
-
- DELETING = 5;
-
- UPDATING = 6;
- }
-
- string location_id = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string connd_topic = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string connd_subscription = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string control_plane_topic = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string control_plane_subscription = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string runtime_endpoint = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- State state = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string schema_gcs_bucket = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string service_directory = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string name = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|