python-openstackclient 6.3.0__py3-none-any.whl → 6.5.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 (162) hide show
  1. openstackclient/common/availability_zone.py +4 -4
  2. openstackclient/common/pagination.py +82 -0
  3. openstackclient/compute/v2/flavor.py +2 -16
  4. openstackclient/compute/v2/hypervisor.py +2 -21
  5. openstackclient/compute/v2/keypair.py +2 -9
  6. openstackclient/compute/v2/server.py +220 -131
  7. openstackclient/compute/v2/server_event.py +30 -19
  8. openstackclient/compute/v2/server_group.py +2 -23
  9. openstackclient/compute/v2/server_migration.py +2 -22
  10. openstackclient/compute/v2/usage.py +4 -6
  11. openstackclient/identity/v3/mapping.py +25 -3
  12. openstackclient/identity/v3/policy.py +3 -1
  13. openstackclient/image/v2/cache.py +218 -0
  14. openstackclient/image/v2/image.py +40 -17
  15. openstackclient/image/v2/metadef_namespaces.py +25 -21
  16. openstackclient/image/v2/metadef_objects.py +189 -0
  17. openstackclient/image/v2/metadef_properties.py +284 -0
  18. openstackclient/network/utils.py +100 -0
  19. openstackclient/network/v2/default_security_group_rule.py +418 -0
  20. openstackclient/network/v2/local_ip_association.py +1 -1
  21. openstackclient/network/v2/ndp_proxy.py +7 -3
  22. openstackclient/network/v2/network.py +2 -2
  23. openstackclient/network/v2/port.py +65 -19
  24. openstackclient/network/v2/security_group_rule.py +18 -111
  25. openstackclient/network/v2/subnet.py +1 -0
  26. openstackclient/object/v1/container.py +2 -12
  27. openstackclient/object/v1/object.py +2 -11
  28. openstackclient/tests/functional/base.py +13 -6
  29. openstackclient/tests/functional/identity/v3/test_role.py +11 -3
  30. openstackclient/tests/functional/network/v2/common.py +7 -1
  31. openstackclient/tests/functional/network/v2/test_address_group.py +2 -4
  32. openstackclient/tests/functional/network/v2/test_address_scope.py +0 -6
  33. openstackclient/tests/functional/network/v2/test_default_security_group_rule.py +67 -0
  34. openstackclient/tests/functional/network/v2/test_floating_ip.py +3 -6
  35. openstackclient/tests/functional/network/v2/test_ip_availability.py +3 -8
  36. openstackclient/tests/functional/network/v2/test_l3_conntrack_helper.py +3 -4
  37. openstackclient/tests/functional/network/v2/test_local_ip.py +2 -4
  38. openstackclient/tests/functional/network/v2/test_network.py +18 -17
  39. openstackclient/tests/functional/network/v2/test_network_agent.py +24 -21
  40. openstackclient/tests/functional/network/v2/test_network_flavor.py +0 -6
  41. openstackclient/tests/functional/network/v2/test_network_flavor_profile.py +0 -6
  42. openstackclient/tests/functional/network/v2/test_network_meter.py +6 -6
  43. openstackclient/tests/functional/network/v2/test_network_meter_rule.py +7 -8
  44. openstackclient/tests/functional/network/v2/test_network_ndp_proxy.py +1 -3
  45. openstackclient/tests/functional/network/v2/test_network_qos_policy.py +4 -4
  46. openstackclient/tests/functional/network/v2/test_network_qos_rule.py +16 -20
  47. openstackclient/tests/functional/network/v2/test_network_qos_rule_type.py +4 -4
  48. openstackclient/tests/functional/network/v2/test_network_rbac.py +1 -4
  49. openstackclient/tests/functional/network/v2/test_network_segment.py +7 -12
  50. openstackclient/tests/functional/network/v2/test_network_segment_range.py +3 -4
  51. openstackclient/tests/functional/network/v2/test_network_service_provider.py +2 -4
  52. openstackclient/tests/functional/network/v2/test_network_trunk.py +3 -3
  53. openstackclient/tests/functional/network/v2/test_port.py +2 -8
  54. openstackclient/tests/functional/network/v2/test_router.py +0 -6
  55. openstackclient/tests/functional/network/v2/test_security_group.py +1 -4
  56. openstackclient/tests/functional/network/v2/test_security_group_rule.py +1 -4
  57. openstackclient/tests/functional/network/v2/test_subnet.py +4 -22
  58. openstackclient/tests/functional/network/v2/test_subnet_pool.py +0 -6
  59. openstackclient/tests/unit/common/test_availability_zone.py +28 -30
  60. openstackclient/tests/unit/common/test_extension.py +1 -4
  61. openstackclient/tests/unit/common/test_limits.py +2 -4
  62. openstackclient/tests/unit/common/test_project_cleanup.py +3 -10
  63. openstackclient/tests/unit/common/test_quota.py +18 -24
  64. openstackclient/tests/unit/compute/v2/fakes.py +24 -11
  65. openstackclient/tests/unit/compute/v2/test_agent.py +1 -1
  66. openstackclient/tests/unit/compute/v2/test_aggregate.py +62 -72
  67. openstackclient/tests/unit/compute/v2/test_console.py +18 -30
  68. openstackclient/tests/unit/compute/v2/test_flavor.py +85 -89
  69. openstackclient/tests/unit/compute/v2/test_host.py +12 -19
  70. openstackclient/tests/unit/compute/v2/test_hypervisor.py +23 -25
  71. openstackclient/tests/unit/compute/v2/test_hypervisor_stats.py +2 -6
  72. openstackclient/tests/unit/compute/v2/test_keypair.py +25 -39
  73. openstackclient/tests/unit/compute/v2/test_server.py +316 -365
  74. openstackclient/tests/unit/compute/v2/test_server_backup.py +5 -17
  75. openstackclient/tests/unit/compute/v2/test_server_event.py +23 -25
  76. openstackclient/tests/unit/compute/v2/test_server_group.py +41 -33
  77. openstackclient/tests/unit/compute/v2/test_server_image.py +6 -18
  78. openstackclient/tests/unit/compute/v2/test_server_migration.py +45 -45
  79. openstackclient/tests/unit/compute/v2/test_server_volume.py +15 -31
  80. openstackclient/tests/unit/compute/v2/test_service.py +51 -56
  81. openstackclient/tests/unit/compute/v2/test_usage.py +10 -13
  82. openstackclient/tests/unit/fakes.py +4 -0
  83. openstackclient/tests/unit/identity/v3/test_mappings.py +9 -4
  84. openstackclient/tests/unit/identity/v3/test_trust.py +0 -2
  85. openstackclient/tests/unit/image/v1/fakes.py +2 -1
  86. openstackclient/tests/unit/image/v1/test_image.py +1 -1
  87. openstackclient/tests/unit/image/v2/fakes.py +82 -0
  88. openstackclient/tests/unit/image/v2/test_cache.py +214 -0
  89. openstackclient/tests/unit/image/v2/test_image.py +62 -4
  90. openstackclient/tests/unit/image/v2/test_metadef_namespaces.py +5 -19
  91. openstackclient/tests/unit/image/v2/test_metadef_objects.py +162 -0
  92. openstackclient/tests/unit/image/v2/test_metadef_properties.py +227 -0
  93. openstackclient/tests/unit/integ/cli/test_shell.py +0 -2
  94. openstackclient/tests/unit/network/test_common.py +3 -3
  95. openstackclient/tests/unit/network/v2/fakes.py +1 -0
  96. openstackclient/tests/unit/network/v2/test_default_security_group_rule.py +1133 -0
  97. openstackclient/tests/unit/network/v2/test_floating_ip_compute.py +5 -13
  98. openstackclient/tests/unit/network/v2/test_floating_ip_pool_compute.py +1 -9
  99. openstackclient/tests/unit/network/v2/test_network.py +33 -0
  100. openstackclient/tests/unit/network/v2/test_network_compute.py +5 -11
  101. openstackclient/tests/unit/network/v2/test_network_trunk.py +6 -8
  102. openstackclient/tests/unit/network/v2/test_port.py +83 -38
  103. openstackclient/tests/unit/network/v2/test_security_group_compute.py +7 -15
  104. openstackclient/tests/unit/network/v2/test_security_group_rule_compute.py +19 -27
  105. openstackclient/tests/unit/network/v2/test_security_group_rule_network.py +3 -6
  106. openstackclient/tests/unit/network/v2/test_subnet.py +92 -0
  107. openstackclient/tests/unit/network/v2/test_subnet_pool.py +11 -13
  108. openstackclient/tests/unit/test_shell.py +1 -7
  109. openstackclient/tests/unit/utils.py +10 -4
  110. openstackclient/tests/unit/volume/v1/fakes.py +7 -1
  111. openstackclient/tests/unit/volume/v1/test_qos_specs.py +2 -2
  112. openstackclient/tests/unit/volume/v1/test_service.py +1 -1
  113. openstackclient/tests/unit/volume/v1/test_transfer_request.py +2 -2
  114. openstackclient/tests/unit/volume/v1/test_type.py +2 -4
  115. openstackclient/tests/unit/volume/v1/test_volume.py +5 -7
  116. openstackclient/tests/unit/volume/v1/test_volume_backup.py +4 -4
  117. openstackclient/tests/unit/volume/v2/fakes.py +32 -12
  118. openstackclient/tests/unit/volume/v2/test_backup_record.py +1 -1
  119. openstackclient/tests/unit/volume/v2/test_consistency_group.py +4 -6
  120. openstackclient/tests/unit/volume/v2/test_consistency_group_snapshot.py +2 -4
  121. openstackclient/tests/unit/volume/v2/test_qos_specs.py +2 -2
  122. openstackclient/tests/unit/volume/v2/test_service.py +1 -1
  123. openstackclient/tests/unit/volume/v2/test_volume.py +78 -16
  124. openstackclient/tests/unit/volume/v2/test_volume_backend.py +10 -22
  125. openstackclient/tests/unit/volume/v2/test_volume_backup.py +76 -89
  126. openstackclient/tests/unit/volume/v2/test_volume_host.py +1 -1
  127. openstackclient/tests/unit/volume/v2/test_volume_snapshot.py +5 -7
  128. openstackclient/tests/unit/volume/v2/test_volume_transfer_request.py +4 -8
  129. openstackclient/tests/unit/volume/v2/test_volume_type.py +164 -24
  130. openstackclient/tests/unit/volume/v3/fakes.py +91 -15
  131. openstackclient/tests/unit/volume/v3/test_block_storage_cleanup.py +3 -7
  132. openstackclient/tests/unit/volume/v3/test_block_storage_cluster.py +11 -31
  133. openstackclient/tests/unit/volume/v3/test_block_storage_log_level.py +6 -16
  134. openstackclient/tests/unit/volume/v3/test_block_storage_manage.py +219 -157
  135. openstackclient/tests/unit/volume/v3/test_block_storage_resource_filter.py +32 -23
  136. openstackclient/tests/unit/volume/v3/test_volume.py +50 -48
  137. openstackclient/tests/unit/volume/v3/test_volume_attachment.py +17 -47
  138. openstackclient/tests/unit/volume/v3/test_volume_group.py +23 -65
  139. openstackclient/tests/unit/volume/v3/test_volume_group_snapshot.py +88 -77
  140. openstackclient/tests/unit/volume/v3/test_volume_group_type.py +14 -42
  141. openstackclient/tests/unit/volume/v3/test_volume_message.py +10 -28
  142. openstackclient/volume/v1/volume.py +2 -14
  143. openstackclient/volume/v2/volume.py +30 -15
  144. openstackclient/volume/v2/volume_backend.py +10 -18
  145. openstackclient/volume/v2/volume_backup.py +18 -15
  146. openstackclient/volume/v2/volume_snapshot.py +2 -12
  147. openstackclient/volume/v2/volume_type.py +211 -14
  148. openstackclient/volume/v3/block_storage_manage.py +72 -11
  149. openstackclient/volume/v3/block_storage_resource_filter.py +33 -11
  150. openstackclient/volume/v3/volume_attachment.py +2 -14
  151. openstackclient/volume/v3/volume_group_snapshot.py +27 -27
  152. openstackclient/volume/v3/volume_message.py +2 -13
  153. {python_openstackclient-6.3.0.dist-info → python_openstackclient-6.5.0.dist-info}/AUTHORS +11 -0
  154. {python_openstackclient-6.3.0.dist-info → python_openstackclient-6.5.0.dist-info}/METADATA +6 -5
  155. {python_openstackclient-6.3.0.dist-info → python_openstackclient-6.5.0.dist-info}/RECORD +160 -151
  156. {python_openstackclient-6.3.0.dist-info → python_openstackclient-6.5.0.dist-info}/entry_points.txt +23 -5
  157. python_openstackclient-6.5.0.dist-info/pbr.json +1 -0
  158. openstackclient/tests/unit/common/test_parseractions.py +0 -233
  159. python_openstackclient-6.3.0.dist-info/pbr.json +0 -1
  160. {python_openstackclient-6.3.0.dist-info → python_openstackclient-6.5.0.dist-info}/LICENSE +0 -0
  161. {python_openstackclient-6.3.0.dist-info → python_openstackclient-6.5.0.dist-info}/WHEEL +0 -0
  162. {python_openstackclient-6.3.0.dist-info → python_openstackclient-6.5.0.dist-info}/top_level.txt +0 -0
