summaryrefslogtreecommitdiff
path: root/python_openstackclient.egg-info
diff options
context:
space:
mode:
authorJames Page <james.page@ubuntu.com>2025-02-27 12:47:04 +0000
committergit-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com>2025-02-27 12:48:11 +0000
commitcadf285ef3bba5f6cb863c72568936e007bf556e (patch)
tree9cac5298d12ec2fc915fdd7a64a1c49ec1e7fb90 /python_openstackclient.egg-info
parentba57fd4e657ceaead84ad821e6ac4b05b785c4ca (diff)
Imported using git-ubuntu import.
Notes
Notes: * New upstream release for OpenStack Epoxy.
Diffstat (limited to 'python_openstackclient.egg-info')
-rw-r--r--python_openstackclient.egg-info/PKG-INFO298
-rw-r--r--python_openstackclient.egg-info/SOURCES.txt11
-rw-r--r--python_openstackclient.egg-info/entry_points.txt1
-rw-r--r--python_openstackclient.egg-info/pbr.json2
-rw-r--r--python_openstackclient.egg-info/requires.txt6
5 files changed, 169 insertions, 149 deletions
diff --git a/python_openstackclient.egg-info/PKG-INFO b/python_openstackclient.egg-info/PKG-INFO
index 5b0b4cc..619eb75 100644
--- a/python_openstackclient.egg-info/PKG-INFO
+++ b/python_openstackclient.egg-info/PKG-INFO
@@ -1,152 +1,10 @@
-Metadata-Version: 1.2
+Metadata-Version: 2.1
Name: python-openstackclient
-Version: 7.2.1
+Version: 7.4.0
Summary: OpenStack Command-line Client
Home-page: https://docs.openstack.org/python-openstackclient/latest/
Author: OpenStack
Author-email: openstack-discuss@lists.openstack.org
-License: UNKNOWN
-Description: ========================
- Team and repository tags
- ========================
-
- .. image:: https://governance.openstack.org/tc/badges/python-openstackclient.svg
- :target: https://governance.openstack.org/tc/reference/tags/index.html
-
- .. Change things from this point on
-
- ===============
- OpenStackClient
- ===============
-
- .. image:: https://img.shields.io/pypi/v/python-openstackclient.svg
- :target: https://pypi.org/project/python-openstackclient/
- :alt: Latest Version
-
- OpenStackClient (aka OSC) is a command-line client for OpenStack that brings
- the command set for Compute, Identity, Image, Network, Object Store and Block
- Storage APIs together in a single shell with a uniform command structure.
-
- The primary goal is to provide a unified shell command structure and a common
- language to describe operations in OpenStack.
-
- * `PyPi`_ - package installation
- * `Online Documentation`_
- * `Launchpad project`_ - bugs and feature requests
- * `Blueprints`_ - feature specifications (historical only)
- * `Source`_
- * `Developer`_ - getting started as a developer
- * `Contributing`_ - contributing code
- * `Testing`_ - testing code
- * IRC: #openstack-sdks on OFTC (irc.oftc.net)
- * License: Apache 2.0
-
- .. _PyPi: https://pypi.org/project/python-openstackclient
- .. _Online Documentation: https://docs.openstack.org/python-openstackclient/latest/
- .. _Blueprints: https://blueprints.launchpad.net/python-openstackclient
- .. _`Launchpad project`: https://bugs.launchpad.net/python-openstackclient
- .. _Source: https://opendev.org/openstack/python-openstackclient
- .. _Developer: https://docs.openstack.org/project-team-guide/project-setup/python.html
- .. _Contributing: https://docs.openstack.org/infra/manual/developers.html
- .. _Testing: https://docs.openstack.org/python-openstackclient/latest/contributor/developing.html#testing
- .. _Release Notes: https://docs.openstack.org/releasenotes/python-openstackclient
-
- Getting Started
- ===============
-
- OpenStack Client can be installed from PyPI using pip::
-
- pip install python-openstackclient
-
- There are a few variants on getting help. A list of global options and supported
- commands is shown with ``--help``::
-
- openstack --help
-
- There is also a ``help`` command that can be used to get help text for a specific
- command::
-
- openstack help
- openstack help server create
-
- If you want to make changes to the OpenStackClient for testing and contribution,
- make any changes and then run::
-
- python setup.py develop
-
- or::
-
- pip install -e .
-
- Configuration
- =============
-
- The CLI is configured via environment variables and command-line
- options as listed in https://docs.openstack.org/python-openstackclient/latest/cli/authentication.html.
-
- Authentication using username/password is most commonly used:
-
- - For a local user, your configuration will look like the one below::
-
- export OS_AUTH_URL=<url-to-openstack-identity>
- export OS_IDENTITY_API_VERSION=3
- export OS_PROJECT_NAME=<project-name>
- export OS_PROJECT_DOMAIN_NAME=<project-domain-name>
- export OS_USERNAME=<username>
- export OS_USER_DOMAIN_NAME=<user-domain-name>
- export OS_PASSWORD=<password> # (optional)
-
- The corresponding command-line options look very similar::
-
- --os-auth-url <url>
- --os-identity-api-version 3
- --os-project-name <project-name>
- --os-project-domain-name <project-domain-name>
- --os-username <username>
- --os-user-domain-name <user-domain-name>
- [--os-password <password>]
-
- - For a federated user, your configuration will look the so::
-
- export OS_PROJECT_NAME=<project-name>
- export OS_PROJECT_DOMAIN_NAME=<project-domain-name>
- export OS_AUTH_URL=<url-to-openstack-identity>
- export OS_IDENTITY_API_VERSION=3
- export OS_AUTH_PLUGIN=openid
- export OS_AUTH_TYPE=v3oidcpassword
- export OS_USERNAME=<username-in-idp>
- export OS_PASSWORD=<password-in-idp>
- export OS_IDENTITY_PROVIDER=<the-desired-idp-in-keystone>
- export OS_CLIENT_ID=<the-client-id-configured-in-the-idp>
- export OS_CLIENT_SECRET=<the-client-secred-configured-in-the-idp>
- export OS_OPENID_SCOPE=<the-scopes-of-desired-attributes-to-claim-from-idp>
- export OS_PROTOCOL=<the-protocol-used-in-the-apache2-oidc-proxy>
- export OS_ACCESS_TOKEN_TYPE=<the-access-token-type-used-by-your-idp>
- export OS_DISCOVERY_ENDPOINT=<the-well-known-endpoint-of-the-idp>
-
- The corresponding command-line options look very similar::
-
- --os-project-name <project-name>
- --os-project-domain-name <project-domain-name>
- --os-auth-url <url-to-openstack-identity>
- --os-identity-api-version 3
- --os-auth-plugin openid
- --os-auth-type v3oidcpassword
- --os-username <username-in-idp>
- --os-password <password-in-idp>
- --os-identity-provider <the-desired-idp-in-keystone>
- --os-client-id <the-client-id-configured-in-the-idp>
- --os-client-secret <the-client-secred-configured-in-the-idp>
- --os-openid-scope <the-scopes-of-desired-attributes-to-claim-from-idp>
- --os-protocol <the-protocol-used-in-the-apache2-oidc-proxy>
- --os-access-token-type <the-access-token-type-used-by-your-idp>
- --os-discovery-endpoint <the-well-known-endpoint-of-the-idp>
-
- If a password is not provided above (in plaintext), you will be interactively
- prompted to provide one securely.
-
-
-Platform: UNKNOWN
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
@@ -159,3 +17,155 @@ Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
+License-File: LICENSE
+Requires-Dist: pbr!=2.1.0,>=2.0.0
+Requires-Dist: cryptography>=2.7
+Requires-Dist: cliff>=3.5.0
+Requires-Dist: iso8601>=0.1.11
+Requires-Dist: openstacksdk>=3.3.0
+Requires-Dist: osc-lib>=2.3.0
+Requires-Dist: oslo.i18n>=3.15.3
+Requires-Dist: python-keystoneclient>=3.22.0
+Requires-Dist: python-cinderclient>=3.3.0
+Requires-Dist: requests>=2.27.0
+Requires-Dist: stevedore>=2.0.1
+
+========================
+Team and repository tags
+========================
+
+.. image:: https://governance.openstack.org/tc/badges/python-openstackclient.svg
+ :target: https://governance.openstack.org/tc/reference/tags/index.html
+
+.. Change things from this point on
+
+===============
+OpenStackClient
+===============
+
+.. image:: https://img.shields.io/pypi/v/python-openstackclient.svg
+ :target: https://pypi.org/project/python-openstackclient/
+ :alt: Latest Version
+
+OpenStackClient (aka OSC) is a command-line client for OpenStack that brings
+the command set for Compute, Identity, Image, Network, Object Store and Block
+Storage APIs together in a single shell with a uniform command structure.
+
+The primary goal is to provide a unified shell command structure and a common
+language to describe operations in OpenStack.
+
+* `PyPi`_ - package installation
+* `Online Documentation`_
+* `Launchpad project`_ - bugs and feature requests
+* `Blueprints`_ - feature specifications (historical only)
+* `Source`_
+* `Developer`_ - getting started as a developer
+* `Contributing`_ - contributing code
+* `Testing`_ - testing code
+* IRC: #openstack-sdks on OFTC (irc.oftc.net)
+* License: Apache 2.0
+
+.. _PyPi: https://pypi.org/project/python-openstackclient
+.. _Online Documentation: https://docs.openstack.org/python-openstackclient/latest/
+.. _Blueprints: https://blueprints.launchpad.net/python-openstackclient
+.. _`Launchpad project`: https://bugs.launchpad.net/python-openstackclient
+.. _Source: https://opendev.org/openstack/python-openstackclient
+.. _Developer: https://docs.openstack.org/project-team-guide/project-setup/python.html
+.. _Contributing: https://docs.openstack.org/infra/manual/developers.html
+.. _Testing: https://docs.openstack.org/python-openstackclient/latest/contributor/developing.html#testing
+.. _Release Notes: https://docs.openstack.org/releasenotes/python-openstackclient
+
+Getting Started
+===============
+
+OpenStack Client can be installed from PyPI using pip::
+
+ pip install python-openstackclient
+
+There are a few variants on getting help. A list of global options and supported
+commands is shown with ``--help``::
+
+ openstack --help
+
+There is also a ``help`` command that can be used to get help text for a specific
+command::
+
+ openstack help
+ openstack help server create
+
+If you want to make changes to the OpenStackClient for testing and contribution,
+make any changes and then run::
+
+ python setup.py develop
+
+or::
+
+ pip install -e .
+
+Configuration
+=============
+
+The CLI is configured via environment variables and command-line
+options as listed in https://docs.openstack.org/python-openstackclient/latest/cli/authentication.html.
+
+Authentication using username/password is most commonly used:
+
+- For a local user, your configuration will look like the one below::
+
+ export OS_AUTH_URL=<url-to-openstack-identity>
+ export OS_IDENTITY_API_VERSION=3
+ export OS_PROJECT_NAME=<project-name>
+ export OS_PROJECT_DOMAIN_NAME=<project-domain-name>
+ export OS_USERNAME=<username>
+ export OS_USER_DOMAIN_NAME=<user-domain-name>
+ export OS_PASSWORD=<password> # (optional)
+
+ The corresponding command-line options look very similar::
+
+ --os-auth-url <url>
+ --os-identity-api-version 3
+ --os-project-name <project-name>
+ --os-project-domain-name <project-domain-name>
+ --os-username <username>
+ --os-user-domain-name <user-domain-name>
+ [--os-password <password>]
+
+- For a federated user, your configuration will look the so::
+
+ export OS_PROJECT_NAME=<project-name>
+ export OS_PROJECT_DOMAIN_NAME=<project-domain-name>
+ export OS_AUTH_URL=<url-to-openstack-identity>
+ export OS_IDENTITY_API_VERSION=3
+ export OS_AUTH_PLUGIN=openid
+ export OS_AUTH_TYPE=v3oidcpassword
+ export OS_USERNAME=<username-in-idp>
+ export OS_PASSWORD=<password-in-idp>
+ export OS_IDENTITY_PROVIDER=<the-desired-idp-in-keystone>
+ export OS_CLIENT_ID=<the-client-id-configured-in-the-idp>
+ export OS_CLIENT_SECRET=<the-client-secred-configured-in-the-idp>
+ export OS_OPENID_SCOPE=<the-scopes-of-desired-attributes-to-claim-from-idp>
+ export OS_PROTOCOL=<the-protocol-used-in-the-apache2-oidc-proxy>
+ export OS_ACCESS_TOKEN_TYPE=<the-access-token-type-used-by-your-idp>
+ export OS_DISCOVERY_ENDPOINT=<the-well-known-endpoint-of-the-idp>
+
+ The corresponding command-line options look very similar::
+
+ --os-project-name <project-name>
+ --os-project-domain-name <project-domain-name>
+ --os-auth-url <url-to-openstack-identity>
+ --os-identity-api-version 3
+ --os-auth-plugin openid
+ --os-auth-type v3oidcpassword
+ --os-username <username-in-idp>
+ --os-password <password-in-idp>
+ --os-identity-provider <the-desired-idp-in-keystone>
+ --os-client-id <the-client-id-configured-in-the-idp>
+ --os-client-secret <the-client-secred-configured-in-the-idp>
+ --os-openid-scope <the-scopes-of-desired-attributes-to-claim-from-idp>
+ --os-protocol <the-protocol-used-in-the-apache2-oidc-proxy>
+ --os-access-token-type <the-access-token-type-used-by-your-idp>
+ --os-discovery-endpoint <the-well-known-endpoint-of-the-idp>
+
+If a password is not provided above (in plaintext), you will be interactively
+prompted to provide one securely.
+
diff --git a/python_openstackclient.egg-info/SOURCES.txt b/python_openstackclient.egg-info/SOURCES.txt
index 62b5bf9..85e7038 100644
--- a/python_openstackclient.egg-info/SOURCES.txt
+++ b/python_openstackclient.egg-info/SOURCES.txt
@@ -712,6 +712,7 @@ python_openstackclient.egg-info/requires.txt
python_openstackclient.egg-info/top_level.txt
releasenotes/notes/.placeholder
releasenotes/notes/Add-default-security-group-rule-CRUD-2916568f829ea38c.yaml
+releasenotes/notes/Add-trusted-vif-to-the-port-0a0c76d9da8f3da0.yaml
releasenotes/notes/L3-conntrack-helper-bd0d9da041747e84.yaml
releasenotes/notes/Router-flavor-accepts-name-or-id-e9cecafcddf81cb2.yaml
releasenotes/notes/add-auto-and-none-as-nic-parameter-ed23a6e7f99f250d.yaml
@@ -830,6 +831,7 @@ releasenotes/notes/add-tag-support-server-add-port-7e30aa38202d0839.yaml
releasenotes/notes/add-tag-support-server-add-volume-278e79a22dd482f4.yaml
releasenotes/notes/add-trusted-certs-option-server-create-a660488407300f22.yaml
releasenotes/notes/add-virtio-forwarder-vnic-type-bad939c6a868b9e9.yaml
+releasenotes/notes/add-vlan_qinq-to-the-network-3556c094aeedc0de.yaml
releasenotes/notes/add-vol-service-get-set-log-commands-f9420e5061d994b5.yaml
releasenotes/notes/add-volume-attachment-commands-db2974c6460fa3bc.yaml
releasenotes/notes/add-volume-group-commands-b121d6ec7da9779a.yaml
@@ -1191,6 +1193,8 @@ releasenotes/notes/fix-flavor-props-formatting-d21e97745543caa7.yaml
releasenotes/notes/fix-image-create-from-volume-c573e553161605c4.yaml
releasenotes/notes/fix-network-rbac-create-d1f4de77ad2dd421.yaml
releasenotes/notes/fix-openstak-image-save-sdk-port-eb160e8ffc92e514.yaml
+releasenotes/notes/fix-restore-resp-e664a643a723cd2e.yaml
+releasenotes/notes/fix-show-backup-by-name-0759c55396be77a3.yaml
releasenotes/notes/fix-story-2007890-0974f3e69f26801e.yaml
releasenotes/notes/fix-story-2010775-953dbdf03b2b6746.yaml
releasenotes/notes/flavor-add-description-b618abd4a7fb6545.yaml
@@ -1229,9 +1233,11 @@ releasenotes/notes/migrate-agent-commands-1c50ffcb75f91418.yaml
releasenotes/notes/migrate-application-credential-to-sdk-c79d8dfc3c8e1d9f.yaml
releasenotes/notes/migrate-backup-commands-0becc8f18cf9737b.yaml
releasenotes/notes/migrate-create-server-image-to-sdk-e3d8077ffe05bb3d.yaml
+releasenotes/notes/migrate-credential-to-sdk-33a841847fe7d568.yaml
releasenotes/notes/migrate-host-list-show-to-sdk-9b80cd9b4196ab01.yaml
releasenotes/notes/migrate-host-set-438997eb6f81f2b1.yaml
releasenotes/notes/migrate-limits-show-f586c9762dfd7d0c.yaml
+releasenotes/notes/migrate-region-to-sdk-fbd27bceaa1db9dc.yaml
releasenotes/notes/migrate-resource-filter-commands-2a353edb965723d1.yaml
releasenotes/notes/migrate-role-assignment-to-sdk-e6e52bef467b4e4c.yaml
releasenotes/notes/migrate-server-add-network-add-port-to-sdk-7d81b25f59cfbec9.yaml
@@ -1248,7 +1254,9 @@ releasenotes/notes/migrate-server-start-stop-to-sdk-55edd4e1ff5e6ac7.yaml
releasenotes/notes/migrate-server-suspend-resume-to-sdk-fd1709336607b496.yaml
releasenotes/notes/migrate-server-volume-list-update-to-sdk-95b1d3063e46f813.yaml
releasenotes/notes/migrate-service-list-delete-set-to-sdk-920cbe0d210af565.yaml
+releasenotes/notes/migrate-service-provider-to-sdk-74dc48b227f21a05.yaml
releasenotes/notes/migrate-service-to-sdk-6ff62ebf7e41db7c.yaml
+releasenotes/notes/migrate-trust-to-sdk-9397c9cfddcb636a.yaml
releasenotes/notes/migrate-volume-attachment-commands-4309409bca1ca5d4.yaml
releasenotes/notes/migrate-volume-backend-commands-259e553e213c71b0.yaml
releasenotes/notes/migrate-volume-revert-to-sdk-1e399853d80ba5f8.yaml
@@ -1279,6 +1287,7 @@ releasenotes/notes/osc4-volume-470422e5a453310e.yaml
releasenotes/notes/pass_ssh_args-cf26a2ce26ccddaf.yaml
releasenotes/notes/port-device-profile-4a3bf800da21c778.yaml
releasenotes/notes/port-list-security-group-4af5d2e789174ff9.yaml
+releasenotes/notes/port_uplink_status_propagation_updatable-d1e155c19247b666.yaml
releasenotes/notes/project-cleanup-skip-resource-option-4f80db0d8cf36fdb.yaml
releasenotes/notes/properties-with-image-property-field.yaml-c51bf37c3106d6ff.yaml
releasenotes/notes/qos-min-pps-rule-bfe22cea1966c4a0.yaml
@@ -1313,6 +1322,7 @@ releasenotes/notes/router-subnet-469d095ae0bac884.yaml
releasenotes/notes/security-grp-json-fix.yaml-2af1f48a48034d64.yaml
releasenotes/notes/server-add-tag-63f9cd01dbd82d1b.yaml
releasenotes/notes/server-changes-3962541b6ebdbbd8.yaml
+releasenotes/notes/server-create-no-security-group-option-627697bddae429b1.yaml
releasenotes/notes/server-create-server-group-a5b630f2a64de28d.yaml
releasenotes/notes/server-description-ae9618fc09544cac.yaml
releasenotes/notes/server-group-create_rule_option-9f84e52f35e7c3ba.yaml
@@ -1368,6 +1378,7 @@ releasenotes/notes/use_sdk_for_image-f49d2df38e7d9f81.yaml
releasenotes/notes/versions-show-12a2443624c83048.yaml
releasenotes/notes/volume-attachment-create-output-fix-56515b8fcdd260b9.yaml
releasenotes/notes/volume-backend-c5faae0b31556a24.yaml
+releasenotes/notes/volume-backup-created-at-list-v3-47400b31be5143bc.yaml
releasenotes/notes/volume-backup-record-9f5987c45e294dc6.yaml
releasenotes/notes/volume-migrate-command-52cf6edd62fe17a7.yaml
releasenotes/notes/volume-type-extra-specs-22a22fcb6e269832.yaml
diff --git a/python_openstackclient.egg-info/entry_points.txt b/python_openstackclient.egg-info/entry_points.txt
index 630118f..45d6347 100644
--- a/python_openstackclient.egg-info/entry_points.txt
+++ b/python_openstackclient.egg-info/entry_points.txt
@@ -715,4 +715,3 @@ volume_type_set = openstackclient.volume.v3.volume_type:SetVolumeType
volume_type_show = openstackclient.volume.v3.volume_type:ShowVolumeType
volume_type_unset = openstackclient.volume.v3.volume_type:UnsetVolumeType
volume_unset = openstackclient.volume.v3.volume:UnsetVolume
-
diff --git a/python_openstackclient.egg-info/pbr.json b/python_openstackclient.egg-info/pbr.json
index c62adec..4bf5247 100644
--- a/python_openstackclient.egg-info/pbr.json
+++ b/python_openstackclient.egg-info/pbr.json
@@ -1 +1 @@
-{"git_version": "7c6b47b4", "is_release": true} \ No newline at end of file
+{"git_version": "4b7e32ca", "is_release": true} \ No newline at end of file
diff --git a/python_openstackclient.egg-info/requires.txt b/python_openstackclient.egg-info/requires.txt
index b79129e..66146e4 100644
--- a/python_openstackclient.egg-info/requires.txt
+++ b/python_openstackclient.egg-info/requires.txt
@@ -1,11 +1,11 @@
-cliff>=3.5.0
+pbr!=2.1.0,>=2.0.0
cryptography>=2.7
+cliff>=3.5.0
iso8601>=0.1.11
openstacksdk>=3.3.0
osc-lib>=2.3.0
oslo.i18n>=3.15.3
-pbr!=2.1.0,>=2.0.0
-python-cinderclient>=3.3.0
python-keystoneclient>=3.22.0
+python-cinderclient>=3.3.0
requests>=2.27.0
stevedore>=2.0.1