Skip to content

Retrieve All Accessible Variables in a WfRun #1319

@mijailr

Description

The ListVariables method currently returns only the variables owned by a WfRun and does not include those inherited from a parent WfRun.
The request is to include them in the response and still preserve the access level to diferentiate them.

Proposal

Modify the ListVariables method to also include inherited variables in the response while preserving the access level to differentiate them.

ex:

// A list of Variables.
message VariableList {
  // A list of Variable objects.
  repeated VariableListResult results = 1;
}

message VariableListResult {
  WfRunVariableAccessLevel access_level = 1;
  Variable variable = 2;
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    featureIssue that denotes a new feature, request, or performance improvement.serverAffects the core LH Server code.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions