python-openstackclient 8.3.0__tar.gz → 9.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1450) hide show
  1. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/.pre-commit-config.yaml +2 -16
  2. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/AUTHORS +5 -0
  3. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/ChangeLog +21 -0
  4. {python_openstackclient-8.3.0/python_openstackclient.egg-info → python_openstackclient-9.0.0}/PKG-INFO +1 -1
  5. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/bindep.txt +1 -1
  6. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/requirements.txt +1 -1
  7. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/examples/common.py +1 -1
  8. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/module.py +1 -1
  9. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/quota.py +31 -17
  10. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/server.py +2 -2
  11. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/common.py +31 -0
  12. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/service.py +3 -1
  13. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/federation_protocol.py +39 -40
  14. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/limit.py +85 -84
  15. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/project.py +181 -112
  16. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/registered_limit.py +82 -99
  17. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/tag.py +0 -11
  18. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/image.py +2 -1
  19. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_limit.py +47 -0
  20. python_openstackclient-9.0.0/openstackclient/tests/functional/image/v2/test_metadef_objects.py +69 -0
  21. python_openstackclient-9.0.0/openstackclient/tests/functional/volume/v3/test_volume_snapshot.py +158 -0
  22. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_quota.py +59 -0
  23. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_server.py +6 -8
  24. python_openstackclient-9.0.0/openstackclient/tests/unit/identity/v3/test_limit.py +452 -0
  25. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_project.py +831 -512
  26. python_openstackclient-9.0.0/openstackclient/tests/unit/identity/v3/test_protocol.py +222 -0
  27. python_openstackclient-9.0.0/openstackclient/tests/unit/identity/v3/test_registered_limit.py +665 -0
  28. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_image.py +5 -5
  29. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_consistency_group.py +8 -2
  30. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_volume.py +7 -6
  31. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume.py +34 -12
  32. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/consistency_group.py +8 -8
  33. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/consistency_group_snapshot.py +2 -2
  34. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/qos_specs.py +2 -2
  35. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/volume.py +12 -5
  36. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/volume_backup.py +2 -2
  37. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/volume_snapshot.py +2 -2
  38. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/volume_transfer_request.py +2 -2
  39. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/volume_type.py +5 -5
  40. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume.py +14 -7
  41. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_backup.py +2 -2
  42. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_snapshot.py +2 -2
  43. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_transfer_request.py +2 -2
  44. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_type.py +5 -5
  45. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/pyproject.toml +2 -10
  46. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0/python_openstackclient.egg-info}/PKG-INFO +1 -1
  47. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/python_openstackclient.egg-info/SOURCES.txt +11 -0
  48. python_openstackclient-9.0.0/python_openstackclient.egg-info/pbr.json +1 -0
  49. python_openstackclient-9.0.0/releasenotes/notes/bug-2137636-fix-quota-usage-display-2d8f07dccc21f79c.yaml +5 -0
  50. python_openstackclient-9.0.0/releasenotes/notes/bug-2138903-f75c7348f22db195.yaml +5 -0
  51. python_openstackclient-9.0.0/releasenotes/notes/fix-resize-server-args-required-2e9013bcbf207f6a.yaml +8 -0
  52. python_openstackclient-9.0.0/releasenotes/notes/limits-project-domain-option-84bfbb0e30e21b73.yaml +5 -0
  53. python_openstackclient-9.0.0/releasenotes/notes/migrate-federation-protocol-to-sdk-43dc2b50fb277da6.yaml +7 -0
  54. python_openstackclient-9.0.0/releasenotes/notes/migrate-limit-to-sdk-378037ec2b79e302.yaml +9 -0
  55. python_openstackclient-9.0.0/releasenotes/notes/migrate-project-to-sdk-9201efd2804371de.yaml +7 -0
  56. python_openstackclient-9.0.0/releasenotes/notes/migrate-registered-limit-to-sdk-36b6451e3a799a43.yaml +10 -0
  57. python_openstackclient-9.0.0/releasenotes/notes/use-project-domain-for-parent-cb29ee3f5adeb647.yaml +5 -0
  58. python_openstackclient-9.0.0/releasenotes/notes/volume-delete-cascade-384003efc8896096.yaml +6 -0
  59. python_openstackclient-9.0.0/tox.ini +131 -0
  60. python_openstackclient-8.3.0/openstackclient/tests/functional/volume/v3/test_volume_snapshot.py +0 -244
  61. python_openstackclient-8.3.0/openstackclient/tests/unit/identity/v3/test_limit.py +0 -400
  62. python_openstackclient-8.3.0/openstackclient/tests/unit/identity/v3/test_protocol.py +0 -213
  63. python_openstackclient-8.3.0/openstackclient/tests/unit/identity/v3/test_registered_limit.py +0 -530
  64. python_openstackclient-8.3.0/python_openstackclient.egg-info/pbr.json +0 -1
  65. python_openstackclient-8.3.0/tox.ini +0 -129
  66. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/.coveragerc +0 -0
  67. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/.git-blame-ignore-revs +0 -0
  68. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/.mailmap +0 -0
  69. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/.stestr.conf +0 -0
  70. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/.zuul.yaml +0 -0
  71. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/CONTRIBUTING.rst +0 -0
  72. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/Dockerfile +0 -0
  73. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/HACKING.rst +0 -0
  74. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/LICENSE +0 -0
  75. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/README.rst +0 -0
  76. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/Makefile +0 -0
  77. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/_extra/.htaccess +0 -0
  78. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/_hidden/ec2-credentials.rst +0 -0
  79. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/_hidden/endpoint.rst +0 -0
  80. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/_hidden/image.rst +0 -0
  81. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/_hidden/project.rst +0 -0
  82. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/_hidden/role.rst +0 -0
  83. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/_hidden/service.rst +0 -0
  84. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/_hidden/token.rst +0 -0
  85. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/_hidden/user.rst +0 -0
  86. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/authentication.rst +0 -0
  87. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/backwards-incompatible.rst +0 -0
  88. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-list.rst +0 -0
  89. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/access-rules.rst +0 -0
  90. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/access-token.rst +0 -0
  91. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/address-group.rst +0 -0
  92. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/address-scope.rst +0 -0
  93. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/aggregate.rst +0 -0
  94. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/application-credentials.rst +0 -0
  95. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/availability-zone.rst +0 -0
  96. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/block-storage-cleanup.rst +0 -0
  97. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/block-storage-cluster.rst +0 -0
  98. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/block-storage-log-level.rst +0 -0
  99. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/block-storage-manage.rst +0 -0
  100. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/block-storage-resource-filter.rst +0 -0
  101. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/catalog.rst +0 -0
  102. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/command.rst +0 -0
  103. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/complete.rst +0 -0
  104. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/compute-agent.rst +0 -0
  105. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/compute-service.rst +0 -0
  106. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/configuration.rst +0 -0
  107. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/consistency-group-snapshot.rst +0 -0
  108. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/consistency-group.rst +0 -0
  109. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/console-connection.rst +0 -0
  110. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/console-log.rst +0 -0
  111. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/console-url.rst +0 -0
  112. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/consumer.rst +0 -0
  113. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/container.rst +0 -0
  114. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/credential.rst +0 -0
  115. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/default-security-group-rule.rst +0 -0
  116. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/domain.rst +0 -0
  117. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/ec2-credentials-v2.rst +0 -0
  118. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/ec2-credentials-v3.rst +0 -0
  119. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/endpoint-v2.rst +0 -0
  120. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/endpoint-v3.rst +0 -0
  121. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/endpoint_group.rst +0 -0
  122. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/extension.rst +0 -0
  123. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/federation-domain-project.rst +0 -0
  124. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/federation-protocol.rst +0 -0
  125. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/flavor.rst +0 -0
  126. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/floating-ip-pool.rst +0 -0
  127. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/floating-ip-port-forwarding.rst +0 -0
  128. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/floating-ip.rst +0 -0
  129. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/group.rst +0 -0
  130. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/host.rst +0 -0
  131. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/hypervisor-stats.rst +0 -0
  132. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/hypervisor.rst +0 -0
  133. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/identity-provider.rst +0 -0
  134. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/image-member.rst +0 -0
  135. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/image-metadef.rst +0 -0
  136. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/image-task.rst +0 -0
  137. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/image-v1.rst +0 -0
  138. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/image-v2.rst +0 -0
  139. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/implied_role.rst +0 -0
  140. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/ip-availability.rst +0 -0
  141. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/keypair.rst +0 -0
  142. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/limit.rst +0 -0
  143. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/limits.rst +0 -0
  144. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/local-ip-association.rst +0 -0
  145. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/local-ip.rst +0 -0
  146. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/mapping.rst +0 -0
  147. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/module.rst +0 -0
  148. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-agent.rst +0 -0
  149. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-auto-allocated-topology.rst +0 -0
  150. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-flavor-profile.rst +0 -0
  151. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-flavor.rst +0 -0
  152. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-l3-conntrack-helper.rst +0 -0
  153. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-meter-rule.rst +0 -0
  154. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-meter.rst +0 -0
  155. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-qos-policy.rst +0 -0
  156. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-qos-rule-type.rst +0 -0
  157. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-qos-rule.rst +0 -0
  158. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-rbac.rst +0 -0
  159. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-segment.rst +0 -0
  160. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-service-provider.rst +0 -0
  161. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network-trunk.rst +0 -0
  162. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network.rst +0 -0
  163. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/network_segment_range.rst +0 -0
  164. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/object-store-account.rst +0 -0
  165. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/object.rst +0 -0
  166. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/policy.rst +0 -0
  167. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/port.rst +0 -0
  168. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/project-cleanup.rst +0 -0
  169. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/project-v2.rst +0 -0
  170. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/project-v3.rst +0 -0
  171. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/quota.rst +0 -0
  172. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/region.rst +0 -0
  173. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/registered-limit.rst +0 -0
  174. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/request-token.rst +0 -0
  175. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/role-assignment.rst +0 -0
  176. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/role-v2.rst +0 -0
  177. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/role-v3.rst +0 -0
  178. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/router-ndp-proxy.rst +0 -0
  179. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/router.rst +0 -0
  180. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/security-group-rule.rst +0 -0
  181. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/security-group.rst +0 -0
  182. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/server-backup.rst +0 -0
  183. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/server-event.rst +0 -0
  184. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/server-group.rst +0 -0
  185. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/server-image.rst +0 -0
  186. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/server-migration.rst +0 -0
  187. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/server.rst +0 -0
  188. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/service-provider.rst +0 -0
  189. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/service-v2.rst +0 -0
  190. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/service-v3.rst +0 -0
  191. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/subnet-pool.rst +0 -0
  192. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/subnet.rst +0 -0
  193. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/token-v2.rst +0 -0
  194. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/token-v3.rst +0 -0
  195. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/trust.rst +0 -0
  196. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/usage.rst +0 -0
  197. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/user-v2.rst +0 -0
  198. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/user-v3.rst +0 -0
  199. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/versions.rst +0 -0
  200. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-attachment.rst +0 -0
  201. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-backend.rst +0 -0
  202. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-backup.rst +0 -0
  203. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-group-snapshot.rst +0 -0
  204. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-group-type.rst +0 -0
  205. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-group.rst +0 -0
  206. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-host.rst +0 -0
  207. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-message.rst +0 -0
  208. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-qos.rst +0 -0
  209. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-service.rst +0 -0
  210. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-snapshot.rst +0 -0
  211. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-transfer-request.rst +0 -0
  212. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume-type.rst +0 -0
  213. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/command-objects/volume.rst +0 -0
  214. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/commands.rst +0 -0
  215. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/data/cinder.csv +0 -0
  216. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/data/glance.csv +0 -0
  217. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/data/keystone.csv +0 -0
  218. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/data/neutron.csv +0 -0
  219. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/data/nova.csv +0 -0
  220. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/data/swift.csv +0 -0
  221. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/decoder.rst +0 -0
  222. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/index.rst +0 -0
  223. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/interactive.rst +0 -0
  224. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/man/openstack.rst +0 -0
  225. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/aodh.rst +0 -0
  226. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/barbican.rst +0 -0
  227. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/cyborg.rst +0 -0
  228. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/designate.rst +0 -0
  229. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/gnocchi.rst +0 -0
  230. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/heat.rst +0 -0
  231. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/index.rst +0 -0
  232. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/ironic-inspector.rst +0 -0
  233. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/ironic.rst +0 -0
  234. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/magnum.rst +0 -0
  235. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/manila.rst +0 -0
  236. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/mistral.rst +0 -0
  237. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/neutron.rst +0 -0
  238. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/octavia.rst +0 -0
  239. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/placement.rst +0 -0
  240. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/trove.rst +0 -0
  241. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/watcher.rst +0 -0
  242. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/zaqar.rst +0 -0
  243. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/cli/plugin-commands/zun.rst +0 -0
  244. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/conf.py +0 -0
  245. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/configuration/index.rst +0 -0
  246. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/command-beta.rst +0 -0
  247. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/command-errors.rst +0 -0
  248. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/command-logs.rst +0 -0
  249. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/command-options.rst +0 -0
  250. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/command-wrappers.rst +0 -0
  251. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/developing.rst +0 -0
  252. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/humaninterfaceguide.rst +0 -0
  253. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/index.rst +0 -0
  254. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/contributor/plugins.rst +0 -0
  255. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/source/index.rst +0 -0
  256. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/doc/test/redirect-tests.txt +0 -0
  257. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/examples/object_api.py +0 -0
  258. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/examples/openstack.sh +0 -0
  259. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/examples/osc-lib.py +0 -0
  260. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/hacking/checks.py +0 -0
  261. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/__init__.py +0 -0
  262. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/api/__init__.py +0 -0
  263. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/api/api.py +0 -0
  264. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/api/compute_v2.py +0 -0
  265. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/api/image_v1.py +0 -0
  266. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/api/image_v2.py +0 -0
  267. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/api/object_store_v1.py +0 -0
  268. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/api/volume_v2.py +0 -0
  269. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/api/volume_v3.py +0 -0
  270. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/command.py +0 -0
  271. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/__init__.py +0 -0
  272. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/availability_zone.py +0 -0
  273. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/clientmanager.py +0 -0
  274. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/configuration.py +0 -0
  275. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/envvars.py +0 -0
  276. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/extension.py +0 -0
  277. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/limits.py +0 -0
  278. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/pagination.py +0 -0
  279. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/progressbar.py +0 -0
  280. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/project_cleanup.py +0 -0
  281. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/common/versions.py +0 -0
  282. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/__init__.py +0 -0
  283. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/client.py +0 -0
  284. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/__init__.py +0 -0
  285. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/agent.py +0 -0
  286. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/aggregate.py +0 -0
  287. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/console.py +0 -0
  288. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/console_connection.py +0 -0
  289. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/flavor.py +0 -0
  290. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/host.py +0 -0
  291. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/hypervisor.py +0 -0
  292. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/hypervisor_stats.py +0 -0
  293. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/keypair.py +0 -0
  294. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/server_backup.py +0 -0
  295. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/server_event.py +0 -0
  296. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/server_group.py +0 -0
  297. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/server_image.py +0 -0
  298. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/server_migration.py +0 -0
  299. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/server_volume.py +0 -0
  300. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/service.py +0 -0
  301. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/compute/v2/usage.py +0 -0
  302. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/i18n.py +0 -0
  303. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/__init__.py +0 -0
  304. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/client.py +0 -0
  305. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/__init__.py +0 -0
  306. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/catalog.py +0 -0
  307. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/ec2creds.py +0 -0
  308. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/endpoint.py +0 -0
  309. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/project.py +0 -0
  310. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/role.py +0 -0
  311. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/role_assignment.py +0 -0
  312. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/token.py +0 -0
  313. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v2_0/user.py +0 -0
  314. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/__init__.py +0 -0
  315. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/access_rule.py +0 -0
  316. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/application_credential.py +0 -0
  317. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/catalog.py +0 -0
  318. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/consumer.py +0 -0
  319. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/credential.py +0 -0
  320. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/domain.py +0 -0
  321. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/ec2creds.py +0 -0
  322. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/endpoint.py +0 -0
  323. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/endpoint_group.py +0 -0
  324. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/group.py +0 -0
  325. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/identity_provider.py +0 -0
  326. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/implied_role.py +0 -0
  327. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/mapping.py +0 -0
  328. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/policy.py +0 -0
  329. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/region.py +0 -0
  330. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/role.py +0 -0
  331. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/role_assignment.py +0 -0
  332. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/service.py +0 -0
  333. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/service_provider.py +0 -0
  334. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/token.py +0 -0
  335. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/trust.py +0 -0
  336. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/unscoped_saml.py +0 -0
  337. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/identity/v3/user.py +0 -0
  338. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/__init__.py +0 -0
  339. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/client.py +0 -0
  340. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v1/__init__.py +0 -0
  341. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v1/image.py +0 -0
  342. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/__init__.py +0 -0
  343. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/cache.py +0 -0
  344. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/info.py +0 -0
  345. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/metadef_namespaces.py +0 -0
  346. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/metadef_objects.py +0 -0
  347. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/metadef_properties.py +0 -0
  348. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/metadef_resource_type_association.py +0 -0
  349. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/metadef_resource_types.py +0 -0
  350. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/image/v2/task.py +0 -0
  351. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/locale/tr_TR/LC_MESSAGES/openstackclient.po +0 -0
  352. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/__init__.py +0 -0
  353. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/client.py +0 -0
  354. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/common.py +0 -0
  355. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/utils.py +0 -0
  356. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/__init__.py +0 -0
  357. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/address_group.py +0 -0
  358. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/address_scope.py +0 -0
  359. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/default_security_group_rule.py +0 -0
  360. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/floating_ip.py +0 -0
  361. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/floating_ip_pool.py +0 -0
  362. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/floating_ip_port_forwarding.py +0 -0
  363. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/ip_availability.py +0 -0
  364. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/l3_conntrack_helper.py +0 -0
  365. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/local_ip.py +0 -0
  366. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/local_ip_association.py +0 -0
  367. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/ndp_proxy.py +0 -0
  368. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network.py +0 -0
  369. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_agent.py +0 -0
  370. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_auto_allocated_topology.py +0 -0
  371. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_flavor.py +0 -0
  372. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_flavor_profile.py +0 -0
  373. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_meter.py +0 -0
  374. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_meter_rule.py +0 -0
  375. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_qos_policy.py +0 -0
  376. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_qos_rule.py +0 -0
  377. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_qos_rule_type.py +0 -0
  378. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_rbac.py +0 -0
  379. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_segment.py +0 -0
  380. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_segment_range.py +0 -0
  381. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_service_provider.py +0 -0
  382. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/network_trunk.py +0 -0
  383. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/port.py +0 -0
  384. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/router.py +0 -0
  385. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/security_group.py +0 -0
  386. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/security_group_rule.py +0 -0
  387. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/subnet.py +0 -0
  388. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/subnet_pool.py +0 -0
  389. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/taas/__init__.py +0 -0
  390. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/taas/tap_flow.py +0 -0
  391. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/taas/tap_mirror.py +0 -0
  392. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/network/v2/taas/tap_service.py +0 -0
  393. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/object/__init__.py +0 -0
  394. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/object/client.py +0 -0
  395. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/object/v1/__init__.py +0 -0
  396. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/object/v1/account.py +0 -0
  397. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/object/v1/container.py +0 -0
  398. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/object/v1/object.py +0 -0
  399. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/releasenotes/notes/volume-backup-created-at-list-b49ec893ae1f6b0d.yaml +0 -0
  400. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/shell.py +0 -0
  401. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/__init__.py +0 -0
  402. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/__init__.py +0 -0
  403. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/base.py +0 -0
  404. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/__init__.py +0 -0
  405. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/test_args.py +0 -0
  406. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/test_availability_zone.py +0 -0
  407. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/test_configuration.py +0 -0
  408. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/test_extension.py +0 -0
  409. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/test_help.py +0 -0
  410. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/test_module.py +0 -0
  411. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/test_quota.py +0 -0
  412. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/common/test_versions.py +0 -0
  413. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/__init__.py +0 -0
  414. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/__init__.py +0 -0
  415. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/common.py +0 -0
  416. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/test_aggregate.py +0 -0
  417. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/test_flavor.py +0 -0
  418. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/test_hypervisor.py +0 -0
  419. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/test_keypair.py +0 -0
  420. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/test_server.py +0 -0
  421. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/test_server_event.py +0 -0
  422. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/compute/v2/test_server_group.py +0 -0
  423. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/__init__.py +0 -0
  424. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/__init__.py +0 -0
  425. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/common.py +0 -0
  426. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/test_catalog.py +0 -0
  427. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/test_ec2_credentials.py +0 -0
  428. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/test_endpoint.py +0 -0
  429. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/test_project.py +0 -0
  430. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/test_role.py +0 -0
  431. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/test_service.py +0 -0
  432. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/test_token.py +0 -0
  433. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v2/test_user.py +0 -0
  434. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/__init__.py +0 -0
  435. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/common.py +0 -0
  436. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_access_rule.py +0 -0
  437. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_application_credential.py +0 -0
  438. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_catalog.py +0 -0
  439. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_domain.py +0 -0
  440. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_endpoint.py +0 -0
  441. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_group.py +0 -0
  442. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_idp.py +0 -0
  443. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_project.py +0 -0
  444. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_region.py +0 -0
  445. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_registered_limit.py +0 -0
  446. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_role.py +0 -0
  447. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_role_assignment.py +0 -0
  448. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_service.py +0 -0
  449. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_service_provider.py +0 -0
  450. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_token.py +0 -0
  451. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/identity/v3/test_user.py +0 -0
  452. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/__init__.py +0 -0
  453. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/base.py +0 -0
  454. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/v1/__init__.py +0 -0
  455. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/v1/test_image.py +0 -0
  456. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/v2/__init__.py +0 -0
  457. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/v2/test_cache.py +0 -0
  458. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/v2/test_image.py +0 -0
  459. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/v2/test_info.py +0 -0
  460. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/image/v2/test_metadef_resource_type.py +0 -0
  461. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/__init__.py +0 -0
  462. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/__init__.py +0 -0
  463. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/common.py +0 -0
  464. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_address_group.py +0 -0
  465. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_address_scope.py +0 -0
  466. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_default_security_group_rule.py +0 -0
  467. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_floating_ip.py +0 -0
  468. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_ip_availability.py +0 -0
  469. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_l3_conntrack_helper.py +0 -0
  470. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_local_ip.py +0 -0
  471. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network.py +0 -0
  472. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_agent.py +0 -0
  473. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_flavor.py +0 -0
  474. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_flavor_profile.py +0 -0
  475. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_meter.py +0 -0
  476. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_meter_rule.py +0 -0
  477. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_ndp_proxy.py +0 -0
  478. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_qos_policy.py +0 -0
  479. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_qos_rule.py +0 -0
  480. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py +0 -0
  481. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_rbac.py +0 -0
  482. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_segment.py +0 -0
  483. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_segment_range.py +0 -0
  484. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_service_provider.py +0 -0
  485. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_network_trunk.py +0 -0
  486. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_port.py +0 -0
  487. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_router.py +0 -0
  488. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_security_group.py +0 -0
  489. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_security_group_rule.py +0 -0
  490. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_subnet.py +0 -0
  491. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/network/v2/test_subnet_pool.py +0 -0
  492. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/object/__init__.py +0 -0
  493. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/object/v1/__init__.py +0 -0
  494. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/object/v1/common.py +0 -0
  495. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/object/v1/test_container.py +0 -0
  496. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/object/v1/test_object.py +0 -0
  497. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/__init__.py +0 -0
  498. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/base.py +0 -0
  499. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/__init__.py +0 -0
  500. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/common.py +0 -0
  501. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/test_qos.py +0 -0
  502. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/test_service.py +0 -0
  503. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/test_transfer_request.py +0 -0
  504. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/test_volume.py +0 -0
  505. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/test_volume_backup.py +0 -0
  506. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/test_volume_snapshot.py +0 -0
  507. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v2/test_volume_type.py +0 -0
  508. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v3/__init__.py +0 -0
  509. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v3/common.py +0 -0
  510. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v3/test_qos.py +0 -0
  511. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v3/test_transfer_request.py +0 -0
  512. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v3/test_volume.py +0 -0
  513. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/functional/volume/v3/test_volume_type.py +0 -0
  514. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/__init__.py +0 -0
  515. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/__init__.py +0 -0
  516. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/fakes.py +0 -0
  517. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/test_api.py +0 -0
  518. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/test_compute_v2.py +0 -0
  519. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/test_image_v1.py +0 -0
  520. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/test_image_v2.py +0 -0
  521. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/test_object_store_v1.py +0 -0
  522. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/test_volume_v2.py +0 -0
  523. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/api/test_volume_v3.py +0 -0
  524. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/__init__.py +0 -0
  525. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_availability_zone.py +0 -0
  526. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_clientmanager.py +0 -0
  527. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_command.py +0 -0
  528. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_configuration.py +0 -0
  529. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_extension.py +0 -0
  530. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_limits.py +0 -0
  531. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_module.py +0 -0
  532. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_progressbar.py +0 -0
  533. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/common/test_project_cleanup.py +0 -0
  534. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/__init__.py +0 -0
  535. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/__init__.py +0 -0
  536. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/fakes.py +0 -0
  537. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_agent.py +0 -0
  538. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_aggregate.py +0 -0
  539. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_console.py +0 -0
  540. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_console_connection.py +0 -0
  541. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_flavor.py +0 -0
  542. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_host.py +0 -0
  543. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_hypervisor.py +0 -0
  544. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_hypervisor_stats.py +0 -0
  545. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_keypair.py +0 -0
  546. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_server_backup.py +0 -0
  547. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_server_event.py +0 -0
  548. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_server_group.py +0 -0
  549. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_server_image.py +0 -0
  550. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_server_migration.py +0 -0
  551. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_server_volume.py +0 -0
  552. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_service.py +0 -0
  553. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/compute/v2/test_usage.py +0 -0
  554. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/fakes.py +0 -0
  555. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/__init__.py +0 -0
  556. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/test_common.py +0 -0
  557. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/__init__.py +0 -0
  558. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/fakes.py +0 -0
  559. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/test_catalog.py +0 -0
  560. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/test_endpoint.py +0 -0
  561. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/test_project.py +0 -0
  562. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/test_role.py +0 -0
  563. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/test_role_assignment.py +0 -0
  564. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/test_service.py +0 -0
  565. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/test_token.py +0 -0
  566. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v2_0/test_user.py +0 -0
  567. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/__init__.py +0 -0
  568. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/fakes.py +0 -0
  569. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_access_rule.py +0 -0
  570. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_application_credential.py +0 -0
  571. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_catalog.py +0 -0
  572. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_consumer.py +0 -0
  573. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_credential.py +0 -0
  574. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_domain.py +0 -0
  575. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_endpoint.py +0 -0
  576. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_endpoint_group.py +0 -0
  577. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_group.py +0 -0
  578. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_identity_provider.py +0 -0
  579. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_implied_role.py +0 -0
  580. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_mappings.py +0 -0
  581. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_oauth.py +0 -0
  582. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_region.py +0 -0
  583. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_role.py +0 -0
  584. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_role_assignment.py +0 -0
  585. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_service.py +0 -0
  586. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_service_provider.py +0 -0
  587. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_token.py +0 -0
  588. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_trust.py +0 -0
  589. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_unscoped_saml.py +0 -0
  590. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/identity/v3/test_user.py +0 -0
  591. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/__init__.py +0 -0
  592. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v1/__init__.py +0 -0
  593. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v1/fakes.py +0 -0
  594. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v1/test_image.py +0 -0
  595. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/__init__.py +0 -0
  596. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/fakes.py +0 -0
  597. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_cache.py +0 -0
  598. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_info.py +0 -0
  599. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_metadef_namespaces.py +0 -0
  600. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_metadef_objects.py +0 -0
  601. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_metadef_properties.py +0 -0
  602. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_metadef_resource_type_association.py +0 -0
  603. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_metadef_resource_types.py +0 -0
  604. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/image/v2/test_task.py +0 -0
  605. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/integ/__init__.py +0 -0
  606. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/integ/base.py +0 -0
  607. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/integ/cli/__init__.py +0 -0
  608. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/integ/cli/test_project.py +0 -0
  609. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/integ/cli/test_shell.py +0 -0
  610. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/__init__.py +0 -0
  611. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/test_common.py +0 -0
  612. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/test_utils.py +0 -0
  613. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/__init__.py +0 -0
  614. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/fakes.py +0 -0
  615. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/taas/__init__.py +0 -0
  616. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/taas/test_osc_tap_flow.py +0 -0
  617. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/taas/test_osc_tap_mirror.py +0 -0
  618. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/taas/test_osc_tap_service.py +0 -0
  619. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_address_group.py +0 -0
  620. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_address_scope.py +0 -0
  621. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_default_security_group_rule.py +0 -0
  622. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_floating_ip_compute.py +0 -0
  623. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_floating_ip_network.py +0 -0
  624. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_floating_ip_pool_compute.py +0 -0
  625. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_floating_ip_pool_network.py +0 -0
  626. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_floating_ip_port_forwarding.py +0 -0
  627. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_ip_availability.py +0 -0
  628. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_l3_conntrack_helper.py +0 -0
  629. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_local_ip.py +0 -0
  630. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_local_ip_association.py +0 -0
  631. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_ndp_proxy.py +0 -0
  632. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network.py +0 -0
  633. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_agent.py +0 -0
  634. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_auto_allocated_topology.py +0 -0
  635. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_compute.py +0 -0
  636. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_flavor.py +0 -0
  637. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_flavor_profile.py +0 -0
  638. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_meter.py +0 -0
  639. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_meter_rule.py +0 -0
  640. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_qos_policy.py +0 -0
  641. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_qos_rule.py +0 -0
  642. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_qos_rule_type.py +0 -0
  643. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_rbac.py +0 -0
  644. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_segment.py +0 -0
  645. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_segment_range.py +0 -0
  646. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_service_provider.py +0 -0
  647. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_network_trunk.py +0 -0
  648. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_port.py +0 -0
  649. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_router.py +0 -0
  650. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_security_group_compute.py +0 -0
  651. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_security_group_network.py +0 -0
  652. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_security_group_rule_compute.py +0 -0
  653. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_security_group_rule_network.py +0 -0
  654. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_subnet.py +0 -0
  655. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/network/v2/test_subnet_pool.py +0 -0
  656. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/object/__init__.py +0 -0
  657. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/object/v1/__init__.py +0 -0
  658. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/object/v1/fakes.py +0 -0
  659. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/object/v1/test_container.py +0 -0
  660. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/object/v1/test_container_all.py +0 -0
  661. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/object/v1/test_object.py +0 -0
  662. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/object/v1/test_object_all.py +0 -0
  663. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/test_shell.py +0 -0
  664. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/utils.py +0 -0
  665. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/__init__.py +0 -0
  666. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/test_find_resource.py +0 -0
  667. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/__init__.py +0 -0
  668. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/fakes.py +0 -0
  669. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_backup_record.py +0 -0
  670. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_consistency_group_snapshot.py +0 -0
  671. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_qos_specs.py +0 -0
  672. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_service.py +0 -0
  673. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_volume_backend.py +0 -0
  674. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_volume_backup.py +0 -0
  675. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_volume_host.py +0 -0
  676. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_volume_snapshot.py +0 -0
  677. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_volume_transfer_request.py +0 -0
  678. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v2/test_volume_type.py +0 -0
  679. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/__init__.py +0 -0
  680. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/fakes.py +0 -0
  681. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_block_storage_cleanup.py +0 -0
  682. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_block_storage_cluster.py +0 -0
  683. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_block_storage_log_level.py +0 -0
  684. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_block_storage_manage.py +0 -0
  685. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_block_storage_resource_filter.py +0 -0
  686. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_service.py +0 -0
  687. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_attachment.py +0 -0
  688. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_backup.py +0 -0
  689. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_group.py +0 -0
  690. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_group_snapshot.py +0 -0
  691. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_group_type.py +0 -0
  692. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_message.py +0 -0
  693. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_snapshot.py +0 -0
  694. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_transfer_request.py +0 -0
  695. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/tests/unit/volume/v3/test_volume_type.py +0 -0
  696. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/__init__.py +0 -0
  697. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/client.py +0 -0
  698. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/__init__.py +0 -0
  699. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/backup_record.py +0 -0
  700. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/service.py +0 -0
  701. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/volume_backend.py +0 -0
  702. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v2/volume_host.py +0 -0
  703. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/__init__.py +0 -0
  704. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/block_storage_cleanup.py +0 -0
  705. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/block_storage_cluster.py +0 -0
  706. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/block_storage_log_level.py +0 -0
  707. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/block_storage_manage.py +0 -0
  708. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/block_storage_resource_filter.py +0 -0
  709. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/service.py +0 -0
  710. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_attachment.py +0 -0
  711. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_group.py +0 -0
  712. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_group_snapshot.py +0 -0
  713. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_group_type.py +0 -0
  714. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/openstackclient/volume/v3/volume_message.py +0 -0
  715. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/python_openstackclient.egg-info/dependency_links.txt +0 -0
  716. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/python_openstackclient.egg-info/entry_points.txt +0 -0
  717. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/python_openstackclient.egg-info/not-zip-safe +0 -0
  718. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/python_openstackclient.egg-info/requires.txt +0 -0
  719. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/python_openstackclient.egg-info/top_level.txt +0 -0
  720. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/.placeholder +0 -0
  721. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/Add-default-security-group-rule-CRUD-2916568f829ea38c.yaml +0 -0
  722. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/Add-trusted-vif-to-the-port-0a0c76d9da8f3da0.yaml +0 -0
  723. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/L3-conntrack-helper-bd0d9da041747e84.yaml +0 -0
  724. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/Router-flavor-accepts-name-or-id-e9cecafcddf81cb2.yaml +0 -0
  725. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-auto-and-none-as-nic-parameter-ed23a6e7f99f250d.yaml +0 -0
  726. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-auto-approve-cleanup-a2d225faa42dfdcb.yaml +0 -0
  727. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-backup-option-to-create-vol-fc36c2c745ebcff5.yaml +0 -0
  728. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-baremetal-agent-type-7c46365e8d457ac8.yaml +0 -0
  729. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-block-storage-cluster-commands-fae8f686582bbbcf.yaml +0 -0
  730. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-block-storage-manage-commands-6ebf029bd7a67bb3.yaml +0 -0
  731. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-cache-commands-a6f046348a3a0b1f.yaml +0 -0
  732. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-chunk-size-to-image-save-37871f9e62693264.yaml +0 -0
  733. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-cluster-to-service-list-5eab3e828de7547e.yaml +0 -0
  734. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-community-option-to-image-list-ac0651eb2e5d632f.yaml +0 -0
  735. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-create-group-from-src-options-6fcb0c87f617ca91.yaml +0 -0
  736. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-description-field-in-port-forwarding-c536e077b243d517.yaml +0 -0
  737. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-description-to-role-afe7b6ff668df261.yaml +0 -0
  738. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-device_id-to-port-list-0c658db51ce43c9e.yaml +0 -0
  739. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-disable-reason-6e0f28459a09a60d.yaml +0 -0
  740. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-dns-nameserver-overwrite-option-b866baeae12f9460.yaml +0 -0
  741. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-fip-portforwarding-commands-6e4d8ace698ee308.yaml +0 -0
  742. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-flavor-id-to-router-create-76e916e129b5b80c.yaml +0 -0
  743. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-ha-to-router-update-6a38a73cc112b2fc.yaml +0 -0
  744. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-host-and-hypervisor-hostname-flag-to-create-server-cb8b39a9f9311d42.yaml +0 -0
  745. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-import-flag-899869dc5a92aea7.yaml +0 -0
  746. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-member-get-25e913ef2b861bf3.yaml +0 -0
  747. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-member-list-1630ead5988348c2.yaml +0 -0
  748. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-metadef-namespace-object-delete-b6b2de24fc66e602.yaml +0 -0
  749. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-metadef-namespace-support-4ba37ec3a1a72185.yaml +0 -0
  750. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-metadef-object-property-show-4ab2c957451ea230.yaml +0 -0
  751. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-metadef-object-update-f4880e423bf4faba.yaml +0 -0
  752. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-metadef-property-delete-1e1bb8410130d901.yaml +0 -0
  753. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-metadef-resource-type-association-commands-4d373d7d8eca5d55.yaml +0 -0
  754. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-metadef-resource-type-list-command-020adcaa2ad14e07.yaml +0 -0
  755. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-options-dcbc4ead7822c495.yaml +0 -0
  756. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-progress-option-to-create-1ed1881d58ebad4b.yaml +0 -0
  757. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-project-filter-support-ed6204391e503adf.yaml +0 -0
  758. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-tag-filter-support-5cb039416b07caab.yaml +0 -0
  759. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-image-task-commands-50c3643ebfd0421f.yaml +0 -0
  760. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-implied-role-0cdafb131fbd7453.yaml +0 -0
  761. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-import-info-stores-delete-c50b5222c21e1077.yaml +0 -0
  762. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-is-default-to-network-qos-policy-89b11d4df032a789.yaml +0 -0
  763. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-keypairs-project-filter-99cb6938f247927f.yaml +0 -0
  764. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-keypairs-user-filter-e1ce57a4c09c278b.yaml +0 -0
  765. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-ksa-7f0795157d93a898.yaml +0 -0
  766. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-member-status-filter-2e118b2c93151223.yaml +0 -0
  767. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-metadef-object-create-3939ee1453585484.yaml +0 -0
  768. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-metadef-object-list-c8831e73c696b9d9.yaml +0 -0
  769. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-metadef-object-show-1b05dd33ecf42210.yaml +0 -0
  770. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-metadef-property-create-c9a4ec2bced892af.yaml +0 -0
  771. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-metadef-property-delete-ebb999d92a588ad4.yaml +0 -0
  772. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-metadef-property-list-fe89ae8ff9780002.yaml +0 -0
  773. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-metadef-property-set-ab9cdcb73adf6397.yaml +0 -0
  774. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-metadef-property-show-8bf2ec421f74cb2d.yaml +0 -0
  775. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-hypervisor-list-opts-71da2cc36eac4edd.yaml +0 -0
  776. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-keypair-list-opts-243a33d8276f91b8.yaml +0 -0
  777. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-server-create-opts-d5e32bd743e9e132.yaml +0 -0
  778. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-server-delete-opts-071c3e054e3ce674.yaml +0 -0
  779. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-server-group-list-opts-d3c3d98b7f7a56a6.yaml +0 -0
  780. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-server-group-list-opts-ebcf84bfcea07a4b.yaml +0 -0
  781. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-server-image-create-opts-3c19a7492dc50fd7.yaml +0 -0
  782. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-server-list-opts-c41e97e86ff1e1ca.yaml +0 -0
  783. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-server-rebuild-opts-5c75e838d8f0487d.yaml +0 -0
  784. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-server-set-opts-e1b4300f5f42e863.yaml +0 -0
  785. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-trust-list-opts-500fd1e4c14e1504.yaml +0 -0
  786. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-missing-volume-backup-opts-b9246aded87427ce.yaml +0 -0
  787. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-more-server-list-columns-4e3b87929dd330f7.yaml +0 -0
  788. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-auto-allocated-topology-481580f48840bfc4.yaml +0 -0
  789. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-flavor-profile-e7cc5b353c3ed9d9.yaml +0 -0
  790. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-list-option-to-ports-9d101344ddeb3e64.yaml +0 -0
  791. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-local-ip-df3a9ce7610d8b90.yaml +0 -0
  792. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-qos-policy-b8ad1e408d73c279.yaml +0 -0
  793. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-qos-rule-22cc1ddd509941db.yaml +0 -0
  794. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-qos-rule-type-show-57a714a1d428726e.yaml +0 -0
  795. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-qos-rule-types-337e464c6e81f29c.yaml +0 -0
  796. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-rbac-list-tenant-project-filter-1228f2287284e33c.yaml +0 -0
  797. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-network-service-provider-c161a4a328a8a408.yaml +0 -0
  798. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-no-property-f97e4b2f390cec06.yaml +0 -0
  799. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-option-to-unset-port-host-c76de9b1d2addf9a.yaml +0 -0
  800. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-osprofiler-support-adf5286daf220914.yaml +0 -0
  801. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-overwrite-option-to-router-7c50c8031dab6bae.yaml +0 -0
  802. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-parent-list-option-to-projects-10382a7176993366.yaml +0 -0
  803. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-commands-a3580662721a6312.yaml +0 -0
  804. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-delete-command-4789d3881b186cfc.yaml +0 -0
  805. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-hardware-offload-type-011c98ab748357d7.yaml +0 -0
  806. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-hints-attribute-be1779e640a47d0d.yaml +0 -0
  807. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-list-status-option-f51da0aed0528a5d.yaml +0 -0
  808. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-numa-affinity-policy-4706b0f9485a5d4d.yaml +0 -0
  809. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-numa-affinity-policy-socket-5a986b14033e0f6e.yaml +0 -0
  810. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-ranges-in-port-forwarding-command-8c6ee05cf625578a.yaml +0 -0
  811. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-security-enabled-to-port-set-82b801d21d45e715.yaml +0 -0
  812. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-show-command-de0a599017189a21.yaml +0 -0
  813. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-port-unset-command-8bdaf1fa9c593374.yaml +0 -0
  814. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-project-cleanup-beb08c9df3c95b24.yaml +0 -0
  815. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-qos-policy-list-options-9ba1ae731a88e7ac.yaml +0 -0
  816. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-quota-list-command-0d865fac61db2430.yaml +0 -0
  817. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-quota-set-for-network-11fcd7b9e08624b5.yaml +0 -0
  818. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-reimage-param-to-rebuild-606dd331677b5954.yaml +0 -0
  819. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-remote-managed-vnic-type-4fc540b47427c37f.yaml +0 -0
  820. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-remove-multiple-security-groups-2c0b2d599124c9c9.yaml +0 -0
  821. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-restore-server-d8c73e0e83df17dd.yaml +0 -0
  822. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-add-network-98ede8ff6079eb23.yaml +0 -0
  823. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-backup-e63feaebb6140f83.yaml +0 -0
  824. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-create-image-property-ef76af26233b472b.yaml +0 -0
  825. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-evacuate-8359246692cb642f.yaml +0 -0
  826. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-group-quotas-b67fcba98619f0c9.yaml +0 -0
  827. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-hostname-opts-3cb4fd90b5bf47ca.yaml +0 -0
  828. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-migrate-confirm-revert-commands-9d8079c9fddea36d.yaml +0 -0
  829. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-migrate-with-host-4884a71903c5c8a9.yaml +0 -0
  830. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-migration-show-command-2e3a25e383dc5d70.yaml +0 -0
  831. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-nic-tagging-support-f77b4247e87771d5.yaml +0 -0
  832. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-remove-network-fb09c53d5b0c0068.yaml +0 -0
  833. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-resize-confirm-revert-commands-98854ca98965432a.yaml +0 -0
  834. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-server-volume-update-89740dca61596dd1.yaml +0 -0
  835. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-shelve-offload-wait-d0a5c8ba92586f72.yaml +0 -0
  836. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-snapshot-unmanage-command-d4c0c8fd8b638d48.yaml +0 -0
  837. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-stores-info-9f1488dd29013767.yaml +0 -0
  838. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-subnet-list-command-970f4b397469bdc6.yaml +0 -0
  839. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-tag-support-server-add-fixed-ip-8de2db58f2a80e85.yaml +0 -0
  840. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-tag-support-server-add-network-a8590cab5d7babf0.yaml +0 -0
  841. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-tag-support-server-add-port-7e30aa38202d0839.yaml +0 -0
  842. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-tag-support-server-add-volume-278e79a22dd482f4.yaml +0 -0
  843. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-trusted-certs-option-server-create-a660488407300f22.yaml +0 -0
  844. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-user-project-enabled-filters-9f2090cdcc97b667.yaml +0 -0
  845. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-virtio-forwarder-vnic-type-bad939c6a868b9e9.yaml +0 -0
  846. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-vlan_qinq-to-the-network-3556c094aeedc0de.yaml +0 -0
  847. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-vol-service-get-set-log-commands-f9420e5061d994b5.yaml +0 -0
  848. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-attachment-commands-db2974c6460fa3bc.yaml +0 -0
  849. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-backup-project-filter-6c09b2c8aba83341.yaml +0 -0
  850. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-group-commands-b121d6ec7da9779a.yaml +0 -0
  851. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-group-snapshot-commands-27fa8920d55f6bdb.yaml +0 -0
  852. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-group-type-commands-13eabc7664a5c2bc.yaml +0 -0
  853. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-host-failover-8fc77b24533b7fed.yaml +0 -0
  854. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-list-property-option-62008dc24762663b.yaml +0 -0
  855. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-manage-command-088890446d0e81c7.yaml +0 -0
  856. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-message-commands-89a590a1549c333e.yaml +0 -0
  857. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-qos-set-no-property-option-348480dfc42a0a64.yaml +0 -0
  858. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-revert-command-1c8f695420acbe7e.yaml +0 -0
  859. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-summary-command-b2175b48af3ccab1.yaml +0 -0
  860. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-transfer-request-create-snapshots-opts-1361416d37021e89.yaml +0 -0
  861. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-type-set-public-private-opts-891fc7ab5de9bb6a.yaml +0 -0
  862. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-volume-unmanage-support-9b7139e5e948de77.yaml +0 -0
  863. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add-workers-cleanup-command-720573c0f642efe9.yaml +0 -0
  864. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add_attachment_id_to_volume_attachment-cea605585db29e14.yaml +0 -0
  865. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add_id_and_enabled_to_list_identity_provider-e0981063a2dc5961.yaml +0 -0
  866. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add_name_and_enabled_to_list_domain-6d23f02994b51c67.yaml +0 -0
  867. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add_options_to_user_create_and_set-302401520f36d153.yaml +0 -0
  868. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add_resource_option_immutable-efed6e1ebdc69591.yaml +0 -0
  869. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/add_volume_backend_commands_to_volumeV3-145b114e40ab8615.yaml +0 -0
  870. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/address-scope-delete-multi-31c3af73feb31265.yaml +0 -0
  871. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/aggregate-list-uuid-column-808a0d051006a5ef.yaml +0 -0
  872. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/allow-custom-logging-12d55f8ed859ff8e.yaml +0 -0
  873. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/allow-port-create-with-extra-dhcp-options-c2c40e4002b52e2a.yaml +0 -0
  874. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/allow-port-list-with-ip-address-substr-14c5805b241e402f.yaml +0 -0
  875. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/allow-to-add-remove-vm-ports-273593d7cc1982de.yaml +0 -0
  876. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/allow-to-create-legacy-router-cb4dcb44dde74684.yaml +0 -0
  877. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/allow-to-specify-vm-ip-to-publish-85f7207740c0cc8d.yaml +0 -0
  878. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/allow-to-vm-ip-to-add-7721ba64b863fa77.yaml +0 -0
  879. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/always-show-direction-for-sg-rule-130efc39bf67d79a.yaml +0 -0
  880. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/auto-configure-block-live-migration-437d461c914f8f2f.yaml +0 -0
  881. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/auto-no-network-options-f4ddb2bb7544d2f5.yaml +0 -0
  882. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/backup_list_all-projects_option-4bb23e0b9b075cac.yaml +0 -0
  883. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/better-ipv6-address-suppport-security-group-rules-95272847349982e5.yaml +0 -0
  884. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/block-storage-x-manageable-list-long-option-a16a4641acfcf781.yaml +0 -0
  885. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-add-locked-reason-425efd2def1144f1.yaml +0 -0
  886. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-add-user-id-field-to-the-migrations-table-299b99ccb1f12a1f.yaml +0 -0
  887. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-address-groups-in-sg-rules-b3b7742e4e6f5745.yaml +0 -0
  888. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-address-groups-in-sg-rules-e0dc7e889e107799.yaml +0 -0
  889. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-allow-overwrite-set-options-190a9c6904d53dab.yaml +0 -0
  890. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-application-credential-a7031a043efc4a25.yaml +0 -0
  891. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-backup-snapshot-renamed-for-volume-resource-2d2d13ea8489a61f.yaml +0 -0
  892. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-cinder-command-support-3db775ba331e113d.yaml +0 -0
  893. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-cinder-command-support-413b6d80232f8ece.yaml +0 -0
  894. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-cinder-command-support-7e3ae1fb4cd90407.yaml +0 -0
  895. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-cinder-command-support-82dbadef47454c18.yaml +0 -0
  896. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-cinder-command-support-cc8708c4395ce467.yaml +0 -0
  897. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-cinder-command-support-ff7acc531baae8c3.yaml +0 -0
  898. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-extension-show-6f7e31a27dad0dc9.yaml +0 -0
  899. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-handling-down-cell-ab8af2897f1a8c85.yaml +0 -0
  900. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-implement-network-agents-5eba48796318f094.yaml +0 -0
  901. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-multi-argument-compute-0bc4522f6edca355.yaml +0 -0
  902. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-multi-argument-network-e43e192ac95db94d.yaml +0 -0
  903. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-network-command-options-2-e7b13a6a09f5d21e.yaml +0 -0
  904. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-network-dhcp-adv-commands-e61bf8757f46dc93.yaml +0 -0
  905. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-network-l3-adv-commands-cc1df715a184f1b2.yaml +0 -0
  906. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-network-segment-range-management-0abf03fe03eea149.yaml +0 -0
  907. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-neutron-client-a0552f8ca909b665.yaml +0 -0
  908. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-neutron-client-descriptions-a80902b4295843cf.yaml +0 -0
  909. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-neutron-client-descriptions-b65dd776f78b5a73.yaml +0 -0
  910. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-neutron-client-metering-1ee703a48343ece1.yaml +0 -0
  911. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-neutron-client-metering-6f8f9527c2a797fd.yaml +0 -0
  912. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-neutron-client-rbac-bbd7b545b50d2bdf.yaml +0 -0
  913. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-neutron-client-tag-ff24d13e5c70e052.yaml +0 -0
  914. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-neutron-floating-ip-rate-limit-8387c040a6fb9acd.yaml +0 -0
  915. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-project-tags-b544aef9672d415b.yaml +0 -0
  916. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-routed-networks-3b502faa5cd96807.yaml +0 -0
  917. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-routed-networks-3eea4978c93aa126.yaml +0 -0
  918. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-routed-networks-86a24f34d86fca53.yaml +0 -0
  919. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-support-multi-add-remove-9516f72cfacea11a.yaml +0 -0
  920. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-support-no-property-in-aggregate-b74a42e00a65d14a.yaml +0 -0
  921. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-support-specifying-az-when-restore-shelved-server-16e864223d51b50a.yaml +0 -0
  922. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-support-specifying-az-when-restore-shelved-server-9179045f04815bbb.yaml +0 -0
  923. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-unified-limits-58f166401534a4ff.yaml +0 -0
  924. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-unified-limits-6c5fdb1c26805d86.yaml +0 -0
  925. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-unshelve-to-host-9ce4b7abf81aeedf.yaml +0 -0
  926. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bp-whitelist-extension-for-app-creds-9afd5009b374190b.yaml +0 -0
  927. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1204956-af47c7f34ecc19c3.yaml +0 -0
  928. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1411190-live-migration-host-655ae6befa6a3de2.yaml +0 -0
  929. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1475831-3caafd724d4ed644.yaml +0 -0
  930. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1486597-857e20262c038514.yaml +0 -0
  931. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1499657-eeb260849febacf3.yaml +0 -0
  932. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1513894-6d2f05db6e1df744.yaml +0 -0
  933. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1516661-757ef629f899cca3.yaml +0 -0
  934. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1517134-9efecb257910989c.yaml +0 -0
  935. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1517386-1c0aad8e3203b02b.yaml +0 -0
  936. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1518059-e2dbe6e4b2473f10.yaml +0 -0
  937. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519181-932c1ff07ef16666.yaml +0 -0
  938. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519502-d534db6c18adef20.yaml +0 -0
  939. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519502-f72236598d14d350.yaml +0 -0
  940. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519503-978a68a54819dbbc.yaml +0 -0
  941. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519510-3cde4643b33ebb7a.yaml +0 -0
  942. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519511-65b8901ae6ea2e63.yaml +0 -0
  943. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519511-65d8d21dde31e5e2.yaml +0 -0
  944. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519511-74bab0e0d32db043.yaml +0 -0
  945. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519512-4231ac6014109142.yaml +0 -0
  946. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519512-48624c5a32432a47.yaml +0 -0
  947. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519512-48d98f09e44220a3.yaml +0 -0
  948. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519512-65df002102b7fb99.yaml +0 -0
  949. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519512-d20f44aca1f9e9b9.yaml +0 -0
  950. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1519512-dbf4368fe10dc495.yaml +0 -0
  951. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1520003-505af921c8afffc9.yaml +0 -0
  952. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1520115-0367e1c8917dc912.yaml +0 -0
  953. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1520541-44d45e4693089c03.yaml +0 -0
  954. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1521492-89b972c6362940a5.yaml +0 -0
  955. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1521492-8cde2601591a8c78.yaml +0 -0
  956. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1522969-63abf273c6e71a07.yaml +0 -0
  957. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1524456-9967fac653c91cb2.yaml +0 -0
  958. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1525805-122e6ce0c3cd4945.yaml +0 -0
  959. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1527833-42cde11d28b09ac3.yaml +0 -0
  960. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1531360-0f5c62d18088e5b5.yaml +0 -0
  961. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1532945-1a5485b8d0ebddb8.yaml +0 -0
  962. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1534202-1ba78f0bb744961f.yaml +0 -0
  963. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1535213-c91133586e07d71c.yaml +0 -0
  964. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1535239-767e6cf1990eda01.yaml +0 -0
  965. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1535704-d6f013bfa22ab668.yaml +0 -0
  966. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1536479-d1f03ed2177d06ed.yaml +0 -0
  967. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1538372-ef3a30298357f972.yaml +0 -0
  968. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1540656-f7b7b7e3feef2440.yaml +0 -0
  969. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1540988-17841cfd5accf7f5.yaml +0 -0
  970. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1542171-fde165df53216726.yaml +0 -0
  971. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1542359-181d28db21a2358a.yaml +0 -0
  972. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1542362-ddad607f6d3025f0.yaml +0 -0
  973. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1542364-5d1e93cfd24f0b65.yaml +0 -0
  974. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1543214-959aee7830db2b0d.yaml +0 -0
  975. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1543222-6f8579344ff5c958.yaml +0 -0
  976. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1543226-7d885ecaa3715415.yaml +0 -0
  977. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1543672-bad2fc4c6c8f3125.yaml +0 -0
  978. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1544586-0e6ca9a09dac0726.yaml +0 -0
  979. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1544586-0fe19a567d3e31fc.yaml +0 -0
  980. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1544587-ec3ca453c1340b4e.yaml +0 -0
  981. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1544589-b9f669ef71aa5e57.yaml +0 -0
  982. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1544590-8cf42954e28c2f42.yaml +0 -0
  983. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1545537-12bbf01d2280dd2f.yaml +0 -0
  984. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1545537-4fa72fbfbbe3f31e.yaml +0 -0
  985. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1545537-7a66219d263bb1e5.yaml +0 -0
  986. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1545609-bdc1efc17214463b.yaml +0 -0
  987. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1546065-41d09ffbd8606513.yaml +0 -0
  988. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1549410-8df3a4b12fe13ffa.yaml +0 -0
  989. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1550999-5e352a71dfbc828d.yaml +0 -0
  990. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1554877-7f8479791eab45b7.yaml +0 -0
  991. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1554886-8e5249a655e7e7b6.yaml +0 -0
  992. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1554889-32ba8d4bfb0f5f3d.yaml +0 -0
  993. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1556719-d2dcf61acf87e856.yaml +0 -0
  994. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1556929-edd78cded88ecdc9.yaml +0 -0
  995. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1559866-733988f5dd5b07bb.yaml +0 -0
  996. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1560157-bce572f58b43efa1.yaml +0 -0
  997. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1561599-d5f541f08ae6274a.yaml +0 -0
  998. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1561838-3a006a8263d7536d.yaml +0 -0
  999. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1564460-ab7ad35c02392cb4.yaml +0 -0
  1000. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1565034-dd404bfb42d7778d.yaml +0 -0
  1001. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1565112-e0cea9bfbcab954f.yaml +0 -0
  1002. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1566090_64726dc7df5b1572.yaml +0 -0
  1003. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1566269-2572bca9157ca107.yaml +0 -0
  1004. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1569480-c52e330548bfbd78.yaml +0 -0
  1005. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1571812-49cdce4df5f3d481.yaml +0 -0
  1006. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1572228-03638a7adec5da8b.yaml +0 -0
  1007. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1572733-874b37a7fa8292d0.yaml +0 -0
  1008. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1575461-3fed33e53795684a.yaml +0 -0
  1009. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1575461-4d7d90e792132064.yaml +0 -0
  1010. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1575478-5a0a923c3a32f96a.yaml +0 -0
  1011. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1575624-87957ff60ad661a6.yaml +0 -0
  1012. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1578819-d1efccfefb18356d.yaml +0 -0
  1013. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1581179-4d15dc504777f9e7.yaml +0 -0
  1014. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1582774-3bba709ef61e33b7.yaml +0 -0
  1015. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1582968-4d44912a033b242c.yaml +0 -0
  1016. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1584596-5b3109487b451bec.yaml +0 -0
  1017. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1588171-61214d0ea482988c.yaml +0 -0
  1018. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1588384-eb6976fcfb90cb4c.yaml +0 -0
  1019. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1588588-39927ef06ca35730.yaml +0 -0
  1020. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1589332-2941f5286df7e5d4.yaml +0 -0
  1021. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1589348-4a612a4efc7ed0e5.yaml +0 -0
  1022. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1589935-8a56e6a18d836db9.yaml +0 -0
  1023. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1592062-e327a31a5ae66809.yaml +0 -0
  1024. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1592368-a4af69f163a1e208.yaml +0 -0
  1025. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1592761-f45998453d6801f7.yaml +0 -0
  1026. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1592906-a5604ec5abe77507.yaml +0 -0
  1027. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1592906-ad67ce8736f3cd48.yaml +0 -0
  1028. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1592906-e69b37377278d9c2.yaml +0 -0
  1029. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1596443-9e2af267e91d1643.yaml +0 -0
  1030. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1596798-b22fd587bdca8b36.yaml +0 -0
  1031. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1596818-d4cd93dd4d38d3d6.yaml +0 -0
  1032. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1596821-a07599eb4beb6342.yaml +0 -0
  1033. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1597184-f4fb687b3d4d99d9.yaml +0 -0
  1034. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1597188-a2ff62b809865365.yaml +0 -0
  1035. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1597189-02a8d8a402725860.yaml +0 -0
  1036. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1597192-52801f7520287309.yaml +0 -0
  1037. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1597195-54ff1ecf381899f6.yaml +0 -0
  1038. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1597198-e36b55f3fd185a3a.yaml +0 -0
  1039. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1597296-9735f33eacf5552e.yaml +0 -0
  1040. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1600196-6a733dd4e3371df7.yaml +0 -0
  1041. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1602073-5deb58deeafbc8be.yaml +0 -0
  1042. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1602169-2750c9a6896d2825.yaml +0 -0
  1043. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1605088-fea9347336764469.yaml +0 -0
  1044. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1605475-84e649fb8c675737.yaml +0 -0
  1045. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1605774-28aec51f6ec4926e.yaml +0 -0
  1046. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1606105-ca06b230e22ab5c6.yaml +0 -0
  1047. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1607959-a52aa93e3793f28a.yaml +0 -0
  1048. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1607972-a910a9fbdb81da57.yaml +0 -0
  1049. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1609233-90b2ddf8d941050e.yaml +0 -0
  1050. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1609767-0602edc4408c2dc6.yaml +0 -0
  1051. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1610161-7c34c7b735701bd4.yaml +0 -0
  1052. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1610883-38929f6fc2eefc9a.yaml +0 -0
  1053. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1610883-e6345c32a35cc290.yaml +0 -0
  1054. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1612136-051b5f94796e3b51.yaml +0 -0
  1055. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1612136-6111b944569b9351.yaml +0 -0
  1056. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1612136-63aac6377209db38.yaml +0 -0
  1057. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1612136-ec240349a933db12.yaml +0 -0
  1058. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1612484-e8605ad8966a455e.yaml +0 -0
  1059. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1612898-bea3b68251d12d81.yaml +0 -0
  1060. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613231-386b2b1373662052.yaml +0 -0
  1061. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613261-290a64080fead6c0.yaml +0 -0
  1062. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613533-93279179c6f70117.yaml +0 -0
  1063. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613597-b1545148b0755e6f.yaml +0 -0
  1064. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613926-2d0e405831c0b5a9.yaml +0 -0
  1065. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613964-837196399be16b3d.yaml +0 -0
  1066. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613964-86e0afe0e012a758.yaml +0 -0
  1067. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613964-b3e8d9d828a3822c.yaml +0 -0
  1068. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613964-e5760f4825f1e043.yaml +0 -0
  1069. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1613995-10bb3895d702c063.yaml +0 -0
  1070. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1614121-a3c5b6892074d5ae.yaml +0 -0
  1071. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1614379-d8e2815804d53cef.yaml +0 -0
  1072. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1614379-da92ded6d19f5ad5.yaml +0 -0
  1073. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1614385-460b5034ba372463.yaml +0 -0
  1074. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1614458-c42be5738f447db8.yaml +0 -0
  1075. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1614823-e89080342f25f2c0.yaml +0 -0
  1076. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1617384-55c88207115e2a5b.yaml +0 -0
  1077. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1618676-04ff0f335b670567.yaml +0 -0
  1078. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1619274-e78afd7c12ea2c3d.yaml +0 -0
  1079. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1620922-7f27942dc00f7108.yaml +0 -0
  1080. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1622565-2e715aff8b054401.yaml +0 -0
  1081. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1624085-7cf296649277f405.yaml +0 -0
  1082. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1627555-3b47eba215e35b3c.yaml +0 -0
  1083. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1627913-2adf4182977e5926.yaml +0 -0
  1084. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1630822-mask-password-on-debug-20dcdf1c54e84fa1.yaml +0 -0
  1085. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1631471-beb0a1c9b4a932cb.yaml +0 -0
  1086. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1633582-df2bee534c2da7fc.yaml +0 -0
  1087. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1634333-a2b04d33ca39440e.yaml +0 -0
  1088. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1634672-7ce577f3adc34eed.yaml +0 -0
  1089. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1634799-1322227c9b0188ca.yaml +0 -0
  1090. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1635580-54e0039b469ad5a6.yaml +0 -0
  1091. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1636046-98dc0e69a4e44850.yaml +0 -0
  1092. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1637074-1b0e409f30f715ca.yaml +0 -0
  1093. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1637365-b90cdcc05ffc7d3a.yaml +0 -0
  1094. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1637945-f361c834381d409c.yaml +0 -0
  1095. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1639231-21823768bd54170a.yaml +0 -0
  1096. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1639712-a7b9d1a35a042049.yaml +0 -0
  1097. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1640086-21d7e5f2ce18f53c.yaml +0 -0
  1098. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1641868-97c284e33f944c2d.yaml +0 -0
  1099. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1642030-166b2b28c8adf22e.yaml +0 -0
  1100. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1642238-3032c7fe7f0ce29d.yaml +0 -0
  1101. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1642301-18b08e0cd4b11687.yaml +0 -0
  1102. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1642301-ad04424c80e8fe50.yaml +0 -0
  1103. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1642772-19f53765bef8ee91.yaml +0 -0
  1104. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1643861-b17ad5dfcb4304ff.yaml +0 -0
  1105. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1645252-219bfd50c8f04846.yaml +0 -0
  1106. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1647242-fdc39e564372857b.yaml +0 -0
  1107. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1647406-c936581034a1b6e4.yaml +0 -0
  1108. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1648087-21dfb7250abfdbe9.yaml +0 -0
  1109. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1648307-a2c6d7698e927449.yaml +0 -0
  1110. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1648317-2d12dabc357c4d52.yaml +0 -0
  1111. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1650026-0ce6a77e69d24424.yaml +0 -0
  1112. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1650342-22cb88ef37a41872.yaml +0 -0
  1113. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1651117-a1df37e7ea939ba4.yaml +0 -0
  1114. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1652827-f59bbd1b64df958d.yaml +0 -0
  1115. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1654221-a564ab75a6afc332.yaml +0 -0
  1116. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1655445-96c787e3a51226e0.yaml +0 -0
  1117. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1655537-20b0eb676afa278f.yaml +0 -0
  1118. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1656402-88b12760fb2d4ef9.yaml +0 -0
  1119. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1656572-b40303ae50a41000.yaml +0 -0
  1120. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1656767-36a3d4b9fac335c9.yaml +0 -0
  1121. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1656788-2f5bda2205bc0329.yaml +0 -0
  1122. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1657956-977a615f01775288.yaml +0 -0
  1123. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1658147-9de9ae222f9db9ae.yaml +0 -0
  1124. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1658189-d2b390ad74c96c79.yaml +0 -0
  1125. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1658582-80a76f6b0af0ca12.yaml +0 -0
  1126. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1658614-f84a8cece6f2ef8c.yaml +0 -0
  1127. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1659878-f6a55b7166d99ca8.yaml +0 -0
  1128. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1659894-4518b10615498ba9.yaml +0 -0
  1129. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1659967-644a8ee3621c9e81.yaml +0 -0
  1130. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1659993-a5fe43bef587e490.yaml +0 -0
  1131. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1661814-1692e68a1d2d9770.yaml +0 -0
  1132. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1663520-d880bfa51ca7b798.yaml +0 -0
  1133. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1664255-f82c5c13d92fed2a.yaml +0 -0
  1134. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1665231-3df6d090d137fe4f.yaml +0 -0
  1135. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1666780-c10010e9061689d3.yaml +0 -0
  1136. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1667266-6497727abc2af9a5.yaml +0 -0
  1137. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1667294-f92efa49627eb00a.yaml +0 -0
  1138. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1667699-6dad786b128ca8b5.yaml +0 -0
  1139. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1670707-c4799fbed39ef75b.yaml +0 -0
  1140. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1672634-ef754cb5109dd0f2.yaml +0 -0
  1141. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1675489-a1d226f2ee911420.yaml +0 -0
  1142. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1677236-7de9d11c3f0fb5ed.yaml +0 -0
  1143. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1684989-3bda158a822d2f73.yaml +0 -0
  1144. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1687814-743ad8418923d5e3.yaml +0 -0
  1145. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1688194-bb008b65267a1169.yaml +0 -0
  1146. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1689233-c3f98e159c75374e.yaml +0 -0
  1147. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1696111-e2cf9233fa872eb7.yaml +0 -0
  1148. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1698390-0df8f0ec4fe354de.yaml +0 -0
  1149. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1698742-66d9d4e6c7ad274a.yaml +0 -0
  1150. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1703278-5e45a92e43552dec.yaml +0 -0
  1151. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1704097-8ff1ce1444b81b04.yaml +0 -0
  1152. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1708570-bb19e1213e887723.yaml +0 -0
  1153. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1711301-472b577f074edd43.yaml +0 -0
  1154. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1712242-934bbe2f2378f5bd.yaml +0 -0
  1155. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1714878-46806jv2yv13q054.yaml +0 -0
  1156. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1716789-abfae897b7e61246.yaml +0 -0
  1157. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1717130-029211b60f74b4c4.yaml +0 -0
  1158. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1717829-c1de1d777d3abaf9.yaml +0 -0
  1159. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1719413-0401d05c91cc9094.yaml +0 -0
  1160. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1719499-d67d80b0da0bc30a.yaml +0 -0
  1161. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1728525-2c40f0c19adbd0e8.yaml +0 -0
  1162. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1731848-71d0a5fdb1a34a8b.yaml +0 -0
  1163. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1732216-b41bfedebff911e1.yaml +0 -0
  1164. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1732938-e4d91732ef777f9a.yaml +0 -0
  1165. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1735836-9be6d777a6e6410b.yaml +0 -0
  1166. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1740232-91ad72c2ac165f35.yaml +0 -0
  1167. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1741223-7a5c5b6e7f232628.yaml +0 -0
  1168. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1742453-ae4be6de90a3ae1d.yaml +0 -0
  1169. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1745699-afa7318b9dc96696.yaml +0 -0
  1170. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1750983-420945d6c0afb509.yaml +0 -0
  1171. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1750985-a5345f715a14825c.yaml +0 -0
  1172. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1751104-compute-api-2.47-4bfa21cfaa13f408.yaml +0 -0
  1173. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1775482-7ed2a9a8765b313e.yaml +0 -0
  1174. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1777153-750e6044aa28d5d8.yaml +0 -0
  1175. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1784879-9b632174d4af853f.yaml +0 -0
  1176. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1798744-5512256baf4dc633.yaml +0 -0
  1177. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1827844-8f1de120087c6a22.yaml +0 -0
  1178. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-1946816-7665858605453578.yaml +0 -0
  1179. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2005246-3fb70206bafc5444.yaml +0 -0
  1180. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2005521-0274fc26bd9b3842.yaml +0 -0
  1181. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2006635-3110f7a87a186e62.yaml +0 -0
  1182. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2006761-9041d1b25e845cfb.yaml +0 -0
  1183. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2007489-42e41b14e42128ce.yaml +0 -0
  1184. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2007513-ae39456aeb93bb98.yaml +0 -0
  1185. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2010376-e15362bdd6c8d6ec.yaml +0 -0
  1186. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2084580-cb1e8c47501e730c.yaml +0 -0
  1187. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-2126565-a119ac242d9ac795.yaml +0 -0
  1188. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-27882-402ced7ffe930058.yaml +0 -0
  1189. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/bug-volume-list-with-project-2dc867c5e8346a66.yaml +0 -0
  1190. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/change-098377fd53cce7a0.yaml +0 -0
  1191. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/check-limit-quota-cc7f291dd1b537c1.yaml +0 -0
  1192. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/cliff-2.3.0-7ead18fae9ceea80.yaml +0 -0
  1193. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/complete_image_switch-203e0b3105a54674.yaml +0 -0
  1194. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/compute-add-validate-console-auth-token-1eda2bd62060ccfa.yaml +0 -0
  1195. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/compute-agent-deff48988e81b30e.yaml +0 -0
  1196. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/compute-service-list-forced-down-2b16d1cb44f71a08.yaml +0 -0
  1197. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/config-show-00512dc60882e5c0.yaml +0 -0
  1198. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/confirm-reset-state-24497c8b24990aa7.yaml +0 -0
  1199. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/consistency-group-create-opts-aliases-e1c2f1498e9b1d3d.yaml +0 -0
  1200. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/credential_list_user_type-c809e5b8014d6275.yaml +0 -0
  1201. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/deprecate-volume-group-create-positional-arguments-89f6b886c0f1f2b5.yaml +0 -0
  1202. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/deprecated-quota-class-options-ba33a45caedbdf3e.yaml +0 -0
  1203. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/deprecated-server-create-file-option-80246b13bd3c1b43.yaml +0 -0
  1204. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/detailed-volume-quotas-198dc2e8f57ce1e7.yaml +0 -0
  1205. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/drop-py2-421c90fbdf18dbc2.yaml +0 -0
  1206. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/drop-python-38-9dcbd2b2b51f24f2.yaml +0 -0
  1207. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/drop-python-39-fc95c2d17a862e3e.yaml +0 -0
  1208. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/entrypoint-3.8-0597d159889042f7.yaml +0 -0
  1209. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fip-filter-opts-a847f8743fef467f.yaml +0 -0
  1210. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-backup-incremental-d1c1e6886cf32256.yaml +0 -0
  1211. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-flavor-in-server-list-microversion-2.47-af200e9bb4747e2d.yaml +0 -0
  1212. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-flavor-props-formatting-d21e97745543caa7.yaml +0 -0
  1213. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-image-create-from-volume-c573e553161605c4.yaml +0 -0
  1214. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-image-set-project-accept-owner-bug-2136795.yaml +0 -0
  1215. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-network-rbac-create-d1f4de77ad2dd421.yaml +0 -0
  1216. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-openstak-image-save-sdk-port-eb160e8ffc92e514.yaml +0 -0
  1217. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-restore-resp-e664a643a723cd2e.yaml +0 -0
  1218. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-show-backup-by-name-0759c55396be77a3.yaml +0 -0
  1219. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-story-2007890-0974f3e69f26801e.yaml +0 -0
  1220. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/fix-story-2010775-953dbdf03b2b6746.yaml +0 -0
  1221. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/flavor-add-description-b618abd4a7fb6545.yaml +0 -0
  1222. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/flavor-create-with-project-19d41bfa93e3c6d0.yaml +0 -0
  1223. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/flavor-id-auto-e21157f97dc1d7f2.yaml +0 -0
  1224. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/flavor-list-min-disk-min-ram-65ba35e7acc24134.yaml +0 -0
  1225. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/floating-ip-multi-port-9779e88f590cae23.yaml +0 -0
  1226. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/floating-ip-set-unset-port-28e33875937b69cf.yaml +0 -0
  1227. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/floatingip_dns_integration-f26c7575694d098d.yaml +0 -0
  1228. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/force-flag-openstackclient-c172de2717e5cfac.yaml +0 -0
  1229. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/idp-auth-ttl-6632df5db65a3bdd.yaml +0 -0
  1230. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/image-import-d5da3e5ce8733fb0.yaml +0 -0
  1231. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/image-list-filter-multiple-properties-03c51d43131ee3b6.yaml +0 -0
  1232. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/image-list-multiple-tags-a394799c7807f031.yaml +0 -0
  1233. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/image-metadef-namespace-b940206bece64f97.yaml +0 -0
  1234. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/image-set-to-update-image-membership-68221f226ca3b6e0.yaml +0 -0
  1235. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/image-stage-ac19c47e6a52ffeb.yaml +0 -0
  1236. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/image_set_visibility-babf4ff2f687d465.yaml +0 -0
  1237. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/implement-system-scope-4c3c47996f98deac.yaml +0 -0
  1238. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/implements-hide-image-4c726a61c336ebaa.yaml +0 -0
  1239. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/improved-server-output-6965b664f6abda8d.yaml +0 -0
  1240. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/ip-availability-ca1cf440f6c70afc.yaml +0 -0
  1241. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/ip-command-rework-8d3fe0858f51e6b8.yaml +0 -0
  1242. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/keypair-create-client-side-generation-73d8dd36192f70c9.yaml +0 -0
  1243. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/keypair-support-type-6f7c32aab3b61f7b.yaml +0 -0
  1244. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/keypair-user-id-db694210695a0ee0.yaml +0 -0
  1245. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/keystone-create-user-no-password-619bcddcd046dda8.yaml +0 -0
  1246. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/keystone-endpoint-filter-e930a7b72276fa2c.yaml +0 -0
  1247. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/keystone-endpoint-group-0c55debbb66844f2.yaml +0 -0
  1248. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/list-detailed-quota-informations-1755129e1c68a252.yaml +0 -0
  1249. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/list-subnet-by-pool-id-a642efc13d04fa08.yaml +0 -0
  1250. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/list_role_assignment_names-0db89f50259d4be2.yaml +0 -0
  1251. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/list_volume_type_access-f7d9aa6159f757ea.yaml +0 -0
  1252. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/make-snapshot-and-backup-name-optional-01971d33640ef1c8.yaml +0 -0
  1253. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-access-rule-to-sdk-923682b4c71fea8a.yaml +0 -0
  1254. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-add-fixed-ip-to-sdk-3d932d77633bc765.yaml +0 -0
  1255. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-agent-commands-1c50ffcb75f91418.yaml +0 -0
  1256. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-application-credential-to-sdk-c79d8dfc3c8e1d9f.yaml +0 -0
  1257. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-backup-commands-0becc8f18cf9737b.yaml +0 -0
  1258. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-create-server-image-to-sdk-e3d8077ffe05bb3d.yaml +0 -0
  1259. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-credential-to-sdk-33a841847fe7d568.yaml +0 -0
  1260. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-domain-to-sdk-da6ec38221e79a37.yaml +0 -0
  1261. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-endpoint-to-sdk-8ca5a34794b6bd7e.yaml +0 -0
  1262. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-group-to-sdk-59beef31a7c40bbb.yaml +0 -0
  1263. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-host-list-show-to-sdk-9b80cd9b4196ab01.yaml +0 -0
  1264. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-host-set-438997eb6f81f2b1.yaml +0 -0
  1265. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-limits-show-f586c9762dfd7d0c.yaml +0 -0
  1266. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-region-to-sdk-fbd27bceaa1db9dc.yaml +0 -0
  1267. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-resource-filter-commands-2a353edb965723d1.yaml +0 -0
  1268. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-role-assignment-to-sdk-e6e52bef467b4e4c.yaml +0 -0
  1269. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-add-network-add-port-to-sdk-7d81b25f59cfbec9.yaml +0 -0
  1270. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-add-volume-to-sdk-685e036a88839651.yaml +0 -0
  1271. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-backup-to-sdk-0f170baf38e98b40.yaml +0 -0
  1272. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-evacuate-to-sdk-a0415988ef5451b2.yaml +0 -0
  1273. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-events-to-sdk-6a1f5dce582df245.yaml +0 -0
  1274. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-pause-unpause-to-sdk-d74ec8536b764af6.yaml +0 -0
  1275. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-reboot-to-sdk-a49822810def4c8a.yaml +0 -0
  1276. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-restore-to-sdk-4540f26753031779.yaml +0 -0
  1277. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-set-unset-to-sdk-ae32ebcced845b06.yaml +0 -0
  1278. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-shelve-unshelve-to-sdk-8fce77586aa68a51.yaml +0 -0
  1279. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-start-stop-to-sdk-55edd4e1ff5e6ac7.yaml +0 -0
  1280. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-suspend-resume-to-sdk-fd1709336607b496.yaml +0 -0
  1281. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-server-volume-list-update-to-sdk-95b1d3063e46f813.yaml +0 -0
  1282. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-service-list-delete-set-to-sdk-920cbe0d210af565.yaml +0 -0
  1283. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-service-provider-to-sdk-74dc48b227f21a05.yaml +0 -0
  1284. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-service-to-sdk-6ff62ebf7e41db7c.yaml +0 -0
  1285. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-trust-to-sdk-9397c9cfddcb636a.yaml +0 -0
  1286. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-volume-attachment-commands-4309409bca1ca5d4.yaml +0 -0
  1287. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-volume-backend-commands-259e553e213c71b0.yaml +0 -0
  1288. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-volume-revert-to-sdk-1e399853d80ba5f8.yaml +0 -0
  1289. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/migrate-volume-summary-to-sdk-96ff58f653e0feaa.yaml +0 -0
  1290. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/modify-compute-agent-set-77ff894ef62ebbc7.yaml +0 -0
  1291. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/name-lookup-one-by-one-e0f15f4eab329b19.yaml +0 -0
  1292. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/network-add-qos-policy-a25e868e67142f90.yaml +0 -0
  1293. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/network-flavor-command-support-afe3a9da962a09bf.yaml +0 -0
  1294. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/network-ndp-proxy-cli-19afc530fc7061e2.yaml +0 -0
  1295. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/network-ovn-agents-bdfced3a6d25e7d2.yaml +0 -0
  1296. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/network-port-create-vnic-type-vdpa-fc02516cfb919941.yaml +0 -0
  1297. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/network-qos-rule-type-filters-47f4911a02011501.yaml +0 -0
  1298. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/network-quota-no-force-default-0975bdf15655070c.yaml +0 -0
  1299. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/network_dns_integration-5914b2c2be474a41.yaml +0 -0
  1300. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/neutron-client-flavors-81387171f67a3c82.yaml +0 -0
  1301. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/neutron_mtu-d87e53e2d76f8612.yaml +0 -0
  1302. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/no-force-limit-quota-cc7f291dd1b537c1.yaml +0 -0
  1303. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/no-project-usage-list-e88eb49aa2e96cf7.yaml +0 -0
  1304. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/nova-gaps-server-list-to-sdk-88c8bfc10a9e3032.yaml +0 -0
  1305. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/object-stdout-db76cc500948b0e8.yaml +0 -0
  1306. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/optional-volume-name-ffbefe463a598b6c.yaml +0 -0
  1307. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/options-create-router-97910a882b604652.yaml +0 -0
  1308. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/osc-included-image-signing-a7021a4dbdcf6336.yaml +0 -0
  1309. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/osc4-compute-09246008eff260cb.yaml +0 -0
  1310. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/osc4-identity-6564257c67d43106.yaml +0 -0
  1311. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/osc4-image-e922ee6f8e028648.yaml +0 -0
  1312. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/osc4-network-db2aed696d964ca6.yaml +0 -0
  1313. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/osc4-volume-470422e5a453310e.yaml +0 -0
  1314. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/pass_ssh_args-cf26a2ce26ccddaf.yaml +0 -0
  1315. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/port-device-profile-4a3bf800da21c778.yaml +0 -0
  1316. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/port-list-security-group-4af5d2e789174ff9.yaml +0 -0
  1317. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/port-unset-device-id-and-owner-9fce242155c82992.yaml +0 -0
  1318. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/port_uplink_status_propagation_updatable-d1e155c19247b666.yaml +0 -0
  1319. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/project-cleanup-skip-resource-option-4f80db0d8cf36fdb.yaml +0 -0
  1320. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/properties-with-image-property-field.yaml-c51bf37c3106d6ff.yaml +0 -0
  1321. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/qos-min-pps-rule-bfe22cea1966c4a0.yaml +0 -0
  1322. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/quota-delete-947df66ae5341cbf.yaml +0 -0
  1323. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/quota-network-force-920913981b45ba1a.yaml +0 -0
  1324. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/quota-set-default-option-bc26d37dc150533b.yaml +0 -0
  1325. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/quota-show-service-options-ba48d6eca8ffc4f9.yaml +0 -0
  1326. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/quota-show-usage-option-19b1f59fb5f3498f.yaml +0 -0
  1327. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/rbac-add-address-group-f9bb83238b5a7c1f.yaml +0 -0
  1328. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/rbac-add-address-scope-7f6409ab70d36306.yaml +0 -0
  1329. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/rbac-add-security-group-35370701a06ac906.yaml +0 -0
  1330. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/rbac-add-subnetpool-f1fc0e728ff61654.yaml +0 -0
  1331. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/recursive-container-delete-983361aa9c35ffed.yaml +0 -0
  1332. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/remove-deprecated-quota-show-class-option-2109a6ff7ac18e80.yaml +0 -0
  1333. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/remove-deprecated-server-migrate-live-option-28ec43ee210124dc.yaml +0 -0
  1334. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/remove-ip-floating-commands-d5363f313e09249a.yaml +0 -0
  1335. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/remove-nlbaas-quota-8b38e0c91ab113cb.yaml +0 -0
  1336. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/remove-osc_password-0767ac78267ef114.yaml +0 -0
  1337. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/remove-project-purge-d372374b1a7c4641.yaml +0 -0
  1338. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/remove-unsupported-set-vlan-transparent-eeff412264ae7c09.yaml +0 -0
  1339. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/remove-volume-v1-commands-bfa14e9cae54929f.yaml +0 -0
  1340. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/rename-server-migrate-confirm-revert-commands-84fcb937721f5c4a.yaml +0 -0
  1341. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/rename-server-volume-update-to-server-volume-set-833f1730a9bf6169.yaml +0 -0
  1342. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/rename-snapshot-commands-e0937f7143a4ef55.yaml +0 -0
  1343. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/rename-volume-set-retype-policy-6bacb7dd92f1ad82.yaml +0 -0
  1344. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/restore-create-image-duplicates-92e06f64038b120c.yaml +0 -0
  1345. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/router-create-with-qos-policy-b94967a35351cddd.yaml +0 -0
  1346. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/router-extraroute-atomic-d6d406ffb15695f2.yaml +0 -0
  1347. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/router-gateway-IP-QoS-c8ba95e180bca05f.yaml +0 -0
  1348. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/router-gateway-set-01d9c7ffe4461daf.yaml +0 -0
  1349. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/router-port-add-0afe7392c080bcb8.yaml +0 -0
  1350. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/router-remove-port-058078c93819b0f4.yaml +0 -0
  1351. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/router-subnet-469d095ae0bac884.yaml +0 -0
  1352. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/security-grp-json-fix.yaml-2af1f48a48034d64.yaml +0 -0
  1353. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-add-tag-63f9cd01dbd82d1b.yaml +0 -0
  1354. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-changes-3962541b6ebdbbd8.yaml +0 -0
  1355. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-create-no-security-group-option-627697bddae429b1.yaml +0 -0
  1356. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-create-server-group-a5b630f2a64de28d.yaml +0 -0
  1357. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-description-ae9618fc09544cac.yaml +0 -0
  1358. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-group-create_rule_option-9f84e52f35e7c3ba.yaml +0 -0
  1359. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-list-host-status-1f542a5bc4292a62.yaml +0 -0
  1360. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-list-restrict-images-c0b2c4de6f93df33.yaml +0 -0
  1361. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-list-selectable-fields.yaml-1d5fb4784fa6f232.yaml +0 -0
  1362. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-migration-by-uuid-59f8272f63abee5d.yaml +0 -0
  1363. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-ops-all-projects-2ce2202cdf617184.yaml +0 -0
  1364. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-rebuild-property-e8c6439b04e27c80.yaml +0 -0
  1365. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-rebuild-with-keypair-name-83c1aa20db136d91.yaml +0 -0
  1366. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/server-set-state-214b12ec2161de4d.yaml +0 -0
  1367. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/service-set-option-61772a8940ad0778.yaml +0 -0
  1368. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/show-result-for-server-add-volume-f75277ad58e31024.yaml +0 -0
  1369. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/show-server-topology-microversion-v2_78-3891fc67f767177e.yaml +0 -0
  1370. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/skip-name-lookups-9f499927173c1eee.yaml +0 -0
  1371. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/speedup-object-save-6bd59e678a31c3e8.yaml +0 -0
  1372. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/stateful-security-group-a21fa8498e866b90.yaml +0 -0
  1373. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/story-2004346-add-floating-ip-with-no-ports-399c5559e1699816.yaml +0 -0
  1374. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/story-2005349-compute-service-set-2.53-3d2db875154e633a.yaml +0 -0
  1375. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/story-2005468-server-use-config-drive-9fc68552365cfefa.yaml +0 -0
  1376. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/story-2006302-add-boot-from-volume-cd411b1ca776bb3c.yaml +0 -0
  1377. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/story-2006302-support-bdm-type-image-0becfb63bd4fb969.yaml +0 -0
  1378. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/story-2007727-69b705c561309742.yaml +0 -0
  1379. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/story-2010343-b5eb4ed593f51d3f.yaml +0 -0
  1380. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/story-2010751-server-rebuild-wait-shutoff-c84cddcd3f15e9ce.yaml +0 -0
  1381. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/subnet-service-type-8d9c414732e474a4.yaml +0 -0
  1382. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/subnet-set-bbc26ecc16929302.yaml +0 -0
  1383. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/subnet-set-segment-id-4440e433b170f9f3.yaml +0 -0
  1384. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/subnet-unset-5b458cdbaf93d766.yaml +0 -0
  1385. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/subnet-unset-gateway-20239d5910e10778.yaml +0 -0
  1386. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/support-icmp-type-code-zero-cbef0a36db2b8123.yaml +0 -0
  1387. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/support-no-property-in-volume-811e67ff4a199eb6.yaml +0 -0
  1388. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/support-no-property-in-volume-snapshot-0af3fcb31a3cfc2b.yaml +0 -0
  1389. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/support-uplink_status_propagation-4d37452bcf03e0f8.yaml +0 -0
  1390. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-aggregate-to-sdk-ced451a0f28bf6ea.yaml +0 -0
  1391. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-console-log-to-sdk-6ee92b7833364d3d.yaml +0 -0
  1392. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-flavor-to-sdk-b874a3c39559815e.yaml +0 -0
  1393. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-hypervisor-to-sdk-2e90b26a14ffcef3.yaml +0 -0
  1394. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-hypervisor-to-sdk-f6495f070b034718.yaml +0 -0
  1395. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-keypair-to-sdk-81e28380e66a7f9c.yaml +0 -0
  1396. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-server-lock-to-sdk-d5dd17e4987233a5.yaml +0 -0
  1397. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-server-migration-show-to-sdk-4adb88a0f1f03f3b.yaml +0 -0
  1398. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-server-migration-to-sdk-4e4530f787f90fd2.yaml +0 -0
  1399. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-server-remove-network-port-to-sdk-829ba711e0e198d5.yaml +0 -0
  1400. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-server-remove-volume-to-sdk-47e9befd2672dcdf.yaml +0 -0
  1401. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/switch-server-show-to-sdk-44a614aebf2c6da6.yaml +0 -0
  1402. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/task-40279-eb0d718ac1959c50.yaml +0 -0
  1403. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/unlock-volume-a6990fc3bf1f5f67.yaml +0 -0
  1404. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/unset-router-7b0cbd9518bb1de6.yaml +0 -0
  1405. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/unset-subnet-pool-333052dd85b95653.yaml +0 -0
  1406. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/usage-list-all-49ca7a62c50e71d3.yaml +0 -0
  1407. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/use_sdk_for_image-f49d2df38e7d9f81.yaml +0 -0
  1408. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/versions-show-12a2443624c83048.yaml +0 -0
  1409. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-attachment-create-output-fix-56515b8fcdd260b9.yaml +0 -0
  1410. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-backend-c5faae0b31556a24.yaml +0 -0
  1411. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-backup-created-at-list-v3-47400b31be5143bc.yaml +0 -0
  1412. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-backup-record-9f5987c45e294dc6.yaml +0 -0
  1413. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-migrate-command-52cf6edd62fe17a7.yaml +0 -0
  1414. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-service-set-fix-345a8bc84267f743.yaml +0 -0
  1415. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-type-extra-specs-22a22fcb6e269832.yaml +0 -0
  1416. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-type-list-properties-filter-8532f96d16733915.yaml +0 -0
  1417. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume-v3-default-0ffa9bebb43b5057.yaml +0 -0
  1418. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/volume_snapshot_list_project-e7dcc07f98d44182.yaml +0 -0
  1419. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/notes/warn-on-disk-overcommit-087ae46f12d74693.yaml +0 -0
  1420. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/2023.1.rst +0 -0
  1421. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/2023.2.rst +0 -0
  1422. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/2024.1.rst +0 -0
  1423. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/2024.2.rst +0 -0
  1424. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/2025.1.rst +0 -0
  1425. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/2025.2.rst +0 -0
  1426. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/20_releases.rst +0 -0
  1427. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/_static/.placeholder +0 -0
  1428. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/_templates/.placeholder +0 -0
  1429. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/conf.py +0 -0
  1430. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/index.rst +0 -0
  1431. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/mitaka.rst +0 -0
  1432. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/newton.rst +0 -0
  1433. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/ocata.rst +0 -0
  1434. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/pike.rst +0 -0
  1435. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/pre_20_releases.rst +0 -0
  1436. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/queens.rst +0 -0
  1437. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/rocky.rst +0 -0
  1438. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/stein.rst +0 -0
  1439. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/train.rst +0 -0
  1440. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/unreleased.rst +0 -0
  1441. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/ussuri.rst +0 -0
  1442. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/victoria.rst +0 -0
  1443. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/wallaby.rst +0 -0
  1444. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/xena.rst +0 -0
  1445. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/yoga.rst +0 -0
  1446. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/releasenotes/source/zed.rst +0 -0
  1447. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/requirements.txt +0 -0
  1448. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/setup.cfg +0 -0
  1449. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/setup.py +0 -0
  1450. {python_openstackclient-8.3.0 → python_openstackclient-9.0.0}/test-requirements.txt +0 -0
