python-openstackclient 6.6.1__tar.gz → 7.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 (1734) hide show
  1. python-openstackclient-7.0.0/.git-blame-ignore-revs +13 -0
  2. python-openstackclient-7.0.0/.pre-commit-config.yaml +40 -0
  3. python-openstackclient-7.0.0/AUTHORS +570 -0
  4. python-openstackclient-7.0.0/ChangeLog +3715 -0
  5. python-openstackclient-7.0.0/PKG-INFO +161 -0
  6. python-openstackclient-7.0.0/doc/requirements.txt +27 -0
  7. python-openstackclient-7.0.0/doc/source/cli/backwards-incompatible.rst +392 -0
  8. python-openstackclient-7.0.0/doc/source/cli/command-objects/image-metadef.rst +50 -0
  9. python-openstackclient-7.0.0/doc/source/cli/commands.rst +343 -0
  10. python-openstackclient-7.0.0/doc/source/cli/data/glance.csv +67 -0
  11. python-openstackclient-7.0.0/doc/source/cli/plugin-commands/index.rst +34 -0
  12. python-openstackclient-7.0.0/doc/source/conf.py +290 -0
  13. python-openstackclient-7.0.0/doc/source/contributor/command-errors.rst +203 -0
  14. python-openstackclient-7.0.0/doc/source/contributor/plugins.rst +236 -0
  15. python-openstackclient-7.0.0/openstackclient/api/api.py +314 -0
  16. python-openstackclient-7.0.0/openstackclient/api/compute_v2.py +367 -0
  17. python-openstackclient-7.0.0/openstackclient/api/image_v1.py +69 -0
  18. python-openstackclient-7.0.0/openstackclient/api/object_store_v1.py +606 -0
  19. python-openstackclient-7.0.0/openstackclient/common/availability_zone.py +205 -0
  20. python-openstackclient-7.0.0/openstackclient/common/clientmanager.py +223 -0
  21. python-openstackclient-7.0.0/openstackclient/common/configuration.py +71 -0
  22. python-openstackclient-7.0.0/openstackclient/common/extension.py +173 -0
  23. python-openstackclient-7.0.0/openstackclient/common/limits.py +174 -0
  24. python-openstackclient-7.0.0/openstackclient/common/module.py +118 -0
  25. python-openstackclient-7.0.0/openstackclient/common/progressbar.py +69 -0
  26. python-openstackclient-7.0.0/openstackclient/common/project_cleanup.py +157 -0
  27. python-openstackclient-7.0.0/openstackclient/common/quota.py +891 -0
  28. python-openstackclient-7.0.0/openstackclient/common/versions.py +115 -0
  29. python-openstackclient-7.0.0/openstackclient/compute/client.py +51 -0
  30. python-openstackclient-7.0.0/openstackclient/compute/v2/agent.py +227 -0
  31. python-openstackclient-7.0.0/openstackclient/compute/v2/aggregate.py +444 -0
  32. python-openstackclient-7.0.0/openstackclient/compute/v2/console.py +146 -0
  33. python-openstackclient-7.0.0/openstackclient/compute/v2/flavor.py +616 -0
  34. python-openstackclient-7.0.0/openstackclient/compute/v2/host.py +146 -0
  35. python-openstackclient-7.0.0/openstackclient/compute/v2/hypervisor.py +249 -0
  36. python-openstackclient-7.0.0/openstackclient/compute/v2/keypair.py +445 -0
  37. python-openstackclient-7.0.0/openstackclient/compute/v2/server.py +5241 -0
  38. python-openstackclient-7.0.0/openstackclient/compute/v2/server_backup.py +127 -0
  39. python-openstackclient-7.0.0/openstackclient/compute/v2/server_group.py +278 -0
  40. python-openstackclient-7.0.0/openstackclient/compute/v2/server_image.py +122 -0
  41. python-openstackclient-7.0.0/openstackclient/compute/v2/server_migration.py +502 -0
  42. python-openstackclient-7.0.0/openstackclient/compute/v2/service.py +305 -0
  43. python-openstackclient-7.0.0/openstackclient/compute/v2/usage.py +298 -0
  44. python-openstackclient-7.0.0/openstackclient/identity/common.py +366 -0
  45. python-openstackclient-7.0.0/openstackclient/identity/v2_0/catalog.py +110 -0
  46. python-openstackclient-7.0.0/openstackclient/identity/v2_0/ec2creds.py +215 -0
  47. python-openstackclient-7.0.0/openstackclient/identity/v2_0/endpoint.py +202 -0
  48. python-openstackclient-7.0.0/openstackclient/identity/v2_0/project.py +353 -0
  49. python-openstackclient-7.0.0/openstackclient/identity/v2_0/role.py +228 -0
  50. python-openstackclient-7.0.0/openstackclient/identity/v2_0/role_assignment.py +118 -0
  51. python-openstackclient-7.0.0/openstackclient/identity/v2_0/service.py +174 -0
  52. python-openstackclient-7.0.0/openstackclient/identity/v2_0/token.py +70 -0
  53. python-openstackclient-7.0.0/openstackclient/identity/v2_0/user.py +435 -0
  54. python-openstackclient-7.0.0/openstackclient/identity/v3/access_rule.py +129 -0
  55. python-openstackclient-7.0.0/openstackclient/identity/v3/application_credential.py +357 -0
  56. python-openstackclient-7.0.0/openstackclient/identity/v3/catalog.py +105 -0
  57. python-openstackclient-7.0.0/openstackclient/identity/v3/consumer.py +160 -0
  58. python-openstackclient-7.0.0/openstackclient/identity/v3/credential.py +250 -0
  59. python-openstackclient-7.0.0/openstackclient/identity/v3/domain.py +253 -0
  60. python-openstackclient-7.0.0/openstackclient/identity/v3/ec2creds.py +228 -0
  61. python-openstackclient-7.0.0/openstackclient/identity/v3/endpoint.py +420 -0
  62. python-openstackclient-7.0.0/openstackclient/identity/v3/endpoint_group.py +342 -0
  63. python-openstackclient-7.0.0/openstackclient/identity/v3/federation_protocol.py +231 -0
  64. python-openstackclient-7.0.0/openstackclient/identity/v3/group.py +431 -0
  65. python-openstackclient-7.0.0/openstackclient/identity/v3/identity_provider.py +348 -0
  66. python-openstackclient-7.0.0/openstackclient/identity/v3/implied_role.py +132 -0
  67. python-openstackclient-7.0.0/openstackclient/identity/v3/limit.py +279 -0
  68. python-openstackclient-7.0.0/openstackclient/identity/v3/mapping.py +235 -0
  69. python-openstackclient-7.0.0/openstackclient/identity/v3/policy.py +196 -0
  70. python-openstackclient-7.0.0/openstackclient/identity/v3/project.py +445 -0
  71. python-openstackclient-7.0.0/openstackclient/identity/v3/region.py +197 -0
  72. python-openstackclient-7.0.0/openstackclient/identity/v3/registered_limit.py +315 -0
  73. python-openstackclient-7.0.0/openstackclient/identity/v3/role.py +463 -0
  74. python-openstackclient-7.0.0/openstackclient/identity/v3/role_assignment.py +229 -0
  75. python-openstackclient-7.0.0/openstackclient/identity/v3/service.py +250 -0
  76. python-openstackclient-7.0.0/openstackclient/identity/v3/service_provider.py +233 -0
  77. python-openstackclient-7.0.0/openstackclient/identity/v3/tag.py +135 -0
  78. python-openstackclient-7.0.0/openstackclient/identity/v3/token.py +228 -0
  79. python-openstackclient-7.0.0/openstackclient/identity/v3/trust.py +323 -0
  80. python-openstackclient-7.0.0/openstackclient/identity/v3/user.py +727 -0
  81. python-openstackclient-7.0.0/openstackclient/image/client.py +51 -0
  82. python-openstackclient-7.0.0/openstackclient/image/v1/image.py +838 -0
  83. python-openstackclient-7.0.0/openstackclient/image/v2/cache.py +220 -0
  84. python-openstackclient-7.0.0/openstackclient/image/v2/metadef_objects.py +269 -0
  85. python-openstackclient-7.0.0/openstackclient/image/v2/metadef_resource_type_association.py +189 -0
  86. python-openstackclient-7.0.0/openstackclient/image/v2/task.py +179 -0
  87. python-openstackclient-7.0.0/openstackclient/network/common.py +352 -0
  88. python-openstackclient-7.0.0/openstackclient/network/utils.py +183 -0
  89. python-openstackclient-7.0.0/openstackclient/network/v2/address_group.py +318 -0
  90. python-openstackclient-7.0.0/openstackclient/network/v2/address_scope.py +314 -0
  91. python-openstackclient-7.0.0/openstackclient/network/v2/default_security_group_rule.py +418 -0
  92. python-openstackclient-7.0.0/openstackclient/network/v2/floating_ip.py +590 -0
  93. python-openstackclient-7.0.0/openstackclient/network/v2/floating_ip_pool.py +38 -0
  94. python-openstackclient-7.0.0/openstackclient/network/v2/floating_ip_port_forwarding.py +484 -0
  95. python-openstackclient-7.0.0/openstackclient/network/v2/ip_availability.py +126 -0
  96. python-openstackclient-7.0.0/openstackclient/network/v2/l3_conntrack_helper.py +279 -0
  97. python-openstackclient-7.0.0/openstackclient/network/v2/network.py +860 -0
  98. python-openstackclient-7.0.0/openstackclient/network/v2/network_agent.py +423 -0
  99. python-openstackclient-7.0.0/openstackclient/network/v2/network_auto_allocated_topology.py +144 -0
  100. python-openstackclient-7.0.0/openstackclient/network/v2/network_flavor.py +304 -0
  101. python-openstackclient-7.0.0/openstackclient/network/v2/network_flavor_profile.py +281 -0
  102. python-openstackclient-7.0.0/openstackclient/network/v2/network_meter.py +203 -0
  103. python-openstackclient-7.0.0/openstackclient/network/v2/network_meter_rule.py +240 -0
  104. python-openstackclient-7.0.0/openstackclient/network/v2/network_qos_policy.py +312 -0
  105. python-openstackclient-7.0.0/openstackclient/network/v2/network_qos_rule.py +455 -0
  106. python-openstackclient-7.0.0/openstackclient/network/v2/network_qos_rule_type.py +99 -0
  107. python-openstackclient-7.0.0/openstackclient/network/v2/network_rbac.py +382 -0
  108. python-openstackclient-7.0.0/openstackclient/network/v2/network_segment.py +269 -0
  109. python-openstackclient-7.0.0/openstackclient/network/v2/network_segment_range.py +519 -0
  110. python-openstackclient-7.0.0/openstackclient/network/v2/network_trunk.py +411 -0
  111. python-openstackclient-7.0.0/openstackclient/network/v2/port.py +1313 -0
  112. python-openstackclient-7.0.0/openstackclient/network/v2/router.py +1374 -0
  113. python-openstackclient-7.0.0/openstackclient/network/v2/security_group.py +457 -0
  114. python-openstackclient-7.0.0/openstackclient/network/v2/security_group_rule.py +617 -0
  115. python-openstackclient-7.0.0/openstackclient/network/v2/subnet.py +874 -0
  116. python-openstackclient-7.0.0/openstackclient/network/v2/subnet_pool.py +504 -0
  117. python-openstackclient-7.0.0/openstackclient/object/v1/account.py +79 -0
  118. python-openstackclient-7.0.0/openstackclient/object/v1/container.py +279 -0
  119. python-openstackclient-7.0.0/openstackclient/object/v1/object.py +336 -0
  120. python-openstackclient-7.0.0/openstackclient/shell.py +151 -0
  121. python-openstackclient-7.0.0/openstackclient/tests/functional/base.py +198 -0
  122. python-openstackclient-7.0.0/openstackclient/tests/functional/common/test_extension.py +95 -0
  123. python-openstackclient-7.0.0/openstackclient/tests/functional/common/test_help.py +128 -0
  124. python-openstackclient-7.0.0/openstackclient/tests/functional/common/test_module.py +67 -0
  125. python-openstackclient-7.0.0/openstackclient/tests/functional/common/test_quota.py +258 -0
  126. python-openstackclient-7.0.0/openstackclient/tests/functional/compute/v2/common.py +150 -0
  127. python-openstackclient-7.0.0/openstackclient/tests/functional/compute/v2/test_flavor.py +250 -0
  128. python-openstackclient-7.0.0/openstackclient/tests/functional/compute/v2/test_keypair.py +202 -0
  129. python-openstackclient-7.0.0/openstackclient/tests/functional/compute/v2/test_server.py +1494 -0
  130. python-openstackclient-7.0.0/openstackclient/tests/functional/compute/v2/test_server_event.py +118 -0
  131. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v2/common.py +238 -0
  132. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/common.py +528 -0
  133. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_application_credential.py +177 -0
  134. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_domain.py +69 -0
  135. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_endpoint.py +111 -0
  136. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_idp.py +70 -0
  137. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_limit.py +210 -0
  138. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_region.py +69 -0
  139. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_registered_limit.py +193 -0
  140. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_role.py +179 -0
  141. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_role_assignment.py +210 -0
  142. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_service.py +72 -0
  143. python-openstackclient-7.0.0/openstackclient/tests/functional/identity/v3/test_service_provider.py +68 -0
  144. python-openstackclient-7.0.0/openstackclient/tests/functional/image/base.py +24 -0
  145. python-openstackclient-7.0.0/openstackclient/tests/functional/image/v2/test_image.py +236 -0
  146. python-openstackclient-7.0.0/openstackclient/tests/functional/image/v2/test_info.py +30 -0
  147. python-openstackclient-7.0.0/openstackclient/tests/functional/network/v2/common.py +115 -0
  148. python-openstackclient-7.0.0/openstackclient/tests/functional/network/v2/test_network.py +442 -0
  149. python-openstackclient-7.0.0/openstackclient/tests/functional/network/v2/test_network_agent.py +196 -0
  150. python-openstackclient-7.0.0/openstackclient/tests/functional/network/v2/test_network_qos_rule.py +327 -0
  151. python-openstackclient-7.0.0/openstackclient/tests/functional/network/v2/test_port.py +270 -0
  152. python-openstackclient-7.0.0/openstackclient/tests/functional/network/v2/test_router.py +330 -0
  153. python-openstackclient-7.0.0/openstackclient/tests/functional/object/v1/common.py +22 -0
  154. python-openstackclient-7.0.0/openstackclient/tests/functional/object/v1/test_container.py +55 -0
  155. python-openstackclient-7.0.0/openstackclient/tests/functional/object/v1/test_object.py +96 -0
  156. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/base.py +86 -0
  157. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v1/test_service.py +76 -0
  158. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v1/test_snapshot.py +232 -0
  159. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v1/test_transfer_request.py +111 -0
  160. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v1/test_volume_type.py +213 -0
  161. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v2/test_service.py +82 -0
  162. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v2/test_volume_backup.py +59 -0
  163. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v2/test_volume_snapshot.py +259 -0
  164. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v2/test_volume_type.py +252 -0
  165. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v3/test_volume_snapshot.py +244 -0
  166. python-openstackclient-7.0.0/openstackclient/tests/functional/volume/v3/test_volume_type.py +252 -0
  167. python-openstackclient-7.0.0/openstackclient/tests/unit/api/fakes.py +55 -0
  168. python-openstackclient-7.0.0/openstackclient/tests/unit/api/test_api.py +322 -0
  169. python-openstackclient-7.0.0/openstackclient/tests/unit/api/test_compute_v2.py +573 -0
  170. python-openstackclient-7.0.0/openstackclient/tests/unit/api/test_image_v1.py +96 -0
  171. python-openstackclient-7.0.0/openstackclient/tests/unit/api/test_image_v2.py +96 -0
  172. python-openstackclient-7.0.0/openstackclient/tests/unit/api/test_object_store_v1.py +345 -0
  173. python-openstackclient-7.0.0/openstackclient/tests/unit/common/test_limits.py +146 -0
  174. python-openstackclient-7.0.0/openstackclient/tests/unit/common/test_logs.py +221 -0
  175. python-openstackclient-7.0.0/openstackclient/tests/unit/common/test_module.py +186 -0
  176. python-openstackclient-7.0.0/openstackclient/tests/unit/common/test_project_cleanup.py +292 -0
  177. python-openstackclient-7.0.0/openstackclient/tests/unit/common/test_quota.py +1268 -0
  178. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/fakes.py +1350 -0
  179. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_agent.py +367 -0
  180. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_aggregate.py +659 -0
  181. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_console.py +222 -0
  182. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_flavor.py +1235 -0
  183. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_host.py +234 -0
  184. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_hypervisor.py +545 -0
  185. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_hypervisor_stats.py +112 -0
  186. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_keypair.py +814 -0
  187. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_server.py +9528 -0
  188. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_server_backup.py +242 -0
  189. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_server_event.py +425 -0
  190. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_server_group.py +478 -0
  191. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_server_migration.py +1123 -0
  192. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_server_volume.py +335 -0
  193. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_service.py +582 -0
  194. python-openstackclient-7.0.0/openstackclient/tests/unit/compute/v2/test_usage.py +199 -0
  195. python-openstackclient-7.0.0/openstackclient/tests/unit/fakes.py +257 -0
  196. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/fakes.py +532 -0
  197. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/test_catalog.py +202 -0
  198. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/test_endpoint.py +265 -0
  199. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/test_project.py +704 -0
  200. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/test_role.py +370 -0
  201. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/test_role_assignment.py +275 -0
  202. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/test_service.py +290 -0
  203. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/test_token.py +112 -0
  204. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v2_0/test_user.py +790 -0
  205. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/fakes.py +1223 -0
  206. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_access_rule.py +172 -0
  207. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_application_credential.py +436 -0
  208. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_catalog.py +151 -0
  209. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_consumer.py +215 -0
  210. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_credential.py +383 -0
  211. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_domain.py +517 -0
  212. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_endpoint.py +898 -0
  213. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_endpoint_group.py +488 -0
  214. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_group.py +710 -0
  215. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_identity_provider.py +882 -0
  216. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_implied_role.py +197 -0
  217. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_limit.py +400 -0
  218. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_mappings.py +225 -0
  219. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_oauth.py +177 -0
  220. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_project.py +1526 -0
  221. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_protocol.py +213 -0
  222. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_region.py +339 -0
  223. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_registered_limit.py +530 -0
  224. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_role.py +1574 -0
  225. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_role_assignment.py +842 -0
  226. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_service.py +488 -0
  227. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_service_provider.py +408 -0
  228. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_token.py +135 -0
  229. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_trust.py +412 -0
  230. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_unscoped_saml.py +108 -0
  231. python-openstackclient-7.0.0/openstackclient/tests/unit/identity/v3/test_user.py +1907 -0
  232. python-openstackclient-7.0.0/openstackclient/tests/unit/image/v1/test_image.py +760 -0
  233. python-openstackclient-7.0.0/openstackclient/tests/unit/image/v2/fakes.py +420 -0
  234. python-openstackclient-7.0.0/openstackclient/tests/unit/image/v2/test_cache.py +214 -0
  235. python-openstackclient-7.0.0/openstackclient/tests/unit/image/v2/test_image.py +2218 -0
  236. python-openstackclient-7.0.0/openstackclient/tests/unit/image/v2/test_metadef_objects.py +262 -0
  237. python-openstackclient-7.0.0/openstackclient/tests/unit/image/v2/test_metadef_resource_type_association.py +131 -0
  238. python-openstackclient-7.0.0/openstackclient/tests/unit/integ/base.py +124 -0
  239. python-openstackclient-7.0.0/openstackclient/tests/unit/integ/cli/test_project.py +253 -0
  240. python-openstackclient-7.0.0/openstackclient/tests/unit/integ/cli/test_shell.py +564 -0
  241. python-openstackclient-7.0.0/openstackclient/tests/unit/network/test_common.py +351 -0
  242. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/fakes.py +2193 -0
  243. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_address_group.py +548 -0
  244. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_address_scope.py +526 -0
  245. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_default_security_group_rule.py +1155 -0
  246. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_floating_ip_compute.py +254 -0
  247. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_floating_ip_network.py +1123 -0
  248. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_floating_ip_pool_compute.py +49 -0
  249. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_floating_ip_pool_network.py +39 -0
  250. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_floating_ip_port_forwarding.py +733 -0
  251. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_ip_availability.py +173 -0
  252. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_l3_conntrack_helper.py +321 -0
  253. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_local_ip.py +520 -0
  254. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_local_ip_association.py +319 -0
  255. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_ndp_proxy.py +477 -0
  256. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network.py +1304 -0
  257. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_agent.py +626 -0
  258. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_auto_allocated_topology.py +285 -0
  259. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_compute.py +404 -0
  260. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_flavor.py +526 -0
  261. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_flavor_profile.py +491 -0
  262. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_meter.py +316 -0
  263. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_meter_rule.py +345 -0
  264. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_qos_policy.py +488 -0
  265. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_qos_rule.py +1657 -0
  266. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_qos_rule_type.py +135 -0
  267. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_rbac.py +674 -0
  268. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_segment.py +464 -0
  269. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_segment_range.py +696 -0
  270. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_service_provider.py +71 -0
  271. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_network_trunk.py +955 -0
  272. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_port.py +2852 -0
  273. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_router.py +2567 -0
  274. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_security_group_compute.py +400 -0
  275. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_security_group_network.py +652 -0
  276. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_security_group_rule_compute.py +557 -0
  277. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_security_group_rule_network.py +1331 -0
  278. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_subnet.py +1749 -0
  279. python-openstackclient-7.0.0/openstackclient/tests/unit/network/v2/test_subnet_pool.py +1158 -0
  280. python-openstackclient-7.0.0/openstackclient/tests/unit/object/v1/fakes.py +91 -0
  281. python-openstackclient-7.0.0/openstackclient/tests/unit/object/v1/test_container.py +383 -0
  282. python-openstackclient-7.0.0/openstackclient/tests/unit/object/v1/test_container_all.py +421 -0
  283. python-openstackclient-7.0.0/openstackclient/tests/unit/object/v1/test_object.py +367 -0
  284. python-openstackclient-7.0.0/openstackclient/tests/unit/object/v1/test_object_all.py +268 -0
  285. python-openstackclient-7.0.0/openstackclient/tests/unit/test_shell.py +410 -0
  286. python-openstackclient-7.0.0/openstackclient/tests/unit/utils.py +100 -0
  287. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/test_find_resource.py +85 -0
  288. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v1/fakes.py +615 -0
  289. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v1/test_volume.py +1447 -0
  290. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v2/fakes.py +976 -0
  291. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v2/test_consistency_group_snapshot.py +355 -0
  292. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v2/test_qos_specs.py +456 -0
  293. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v2/test_volume.py +1780 -0
  294. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v2/test_volume_backup.py +557 -0
  295. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v2/test_volume_snapshot.py +742 -0
  296. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v2/test_volume_transfer_request.py +382 -0
  297. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v2/test_volume_type.py +1034 -0
  298. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/fakes.py +1177 -0
  299. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_block_storage_cleanup.py +159 -0
  300. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_block_storage_cluster.py +430 -0
  301. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_block_storage_log_level.py +272 -0
  302. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_block_storage_manage.py +522 -0
  303. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_block_storage_resource_filter.py +136 -0
  304. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_service.py +271 -0
  305. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume.py +2344 -0
  306. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_attachment.py +561 -0
  307. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_backup.py +892 -0
  308. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_group.py +670 -0
  309. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_group_snapshot.py +270 -0
  310. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_group_type.py +461 -0
  311. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_message.py +306 -0
  312. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_snapshot.py +161 -0
  313. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_transfer_request.py +425 -0
  314. python-openstackclient-7.0.0/openstackclient/tests/unit/volume/v3/test_volume_type.py +1109 -0
  315. python-openstackclient-7.0.0/openstackclient/volume/v1/qos_specs.py +377 -0
  316. python-openstackclient-7.0.0/openstackclient/volume/v1/service.py +136 -0
  317. python-openstackclient-7.0.0/openstackclient/volume/v1/volume.py +734 -0
  318. python-openstackclient-7.0.0/openstackclient/volume/v1/volume_backup.py +302 -0
  319. python-openstackclient-7.0.0/openstackclient/volume/v1/volume_snapshot.py +433 -0
  320. python-openstackclient-7.0.0/openstackclient/volume/v1/volume_transfer_request.py +200 -0
  321. python-openstackclient-7.0.0/openstackclient/volume/v1/volume_type.py +520 -0
  322. python-openstackclient-7.0.0/openstackclient/volume/v2/backup_record.py +87 -0
  323. python-openstackclient-7.0.0/openstackclient/volume/v2/consistency_group.py +393 -0
  324. python-openstackclient-7.0.0/openstackclient/volume/v2/consistency_group_snapshot.py +212 -0
  325. python-openstackclient-7.0.0/openstackclient/volume/v2/qos_specs.py +380 -0
  326. python-openstackclient-7.0.0/openstackclient/volume/v2/service.py +136 -0
  327. python-openstackclient-7.0.0/openstackclient/volume/v2/volume.py +981 -0
  328. python-openstackclient-7.0.0/openstackclient/volume/v2/volume_backend.py +117 -0
  329. python-openstackclient-7.0.0/openstackclient/volume/v2/volume_backup.py +460 -0
  330. python-openstackclient-7.0.0/openstackclient/volume/v2/volume_host.py +74 -0
  331. python-openstackclient-7.0.0/openstackclient/volume/v2/volume_snapshot.py +519 -0
  332. python-openstackclient-7.0.0/openstackclient/volume/v2/volume_transfer_request.py +201 -0
  333. python-openstackclient-7.0.0/openstackclient/volume/v2/volume_type.py +885 -0
  334. python-openstackclient-7.0.0/openstackclient/volume/v3/service.py +56 -0
  335. python-openstackclient-7.0.0/openstackclient/volume/v3/volume.py +1086 -0
  336. python-openstackclient-7.0.0/openstackclient/volume/v3/volume_attachment.py +512 -0
  337. python-openstackclient-7.0.0/openstackclient/volume/v3/volume_backup.py +670 -0
  338. python-openstackclient-7.0.0/openstackclient/volume/v3/volume_message.py +157 -0
  339. python-openstackclient-7.0.0/openstackclient/volume/v3/volume_snapshot.py +97 -0
  340. python-openstackclient-7.0.0/openstackclient/volume/v3/volume_transfer_request.py +233 -0
  341. python-openstackclient-7.0.0/openstackclient/volume/v3/volume_type.py +967 -0
  342. python-openstackclient-7.0.0/python_openstackclient.egg-info/PKG-INFO +161 -0
  343. python-openstackclient-7.0.0/python_openstackclient.egg-info/SOURCES.txt +1392 -0
  344. python-openstackclient-7.0.0/python_openstackclient.egg-info/entry_points.txt +718 -0
  345. python-openstackclient-7.0.0/python_openstackclient.egg-info/pbr.json +1 -0
  346. python-openstackclient-7.0.0/python_openstackclient.egg-info/requires.txt +11 -0
  347. python-openstackclient-7.0.0/releasenotes/notes/Router-flavor-accepts-name-or-id-e9cecafcddf81cb2.yaml +6 -0
  348. python-openstackclient-7.0.0/releasenotes/notes/add-cluster-to-service-list-5eab3e828de7547e.yaml +8 -0
  349. python-openstackclient-7.0.0/releasenotes/notes/add-image-metadef-object-property-show-4ab2c957451ea230.yaml +5 -0
  350. python-openstackclient-7.0.0/releasenotes/notes/add-image-metadef-resource-type-association-commands-4d373d7d8eca5d55.yaml +17 -0
  351. python-openstackclient-7.0.0/releasenotes/notes/add-port-numa-affinity-policy-socket-5a986b14033e0f6e.yaml +5 -0
  352. python-openstackclient-7.0.0/releasenotes/notes/add-snapshot-unmanage-command-d4c0c8fd8b638d48.yaml +5 -0
  353. python-openstackclient-7.0.0/releasenotes/notes/add-volume-manage-command-088890446d0e81c7.yaml +6 -0
  354. python-openstackclient-7.0.0/releasenotes/notes/add-volume-unmanage-support-9b7139e5e948de77.yaml +5 -0
  355. python-openstackclient-7.0.0/releasenotes/notes/fix-backup-incremental-d1c1e6886cf32256.yaml +7 -0
  356. python-openstackclient-7.0.0/releasenotes/notes/migrate-agent-commands-1c50ffcb75f91418.yaml +4 -0
  357. python-openstackclient-7.0.0/releasenotes/notes/migrate-application-credential-to-sdk-c79d8dfc3c8e1d9f.yaml +9 -0
  358. python-openstackclient-7.0.0/releasenotes/notes/migrate-host-set-438997eb6f81f2b1.yaml +4 -0
  359. python-openstackclient-7.0.0/releasenotes/notes/migrate-limits-show-f586c9762dfd7d0c.yaml +4 -0
  360. python-openstackclient-7.0.0/releasenotes/notes/migrate-role-assignment-to-sdk-e6e52bef467b4e4c.yaml +4 -0
  361. python-openstackclient-7.0.0/releasenotes/notes/migrate-server-evacuate-to-sdk-a0415988ef5451b2.yaml +4 -0
  362. python-openstackclient-7.0.0/releasenotes/notes/migrate-server-set-unset-to-sdk-ae32ebcced845b06.yaml +4 -0
  363. python-openstackclient-7.0.0/releasenotes/notes/migrate-service-to-sdk-6ff62ebf7e41db7c.yaml +10 -0
  364. python-openstackclient-7.0.0/releasenotes/notes/migrate-volume-attachment-commands-4309409bca1ca5d4.yaml +4 -0
  365. python-openstackclient-7.0.0/releasenotes/notes/network-quota-no-force-default-0975bdf15655070c.yaml +6 -0
  366. python-openstackclient-7.0.0/releasenotes/notes/quota-set-default-option-bc26d37dc150533b.yaml +7 -0
  367. python-openstackclient-7.0.0/releasenotes/notes/remove-deprecated-quota-show-class-option-2109a6ff7ac18e80.yaml +8 -0
  368. python-openstackclient-7.0.0/releasenotes/notes/rename-volume-set-retype-policy-6bacb7dd92f1ad82.yaml +8 -0
  369. python-openstackclient-7.0.0/releasenotes/source/2024.1.rst +6 -0
  370. python-openstackclient-7.0.0/releasenotes/source/conf.py +314 -0
  371. python-openstackclient-7.0.0/releasenotes/source/index.rst +65 -0
  372. python-openstackclient-7.0.0/releasenotes/source/zed.rst +6 -0
  373. python-openstackclient-7.0.0/requirements.txt +16 -0
  374. python-openstackclient-7.0.0/setup.cfg +857 -0
  375. python-openstackclient-7.0.0/tox.ini +123 -0
  376. python-openstackclient-6.6.1/.git-ignore-blame-revs +0 -12
  377. python-openstackclient-6.6.1/.pre-commit-config.yaml +0 -35
  378. python-openstackclient-6.6.1/AUTHORS +0 -566
  379. python-openstackclient-6.6.1/ChangeLog +0 -3630
  380. python-openstackclient-6.6.1/PKG-INFO +0 -161
  381. python-openstackclient-6.6.1/doc/requirements.txt +0 -30
  382. python-openstackclient-6.6.1/doc/source/cli/backwards-incompatible.rst +0 -382
  383. python-openstackclient-6.6.1/doc/source/cli/command-objects/image-metadef.rst +0 -47
  384. python-openstackclient-6.6.1/doc/source/cli/commands.rst +0 -358
  385. python-openstackclient-6.6.1/doc/source/cli/data/glance.csv +0 -67
  386. python-openstackclient-6.6.1/doc/source/cli/plugin-commands/index.rst +0 -41
  387. python-openstackclient-6.6.1/doc/source/cli/plugin-commands/sahara.rst +0 -4
  388. python-openstackclient-6.6.1/doc/source/cli/plugin-commands/senlin.rst +0 -4
  389. python-openstackclient-6.6.1/doc/source/conf.py +0 -291
  390. python-openstackclient-6.6.1/doc/source/contributor/command-errors.rst +0 -202
  391. python-openstackclient-6.6.1/doc/source/contributor/plugins.rst +0 -240
  392. python-openstackclient-6.6.1/openstackclient/api/api.py +0 -314
  393. python-openstackclient-6.6.1/openstackclient/api/compute_v2.py +0 -653
  394. python-openstackclient-6.6.1/openstackclient/api/image_v1.py +0 -69
  395. python-openstackclient-6.6.1/openstackclient/api/object_store_v1.py +0 -607
  396. python-openstackclient-6.6.1/openstackclient/common/availability_zone.py +0 -205
  397. python-openstackclient-6.6.1/openstackclient/common/clientmanager.py +0 -211
  398. python-openstackclient-6.6.1/openstackclient/common/configuration.py +0 -71
  399. python-openstackclient-6.6.1/openstackclient/common/extension.py +0 -173
  400. python-openstackclient-6.6.1/openstackclient/common/limits.py +0 -140
  401. python-openstackclient-6.6.1/openstackclient/common/module.py +0 -118
  402. python-openstackclient-6.6.1/openstackclient/common/progressbar.py +0 -69
  403. python-openstackclient-6.6.1/openstackclient/common/project_cleanup.py +0 -154
  404. python-openstackclient-6.6.1/openstackclient/common/quota.py +0 -1020
  405. python-openstackclient-6.6.1/openstackclient/common/versions.py +0 -115
  406. python-openstackclient-6.6.1/openstackclient/compute/client.py +0 -160
  407. python-openstackclient-6.6.1/openstackclient/compute/v2/agent.py +0 -201
  408. python-openstackclient-6.6.1/openstackclient/compute/v2/aggregate.py +0 -444
  409. python-openstackclient-6.6.1/openstackclient/compute/v2/console.py +0 -146
  410. python-openstackclient-6.6.1/openstackclient/compute/v2/flavor.py +0 -616
  411. python-openstackclient-6.6.1/openstackclient/compute/v2/host.py +0 -141
  412. python-openstackclient-6.6.1/openstackclient/compute/v2/hypervisor.py +0 -248
  413. python-openstackclient-6.6.1/openstackclient/compute/v2/keypair.py +0 -446
  414. python-openstackclient-6.6.1/openstackclient/compute/v2/server.py +0 -5159
  415. python-openstackclient-6.6.1/openstackclient/compute/v2/server_backup.py +0 -127
  416. python-openstackclient-6.6.1/openstackclient/compute/v2/server_group.py +0 -278
  417. python-openstackclient-6.6.1/openstackclient/compute/v2/server_image.py +0 -122
  418. python-openstackclient-6.6.1/openstackclient/compute/v2/server_migration.py +0 -503
  419. python-openstackclient-6.6.1/openstackclient/compute/v2/service.py +0 -305
  420. python-openstackclient-6.6.1/openstackclient/compute/v2/usage.py +0 -298
  421. python-openstackclient-6.6.1/openstackclient/identity/common.py +0 -332
  422. python-openstackclient-6.6.1/openstackclient/identity/v2_0/catalog.py +0 -110
  423. python-openstackclient-6.6.1/openstackclient/identity/v2_0/ec2creds.py +0 -215
  424. python-openstackclient-6.6.1/openstackclient/identity/v2_0/endpoint.py +0 -202
  425. python-openstackclient-6.6.1/openstackclient/identity/v2_0/project.py +0 -353
  426. python-openstackclient-6.6.1/openstackclient/identity/v2_0/role.py +0 -228
  427. python-openstackclient-6.6.1/openstackclient/identity/v2_0/role_assignment.py +0 -118
  428. python-openstackclient-6.6.1/openstackclient/identity/v2_0/service.py +0 -174
  429. python-openstackclient-6.6.1/openstackclient/identity/v2_0/token.py +0 -70
  430. python-openstackclient-6.6.1/openstackclient/identity/v2_0/user.py +0 -435
  431. python-openstackclient-6.6.1/openstackclient/identity/v3/access_rule.py +0 -129
  432. python-openstackclient-6.6.1/openstackclient/identity/v3/application_credential.py +0 -275
  433. python-openstackclient-6.6.1/openstackclient/identity/v3/catalog.py +0 -105
  434. python-openstackclient-6.6.1/openstackclient/identity/v3/consumer.py +0 -160
  435. python-openstackclient-6.6.1/openstackclient/identity/v3/credential.py +0 -250
  436. python-openstackclient-6.6.1/openstackclient/identity/v3/domain.py +0 -253
  437. python-openstackclient-6.6.1/openstackclient/identity/v3/ec2creds.py +0 -228
  438. python-openstackclient-6.6.1/openstackclient/identity/v3/endpoint.py +0 -420
  439. python-openstackclient-6.6.1/openstackclient/identity/v3/endpoint_group.py +0 -344
  440. python-openstackclient-6.6.1/openstackclient/identity/v3/federation_protocol.py +0 -231
  441. python-openstackclient-6.6.1/openstackclient/identity/v3/group.py +0 -431
  442. python-openstackclient-6.6.1/openstackclient/identity/v3/identity_provider.py +0 -348
  443. python-openstackclient-6.6.1/openstackclient/identity/v3/implied_role.py +0 -132
  444. python-openstackclient-6.6.1/openstackclient/identity/v3/limit.py +0 -279
  445. python-openstackclient-6.6.1/openstackclient/identity/v3/mapping.py +0 -235
  446. python-openstackclient-6.6.1/openstackclient/identity/v3/policy.py +0 -196
  447. python-openstackclient-6.6.1/openstackclient/identity/v3/project.py +0 -445
  448. python-openstackclient-6.6.1/openstackclient/identity/v3/region.py +0 -197
  449. python-openstackclient-6.6.1/openstackclient/identity/v3/registered_limit.py +0 -315
  450. python-openstackclient-6.6.1/openstackclient/identity/v3/role.py +0 -463
  451. python-openstackclient-6.6.1/openstackclient/identity/v3/role_assignment.py +0 -277
  452. python-openstackclient-6.6.1/openstackclient/identity/v3/service.py +0 -220
  453. python-openstackclient-6.6.1/openstackclient/identity/v3/service_provider.py +0 -233
  454. python-openstackclient-6.6.1/openstackclient/identity/v3/tag.py +0 -135
  455. python-openstackclient-6.6.1/openstackclient/identity/v3/token.py +0 -228
  456. python-openstackclient-6.6.1/openstackclient/identity/v3/trust.py +0 -323
  457. python-openstackclient-6.6.1/openstackclient/identity/v3/user.py +0 -663
  458. python-openstackclient-6.6.1/openstackclient/image/client.py +0 -51
  459. python-openstackclient-6.6.1/openstackclient/image/v1/image.py +0 -839
  460. python-openstackclient-6.6.1/openstackclient/image/v2/cache.py +0 -218
  461. python-openstackclient-6.6.1/openstackclient/image/v2/metadef_objects.py +0 -225
  462. python-openstackclient-6.6.1/openstackclient/image/v2/task.py +0 -179
  463. python-openstackclient-6.6.1/openstackclient/network/common.py +0 -351
  464. python-openstackclient-6.6.1/openstackclient/network/utils.py +0 -183
  465. python-openstackclient-6.6.1/openstackclient/network/v2/address_group.py +0 -318
  466. python-openstackclient-6.6.1/openstackclient/network/v2/address_scope.py +0 -314
  467. python-openstackclient-6.6.1/openstackclient/network/v2/default_security_group_rule.py +0 -418
  468. python-openstackclient-6.6.1/openstackclient/network/v2/floating_ip.py +0 -592
  469. python-openstackclient-6.6.1/openstackclient/network/v2/floating_ip_pool.py +0 -47
  470. python-openstackclient-6.6.1/openstackclient/network/v2/floating_ip_port_forwarding.py +0 -492
  471. python-openstackclient-6.6.1/openstackclient/network/v2/ip_availability.py +0 -126
  472. python-openstackclient-6.6.1/openstackclient/network/v2/l3_conntrack_helper.py +0 -279
  473. python-openstackclient-6.6.1/openstackclient/network/v2/network.py +0 -860
  474. python-openstackclient-6.6.1/openstackclient/network/v2/network_agent.py +0 -423
  475. python-openstackclient-6.6.1/openstackclient/network/v2/network_auto_allocated_topology.py +0 -144
  476. python-openstackclient-6.6.1/openstackclient/network/v2/network_flavor.py +0 -306
  477. python-openstackclient-6.6.1/openstackclient/network/v2/network_flavor_profile.py +0 -281
  478. python-openstackclient-6.6.1/openstackclient/network/v2/network_meter.py +0 -203
  479. python-openstackclient-6.6.1/openstackclient/network/v2/network_meter_rule.py +0 -240
  480. python-openstackclient-6.6.1/openstackclient/network/v2/network_qos_policy.py +0 -312
  481. python-openstackclient-6.6.1/openstackclient/network/v2/network_qos_rule.py +0 -455
  482. python-openstackclient-6.6.1/openstackclient/network/v2/network_qos_rule_type.py +0 -99
  483. python-openstackclient-6.6.1/openstackclient/network/v2/network_rbac.py +0 -382
  484. python-openstackclient-6.6.1/openstackclient/network/v2/network_segment.py +0 -269
  485. python-openstackclient-6.6.1/openstackclient/network/v2/network_segment_range.py +0 -519
  486. python-openstackclient-6.6.1/openstackclient/network/v2/network_trunk.py +0 -411
  487. python-openstackclient-6.6.1/openstackclient/network/v2/port.py +0 -1299
  488. python-openstackclient-6.6.1/openstackclient/network/v2/router.py +0 -1025
  489. python-openstackclient-6.6.1/openstackclient/network/v2/security_group.py +0 -453
  490. python-openstackclient-6.6.1/openstackclient/network/v2/security_group_rule.py +0 -614
  491. python-openstackclient-6.6.1/openstackclient/network/v2/subnet.py +0 -867
  492. python-openstackclient-6.6.1/openstackclient/network/v2/subnet_pool.py +0 -504
  493. python-openstackclient-6.6.1/openstackclient/object/v1/account.py +0 -79
  494. python-openstackclient-6.6.1/openstackclient/object/v1/container.py +0 -279
  495. python-openstackclient-6.6.1/openstackclient/object/v1/object.py +0 -336
  496. python-openstackclient-6.6.1/openstackclient/shell.py +0 -153
  497. python-openstackclient-6.6.1/openstackclient/tests/functional/base.py +0 -198
  498. python-openstackclient-6.6.1/openstackclient/tests/functional/common/test_extension.py +0 -95
  499. python-openstackclient-6.6.1/openstackclient/tests/functional/common/test_help.py +0 -128
  500. python-openstackclient-6.6.1/openstackclient/tests/functional/common/test_module.py +0 -67
  501. python-openstackclient-6.6.1/openstackclient/tests/functional/common/test_quota.py +0 -276
  502. python-openstackclient-6.6.1/openstackclient/tests/functional/compute/v2/common.py +0 -150
  503. python-openstackclient-6.6.1/openstackclient/tests/functional/compute/v2/test_flavor.py +0 -250
  504. python-openstackclient-6.6.1/openstackclient/tests/functional/compute/v2/test_keypair.py +0 -202
  505. python-openstackclient-6.6.1/openstackclient/tests/functional/compute/v2/test_server.py +0 -1494
  506. python-openstackclient-6.6.1/openstackclient/tests/functional/compute/v2/test_server_event.py +0 -118
  507. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v2/common.py +0 -238
  508. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/common.py +0 -520
  509. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_application_credential.py +0 -183
  510. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_domain.py +0 -71
  511. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_endpoint.py +0 -111
  512. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_idp.py +0 -70
  513. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_limit.py +0 -210
  514. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_region.py +0 -71
  515. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_registered_limit.py +0 -193
  516. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_role.py +0 -179
  517. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_service.py +0 -74
  518. python-openstackclient-6.6.1/openstackclient/tests/functional/identity/v3/test_service_provider.py +0 -70
  519. python-openstackclient-6.6.1/openstackclient/tests/functional/image/base.py +0 -24
  520. python-openstackclient-6.6.1/openstackclient/tests/functional/image/v2/test_image.py +0 -236
  521. python-openstackclient-6.6.1/openstackclient/tests/functional/image/v2/test_info.py +0 -30
  522. python-openstackclient-6.6.1/openstackclient/tests/functional/network/v2/common.py +0 -117
  523. python-openstackclient-6.6.1/openstackclient/tests/functional/network/v2/test_network.py +0 -440
  524. python-openstackclient-6.6.1/openstackclient/tests/functional/network/v2/test_network_agent.py +0 -194
  525. python-openstackclient-6.6.1/openstackclient/tests/functional/network/v2/test_network_qos_rule.py +0 -327
  526. python-openstackclient-6.6.1/openstackclient/tests/functional/network/v2/test_port.py +0 -266
  527. python-openstackclient-6.6.1/openstackclient/tests/functional/network/v2/test_router.py +0 -330
  528. python-openstackclient-6.6.1/openstackclient/tests/functional/object/v1/common.py +0 -22
  529. python-openstackclient-6.6.1/openstackclient/tests/functional/object/v1/test_container.py +0 -55
  530. python-openstackclient-6.6.1/openstackclient/tests/functional/object/v1/test_object.py +0 -100
  531. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/base.py +0 -86
  532. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v1/test_service.py +0 -76
  533. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v1/test_snapshot.py +0 -232
  534. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v1/test_transfer_request.py +0 -111
  535. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v1/test_volume_type.py +0 -213
  536. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v2/test_service.py +0 -82
  537. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v2/test_volume_backup.py +0 -59
  538. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v2/test_volume_snapshot.py +0 -259
  539. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v2/test_volume_type.py +0 -252
  540. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v3/test_volume_snapshot.py +0 -244
  541. python-openstackclient-6.6.1/openstackclient/tests/functional/volume/v3/test_volume_type.py +0 -252
  542. python-openstackclient-6.6.1/openstackclient/tests/unit/api/fakes.py +0 -55
  543. python-openstackclient-6.6.1/openstackclient/tests/unit/api/test_api.py +0 -322
  544. python-openstackclient-6.6.1/openstackclient/tests/unit/api/test_compute_v2.py +0 -758
  545. python-openstackclient-6.6.1/openstackclient/tests/unit/api/test_image_v1.py +0 -96
  546. python-openstackclient-6.6.1/openstackclient/tests/unit/api/test_image_v2.py +0 -96
  547. python-openstackclient-6.6.1/openstackclient/tests/unit/api/test_object_store_v1.py +0 -345
  548. python-openstackclient-6.6.1/openstackclient/tests/unit/common/test_limits.py +0 -108
  549. python-openstackclient-6.6.1/openstackclient/tests/unit/common/test_logs.py +0 -221
  550. python-openstackclient-6.6.1/openstackclient/tests/unit/common/test_module.py +0 -184
  551. python-openstackclient-6.6.1/openstackclient/tests/unit/common/test_project_cleanup.py +0 -267
  552. python-openstackclient-6.6.1/openstackclient/tests/unit/common/test_quota.py +0 -1408
  553. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/fakes.py +0 -1599
  554. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_agent.py +0 -325
  555. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_aggregate.py +0 -657
  556. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_console.py +0 -223
  557. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_flavor.py +0 -1244
  558. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_host.py +0 -205
  559. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_hypervisor.py +0 -548
  560. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_hypervisor_stats.py +0 -112
  561. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_keypair.py +0 -799
  562. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_server.py +0 -9092
  563. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_server_backup.py +0 -242
  564. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_server_event.py +0 -450
  565. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_server_group.py +0 -479
  566. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_server_migration.py +0 -1148
  567. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_server_volume.py +0 -352
  568. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_service.py +0 -600
  569. python-openstackclient-6.6.1/openstackclient/tests/unit/compute/v2/test_usage.py +0 -199
  570. python-openstackclient-6.6.1/openstackclient/tests/unit/fakes.py +0 -257
  571. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/fakes.py +0 -515
  572. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/test_catalog.py +0 -202
  573. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/test_endpoint.py +0 -265
  574. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/test_project.py +0 -704
  575. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/test_role.py +0 -370
  576. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/test_role_assignment.py +0 -275
  577. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/test_service.py +0 -290
  578. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/test_token.py +0 -112
  579. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v2_0/test_user.py +0 -790
  580. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/fakes.py +0 -1184
  581. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_access_rule.py +0 -172
  582. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_application_credential.py +0 -459
  583. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_catalog.py +0 -151
  584. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_consumer.py +0 -216
  585. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_credential.py +0 -383
  586. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_domain.py +0 -517
  587. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_endpoint.py +0 -898
  588. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_endpoint_group.py +0 -490
  589. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_group.py +0 -710
  590. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_identity_provider.py +0 -882
  591. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_implied_role.py +0 -197
  592. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_limit.py +0 -400
  593. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_mappings.py +0 -225
  594. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_oauth.py +0 -177
  595. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_project.py +0 -1526
  596. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_protocol.py +0 -213
  597. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_region.py +0 -339
  598. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_registered_limit.py +0 -531
  599. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_role.py +0 -1574
  600. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_role_assignment.py +0 -763
  601. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_service.py +0 -492
  602. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_service_provider.py +0 -408
  603. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_token.py +0 -135
  604. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_trust.py +0 -412
  605. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_unscoped_saml.py +0 -108
  606. python-openstackclient-6.6.1/openstackclient/tests/unit/identity/v3/test_user.py +0 -1935
  607. python-openstackclient-6.6.1/openstackclient/tests/unit/image/v1/test_image.py +0 -760
  608. python-openstackclient-6.6.1/openstackclient/tests/unit/image/v2/fakes.py +0 -383
  609. python-openstackclient-6.6.1/openstackclient/tests/unit/image/v2/test_cache.py +0 -214
  610. python-openstackclient-6.6.1/openstackclient/tests/unit/image/v2/test_image.py +0 -2218
  611. python-openstackclient-6.6.1/openstackclient/tests/unit/image/v2/test_metadef_objects.py +0 -200
  612. python-openstackclient-6.6.1/openstackclient/tests/unit/integ/base.py +0 -124
  613. python-openstackclient-6.6.1/openstackclient/tests/unit/integ/cli/test_project.py +0 -253
  614. python-openstackclient-6.6.1/openstackclient/tests/unit/integ/cli/test_shell.py +0 -564
  615. python-openstackclient-6.6.1/openstackclient/tests/unit/network/test_common.py +0 -360
  616. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/fakes.py +0 -2259
  617. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_address_group.py +0 -548
  618. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_address_scope.py +0 -526
  619. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_default_security_group_rule.py +0 -1133
  620. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_floating_ip_compute.py +0 -252
  621. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_floating_ip_network.py +0 -1123
  622. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_floating_ip_pool_compute.py +0 -52
  623. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_floating_ip_pool_network.py +0 -41
  624. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_floating_ip_port_forwarding.py +0 -733
  625. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_ip_availability.py +0 -173
  626. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_l3_conntrack_helper.py +0 -331
  627. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_local_ip.py +0 -520
  628. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_local_ip_association.py +0 -321
  629. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_ndp_proxy.py +0 -477
  630. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network.py +0 -1309
  631. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_agent.py +0 -630
  632. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_auto_allocated_topology.py +0 -285
  633. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_compute.py +0 -403
  634. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_flavor.py +0 -528
  635. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_flavor_profile.py +0 -491
  636. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_meter.py +0 -316
  637. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_meter_rule.py +0 -345
  638. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_qos_policy.py +0 -498
  639. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_qos_rule.py +0 -1683
  640. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_qos_rule_type.py +0 -139
  641. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_rbac.py +0 -674
  642. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_segment.py +0 -468
  643. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_segment_range.py +0 -698
  644. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_service_provider.py +0 -73
  645. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_network_trunk.py +0 -955
  646. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_port.py +0 -2855
  647. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_router.py +0 -1897
  648. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_security_group_compute.py +0 -384
  649. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_security_group_network.py +0 -652
  650. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_security_group_rule_compute.py +0 -545
  651. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_security_group_rule_network.py +0 -1339
  652. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_subnet.py +0 -1745
  653. python-openstackclient-6.6.1/openstackclient/tests/unit/network/v2/test_subnet_pool.py +0 -1158
  654. python-openstackclient-6.6.1/openstackclient/tests/unit/object/v1/fakes.py +0 -91
  655. python-openstackclient-6.6.1/openstackclient/tests/unit/object/v1/test_container.py +0 -383
  656. python-openstackclient-6.6.1/openstackclient/tests/unit/object/v1/test_container_all.py +0 -421
  657. python-openstackclient-6.6.1/openstackclient/tests/unit/object/v1/test_object.py +0 -367
  658. python-openstackclient-6.6.1/openstackclient/tests/unit/object/v1/test_object_all.py +0 -268
  659. python-openstackclient-6.6.1/openstackclient/tests/unit/test_shell.py +0 -410
  660. python-openstackclient-6.6.1/openstackclient/tests/unit/utils.py +0 -97
  661. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/test_find_resource.py +0 -85
  662. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v1/fakes.py +0 -616
  663. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v1/test_volume.py +0 -1446
  664. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v2/fakes.py +0 -1196
  665. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v2/test_consistency_group_snapshot.py +0 -355
  666. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v2/test_qos_specs.py +0 -456
  667. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v2/test_volume.py +0 -1846
  668. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v2/test_volume_backup.py +0 -918
  669. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v2/test_volume_snapshot.py +0 -742
  670. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v2/test_volume_transfer_request.py +0 -426
  671. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v2/test_volume_type.py +0 -1115
  672. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/fakes.py +0 -694
  673. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_block_storage_cleanup.py +0 -160
  674. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_block_storage_cluster.py +0 -431
  675. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_block_storage_log_level.py +0 -268
  676. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_block_storage_manage.py +0 -514
  677. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_block_storage_resource_filter.py +0 -162
  678. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_volume.py +0 -200
  679. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_volume_attachment.py +0 -565
  680. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_volume_group.py +0 -671
  681. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_volume_group_snapshot.py +0 -290
  682. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_volume_group_type.py +0 -464
  683. python-openstackclient-6.6.1/openstackclient/tests/unit/volume/v3/test_volume_message.py +0 -307
  684. python-openstackclient-6.6.1/openstackclient/volume/v1/qos_specs.py +0 -377
  685. python-openstackclient-6.6.1/openstackclient/volume/v1/service.py +0 -136
  686. python-openstackclient-6.6.1/openstackclient/volume/v1/volume.py +0 -734
  687. python-openstackclient-6.6.1/openstackclient/volume/v1/volume_backup.py +0 -302
  688. python-openstackclient-6.6.1/openstackclient/volume/v1/volume_snapshot.py +0 -433
  689. python-openstackclient-6.6.1/openstackclient/volume/v1/volume_transfer_request.py +0 -200
  690. python-openstackclient-6.6.1/openstackclient/volume/v1/volume_type.py +0 -520
  691. python-openstackclient-6.6.1/openstackclient/volume/v2/backup_record.py +0 -87
  692. python-openstackclient-6.6.1/openstackclient/volume/v2/consistency_group.py +0 -395
  693. python-openstackclient-6.6.1/openstackclient/volume/v2/consistency_group_snapshot.py +0 -220
  694. python-openstackclient-6.6.1/openstackclient/volume/v2/qos_specs.py +0 -380
  695. python-openstackclient-6.6.1/openstackclient/volume/v2/service.py +0 -136
  696. python-openstackclient-6.6.1/openstackclient/volume/v2/volume.py +0 -981
  697. python-openstackclient-6.6.1/openstackclient/volume/v2/volume_backend.py +0 -117
  698. python-openstackclient-6.6.1/openstackclient/volume/v2/volume_backup.py +0 -670
  699. python-openstackclient-6.6.1/openstackclient/volume/v2/volume_host.py +0 -74
  700. python-openstackclient-6.6.1/openstackclient/volume/v2/volume_snapshot.py +0 -519
  701. python-openstackclient-6.6.1/openstackclient/volume/v2/volume_transfer_request.py +0 -233
  702. python-openstackclient-6.6.1/openstackclient/volume/v2/volume_type.py +0 -967
  703. python-openstackclient-6.6.1/openstackclient/volume/v3/volume.py +0 -115
  704. python-openstackclient-6.6.1/openstackclient/volume/v3/volume_attachment.py +0 -510
  705. python-openstackclient-6.6.1/openstackclient/volume/v3/volume_message.py +0 -157
  706. python-openstackclient-6.6.1/python_openstackclient.egg-info/PKG-INFO +0 -161
  707. python-openstackclient-6.6.1/python_openstackclient.egg-info/SOURCES.txt +0 -1358
  708. python-openstackclient-6.6.1/python_openstackclient.egg-info/entry_points.txt +0 -712
  709. python-openstackclient-6.6.1/python_openstackclient.egg-info/pbr.json +0 -1
  710. python-openstackclient-6.6.1/python_openstackclient.egg-info/requires.txt +0 -12
  711. python-openstackclient-6.6.1/releasenotes/source/conf.py +0 -315
  712. python-openstackclient-6.6.1/releasenotes/source/index.rst +0 -64
  713. python-openstackclient-6.6.1/releasenotes/source/zed.rst +0 -6
  714. python-openstackclient-6.6.1/requirements.txt +0 -17
  715. python-openstackclient-6.6.1/setup.cfg +0 -852
  716. python-openstackclient-6.6.1/tox.ini +0 -131
  717. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/.coveragerc +0 -0
  718. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/.mailmap +0 -0
  719. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/.stestr.conf +0 -0
  720. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/.zuul.yaml +0 -0
  721. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/CONTRIBUTING.rst +0 -0
  722. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/Dockerfile +0 -0
  723. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/HACKING.rst +0 -0
  724. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/LICENSE +0 -0
  725. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/README.rst +0 -0
  726. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/bindep.txt +0 -0
  727. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/Makefile +0 -0
  728. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/_extra/.htaccess +0 -0
  729. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/_hidden/ec2-credentials.rst +0 -0
  730. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/_hidden/endpoint.rst +0 -0
  731. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/_hidden/image.rst +0 -0
  732. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/_hidden/project.rst +0 -0
  733. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/_hidden/role.rst +0 -0
  734. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/_hidden/service.rst +0 -0
  735. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/_hidden/token.rst +0 -0
  736. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/_hidden/user.rst +0 -0
  737. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/authentication.rst +0 -0
  738. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-list.rst +0 -0
  739. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/access-rules.rst +0 -0
  740. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/access-token.rst +0 -0
  741. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/address-group.rst +0 -0
  742. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/address-scope.rst +0 -0
  743. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/aggregate.rst +0 -0
  744. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/application-credentials.rst +0 -0
  745. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/availability-zone.rst +0 -0
  746. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/block-storage-cleanup.rst +0 -0
  747. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/block-storage-cluster.rst +0 -0
  748. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/block-storage-log-level.rst +0 -0
  749. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/block-storage-manage.rst +0 -0
  750. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/block-storage-resource-filter.rst +0 -0
  751. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/catalog.rst +0 -0
  752. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/command.rst +0 -0
  753. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/complete.rst +0 -0
  754. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/compute-agent.rst +0 -0
  755. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/compute-service.rst +0 -0
  756. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/configuration.rst +0 -0
  757. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/consistency-group-snapshot.rst +0 -0
  758. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/consistency-group.rst +0 -0
  759. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/console-log.rst +0 -0
  760. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/console-url.rst +0 -0
  761. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/consumer.rst +0 -0
  762. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/container.rst +0 -0
  763. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/credential.rst +0 -0
  764. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/default-security-group-rule.rst +0 -0
  765. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/domain.rst +0 -0
  766. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/ec2-credentials-v2.rst +0 -0
  767. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/ec2-credentials-v3.rst +0 -0
  768. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/endpoint-v2.rst +0 -0
  769. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/endpoint-v3.rst +0 -0
  770. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/endpoint_group.rst +0 -0
  771. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/extension.rst +0 -0
  772. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/federation-domain-project.rst +0 -0
  773. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/federation-protocol.rst +0 -0
  774. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/flavor.rst +0 -0
  775. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/floating-ip-pool.rst +0 -0
  776. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/floating-ip-port-forwarding.rst +0 -0
  777. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/floating-ip.rst +0 -0
  778. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/group.rst +0 -0
  779. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/host.rst +0 -0
  780. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/hypervisor-stats.rst +0 -0
  781. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/hypervisor.rst +0 -0
  782. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/identity-provider.rst +0 -0
  783. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/image-member.rst +0 -0
  784. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/image-task.rst +0 -0
  785. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/image-v1.rst +0 -0
  786. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/image-v2.rst +0 -0
  787. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/implied_role.rst +0 -0
  788. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/ip-availability.rst +0 -0
  789. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/keypair.rst +0 -0
  790. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/limit.rst +0 -0
  791. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/limits.rst +0 -0
  792. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/local-ip-association.rst +0 -0
  793. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/local-ip.rst +0 -0
  794. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/mapping.rst +0 -0
  795. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/module.rst +0 -0
  796. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-agent.rst +0 -0
  797. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-auto-allocated-topology.rst +0 -0
  798. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-flavor-profile.rst +0 -0
  799. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-flavor.rst +0 -0
  800. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-l3-conntrack-helper.rst +0 -0
  801. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-meter-rule.rst +0 -0
  802. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-meter.rst +0 -0
  803. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-qos-policy.rst +0 -0
  804. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-qos-rule-type.rst +0 -0
  805. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-qos-rule.rst +0 -0
  806. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-rbac.rst +0 -0
  807. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-segment.rst +0 -0
  808. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-service-provider.rst +0 -0
  809. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network-trunk.rst +0 -0
  810. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network.rst +0 -0
  811. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/network_segment_range.rst +0 -0
  812. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/object-store-account.rst +0 -0
  813. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/object.rst +0 -0
  814. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/policy.rst +0 -0
  815. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/port.rst +0 -0
  816. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/project-cleanup.rst +0 -0
  817. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/project-v2.rst +0 -0
  818. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/project-v3.rst +0 -0
  819. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/quota.rst +0 -0
  820. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/region.rst +0 -0
  821. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/registered-limit.rst +0 -0
  822. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/request-token.rst +0 -0
  823. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/role-assignment.rst +0 -0
  824. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/role-v2.rst +0 -0
  825. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/role-v3.rst +0 -0
  826. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/router-ndp-proxy.rst +0 -0
  827. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/router.rst +0 -0
  828. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/security-group-rule.rst +0 -0
  829. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/security-group.rst +0 -0
  830. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/server-backup.rst +0 -0
  831. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/server-event.rst +0 -0
  832. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/server-group.rst +0 -0
  833. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/server-image.rst +0 -0
  834. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/server-migration.rst +0 -0
  835. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/server.rst +0 -0
  836. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/service-provider.rst +0 -0
  837. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/service-v2.rst +0 -0
  838. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/service-v3.rst +0 -0
  839. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/subnet-pool.rst +0 -0
  840. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/subnet.rst +0 -0
  841. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/token-v2.rst +0 -0
  842. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/token-v3.rst +0 -0
  843. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/trust.rst +0 -0
  844. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/usage.rst +0 -0
  845. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/user-v2.rst +0 -0
  846. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/user-v3.rst +0 -0
  847. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/versions.rst +0 -0
  848. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-attachment.rst +0 -0
  849. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-backend.rst +0 -0
  850. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-backup.rst +0 -0
  851. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-group-snapshot.rst +0 -0
  852. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-group-type.rst +0 -0
  853. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-group.rst +0 -0
  854. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-host.rst +0 -0
  855. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-message.rst +0 -0
  856. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-qos.rst +0 -0
  857. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-service.rst +0 -0
  858. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-snapshot.rst +0 -0
  859. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-transfer-request.rst +0 -0
  860. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume-type.rst +0 -0
  861. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/command-objects/volume.rst +0 -0
  862. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/data/cinder.csv +0 -0
  863. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/data/keystone.csv +0 -0
  864. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/data/neutron.csv +0 -0
  865. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/data/nova.csv +0 -0
  866. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/data/swift.csv +0 -0
  867. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/decoder.rst +0 -0
  868. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/index.rst +0 -0
  869. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/interactive.rst +0 -0
  870. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/man/openstack.rst +0 -0
  871. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/aodh.rst +0 -0
  872. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/barbican.rst +0 -0
  873. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/cyborg.rst +0 -0
  874. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/designate.rst +0 -0
  875. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/gnocchi.rst +0 -0
  876. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/heat.rst +0 -0
  877. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/ironic-inspector.rst +0 -0
  878. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/ironic.rst +0 -0
  879. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/magnum.rst +0 -0
  880. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/manila.rst +0 -0
  881. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/mistral.rst +0 -0
  882. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/neutron.rst +0 -0
  883. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/octavia.rst +0 -0
  884. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/placement.rst +0 -0
  885. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/trove.rst +0 -0
  886. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/watcher.rst +0 -0
  887. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/zaqar.rst +0 -0
  888. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/cli/plugin-commands/zun.rst +0 -0
  889. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/configuration/index.rst +0 -0
  890. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/command-beta.rst +0 -0
  891. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/command-logs.rst +0 -0
  892. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/command-options.rst +0 -0
  893. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/command-wrappers.rst +0 -0
  894. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/developing.rst +0 -0
  895. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/humaninterfaceguide.rst +0 -0
  896. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/index.rst +0 -0
  897. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/specs/command-objects/example.rst +0 -0
  898. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/specs/commands.rst +0 -0
  899. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/contributor/specs/network-topology.rst +0 -0
  900. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/source/index.rst +0 -0
  901. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/doc/test/redirect-tests.txt +0 -0
  902. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/examples/common.py +0 -0
  903. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/examples/object_api.py +0 -0
  904. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/examples/openstack.sh +0 -0
  905. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/examples/osc-lib.py +0 -0
  906. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/__init__.py +0 -0
  907. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/api/__init__.py +0 -0
  908. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/api/image_v2.py +0 -0
  909. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/common/__init__.py +0 -0
  910. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/common/pagination.py +0 -0
  911. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/compute/__init__.py +0 -0
  912. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/compute/v2/__init__.py +0 -0
  913. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/compute/v2/hypervisor_stats.py +0 -0
  914. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/compute/v2/server_event.py +0 -0
  915. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/compute/v2/server_volume.py +0 -0
  916. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/i18n.py +0 -0
  917. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/identity/__init__.py +0 -0
  918. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/identity/client.py +0 -0
  919. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/identity/v2_0/__init__.py +0 -0
  920. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/identity/v3/__init__.py +0 -0
  921. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/identity/v3/unscoped_saml.py +0 -0
  922. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/image/__init__.py +0 -0
  923. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/image/v1/__init__.py +0 -0
  924. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/image/v2/__init__.py +0 -0
  925. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/image/v2/image.py +0 -0
  926. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/image/v2/info.py +0 -0
  927. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/image/v2/metadef_namespaces.py +0 -0
  928. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/image/v2/metadef_properties.py +0 -0
  929. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/image/v2/metadef_resource_types.py +0 -0
  930. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/locale/tr_TR/LC_MESSAGES/openstackclient.po +0 -0
  931. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/network/__init__.py +0 -0
  932. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/network/client.py +0 -0
  933. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/network/v2/__init__.py +0 -0
  934. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/network/v2/local_ip.py +0 -0
  935. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/network/v2/local_ip_association.py +0 -0
  936. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/network/v2/ndp_proxy.py +0 -0
  937. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/network/v2/network_service_provider.py +0 -0
  938. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/object/__init__.py +0 -0
  939. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/object/client.py +0 -0
  940. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/object/v1/__init__.py +0 -0
  941. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/__init__.py +0 -0
  942. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/__init__.py +0 -0
  943. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/common/__init__.py +0 -0
  944. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/common/test_args.py +0 -0
  945. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/common/test_availability_zone.py +0 -0
  946. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/common/test_configuration.py +0 -0
  947. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/common/test_versions.py +0 -0
  948. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/compute/__init__.py +0 -0
  949. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/compute/v2/__init__.py +0 -0
  950. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/compute/v2/test_aggregate.py +0 -0
  951. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/compute/v2/test_hypervisor.py +0 -0
  952. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/compute/v2/test_server_group.py +0 -0
  953. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/__init__.py +0 -0
  954. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/__init__.py +0 -0
  955. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/test_catalog.py +0 -0
  956. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/test_ec2_credentials.py +0 -0
  957. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/test_endpoint.py +0 -0
  958. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/test_project.py +0 -0
  959. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/test_role.py +0 -0
  960. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/test_service.py +0 -0
  961. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/test_token.py +0 -0
  962. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v2/test_user.py +0 -0
  963. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v3/__init__.py +0 -0
  964. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v3/test_catalog.py +0 -0
  965. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v3/test_group.py +0 -0
  966. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v3/test_project.py +0 -0
  967. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v3/test_token.py +0 -0
  968. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/identity/v3/test_user.py +0 -0
  969. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/image/__init__.py +0 -0
  970. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/image/v1/__init__.py +0 -0
  971. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/image/v1/test_image.py +0 -0
  972. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/image/v2/__init__.py +0 -0
  973. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/__init__.py +0 -0
  974. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/__init__.py +0 -0
  975. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_address_group.py +0 -0
  976. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_address_scope.py +0 -0
  977. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_default_security_group_rule.py +0 -0
  978. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_floating_ip.py +0 -0
  979. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_ip_availability.py +0 -0
  980. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_l3_conntrack_helper.py +0 -0
  981. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_local_ip.py +0 -0
  982. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_flavor.py +0 -0
  983. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_flavor_profile.py +0 -0
  984. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_meter.py +0 -0
  985. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_meter_rule.py +0 -0
  986. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_ndp_proxy.py +0 -0
  987. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_qos_policy.py +0 -0
  988. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py +0 -0
  989. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_rbac.py +0 -0
  990. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_segment.py +0 -0
  991. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_segment_range.py +0 -0
  992. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_service_provider.py +0 -0
  993. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_network_trunk.py +0 -0
  994. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_security_group.py +0 -0
  995. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_security_group_rule.py +0 -0
  996. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_subnet.py +0 -0
  997. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/network/v2/test_subnet_pool.py +0 -0
  998. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/object/__init__.py +0 -0
  999. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/object/v1/__init__.py +0 -0
  1000. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/__init__.py +0 -0
  1001. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v1/__init__.py +0 -0
  1002. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v1/common.py +0 -0
  1003. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v1/test_qos.py +0 -0
  1004. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v1/test_volume.py +0 -0
  1005. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v2/__init__.py +0 -0
  1006. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v2/common.py +0 -0
  1007. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v2/test_qos.py +0 -0
  1008. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v2/test_transfer_request.py +0 -0
  1009. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v2/test_volume.py +0 -0
  1010. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v3/__init__.py +0 -0
  1011. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v3/common.py +0 -0
  1012. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v3/test_qos.py +0 -0
  1013. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v3/test_transfer_request.py +0 -0
  1014. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/functional/volume/v3/test_volume.py +0 -0
  1015. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/__init__.py +0 -0
  1016. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/api/__init__.py +0 -0
  1017. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/common/__init__.py +0 -0
  1018. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/common/test_availability_zone.py +0 -0
  1019. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/common/test_clientmanager.py +0 -0
  1020. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/common/test_command.py +0 -0
  1021. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/common/test_configuration.py +0 -0
  1022. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/common/test_extension.py +0 -0
  1023. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/common/test_progressbar.py +0 -0
  1024. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/compute/__init__.py +0 -0
  1025. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/compute/v2/__init__.py +0 -0
  1026. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/compute/v2/test_server_image.py +0 -0
  1027. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/identity/__init__.py +0 -0
  1028. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/identity/v2_0/__init__.py +0 -0
  1029. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/identity/v3/__init__.py +0 -0
  1030. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/__init__.py +0 -0
  1031. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/v1/__init__.py +0 -0
  1032. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/v1/fakes.py +0 -0
  1033. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/v2/__init__.py +0 -0
  1034. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/v2/test_info.py +0 -0
  1035. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/v2/test_metadef_namespaces.py +0 -0
  1036. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/v2/test_metadef_properties.py +0 -0
  1037. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/v2/test_metadef_resource_types.py +0 -0
  1038. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/image/v2/test_task.py +0 -0
  1039. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/integ/__init__.py +0 -0
  1040. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/integ/cli/__init__.py +0 -0
  1041. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/network/__init__.py +0 -0
  1042. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/network/test_utils.py +0 -0
  1043. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/network/v2/__init__.py +0 -0
  1044. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/object/__init__.py +0 -0
  1045. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/object/v1/__init__.py +0 -0
  1046. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/__init__.py +0 -0
  1047. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v1/__init__.py +0 -0
  1048. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v1/test_qos_specs.py +0 -0
  1049. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v1/test_service.py +0 -0
  1050. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v1/test_transfer_request.py +0 -0
  1051. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v1/test_type.py +0 -0
  1052. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v1/test_volume_backup.py +0 -0
  1053. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v2/__init__.py +0 -0
  1054. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v2/test_backup_record.py +0 -0
  1055. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v2/test_consistency_group.py +0 -0
  1056. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v2/test_service.py +0 -0
  1057. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v2/test_volume_backend.py +0 -0
  1058. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v2/test_volume_host.py +0 -0
  1059. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/tests/unit/volume/v3/__init__.py +0 -0
  1060. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/__init__.py +0 -0
  1061. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/client.py +0 -0
  1062. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v1/__init__.py +0 -0
  1063. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v2/__init__.py +0 -0
  1064. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/__init__.py +0 -0
  1065. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/block_storage_cleanup.py +0 -0
  1066. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/block_storage_cluster.py +0 -0
  1067. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/block_storage_log_level.py +0 -0
  1068. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/block_storage_manage.py +0 -0
  1069. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/block_storage_resource_filter.py +0 -0
  1070. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/volume_group.py +0 -0
  1071. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/volume_group_snapshot.py +0 -0
  1072. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/openstackclient/volume/v3/volume_group_type.py +0 -0
  1073. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/python_openstackclient.egg-info/dependency_links.txt +0 -0
  1074. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/python_openstackclient.egg-info/not-zip-safe +0 -0
  1075. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/python_openstackclient.egg-info/top_level.txt +0 -0
  1076. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/.placeholder +0 -0
  1077. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/Add-default-security-group-rule-CRUD-2916568f829ea38c.yaml +0 -0
  1078. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/L3-conntrack-helper-bd0d9da041747e84.yaml +0 -0
  1079. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-auto-and-none-as-nic-parameter-ed23a6e7f99f250d.yaml +0 -0
  1080. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-auto-approve-cleanup-a2d225faa42dfdcb.yaml +0 -0
  1081. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-backup-option-to-create-vol-fc36c2c745ebcff5.yaml +0 -0
  1082. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-baremetal-agent-type-7c46365e8d457ac8.yaml +0 -0
  1083. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-block-storage-cluster-commands-fae8f686582bbbcf.yaml +0 -0
  1084. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-block-storage-manage-commands-6ebf029bd7a67bb3.yaml +0 -0
  1085. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-cache-commands-a6f046348a3a0b1f.yaml +0 -0
  1086. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-community-option-to-image-list-ac0651eb2e5d632f.yaml +0 -0
  1087. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-create-group-from-src-options-6fcb0c87f617ca91.yaml +0 -0
  1088. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-description-field-in-port-forwarding-c536e077b243d517.yaml +0 -0
  1089. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-description-to-role-afe7b6ff668df261.yaml +0 -0
  1090. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-device_id-to-port-list-0c658db51ce43c9e.yaml +0 -0
  1091. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-disable-reason-6e0f28459a09a60d.yaml +0 -0
  1092. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-dns-nameserver-overwrite-option-b866baeae12f9460.yaml +0 -0
  1093. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-fip-portforwarding-commands-6e4d8ace698ee308.yaml +0 -0
  1094. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-flavor-id-to-router-create-76e916e129b5b80c.yaml +0 -0
  1095. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-ha-to-router-update-6a38a73cc112b2fc.yaml +0 -0
  1096. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-host-and-hypervisor-hostname-flag-to-create-server-cb8b39a9f9311d42.yaml +0 -0
  1097. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-import-flag-899869dc5a92aea7.yaml +0 -0
  1098. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-member-get-25e913ef2b861bf3.yaml +0 -0
  1099. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-member-list-1630ead5988348c2.yaml +0 -0
  1100. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-metadef-namespace-support-4ba37ec3a1a72185.yaml +0 -0
  1101. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-metadef-object-update-f4880e423bf4faba.yaml +0 -0
  1102. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-metadef-resource-type-list-command-020adcaa2ad14e07.yaml +0 -0
  1103. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-progress-option-to-create-1ed1881d58ebad4b.yaml +0 -0
  1104. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-project-filter-support-ed6204391e503adf.yaml +0 -0
  1105. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-tag-filter-support-5cb039416b07caab.yaml +0 -0
  1106. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-image-task-commands-50c3643ebfd0421f.yaml +0 -0
  1107. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-implied-role-0cdafb131fbd7453.yaml +0 -0
  1108. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-import-info-stores-delete-c50b5222c21e1077.yaml +0 -0
  1109. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-is-default-to-network-qos-policy-89b11d4df032a789.yaml +0 -0
  1110. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-keypairs-project-filter-99cb6938f247927f.yaml +0 -0
  1111. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-keypairs-user-filter-e1ce57a4c09c278b.yaml +0 -0
  1112. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-ksa-7f0795157d93a898.yaml +0 -0
  1113. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-member-status-filter-2e118b2c93151223.yaml +0 -0
  1114. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-metadef-object-create-3939ee1453585484.yaml +0 -0
  1115. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-metadef-object-list-c8831e73c696b9d9.yaml +0 -0
  1116. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-metadef-object-show-1b05dd33ecf42210.yaml +0 -0
  1117. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-metadef-property-create-c9a4ec2bced892af.yaml +0 -0
  1118. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-metadef-property-delete-ebb999d92a588ad4.yaml +0 -0
  1119. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-metadef-property-list-fe89ae8ff9780002.yaml +0 -0
  1120. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-metadef-property-set-ab9cdcb73adf6397.yaml +0 -0
  1121. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-metadef-property-show-8bf2ec421f74cb2d.yaml +0 -0
  1122. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-hypervisor-list-opts-71da2cc36eac4edd.yaml +0 -0
  1123. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-keypair-list-opts-243a33d8276f91b8.yaml +0 -0
  1124. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-server-create-opts-d5e32bd743e9e132.yaml +0 -0
  1125. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-server-delete-opts-071c3e054e3ce674.yaml +0 -0
  1126. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-server-group-list-opts-d3c3d98b7f7a56a6.yaml +0 -0
  1127. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-server-group-list-opts-ebcf84bfcea07a4b.yaml +0 -0
  1128. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-server-image-create-opts-3c19a7492dc50fd7.yaml +0 -0
  1129. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-server-list-opts-c41e97e86ff1e1ca.yaml +0 -0
  1130. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-server-rebuild-opts-5c75e838d8f0487d.yaml +0 -0
  1131. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-server-set-opts-e1b4300f5f42e863.yaml +0 -0
  1132. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-trust-list-opts-500fd1e4c14e1504.yaml +0 -0
  1133. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-missing-volume-backup-opts-b9246aded87427ce.yaml +0 -0
  1134. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-more-server-list-columns-4e3b87929dd330f7.yaml +0 -0
  1135. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-auto-allocated-topology-481580f48840bfc4.yaml +0 -0
  1136. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-flavor-profile-e7cc5b353c3ed9d9.yaml +0 -0
  1137. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-list-option-to-ports-9d101344ddeb3e64.yaml +0 -0
  1138. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-local-ip-df3a9ce7610d8b90.yaml +0 -0
  1139. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-qos-policy-b8ad1e408d73c279.yaml +0 -0
  1140. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-qos-rule-22cc1ddd509941db.yaml +0 -0
  1141. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-qos-rule-type-show-57a714a1d428726e.yaml +0 -0
  1142. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-qos-rule-types-337e464c6e81f29c.yaml +0 -0
  1143. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-rbac-list-tenant-project-filter-1228f2287284e33c.yaml +0 -0
  1144. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-network-service-provider-c161a4a328a8a408.yaml +0 -0
  1145. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-no-property-f97e4b2f390cec06.yaml +0 -0
  1146. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-option-to-unset-port-host-c76de9b1d2addf9a.yaml +0 -0
  1147. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-osprofiler-support-adf5286daf220914.yaml +0 -0
  1148. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-overwrite-option-to-router-7c50c8031dab6bae.yaml +0 -0
  1149. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-parent-list-option-to-projects-10382a7176993366.yaml +0 -0
  1150. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-commands-a3580662721a6312.yaml +0 -0
  1151. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-delete-command-4789d3881b186cfc.yaml +0 -0
  1152. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-hardware-offload-type-011c98ab748357d7.yaml +0 -0
  1153. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-hints-attribute-be1779e640a47d0d.yaml +0 -0
  1154. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-numa-affinity-policy-4706b0f9485a5d4d.yaml +0 -0
  1155. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-ranges-in-port-forwarding-command-8c6ee05cf625578a.yaml +0 -0
  1156. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-security-enabled-to-port-set-82b801d21d45e715.yaml +0 -0
  1157. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-show-command-de0a599017189a21.yaml +0 -0
  1158. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-port-unset-command-8bdaf1fa9c593374.yaml +0 -0
  1159. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-project-cleanup-beb08c9df3c95b24.yaml +0 -0
  1160. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-qos-policy-list-options-9ba1ae731a88e7ac.yaml +0 -0
  1161. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-quota-list-command-0d865fac61db2430.yaml +0 -0
  1162. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-quota-set-for-network-11fcd7b9e08624b5.yaml +0 -0
  1163. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-reimage-param-to-rebuild-606dd331677b5954.yaml +0 -0
  1164. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-remote-managed-vnic-type-4fc540b47427c37f.yaml +0 -0
  1165. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-restore-server-d8c73e0e83df17dd.yaml +0 -0
  1166. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-add-network-98ede8ff6079eb23.yaml +0 -0
  1167. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-backup-e63feaebb6140f83.yaml +0 -0
  1168. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-create-image-property-ef76af26233b472b.yaml +0 -0
  1169. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-evacuate-8359246692cb642f.yaml +0 -0
  1170. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-group-quotas-b67fcba98619f0c9.yaml +0 -0
  1171. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-hostname-opts-3cb4fd90b5bf47ca.yaml +0 -0
  1172. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-migrate-confirm-revert-commands-9d8079c9fddea36d.yaml +0 -0
  1173. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-migrate-with-host-4884a71903c5c8a9.yaml +0 -0
  1174. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-migration-show-command-2e3a25e383dc5d70.yaml +0 -0
  1175. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-nic-tagging-support-f77b4247e87771d5.yaml +0 -0
  1176. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-remove-network-fb09c53d5b0c0068.yaml +0 -0
  1177. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-resize-confirm-revert-commands-98854ca98965432a.yaml +0 -0
  1178. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-server-volume-update-89740dca61596dd1.yaml +0 -0
  1179. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-shelve-offload-wait-d0a5c8ba92586f72.yaml +0 -0
  1180. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-stores-info-9f1488dd29013767.yaml +0 -0
  1181. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-subnet-list-command-970f4b397469bdc6.yaml +0 -0
  1182. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-tag-support-server-add-fixed-ip-8de2db58f2a80e85.yaml +0 -0
  1183. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-tag-support-server-add-network-a8590cab5d7babf0.yaml +0 -0
  1184. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-tag-support-server-add-port-7e30aa38202d0839.yaml +0 -0
  1185. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-tag-support-server-add-volume-278e79a22dd482f4.yaml +0 -0
  1186. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-trusted-certs-option-server-create-a660488407300f22.yaml +0 -0
  1187. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-virtio-forwarder-vnic-type-bad939c6a868b9e9.yaml +0 -0
  1188. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-vol-service-get-set-log-commands-f9420e5061d994b5.yaml +0 -0
  1189. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-attachment-commands-db2974c6460fa3bc.yaml +0 -0
  1190. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-group-commands-b121d6ec7da9779a.yaml +0 -0
  1191. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-group-snapshot-commands-27fa8920d55f6bdb.yaml +0 -0
  1192. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-group-type-commands-13eabc7664a5c2bc.yaml +0 -0
  1193. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-host-failover-8fc77b24533b7fed.yaml +0 -0
  1194. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-message-commands-89a590a1549c333e.yaml +0 -0
  1195. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-qos-set-no-property-option-348480dfc42a0a64.yaml +0 -0
  1196. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-revert-command-1c8f695420acbe7e.yaml +0 -0
  1197. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-summary-command-b2175b48af3ccab1.yaml +0 -0
  1198. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-transfer-request-create-snapshots-opts-1361416d37021e89.yaml +0 -0
  1199. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-volume-type-set-public-private-opts-891fc7ab5de9bb6a.yaml +0 -0
  1200. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add-workers-cleanup-command-720573c0f642efe9.yaml +0 -0
  1201. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add_attachment_id_to_volume_attachment-cea605585db29e14.yaml +0 -0
  1202. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add_id_and_enabled_to_list_identity_provider-e0981063a2dc5961.yaml +0 -0
  1203. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add_name_and_enabled_to_list_domain-6d23f02994b51c67.yaml +0 -0
  1204. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add_options_to_user_create_and_set-302401520f36d153.yaml +0 -0
  1205. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add_resource_option_immutable-efed6e1ebdc69591.yaml +0 -0
  1206. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/add_volume_backend_commands_to_volumeV3-145b114e40ab8615.yaml +0 -0
  1207. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/address-scope-delete-multi-31c3af73feb31265.yaml +0 -0
  1208. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/allow-custom-logging-12d55f8ed859ff8e.yaml +0 -0
  1209. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/allow-port-create-with-extra-dhcp-options-c2c40e4002b52e2a.yaml +0 -0
  1210. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/allow-port-list-with-ip-address-substr-14c5805b241e402f.yaml +0 -0
  1211. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/allow-to-add-remove-vm-ports-273593d7cc1982de.yaml +0 -0
  1212. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/allow-to-create-legacy-router-cb4dcb44dde74684.yaml +0 -0
  1213. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/allow-to-specify-vm-ip-to-publish-85f7207740c0cc8d.yaml +0 -0
  1214. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/allow-to-vm-ip-to-add-7721ba64b863fa77.yaml +0 -0
  1215. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/always-show-direction-for-sg-rule-130efc39bf67d79a.yaml +0 -0
  1216. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/auto-configure-block-live-migration-437d461c914f8f2f.yaml +0 -0
  1217. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/auto-no-network-options-f4ddb2bb7544d2f5.yaml +0 -0
  1218. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/backup_list_all-projects_option-4bb23e0b9b075cac.yaml +0 -0
  1219. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/better-ipv6-address-suppport-security-group-rules-95272847349982e5.yaml +0 -0
  1220. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/block-storage-x-manageable-list-long-option-a16a4641acfcf781.yaml +0 -0
  1221. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-add-locked-reason-425efd2def1144f1.yaml +0 -0
  1222. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-add-user-id-field-to-the-migrations-table-299b99ccb1f12a1f.yaml +0 -0
  1223. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-address-groups-in-sg-rules-b3b7742e4e6f5745.yaml +0 -0
  1224. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-address-groups-in-sg-rules-e0dc7e889e107799.yaml +0 -0
  1225. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-allow-overwrite-set-options-190a9c6904d53dab.yaml +0 -0
  1226. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-application-credential-a7031a043efc4a25.yaml +0 -0
  1227. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-backup-snapshot-renamed-for-volume-resource-2d2d13ea8489a61f.yaml +0 -0
  1228. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-cinder-command-support-3db775ba331e113d.yaml +0 -0
  1229. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-cinder-command-support-413b6d80232f8ece.yaml +0 -0
  1230. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-cinder-command-support-7e3ae1fb4cd90407.yaml +0 -0
  1231. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-cinder-command-support-82dbadef47454c18.yaml +0 -0
  1232. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-cinder-command-support-cc8708c4395ce467.yaml +0 -0
  1233. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-cinder-command-support-ff7acc531baae8c3.yaml +0 -0
  1234. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-extension-show-6f7e31a27dad0dc9.yaml +0 -0
  1235. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-handling-down-cell-ab8af2897f1a8c85.yaml +0 -0
  1236. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-implement-network-agents-5eba48796318f094.yaml +0 -0
  1237. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-multi-argument-compute-0bc4522f6edca355.yaml +0 -0
  1238. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-multi-argument-network-e43e192ac95db94d.yaml +0 -0
  1239. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-network-command-options-2-e7b13a6a09f5d21e.yaml +0 -0
  1240. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-network-dhcp-adv-commands-e61bf8757f46dc93.yaml +0 -0
  1241. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-network-l3-adv-commands-cc1df715a184f1b2.yaml +0 -0
  1242. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-network-segment-range-management-0abf03fe03eea149.yaml +0 -0
  1243. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-neutron-client-a0552f8ca909b665.yaml +0 -0
  1244. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-neutron-client-descriptions-a80902b4295843cf.yaml +0 -0
  1245. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-neutron-client-descriptions-b65dd776f78b5a73.yaml +0 -0
  1246. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-neutron-client-metering-1ee703a48343ece1.yaml +0 -0
  1247. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-neutron-client-metering-6f8f9527c2a797fd.yaml +0 -0
  1248. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-neutron-client-rbac-bbd7b545b50d2bdf.yaml +0 -0
  1249. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-neutron-client-tag-ff24d13e5c70e052.yaml +0 -0
  1250. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-neutron-floating-ip-rate-limit-8387c040a6fb9acd.yaml +0 -0
  1251. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-project-tags-b544aef9672d415b.yaml +0 -0
  1252. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-routed-networks-3b502faa5cd96807.yaml +0 -0
  1253. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-routed-networks-3eea4978c93aa126.yaml +0 -0
  1254. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-routed-networks-86a24f34d86fca53.yaml +0 -0
  1255. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-support-multi-add-remove-9516f72cfacea11a.yaml +0 -0
  1256. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-support-no-property-in-aggregate-b74a42e00a65d14a.yaml +0 -0
  1257. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-support-specifying-az-when-restore-shelved-server-16e864223d51b50a.yaml +0 -0
  1258. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-support-specifying-az-when-restore-shelved-server-9179045f04815bbb.yaml +0 -0
  1259. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-unified-limits-58f166401534a4ff.yaml +0 -0
  1260. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-unified-limits-6c5fdb1c26805d86.yaml +0 -0
  1261. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-unshelve-to-host-9ce4b7abf81aeedf.yaml +0 -0
  1262. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bp-whitelist-extension-for-app-creds-9afd5009b374190b.yaml +0 -0
  1263. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1204956-af47c7f34ecc19c3.yaml +0 -0
  1264. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1411190-live-migration-host-655ae6befa6a3de2.yaml +0 -0
  1265. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1475831-3caafd724d4ed644.yaml +0 -0
  1266. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1486597-857e20262c038514.yaml +0 -0
  1267. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1499657-eeb260849febacf3.yaml +0 -0
  1268. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1513894-6d2f05db6e1df744.yaml +0 -0
  1269. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1516661-757ef629f899cca3.yaml +0 -0
  1270. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1517134-9efecb257910989c.yaml +0 -0
  1271. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1517386-1c0aad8e3203b02b.yaml +0 -0
  1272. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1518059-e2dbe6e4b2473f10.yaml +0 -0
  1273. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519181-932c1ff07ef16666.yaml +0 -0
  1274. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519502-d534db6c18adef20.yaml +0 -0
  1275. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519502-f72236598d14d350.yaml +0 -0
  1276. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519503-978a68a54819dbbc.yaml +0 -0
  1277. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519510-3cde4643b33ebb7a.yaml +0 -0
  1278. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519511-65b8901ae6ea2e63.yaml +0 -0
  1279. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519511-65d8d21dde31e5e2.yaml +0 -0
  1280. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519511-74bab0e0d32db043.yaml +0 -0
  1281. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519512-4231ac6014109142.yaml +0 -0
  1282. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519512-48624c5a32432a47.yaml +0 -0
  1283. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519512-48d98f09e44220a3.yaml +0 -0
  1284. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519512-65df002102b7fb99.yaml +0 -0
  1285. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519512-d20f44aca1f9e9b9.yaml +0 -0
  1286. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1519512-dbf4368fe10dc495.yaml +0 -0
  1287. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1520003-505af921c8afffc9.yaml +0 -0
  1288. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1520115-0367e1c8917dc912.yaml +0 -0
  1289. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1520541-44d45e4693089c03.yaml +0 -0
  1290. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1521492-89b972c6362940a5.yaml +0 -0
  1291. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1521492-8cde2601591a8c78.yaml +0 -0
  1292. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1522969-63abf273c6e71a07.yaml +0 -0
  1293. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1524456-9967fac653c91cb2.yaml +0 -0
  1294. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1525805-122e6ce0c3cd4945.yaml +0 -0
  1295. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1527833-42cde11d28b09ac3.yaml +0 -0
  1296. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1531360-0f5c62d18088e5b5.yaml +0 -0
  1297. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1532945-1a5485b8d0ebddb8.yaml +0 -0
  1298. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1534202-1ba78f0bb744961f.yaml +0 -0
  1299. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1535213-c91133586e07d71c.yaml +0 -0
  1300. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1535239-767e6cf1990eda01.yaml +0 -0
  1301. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1535704-d6f013bfa22ab668.yaml +0 -0
  1302. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1536479-d1f03ed2177d06ed.yaml +0 -0
  1303. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1538372-ef3a30298357f972.yaml +0 -0
  1304. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1540656-f7b7b7e3feef2440.yaml +0 -0
  1305. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1540988-17841cfd5accf7f5.yaml +0 -0
  1306. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1542171-fde165df53216726.yaml +0 -0
  1307. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1542359-181d28db21a2358a.yaml +0 -0
  1308. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1542362-ddad607f6d3025f0.yaml +0 -0
  1309. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1542364-5d1e93cfd24f0b65.yaml +0 -0
  1310. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1543214-959aee7830db2b0d.yaml +0 -0
  1311. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1543222-6f8579344ff5c958.yaml +0 -0
  1312. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1543226-7d885ecaa3715415.yaml +0 -0
  1313. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1543672-bad2fc4c6c8f3125.yaml +0 -0
  1314. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1544586-0e6ca9a09dac0726.yaml +0 -0
  1315. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1544586-0fe19a567d3e31fc.yaml +0 -0
  1316. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1544587-ec3ca453c1340b4e.yaml +0 -0
  1317. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1544589-b9f669ef71aa5e57.yaml +0 -0
  1318. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1544590-8cf42954e28c2f42.yaml +0 -0
  1319. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1545537-12bbf01d2280dd2f.yaml +0 -0
  1320. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1545537-4fa72fbfbbe3f31e.yaml +0 -0
  1321. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1545537-7a66219d263bb1e5.yaml +0 -0
  1322. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1545609-bdc1efc17214463b.yaml +0 -0
  1323. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1546065-41d09ffbd8606513.yaml +0 -0
  1324. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1549410-8df3a4b12fe13ffa.yaml +0 -0
  1325. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1550999-5e352a71dfbc828d.yaml +0 -0
  1326. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1554877-7f8479791eab45b7.yaml +0 -0
  1327. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1554886-8e5249a655e7e7b6.yaml +0 -0
  1328. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1554889-32ba8d4bfb0f5f3d.yaml +0 -0
  1329. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1556719-d2dcf61acf87e856.yaml +0 -0
  1330. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1556929-edd78cded88ecdc9.yaml +0 -0
  1331. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1559866-733988f5dd5b07bb.yaml +0 -0
  1332. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1560157-bce572f58b43efa1.yaml +0 -0
  1333. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1561599-d5f541f08ae6274a.yaml +0 -0
  1334. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1561838-3a006a8263d7536d.yaml +0 -0
  1335. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1564460-ab7ad35c02392cb4.yaml +0 -0
  1336. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1565034-dd404bfb42d7778d.yaml +0 -0
  1337. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1565112-e0cea9bfbcab954f.yaml +0 -0
  1338. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1566090_64726dc7df5b1572.yaml +0 -0
  1339. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1566269-2572bca9157ca107.yaml +0 -0
  1340. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1569480-c52e330548bfbd78.yaml +0 -0
  1341. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1571812-49cdce4df5f3d481.yaml +0 -0
  1342. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1572228-03638a7adec5da8b.yaml +0 -0
  1343. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1572733-874b37a7fa8292d0.yaml +0 -0
  1344. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1575461-3fed33e53795684a.yaml +0 -0
  1345. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1575461-4d7d90e792132064.yaml +0 -0
  1346. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1575478-5a0a923c3a32f96a.yaml +0 -0
  1347. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1575624-87957ff60ad661a6.yaml +0 -0
  1348. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1578819-d1efccfefb18356d.yaml +0 -0
  1349. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1581179-4d15dc504777f9e7.yaml +0 -0
  1350. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1582774-3bba709ef61e33b7.yaml +0 -0
  1351. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1582968-4d44912a033b242c.yaml +0 -0
  1352. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1584596-5b3109487b451bec.yaml +0 -0
  1353. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1588171-61214d0ea482988c.yaml +0 -0
  1354. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1588384-eb6976fcfb90cb4c.yaml +0 -0
  1355. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1588588-39927ef06ca35730.yaml +0 -0
  1356. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1589332-2941f5286df7e5d4.yaml +0 -0
  1357. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1589348-4a612a4efc7ed0e5.yaml +0 -0
  1358. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1589935-8a56e6a18d836db9.yaml +0 -0
  1359. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1592062-e327a31a5ae66809.yaml +0 -0
  1360. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1592368-a4af69f163a1e208.yaml +0 -0
  1361. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1592761-f45998453d6801f7.yaml +0 -0
  1362. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1592906-a5604ec5abe77507.yaml +0 -0
  1363. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1592906-ad67ce8736f3cd48.yaml +0 -0
  1364. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1592906-e69b37377278d9c2.yaml +0 -0
  1365. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1596443-9e2af267e91d1643.yaml +0 -0
  1366. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1596798-b22fd587bdca8b36.yaml +0 -0
  1367. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1596818-d4cd93dd4d38d3d6.yaml +0 -0
  1368. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1596821-a07599eb4beb6342.yaml +0 -0
  1369. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1597184-f4fb687b3d4d99d9.yaml +0 -0
  1370. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1597188-a2ff62b809865365.yaml +0 -0
  1371. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1597189-02a8d8a402725860.yaml +0 -0
  1372. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1597192-52801f7520287309.yaml +0 -0
  1373. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1597195-54ff1ecf381899f6.yaml +0 -0
  1374. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1597198-e36b55f3fd185a3a.yaml +0 -0
  1375. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1597296-9735f33eacf5552e.yaml +0 -0
  1376. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1600196-6a733dd4e3371df7.yaml +0 -0
  1377. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1602073-5deb58deeafbc8be.yaml +0 -0
  1378. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1602169-2750c9a6896d2825.yaml +0 -0
  1379. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1605088-fea9347336764469.yaml +0 -0
  1380. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1605475-84e649fb8c675737.yaml +0 -0
  1381. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1605774-28aec51f6ec4926e.yaml +0 -0
  1382. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1606105-ca06b230e22ab5c6.yaml +0 -0
  1383. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1607959-a52aa93e3793f28a.yaml +0 -0
  1384. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1607972-a910a9fbdb81da57.yaml +0 -0
  1385. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1609233-90b2ddf8d941050e.yaml +0 -0
  1386. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1609767-0602edc4408c2dc6.yaml +0 -0
  1387. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1610161-7c34c7b735701bd4.yaml +0 -0
  1388. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1610883-38929f6fc2eefc9a.yaml +0 -0
  1389. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1610883-e6345c32a35cc290.yaml +0 -0
  1390. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1612136-051b5f94796e3b51.yaml +0 -0
  1391. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1612136-6111b944569b9351.yaml +0 -0
  1392. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1612136-63aac6377209db38.yaml +0 -0
  1393. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1612136-ec240349a933db12.yaml +0 -0
  1394. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1612484-e8605ad8966a455e.yaml +0 -0
  1395. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1612898-bea3b68251d12d81.yaml +0 -0
  1396. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613231-386b2b1373662052.yaml +0 -0
  1397. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613261-290a64080fead6c0.yaml +0 -0
  1398. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613533-93279179c6f70117.yaml +0 -0
  1399. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613597-b1545148b0755e6f.yaml +0 -0
  1400. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613926-2d0e405831c0b5a9.yaml +0 -0
  1401. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613964-837196399be16b3d.yaml +0 -0
  1402. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613964-86e0afe0e012a758.yaml +0 -0
  1403. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613964-b3e8d9d828a3822c.yaml +0 -0
  1404. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613964-e5760f4825f1e043.yaml +0 -0
  1405. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1613995-10bb3895d702c063.yaml +0 -0
  1406. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1614121-a3c5b6892074d5ae.yaml +0 -0
  1407. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1614379-d8e2815804d53cef.yaml +0 -0
  1408. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1614379-da92ded6d19f5ad5.yaml +0 -0
  1409. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1614385-460b5034ba372463.yaml +0 -0
  1410. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1614458-c42be5738f447db8.yaml +0 -0
  1411. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1614823-e89080342f25f2c0.yaml +0 -0
  1412. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1617384-55c88207115e2a5b.yaml +0 -0
  1413. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1618676-04ff0f335b670567.yaml +0 -0
  1414. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1619274-e78afd7c12ea2c3d.yaml +0 -0
  1415. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1620922-7f27942dc00f7108.yaml +0 -0
  1416. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1622565-2e715aff8b054401.yaml +0 -0
  1417. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1624085-7cf296649277f405.yaml +0 -0
  1418. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1627555-3b47eba215e35b3c.yaml +0 -0
  1419. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1627913-2adf4182977e5926.yaml +0 -0
  1420. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1630822-mask-password-on-debug-20dcdf1c54e84fa1.yaml +0 -0
  1421. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1631471-beb0a1c9b4a932cb.yaml +0 -0
  1422. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1633582-df2bee534c2da7fc.yaml +0 -0
  1423. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1634333-a2b04d33ca39440e.yaml +0 -0
  1424. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1634672-7ce577f3adc34eed.yaml +0 -0
  1425. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1634799-1322227c9b0188ca.yaml +0 -0
  1426. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1635580-54e0039b469ad5a6.yaml +0 -0
  1427. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1636046-98dc0e69a4e44850.yaml +0 -0
  1428. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1637074-1b0e409f30f715ca.yaml +0 -0
  1429. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1637365-b90cdcc05ffc7d3a.yaml +0 -0
  1430. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1637945-f361c834381d409c.yaml +0 -0
  1431. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1639231-21823768bd54170a.yaml +0 -0
  1432. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1639712-a7b9d1a35a042049.yaml +0 -0
  1433. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1640086-21d7e5f2ce18f53c.yaml +0 -0
  1434. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1641868-97c284e33f944c2d.yaml +0 -0
  1435. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1642030-166b2b28c8adf22e.yaml +0 -0
  1436. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1642238-3032c7fe7f0ce29d.yaml +0 -0
  1437. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1642301-18b08e0cd4b11687.yaml +0 -0
  1438. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1642301-ad04424c80e8fe50.yaml +0 -0
  1439. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1642772-19f53765bef8ee91.yaml +0 -0
  1440. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1643861-b17ad5dfcb4304ff.yaml +0 -0
  1441. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1645252-219bfd50c8f04846.yaml +0 -0
  1442. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1647242-fdc39e564372857b.yaml +0 -0
  1443. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1647406-c936581034a1b6e4.yaml +0 -0
  1444. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1648087-21dfb7250abfdbe9.yaml +0 -0
  1445. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1648307-a2c6d7698e927449.yaml +0 -0
  1446. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1650026-0ce6a77e69d24424.yaml +0 -0
  1447. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1650342-22cb88ef37a41872.yaml +0 -0
  1448. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1651117-a1df37e7ea939ba4.yaml +0 -0
  1449. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1652827-f59bbd1b64df958d.yaml +0 -0
  1450. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1654221-a564ab75a6afc332.yaml +0 -0
  1451. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1655445-96c787e3a51226e0.yaml +0 -0
  1452. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1655537-20b0eb676afa278f.yaml +0 -0
  1453. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1656402-88b12760fb2d4ef9.yaml +0 -0
  1454. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1656572-b40303ae50a41000.yaml +0 -0
  1455. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1656767-36a3d4b9fac335c9.yaml +0 -0
  1456. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1656788-2f5bda2205bc0329.yaml +0 -0
  1457. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1657956-977a615f01775288.yaml +0 -0
  1458. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1658147-9de9ae222f9db9ae.yaml +0 -0
  1459. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1658189-d2b390ad74c96c79.yaml +0 -0
  1460. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1658582-80a76f6b0af0ca12.yaml +0 -0
  1461. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1658614-f84a8cece6f2ef8c.yaml +0 -0
  1462. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1659878-f6a55b7166d99ca8.yaml +0 -0
  1463. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1659894-4518b10615498ba9.yaml +0 -0
  1464. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1659967-644a8ee3621c9e81.yaml +0 -0
  1465. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1659993-a5fe43bef587e490.yaml +0 -0
  1466. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1661814-1692e68a1d2d9770.yaml +0 -0
  1467. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1663520-d880bfa51ca7b798.yaml +0 -0
  1468. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1664255-f82c5c13d92fed2a.yaml +0 -0
  1469. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1665231-3df6d090d137fe4f.yaml +0 -0
  1470. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1666780-c10010e9061689d3.yaml +0 -0
  1471. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1667266-6497727abc2af9a5.yaml +0 -0
  1472. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1667294-f92efa49627eb00a.yaml +0 -0
  1473. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1667699-6dad786b128ca8b5.yaml +0 -0
  1474. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1670707-c4799fbed39ef75b.yaml +0 -0
  1475. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1672634-ef754cb5109dd0f2.yaml +0 -0
  1476. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1675489-a1d226f2ee911420.yaml +0 -0
  1477. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1677236-7de9d11c3f0fb5ed.yaml +0 -0
  1478. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1684989-3bda158a822d2f73.yaml +0 -0
  1479. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1687814-743ad8418923d5e3.yaml +0 -0
  1480. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1688194-bb008b65267a1169.yaml +0 -0
  1481. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1689233-c3f98e159c75374e.yaml +0 -0
  1482. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1696111-e2cf9233fa872eb7.yaml +0 -0
  1483. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1698390-0df8f0ec4fe354de.yaml +0 -0
  1484. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1698742-66d9d4e6c7ad274a.yaml +0 -0
  1485. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1703278-5e45a92e43552dec.yaml +0 -0
  1486. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1704097-8ff1ce1444b81b04.yaml +0 -0
  1487. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1708570-bb19e1213e887723.yaml +0 -0
  1488. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1711301-472b577f074edd43.yaml +0 -0
  1489. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1712242-934bbe2f2378f5bd.yaml +0 -0
  1490. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1714878-46806jv2yv13q054.yaml +0 -0
  1491. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1716789-abfae897b7e61246.yaml +0 -0
  1492. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1717130-029211b60f74b4c4.yaml +0 -0
  1493. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1717829-c1de1d777d3abaf9.yaml +0 -0
  1494. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1719413-0401d05c91cc9094.yaml +0 -0
  1495. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1719499-d67d80b0da0bc30a.yaml +0 -0
  1496. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1728525-2c40f0c19adbd0e8.yaml +0 -0
  1497. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1731848-71d0a5fdb1a34a8b.yaml +0 -0
  1498. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1732216-b41bfedebff911e1.yaml +0 -0
  1499. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1732938-e4d91732ef777f9a.yaml +0 -0
  1500. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1735836-9be6d777a6e6410b.yaml +0 -0
  1501. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1740232-91ad72c2ac165f35.yaml +0 -0
  1502. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1741223-7a5c5b6e7f232628.yaml +0 -0
  1503. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1742453-ae4be6de90a3ae1d.yaml +0 -0
  1504. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1745699-afa7318b9dc96696.yaml +0 -0
  1505. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1750983-420945d6c0afb509.yaml +0 -0
  1506. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1750985-a5345f715a14825c.yaml +0 -0
  1507. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1751104-compute-api-2.47-4bfa21cfaa13f408.yaml +0 -0
  1508. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1775482-7ed2a9a8765b313e.yaml +0 -0
  1509. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1777153-750e6044aa28d5d8.yaml +0 -0
  1510. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1784879-9b632174d4af853f.yaml +0 -0
  1511. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1798744-5512256baf4dc633.yaml +0 -0
  1512. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1827844-8f1de120087c6a22.yaml +0 -0
  1513. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-1946816-7665858605453578.yaml +0 -0
  1514. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-2005246-3fb70206bafc5444.yaml +0 -0
  1515. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-2005521-0274fc26bd9b3842.yaml +0 -0
  1516. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-2006635-3110f7a87a186e62.yaml +0 -0
  1517. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-2006761-9041d1b25e845cfb.yaml +0 -0
  1518. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-2007489-42e41b14e42128ce.yaml +0 -0
  1519. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-2007513-ae39456aeb93bb98.yaml +0 -0
  1520. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-2010376-e15362bdd6c8d6ec.yaml +0 -0
  1521. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-27882-402ced7ffe930058.yaml +0 -0
  1522. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/bug-volume-list-with-project-2dc867c5e8346a66.yaml +0 -0
  1523. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/change-098377fd53cce7a0.yaml +0 -0
  1524. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/check-limit-quota-cc7f291dd1b537c1.yaml +0 -0
  1525. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/cliff-2.3.0-7ead18fae9ceea80.yaml +0 -0
  1526. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/complete_image_switch-203e0b3105a54674.yaml +0 -0
  1527. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/compute-agent-deff48988e81b30e.yaml +0 -0
  1528. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/compute-service-list-forced-down-2b16d1cb44f71a08.yaml +0 -0
  1529. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/config-show-00512dc60882e5c0.yaml +0 -0
  1530. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/consistency-group-create-opts-aliases-e1c2f1498e9b1d3d.yaml +0 -0
  1531. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/credential_list_user_type-c809e5b8014d6275.yaml +0 -0
  1532. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/deprecate-volume-group-create-positional-arguments-89f6b886c0f1f2b5.yaml +0 -0
  1533. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/deprecated-quota-class-options-ba33a45caedbdf3e.yaml +0 -0
  1534. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/deprecated-server-create-file-option-80246b13bd3c1b43.yaml +0 -0
  1535. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/detailed-volume-quotas-198dc2e8f57ce1e7.yaml +0 -0
  1536. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/drop-py2-421c90fbdf18dbc2.yaml +0 -0
  1537. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/entrypoint-3.8-0597d159889042f7.yaml +0 -0
  1538. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/fix-flavor-in-server-list-microversion-2.47-af200e9bb4747e2d.yaml +0 -0
  1539. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/fix-flavor-props-formatting-d21e97745543caa7.yaml +0 -0
  1540. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/fix-image-create-from-volume-c573e553161605c4.yaml +0 -0
  1541. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/fix-network-rbac-create-d1f4de77ad2dd421.yaml +0 -0
  1542. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/fix-openstak-image-save-sdk-port-eb160e8ffc92e514.yaml +0 -0
  1543. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/fix-story-2007890-0974f3e69f26801e.yaml +0 -0
  1544. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/fix-story-2010775-953dbdf03b2b6746.yaml +0 -0
  1545. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/flavor-add-description-b618abd4a7fb6545.yaml +0 -0
  1546. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/flavor-create-with-project-19d41bfa93e3c6d0.yaml +0 -0
  1547. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/flavor-list-min-disk-min-ram-65ba35e7acc24134.yaml +0 -0
  1548. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/floating-ip-multi-port-9779e88f590cae23.yaml +0 -0
  1549. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/floating-ip-set-unset-port-28e33875937b69cf.yaml +0 -0
  1550. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/floatingip_dns_integration-f26c7575694d098d.yaml +0 -0
  1551. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/force-flag-openstackclient-c172de2717e5cfac.yaml +0 -0
  1552. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/idp-auth-ttl-6632df5db65a3bdd.yaml +0 -0
  1553. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/image-import-d5da3e5ce8733fb0.yaml +0 -0
  1554. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/image-list-filter-multiple-properties-03c51d43131ee3b6.yaml +0 -0
  1555. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/image-list-multiple-tags-a394799c7807f031.yaml +0 -0
  1556. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/image-metadef-namespace-b940206bece64f97.yaml +0 -0
  1557. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/image-set-to-update-image-membership-68221f226ca3b6e0.yaml +0 -0
  1558. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/image-stage-ac19c47e6a52ffeb.yaml +0 -0
  1559. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/image_set_visibility-babf4ff2f687d465.yaml +0 -0
  1560. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/implement-system-scope-4c3c47996f98deac.yaml +0 -0
  1561. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/implements-hide-image-4c726a61c336ebaa.yaml +0 -0
  1562. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/improved-server-output-6965b664f6abda8d.yaml +0 -0
  1563. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/ip-availability-ca1cf440f6c70afc.yaml +0 -0
  1564. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/ip-command-rework-8d3fe0858f51e6b8.yaml +0 -0
  1565. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/keypair-create-client-side-generation-73d8dd36192f70c9.yaml +0 -0
  1566. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/keypair-support-type-6f7c32aab3b61f7b.yaml +0 -0
  1567. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/keypair-user-id-db694210695a0ee0.yaml +0 -0
  1568. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/keystone-endpoint-filter-e930a7b72276fa2c.yaml +0 -0
  1569. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/keystone-endpoint-group-0c55debbb66844f2.yaml +0 -0
  1570. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/list-detailed-quota-informations-1755129e1c68a252.yaml +0 -0
  1571. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/list-subnet-by-pool-id-a642efc13d04fa08.yaml +0 -0
  1572. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/list_role_assignment_names-0db89f50259d4be2.yaml +0 -0
  1573. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/list_volume_type_access-f7d9aa6159f757ea.yaml +0 -0
  1574. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/make-snapshot-and-backup-name-optional-01971d33640ef1c8.yaml +0 -0
  1575. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-add-fixed-ip-to-sdk-3d932d77633bc765.yaml +0 -0
  1576. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-backup-commands-0becc8f18cf9737b.yaml +0 -0
  1577. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-create-server-image-to-sdk-e3d8077ffe05bb3d.yaml +0 -0
  1578. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-host-list-show-to-sdk-9b80cd9b4196ab01.yaml +0 -0
  1579. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-resource-filter-commands-2a353edb965723d1.yaml +0 -0
  1580. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-add-network-add-port-to-sdk-7d81b25f59cfbec9.yaml +0 -0
  1581. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-add-volume-to-sdk-685e036a88839651.yaml +0 -0
  1582. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-backup-to-sdk-0f170baf38e98b40.yaml +0 -0
  1583. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-events-to-sdk-6a1f5dce582df245.yaml +0 -0
  1584. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-pause-unpause-to-sdk-d74ec8536b764af6.yaml +0 -0
  1585. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-reboot-to-sdk-a49822810def4c8a.yaml +0 -0
  1586. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-restore-to-sdk-4540f26753031779.yaml +0 -0
  1587. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-shelve-unshelve-to-sdk-8fce77586aa68a51.yaml +0 -0
  1588. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-start-stop-to-sdk-55edd4e1ff5e6ac7.yaml +0 -0
  1589. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-suspend-resume-to-sdk-fd1709336607b496.yaml +0 -0
  1590. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-server-volume-list-update-to-sdk-95b1d3063e46f813.yaml +0 -0
  1591. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-service-list-delete-set-to-sdk-920cbe0d210af565.yaml +0 -0
  1592. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-volume-backend-commands-259e553e213c71b0.yaml +0 -0
  1593. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-volume-revert-to-sdk-1e399853d80ba5f8.yaml +0 -0
  1594. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/migrate-volume-summary-to-sdk-96ff58f653e0feaa.yaml +0 -0
  1595. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/modify-compute-agent-set-77ff894ef62ebbc7.yaml +0 -0
  1596. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/name-lookup-one-by-one-e0f15f4eab329b19.yaml +0 -0
  1597. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/network-add-qos-policy-a25e868e67142f90.yaml +0 -0
  1598. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/network-flavor-command-support-afe3a9da962a09bf.yaml +0 -0
  1599. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/network-ndp-proxy-cli-19afc530fc7061e2.yaml +0 -0
  1600. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/network-port-create-vnic-type-vdpa-fc02516cfb919941.yaml +0 -0
  1601. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/network-qos-rule-type-filters-47f4911a02011501.yaml +0 -0
  1602. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/network_dns_integration-5914b2c2be474a41.yaml +0 -0
  1603. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/neutron-client-flavors-81387171f67a3c82.yaml +0 -0
  1604. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/neutron_mtu-d87e53e2d76f8612.yaml +0 -0
  1605. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/no-force-limit-quota-cc7f291dd1b537c1.yaml +0 -0
  1606. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/no-project-usage-list-e88eb49aa2e96cf7.yaml +0 -0
  1607. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/nova-gaps-server-list-to-sdk-88c8bfc10a9e3032.yaml +0 -0
  1608. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/object-stdout-db76cc500948b0e8.yaml +0 -0
  1609. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/optional-volume-name-ffbefe463a598b6c.yaml +0 -0
  1610. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/options-create-router-97910a882b604652.yaml +0 -0
  1611. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/osc-included-image-signing-a7021a4dbdcf6336.yaml +0 -0
  1612. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/osc4-compute-09246008eff260cb.yaml +0 -0
  1613. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/osc4-identity-6564257c67d43106.yaml +0 -0
  1614. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/osc4-image-e922ee6f8e028648.yaml +0 -0
  1615. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/osc4-network-db2aed696d964ca6.yaml +0 -0
  1616. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/osc4-volume-470422e5a453310e.yaml +0 -0
  1617. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/pass_ssh_args-cf26a2ce26ccddaf.yaml +0 -0
  1618. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/port-device-profile-4a3bf800da21c778.yaml +0 -0
  1619. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/port-list-security-group-4af5d2e789174ff9.yaml +0 -0
  1620. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/project-cleanup-skip-resource-option-4f80db0d8cf36fdb.yaml +0 -0
  1621. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/properties-with-image-property-field.yaml-c51bf37c3106d6ff.yaml +0 -0
  1622. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/qos-min-pps-rule-bfe22cea1966c4a0.yaml +0 -0
  1623. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/quota-delete-947df66ae5341cbf.yaml +0 -0
  1624. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/quota-network-force-920913981b45ba1a.yaml +0 -0
  1625. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/quota-show-service-options-ba48d6eca8ffc4f9.yaml +0 -0
  1626. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/quota-show-usage-option-19b1f59fb5f3498f.yaml +0 -0
  1627. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/rbac-add-address-group-f9bb83238b5a7c1f.yaml +0 -0
  1628. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/rbac-add-address-scope-7f6409ab70d36306.yaml +0 -0
  1629. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/rbac-add-security-group-35370701a06ac906.yaml +0 -0
  1630. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/rbac-add-subnetpool-f1fc0e728ff61654.yaml +0 -0
  1631. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/recursive-container-delete-983361aa9c35ffed.yaml +0 -0
  1632. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/remove-deprecated-server-migrate-live-option-28ec43ee210124dc.yaml +0 -0
  1633. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/remove-ip-floating-commands-d5363f313e09249a.yaml +0 -0
  1634. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/remove-nlbaas-quota-8b38e0c91ab113cb.yaml +0 -0
  1635. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/remove-osc_password-0767ac78267ef114.yaml +0 -0
  1636. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/remove-project-purge-d372374b1a7c4641.yaml +0 -0
  1637. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/remove-unsupported-set-vlan-transparent-eeff412264ae7c09.yaml +0 -0
  1638. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/rename-server-migrate-confirm-revert-commands-84fcb937721f5c4a.yaml +0 -0
  1639. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/rename-server-volume-update-to-server-volume-set-833f1730a9bf6169.yaml +0 -0
  1640. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/rename-snapshot-commands-e0937f7143a4ef55.yaml +0 -0
  1641. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/restore-create-image-duplicates-92e06f64038b120c.yaml +0 -0
  1642. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/router-extraroute-atomic-d6d406ffb15695f2.yaml +0 -0
  1643. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/router-gateway-IP-QoS-c8ba95e180bca05f.yaml +0 -0
  1644. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/router-gateway-set-01d9c7ffe4461daf.yaml +0 -0
  1645. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/router-port-add-0afe7392c080bcb8.yaml +0 -0
  1646. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/router-remove-port-058078c93819b0f4.yaml +0 -0
  1647. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/router-subnet-469d095ae0bac884.yaml +0 -0
  1648. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/security-grp-json-fix.yaml-2af1f48a48034d64.yaml +0 -0
  1649. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-add-tag-63f9cd01dbd82d1b.yaml +0 -0
  1650. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-changes-3962541b6ebdbbd8.yaml +0 -0
  1651. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-create-server-group-a5b630f2a64de28d.yaml +0 -0
  1652. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-description-ae9618fc09544cac.yaml +0 -0
  1653. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-group-create_rule_option-9f84e52f35e7c3ba.yaml +0 -0
  1654. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-list-host-status-1f542a5bc4292a62.yaml +0 -0
  1655. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-list-restrict-images-c0b2c4de6f93df33.yaml +0 -0
  1656. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-list-selectable-fields.yaml-1d5fb4784fa6f232.yaml +0 -0
  1657. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-migration-by-uuid-59f8272f63abee5d.yaml +0 -0
  1658. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-ops-all-projects-2ce2202cdf617184.yaml +0 -0
  1659. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-rebuild-property-e8c6439b04e27c80.yaml +0 -0
  1660. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-rebuild-with-keypair-name-83c1aa20db136d91.yaml +0 -0
  1661. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/server-set-state-214b12ec2161de4d.yaml +0 -0
  1662. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/service-set-option-61772a8940ad0778.yaml +0 -0
  1663. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/show-result-for-server-add-volume-f75277ad58e31024.yaml +0 -0
  1664. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/show-server-topology-microversion-v2_78-3891fc67f767177e.yaml +0 -0
  1665. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/skip-name-lookups-9f499927173c1eee.yaml +0 -0
  1666. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/speedup-object-save-6bd59e678a31c3e8.yaml +0 -0
  1667. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/stateful-security-group-a21fa8498e866b90.yaml +0 -0
  1668. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/story-2004346-add-floating-ip-with-no-ports-399c5559e1699816.yaml +0 -0
  1669. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/story-2005349-compute-service-set-2.53-3d2db875154e633a.yaml +0 -0
  1670. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/story-2005468-server-use-config-drive-9fc68552365cfefa.yaml +0 -0
  1671. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/story-2006302-add-boot-from-volume-cd411b1ca776bb3c.yaml +0 -0
  1672. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/story-2006302-support-bdm-type-image-0becfb63bd4fb969.yaml +0 -0
  1673. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/story-2007727-69b705c561309742.yaml +0 -0
  1674. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/story-2010343-b5eb4ed593f51d3f.yaml +0 -0
  1675. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/story-2010751-server-rebuild-wait-shutoff-c84cddcd3f15e9ce.yaml +0 -0
  1676. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/subnet-service-type-8d9c414732e474a4.yaml +0 -0
  1677. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/subnet-set-bbc26ecc16929302.yaml +0 -0
  1678. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/subnet-set-segment-id-4440e433b170f9f3.yaml +0 -0
  1679. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/subnet-unset-5b458cdbaf93d766.yaml +0 -0
  1680. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/subnet-unset-gateway-20239d5910e10778.yaml +0 -0
  1681. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/support-icmp-type-code-zero-cbef0a36db2b8123.yaml +0 -0
  1682. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/support-no-property-in-volume-811e67ff4a199eb6.yaml +0 -0
  1683. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/support-no-property-in-volume-snapshot-0af3fcb31a3cfc2b.yaml +0 -0
  1684. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/support-uplink_status_propagation-4d37452bcf03e0f8.yaml +0 -0
  1685. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-aggregate-to-sdk-ced451a0f28bf6ea.yaml +0 -0
  1686. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-console-log-to-sdk-6ee92b7833364d3d.yaml +0 -0
  1687. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-flavor-to-sdk-b874a3c39559815e.yaml +0 -0
  1688. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-hypervisor-to-sdk-2e90b26a14ffcef3.yaml +0 -0
  1689. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-hypervisor-to-sdk-f6495f070b034718.yaml +0 -0
  1690. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-keypair-to-sdk-81e28380e66a7f9c.yaml +0 -0
  1691. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-server-lock-to-sdk-d5dd17e4987233a5.yaml +0 -0
  1692. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-server-migration-show-to-sdk-4adb88a0f1f03f3b.yaml +0 -0
  1693. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-server-migration-to-sdk-4e4530f787f90fd2.yaml +0 -0
  1694. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-server-remove-network-port-to-sdk-829ba711e0e198d5.yaml +0 -0
  1695. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-server-remove-volume-to-sdk-47e9befd2672dcdf.yaml +0 -0
  1696. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/switch-server-show-to-sdk-44a614aebf2c6da6.yaml +0 -0
  1697. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/task-40279-eb0d718ac1959c50.yaml +0 -0
  1698. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/unlock-volume-a6990fc3bf1f5f67.yaml +0 -0
  1699. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/unset-router-7b0cbd9518bb1de6.yaml +0 -0
  1700. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/unset-subnet-pool-333052dd85b95653.yaml +0 -0
  1701. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/usage-list-all-49ca7a62c50e71d3.yaml +0 -0
  1702. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/use_sdk_for_image-f49d2df38e7d9f81.yaml +0 -0
  1703. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/versions-show-12a2443624c83048.yaml +0 -0
  1704. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/volume-attachment-create-output-fix-56515b8fcdd260b9.yaml +0 -0
  1705. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/volume-backend-c5faae0b31556a24.yaml +0 -0
  1706. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/volume-backup-record-9f5987c45e294dc6.yaml +0 -0
  1707. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/volume-migrate-command-52cf6edd62fe17a7.yaml +0 -0
  1708. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/volume-type-extra-specs-22a22fcb6e269832.yaml +0 -0
  1709. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/volume-type-list-properties-filter-8532f96d16733915.yaml +0 -0
  1710. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/volume-v3-default-0ffa9bebb43b5057.yaml +0 -0
  1711. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/volume_snapshot_list_project-e7dcc07f98d44182.yaml +0 -0
  1712. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/notes/warn-on-disk-overcommit-087ae46f12d74693.yaml +0 -0
  1713. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/2023.1.rst +0 -0
  1714. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/2023.2.rst +0 -0
  1715. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/20_releases.rst +0 -0
  1716. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/_static/.placeholder +0 -0
  1717. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/_templates/.placeholder +0 -0
  1718. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/mitaka.rst +0 -0
  1719. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/newton.rst +0 -0
  1720. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/ocata.rst +0 -0
  1721. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/pike.rst +0 -0
  1722. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/pre_20_releases.rst +0 -0
  1723. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/queens.rst +0 -0
  1724. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/rocky.rst +0 -0
  1725. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/stein.rst +0 -0
  1726. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/train.rst +0 -0
  1727. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/unreleased.rst +0 -0
  1728. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/ussuri.rst +0 -0
  1729. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/victoria.rst +0 -0
  1730. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/wallaby.rst +0 -0
  1731. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/xena.rst +0 -0
  1732. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/releasenotes/source/yoga.rst +0 -0
  1733. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/setup.py +0 -0
  1734. {python-openstackclient-6.6.1 → python-openstackclient-7.0.0}/test-requirements.txt +0 -0
