openstack.shared_file_system.v2.user_message
updated: 2023-02-22 09:10
openstack.shared_file_system.v2.user_message
The UserMessage Class
The UserMessage
class inherits from
Resource
.
-
class openstack.shared_file_system.v2.user_message.UserMessage(_synchronized=False, connection=None, **attrs)
The base resource
- Parameters:
_synchronized (bool) – This is not intended to be used directly. See
new()
and
existing()
.
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.
-
resource_key = 'message'
Singular form of key for resource.
-
resources_key = 'messages'
Plural form of key for resource.
-
base_path = '/messages'
The base part of the URI for this resource.
-
allow_fetch = True
Allow get operation for this resource.
-
allow_commit = False
Allow update operation for this resource.
-
allow_delete = True
Allow delete operation for this resource.
-
allow_list = True
Allow list operation for this resource.
-
allow_head = False
Allow head operation for this resource.
-
action_id
Properties
The action ID of the user message
-
created_at
Indicate when the user message was created
-
detail_id
The detail ID of the user message
-
expires_at
Indicate when the share message expires
-
message_level
The message level of the user message
-
project_id
The project ID of the user message
-
request_id
The request ID of the user message
-
resource_id
The resource ID of the user message
-
resource_type
The resource type of the user message
-
user_message
The message for the user message
updated: 2023-02-22 09:10