python-openstackclient 7.4.0__py3-none-any.whl → 8.1.0__py3-none-any.whl

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 (264) hide show
  1. openstackclient/common/availability_zone.py +3 -6
  2. openstackclient/common/clientmanager.py +2 -1
  3. openstackclient/common/envvars.py +57 -0
  4. openstackclient/common/extension.py +3 -11
  5. openstackclient/common/limits.py +1 -1
  6. openstackclient/common/project_cleanup.py +3 -2
  7. openstackclient/common/quota.py +54 -28
  8. openstackclient/compute/client.py +7 -5
  9. openstackclient/compute/v2/agent.py +5 -5
  10. openstackclient/compute/v2/aggregate.py +17 -15
  11. openstackclient/compute/v2/console.py +10 -4
  12. openstackclient/compute/v2/console_connection.py +48 -0
  13. openstackclient/compute/v2/flavor.py +14 -18
  14. openstackclient/compute/v2/host.py +3 -3
  15. openstackclient/compute/v2/hypervisor.py +10 -4
  16. openstackclient/compute/v2/hypervisor_stats.py +1 -1
  17. openstackclient/compute/v2/keypair.py +18 -13
  18. openstackclient/compute/v2/server.py +144 -121
  19. openstackclient/compute/v2/server_backup.py +1 -1
  20. openstackclient/compute/v2/server_event.py +8 -17
  21. openstackclient/compute/v2/server_group.py +6 -6
  22. openstackclient/compute/v2/server_image.py +1 -1
  23. openstackclient/compute/v2/server_migration.py +6 -6
  24. openstackclient/compute/v2/server_volume.py +4 -4
  25. openstackclient/compute/v2/service.py +9 -13
  26. openstackclient/compute/v2/usage.py +4 -6
  27. openstackclient/identity/client.py +2 -4
  28. openstackclient/identity/common.py +95 -17
  29. openstackclient/identity/v2_0/ec2creds.py +4 -3
  30. openstackclient/identity/v2_0/endpoint.py +12 -10
  31. openstackclient/identity/v2_0/project.py +6 -6
  32. openstackclient/identity/v2_0/role.py +1 -1
  33. openstackclient/identity/v2_0/service.py +7 -7
  34. openstackclient/identity/v2_0/user.py +6 -21
  35. openstackclient/identity/v3/access_rule.py +2 -5
  36. openstackclient/identity/v3/application_credential.py +2 -2
  37. openstackclient/identity/v3/consumer.py +4 -3
  38. openstackclient/identity/v3/credential.py +6 -7
  39. openstackclient/identity/v3/domain.py +63 -44
  40. openstackclient/identity/v3/ec2creds.py +4 -3
  41. openstackclient/identity/v3/endpoint.py +104 -88
  42. openstackclient/identity/v3/endpoint_group.py +1 -1
  43. openstackclient/identity/v3/group.py +116 -72
  44. openstackclient/identity/v3/identity_provider.py +1 -2
  45. openstackclient/identity/v3/limit.py +4 -9
  46. openstackclient/identity/v3/mapping.py +4 -3
  47. openstackclient/identity/v3/policy.py +5 -8
  48. openstackclient/identity/v3/project.py +23 -6
  49. openstackclient/identity/v3/region.py +2 -5
  50. openstackclient/identity/v3/registered_limit.py +4 -8
  51. openstackclient/identity/v3/role.py +15 -16
  52. openstackclient/identity/v3/service.py +8 -8
  53. openstackclient/identity/v3/service_provider.py +3 -6
  54. openstackclient/identity/v3/tag.py +2 -2
  55. openstackclient/identity/v3/token.py +1 -2
  56. openstackclient/identity/v3/trust.py +74 -25
  57. openstackclient/identity/v3/user.py +47 -11
  58. openstackclient/image/client.py +7 -5
  59. openstackclient/image/v1/image.py +11 -15
  60. openstackclient/image/v2/cache.py +2 -4
  61. openstackclient/image/v2/image.py +41 -48
  62. openstackclient/image/v2/metadef_namespaces.py +4 -3
  63. openstackclient/image/v2/metadef_resource_type_association.py +1 -2
  64. openstackclient/image/v2/metadef_resource_types.py +1 -2
  65. openstackclient/locale/tr_TR/LC_MESSAGES/openstackclient.po +9 -1370
  66. openstackclient/network/client.py +4 -16
  67. openstackclient/network/common.py +16 -12
  68. openstackclient/network/utils.py +3 -3
  69. openstackclient/network/v2/address_group.py +5 -9
  70. openstackclient/network/v2/address_scope.py +2 -3
  71. openstackclient/network/v2/default_security_group_rule.py +1 -2
  72. openstackclient/network/v2/floating_ip.py +69 -47
  73. openstackclient/network/v2/floating_ip_port_forwarding.py +7 -7
  74. openstackclient/network/v2/ip_availability.py +1 -2
  75. openstackclient/network/v2/l3_conntrack_helper.py +8 -12
  76. openstackclient/network/v2/local_ip.py +24 -26
  77. openstackclient/network/v2/local_ip_association.py +4 -5
  78. openstackclient/network/v2/ndp_proxy.py +9 -10
  79. openstackclient/network/v2/network.py +12 -16
  80. openstackclient/network/v2/network_agent.py +29 -37
  81. openstackclient/network/v2/network_auto_allocated_topology.py +4 -5
  82. openstackclient/network/v2/network_flavor.py +1 -1
  83. openstackclient/network/v2/network_flavor_profile.py +5 -5
  84. openstackclient/network/v2/network_meter.py +3 -3
  85. openstackclient/network/v2/network_meter_rule.py +5 -8
  86. openstackclient/network/v2/network_qos_policy.py +4 -4
  87. openstackclient/network/v2/network_qos_rule.py +7 -16
  88. openstackclient/network/v2/network_rbac.py +4 -4
  89. openstackclient/network/v2/network_segment.py +6 -7
  90. openstackclient/network/v2/network_segment_range.py +16 -20
  91. openstackclient/network/v2/network_trunk.py +24 -16
  92. openstackclient/network/v2/port.py +28 -29
  93. openstackclient/network/v2/router.py +53 -42
  94. openstackclient/network/v2/security_group.py +13 -19
  95. openstackclient/network/v2/security_group_rule.py +10 -11
  96. openstackclient/network/v2/subnet.py +31 -30
  97. openstackclient/network/v2/subnet_pool.py +4 -4
  98. openstackclient/object/client.py +2 -3
  99. openstackclient/object/v1/container.py +2 -3
  100. openstackclient/object/v1/object.py +2 -9
  101. openstackclient/shell.py +22 -5
  102. openstackclient/tests/functional/base.py +7 -3
  103. openstackclient/tests/functional/common/test_quota.py +3 -1
  104. openstackclient/tests/functional/compute/v2/common.py +12 -6
  105. openstackclient/tests/functional/compute/v2/test_keypair.py +41 -5
  106. openstackclient/tests/functional/compute/v2/test_server.py +2 -3
  107. openstackclient/tests/functional/compute/v2/test_server_event.py +1 -1
  108. openstackclient/tests/functional/identity/v2/test_user.py +1 -1
  109. openstackclient/tests/functional/identity/v3/common.py +3 -8
  110. openstackclient/tests/functional/identity/v3/test_application_credential.py +10 -10
  111. openstackclient/tests/functional/identity/v3/test_endpoint.py +3 -3
  112. openstackclient/tests/functional/identity/v3/test_group.py +3 -3
  113. openstackclient/tests/functional/identity/v3/test_idp.py +3 -7
  114. openstackclient/tests/functional/identity/v3/test_limit.py +4 -4
  115. openstackclient/tests/functional/identity/v3/test_project.py +5 -14
  116. openstackclient/tests/functional/identity/v3/test_region.py +1 -3
  117. openstackclient/tests/functional/identity/v3/test_registered_limit.py +3 -3
  118. openstackclient/tests/functional/identity/v3/test_role.py +1 -1
  119. openstackclient/tests/functional/identity/v3/test_role_assignment.py +13 -31
  120. openstackclient/tests/functional/identity/v3/test_service_provider.py +3 -7
  121. openstackclient/tests/functional/identity/v3/test_user.py +8 -8
  122. openstackclient/tests/functional/network/v2/common.py +7 -3
  123. openstackclient/tests/functional/network/v2/test_address_group.py +4 -0
  124. openstackclient/tests/functional/network/v2/test_l3_conntrack_helper.py +15 -11
  125. openstackclient/tests/functional/network/v2/test_local_ip.py +4 -0
  126. openstackclient/tests/functional/network/v2/test_network_meter_rule.py +2 -2
  127. openstackclient/tests/functional/network/v2/test_network_ndp_proxy.py +2 -3
  128. openstackclient/tests/functional/network/v2/test_network_rbac.py +2 -2
  129. openstackclient/tests/functional/network/v2/test_network_trunk.py +1 -1
  130. openstackclient/tests/functional/network/v2/test_port.py +17 -7
  131. openstackclient/tests/functional/network/v2/test_router.py +42 -0
  132. openstackclient/tests/functional/network/v2/test_subnet_pool.py +4 -0
  133. openstackclient/tests/unit/api/test_compute_v2.py +67 -87
  134. openstackclient/tests/unit/common/test_availability_zone.py +6 -14
  135. openstackclient/tests/unit/common/test_command.py +1 -1
  136. openstackclient/tests/unit/common/test_extension.py +5 -7
  137. openstackclient/tests/unit/common/test_limits.py +1 -1
  138. openstackclient/tests/unit/common/test_project_cleanup.py +5 -6
  139. openstackclient/tests/unit/common/test_quota.py +51 -28
  140. openstackclient/tests/unit/compute/v2/fakes.py +85 -315
  141. openstackclient/tests/unit/compute/v2/test_agent.py +16 -16
  142. openstackclient/tests/unit/compute/v2/test_aggregate.py +56 -60
  143. openstackclient/tests/unit/compute/v2/test_console.py +34 -17
  144. openstackclient/tests/unit/compute/v2/test_console_connection.py +72 -0
  145. openstackclient/tests/unit/compute/v2/test_flavor.py +72 -72
  146. openstackclient/tests/unit/compute/v2/test_host.py +8 -8
  147. openstackclient/tests/unit/compute/v2/test_hypervisor.py +22 -30
  148. openstackclient/tests/unit/compute/v2/test_hypervisor_stats.py +2 -2
  149. openstackclient/tests/unit/compute/v2/test_keypair.py +36 -29
  150. openstackclient/tests/unit/compute/v2/test_server.py +693 -606
  151. openstackclient/tests/unit/compute/v2/test_server_backup.py +36 -77
  152. openstackclient/tests/unit/compute/v2/test_server_event.py +18 -20
  153. openstackclient/tests/unit/compute/v2/test_server_group.py +25 -31
  154. openstackclient/tests/unit/compute/v2/test_server_image.py +37 -78
  155. openstackclient/tests/unit/compute/v2/test_server_migration.py +41 -41
  156. openstackclient/tests/unit/compute/v2/test_server_volume.py +12 -12
  157. openstackclient/tests/unit/compute/v2/test_service.py +39 -45
  158. openstackclient/tests/unit/compute/v2/test_usage.py +5 -5
  159. openstackclient/tests/unit/identity/v2_0/fakes.py +1 -1
  160. openstackclient/tests/unit/identity/v3/test_access_rule.py +1 -3
  161. openstackclient/tests/unit/identity/v3/test_application_credential.py +48 -26
  162. openstackclient/tests/unit/identity/v3/test_domain.py +115 -105
  163. openstackclient/tests/unit/identity/v3/test_endpoint.py +167 -172
  164. openstackclient/tests/unit/identity/v3/test_group.py +353 -202
  165. openstackclient/tests/unit/identity/v3/test_mappings.py +2 -2
  166. openstackclient/tests/unit/identity/v3/test_project.py +16 -0
  167. openstackclient/tests/unit/identity/v3/test_trust.py +5 -2
  168. openstackclient/tests/unit/identity/v3/test_user.py +102 -6
  169. openstackclient/tests/unit/image/v1/fakes.py +2 -2
  170. openstackclient/tests/unit/image/v1/test_image.py +8 -9
  171. openstackclient/tests/unit/image/v2/test_image.py +84 -46
  172. openstackclient/tests/unit/integ/cli/test_shell.py +1 -2
  173. openstackclient/tests/unit/network/test_common.py +2 -2
  174. openstackclient/tests/unit/network/v2/fakes.py +405 -485
  175. openstackclient/tests/unit/network/v2/test_floating_ip_compute.py +8 -14
  176. openstackclient/tests/unit/network/v2/test_floating_ip_network.py +62 -54
  177. openstackclient/tests/unit/network/v2/test_floating_ip_pool_compute.py +1 -1
  178. openstackclient/tests/unit/network/v2/test_l3_conntrack_helper.py +2 -2
  179. openstackclient/tests/unit/network/v2/test_ndp_proxy.py +1 -3
  180. openstackclient/tests/unit/network/v2/test_network.py +4 -4
  181. openstackclient/tests/unit/network/v2/test_network_agent.py +15 -29
  182. openstackclient/tests/unit/network/v2/test_network_compute.py +11 -11
  183. openstackclient/tests/unit/network/v2/test_network_qos_policy.py +16 -19
  184. openstackclient/tests/unit/network/v2/test_network_qos_rule.py +79 -152
  185. openstackclient/tests/unit/network/v2/test_network_qos_rule_type.py +4 -6
  186. openstackclient/tests/unit/network/v2/test_network_rbac.py +2 -2
  187. openstackclient/tests/unit/network/v2/test_network_trunk.py +2 -2
  188. openstackclient/tests/unit/network/v2/test_port.py +21 -22
  189. openstackclient/tests/unit/network/v2/test_router.py +130 -51
  190. openstackclient/tests/unit/network/v2/test_security_group_compute.py +11 -19
  191. openstackclient/tests/unit/network/v2/test_security_group_network.py +25 -27
  192. openstackclient/tests/unit/network/v2/test_security_group_rule_compute.py +15 -17
  193. openstackclient/tests/unit/network/v2/test_security_group_rule_network.py +33 -39
  194. openstackclient/tests/unit/object/v1/test_object_all.py +4 -3
  195. openstackclient/tests/unit/test_shell.py +16 -13
  196. openstackclient/tests/unit/volume/v2/fakes.py +1 -2
  197. openstackclient/tests/unit/volume/v2/test_service.py +57 -91
  198. openstackclient/tests/unit/volume/v2/test_volume.py +109 -106
  199. openstackclient/tests/unit/volume/v2/test_volume_backup.py +141 -148
  200. openstackclient/tests/unit/volume/v2/test_volume_snapshot.py +293 -283
  201. openstackclient/tests/unit/volume/v2/test_volume_transfer_request.py +1 -1
  202. openstackclient/tests/unit/volume/v3/fakes.py +2 -8
  203. openstackclient/tests/unit/volume/v3/test_block_storage_log_level.py +61 -71
  204. openstackclient/tests/unit/volume/v3/test_service.py +221 -141
  205. openstackclient/tests/unit/volume/v3/test_volume.py +131 -120
  206. openstackclient/tests/unit/volume/v3/test_volume_attachment.py +4 -4
  207. openstackclient/tests/unit/volume/v3/test_volume_backup.py +198 -203
  208. openstackclient/tests/unit/volume/v3/test_volume_snapshot.py +683 -49
  209. openstackclient/tests/unit/volume/v3/test_volume_transfer_request.py +1 -1
  210. openstackclient/volume/client.py +1 -3
  211. openstackclient/volume/v2/consistency_group.py +4 -8
  212. openstackclient/volume/v2/consistency_group_snapshot.py +1 -2
  213. openstackclient/volume/v2/qos_specs.py +1 -2
  214. openstackclient/volume/v2/service.py +41 -38
  215. openstackclient/volume/v2/volume.py +71 -53
  216. openstackclient/volume/v2/volume_backup.py +15 -10
  217. openstackclient/volume/v2/volume_snapshot.py +129 -93
  218. openstackclient/volume/v2/volume_transfer_request.py +0 -3
  219. openstackclient/volume/v2/volume_type.py +10 -21
  220. openstackclient/volume/v3/block_storage_cluster.py +3 -3
  221. openstackclient/volume/v3/block_storage_log_level.py +22 -28
  222. openstackclient/volume/v3/block_storage_manage.py +1 -3
  223. openstackclient/volume/v3/service.py +105 -14
  224. openstackclient/volume/v3/volume.py +218 -58
  225. openstackclient/volume/v3/volume_attachment.py +3 -2
  226. openstackclient/volume/v3/volume_backup.py +31 -27
  227. openstackclient/volume/v3/volume_group.py +2 -1
  228. openstackclient/volume/v3/volume_group_snapshot.py +2 -1
  229. openstackclient/volume/v3/volume_snapshot.py +489 -13
  230. openstackclient/volume/v3/volume_type.py +10 -21
  231. {python_openstackclient-7.4.0.dist-info → python_openstackclient-8.1.0.dist-info}/AUTHORS +11 -0
  232. python_openstackclient-8.1.0.dist-info/METADATA +264 -0
  233. {python_openstackclient-7.4.0.dist-info → python_openstackclient-8.1.0.dist-info}/RECORD +238 -259
  234. {python_openstackclient-7.4.0.dist-info → python_openstackclient-8.1.0.dist-info}/WHEEL +1 -1
  235. {python_openstackclient-7.4.0.dist-info → python_openstackclient-8.1.0.dist-info}/entry_points.txt +7 -47
  236. python_openstackclient-8.1.0.dist-info/pbr.json +1 -0
  237. openstackclient/tests/functional/volume/v1/__init__.py +0 -0
  238. openstackclient/tests/functional/volume/v1/common.py +0 -35
  239. openstackclient/tests/functional/volume/v1/test_qos.py +0 -100
  240. openstackclient/tests/functional/volume/v1/test_service.py +0 -76
  241. openstackclient/tests/functional/volume/v1/test_snapshot.py +0 -232
  242. openstackclient/tests/functional/volume/v1/test_transfer_request.py +0 -111
  243. openstackclient/tests/functional/volume/v1/test_volume.py +0 -228
  244. openstackclient/tests/functional/volume/v1/test_volume_type.py +0 -213
  245. openstackclient/tests/unit/volume/v1/__init__.py +0 -0
  246. openstackclient/tests/unit/volume/v1/fakes.py +0 -615
  247. openstackclient/tests/unit/volume/v1/test_qos_specs.py +0 -471
  248. openstackclient/tests/unit/volume/v1/test_service.py +0 -295
  249. openstackclient/tests/unit/volume/v1/test_transfer_request.py +0 -380
  250. openstackclient/tests/unit/volume/v1/test_type.py +0 -633
  251. openstackclient/tests/unit/volume/v1/test_volume.py +0 -1447
  252. openstackclient/tests/unit/volume/v1/test_volume_backup.py +0 -435
  253. openstackclient/volume/v1/__init__.py +0 -0
  254. openstackclient/volume/v1/qos_specs.py +0 -377
  255. openstackclient/volume/v1/service.py +0 -136
  256. openstackclient/volume/v1/volume.py +0 -734
  257. openstackclient/volume/v1/volume_backup.py +0 -302
  258. openstackclient/volume/v1/volume_snapshot.py +0 -433
  259. openstackclient/volume/v1/volume_transfer_request.py +0 -200
  260. openstackclient/volume/v1/volume_type.py +0 -520
  261. python_openstackclient-7.4.0.dist-info/METADATA +0 -172
  262. python_openstackclient-7.4.0.dist-info/pbr.json +0 -1
  263. {python_openstackclient-7.4.0.dist-info → python_openstackclient-8.1.0.dist-info}/LICENSE +0 -0
  264. {python_openstackclient-7.4.0.dist-info → python_openstackclient-8.1.0.dist-info}/top_level.txt +0 -0
