# coding=utf-8
r"""
This code was generated by
\ / _ _ _| _ _
| (_)\/(_)(_|\/| |(/_ v1.0.0
/ /
"""
from twilio.base import values
from twilio.base.instance_context import InstanceContext
from twilio.base.instance_resource import InstanceResource
from twilio.base.list_resource import ListResource
from twilio.base.page import Page
[docs]class RecordingSettingsList(ListResource):
def __init__(self, version):
"""
Initialize the RecordingSettingsList
:param Version version: Version that contains the resource
:returns: twilio.rest.video.v1.recording_settings.RecordingSettingsList
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsList
"""
super(RecordingSettingsList, self).__init__(version)
# Path Solution
self._solution = {}
[docs] def get(self):
"""
Constructs a RecordingSettingsContext
:returns: twilio.rest.video.v1.recording_settings.RecordingSettingsContext
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsContext
"""
return RecordingSettingsContext(self._version, )
def __call__(self):
"""
Constructs a RecordingSettingsContext
:returns: twilio.rest.video.v1.recording_settings.RecordingSettingsContext
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsContext
"""
return RecordingSettingsContext(self._version, )
def __repr__(self):
"""
Provide a friendly representation
:returns: Machine friendly representation
:rtype: str
"""
return '<Twilio.Video.V1.RecordingSettingsList>'
[docs]class RecordingSettingsPage(Page):
def __init__(self, version, response, solution):
"""
Initialize the RecordingSettingsPage
:param Version version: Version that contains the resource
:param Response response: Response from the API
:returns: twilio.rest.video.v1.recording_settings.RecordingSettingsPage
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsPage
"""
super(RecordingSettingsPage, self).__init__(version, response)
# Path Solution
self._solution = solution
[docs] def get_instance(self, payload):
"""
Build an instance of RecordingSettingsInstance
:param dict payload: Payload response from the API
:returns: twilio.rest.video.v1.recording_settings.RecordingSettingsInstance
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsInstance
"""
return RecordingSettingsInstance(self._version, payload, )
def __repr__(self):
"""
Provide a friendly representation
:returns: Machine friendly representation
:rtype: str
"""
return '<Twilio.Video.V1.RecordingSettingsPage>'
[docs]class RecordingSettingsContext(InstanceContext):
def __init__(self, version):
"""
Initialize the RecordingSettingsContext
:param Version version: Version that contains the resource
:returns: twilio.rest.video.v1.recording_settings.RecordingSettingsContext
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsContext
"""
super(RecordingSettingsContext, self).__init__(version)
# Path Solution
self._solution = {}
self._uri = '/RecordingSettings/Default'.format(**self._solution)
[docs] def fetch(self):
"""
Fetch the RecordingSettingsInstance
:returns: The fetched RecordingSettingsInstance
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsInstance
"""
payload = self._version.fetch(method='GET', uri=self._uri, )
return RecordingSettingsInstance(self._version, payload, )
[docs] def create(self, friendly_name, aws_credentials_sid=values.unset,
encryption_key_sid=values.unset, aws_s3_url=values.unset,
aws_storage_enabled=values.unset, encryption_enabled=values.unset):
"""
Create the RecordingSettingsInstance
:param unicode friendly_name: A string to describe the resource
:param unicode aws_credentials_sid: The SID of the stored Credential resource
:param unicode encryption_key_sid: The SID of the Public Key resource to use for encryption
:param unicode aws_s3_url: The URL of the AWS S3 bucket where the recordings should be stored
:param bool aws_storage_enabled: Whether all recordings should be written to the aws_s3_url
:param bool encryption_enabled: Whether all recordings should be stored in an encrypted form
:returns: The created RecordingSettingsInstance
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsInstance
"""
data = values.of({
'FriendlyName': friendly_name,
'AwsCredentialsSid': aws_credentials_sid,
'EncryptionKeySid': encryption_key_sid,
'AwsS3Url': aws_s3_url,
'AwsStorageEnabled': aws_storage_enabled,
'EncryptionEnabled': encryption_enabled,
})
payload = self._version.create(method='POST', uri=self._uri, data=data, )
return RecordingSettingsInstance(self._version, payload, )
def __repr__(self):
"""
Provide a friendly representation
:returns: Machine friendly representation
:rtype: str
"""
context = ' '.join('{}={}'.format(k, v) for k, v in self._solution.items())
return '<Twilio.Video.V1.RecordingSettingsContext {}>'.format(context)
[docs]class RecordingSettingsInstance(InstanceResource):
def __init__(self, version, payload):
"""
Initialize the RecordingSettingsInstance
:returns: twilio.rest.video.v1.recording_settings.RecordingSettingsInstance
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsInstance
"""
super(RecordingSettingsInstance, self).__init__(version)
# Marshaled Properties
self._properties = {
'account_sid': payload.get('account_sid'),
'friendly_name': payload.get('friendly_name'),
'aws_credentials_sid': payload.get('aws_credentials_sid'),
'aws_s3_url': payload.get('aws_s3_url'),
'aws_storage_enabled': payload.get('aws_storage_enabled'),
'encryption_key_sid': payload.get('encryption_key_sid'),
'encryption_enabled': payload.get('encryption_enabled'),
'url': payload.get('url'),
}
# Context
self._context = None
self._solution = {}
@property
def _proxy(self):
"""
Generate an instance context for the instance, the context is capable of
performing various actions. All instance actions are proxied to the context
:returns: RecordingSettingsContext for this RecordingSettingsInstance
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsContext
"""
if self._context is None:
self._context = RecordingSettingsContext(self._version, )
return self._context
@property
def account_sid(self):
"""
:returns: The SID of the Account that created the resource
:rtype: unicode
"""
return self._properties['account_sid']
@property
def friendly_name(self):
"""
:returns: The string that you assigned to describe the resource
:rtype: unicode
"""
return self._properties['friendly_name']
@property
def aws_credentials_sid(self):
"""
:returns: The SID of the stored Credential resource
:rtype: unicode
"""
return self._properties['aws_credentials_sid']
@property
def aws_s3_url(self):
"""
:returns: The URL of the AWS S3 bucket where the recordings are stored
:rtype: unicode
"""
return self._properties['aws_s3_url']
@property
def aws_storage_enabled(self):
"""
:returns: Whether all recordings are written to the aws_s3_url
:rtype: bool
"""
return self._properties['aws_storage_enabled']
@property
def encryption_key_sid(self):
"""
:returns: The SID of the Public Key resource used for encryption
:rtype: unicode
"""
return self._properties['encryption_key_sid']
@property
def encryption_enabled(self):
"""
:returns: Whether all recordings are stored in an encrypted form
:rtype: bool
"""
return self._properties['encryption_enabled']
@property
def url(self):
"""
:returns: The absolute URL of the resource
:rtype: unicode
"""
return self._properties['url']
[docs] def fetch(self):
"""
Fetch the RecordingSettingsInstance
:returns: The fetched RecordingSettingsInstance
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsInstance
"""
return self._proxy.fetch()
[docs] def create(self, friendly_name, aws_credentials_sid=values.unset,
encryption_key_sid=values.unset, aws_s3_url=values.unset,
aws_storage_enabled=values.unset, encryption_enabled=values.unset):
"""
Create the RecordingSettingsInstance
:param unicode friendly_name: A string to describe the resource
:param unicode aws_credentials_sid: The SID of the stored Credential resource
:param unicode encryption_key_sid: The SID of the Public Key resource to use for encryption
:param unicode aws_s3_url: The URL of the AWS S3 bucket where the recordings should be stored
:param bool aws_storage_enabled: Whether all recordings should be written to the aws_s3_url
:param bool encryption_enabled: Whether all recordings should be stored in an encrypted form
:returns: The created RecordingSettingsInstance
:rtype: twilio.rest.video.v1.recording_settings.RecordingSettingsInstance
"""
return self._proxy.create(
friendly_name,
aws_credentials_sid=aws_credentials_sid,
encryption_key_sid=encryption_key_sid,
aws_s3_url=aws_s3_url,
aws_storage_enabled=aws_storage_enabled,
encryption_enabled=encryption_enabled,
)
def __repr__(self):
"""
Provide a friendly representation
:returns: Machine friendly representation
:rtype: str
"""
context = ' '.join('{}={}'.format(k, v) for k, v in self._solution.items())
return '<Twilio.Video.V1.RecordingSettingsInstance {}>'.format(context)