openstack.key_manager.v1.secret¶
The Secret Class¶
The Secret
class inherits from Resource
.
- class openstack.key_manager.v1.secret.Secret(_synchronized=False, connection=None, **attrs)¶
The base resource
- Parameters:
_synchronized (bool) – This is not intended to be used directly. See
new()
andexisting()
.connection (openstack.connection.Connection) – Reference to the Connection being used. Defaults to None to allow Resource objects to be used without an active Connection, such as in unit tests. Use of
self._connection
in Resource code should protect itself with a check for None.
- resources_key = 'secrets'¶
Plural form of key for resource.
- base_path = '/secrets'¶
The base part of the URI for this resource.
- allow_create = True¶
Allow create operation for this resource.
- allow_fetch = True¶
Allow get operation for this resource.
- allow_commit = True¶
Allow update operation for this resource.
- allow_delete = True¶
Allow delete operation for this resource.
- allow_list = True¶
Allow list operation for this resource.
- algorithm¶
Metadata provided by a user or system for informational purposes
- bit_length¶
Metadata provided by a user or system for informational purposes. Value must be greater than zero.
- content_types¶
A list of content types
- expires_at¶
Once this timestamp has past, the secret will no longer be available.
- created_at¶
Timestamp of when the secret was created.
- mode¶
The type/mode of the algorithm associated with the secret information.
- name¶
The name of the secret set by the user
- secret_ref¶
A URI to the sercret
- secret_type¶
Used to indicate the type of secret being stored.
- status¶
The status of this secret
- updated_at¶
A timestamp when this secret was updated.
- payload¶
The secret’s data to be stored. payload_content_type must also be supplied if payload is included. (optional)
- payload_content_type¶
The media type for the content of the payload. (required if payload is included)
- payload_content_encoding¶
The encoding used for the payload to be able to include it in the JSON request. Currently only base64 is supported. (required if payload is encoded)
- fetch(session, requires_id=True, base_path=None, error_message=None, skip_cache=False)¶
Get a remote resource based on this instance.
- Parameters:
session (
Adapter
) – The session to use for making this request.requires_id (boolean) – A boolean indicating whether resource ID should be part of the requested URI.
base_path (str) – Base part of the URI for fetching resources, if different from
base_path
.error_message (str) – An Error message to be returned if requested object does not exist.
skip_cache (bool) – A boolean indicating whether optional API cache should be skipped for this invocation.
resource_response_key (str) – Overrides the usage of self.resource_key when processing the response body.
microversion (str) – API version to override the negotiated one.
params (dict) – Additional parameters that can be consumed.
- Returns:
This
Resource
instance.- Raises:
MethodNotSupported
ifResource.allow_fetch
is not set toTrue
.- Raises:
ResourceNotFound
if the resource was not found.