@@ -1,3 +1,4 @@
1
+ 0weng <oweng@osuosl.org>
1
2
  Aaron Rosen <aaronorosen@gmail.com>
2
3
  Abhishek Chanda <abhishek@cloudscaling.com>
3
4
  Abhishek Raut <rauta@vmware.com>
@@ -67,6 +68,7 @@ Carl Baldwin <carl@ecbaldwin.net>
67
68
  Carlos Goncalves <carlos.goncalves@neclab.eu>
68
69
  Carlos Konstanski <ckonstanski@pippiandcarlos.com>
69
70
  Cedric Brandily <zzelle@gmail.com>
71
+ Chaemin-Lim <antraxmin@naver.com>
70
72
  Chaozhe.Chen <chaozhe.chen@easystack.cn>
71
73
  Chen <dstbtgagt@foxmail.com>
72
74
  Chen Hanxiao <chenhx@certusnet.com.cn>
@@ -107,6 +109,7 @@ Dina Belova <dbelova@mirantis.com>
107
109
  Dirk Mueller <dirk@dmllr.de>
108
110
  Diwei Zhu <zhu.diw@northeastern.edu>
109
111
  Dmitrii Shcherbakov <dmitrii.shcherbakov@canonical.com>
112
+ Dmitriy Chubinidze <dcu995@gmail.com>
110
113
  Dmitriy Rabotyagov <drabotyagov@vexxhost.com>
