Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated execution environment id field to name #5514

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions flyteidl/gen/pb-es/flyteidl/core/execution_envs_pb.ts

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

59 changes: 30 additions & 29 deletions flyteidl/gen/pb-go/flyteidl/core/execution_envs.pb.go

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

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

8 changes: 4 additions & 4 deletions flyteidl/gen/pb-js/flyteidl.d.ts

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

20 changes: 10 additions & 10 deletions flyteidl/gen/pb-js/flyteidl.js

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

4 changes: 2 additions & 2 deletions flyteidl/gen/pb_python/flyteidl/core/execution_envs_pb2.py

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

8 changes: 4 additions & 4 deletions flyteidl/gen/pb_python/flyteidl/core/execution_envs_pb2.pyi

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

5 changes: 3 additions & 2 deletions flyteidl/gen/pb_rust/flyteidl.core.rs

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

5 changes: 3 additions & 2 deletions flyteidl/protos/flyteidl/core/execution_envs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ message ExecutionEnvAssignment {

// ExecutionEnv is a message that is used to specify the execution environment.
message ExecutionEnv {
// id is a unique identifier for the execution environment.
string id = 1;
// name is a human-readable identifier for the execution environment. This is combined with the
// project, domain, and version to uniquely identify an execution environment.
string name = 1;

// type is the type of the execution environment.
string type = 2;
Expand Down
Loading