diff --git a/api/v2alpha1/pipeline_spec.proto b/api/v2alpha1/pipeline_spec.proto index cdd6049918c..9eeb8fe4988 100644 --- a/api/v2alpha1/pipeline_spec.proto +++ b/api/v2alpha1/pipeline_spec.proto @@ -1085,7 +1085,12 @@ message SinglePlatformSpec { // Mirrors PipelineSpec.deployment_spec structure PlatformDeploymentConfig deployment_spec = 1; - reserved 2, 3; + // Name of the platform. For example, "google_cloud" + string platform = 2; + + // Arbitrary configuration, which will be defined by the platform + // protos/libraries. + google.protobuf.Struct config = 3; }