111
114
  Dmitriy Rabotyagov <noonedeadpunk@ya.ru>
112
115
  Dmitry Tantsur <dtantsur@protonmail.com>
@@ -118,6 +121,7 @@ Doug Hellmann <doug@doughellmann.com>
118
121
  Doug Wiegley <dwiegley@salesforce.com>
119
122
  Dougal Matthews <dougal@redhat.com>
120
123
  Douglas Mendizábal <dmendiza@redhat.com>
124
+ Douglas Viroel <viroel@gmail.com>
121
125
  Dr. Jens Harbott <harbott@osism.tech>
122
126
  Einst Crazy <yu.changcai@99cloud.net>
123
127
  Elena Ezhova <eezhova@mirantis.com>
@@ -177,6 +181,7 @@ Ilya Popov <ilya_p@hotmail.com>
177
181
  Imtiaz Chowdhury <imtiaz.chowdhury@workday.com>
178
182
  Inessa Vasilevskaya <ivasilevskaya@mirantis.com>
179
183
  Iswarya_Vakati <v.iswarya@nectechnologies.in>
184
+ Ivan Anfimov <lazekteam@gmail.com>
180
185
  Ivan Kolodyazhny <e0ne@e0ne.info>
181
186
  JAE YONG LEE <jaeljy135@gmail.com>