@@ -15,28 +15,14 @@ repos:
15
15
  files: .*\.(yaml|yml)$
16
16
  args: ['--unsafe']
17
17
  - repo: https://github.com/astral-sh/ruff-pre-commit
18
- rev: v0.14.0
18
+ rev: v0.15.1
19
19
  hooks:
20
20
  - id: ruff-check
21
21
  args: ['--fix', '--unsafe-fixes']
22
22
  - id: ruff-format
23
23
  - repo: https://opendev.org/openstack/hacking
24
- rev: 7.0.0
24
+ rev: 8.0.0
25
25
  hooks:
26
26
  - id: hacking
27
27
  additional_dependencies: []
28
28
  exclude: '^(doc|releasenotes)/.*$'
29
- - repo: https://github.com/pre-commit/mirrors-mypy
30
- rev: v1.18.2
31
- hooks:
32
- - id: mypy
33
- additional_dependencies:
34
- - types-requests
35
- # keep this in-sync with '[tool.mypy] exclude' in 'pyproject.toml'
36
- exclude: |
37
- (?x)(
38
- doc/.*
39
- | examples/.*
40
- | hacking/.*
41
- | releasenotes/.*
42
- )
@@ -28,6 +28,7 @@ Andreas Jaeger <aj@suse.com>
28
28
  Andreas Jaeger <aj@suse.de>
