summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2015-02-26 21:36:32 -0500
committerBrian Coca <bcoca@ansible.com>2015-02-26 21:36:32 -0500
commitf38a8561a509c270970cf149dbe1063ddefabb41 (patch)
treee40abc7462fd18f58bad485a2a7b50f11e6174e5
parent0cc15866c2c422093c5228f25b49989902f65d97 (diff)
parentcae8241ea71abfa5e57f5557bb98448badfbca61 (diff)
downloadansible-modules-core-f38a8561a509c270970cf149dbe1063ddefabb41.tar.gz
Merge pull request #860 from emonty/add-deprecation-notice
Add deprecation notices for old OpenStack modules
-rw-r--r--cloud/openstack/_glance_image.py1
-rw-r--r--cloud/openstack/_keystone_user.py1
-rw-r--r--cloud/openstack/_nova_compute.py1
-rw-r--r--cloud/openstack/_nova_keypair.py1
-rw-r--r--cloud/openstack/_quantum_floating_ip.py1
-rw-r--r--cloud/openstack/_quantum_floating_ip_associate.py1
-rw-r--r--cloud/openstack/_quantum_network.py1
-rw-r--r--cloud/openstack/_quantum_router_gateway.py1
-rw-r--r--cloud/openstack/_quantum_router_interface.py1
-rw-r--r--cloud/openstack/_quantum_subnet.py1
10 files changed, 10 insertions, 0 deletions
diff --git a/cloud/openstack/_glance_image.py b/cloud/openstack/_glance_image.py
index 6425fa2c..947b984a 100644
--- a/cloud/openstack/_glance_image.py
+++ b/cloud/openstack/_glance_image.py
@@ -20,6 +20,7 @@ DOCUMENTATION = '''
---
module: glance_image
version_added: "1.2"
+deprecated: Deprecated in 1.9. Use os_image instead
short_description: Add/Delete images from glance
description:
- Add or Remove images from the glance repository.
diff --git a/cloud/openstack/_keystone_user.py b/cloud/openstack/_keystone_user.py
index 4af254bf..9bc5cc95 100644
--- a/cloud/openstack/_keystone_user.py
+++ b/cloud/openstack/_keystone_user.py
@@ -7,6 +7,7 @@ DOCUMENTATION = '''
---
module: keystone_user
version_added: "1.2"
+deprecated: Deprecated in 1.9. Use os_keystone_user instead
short_description: Manage OpenStack Identity (keystone) users, tenants and roles
description:
- Manage users,tenants, roles from OpenStack.
diff --git a/cloud/openstack/_nova_compute.py b/cloud/openstack/_nova_compute.py
index e4e1cae6..0b911e76 100644
--- a/cloud/openstack/_nova_compute.py
+++ b/cloud/openstack/_nova_compute.py
@@ -33,6 +33,7 @@ DOCUMENTATION = '''
---
module: nova_compute
version_added: "1.2"
+deprecated: Deprecated in 1.9. Use os_server instead
short_description: Create/Delete VMs from OpenStack
description:
- Create or Remove virtual machines from Openstack.
diff --git a/cloud/openstack/_nova_keypair.py b/cloud/openstack/_nova_keypair.py
index c7c9affb..14d3f242 100644
--- a/cloud/openstack/_nova_keypair.py
+++ b/cloud/openstack/_nova_keypair.py
@@ -28,6 +28,7 @@ DOCUMENTATION = '''
---
module: nova_keypair
version_added: "1.2"
+deprecated: Deprecated in 1.9. Use os_keypair instead
short_description: Add/Delete key pair from nova
description:
- Add or Remove key pair from nova .
diff --git a/cloud/openstack/_quantum_floating_ip.py b/cloud/openstack/_quantum_floating_ip.py
index 17f78eff..821e8b60 100644
--- a/cloud/openstack/_quantum_floating_ip.py
+++ b/cloud/openstack/_quantum_floating_ip.py
@@ -31,6 +31,7 @@ DOCUMENTATION = '''
---
module: quantum_floating_ip
version_added: "1.2"
+deprecated: Deprecated in 1.9. Use os_floating_ip instead
short_description: Add/Remove floating IP from an instance
description:
- Add or Remove a floating IP to an instance
diff --git a/cloud/openstack/_quantum_floating_ip_associate.py b/cloud/openstack/_quantum_floating_ip_associate.py
index 91df2690..88720529 100644
--- a/cloud/openstack/_quantum_floating_ip_associate.py
+++ b/cloud/openstack/_quantum_floating_ip_associate.py
@@ -31,6 +31,7 @@ DOCUMENTATION = '''
---
module: quantum_floating_ip_associate
version_added: "1.2"
+deprecated: Deprecated in 1.9. Use os_floating_ip instead
short_description: Associate or disassociate a particular floating IP with an instance
description:
- Associates or disassociates a specific floating IP with a particular instance
diff --git a/cloud/openstack/_quantum_network.py b/cloud/openstack/_quantum_network.py
index 6b0c66e7..7c66af07 100644
--- a/cloud/openstack/_quantum_network.py
+++ b/cloud/openstack/_quantum_network.py
@@ -29,6 +29,7 @@ DOCUMENTATION = '''
---
module: quantum_network
version_added: "1.4"
+deprecated: Deprecated in 1.9. Use os_network instead
short_description: Creates/Removes networks from OpenStack
description:
- Add or Remove network from OpenStack.
diff --git a/cloud/openstack/_quantum_router_gateway.py b/cloud/openstack/_quantum_router_gateway.py
index 5de19fd4..cbf6a841 100644
--- a/cloud/openstack/_quantum_router_gateway.py
+++ b/cloud/openstack/_quantum_router_gateway.py
@@ -28,6 +28,7 @@ DOCUMENTATION = '''
---
module: quantum_router_gateway
version_added: "1.2"
+deprecated: Deprecated in 1.9. Use os_router_gateway instead
short_description: set/unset a gateway interface for the router with the specified external network
description:
- Creates/Removes a gateway interface from the router, used to associate a external network with a router to route external traffic.
diff --git a/cloud/openstack/_quantum_router_interface.py b/cloud/openstack/_quantum_router_interface.py
index c5828ad4..3e758d7d 100644
--- a/cloud/openstack/_quantum_router_interface.py
+++ b/cloud/openstack/_quantum_router_interface.py
@@ -27,6 +27,7 @@ except ImportError:
DOCUMENTATION = '''
---
module: quantum_router_interface
+deprecated: Deprecated in 1.9. Use os_router_interface instead
version_added: "1.2"
short_description: Attach/Dettach a subnet's interface to a router
description:
diff --git a/cloud/openstack/_quantum_subnet.py b/cloud/openstack/_quantum_subnet.py
index e38b2c94..2d485c15 100644
--- a/cloud/openstack/_quantum_subnet.py
+++ b/cloud/openstack/_quantum_subnet.py
@@ -29,6 +29,7 @@ DOCUMENTATION = '''
---
module: quantum_subnet
version_added: "1.2"
+deprecated: Deprecated in 1.9. Use os_subnet instead
short_description: Add/remove subnet from a network
description:
- Add/remove subnet from a network