182
187
  JIHOJU <jihoju96@gmail.com>
@@ -192,6 +197,7 @@ James E. Blair <jeblair@redhat.com>
192
197
  Jamie Lennox <jamielennox@redhat.com>
193
198
  Jan Gutter <jan.gutter@netronome.com>
194
199
  Jan Hartkopf <jhartkopf@inovex.de>
200
+ Jan Ueberacker <jan.ueberacker@inovex.de>
195
201
  Jas <singhj@us.ibm.com>
196
202
  Jaspreet Singh Rawel <jaspreetsinghrawel@gmail.com>
197
203
  Javier Pena <jpena@redhat.com>
@@ -277,6 +283,7 @@ Matthieu Huin <mhu@enovance.com>
277
283
  Michael Gugino <michael.gugino@walmart.com>
278
284
  Michael Johnson <johnsomor@gmail.com>
279
285
  Michael McCune <msm@redhat.com>
286
+ Michael Still <mikal@stillhq.com>
280
287
  Miguel Lavalle <miguel.lavalle@verizonmedia.com>
281
288
  Miguel Lavalle <mlavalle@redhat.com>
282
289
  Mike Fedosin <mfedosin@redhat.com>
@@ -425,6 +432,7 @@ Violet Kurtz <vi.kurtz@protonmail.com>
425
432
  Violet Kurtz <vikurtz@osuosl.org>
