Red Hat Training

A Red Hat training course is available for Red Hat Virtualization

B.36. 난수 생성기 소스 요소의 이름 변경

사용을 반영하는 이름이 있는 요소에 의해 래핑된 소스 요소 컬렉션을 사용하여 보고되는 난수 생성기 소스입니다. 예를 들어 다음과 같이 보고되는 클러스터의 필요한 난수 생성기 소스입니다.

GET /ovirt-engine/api/clusters/123
<cluster>
  ...
  <required_rng_sources>
    <source>random</source>
  </required_rng_sources>
  ...
</cluster>

또한 다음과 같이 보고되는 데 사용되는 호스트의 난수 생성기 소스입니다.

GET /ovirt-engine/api/hosts/123
<host>
  ...
  <hardware_information>
    <supported_rng_sources>
      <source>random</source>
    </supported_rng_sources>
  </hardware_information>
  ...
</host>

이 기능은 나머지 API와 일치하지 않으며, 여기서 컬렉션은 복수형의 이름으로 래핑되고 동일한 이름으로 단수형으로 래핑됩니다. 이 문제는 이제 해결되었습니다. 이제 필요한 난수 생성기 소스가 다음과 같이 보고됩니다.

GET /ovirt-engine/api/clusters/123
<cluster>
  <required_rng_sources>
    <required_rng_sources>random</required_rng_source>
  </required_rng_sources>
  ...
</cluster>

또한 호스트에서 지원하는 난수 생성 소스는 다음과 같이 보고됩니다.

GET /ovirt-engine/api/hosts/123
<host>
  ...
  <hardware_information>
    <supported_rng_sources>
      <supported_rng_source>random</supported_rng_source>
    </supported_rng_sources>
  </hardware_information>
  ...
</host>

소스 대신 required_rng_ source supported_rng_source 를 사용하십시오.