@@ -12,7 +12,7 @@
12
12
 
13
13
  import logging
14
14
 
15
- from cinderclient import api_versions
15
+ from openstack import utils as sdk_utils
16
16
  from osc_lib.command import command
17
17
  from osc_lib import exceptions
18
18
  from osc_lib import utils
@@ -75,22 +75,25 @@ class CreateVolumeGroupSnapshot(command.ShowOne):
75
75
  return parser
76
76
 
77
77
  def take_action(self, parsed_args):
78
- volume_client = self.app.client_manager.volume
78
+ volume_client = self.app.client_manager.sdk_connection.volume
79
79
 
80
- if volume_client.api_version < api_versions.APIVersion('3.14'):
80
+ if not sdk_utils.supports_microversion(volume_client, '3.14'):
81
81
  msg = _(
82
82
  "--os-volume-api-version 3.14 or greater is required to "
83
83
  "support the 'volume group snapshot create' command"
84
84
  )
85
85
  raise exceptions.CommandError(msg)
86
86
 
87
- volume_group = utils.find_resource(
88
- volume_client.groups,
87
+ group = volume_client.find_group(
89
88
  parsed_args.volume_group,
89
+ ignore_missing=False,
90
+ details=False,
90
91
  )
91
92
 
92
- snapshot = volume_client.group_snapshots.create(
93
- volume_group.id, parsed_args.name, parsed_args.description
93
+ snapshot = volume_client.create_group_snapshot(
94
+ group_id=group.id,
95
+ name=parsed_args.name,
96
+ description=parsed_args.description,
94
97
  )
95
98
 
96
99
  return _format_group_snapshot(snapshot)
@@ -112,21 +115,22 @@ class DeleteVolumeGroupSnapshot(command.Command):
112
115
  return parser
113
116
 
114
117
  def take_action(self, parsed_args):
115
- volume_client = self.app.client_manager.volume
118
+ volume_client = self.app.client_manager.sdk_connection.volume
116
119
 
117
- if volume_client.api_version < api_versions.APIVersion('3.14'):
120
+ if not sdk_utils.supports_microversion(volume_client, '3.14'):
118
121
  msg = _(
119
122
  "--os-volume-api-version 3.14 or greater is required to "
120
123
  "support the 'volume group snapshot delete' command"
121
124
  )
122
125
  raise exceptions.CommandError(msg)
123
126
 
124
- snapshot = utils.find_resource(
125
- volume_client.group_snapshots,
127
+ group_snapshot = volume_client.find_group_snapshot(
126
128
  parsed_args.snapshot,
129
+ ignore_missing=False,
130
+ details=False,
127
131
  )
128
132
 
129
- volume_client.group_snapshots.delete(snapshot.id)
133
+ volume_client.delete_group_snapshot(group_snapshot.id)
130
134
 
131
135
 
132
136
  class ListVolumeGroupSnapshot(command.Lister):
@@ -161,20 +165,18 @@ class ListVolumeGroupSnapshot(command.Lister):
161
165
  return parser
162
166
 
163
167
  def take_action(self, parsed_args):
164
- volume_client = self.app.client_manager.volume
168
+ volume_client = self.app.client_manager.sdk_connection.volume
165
169
 
166
- if volume_client.api_version < api_versions.APIVersion('3.14'):
170
+ if not sdk_utils.supports_microversion(volume_client, '3.14'):
167
171
  msg = _(
168
172
  "--os-volume-api-version 3.14 or greater is required to "
169
173
  "support the 'volume group snapshot list' command"
170
174
  )
171
175
  raise exceptions.CommandError(msg)
172
176
 
173
- search_opts = {
174
- 'all_tenants': parsed_args.all_projects,
175
- }
176
-
177
- groups = volume_client.group_snapshots.list(search_opts=search_opts)
177
+ groups = volume_client.group_snapshots(
178
+ all_projects=parsed_args.all_projects,
179
+ )
178
180
 
179
181
  column_headers = (
180
182
  'ID',
@@ -209,21 +211,19 @@ class ShowVolumeGroupSnapshot(command.ShowOne):
209
211
  return parser
210
212
 
211
213
  def take_action(self, parsed_args):
212
- volume_client = self.app.client_manager.volume
214
+ volume_client = self.app.client_manager.sdk_connection.volume
213
215
 
214
- if volume_client.api_version < api_versions.APIVersion('3.14'):
216
+ if not sdk_utils.supports_microversion(volume_client, '3.14'):
215
217
  msg = _(
216
218
  "--os-volume-api-version 3.14 or greater is required to "
217
219
  "support the 'volume group snapshot show' command"
218
220
  )
219
221
  raise exceptions.CommandError(msg)
220
222
 
221
- snapshot = utils.find_resource(
222
- volume_client.group_snapshots,
223
+ group_snapshot = volume_client.find_group_snapshot(
223
224
  parsed_args.snapshot,
225
+ ignore_missing=False,
226
+ details=True,
224
227
  )
225
228
 
226
- # TODO(stephenfin): Do we need this?
227
- snapshot = volume_client.groups.show(snapshot.id)
228
-
229
- return _format_group_snapshot(snapshot)
229
+ return _format_group_snapshot(group_snapshot)
@@ -21,6 +21,7 @@ from osc_lib.command import command
21
21
  from osc_lib import exceptions
22
22
  from osc_lib import utils
23
23
 
24
+ from openstackclient.common import pagination
24
25
  from openstackclient.i18n import _
25
26
  from openstackclient.identity import common as identity_common
26
27
 
@@ -78,19 +79,7 @@ class ListMessages(command.Lister):
78
79
  help=_('Filter results by project (name or ID) (admin only)'),
79
80
  )
80
81
  identity_common.add_project_domain_option_to_parser(parser)
81
- parser.add_argument(
82
- '--marker',
83
- metavar='<message-id>',
84
- help=_('The last message ID of the previous page'),
85
- default=None,
86
- )
87
- parser.add_argument(
88
- '--limit',
89
- type=int,
90
- metavar='<limit>',
91
- help=_('Maximum number of messages to display'),
92
- default=None,
93
- )
82
+ pagination.add_marker_pagination_option_to_parser(parser)
94
83
 
95
84
  return parser
96
85
 
@@ -37,6 +37,7 @@ Areg Grigoryan <argrigor@cern.ch>
37
37
  Ariel-Berkowicz <arielmb@bu.edu>
38
38
  Artem Goncharov <Artem.goncharov@gmail.com>
39
39
  Artem Goncharov <artem.goncharov@gmail.com>
40
+ ArtofBugs <oweng@osuosl.org>
40
41
  Artom Lifshitz <alifshit@redhat.com>
41
42
  Asha Saravanamohan <assarava@cisco.com>
42
43
  Ashish Singh <ashish.singh7@tcs.com>
@@ -57,6 +58,7 @@ Bram Verschueren <verschueren.bram@gmail.com>
57
58
  Brandon Palm <bapalm@us.ibm.com>
58
59
  Brian Haley <bhaley@redhat.com>
59
60
  Brian Haley <brian.haley@hpe.com>
61
+ Brian Haley <haleyb.dev@gmail.com>
60
62
  Brian Rosmaita <brian.rosmaita@rackspace.com>
61
63
  Brian Rosmaita <rosmaita.fossdev@gmail.com>
62
64
  Brianna Poulos <Brianna.Poulos@jhuapl.edu>
@@ -68,9 +70,11 @@ Cedric Brandily <zzelle@gmail.com>
68
70
  Chaozhe.Chen <chaozhe.chen@easystack.cn>
69
71
  Chen <dstbtgagt@foxmail.com>
70
72
  Chen Hanxiao <chenhx@certusnet.com.cn>
73
+ Chengen Du <chengen.du@canonical.com>
71
74
  Choe, Cheng-Dae <whitekid@gmail.com>
72
75
  Chris Johnson <wchrisjohnson@gmail.com>
73
76
  Christian Berendt <berendt@b1-systems.de>
77
+ Christian Rohmann <christian.rohmann@inovex.de>
74
78
  Christian Schneemann <schneemann@b1-systems.de>
75
79
  Chuck Short <chuck.short@canonical.com>
76
80
  Clark Boylan <clark.boylan@gmail.com>
@@ -125,6 +129,7 @@ Fei Long Wang <flwang@catalyst.net.nz>
125
129
  Felix Yan <felixonmars@archlinux.org>
126
130
  Flavio Percoco <flaper87@gmail.com>
127
131
  Florent Flament <florent.flament-ext@cloudwatt.com>
132
+ Florian Streibelt <florian.streibelt@sap.com>
128
133
  Frode Nordahl <frode.nordahl@canonical.com>
129
134
  Gabriel Ramirez <gabrielramirez1109@gmail.com>
130
135
  Gage Hugo <gagehugo@gmail.com>
@@ -314,6 +319,8 @@ Radosław Piliszek <radoslaw.piliszek@gmail.com>
314
319
  Radu Mateescu <mateescu@ca.ibm.com>
315
320
  Rafael Weingärtner <rafael@apache.org>
316
321
  Rajasi Kulkarni <rajasikulkarni18@gmail.com>
322
+ Rajat Dhasmana <rajatdhasmana@gmail.com>
323
+ Rajesh Tailor <ratailor@redhat.com>
317
324
  Ramaraja <ramaraja.r@hcl.com>
318
325
  Ramaraja Ramachandran <ramaraja.r@hcl.com>
319
326
  Reedip <reedip.banerjee@nectechnologies.in>
@@ -375,6 +382,7 @@ Surya Seetharaman <suryaseetharaman.9@gmail.com>
375
382
  Sven Wegener <sven.wegener@inovex.de>
376
383
  Swapnil Kulkarni (coolsvap) <me@coolsvap.net>
377
384
  Sławek Kapłoński <slawek@kaplonski.pl>
385
+ Takashi Kajinami <kajinamit@oss.nttdata.com>
378
386
  Takashi Kajinami <tkajinam@redhat.com>
379
387
  Takashi Natsume <takanattie@gmail.com>
380
388
  Tang Chen <chen.tang@easystack.cn>
@@ -438,12 +446,14 @@ chengkunye <chengkun@unitedstack.com>
438
446
  chenxing <chason.chan@foxmail.com>
439
447
  chenying <ying.chen@huawei.com>
440
448
  choidoa-git <pearl097@naver.com>
449
+ cw0306-lee <us0310306@gmail.com>
441
450
  daizhiyong <zhiyong.dai@easystack.cn>
442
451
  devMuscle <hongsbien@naver.com>
443
452
  dongwenshuai <dong.wenshuai@zte.com.cn>
444
453
  elajkat <lajos.katona@est.tech>
445
454
  gecong1973 <ge.cong@zte.com.cn>
446
455
  gengchc2 <geng.changcai2@zte.com.cn>
456
+ gtema <artem.goncharov@gmail.com>
447
457
  guang-yee <guang.yee@hpe.com>
448
458
  guangpei.liu <guangpei.liu@easystack.cn>
449
459
  guiyanxing <guiyanxing@cmss.chinamobile.com>
@@ -498,6 +508,7 @@ qingszhao <zhao.daqing@99cloud.net>
498
508
  qtang <qtang@vmware.com>
499
509
  rabi <ramishra@redhat.com>
500
510
  reedip <reedip.banerjee@nectechnologies.in>
511
+ rladntjr4 <rladntjr4@gmail.com>
501
512
  root <ranasheel2000@gmail.com>
502
513
  ryanKor <equus3144@gmail.com>
503
514
  sharat.sharma <sharat.sharma@nectechnologies.in>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-openstackclient
3
- Version: 6.3.0
3
+ Version: 6.5.0
4
4
  Summary: OpenStack Command-line Client
5
5
  Home-page: https://docs.openstack.org/python-openstackclient/latest/
6
6
  Author: OpenStack
@@ -16,14 +16,15 @@ Classifier: Programming Language :: Python
16
16
  Classifier: Programming Language :: Python :: 3
17
17
  Classifier: Programming Language :: Python :: 3.8
18
18
  Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
19
21
  Requires-Python: >=3.8
20
22
  Requires-Dist: cliff (>=3.5.0)
21
23
  Requires-Dist: cryptography (>=2.7)
22
24
  Requires-Dist: iso8601 (>=0.1.11)
23
- Requires-Dist: openstacksdk (>=1.4.0)
25
+ Requires-Dist: openstacksdk (>=2.0.0)
24
26
  Requires-Dist: osc-lib (>=2.3.0)
25
27
  Requires-Dist: oslo.i18n (>=3.15.3)
26
- Requires-Dist: oslo.utils (>=3.33.0)
27
28
  Requires-Dist: pbr (!=2.1.0,>=2.0.0)
28
29
  Requires-Dist: python-cinderclient (>=3.3.0)
29
30
  Requires-Dist: python-keystoneclient (>=3.22.0)
@@ -56,7 +57,7 @@ language to describe operations in OpenStack.
56
57
 
57
58
  * `PyPi`_ - package installation
58
59
  * `Online Documentation`_
59
- * `Storyboard project`_ - bugs and feature requests
60
+ * `Launchpad project`_ - bugs and feature requests
60
61
  * `Blueprints`_ - feature specifications (historical only)
61
62
  * `Source`_
62
63
  * `Developer`_ - getting started as a developer
@@ -68,7 +69,7 @@ language to describe operations in OpenStack.
68
69
  .. _PyPi: https://pypi.org/project/python-openstackclient
69
70
  .. _Online Documentation: https://docs.openstack.org/python-openstackclient/latest/
70
71
  .. _Blueprints: https://blueprints.launchpad.net/python-openstackclient
71
- .. _`Storyboard project`: https://storyboard.openstack.org/#!/project/openstack/python-openstackclient
72
+ .. _`Launchpad project`: https://bugs.launchpad.net/python-openstackclient
72
73
  .. _Source: https://opendev.org/openstack/python-openstackclient
73
74
  .. _Developer: https://docs.openstack.org/project-team-guide/project-setup/python.html
74
75
  .. _Contributing: https://docs.openstack.org/infra/manual/developers.html