Red Hat Training

A Red Hat training course is available for Red Hat Virtualization

B.53. reported_configurations.in_sync 를 network_attachment로 이동

버전 3의 API에서 XML 스키마 유형 ReportedConfigurations 에는 in_sync 속성이 있었습니다.

<network_attachment>
  <reported_configurations>
    <in_sync>true</in_sync>
    <reported_configuration>
      ...
    </reported_configuration>
    ...
  </reported_configurations>
</network_attachment>

API 버전 4에서 사용하는 사양 메커니즘에서는 목록 유형(보고된 구성 목록)이 속성을 가질 수 없기 때문에 이를 표시할 수 없습니다. 이를 나타내기 위해 속성이 enclosing network_attachment 로 이동되었습니다.

<network_attachment>
  <in_sync>true</in_sync>
  <reported_configurations>
    <reported_configuration>
      ...
    </reported_configuration>
    ...
  </reported_configurations>
</network_attachment>