29
29
  Andrey Kurilin <akurilin@mirantis.com>
30
30
  Andrey Larionov <anlarionov@gmail.com>
31
+ Andriy Kurilin <andr.kurilin@gmail.com>
31
32
  Anh Tran <anhtt@vn.fujitsu.com>
32
33
  Anindita Das <anindita.das@intel.com>
33
34
  Anita Kuno <anteaya@anteaya.info>
@@ -131,6 +132,7 @@ Elod Illes <elod.illes@est.tech>
131
132
  Emilien Macchi <emilien@redhat.com>
132
133
  Eric Brown <browne@vmware.com>
133
134
  Eric Fried <openstack@fried.cc>
135
+ Eric Harney <eharney@redhat.com>
134
136
  Fan Zhang <zh.f@outlook.com>
135
137
  Fang Zhen <zhen.fang@easystack.cn>
136
138
  Fei Long Wang <flwang@catalyst.net.nz>
@@ -333,6 +335,7 @@ Petr Blaho <pblaho@redhat.com>
333
335
  Pierre Hanselmann <pierre.hanselmann@gmail.com>
334
336
  Pierre Prinetti <pierreprinetti@redhat.com>
335
337
  Pierre Riteau <pierre@stackhpc.com>
338
+ Piotr Sipika <psipika@bloomberg.net>
336
339
  Przemyslaw Szczerbik <przemyslaw.szczerbik@est.tech>
