26 lines
764 B
Protocol Buffer
26 lines
764 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gcp_launcher;
|
|
|
|
import "google/rpc/status.proto";
|
|
|
|
// The schema of the GCP resource. It will be used to parse the output parameter
|
|
// "gcp_resources"
|
|
message GcpResources {
|
|
// The metadata of a resource
|
|
message Resource {
|
|
// The type of the resource. E.g. DataflowJob
|
|
optional string resource_type = 1;
|
|
// The unique resource uri. E.g.
|
|
// https://dataflow.googleapis.com/v1b3/projects/project_1/locations/us-central1/jobs/123
|
|
optional string resource_uri = 2;
|
|
// The error from the resource.
|
|
google.rpc.Status error = 3;
|
|
// Optional. Used by component to save extra custom metadata for the resource.
|
|
repeated string labels = 4;
|
|
}
|
|
|
|
// A list of resources.
|
|
repeated Resource resources = 1;
|
|
}
|