How to programmatically get proxy description

kirill-ageev
Participant II

I'd like to get proxy Description data for logging, but seems it's not available in variables reference . I can get it using management API but I can't use it in proxy.

Solved Solved
0 1 322
1 ACCEPTED SOLUTION

Correct: it is not possible to get that information at runtime, unless you invoke the Management API to query it.

A better approach might be to include a step in your CI/CD process in which a script will

  • query the mgmt API
  • provision a KVM entry with a copy of the relevant information

You will need to modify the proxy to include a KVM-Get step to query the KVM entry. unlike query of the Administrative API, KVM query is designed for high-throughput online performance.

View solution in original post

1 REPLY 1

Correct: it is not possible to get that information at runtime, unless you invoke the Management API to query it.

A better approach might be to include a step in your CI/CD process in which a script will

  • query the mgmt API
  • provision a KVM entry with a copy of the relevant information

You will need to modify the proxy to include a KVM-Get step to query the KVM entry. unlike query of the Administrative API, KVM query is designed for high-throughput online performance.