426
433
  Vishakha Agarwal <agarwalvishakha18@gmail.com>
427
434
  Vladimir Eremin <yottatsa@yandex-team.ru>
435
+ Vladimir Kozhukalov <kozhukalov@gmail.com>
428
436
  Vu Cong Tuan <tuanvc@vn.fujitsu.com>
429
437
  Wenran Xiao <xiaowenran@unitedstack.com>
430
438
  Wenzhi Yu <wenzhi_yu@163.com>
@@ -462,6 +470,7 @@ choidoa-git <pearl097@naver.com>
462
470
  cw0306-lee <us0310306@gmail.com>
463
471
  daizhiyong <zhiyong.dai@easystack.cn>
464
472
  devMuscle <hongsbien@naver.com>
473
+ djp <dimsss0607@gmail.com>
465
474
  dongwenshuai <dong.wenshuai@zte.com.cn>
466
475
  elajkat <lajos.katona@est.tech>
467
476
  gecong1973 <ge.cong@zte.com.cn>
@@ -541,6 +550,7 @@ ting wang <bx_wang@outlook.com>
541
550
  ting.wang <ting.wang@easystack.cn>
542
551
  venkata anil <anilvenkata@redhat.com>
543
552
  venkatamahesh <venkatamaheshkotha@gmail.com>
