-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
bugSomething isn't workingSomething isn't working
Description
python-tfe version
0.1.2
Description
When I read a given HCP TF run, the configuration version appears to be lost during the translation from the http response to the pytfe model.
Testing plan
run.id = "run-....":
read_options = RunReadOptions(
include=[
RunIncludeOpt.RUN_PLAN,
RunIncludeOpt.RUN_APPLY,
RunIncludeOpt.RUN_CREATED_BY,
RunIncludeOpt.RUN_WORKSPACE,
RunIncludeOpt.RUN_CONFIG_VER
]
)
try:
detailed_run = tfe_client.runs.read_with_options(run.id, read_options)
print(f"Configuration Version: {detailed_run.configuration_version}")Expected Behavior
I'd expect the associated cv-..... identifier for the configuration version to be included in the response
Actual Behavior
detailed_run.configuration_version is None
Additional Context
N/A
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working