337
340
  Qiu Yu <qiuyu@ebaysf.com>
338
341
  Radoslaw Smigielski <radoslaw.smigielski@nokia.com>
@@ -467,6 +470,7 @@ ZhongShengping <chdzsp@163.com>
467
470
  Zhou Zhihong <zhouzhihong@cmss.chinamobile.com>
468
471
  adrian-turjak <adriant@catalyst.net.nz>
469
472
  asarfaty <asarfaty@vmware.com>
473
+ asdasd7183 <yoonsookim1102@gmail.com>
470
474
  blue55 <yllan@fiberhome.com>
471
475
  caoyuan <cao.yuan@99cloud.net>
472
476
  chengkunye <chengkun@unitedstack.com>
@@ -547,6 +551,7 @@ reedip <reedip.banerjee@nectechnologies.in>
547
551
  rladntjr4 <rladntjr4@gmail.com>
548
552
  root <ranasheel2000@gmail.com>
549
553
  ryanKor <equus3144@gmail.com>
554
+ seheonnn <ho78901@naver.com>
550
555
  sharat.sharma <sharat.sharma@nectechnologies.in>
551
556
  shizhihui <zhihui.shi@easystack.cn>
552
557
  songminglong <songminglong@cmss.chinamobile.com>
@@ -1,6 +1,24 @@
1
1
  CHANGES