553
+ waf <ekrmdhsl7@gmail.com>
544
554
  wanghong <w.wanghong@huawei.com>
545
555
  wangxiyuan <wangxiyuan@huawei.com>
546
556
  wangzihao <wangzihao@yovole.com>
@@ -550,6 +560,7 @@ wu.chunyang <wu.chunyang@99cloud.net>
550
560
  wu.chunyang <wuchunyang@yovole.com>
551
561
  wu.shiming <wushiming@yovole.com>
552
562
  wuyuting <wytdahu@gmail.com>
563
+ xfrnk2 <xfrnk2@gmail.com>
553
564
  xiexs <xiexs@cn.fujitsu.com>
554
565
  yaeeee <rim0399@naver.com>
555
566
  yang wang <wangy@rc.inesa.com>
@@ -0,0 +1,264 @@
1
+ Metadata-Version: 2.1
2
+ Name: python-openstackclient
3
+ Version: 8.1.0
4
+ Summary: OpenStack Command-line Client
5
+ Home-page: https://docs.openstack.org/python-openstackclient/latest/
6
+ Author: OpenStack
7
+ Author-email: openstack-discuss@lists.openstack.org
8
+ Classifier: Environment :: OpenStack
9
+ Classifier: Intended Audience :: Information Technology
10
+ Classifier: Intended Audience :: System Administrators
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Operating System :: POSIX :: Linux
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Requires-Python: >=3.10
20
+ Description-Content-Type: text/x-rst
21
+ License-File: LICENSE
22
+ License-File: AUTHORS
23
+ Requires-Dist: pbr !=2.1.0,>=2.0.0
24
+ Requires-Dist: cryptography >=2.7
25
+ Requires-Dist: cliff >=3.5.0
26
+ Requires-Dist: iso8601 >=0.1.11
27
+ Requires-Dist: openstacksdk >=4.5.0
28
+ Requires-Dist: osc-lib >=2.3.0
29
+ Requires-Dist: oslo.i18n >=3.15.3
30
+ Requires-Dist: python-keystoneclient >=3.22.0
31
+ Requires-Dist: python-cinderclient >=3.3.0
32
+ Requires-Dist: requests >=2.27.0
33
+ Requires-Dist: stevedore >=2.0.1
34
+
35
+ ===============
36
+ OpenStackClient
37
+ ===============
38
+
39
+ .. image:: https://img.shields.io/pypi/v/python-openstackclient.svg
40
+ :target: https://pypi.org/project/python-openstackclient/
41
+ :alt: Latest Version
42
+
43
+ OpenStackClient (OSC) is a command-line client for OpenStack that brings
44
+ the command set for Compute, Identity, Image, Network, Object Store and Block
45
+ Storage APIs together in a single shell with a uniform command structure.
46
+ Support for additional service APIs is provided via plugins.
47
+
48
+ The primary goal is to provide a unified shell command structure and a common
49
+ language to describe operations in OpenStack.
50
+
51
+ Getting Started
52
+ ===============
53
+
54
+ OpenStack Client can be installed from PyPI using pip:
55
+
56
+ .. code-block:: shell
57
+
58
+ python3 -m pip install python-openstackclient
59
+
60
+ You can use ``--help`` or the ``help`` command to get a list of global options
61
+ and supported commands:
62
+
63
+ .. code-block:: shell
64
+
65
+ openstack --help
66
+ openstack help
67
+
68
+ You can also get help for a specific command:
69
+
70
+ .. code-block:: shell
71
+
72
+ openstack server create --help
73
+ openstack help server create
74
+
75
+ You can add support for additional services by installing their clients. For
76
+ example, to add support for the DNS service (designate):
77
+
78
+ .. code-block:: shell
79
+
80
+ python3 -m pip install python3-designateclient
81
+
82
+ A ``Dockerfile`` is provided for your convenience in the repository. You can
83
+ use this to build your own container images:
84
+
85
+ .. code-block:: shell
86
+
87
+ git clone https://opendev.org/openstack/python-openstackclient
88
+ cd python-openstackclient
89
+ podman build . -t example.com/myuser/openstackclient
90
+
91
+ For more information the available options and commands, refer to the `Users
92
+ Guide`__.
93
+
94
+ .. __: https://docs.openstack.org/python-openstackclient/latest/cli/index.html
95
+
96
+ Configuration
97
+ =============
98
+
99
+ OpenStack Client must be configured with authentication information in order to
100
+ communicate with a given OpenStack cloud. This configuration can be achieved
101
+ via a ``clouds.yaml`` file, a set of environment variables (often shared via an
102
+ ``openrc`` file), a set of command-line options, or a combination of all three.
103
+ Your cloud provider or deployment tooling will typically provide either a
104
+ ``clouds.yaml`` file or ``openrc`` file for you. If using a ``clouds.yaml``
105
+ file, OpenStack Client expects to find it in one of the following locations:
106
+
107
+ * If set, the path indicated by the ``OS_CLIENT_CONFIG_FILE`` environment
108
+ variable
109
+ * ``.`` (the current directory)
110
+ * ``$HOME/.config/openstack``
111
+ * ``/etc/openstack``
112
+
113
+ The options you should set will depend on the configuration of your cloud and
114
+ the authentication mechanism(s) supported. For example, consider a cloud that
115
+ supports username/password authentication. Configuration for this cloud using a
116
+ ``clouds.yaml`` file would look like so:
117
+
118
+ .. code-block:: yaml
119
+
120
+ clouds:
121
+ my-cloud:
122
+ auth:
123
+ auth_url: '<url-to-openstack-identity>'
124
+ project_name: '<project-name>'
125
+ project_domain_name: '<project-domain-name>'
126
+ username: '<username>'
127
+ user_domain_name: '<user-domain-name>'
128
+ password: '<password>' # (optional)
129
+ region_name: '<region>'
130
+
131
+ The corresponding environment variables would look very similar:
132
+
133
+ .. code-block:: shell
134
+
135
+ export OS_AUTH_URL=<url-to-openstack-identity>
136
+ export OS_REGION_NAME=<region>
137
+ export OS_PROJECT_NAME=<project-name>
138
+ export OS_PROJECT_DOMAIN_NAME=<project-domain-name>
139
+ export OS_USERNAME=<username>
140
+ export OS_USER_DOMAIN_NAME=<user-domain-name>
141
+ export OS_PASSWORD=<password> # (optional)
142
+
143
+ Likewise, the corresponding command-line options would look very similar:
144
+
145
+ ::
146
+
147
+ openstack
148
+ --os-auth-url <url-to-openstack-identity>
149
+ --os-region <region>
150
+ --os-project-name <project-name>
151
+ --os-project-domain-name <project-domain-name>
152
+ --os-username <username>
153
+ --os-user-domain-name <user-domain-name>
154
+ [--os-password <password>]
155
+
156
+ .. note::
157
+
158
+ If a password is not provided above (in plaintext), you will be
159
+ interactively prompted to provide one securely.
160
+
161
+ Some clouds use federated authentication. If this is the case, your
162
+ configuration will be slightly more involved. For example, to configure
163
+ username/password authentication for a federated user using a ``clouds.yaml``
164
+ file:
165
+
166
+ .. code-block:: yaml
167
+
168
+ clouds:
169
+ my-cloud:
170
+ auth:
171
+ auth_url: '<url-to-openstack-identity>'
172
+ project_name: '<project-name>'
173
+ project_domain_name: '<project-domain-name>'
174
+ username: '<username-in-idp>'
175
+ user_domain_name: '<user-domain-name>'
176
+ password: '<password-in-idp>'
177
+ identity_provider: '<the-desired-idp-in-keystone>'
178
+ client_id: '<the-client-id-configured-in-the-idp>'
179
+ client_secret: '<the-client-secret-configured-in-the-idp>'
180
+ openid_scope: '<the-scopes-of-desired-attributes-to-claim-from-idp>'
181
+ protocol: '<the-protocol-used-in-the-apache2-oidc-proxy>'
182
+ access_token_type: '<the-access-token-type-used-by-your-idp>'
183
+ discovery_endpoint: '<the-well-known-endpoint-of-the-idp>'
184
+ auth_type: 'v3oidcpassword'
185
+ region_name: '<region>'
186
+
187
+ The corresponding environment variables would look very similar:
188
+
189
+ .. code-block:: shell
190
+
191
+ export OS_PROJECT_NAME=<project-name>
192
+ export OS_PROJECT_DOMAIN_NAME=<project-domain-name>
193
+ export OS_AUTH_URL=<url-to-openstack-identity>
194
+ export OS_IDENTITY_API_VERSION=3
195
+ export OS_AUTH_TYPE=v3oidcpassword
196
+ export OS_USERNAME=<username-in-idp>
197
+ export OS_PASSWORD=<password-in-idp>
198
+ export OS_IDENTITY_PROVIDER=<the-desired-idp-in-keystone>
199
+ export OS_CLIENT_ID=<the-client-id-configured-in-the-idp>
200
+ export OS_CLIENT_SECRET=<the-client-secred-configured-in-the-idp>
201
+ export OS_OPENID_SCOPE=<the-scopes-of-desired-attributes-to-claim-from-idp>
202
+ export OS_PROTOCOL=<the-protocol-used-in-the-apache2-oidc-proxy>
203
+ export OS_ACCESS_TOKEN_TYPE=<the-access-token-type-used-by-your-idp>
204
+ export OS_DISCOVERY_ENDPOINT=<the-well-known-endpoint-of-the-idp>
205
+
206
+ Likewise, the corresponding command-line options would look very similar:
207
+
208
+ .. code-block:: shell
209
+
210
+ --os-project-name <project-name>
211
+ --os-project-domain-name <project-domain-name>
212
+ --os-auth-url <url-to-openstack-identity>
213
+ --os-identity-api-version 3
214
+ --os-auth-plugin openid
215
+ --os-auth-type v3oidcpassword
216
+ --os-username <username-in-idp>
217
+ --os-password <password-in-idp>
218
+ --os-identity-provider <the-desired-idp-in-keystone>
219
+ --os-client-id <the-client-id-configured-in-the-idp>
220
+ --os-client-secret <the-client-secred-configured-in-the-idp>
221
+ --os-openid-scope <the-scopes-of-desired-attributes-to-claim-from-idp>
222
+ --os-protocol <the-protocol-used-in-the-apache2-oidc-proxy>
223
+ --os-access-token-type <the-access-token-type-used-by-your-idp>
224
+ --os-discovery-endpoint <the-well-known-endpoint-of-the-idp>
225
+
226
+ For more information on configuring authentication, including an overview of
227
+ the many authentication mechanisms supported, refer to the `Authentication
228
+ guide`__. For more information on configuration in general, refer to the
229
+ `Configuration guide`__.
230
+
231
+ .. __: https://docs.openstack.org/python-openstackclient/latest/cli/authentication.html.
232
+ .. __: https://docs.openstack.org/python-openstackclient/latest/configuration/index.html
233
+
234
+ Contributing
235
+ ============
236
+
237
+ You can clone the repository from opendev.org::
238
+
239
+ git clone https://opendev.org/openstack/python-openstackclient
240
+ cd python-openstackclient
241
+
242
+ OpenStack Client uses the same contributor process as other OpenStack projects.
243
+ For information on this process, including help on setting up you Gerrit
244
+ account and an overview of the CI process, refer to the `OpenStack Contributors
245
+ Guide`__.
246
+
247
+ For more information on contributing to OpenStack Client itself, including
248
+ guidance on how to design new commands and how to report bugs, refer to the
249
+ `Contributors Guide`__.
250
+
251
+ .. __: https://docs.openstack.org/python-openstackclient/latest/contributor/index.html
252
+ .. __: https://docs.opendev.org/opendev/infra-manual/latest/developers.html
253
+
254
+ Links
255
+ -----
256
+
257
+ * `Issue Tracker <https://bugs.launchpad.net/python-openstackclient>`_
258
+ * `Code Review <https://review.opendev.org/#/q/status:open+project:openstack/openstacksdk,n,z>`_
259
+ * `Documentation <https://docs.openstack.org/python-openstackclient/latest/>`_
260
+ * `PyPi <https://pypi.org/project/python-openstackclient>`_
261
+ * `Mailing list <https://lists.openstack.org/mailman3/lists/openstack-discuss.lists.openstack.org/>`_
262
+ * `Release Notes <https://docs.openstack.org/releasenotes/python-openstackclient>`_
263
+ * `IRC (#openstack-sdks on OFTC (irc.oftc.net)) <irc://irc.oftc.net/openstack-sdks>`_
264
+