twilio.rest.preview.sync.service.sync_list package¶
Submodules¶
twilio.rest.preview.sync.service.sync_list.sync_list_item module¶
This code was generated by / _ _ _| _ _
(_)/(_)(_|/| |(/_ v1.0.0 / /
-
class
twilio.rest.preview.sync.service.sync_list.sync_list_item.
SyncListItemContext
(version, service_sid, list_sid, index)[source]¶ Bases:
twilio.base.instance_context.InstanceContext
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
delete
(if_match=<object object>)[source]¶ Deletes the SyncListItemInstance
Parameters: if_match (unicode) – The If-Match HTTP request header Returns: True if delete succeeds, False otherwise Return type: bool
-
fetch
()[source]¶ Fetch the SyncListItemInstance
Returns: The fetched SyncListItemInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance
-
update
(data, if_match=<object object>)[source]¶ Update the SyncListItemInstance
Parameters: - data (dict) – The data
- if_match (unicode) – The If-Match HTTP request header
Returns: The updated SyncListItemInstance
Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance
-
-
class
twilio.rest.preview.sync.service.sync_list.sync_list_item.
SyncListItemInstance
(version, payload, service_sid, list_sid, index=None)[source]¶ Bases:
twilio.base.instance_resource.InstanceResource
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
account_sid
¶ Returns: The account_sid Return type: unicode
-
created_by
¶ Returns: The created_by Return type: unicode
-
date_created
¶ Returns: The date_created Return type: datetime
-
date_updated
¶ Returns: The date_updated Return type: datetime
-
delete
(if_match=<object object>)[source]¶ Deletes the SyncListItemInstance
Parameters: if_match (unicode) – The If-Match HTTP request header Returns: True if delete succeeds, False otherwise Return type: bool
-
fetch
()[source]¶ Fetch the SyncListItemInstance
Returns: The fetched SyncListItemInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance
-
index
¶ Returns: The index Return type: unicode
-
list_sid
¶ Returns: The list_sid Return type: unicode
-
revision
¶ Returns: The revision Return type: unicode
-
service_sid
¶ Returns: The service_sid Return type: unicode
-
update
(data, if_match=<object object>)[source]¶ Update the SyncListItemInstance
Parameters: - data (dict) – The data
- if_match (unicode) – The If-Match HTTP request header
Returns: The updated SyncListItemInstance
Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance
-
url
¶ Returns: The url Return type: unicode
-
-
class
twilio.rest.preview.sync.service.sync_list.sync_list_item.
SyncListItemList
(version, service_sid, list_sid)[source]¶ Bases:
twilio.base.list_resource.ListResource
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
create
(data)[source]¶ Create the SyncListItemInstance
Parameters: data (dict) – The data Returns: The created SyncListItemInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance
-
get
(index)[source]¶ Constructs a SyncListItemContext
Parameters: index – The index Returns: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemContext Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemContext
-
get_page
(target_url)[source]¶ Retrieve a specific page of SyncListItemInstance records from the API. Request is executed immediately
Parameters: target_url (str) – API-generated URL for the requested results page Returns: Page of SyncListItemInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemPage
-
list
(order=<object object>, from_=<object object>, bounds=<object object>, limit=None, page_size=None)[source]¶ Lists SyncListItemInstance records from the API as a list. Unlike stream(), this operation is eager and will load limit records into memory before returning.
Parameters: - order (SyncListItemInstance.QueryResultOrder) – The order
- from (unicode) – The from
- bounds (SyncListItemInstance.QueryFromBoundType) – The bounds
- limit (int) – Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit
- page_size (int) – Number of records to fetch per request, when not set will use the default value of 50 records. If no page_size is defined but a limit is defined, list() will attempt to read the limit with the most efficient page size, i.e. min(limit, 1000)
Returns: Generator that will yield up to limit results
Return type: list[twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance]
-
page
(order=<object object>, from_=<object object>, bounds=<object object>, page_token=<object object>, page_number=<object object>, page_size=<object object>)[source]¶ Retrieve a single page of SyncListItemInstance records from the API. Request is executed immediately
Parameters: - order (SyncListItemInstance.QueryResultOrder) – The order
- from (unicode) – The from
- bounds (SyncListItemInstance.QueryFromBoundType) – The bounds
- page_token (str) – PageToken provided by the API
- page_number (int) – Page Number, this value is simply for client state
- page_size (int) – Number of records to return, defaults to 50
Returns: Page of SyncListItemInstance
Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemPage
-
stream
(order=<object object>, from_=<object object>, bounds=<object object>, limit=None, page_size=None)[source]¶ Streams SyncListItemInstance records from the API as a generator stream. This operation lazily loads records as efficiently as possible until the limit is reached. The results are returned as a generator, so this operation is memory efficient.
Parameters: - order (SyncListItemInstance.QueryResultOrder) – The order
- from (unicode) – The from
- bounds (SyncListItemInstance.QueryFromBoundType) – The bounds
- limit (int) – Upper limit for the number of records to return. stream() guarantees to never return more than limit. Default is no limit
- page_size (int) – Number of records to fetch per request, when not set will use the default value of 50 records. If no page_size is defined but a limit is defined, stream() will attempt to read the limit with the most efficient page size, i.e. min(limit, 1000)
Returns: Generator that will yield up to limit results
Return type: list[twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance]
-
-
class
twilio.rest.preview.sync.service.sync_list.sync_list_item.
SyncListItemPage
(version, response, solution)[source]¶ Bases:
twilio.base.page.Page
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
get_instance
(payload)[source]¶ Build an instance of SyncListItemInstance
Parameters: payload (dict) – Payload response from the API Returns: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemInstance
-
twilio.rest.preview.sync.service.sync_list.sync_list_permission module¶
This code was generated by / _ _ _| _ _
(_)/(_)(_|/| |(/_ v1.0.0 / /
-
class
twilio.rest.preview.sync.service.sync_list.sync_list_permission.
SyncListPermissionContext
(version, service_sid, list_sid, identity)[source]¶ Bases:
twilio.base.instance_context.InstanceContext
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
delete
()[source]¶ Deletes the SyncListPermissionInstance
Returns: True if delete succeeds, False otherwise Return type: bool
-
fetch
()[source]¶ Fetch the SyncListPermissionInstance
Returns: The fetched SyncListPermissionInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionInstance
-
update
(read, write, manage)[source]¶ Update the SyncListPermissionInstance
Parameters: Returns: The updated SyncListPermissionInstance
Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionInstance
-
-
class
twilio.rest.preview.sync.service.sync_list.sync_list_permission.
SyncListPermissionInstance
(version, payload, service_sid, list_sid, identity=None)[source]¶ Bases:
twilio.base.instance_resource.InstanceResource
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
account_sid
¶ Returns: Twilio Account SID. Return type: unicode
-
delete
()[source]¶ Deletes the SyncListPermissionInstance
Returns: True if delete succeeds, False otherwise Return type: bool
-
fetch
()[source]¶ Fetch the SyncListPermissionInstance
Returns: The fetched SyncListPermissionInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionInstance
-
identity
¶ Returns: Identity of the user to whom the Sync List Permission applies. Return type: unicode
-
list_sid
¶ Returns: Sync List SID. Return type: unicode
-
service_sid
¶ Returns: Sync Service Instance SID. Return type: unicode
-
update
(read, write, manage)[source]¶ Update the SyncListPermissionInstance
Parameters: Returns: The updated SyncListPermissionInstance
Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionInstance
-
url
¶ Returns: URL of this Sync List Permission. Return type: unicode
-
-
class
twilio.rest.preview.sync.service.sync_list.sync_list_permission.
SyncListPermissionList
(version, service_sid, list_sid)[source]¶ Bases:
twilio.base.list_resource.ListResource
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
get
(identity)[source]¶ Constructs a SyncListPermissionContext
Parameters: identity – Identity of the user to whom the Sync List Permission applies. Returns: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionContext Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionContext
-
get_page
(target_url)[source]¶ Retrieve a specific page of SyncListPermissionInstance records from the API. Request is executed immediately
Parameters: target_url (str) – API-generated URL for the requested results page Returns: Page of SyncListPermissionInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionPage
-
list
(limit=None, page_size=None)[source]¶ Lists SyncListPermissionInstance records from the API as a list. Unlike stream(), this operation is eager and will load limit records into memory before returning.
Parameters: - limit (int) – Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit
- page_size (int) – Number of records to fetch per request, when not set will use the default value of 50 records. If no page_size is defined but a limit is defined, list() will attempt to read the limit with the most efficient page size, i.e. min(limit, 1000)
Returns: Generator that will yield up to limit results
Return type: list[twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionInstance]
-
page
(page_token=<object object>, page_number=<object object>, page_size=<object object>)[source]¶ Retrieve a single page of SyncListPermissionInstance records from the API. Request is executed immediately
Parameters: Returns: Page of SyncListPermissionInstance
Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionPage
-
stream
(limit=None, page_size=None)[source]¶ Streams SyncListPermissionInstance records from the API as a generator stream. This operation lazily loads records as efficiently as possible until the limit is reached. The results are returned as a generator, so this operation is memory efficient.
Parameters: - limit (int) – Upper limit for the number of records to return. stream() guarantees to never return more than limit. Default is no limit
- page_size (int) – Number of records to fetch per request, when not set will use the default value of 50 records. If no page_size is defined but a limit is defined, stream() will attempt to read the limit with the most efficient page size, i.e. min(limit, 1000)
Returns: Generator that will yield up to limit results
Return type: list[twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionInstance]
-
-
class
twilio.rest.preview.sync.service.sync_list.sync_list_permission.
SyncListPermissionPage
(version, response, solution)[source]¶ Bases:
twilio.base.page.Page
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
get_instance
(payload)[source]¶ Build an instance of SyncListPermissionInstance
Parameters: payload (dict) – Payload response from the API Returns: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionInstance Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionInstance
-
Module contents¶
This code was generated by / _ _ _| _ _
(_)/(_)(_|/| |(/_ v1.0.0 / /
-
class
twilio.rest.preview.sync.service.sync_list.
SyncListContext
(version, service_sid, sid)[source]¶ Bases:
twilio.base.instance_context.InstanceContext
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
delete
()[source]¶ Deletes the SyncListInstance
Returns: True if delete succeeds, False otherwise Return type: bool
-
fetch
()[source]¶ Fetch the SyncListInstance
Returns: The fetched SyncListInstance Return type: twilio.rest.preview.sync.service.sync_list.SyncListInstance
-
sync_list_items
¶ Access the sync_list_items
Returns: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemList Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemList
-
sync_list_permissions
¶ Access the sync_list_permissions
Returns: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionList Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionList
-
-
class
twilio.rest.preview.sync.service.sync_list.
SyncListInstance
(version, payload, service_sid, sid=None)[source]¶ Bases:
twilio.base.instance_resource.InstanceResource
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
account_sid
¶ Returns: The account_sid Return type: unicode
-
created_by
¶ Returns: The created_by Return type: unicode
-
date_created
¶ Returns: The date_created Return type: datetime
-
date_updated
¶ Returns: The date_updated Return type: datetime
-
delete
()[source]¶ Deletes the SyncListInstance
Returns: True if delete succeeds, False otherwise Return type: bool
-
fetch
()[source]¶ Fetch the SyncListInstance
Returns: The fetched SyncListInstance Return type: twilio.rest.preview.sync.service.sync_list.SyncListInstance
-
links
¶ Returns: The links Return type: unicode
-
revision
¶ Returns: The revision Return type: unicode
-
service_sid
¶ Returns: The service_sid Return type: unicode
-
sid
¶ Returns: The sid Return type: unicode
-
sync_list_items
¶ Access the sync_list_items
Returns: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemList Return type: twilio.rest.preview.sync.service.sync_list.sync_list_item.SyncListItemList
-
sync_list_permissions
¶ Access the sync_list_permissions
Returns: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionList Return type: twilio.rest.preview.sync.service.sync_list.sync_list_permission.SyncListPermissionList
-
unique_name
¶ Returns: The unique_name Return type: unicode
-
url
¶ Returns: The url Return type: unicode
-
-
class
twilio.rest.preview.sync.service.sync_list.
SyncListList
(version, service_sid)[source]¶ Bases:
twilio.base.list_resource.ListResource
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
create
(unique_name=<object object>)[source]¶ Create the SyncListInstance
Parameters: unique_name (unicode) – The unique_name Returns: The created SyncListInstance Return type: twilio.rest.preview.sync.service.sync_list.SyncListInstance
-
get
(sid)[source]¶ Constructs a SyncListContext
Parameters: sid – The sid Returns: twilio.rest.preview.sync.service.sync_list.SyncListContext Return type: twilio.rest.preview.sync.service.sync_list.SyncListContext
-
get_page
(target_url)[source]¶ Retrieve a specific page of SyncListInstance records from the API. Request is executed immediately
Parameters: target_url (str) – API-generated URL for the requested results page Returns: Page of SyncListInstance Return type: twilio.rest.preview.sync.service.sync_list.SyncListPage
-
list
(limit=None, page_size=None)[source]¶ Lists SyncListInstance records from the API as a list. Unlike stream(), this operation is eager and will load limit records into memory before returning.
Parameters: - limit (int) – Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit
- page_size (int) – Number of records to fetch per request, when not set will use the default value of 50 records. If no page_size is defined but a limit is defined, list() will attempt to read the limit with the most efficient page size, i.e. min(limit, 1000)
Returns: Generator that will yield up to limit results
Return type: list[twilio.rest.preview.sync.service.sync_list.SyncListInstance]
-
page
(page_token=<object object>, page_number=<object object>, page_size=<object object>)[source]¶ Retrieve a single page of SyncListInstance records from the API. Request is executed immediately
Parameters: Returns: Page of SyncListInstance
Return type:
-
stream
(limit=None, page_size=None)[source]¶ Streams SyncListInstance records from the API as a generator stream. This operation lazily loads records as efficiently as possible until the limit is reached. The results are returned as a generator, so this operation is memory efficient.
Parameters: - limit (int) – Upper limit for the number of records to return. stream() guarantees to never return more than limit. Default is no limit
- page_size (int) – Number of records to fetch per request, when not set will use the default value of 50 records. If no page_size is defined but a limit is defined, stream() will attempt to read the limit with the most efficient page size, i.e. min(limit, 1000)
Returns: Generator that will yield up to limit results
Return type: list[twilio.rest.preview.sync.service.sync_list.SyncListInstance]
-
-
class
twilio.rest.preview.sync.service.sync_list.
SyncListPage
(version, response, solution)[source]¶ Bases:
twilio.base.page.Page
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
-
get_instance
(payload)[source]¶ Build an instance of SyncListInstance
Parameters: payload (dict) – Payload response from the API Returns: twilio.rest.preview.sync.service.sync_list.SyncListInstance Return type: twilio.rest.preview.sync.service.sync_list.SyncListInstance
-