2
2
  =======
3
3
 
4
+ 9.0.0
5
+ -----
6
+
7
+ * Add release notes for federation protocol commands
8
+ * trivial: Enable flake8-logging-format (G) rules
9
+ * Run mypy from tox
10
+ * trivial: Align tox indentation with other SDK projects
11
+ * Rename openstack volume delete --purge -> --cascade
12
+ * Make --all-stores behave the same as in glanceclient
13
+ * Identity: Migrate 'federation protocol' commands to SDK
14
+ * Identity: Add --project-domain option for limits
15
+ * Identity: Use project's domain for its parent
16
+ * Identity: Migrate 'project' commands to SDK
17
+ * Identity: Migrate 'limit' commands to SDK
18
+ * Fix: Make server resize options required
19
+ * Replace obsolete PCRE packages
20
+ * Fix quota usage and reservation display
21
+
4
22
  8.3.0
5
23
  -----
6
24
 
@@ -21,10 +39,13 @@ CHANGES
21
39
  * ruff: Enable E5 check
22
40
  * Improve help strings for tap services
23
41
  * Moving tapas osc client code from neutronclient
42
+ * Identity: Migrate 'registered limit' commands to SDK
24
43
  * Remove duplicate test utilities
25
44
  * volume: Add missing backup\_id field in tests
