You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,21 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+
[2024-04-18] Version 9.0.5
7
+
--------------------------
8
+
**Library - Chore**
9
+
-[PR #742](https://github.com/twilio/twilio-python/pull/742): [Snyk] Fix for 3 vulnerabilities. Thanks to [@twilio-product-security](https://github.com/twilio-product-security)!
10
+
11
+
**Flex**
12
+
- Add header `ui_version` to `web_channels` API
13
+
14
+
**Messaging**
15
+
- Redeploy after failed pipeline
16
+
17
+
**Numbers**
18
+
- Add Delete Port In request phone number api and Add Delete Port In request api
Copy file name to clipboardExpand all lines: twilio/rest/api/v2010/account/call/stream.py
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ class UpdateStatus(object):
39
39
:ivar sid: The SID of the Stream resource.
40
40
:ivar account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created this Stream resource.
41
41
:ivar call_sid: The SID of the [Call](https://www.twilio.com/docs/voice/api/call-resource) the Stream resource is associated with.
42
-
:ivar name: The user-specified name of this Stream, if one was given when the Stream was created. This may be used to stop the Stream.
42
+
:ivar name: The user-specified name of this Stream, if one was given when the Stream was created. This can be used to stop the Stream.
43
43
:ivar status:
44
44
:ivar date_updated: The date and time in GMT that this resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format.
45
45
:ivar uri: The URI of the resource, relative to `https://api.twilio.com`.
:param version: Version that contains the resource
135
135
:param account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created this Stream resource.
136
136
:param call_sid: The SID of the [Call](https://www.twilio.com/docs/voice/api/call-resource) the Stream resource is associated with.
137
-
:param sid: The SID of the Stream resource, or the `name` used when creating the resource
137
+
:param sid: The SID or the `name` of the Stream resource to be stopped
138
138
"""
139
139
super().__init__(version)
140
140
@@ -449,11 +449,11 @@ def create(
449
449
"""
450
450
Create the StreamInstance
451
451
452
-
:param url: Relative or absolute url where WebSocket connection will be established.
453
-
:param name: The user-specified name of this Stream, if one was given when the Stream was created. This may be used to stop the Stream.
452
+
:param url: Relative or absolute URL where WebSocket connection will be established.
453
+
:param name: The user-specified name of this Stream, if one was given when the Stream was created. This can be used to stop the Stream.
454
454
:param track:
455
-
:param status_callback: Absolute URL of the status callback.
456
-
:param status_callback_method: The http method for the status_callback (one of GET, POST).
455
+
:param status_callback: Absolute URL to which Twilio sends status callback HTTP requests.
456
+
:param status_callback_method: The HTTP method Twilio uses when sending `status_callback` requests. Possible values are `GET` and `POST`. Default is `POST`.
457
457
:param parameter1_name: Parameter name
458
458
:param parameter1_value: Parameter value
459
459
:param parameter2_name: Parameter name
@@ -1086,11 +1086,11 @@ async def create_async(
1086
1086
"""
1087
1087
Asynchronously create the StreamInstance
1088
1088
1089
-
:param url: Relative or absolute url where WebSocket connection will be established.
1090
-
:param name: The user-specified name of this Stream, if one was given when the Stream was created. This may be used to stop the Stream.
1089
+
:param url: Relative or absolute URL where WebSocket connection will be established.
1090
+
:param name: The user-specified name of this Stream, if one was given when the Stream was created. This can be used to stop the Stream.
1091
1091
:param track:
1092
-
:param status_callback: Absolute URL of the status callback.
1093
-
:param status_callback_method: The http method for the status_callback (one of GET, POST).
1092
+
:param status_callback: Absolute URL to which Twilio sends status callback HTTP requests.
1093
+
:param status_callback_method: The HTTP method Twilio uses when sending `status_callback` requests. Possible values are `GET` and `POST`. Default is `POST`.
0 commit comments