Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
feat: Adds support for google.protobuf.Value pipeline parameters in…
Browse files Browse the repository at this point in the history
… the `parameter_values` field (#218)

* feat: Adds support for `google.protobuf.Value` pipeline parameters in the `parameter_values` field

PiperOrigin-RevId: 406492661

Source-Link: googleapis/googleapis@972abb6

Source-Link: googleapis/googleapis-gen@b6774aa
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYjY3NzRhYTNiNjFkMDViZjlmMTBhYTlhZjhkNjIzMTEyNzNkMzVhOSJ9

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Takashi Matsuo <tmatsuo@google.com>
  • Loading branch information
3 people authored Nov 11, 2021
1 parent c07789c commit d05a598
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 6 deletions.
13 changes: 9 additions & 4 deletions protos/google/cloud/aiplatform/v1beta1/pipeline_job.proto
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ message PipelineJob {

// The runtime config of a PipelineJob.
message RuntimeConfig {
// The runtime parameters of the PipelineJob. The parameters will be
// passed into [PipelineJob.pipeline_spec][google.cloud.aiplatform.v1beta1.PipelineJob.pipeline_spec] to replace the placeholders
// at runtime.
map<string, Value> parameters = 1;
// Deprecated. Use [RuntimeConfig.parameter_values] instead. The runtime
// parameters of the PipelineJob. The parameters will be passed into
// [PipelineJob.pipeline_spec][google.cloud.aiplatform.v1beta1.PipelineJob.pipeline_spec] to replace the placeholders at runtime.
map<string, Value> parameters = 1 [deprecated = true];

// Required. A path in a Cloud Storage bucket, which will be treated as the root
// output directory of the pipeline. It is used by the system to
Expand All @@ -63,6 +63,11 @@ message PipelineJob {
// pipeline must have the `storage.objects.get` and `storage.objects.create`
// permissions for this bucket.
string gcs_output_directory = 2 [(google.api.field_behavior) = REQUIRED];

// The runtime parameters of the PipelineJob. The parameters will be
// passed into [PipelineJob.pipeline_spec][google.cloud.aiplatform.v1beta1.PipelineJob.pipeline_spec] to replace the placeholders
// at runtime.
map<string, google.protobuf.Value> parameter_values = 3;
}

// Output only. The resource name of the PipelineJob.
Expand Down
6 changes: 6 additions & 0 deletions protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 65 additions & 1 deletion protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d05a598

Please sign in to comment.