2736d4adcc
Only 'project_id' in the path is required, other parameters are not required Partial-Bug: #1760644 Change-Id: I8f5735f8b828f33c95139e5a963f56b5b6e9105a
161 lines
3.7 KiB
ReStructuredText
161 lines
3.7 KiB
ReStructuredText
.. -*- rst -*-
|
|
|
|
=======================================
|
|
Manage and unmanage shares (DEPRECATED)
|
|
=======================================
|
|
|
|
Allows bringing shared file systems under service management.
|
|
|
|
|
|
Manage share (DEPRECATED)
|
|
=========================
|
|
|
|
.. warning::
|
|
|
|
This API is deprecated starting with microversion 2.7 and requests to
|
|
this API will fail with a 404 starting from microversion 2.7. Use
|
|
`Share Manage API <#manage-share-since-api-v2-7>`_ instead of this API
|
|
from version 2.7.
|
|
|
|
.. rest_method:: POST /v2/{project_id}/os-share-manage
|
|
|
|
Use this API to bring a share under the management of the Shared File
|
|
Systems service. In the service, the share will be represented as a resource
|
|
in the database. It can have a user defined name and description.
|
|
|
|
Administrator only. Use the ``policy.json`` file to grant permissions for this
|
|
action to other roles.
|
|
|
|
Response codes
|
|
--------------
|
|
|
|
.. rest_status_code:: success status.yaml
|
|
|
|
- 200
|
|
|
|
.. rest_status_code:: error status.yaml
|
|
|
|
- 400
|
|
- 401
|
|
- 403
|
|
- 404
|
|
- 409
|
|
|
|
Request
|
|
-------
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- project_id: project_id_path
|
|
- share: share
|
|
- protocol: protocol
|
|
- name: name_request
|
|
- display_name: display_name_request
|
|
- share_type: share_type_2
|
|
- driver_options: driver_options
|
|
- export_path: export_path
|
|
- service_host: service_host
|
|
- is_public: is_public
|
|
- description: description_request
|
|
- display_description: display_description_request
|
|
|
|
Request example
|
|
---------------
|
|
|
|
.. literalinclude:: samples/share-manage-request.json
|
|
:language: javascript
|
|
|
|
Response parameters
|
|
-------------------
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- share: share
|
|
- links: links
|
|
- availability_zone: availability_zone_1
|
|
- share_network_id: share_network_id
|
|
- export_locations: export_locations
|
|
- share_server_id: share_server_id
|
|
- snapshot_id: snapshot_id_share_response
|
|
- id: id_4
|
|
- size: size_2
|
|
- share_type: share_type_1
|
|
- share_type_name: share_type_name
|
|
- has_replicas: has_replicas
|
|
- replication_type: replication_type
|
|
- export_location: export_location
|
|
- project_id: project_id
|
|
- metadata: metadata
|
|
- status: status_8
|
|
- description: description
|
|
- host: host_1
|
|
- is_public: is_public
|
|
- snapshot_support: snapshot_support
|
|
- name: name
|
|
- created_at: created_at
|
|
- share_proto: share_proto
|
|
- volume_type: volume_type
|
|
|
|
Response example
|
|
----------------
|
|
|
|
.. literalinclude:: samples/share-manage-response.json
|
|
:language: javascript
|
|
|
|
|
|
Unmanage share (DEPRECATED)
|
|
===========================
|
|
|
|
.. warning::
|
|
|
|
This API is deprecated starting with microversion 2.7 and requests to
|
|
this API will fail with a 404 starting from microversion 2.7. Use
|
|
`Share Unmanage API <#unmanage-share-since-api-v2-7>`_ instead of this
|
|
API from version 2.7.
|
|
|
|
.. rest_method:: POST /v2/{project_id}/os-share-unmanage/{share_id}/unmanage
|
|
|
|
Use this API to remove a share from the management of the Shared File
|
|
Systems service without deleting the share.
|
|
|
|
Administrator only. Use the ``policy.json`` file to grant permissions for this
|
|
action to other roles.
|
|
|
|
|
|
Preconditions:
|
|
|
|
- This API does not support unmanaging shares that are created on top
|
|
of share servers (i.e. created with share networks).
|
|
- You should remove any snapshots and share replicas before attempting to
|
|
unmanage a share.
|
|
|
|
|
|
Response codes
|
|
--------------
|
|
|
|
.. rest_status_code:: success status.yaml
|
|
|
|
- 202
|
|
|
|
.. rest_status_code:: error status.yaml
|
|
|
|
- 400
|
|
- 401
|
|
- 403
|
|
- 404
|
|
- 409
|
|
|
|
Request
|
|
-------
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- project_id: project_id_path
|
|
- share_id: share_id
|
|
|
|
|
|
Response parameters
|
|
-------------------
|
|
|
|
There is no body content for the response.
|