docs: Fix Sphinx errors in docstrings
This commit is contained in:
parent
a02538fdc3
commit
3fdc783850
@ -147,8 +147,7 @@ def validate_settings(ucfg, provider_name, settings, image_name=None):
|
||||
|
||||
:param ucfg: upload config
|
||||
:type ucfg: object
|
||||
:param provider_name: the name of the provider to validate the settings
|
||||
against
|
||||
:param provider_name: the name of the provider to validate the settings against
|
||||
:type provider_name: str
|
||||
:param settings: the settings to validate
|
||||
:type settings: dict
|
||||
|
@ -91,11 +91,9 @@ def get_upload(ucfg, uuid, ignore_missing=False, ignore_corrupt=False):
|
||||
:type ucfg: object
|
||||
:param uuid: UUID of the upload to get
|
||||
:type uuid: str
|
||||
:param ignore_missing: if True, don't raise a RuntimeError when the
|
||||
specified upload is missing, instead just return None
|
||||
:param ignore_missing: if True, don't raise a RuntimeError when the specified upload is missing, instead just return None
|
||||
:type ignore_missing: bool
|
||||
:param ignore_corrupt: if True, don't raise a RuntimeError when the
|
||||
specified upload could not be deserialized, instead just return None
|
||||
:param ignore_corrupt: if True, don't raise a RuntimeError when the specified upload could not be deserialized, instead just return None
|
||||
:type ignore_corrupt: bool
|
||||
:returns: the upload object or None
|
||||
:rtype: Upload or None
|
||||
@ -146,13 +144,11 @@ def create_upload(ucfg, provider_name, image_name, settings):
|
||||
|
||||
:param ucfg: upload config
|
||||
:type ucfg: object
|
||||
:param provider_name: the name of the cloud provider to upload to, e.g.
|
||||
"azure"
|
||||
:param provider_name: the name of the cloud provider to upload to, e.g. "azure"
|
||||
:type provider_name: str
|
||||
:param image_name: what to name the image in the cloud
|
||||
:type image_name: str
|
||||
:param settings: settings to pass to the upload, specific to the cloud
|
||||
provider
|
||||
:param settings: settings to pass to the upload, specific to the cloud provider
|
||||
:type settings: dict
|
||||
:returns: the created upload object
|
||||
:rtype: Upload
|
||||
|
@ -832,7 +832,7 @@ def v1_upload_log(upload_uuid):
|
||||
{
|
||||
"status": true,
|
||||
"upload_id": "b637c411-9d9d-4279-b067-6c8d38e3b211",
|
||||
"log": "\n __________________\r\n< PLAY [localhost] >..."
|
||||
"log": "< PLAY [localhost] >..."
|
||||
}
|
||||
"""
|
||||
if VALID_API_STRING.match(upload_uuid) is None:
|
||||
|
Loading…
Reference in New Issue
Block a user