45
+ * Add functional test for volume snapshot
26
46
  * Change metavar name for \`registered limit delete\`
27
47
  * Try to make help text of network code consistent
48
+ * tests: Update functional test for image metadef object
28
49
  * hacking: Check for missing ignore\_missing calls
29
50
  * trivial: Add missing ignore\_missing arguments
30
51
  * identity: Remove duplicated \_find\_sdk\_id method
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-openstackclient
3
- Version: 8.3.0
3
+ Version: 9.0.0
4
4
  Summary: OpenStack Command-line Client
5
5
  Author-email: OpenStack <openstack-discuss@lists.openstack.org>
6
6
  License: Apache-2.0
@@ -8,4 +8,4 @@ libffi-dev [compile test platform:dpkg]
8
8
  libssl-dev [compile test platform:dpkg]
9
9
  python3-dev [compile test platform:dpkg]
10
10
  python3-devel [compile test platform:rpm]
11
- libpcre3-dev [test platform:dpkg]
11
+ libpcre2-dev [test platform:dpkg]
@@ -4,7 +4,7 @@ sphinx>=2.0.0,!=2.1.0 # BSD
4
4
  sphinxcontrib-apidoc>=0.2.0 # BSD
5
5
 
6
6
  # redirect tests in docs
7
- whereto>=0.4.0 # Apache-2.0
7
+ whereto>=0.5.0 # Apache-2.0
8
8
 
9
9
  # Install these to generate sphinx autodocs
10
10
  aodhclient>=0.9.0 # Apache-2.0
@@ -264,7 +264,7 @@ def main(opts, run):
264
264
  if dump_stack_trace:
265
265
  _logger.error(traceback.format_exc(e))
266
266
  else:
267
- _logger.error('Exception raised: ' + str(e))
267
+ _logger.error('Exception raised: %s', e)
268
268
  return 1
269
269
 
270
270
 
@@ -61,7 +61,7 @@ class ListCommand(command.Lister):
61
61
  # TODO(bapalm): Fix this when cliff properly supports
62
62
  # handling the detection rather than using the hard-code below.
63
63
  if parsed_args.formatter == 'table':
64
- command_names = utils.format_list(command_names, "\n")
64
+ command_names = utils.format_list(command_names, "\n") # type: ignore
65
65
 
66
66
  commands.append((group, command_names))
67
67
 
@@ -272,7 +272,10 @@ class ListQuota(command.Lister):
272
272
  sdk_exceptions.NotFoundException,
273
273
  ) as exc:
274
274
  # Project not found, move on to next one
275
- LOG.warning(f"Project {project_id} not found: {exc}")
275
+ LOG.warning(
276
+ 'Project %(project_id)s not found: %(exc)s',
277
+ {'project_id': project_id, 'exc': exc},
278
+ )
276
279
  continue
277
280
 
278
281
  project_result = _xform_get_quota(
@@ -334,7 +337,10 @@ class ListQuota(command.Lister):
334
337
  sdk_exceptions.NotFoundException,
335
338
  ) as exc:
336
339
  # Project not found, move on to next one
337
- LOG.warning(f"Project {project_id} not found: {exc}")
340
+ LOG.warning(
341
+ 'Project %(project_id)s not found: %(exc)s',
342
+ {'project_id': project_id, 'exc': exc},
343
+ )
338
344
  continue
339
345
 
340
346
  project_result = _xform_get_quota(
@@ -389,7 +395,10 @@ class ListQuota(command.Lister):
389
395
  sdk_exceptions.ForbiddenException,
390
396
  ) as exc:
391
397
  # Project not found, move on to next one
392
- LOG.warning(f"Project {project_id} not found: {exc}")
398
+ LOG.warning(
399
+ 'Project %(project_id)s not found: %(exc)s',
400
+ {'project_id': project_id, 'exc': exc},
401
+ )
393
402
  continue
394
403
 
395
404
  project_result = _xform_get_quota(
@@ -797,20 +806,25 @@ and ``server-group-members`` output for a given quota class."""
797
806
  info.update(volume_quota_info)
798
807
  info.update(network_quota_info)
799
808
 
800
- # Map the internal quota names to the external ones
801
- # COMPUTE_QUOTAS and NETWORK_QUOTAS share floating-ips,
802
- # secgroup-rules and secgroups as dict value, so when
803
- # neutron is enabled, quotas of these three resources
804
- # in nova will be replaced by neutron's.
805
- for k, v in itertools.chain(
806
- COMPUTE_QUOTAS.items(),
807
- NOVA_NETWORK_QUOTAS.items(),
808
- VOLUME_QUOTAS.items(),
809
- NETWORK_QUOTAS.items(),
810
- ):
811
- if not k == v and info.get(k) is not None:
812
- info[v] = info[k]
813
- info.pop(k)
809
+ def _normalize_names(section: dict) -> None:
810
+ # Map the internal quota names to the external ones
811
+ # COMPUTE_QUOTAS and NETWORK_QUOTAS share floating-ips,
812
+ # secgroup-rules and secgroups as dict value, so when
813
+ # neutron is enabled, quotas of these three resources
814
+ # in nova will be replaced by neutron's.
815
+ for k, v in itertools.chain(
816
+ COMPUTE_QUOTAS.items(),
817
+ NOVA_NETWORK_QUOTAS.items(),
818
+ VOLUME_QUOTAS.items(),
819
+ NETWORK_QUOTAS.items(),
820
+ ):
821
+ if not k == v and section.get(k) is not None:
822
+ section[v] = section.pop(k)
823
+
824
+ _normalize_names(info)
825
+ if parsed_args.usage:
826
+ _normalize_names(info["reservation"])
827
+ _normalize_names(info["usage"])
814
828
 
815
829
  # Remove the 'id' field since it's not very useful
816
830
  if 'id' in info:
@@ -4267,7 +4267,7 @@ release the new server and restart the old one."""
4267
4267
  metavar='<server>',
4268
4268
  help=_('Server (name or ID)'),
4269
4269
  )
4270
- phase_group = parser.add_mutually_exclusive_group()
4270
+ phase_group = parser.add_mutually_exclusive_group(required=True)
4271
4271
  phase_group.add_argument(
4272
4272
  '--flavor',
4273
4273
  metavar='<flavor>',
@@ -5018,7 +5018,7 @@ class SshServer(command.Command):
5018
5018
  )
5019
5019
 
5020
5020
  cmd = ' '.join(['ssh', ip_address] + args)
5021
- LOG.debug(f"ssh command: {cmd}")
5021
+ LOG.debug('ssh command: %s', cmd)
5022
5022
  # we intentionally pass through user-provided arguments and run this in
5023
5023
  # the user's shell
5024
5024
  os.system(cmd) # noqa: S605
@@ -256,6 +256,37 @@ def find_project(identity_client, name_or_id, domain_name_or_id=None):
256
256
  )
257
257
 
258
258
 
259
+ def find_project_id_sdk(
260
+ identity_client,
261
+ name_or_id,
262
+ domain_name_or_id=None,
263
+ *,
264
+ validate_actor_existence=True,
265
+ validate_domain_actor_existence=None,
266
+ ):
267
+ if domain_name_or_id is None:
268
+ return _find_sdk_id(
269
+ identity_client.find_project,
270
+ name_or_id=name_or_id,
271
+ validate_actor_existence=validate_actor_existence,
272
+ )
273
+
274
+ if validate_domain_actor_existence is None:
275
+ validate_domain_actor_existence = validate_actor_existence
276
+
277
+ domain_id = find_domain_id_sdk(
278
+ identity_client,
279
+ name_or_id=domain_name_or_id,
280
+ validate_actor_existence=validate_domain_actor_existence,
281
+ )
282
+ return _find_sdk_id(
283
+ identity_client.find_project,
284
+ name_or_id=name_or_id,
285
+ validate_actor_existence=validate_actor_existence,
286
+ domain_id=domain_id,
287
+ )
288
+
289
+
259
290
  def find_user(identity_client, name_or_id, domain_name_or_id=None):
260
291
  if domain_name_or_id is None:
261
292
  return _find_identity_resource(
@@ -160,7 +160,9 @@ class ShowService(command.ShowOne):
160
160
  for service, service_endpoints in endpoints.items():
161
161
  if service_endpoints:
162
162
  info = {"type": service}
163
- info.update(service_endpoints[0])
163
+ # FIXME(stephenfin): The return type for this in ksa is
164
+ # wrong
165
+ info.update(service_endpoints[0]) # type: ignore
164
166
  return zip(*sorted(info.items()))
165
167
 
166
168
  msg = _(
@@ -26,6 +26,15 @@ from openstackclient.i18n import _
26
26
  LOG = logging.getLogger(__name__)
27
27
 
28
28
 
29
+ def _format_protocol(protocol):
30
+ columns = ('name', 'idp_id', 'mapping_id')
31
+ column_headers = ('id', 'identity_provider', 'mapping')
32
+ return (
33
+ column_headers,
34
+ utils.get_item_properties(protocol, columns),
35
+ )
36
+
37
+
29
38
  class CreateProtocol(command.ShowOne):
30
39
  _description = _("Create new federation protocol")
31
40
 
@@ -58,21 +67,15 @@ class CreateProtocol(command.ShowOne):
58
67
  return parser
59
68
 
60
69
  def take_action(self, parsed_args):
61
- identity_client = self.app.client_manager.identity
62
- protocol = identity_client.federation.protocols.create(
63
- protocol_id=parsed_args.federation_protocol,
64
- identity_provider=parsed_args.identity_provider,
65
- mapping=parsed_args.mapping,
70
+ identity_client = self.app.client_manager.sdk_connection.identity
71
+
72
+ protocol = identity_client.create_federation_protocol(
73
+ name=parsed_args.federation_protocol,
74
+ idp_id=parsed_args.identity_provider,
75
+ mapping_id=parsed_args.mapping,
66
76
  )
67
- info = dict(protocol._info)
68
- # NOTE(marek-denis): Identity provider is not included in a response
69
- # from Keystone, however it should be listed to the user. Add it
70
- # manually to the output list, simply reusing value provided by the
71
- # user.
72
- info['identity_provider'] = parsed_args.identity_provider
73
- info['mapping'] = info.pop('mapping_id')
74
- info.pop('links', None)
75
- return zip(*sorted(info.items()))
77
+
78
+ return _format_protocol(protocol)
76
79
 
77
80
 
78
81
  class DeleteProtocol(command.Command):
@@ -99,12 +102,15 @@ class DeleteProtocol(command.Command):
99
102
  return parser
100
103
 
101
104
  def take_action(self, parsed_args):
102
- identity_client = self.app.client_manager.identity
105
+ identity_client = self.app.client_manager.sdk_connection.identity
106
+
103
107
  result = 0
104
108
  for i in parsed_args.federation_protocol:
105
109
  try:
106
- identity_client.federation.protocols.delete(
107
- parsed_args.identity_provider, i
110
+ identity_client.delete_federation_protocol(
111
+ idp_id=parsed_args.identity_provider,
112
+ protocol=i,
113
+ ignore_missing=False,
108
114
  )
109
115
  except Exception as e:
110
116
  result += 1
@@ -140,9 +146,9 @@ class ListProtocols(command.Lister):
140
146
  return parser
141
147
 
142
148
  def take_action(self, parsed_args):
143
- identity_client = self.app.client_manager.identity
149
+ identity_client = self.app.client_manager.sdk_connection.identity
144
150
 
145
- protocols = identity_client.federation.protocols.list(
151
+ protocols = identity_client.federation_protocols(
146
152
  parsed_args.identity_provider
147
153
  )
148
154
  columns = ('id', 'mapping')
@@ -181,21 +187,16 @@ class SetProtocol(command.Command):
181
187
  return parser
182
188
 
183
189
  def take_action(self, parsed_args):
184
- identity_client = self.app.client_manager.identity
190
+ identity_client = self.app.client_manager.sdk_connection.identity
185
191
 
186
- protocol = identity_client.federation.protocols.update(
187
- parsed_args.identity_provider,
188
- parsed_args.federation_protocol,
189
- parsed_args.mapping,
190
- )
191
- info = dict(protocol._info)
192
- # NOTE(marek-denis): Identity provider is not included in a response
193
- # from Keystone, however it should be listed to the user. Add it
194
- # manually to the output list, simply reusing value provided by the
195
- # user.
196
- info['identity_provider'] = parsed_args.identity_provider
197
- info['mapping'] = info.pop('mapping_id')
198
- return zip(*sorted(info.items()))
192
+ kwargs = {'idp_id': parsed_args.identity_provider}
193
+ if parsed_args.federation_protocol:
194
+ kwargs['name'] = parsed_args.federation_protocol
195
+ if parsed_args.mapping:
196
+ kwargs['mapping_id'] = parsed_args.mapping
197
+
198
+ protocol = identity_client.update_federation_protocol(**kwargs)
199
+ return _format_protocol(protocol)
199
200
 
200
201
 
201
202
  class ShowProtocol(command.ShowOne):
@@ -220,12 +221,10 @@ class ShowProtocol(command.ShowOne):
220
221
  return parser
221
222
 
222
223
  def take_action(self, parsed_args):
223
- identity_client = self.app.client_manager.identity
224
+ identity_client = self.app.client_manager.sdk_connection.identity
224
225
 
225
- protocol = identity_client.federation.protocols.get(
226
- parsed_args.identity_provider, parsed_args.federation_protocol
226
+ protocol = identity_client.get_federation_protocol(
227
+ idp_id=parsed_args.identity_provider,
228
+ protocol=parsed_args.federation_protocol,
227
229
  )
228
- info = dict(protocol._info)
229
- info['mapping'] = info.pop('mapping_id')
230
- info.pop('links', None)
231
- return zip(*sorted(info.items()))
230
+ return _format_protocol(protocol)
@@ -25,6 +25,28 @@ from openstackclient.identity import common as common_utils
25
25
  LOG = logging.getLogger(__name__)
26
26
 
27
27
 
28
+ def _format_limit(limit):
29
+ columns = (
30
+ "description",
31
+ "id",
32
+ "project_id",
33
+ "region_id",
34
+ "resource_limit",
35
+ "resource_name",
36
+ "service_id",
37
+ )
38
+ column_headers = (
39
+ "description",
40
+ "id",
41
+ "project_id",
42
+ "region_id",
43
+ "resource_limit",
44
+ "resource_name",
45
+ "service_id",
46
+ )
47
+ return (column_headers, utils.get_item_properties(limit, columns))
48
+
49
+
28
50
  class CreateLimit(command.ShowOne):
29
51
  _description = _("Create a limit")
30
52
 
@@ -46,6 +68,7 @@ class CreateLimit(command.ShowOne):
46
68
  required=True,
47
69
  help=_('Project to associate the resource limit to'),
48
70
  )
71
+ common_utils.add_project_domain_option_to_parser(parser)
49
72
  parser.add_argument(
50
73
  '--service',
51
74
  metavar='<service>',
@@ -67,47 +90,33 @@ class CreateLimit(command.ShowOne):
67
90
  return parser
68
91
 
69
92
  def take_action(self, parsed_args):
70
- identity_client = self.app.client_manager.identity
71
-
72
- project = common_utils.find_project(
73
- identity_client, parsed_args.project
93
+ identity_client = self.app.client_manager.sdk_connection.identity
94
+
95
+ kwargs = {
96
+ "resource_name": parsed_args.resource_name,
97
+ "resource_limit": parsed_args.resource_limit,
98
+ }
99
+ if parsed_args.description:
100
+ kwargs["description"] = parsed_args.description
101
+
102
+ kwargs["project_id"] = common_utils.find_project_id_sdk(
103
+ identity_client,
104
+ parsed_args.project,
105
+ domain_name_or_id=parsed_args.project_domain,
74
106
  )
75
- service = common_utils.find_service(
107
+
108
+ kwargs["service_id"] = common_utils.find_service_sdk(
76
109
  identity_client, parsed_args.service
77
- )
78
- region = None
110
+ ).id
111
+
79
112
  if parsed_args.region:
80
- if 'None' not in parsed_args.region:
81
- # NOTE (vishakha): Due to bug #1799153 and for any another
82
- # related case where GET resource API does not support the
83
- # filter by name, osc_lib.utils.find_resource() method cannot
84
- # be used because that method try to fall back to list all the
85
- # resource if requested resource cannot be get via name. Which
86
- # ends up with NoUniqueMatch error.
87
- # So osc_lib.utils.find_resource() function cannot be used for
88
- # 'regions', using common_utils.get_resource() instead.
89
- region = common_utils.get_resource(
90
- identity_client.regions, parsed_args.region
91
- )
92
- else:
93
- self.log.warning(
94
- _(
95
- "Passing 'None' to indicate no region is deprecated. "
96
- "Instead, don't pass --region."
97
- )
98
- )
113
+ kwargs["region_id"] = identity_client.get_region(
114
+ parsed_args.region
115
+ ).id
99
116
 
100
- limit = identity_client.limits.create(
101
- project,
102
- service,
103
- parsed_args.resource_name,
104
- parsed_args.resource_limit,
105
- description=parsed_args.description,
106
- region=region,
107
- )
117
+ limit = identity_client.create_limit(**kwargs)
108
118
 
109
- limit._info.pop('links', None)
110
- return zip(*sorted(limit._info.items()))
119
+ return _format_limit(limit)
111
120
 
112
121
 
113
122
  class ListLimit(command.Lister):
@@ -136,50 +145,41 @@ class ListLimit(command.Lister):
136
145
  metavar='<project>',
137
146
  help=_('List resource limits associated with project'),
138
147
  )
148
+ common_utils.add_project_domain_option_to_parser(parser)
149
+
139
150
  return parser
140
151
 
141
152
  def take_action(self, parsed_args):
142
- identity_client = self.app.client_manager.identity
153
+ identity_client = self.app.client_manager.sdk_connection.identity
143
154
 
144
- service = None
155
+ kwargs = {}
145
156
  if parsed_args.service:
146
- service = common_utils.find_service(
157
+ kwargs["service_id"] = common_utils.find_service_sdk(
147
158
  identity_client, parsed_args.service
148
159
  )
149
- region = None
160
+
150
161
  if parsed_args.region:
151
- if 'None' not in parsed_args.region:
152
- # NOTE (vishakha): Due to bug #1799153 and for any another
153
- # related case where GET resource API does not support the
154
- # filter by name, osc_lib.utils.find_resource() method cannot
155
- # be used because that method try to fall back to list all the
156
- # resource if requested resource cannot be get via name. Which
157
- # ends up with NoUniqueMatch error.
158
- # So osc_lib.utils.find_resource() function cannot be used for
159
- # 'regions', using common_utils.get_resource() instead.
160
- region = common_utils.get_resource(
161
- identity_client.regions, parsed_args.region
162
- )
163
- else:
164
- self.log.warning(
165
- _(
166
- "Passing 'None' to indicate no region is deprecated. "
167
- "Instead, don't pass --region."
168
- )
169
- )
162
+ kwargs["region_id"] = identity_client.get_region(
163
+ parsed_args.region
164
+ ).id
170
165
 
171
- project = None
172
166
  if parsed_args.project:
173
- project = utils.find_resource(
174
- identity_client.projects, parsed_args.project
167
+ project_domain_id = None
168
+ if parsed_args.project_domain:
169
+ project_domain_id = common_utils.find_domain_id_sdk(
170
+ identity_client, parsed_args.project_domain
171
+ )
172
+
173
+ kwargs["project_id"] = common_utils._find_sdk_id(
174
+ identity_client.find_project,
175
+ name_or_id=parsed_args.project,
176
+ domain_id=project_domain_id,
175
177
  )
176
178
 
177
- limits = identity_client.limits.list(
178
- service=service,
179
- resource_name=parsed_args.resource_name,
180
- region=region,
181
- project=project,
182
- )
179
+ if parsed_args.resource_name:
180
+ kwargs["resource_name"] = parsed_args.resource_name
181
+
182
+ limits = identity_client.limits(**kwargs)
183
183
 
184
184
  columns = (
185
185
  'ID',
@@ -209,10 +209,9 @@ class ShowLimit(command.ShowOne):
209
209
  return parser
210
210
 
211
211
  def take_action(self, parsed_args):
212
- identity_client = self.app.client_manager.identity
213
- limit = identity_client.limits.get(parsed_args.limit_id)
214
- limit._info.pop('links', None)
215
- return zip(*sorted(limit._info.items()))
212
+ identity_client = self.app.client_manager.sdk_connection.identity
213
+ limit = identity_client.get_limit(parsed_args.limit_id)
214
+ return _format_limit(limit)
216
215
 
217
216
 
218
217
  class SetLimit(command.ShowOne):
@@ -240,17 +239,16 @@ class SetLimit(command.ShowOne):
240
239
  return parser
241
240
 
242
241
  def take_action(self, parsed_args):
243
- identity_client = self.app.client_manager.identity
244
-
245
- limit = identity_client.limits.update(
246
- parsed_args.limit_id,
247
- description=parsed_args.description,
248
- resource_limit=parsed_args.resource_limit,
249
- )
242
+ identity_client = self.app.client_manager.sdk_connection.identity
250
243
 
251
- limit._info.pop('links', None)
244
+ kwargs = {}
245
+ if parsed_args.description:
246
+ kwargs["description"] = parsed_args.description
247
+ if parsed_args.resource_limit:
248
+ kwargs["resource_limit"] = parsed_args.resource_limit
249
+ limit = identity_client.update_limit(parsed_args.limit_id, **kwargs)
252
250
 
253
- return zip(*sorted(limit._info.items()))
251
+ return _format_limit(limit)
254
252
 
255
253
 
256
254
  class DeleteLimit(command.Command):
@@ -262,17 +260,20 @@ class DeleteLimit(command.Command):
262
260
  'limit_id',
263
261
  metavar='<limit-id>',
264
262
  nargs="+",
265
- help=_('Limit to delete (ID)'),
263
+ help=_(
264
+ 'Limit to delete (ID) '
265
+ '(repeat option to remove multiple limits)'
266
+ ),
266
267
  )
267
268
  return parser
268
269
 
269
270
  def take_action(self, parsed_args):
270
- identity_client = self.app.client_manager.identity
271
+ identity_client = self.app.client_manager.sdk_connection.identity
271
272
 
272
273
  errors = 0
273
274
  for limit_id in parsed_args.limit_id:
274
275
  try:
275
- identity_client.limits.delete(limit_id)
276
+ identity_client.delete_limit(limit_id)
276
277
  except Exception as e:
277
278
  errors += 1
278
279
  LOG.error(