Skip to content

Commit 1bbdeec

Browse files
committed
[Librarian] Regenerated @ da05803f205e30bf20a6bc4fb42faf91ab7445a1
1 parent c867895 commit 1bbdeec

File tree

23 files changed

+237
-180
lines changed

23 files changed

+237
-180
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6+
[2019-05-01] Version 6.26.3
7+
----------------------------
8+
**Serverless**
9+
- Documentation
10+
11+
**Wireless**
12+
- Added `imeisv` to Data Session resource.
13+
14+
615
[2019-04-24] Version 6.26.2
716
----------------------------
817
**Library**

tests/integration/serverless/v1/service/test_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def test_create_response(self):
159159
"version": "3.6.3"
160160
}
161161
],
162-
"status": "queued",
162+
"status": "building",
163163
"date_created": "2018-11-10T20:00:00Z",
164164
"date_updated": "2018-11-10T20:00:00Z",
165165
"url": "https://serverless.twilio.com/v1/Services/ZS00000000000000000000000000000000/Builds/ZB00000000000000000000000000000000"

tests/integration/wireless/v1/sim/test_data_session.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def test_fetch_response(self):
4747
"packets_downloaded": 0,
4848
"last_updated": "2015-07-30T20:00:00Z",
4949
"start": "2015-07-30T20:00:00Z",
50-
"end": null
50+
"end": null,
51+
"imeisv": null
5152
},
5253
{
5354
"sid": "WNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
@@ -64,7 +65,8 @@ def test_fetch_response(self):
6465
"packets_downloaded": 0,
6566
"last_updated": "2015-07-30T20:00:00Z",
6667
"start": "2015-07-30T20:00:00Z",
67-
"end": "2015-07-30T20:00:00Z"
68+
"end": "2015-07-30T20:00:00Z",
69+
"imeisv": "8693070314126600"
6870
}
6971
],
7072
"meta": {

twilio/rest/api/v2010/account/usage/record/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,9 @@ class Category(object):
475475
SHORTCODES_RANDOM = "shortcodes-random"
476476
SHORTCODES_UK = "shortcodes-uk"
477477
SHORTCODES_VANITY = "shortcodes-vanity"
478+
SMALL_GROUP_ROOMS = "small-group-rooms"
479+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
480+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
478481
SMS = "sms"
479482
SMS_INBOUND = "sms-inbound"
480483
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -506,6 +509,7 @@ class Category(object):
506509
TURNMEGABYTES = "turnmegabytes"
507510
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
508511
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
512+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
509513
TURNMEGABYTES_INDIA = "turnmegabytes-india"
510514
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
511515
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/record/all_time.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ class Category(object):
361361
SHORTCODES_RANDOM = "shortcodes-random"
362362
SHORTCODES_UK = "shortcodes-uk"
363363
SHORTCODES_VANITY = "shortcodes-vanity"
364+
SMALL_GROUP_ROOMS = "small-group-rooms"
365+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
366+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
364367
SMS = "sms"
365368
SMS_INBOUND = "sms-inbound"
366369
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -392,6 +395,7 @@ class Category(object):
392395
TURNMEGABYTES = "turnmegabytes"
393396
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
394397
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
398+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
395399
TURNMEGABYTES_INDIA = "turnmegabytes-india"
396400
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
397401
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/record/daily.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ class Category(object):
361361
SHORTCODES_RANDOM = "shortcodes-random"
362362
SHORTCODES_UK = "shortcodes-uk"
363363
SHORTCODES_VANITY = "shortcodes-vanity"
364+
SMALL_GROUP_ROOMS = "small-group-rooms"
365+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
366+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
364367
SMS = "sms"
365368
SMS_INBOUND = "sms-inbound"
366369
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -392,6 +395,7 @@ class Category(object):
392395
TURNMEGABYTES = "turnmegabytes"
393396
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
394397
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
398+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
395399
TURNMEGABYTES_INDIA = "turnmegabytes-india"
396400
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
397401
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/record/last_month.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ class Category(object):
361361
SHORTCODES_RANDOM = "shortcodes-random"
362362
SHORTCODES_UK = "shortcodes-uk"
363363
SHORTCODES_VANITY = "shortcodes-vanity"
364+
SMALL_GROUP_ROOMS = "small-group-rooms"
365+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
366+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
364367
SMS = "sms"
365368
SMS_INBOUND = "sms-inbound"
366369
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -392,6 +395,7 @@ class Category(object):
392395
TURNMEGABYTES = "turnmegabytes"
393396
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
394397
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
398+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
395399
TURNMEGABYTES_INDIA = "turnmegabytes-india"
396400
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
397401
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/record/monthly.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ class Category(object):
361361
SHORTCODES_RANDOM = "shortcodes-random"
362362
SHORTCODES_UK = "shortcodes-uk"
363363
SHORTCODES_VANITY = "shortcodes-vanity"
364+
SMALL_GROUP_ROOMS = "small-group-rooms"
365+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
366+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
364367
SMS = "sms"
365368
SMS_INBOUND = "sms-inbound"
366369
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -392,6 +395,7 @@ class Category(object):
392395
TURNMEGABYTES = "turnmegabytes"
393396
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
394397
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
398+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
395399
TURNMEGABYTES_INDIA = "turnmegabytes-india"
396400
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
397401
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/record/this_month.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ class Category(object):
361361
SHORTCODES_RANDOM = "shortcodes-random"
362362
SHORTCODES_UK = "shortcodes-uk"
363363
SHORTCODES_VANITY = "shortcodes-vanity"
364+
SMALL_GROUP_ROOMS = "small-group-rooms"
365+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
366+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
364367
SMS = "sms"
365368
SMS_INBOUND = "sms-inbound"
366369
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -392,6 +395,7 @@ class Category(object):
392395
TURNMEGABYTES = "turnmegabytes"
393396
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
394397
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
398+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
395399
TURNMEGABYTES_INDIA = "turnmegabytes-india"
396400
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
397401
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/record/today.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ class Category(object):
361361
SHORTCODES_RANDOM = "shortcodes-random"
362362
SHORTCODES_UK = "shortcodes-uk"
363363
SHORTCODES_VANITY = "shortcodes-vanity"
364+
SMALL_GROUP_ROOMS = "small-group-rooms"
365+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
366+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
364367
SMS = "sms"
365368
SMS_INBOUND = "sms-inbound"
366369
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -392,6 +395,7 @@ class Category(object):
392395
TURNMEGABYTES = "turnmegabytes"
393396
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
394397
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
398+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
395399
TURNMEGABYTES_INDIA = "turnmegabytes-india"
396400
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
397401
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/record/yearly.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ class Category(object):
361361
SHORTCODES_RANDOM = "shortcodes-random"
362362
SHORTCODES_UK = "shortcodes-uk"
363363
SHORTCODES_VANITY = "shortcodes-vanity"
364+
SMALL_GROUP_ROOMS = "small-group-rooms"
365+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
366+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
364367
SMS = "sms"
365368
SMS_INBOUND = "sms-inbound"
366369
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -392,6 +395,7 @@ class Category(object):
392395
TURNMEGABYTES = "turnmegabytes"
393396
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
394397
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
398+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
395399
TURNMEGABYTES_INDIA = "turnmegabytes-india"
396400
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
397401
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/record/yesterday.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ class Category(object):
361361
SHORTCODES_RANDOM = "shortcodes-random"
362362
SHORTCODES_UK = "shortcodes-uk"
363363
SHORTCODES_VANITY = "shortcodes-vanity"
364+
SMALL_GROUP_ROOMS = "small-group-rooms"
365+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
366+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
364367
SMS = "sms"
365368
SMS_INBOUND = "sms-inbound"
366369
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -392,6 +395,7 @@ class Category(object):
392395
TURNMEGABYTES = "turnmegabytes"
393396
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
394397
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
398+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
395399
TURNMEGABYTES_INDIA = "turnmegabytes-india"
396400
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
397401
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/api/v2010/account/usage/trigger.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,9 @@ class UsageCategory(object):
502502
SHORTCODES_RANDOM = "shortcodes-random"
503503
SHORTCODES_UK = "shortcodes-uk"
504504
SHORTCODES_VANITY = "shortcodes-vanity"
505+
SMALL_GROUP_ROOMS = "small-group-rooms"
506+
SMALL_GROUP_ROOMS_DATA_TRACK = "small-group-rooms-data-track"
507+
SMALL_GROUP_ROOMS_PARTICIPANT_MINUTES = "small-group-rooms-participant-minutes"
505508
SMS = "sms"
506509
SMS_INBOUND = "sms-inbound"
507510
SMS_INBOUND_LONGCODE = "sms-inbound-longcode"
@@ -533,6 +536,7 @@ class UsageCategory(object):
533536
TURNMEGABYTES = "turnmegabytes"
534537
TURNMEGABYTES_AUSTRALIA = "turnmegabytes-australia"
535538
TURNMEGABYTES_BRASIL = "turnmegabytes-brasil"
539+
TURNMEGABYTES_GERMANY = "turnmegabytes-germany"
536540
TURNMEGABYTES_INDIA = "turnmegabytes-india"
537541
TURNMEGABYTES_IRELAND = "turnmegabytes-ireland"
538542
TURNMEGABYTES_JAPAN = "turnmegabytes-japan"

twilio/rest/serverless/v1/service/__init__.py

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ def create(self, unique_name, friendly_name, include_credentials=values.unset):
123123
"""
124124
Create a new ServiceInstance
125125
126-
:param unicode unique_name: The unique_name
127-
:param unicode friendly_name: The friendly_name
128-
:param bool include_credentials: The include_credentials
126+
:param unicode unique_name: A unique, addressable name of this Service.
127+
:param unicode friendly_name: A human-readable description of this Service.
128+
:param bool include_credentials: Whether to inject Account credentials into a Function invocation context.
129129
130130
:returns: Newly created ServiceInstance
131131
:rtype: twilio.rest.serverless.v1.service.ServiceInstance
@@ -148,7 +148,7 @@ def get(self, sid):
148148
"""
149149
Constructs a ServiceContext
150150
151-
:param sid: The sid
151+
:param sid: Service Sid.
152152
153153
:returns: twilio.rest.serverless.v1.service.ServiceContext
154154
:rtype: twilio.rest.serverless.v1.service.ServiceContext
@@ -159,7 +159,7 @@ def __call__(self, sid):
159159
"""
160160
Constructs a ServiceContext
161161
162-
:param sid: The sid
162+
:param sid: Service Sid.
163163
164164
:returns: twilio.rest.serverless.v1.service.ServiceContext
165165
:rtype: twilio.rest.serverless.v1.service.ServiceContext
@@ -227,7 +227,7 @@ def __init__(self, version, sid):
227227
Initialize the ServiceContext
228228
229229
:param Version version: Version that contains the resource
230-
:param sid: The sid
230+
:param sid: Service Sid.
231231
232232
:returns: twilio.rest.serverless.v1.service.ServiceContext
233233
:rtype: twilio.rest.serverless.v1.service.ServiceContext
@@ -265,8 +265,8 @@ def update(self, include_credentials=values.unset, friendly_name=values.unset):
265265
"""
266266
Update the ServiceInstance
267267
268-
:param bool include_credentials: The include_credentials
269-
:param unicode friendly_name: The friendly_name
268+
:param bool include_credentials: Whether to inject Account credentials into a Function invocation context.
269+
:param unicode friendly_name: A human-readable description of this Service.
270270
271271
:returns: Updated ServiceInstance
272272
:rtype: twilio.rest.serverless.v1.service.ServiceInstance
@@ -387,71 +387,71 @@ def _proxy(self):
387387
@property
388388
def sid(self):
389389
"""
390-
:returns: The sid
390+
:returns: Service Sid.
391391
:rtype: unicode
392392
"""
393393
return self._properties['sid']
394394

395395
@property
396396
def account_sid(self):
397397
"""
398-
:returns: The account_sid
398+
:returns: Account Sid.
399399
:rtype: unicode
400400
"""
401401
return self._properties['account_sid']
402402

403403
@property
404404
def friendly_name(self):
405405
"""
406-
:returns: The friendly_name
406+
:returns: A human-readable description of this Service.
407407
:rtype: unicode
408408
"""
409409
return self._properties['friendly_name']
410410

411411
@property
412412
def unique_name(self):
413413
"""
414-
:returns: The unique_name
414+
:returns: A unique, URL-friendly name of this Service.
415415
:rtype: unicode
416416
"""
417417
return self._properties['unique_name']
418418

419419
@property
420420
def include_credentials(self):
421421
"""
422-
:returns: The include_credentials
422+
:returns: Whether to inject Account credentials into a Function invocation context.
423423
:rtype: bool
424424
"""
425425
return self._properties['include_credentials']
426426

427427
@property
428428
def date_created(self):
429429
"""
430-
:returns: The date_created
430+
:returns: The date that this Service was created.
431431
:rtype: datetime
432432
"""
433433
return self._properties['date_created']
434434

435435
@property
436436
def date_updated(self):
437437
"""
438-
:returns: The date_updated
438+
:returns: The date that this Service was updated.
439439
:rtype: datetime
440440
"""
441441
return self._properties['date_updated']
442442

443443
@property
444444
def url(self):
445445
"""
446-
:returns: The url
446+
:returns: The URL of this Service.
447447
:rtype: unicode
448448
"""
449449
return self._properties['url']
450450

451451
@property
452452
def links(self):
453453
"""
454-
:returns: The links
454+
:returns: Nested resource URLs.
455455
:rtype: unicode
456456
"""
457457
return self._properties['links']
@@ -469,8 +469,8 @@ def update(self, include_credentials=values.unset, friendly_name=values.unset):
469469
"""
470470
Update the ServiceInstance
471471
472-
:param bool include_credentials: The include_credentials
473-
:param unicode friendly_name: The friendly_name
472+
:param bool include_credentials: Whether to inject Account credentials into a Function invocation context.
473+
:param unicode friendly_name: A human-readable description of this Service.
474474
475475
:returns: Updated ServiceInstance
476476
:rtype: twilio.rest.serverless.v1.service.ServiceInstance

0 commit comments

Comments
 (0)