@@ -0,0 +1,13 @@
1
+ # You can configure git to automatically use this file with the following config:
2
+ # git config --global blame.ignoreRevsFile .git-blame-ignore-revs
3
+
4
+ c5b772db76c071e493a81105c7d8c0def08b2264 # trivial: Prepare for pyupgrade pre-commit hook
5
+ ed0314ac76ae58a6621077feb742efd5c14c3a62 # Blacken everything else
6
+ ac64fdb93c32972575a4523ccb23d0279ef584f5 # Blacken openstackclient.api
7
+ a3778109d0051a25901569e7bafe54915ab25f82 # Blacken openstack.common
8
+ 53476e1f73d8af172207ac7089fb85fc0221859f # Blacken openstackclient.image
9
+ c51e4ef1bc350905a04690eb019d53e68fe3d633 # Blacken openstackclient.object
10
+ af6ea07703ed1c12b86995b97a9618bfa70721ee # Blacken openstackclient.identity
11
+ 1face4f48b07fbc51824980e989687adaf453f0e # Blacken openstackclient.network
12
+ 1ca77acc9118b433c14e03bf9fd28f2b1639c430 # Blacken openstackclient.volume
13
+ 4bbf3bd3846cb3d85e243199910de82df25d35e0 # Blacken openstackclient.compute
@@ -0,0 +1,40 @@
1
+ ---
2
+ default_language_version:
3
+ # force all unspecified python hooks to run python3
4
+ python: python3
5
+ repos:
6
+ - repo: https://github.com/pre-commit/pre-commit-hooks
7
+ rev: v4.6.0
8
+ hooks:
9
+ - id: trailing-whitespace
10
+ - id: mixed-line-ending
11
+ args: ['--fix', 'lf']
12
+ exclude: '.*\.(svg)$'
13
+ - id: check-byte-order-marker
14
+ - id: check-executables-have-shebangs
15
+ - id: check-merge-conflict
16
+ - id: debug-statements
17
+ - id: check-yaml
18
+ files: .*\.(yaml|yml)$
19
+ args: ['--unsafe']
20
+ - repo: https://github.com/asottile/pyupgrade
21
+ rev: v3.15.2
22
+ hooks:
23
+ - id: pyupgrade
24
+ args: ['--py38-plus']
25
+ - repo: https://github.com/psf/black
26
+ rev: 24.4.0
27
+ hooks:
28
+ - id: black
29
+ args: ['-S', '-l', '79']
30
+ - repo: https://github.com/PyCQA/bandit
31
+ rev: 1.7.8
32
+ hooks:
33
+ - id: bandit
34
+ args: ['-x', 'tests']
35
+ - repo: https://opendev.org/openstack/hacking
36
+ rev: 6.1.0
37
+ hooks:
38
+ - id: hacking
39
+ additional_dependencies: []
40
+ exclude: '^(doc|releasenotes|tools)/.*$'
@@ -0,0 +1,570 @@
1
+ Aaron Rosen <aaronorosen@gmail.com>
2
+ Abhishek Chanda <abhishek@cloudscaling.com>
3
+ Abhishek Raut <rauta@vmware.com>
4
+ Adam Harwell <flux.adam@gmail.com>
5
+ Adam Spiers <aspiers@suse.com>
6
+ Adriano Fialho <dritec@gmail.com>
7
+ Akihiro Motoki <amotoki@gmail.com>
8
+ Akihiro Motoki <motoki@da.jp.nec.com>
9
+ Alan Bishop <abishop@redhat.com>
10
+ Alessandro Pilotti <ap@pilotti.it>
11
+ Alessio Ababilov <aababilo@yahoo-inc.com>
12
+ Alessio Ababilov <aababilov@griddynamics.com>
13
+ Alex Gaynor <alex.gaynor@gmail.com>
14
+ Alex Holden <alex@alexjonasholden.com>
15
+ Alex Katz <akatz@akatz.tlv.csb>
16
+ Alex Schultz <aschultz@mirantis.com>
17
+ Alexander Gräb <alexander.graeb@secustack.com>
18
+ Alexander Ignatov <aignatov@mirantis.com>
19
+ Alfredo Moralejo <amoralej@redhat.com>
20
+ Allain Legacy <Allain.legacy@windriver.com>
21
+ Alvaro Lopez Garcia <aloga@ifca.unican.es>
22
+ Amey Bhide <abhide@vmware.com>
23
+ Andreas Florath <Andreas.Florath@telekom.de>
24
+ Andreas Jaeger <aj@suse.com>
25
+ Andreas Jaeger <aj@suse.de>
26
+ Andrey Kurilin <akurilin@mirantis.com>
27
+ Andrey Larionov <anlarionov@gmail.com>
28
+ Anh Tran <anhtt@vn.fujitsu.com>
29
+ Anindita Das <anindita.das@intel.com>
30
+ Anita Kuno <anteaya@anteaya.info>
31
+ Ankur Gupta <ankur.gupta@intel.com>
32
+ Anne Gentle <agentle@cisco.com>
33
+ Anton Frolov <af9740@att.com>
34
+ Antonia Gaete <antoniagaete@osuosl.org>
35
+ Aradhana Singh <aradhana1.singh>
36
+ Areg Grigoryan <argrigor@cern.ch>
37
+ Ariel-Berkowicz <arielmb@bu.edu>
38
+ Artem Goncharov <Artem.goncharov@gmail.com>
39
+ Artem Goncharov <artem.goncharov@gmail.com>
40
+ ArtofBugs <oweng@osuosl.org>
41
+ Artom Lifshitz <alifshit@redhat.com>
42
+ Asha Saravanamohan <assarava@cisco.com>
43
+ Ashish Singh <ashish.singh7@tcs.com>
44
+ Atsushi SAKAI <sakaia@jp.fujitsu.com>
45
+ Badhmapriya Boopalan <Badhmapriya.Boopalan@cognizant.com>
46
+ Ben Andrews <andrewsben@gmail.com>
47
+ Bence Romsics <bence.romsics@ericsson.com>
48
+ Bence Romsics <bence.romsics@gmail.com>
49
+ Benoît Knecht <benoit.knecht@fsfe.org>
50
+ Bernard Cafarelli <bcafarel@redhat.com>
51
+ Bharat Kunwar <bharat@stackhpc.com>
52
+ Bhuvan Arumugam <bhuvan@apache.org>
53
+ Bin Zhou <zhou.bin9@zte.com.cn>
54
+ Boris Bobrov <bbobrov@mirantis.com>
55
+ Boris Pavlovic <boris@pavlovic.me>
56
+ Brad Behle <behle@us.ibm.com>
57
+ Bram Verschueren <verschueren.bram@gmail.com>
58
+ Brandon Palm <bapalm@us.ibm.com>
59
+ Brian Haley <bhaley@redhat.com>
60
+ Brian Haley <brian.haley@hpe.com>
61
+ Brian Haley <haleyb.dev@gmail.com>
62
+ Brian Rosmaita <brian.rosmaita@rackspace.com>
63
+ Brian Rosmaita <rosmaita.fossdev@gmail.com>
64
+ Brianna Poulos <Brianna.Poulos@jhuapl.edu>
65
+ Cao Xuan Hoang <hoangcx@vn.fujitsu.com>
66
+ Carl Baldwin <carl@ecbaldwin.net>
67
+ Carlos Goncalves <carlos.goncalves@neclab.eu>
68
+ Carlos Konstanski <ckonstanski@pippiandcarlos.com>
69
+ Cedric Brandily <zzelle@gmail.com>
70
+ Chaozhe.Chen <chaozhe.chen@easystack.cn>
71
+ Chen <dstbtgagt@foxmail.com>
72
+ Chen Hanxiao <chenhx@certusnet.com.cn>
73
+ Chengen Du <chengen.du@canonical.com>
74
+ Choe, Cheng-Dae <whitekid@gmail.com>
75
+ Chris Johnson <wchrisjohnson@gmail.com>
76
+ Christian Berendt <berendt@b1-systems.de>
77
+ Christian Rohmann <christian.rohmann@inovex.de>
78
+ Christian Schneemann <schneemann@b1-systems.de>
79
+ Chuck Short <chuck.short@canonical.com>
80
+ Clark Boylan <clark.boylan@gmail.com>
81
+ Colleen Murphy <colleen.murphy@suse.com>
82
+ Colleen Murphy <colleen.murphy@suse.de>
83
+ Colleen Murphy <colleen@gazlene.net>
84
+ Colleen Murphy <colleen@puppetlabs.com>
85
+ Colleen Murphy <comurphy@suse.com>
86
+ Corey Bryant <corey.bryant@canonical.com>
87
+ Cyril Roelandt <cyril.roelandt@enovance.com>
88
+ Cyril Roelandt <cyril@redhat.com>
89
+ Dag Stenstad <dag@stenstad.net>
90
+ Daisuke Fujita <fuzita.daisuke@jp.fujitsu.com>
91
+ Daniel Bengtsson <dbengt@redhat.com>
92
+ Daniel Gonzalez <daniel@gonzalez-nothnagel.de>
93
+ Daniel Speichert <Daniel_Speichert@comcast.com>
94
+ Daniel Speichert <daniel@speichert.pl>
95
+ Daniel Strong <dstrong@glyx.co.uk>
96
+ Daniel Wilson <danielcw@bu.edu>
97
+ Dao Cong Tien <tiendc@vn.fujitsu.com>
98
+ Davanum Srinivas <davanum@gmail.com>
99
+ Dave Chen <wei.d.chen@intel.com>
100
+ David Caro <me@dcaro.es>
101
+ David Moreau Simard <dms@redhat.com>
102
+ David Moreau Simard <dmsimard@iweb.com>
103
+ David Rabel <rabel@b1-systems.de>
104
+ David Rosales <darosale@us.ibm.com>
105
+ Dean Troyer <dtroyer@gmail.com>
106
+ Dina Belova <dbelova@mirantis.com>
107
+ Dirk Mueller <dirk@dmllr.de>
108
+ Diwei Zhu <zhu.diw@northeastern.edu>
109
+ Dmitrii Shcherbakov <dmitrii.shcherbakov@canonical.com>
110
+ Dmitriy Rabotyagov <drabotyagov@vexxhost.com>
111
+ Dmitriy Rabotyagov <noonedeadpunk@ya.ru>
112
+ Dmitry Tantsur <dtantsur@protonmail.com>
113
+ Dolph Mathews <dolph.mathews@gmail.com>
114
+ Dongcan Ye <hellochosen@gmail.com>
115
+ Doug Hellmann <doug.hellmann@dreamhost.com>
116
+ Doug Hellmann <doug@doughellmann.com>
117
+ Doug Wiegley <dwiegley@salesforce.com>
118
+ Dougal Matthews <dougal@redhat.com>
119
+ Douglas Mendizábal <dmendiza@redhat.com>
120
+ Dr. Jens Harbott <harbott@osism.tech>
121
+ Einst Crazy <yu.changcai@99cloud.net>
122
+ Elena Ezhova <eezhova@mirantis.com>
123
+ Elod Illes <elod.illes@est.tech>
124
+ Emilien Macchi <emilien@redhat.com>
125
+ Eric Brown <browne@vmware.com>
126
+ Eric Fried <openstack@fried.cc>
127
+ Fan Zhang <zh.f@outlook.com>
128
+ Fang Zhen <zhen.fang@easystack.cn>
129
+ Fei Long Wang <flwang@catalyst.net.nz>
130
+ Felix Yan <felixonmars@archlinux.org>
131
+ Flavio Percoco <flaper87@gmail.com>
132
+ Florent Flament <florent.flament-ext@cloudwatt.com>
133
+ Florian Streibelt <florian.streibelt@sap.com>
134
+ Frode Nordahl <frode.nordahl@canonical.com>
135
+ Gabriel Ramirez <gabrielramirez1109@gmail.com>
136
+ Gage Hugo <gagehugo@gmail.com>
137
+ Gary Kotton <gkotton@vmware.com>
138
+ Georgina Shippey <georgina.shippey@bbc.co.uk>
139
+ Ghanshyam Mann <gmann@ghanshyammann.com>
140
+ Ghe Rivero <ghe.rivero@hp.com>
141
+ Gilles Dubreuil <gilles@redhat.com>
142
+ Glenn Van de Water <glenn.van_de_water@nuagenetworks.net>
143
+ Guang Yee <guang.yee@hpe.com>
144
+ Guang Yee <guang.yee@suse.com>
145
+ Guojian Shao <guojian@unitedstack.com>
146
+ Guoqiang Ding <dingguoqiang@cloudin.cn>
147
+ Gábor Antal <antal@inf.u-szeged.hu>
148
+ Ha Van Tu <tuhv@vn.fujitsu.com>
149
+ Hang Yang <hangyang@verizonmedia.com>
150
+ Hangdong Zhang <hdzhang@fiberhome.com>
151
+ Harald Jensas <hjensas@redhat.com>
152
+ Harry Rybacki <hrybacki@redhat.com>
153
+ Harsh Mutha <hmutha31@bu.edu>
154
+ He Jie Xu <hejie.xu@intel.com>
155
+ Henry Nash <henryn@linux.vnet.ibm.com>
156
+ Hidekazu Nakamura <hid-nakamura@vf.jp.nec.com>
157
+ Hideki Saito <saito@fgrep.org>
158
+ Hieu LE <hieulq@vn.fujitsu.com>
159
+ Hironori Shiina <shiina.hironori@jp.fujitsu.com>
160
+ Hong Hui Xiao <honghui_xiao@yeah.net>
161
+ Hongbin Lu <hongbin.lu@huawei.com>
162
+ Hongbin Lu <hongbin034@gmail.com>
163
+ Honza Pokorny <honza@redhat.com>
164
+ Huan Xiong <huan.xiong@hxt-semitech.com>
165
+ Huang Cheng <huang.cheng@h3c.com>
166
+ Huanxuan Ao <huanxuan.ao@easystack.cn>
167
+ Huda Irshad <hudai@bu.edu>
168
+ Hugh Saunders <hugh@wherenow.org>
169
+ Ian Wienand <iwienand@redhat.com>
170
+ Igor Malinovskiy <u.glide@gmail.com>
171
+ Igor_Bolotin <Igor_Bolotin@symantec.com>
172
+ Igor_Bolotin <igor_bolotin@symantec.com>
173
+ Ilya Persky <ipersky@yahoo-inc.com>
174
+ Ilya Popov <ilya_p@hotmail.com>
175
+ Imtiaz Chowdhury <imtiaz.chowdhury@workday.com>
176
+ Inessa Vasilevskaya <ivasilevskaya@mirantis.com>
177
+ Iswarya_Vakati <v.iswarya@nectechnologies.in>
178
+ Ivan Kolodyazhny <e0ne@e0ne.info>
179
+ JAE YONG LEE <jaeljy135@gmail.com>
180
+ JIHOJU <jihoju96@gmail.com>
181
+ JP Parkin <jpparkin@ca.ibm.com>
182
+ Jackie Yuan <yj2311@126.com>
183
+ Jadon Naas <jadon.naas@canonical.com>
184
+ Jake Yip <jake.yip@ardc.edu.au>
185
+ Jake Yip <jake.yip@unimelb.edu.au>
186
+ James Black <jamesjordanblack604@gmail.com>
187
+ James Denton <james.denton@rackspace.com>
188
+ James E. Blair <jeblair@hp.com>
189
+ James E. Blair <jeblair@redhat.com>
190
+ Jamie Lennox <jamielennox@redhat.com>
191
+ Jan Gutter <jan.gutter@netronome.com>
192
+ Jan Hartkopf <jhartkopf@inovex.de>
193
+ Jas <singhj@us.ibm.com>
194
+ Jaspreet Singh Rawel <jaspreetsinghrawel@gmail.com>
195
+ Javier Pena <jpena@redhat.com>
196
+ Jean-Philippe Evrard <jean-philippe@evrard.me>
197
+ Jens Harbott (frickler) <j.harbott@x-ion.de>
198
+ Jens Harbott <j.harbott@x-ion.de>
199
+ Jens Rosenboom <j.rosenboom@x-ion.de>
200
+ Jeremy Houser <jh629g@att.com>
201
+ Jeremy Liu <liujiong@gohighsec.com>
202
+ Jeremy Stanley <fungi@yuggoth.org>
203
+ Jerry George <jerry@ca.ibm.com>
204
+ Jieon Lee <dlwldjs7544@naver.com>
205
+ JieonLee <dlwldjs7544@naver.com>
206
+ Jim Rollenhagen <jim@jimrollenhagen.com>
207
+ Jimmy McCrory <jimmy.mccrory@gmail.com>
208
+ JingLiu <liu.jing5@zte.com.cn>
209
+ Jipyo Hong <hongsbien@naver.com>
210
+ Jirayut Nimsaeng <wingth@gmail.com>
211
+ Jiri Podivin <jpodivin@redhat.com>
212
+ Joe Gordon <joe.gordon0@gmail.com>
213
+ Joe Wigglesworth <wiggles@ca.ibm.com>
214
+ Johannes Kulik <johannes.kulik@sap.com>
215
+ John Dennis <jdennis@redhat.com>
216
+ John Keenleyside <keenley@ca.ibm.com>
217
+ Jordan Pittier <jordan.pittier@scality.com>
218
+ Jose Castro Leon <jose.castro.leon@cern.ch>
219
+ Josephine Seifert <josephine.seifert@secustack.com>
220
+ Josh Kearney <josh.kearney@pistoncloud.com>
221
+ Joshua Harlow <harlowja@yahoo-inc.com>
222
+ Juan Antonio Osorio Robles <juan.osorio.robles@ericsson.com>
223
+ Jude Cross <jucross@blizzard.com>
224
+ Jude Job <judeopenstack@gmail.com>
225
+ Julie Pichon <jpichon@redhat.com>
226
+ Julien Danjou <julien@danjou.info>
227
+ Justin A Wilson <justin.wilson@intel.com>
228
+ KATO Tomoyuki <kato.tomoyuki@jp.fujitsu.com>
229
+ Kailun Qin <kailun.qin@intel.com>
230
+ KeithMnemonic <keith.berger@suse.com>
231
+ Kelvin Lui <kelvinlittle@yahoo.com>
232
+ Ken Thomas <krt@yahoo-inc.com>
233
+ Kendall Nelson <kennelson11@gmail.com>
234
+ Kenneth Chu <chukenne@ca.ibm.com>
235
+ Kevin_Zheng <zhengzhenyu@huawei.com>
236
+ Khomesh Thakre <khomeshthakre24@gmail.com>
237
+ Kristi Nikolla <knikolla@bu.edu>
238
+ Kyrylo Romanenko <kromanenko@mirantis.com>
239
+ LEE JAE YONG <jaeljy135@gmail.com>
240
+ LIU Yulong <i@liuyulong.me>
241
+ Lajos Katona <lajos.katona@ericsson.com>
242
+ Lance Bragstad <lbragstad@gmail.com>
243
+ Lee Yarwood <lyarwood@redhat.com>
244
+ Lewis Denny <ldenny@redhat.com>
245
+ Lin Yang <lin.a.yang@intel.com>
246
+ Lingxian Kong <anlin.kong@gmail.com>
247
+ LiuNanke <nanke.liu@easystack.cn>
248
+ Lorin Hochstein <lorin@nimbisservices.com>
249
+ Lu lei <lei.lu@easystack.cn>
250
+ Léo GEORGEL <leo.georgel@osones.com>
251
+ M V P Nitesh <m.nitesh@nectechnologies.in>
252
+ Maari Tamm <tamm.maari@gmail.com>
253
+ Madhu Mohan Nelemane <mmnelemane@suse.com>
254
+ Major Hayden <major@mhtx.net>
255
+ Maksim Malchuk <maksim.malchuk@gmail.com>
256
+ Manjeet Singh Bhatia <manjeet.s.bhatia@intel.com>
257
+ Manuel Silveyra <silveyra@us.ibm.com>
258
+ Marc Abramowitz <marc@marc-abramowitz.com>
259
+ Marco Fargetta <marco.fargetta@ct.infn.it>
260
+ Marcos Fermin Lobo <marcos.fermin.lobo@cern.ch>
261
+ Marek Aufart <maufart@redhat.com>
262
+ Marek Denis <marek.denis@cern.ch>
263
+ Mark Vanderwiel <vanderwl@us.ibm.com>
264
+ Martin Chlumsky <martin.chlumsky@gmail.com>
265
+ Martin Schuppert <mschuppert@redhat.com>
266
+ Masayoshi Mizuma <m.mizuma@jp.fujitsu.com>
267
+ Masayuki Igawa <masayuki@igawa.io>
268
+ Matt Fischer <matt@mattfischer.com>
269
+ Matt Joyce <matt.joyce@cloudscaling.com>
270
+ Matt Riedemann <mriedem.os@gmail.com>
271
+ Matt Riedemann <mriedem@us.ibm.com>
272
+ Matthew Treinish <mtreinish@kortar.org>
273
+ Matthieu Huin <mhu@enovance.com>
274
+ Michael Gugino <michael.gugino@walmart.com>
275
+ Michael Johnson <johnsomor@gmail.com>
276
+ Michael McCune <msm@redhat.com>
277
+ Miguel Lavalle <miguel.lavalle@verizonmedia.com>
278
+ Miguel Lavalle <mlavalle@redhat.com>
279
+ Mike Fedosin <mfedosin@redhat.com>
280
+ Mikhail Feoktistov <mfeoktistov@virtuozzo.com>
281
+ Min Min Ren <rminmin@cn.ibm.com>
282
+ Mohammed Naser <mnaser@vexxhost.com>
283
+ Mohan Muppidi <mkumar2301@gmail.com>
284
+ Monty Taylor <mordred@inaugust.com>
285
+ Mouad Benchchaoui <m.benchchaoui@x-ion.de>
286
+ Mridula Joshi <mrjoshi@redhat.com>
287
+ Myeongchul Chae <cocahack@naver.com>
288
+ Nakul Dahiwade <nakul.dahiwade@intel.com>
289
+ Nam Nguyen Hoai <namnh@vn.fujitsu.com>
290
+ Natal Ngétal <hobbestigrou@erakis.eu>
291
+ Nathan Kinder <nkinder@redhat.com>
292
+ Navid Pustchi <npustchi@gmail.com>
293
+ Nguyen Phuong An <AnNP@vn.fujitsu.com>
294
+ Nguyen Van Duc <ducnv@vn.fujitsu.com>
295
+ NiallBunting <niall.bunting@hp.com>
296
+ NiallBunting <niall.bunting@hpe.com>
297
+ Nicolas Belouin <nicolas.belouin@gandi.net>
298
+ Nicolas Simonds <nic@metacloud.com>
299
+ Nikita Gerasimov <nikita.gerasimov@oracle.com>
300
+ Nir Magnezi <nmagnezi@redhat.com>
301
+ Noam Angel <noama@mellanox.com>
302
+ Nobuto Murata <nobuto.murata@canonical.com>
303
+ Noorul Islam K M <noorul@noorul.com>
304
+ Nurmatov Mamatisa <nurmatov.mamatisa@huawei.com>
305
+ Oleksii Chuprykov <ochuprykov@mirantis.com>
306
+ Ondřej Nový <ondrej.novy@firma.seznam.cz>
307
+ OpenStack Release Bot <infra-root@openstack.org>
308
+ Paul Belanger <paul.belanger@polybeacon.com>
309
+ Paul Bourke <paul.bourke@oracle.com>
310
+ Pavlo Shchelokovskyy <shchelokovskyy@gmail.com>
311
+ Pedro Martins <phpm13@gmail.com>
312
+ Pedro Navarro <pednape@gmail.com>
313
+ Pete Zaitcev <zaitcev@kotori.zaitcev.us>
314
+ Petr Blaho <pblaho@redhat.com>
315
+ Pierre Hanselmann <pierre.hanselmann@gmail.com>
316
+ Pierre Prinetti <pierreprinetti@redhat.com>
317
+ Pierre Riteau <pierre@stackhpc.com>
318
+ Przemyslaw Szczerbik <przemyslaw.szczerbik@est.tech>
319
+ Qiu Yu <qiuyu@ebaysf.com>
320
+ Radoslaw Smigielski <radoslaw.smigielski@nokia.com>
321
+ Radosław Piliszek <radoslaw.piliszek@gmail.com>
322
+ Radu Mateescu <mateescu@ca.ibm.com>
323
+ Rafael Weingärtner <rafael@apache.org>
324
+ Rajasi Kulkarni <rajasikulkarni18@gmail.com>
325
+ Rajat Dhasmana <rajatdhasmana@gmail.com>
326
+ Rajesh Tailor <ratailor@redhat.com>
327
+ Ramaraja <ramaraja.r@hcl.com>
328
+ Ramaraja Ramachandran <ramaraja.r@hcl.com>
329
+ Reedip <reedip.banerjee@nectechnologies.in>
330
+ Reedip <reedip14@gmail.com>
331
+ René Ribaud <rribaud@redhat.com>
332
+ Richard Theis <rtheis@us.ibm.com>
333
+ Rikimaru Honjo <honjo.rikimaru@po.ntts.co.jp>
334
+ Ritvik Vinodkumar <vinodkumar.r@northeastern.edu>
335
+ Robert Francis <robefran@ca.ibm.com>
336
+ Robin Cernin <rcernin@redhat.com>
337
+ Rodolfo Alonso Hernandez <ralonsoh@redhat.com>
338
+ Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
339
+ Rodrigo Duarte <rodrigods@lsd.ufcg.edu.br>
340
+ Rodrigo Duarte Sousa <rduartes@redhat.com>
341
+ Rodrigo Duarte Sousa <rodrigods@lsd.ufcg.edu.br>
342
+ Roger Luethi <rl@patchworkscience.org>
343
+ Roxana Gherle <roxana.gherle@hp.com>
344
+ Ruby Loo <rloo@oath.com>
345
+ Rudolf Vriend <rudolf.vriend@sap.com>
346
+ Rui Chen <chenrui.momo@gmail.com>
347
+ Rui Yuan Dou <rydou@fiberhome.com>
348
+ Rushi Agrawal <rushi.agr@gmail.com>
349
+ Ryan Selden <ryanx.seldon@intel.com>
350
+ SaiKiran <saikiranveeravarapu@gmail.com>
351
+ Sam Morrison <sorrison@gmail.com>
352
+ SamYaple <sam@yaple.net>
353
+ Sami MAKKI <mail@samimakki.fr>
354
+ Samuel Pilla <sp516w@att.com>
355
+ Samuel de Medeiros Queiroz <samuel@lsd.ufcg.edu.br>
356
+ Samuel de Medeiros Queiroz <samueldmq@gmail.com>
357
+ Sascha Peilicke <saschpe@gmx.de>
358
+ Sascha Peilicke <speilicke@suse.com>
359
+ Sean Dague <sean@dague.net>
360
+ Sean McGinnis <sean.mcginnis@gmail.com>
361
+ Sean Mooney <work@seanmooney.info>
362
+ Sean Perry <sean.perry@hp.com>
363
+ Sean Perry <sean.perry@hpe.com>
364
+ Shane Wang <shane.wang@intel.com>
365
+ Shashank Kumar Shankar <shashank.kumar.shankar@intel.com>
366
+ Sheel Rana <ranasheel2000@gmail.com>
367
+ Shogo Saito <shogo.saito.ac@hco.ntt.co.jp>
368
+ ShogoAdachi <sho-adachi@xc.jp.nec.com>
369
+ Shu Yingya <yingya.shu@easystack.cn>
370
+ Simon Merrick <simonmerrick@catalyst.net.nz>
371
+ Sindhu Devale <sindhu.devale@intel.com>
372
+ Sirushti Murugesan <sirushti.murugesan@hp.com>
373
+ Slawek Kaplonski <skaplons@redhat.com>
374
+ Snow Kim <lilac94.kim@gmail.com>
375
+ SongmingYan <yan.songming@zte.com.cn>
376
+ Stephen Finucane <sfinucan@redhat.com>
377
+ Stephen Finucane <stephen.finucane@intel.com>
378
+ Stephen Finucane <stephen@that.guru>
379
+ Stephen Finucane <stephenfin@redhat.com>
380
+ Steve Martinelli <s.martinelli@gmail.com>
381
+ Steve Martinelli <stevemar@ca.ibm.com>
382
+ Steven Hardy <shardy@redhat.com>
383
+ Stuart McLaren <stuart.mclaren@hp.com>
384
+ Surya Seetharaman <suryaseetharaman.9@gmail.com>
385
+ Sven Wegener <sven.wegener@inovex.de>
386
+ Swapnil Kulkarni (coolsvap) <me@coolsvap.net>
387
+ Sławek Kapłoński <slawek@kaplonski.pl>
388
+ Takashi Kajinami <kajinamit@oss.nttdata.com>
389
+ Takashi Kajinami <tkajinam@redhat.com>
390
+ Takashi Natsume <takanattie@gmail.com>
391
+ Tang Chen <chen.tang@easystack.cn>
392
+ Tang Chen <tangchen@cn.fujitsu.com>
393
+ Telles Nobrega <tenobreg@redhat.com>
394
+ Terry Howe <terrylhowe@gmail.com>
395
+ Terry Howe <thowe@hp.com>
396
+ TerryHowe <terrylhowe@gmail.com>
397
+ Thobias Salazar Trevisan <thobiast@gmail.com>
398
+ Thomas Goirand <zigo@debian.org>
399
+ Thrivikram Mudunuri <mthrivikram+opendev@gmail.com>
400
+ Tim Bishop <tim@bishnet.net>
401
+ Tim Burke <tim.burke@gmail.com>
402
+ Tom Cocozzello <tjcocozz@us.ibm.com>
403
+ Tom Jose Kalapura <tomjosekal@gmail.com>
404
+ Tom Stappaerts <tom.stappaerts@nuagenetworks.net>
405
+ Tony Breeds <tony@bakeyournoodle.com>
406
+ Tovin Seven <vinhnt@vn.fujitsu.com>
407
+ Travis Tripp <travis.tripp@hpe.com>
408
+ Trevor McCasland <TM2086@att.com>
409
+ Tuan Do Anh <tuanda@vn.fujitsu.com>
410
+ Tytus Kurek <tytus.kurek@canonical.com>
411
+ Ukesh Kumar Vasudevan <ukeshkumar@gmail.com>
412
+ Valery Tschopp <valery.tschopp@switch.ch>
413
+ Vasyl Saienko <vsaienko@mirantis.com>
414
+ Victor Silva <victsou@gmail.com>
415
+ Vijendra Soni <vijendra.soni@cognizant.com>
416
+ Vincent Legoll <vincent.legoll@idgrilles.fr>
417
+ Violet Kurtz <vi.kurtz@protonmail.com>
418
+ Violet Kurtz <vikurtz@osuosl.org>
419
+ Vishakha Agarwal <agarwalvishakha18@gmail.com>
420
+ Vladimir Eremin <yottatsa@yandex-team.ru>
421
+ Vu Cong Tuan <tuanvc@vn.fujitsu.com>
422
+ Wenran Xiao <xiaowenran@unitedstack.com>
423
+ Wenzhi Yu <wenzhi_yu@163.com>
424
+ Witold Bedyk <witold.bedyk@est.fujitsu.com>
425
+ Xi Yang <yang.xi@99cloud.net>
426
+ Xiaoyang Zhang <xiaoyang.zhang@easystack.cn>
427
+ YAMAMOTO Takashi <yamamoto@midokura.com>
428
+ Yan Xing'an <yanxingan@cmss.chinamobile.com>
429
+ Yang Hongyang <hongyang.yang@easystack.cn>
430
+ Yang JianFeng <yjf1970231893@gmail.com>
431
+ Yang Youseok <ileixe@gmail.com>
432
+ Yejia Xu <yejia@unitedstack.com>
433
+ Yi Zhao <zhaoyi@cmss.chinamobile.com>
434
+ Yongli He <yongli.he@intel.com>
435
+ YoonSoo LIM <msdbtjd123@naver.com>
436
+ Yoonsoo Lim <msdbtjd123@naver.com>
437
+ Youngjun <yj.yoo@okestro.com>
438
+ YuehuiLei <leiyuehui@inspur.com>
439
+ Yunpeng Li <yunpeng.li@live.cn>
440
+ Zane Bitter <zbitter@redhat.com>
441
+ ZhaoBo <zhaobo6@huawei.com>
442
+ Zhaokun Fu <fuzk@inspur.com>
443
+ Zhenguo Niu <Niu.ZGlinux@gmail.com>
444
+ ZhongShengping <chdzsp@163.com>
445
+ Zhou Zhihong <zhouzhihong@cmss.chinamobile.com>
446
+ adrian-turjak <adriant@catalyst.net.nz>
447
+ asarfaty <asarfaty@vmware.com>
448
+ blue55 <yllan@fiberhome.com>
449
+ caoyuan <cao.yuan@99cloud.net>
450
+ chengkunye <chengkun@unitedstack.com>
451
+ chenxing <chason.chan@foxmail.com>
452
+ chenying <ying.chen@huawei.com>
453
+ choidoa-git <pearl097@naver.com>
454
+ cw0306-lee <us0310306@gmail.com>
455
+ daizhiyong <zhiyong.dai@easystack.cn>
456
+ devMuscle <hongsbien@naver.com>
457
+ dongwenshuai <dong.wenshuai@zte.com.cn>
458
+ elajkat <lajos.katona@est.tech>
459
+ gecong1973 <ge.cong@zte.com.cn>
460
+ gengchc2 <geng.changcai2@zte.com.cn>
461
+ gtema <artem.goncharov@gmail.com>
462
+ guang-yee <guang.yee@hpe.com>
463
+ guangpei.liu <guangpei.liu@easystack.cn>
464
+ guiyanxing <guiyanxing@cmss.chinamobile.com>
465
+ gvrangan <venkatrangang@hcl.com>
466
+ hackertron <jayadityagupta11@gmail.com>
467
+ heesom <heesom.hs@gmail.com>
468
+ heha <zhanghanqun@unitedstack.com>
469
+ henriquetruta <henrique@lsd.ufcg.edu.br>
470
+ hoosa <janghoosa@gmail.com>
471
+ huangshan <huangshan@fiberhome.com>
472
+ huangtianhua <huangtianhua@huawei.com>
473
+ jay <jayadityagupta11@gmail.com>
474
+ jeckxie <xiexiaozhe@inspur.com>
475
+ ji-xuepeng <ji.xuepeng@zte.com.cn>
476
+ jiahui.qiang <jiahui.qiang@easystack.cn>
477
+ jiangpch <jiangpengcheng@navercorp.com>
478
+ jiaxi <jiaxi@unitedstack.com>
479
+ jichenjc <jichenjc@cn.ibm.com>
480
+ jqjiang.1@gmail.com <jqjiang.1@gmail.com>
481
+ judy-yu <yujie@cmss.chinamobile.com>
482
+ kafka <guowang@unitedstack.com>
483
+ licanwei <li.canwei2@zte.com.cn>
484
+ lihaijing <lihaijing@fiberhome.com>
485
+ likui <likui@yovole.com>
486
+ lin-hua-cheng <os.lcheng@gmail.com>
487
+ lingyongxu <lyxu@fiberhome.com>
488
+ liujunpeng <liujunpeng@inspur.com>
489
+ liusheng <liusheng@huawei.com>
490
+ liuyamin <liuyamin@fiberhome.com>
491
+ liyifeng <307419146@qq.com>
492
+ liyingjun <liyingjun1988@gmail.com>
493
+ lrqrun <lrqrun@gmail.com>
494
+ lsmman <lsmman07@gmail.com>
495
+ lvjiawei <lvjiawei@cmss.chinamobile.com>
496
+ lvxianguo <lvxianguo@inspur.com>
497
+ maaoyu <maaoyu@inspur.com>
498
+ matbu <mat.bultel@gmail.com>
499
+ mb711d <mb711d@att.com>
500
+ melanie witt <melwittt@gmail.com>
501
+ melissaml <ma.lei@99cloud.net>
502
+ mpicea <jjh77745997@gmail.com>
503
+ nidhimittalhada <nidhimittal19@gmail.com>
504
+ niuke <niuke19970315@163.com>
505
+ npraveen35 <npraveen35@gmail.com>
506
+ okozachenko <okozachenko@vexxhost.com>
507
+ pedh <hcn518@gmail.com>
508
+ pedro <phpm13@gmail.com>
509
+ pengyuesheng <pengyuesheng@gohighsec.com>
510
+ phil-hopkins-a <phil.hopkins@rackspace.com>
511
+ qinchunhua <qin.chunhua@zte.com.cn>
512
+ qingszhao <zhao.daqing@99cloud.net>
513
+ qtang <qtang@vmware.com>
514
+ rabi <ramishra@redhat.com>
515
+ reedip <reedip.banerjee@nectechnologies.in>
516
+ rladntjr4 <rladntjr4@gmail.com>
517
+ root <ranasheel2000@gmail.com>
518
+ ryanKor <equus3144@gmail.com>
519
+ sharat.sharma <sharat.sharma@nectechnologies.in>
520
+ shizhihui <zhihui.shi@easystack.cn>
521
+ songminglong <songminglong@cmss.chinamobile.com>
522
+ songwenping <songwenping@inspur.com>
523
+ sonu.kumar <sonu.kumar@nectechnologies.in>
524
+ sujin01 <a5870771@gmail.com>
525
+ suneethravi <ravi.sun@northeastern.edu>
526
+ sunjia <sunjia@inspur.com>
527
+ sunyajing <yajing.sun@easystack.cn>
528
+ tanlin <lin.tan@intel.com>
529
+ tengqm <tengqim@cn.ibm.com>
530
+ tianhui <tianhui@awcloud.com>
531
+ timothy-symanczyk <timothy_symanczyk@symantec.com>
532
+ ting wang <bx_wang@outlook.com>
533
+ ting.wang <ting.wang@easystack.cn>
534
+ venkata anil <anilvenkata@redhat.com>
535
+ venkatamahesh <venkatamaheshkotha@gmail.com>
536
+ wanghong <w.wanghong@huawei.com>
537
+ wangxiyuan <wangxiyuan@huawei.com>
538
+ wangzihao <wangzihao@yovole.com>
539
+ whoami-rajat <rajatdhasmana@gmail.com>
540
+ wingwj <wingwj@gmail.com>
541
+ wu.chunyang <wu.chunyang@99cloud.net>
542
+ wu.chunyang <wuchunyang@yovole.com>
543
+ wu.shiming <wushiming@yovole.com>
544
+ wuyuting <wytdahu@gmail.com>
545
+ xiexs <xiexs@cn.fujitsu.com>
546
+ yaeeee <rim0399@naver.com>
547
+ yang wang <wangy@rc.inesa.com>
548
+ yangweiwei <yangweiwei@cmss.chinamobile.com>
549
+ yangxi <yang.xi@99cloud.net>
550
+ yanpuqing <yanpq@awcloud.com>
551
+ ycx <yanpq@awcloud.com>
552
+ yfzhao <dsware@126.com>
553
+ youngho choi <0505zxc@gmail.com>
554
+ yushangbin <yushb@gohighsec.com>
555
+ zeze <thwjd2717@gmail.com>
556
+ zhang.lei <zhang.lei@99cloud.net>
557
+ zhang.xiuhua <zhang.xiuhua@99cloud.net>
558
+ zhangbailin <zhangbailin@inspur.com>
559
+ zhangboye <zhangboye@inspur.com>
560
+ zhanghongtao <zhanghongtao0826@126.com>
561
+ zheng yin <yin.zheng@easystack.cn>
562
+ zhengsenyan <zhengsy_sean@126.com>
563
+ zhiyong.dai <zhiyong.dai@easystack.cn>
564
+ zhiyuan_cai <luckyvega.g@gmail.com>
565
+ zhouhenglc <zhouhenglc@inspur.com>
566
+ zhouqi <qi.zhou@easystack.cn>
567
+ zhu.boxiang <zhu.boxiang@99cloud.net>
568
+ zhufl <zhu.fanglei@zte.com.cn>
569
+ zhurong <aaronzhu1121@gmail.com>
570
+ Édouard Thuleau <ethuleau@juniper.net>