Skip to content

Commit 27e3f6f

Browse files
committed
[Librarian] Regenerated @ bd01257c5bef8696988f5e9f18d803d8ccdb5a0f 0d301f7b8858e2f9dc391bd6803943499955b8f0
1 parent 60e09a5 commit 27e3f6f

File tree

9 files changed

+1060
-22
lines changed

9 files changed

+1060
-22
lines changed

CHANGES.md

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

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

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
19+
20+
621
[2024-04-04] Version 9.0.4
722
--------------------------
823
**Api**

twilio/rest/api/v2010/account/call/stream.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class UpdateStatus(object):
3939
:ivar sid: The SID of the Stream resource.
4040
:ivar account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created this Stream resource.
4141
: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.
4343
:ivar status:
4444
: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.
4545
:ivar uri: The URI of the resource, relative to `https://api.twilio.com`.
@@ -134,7 +134,7 @@ def __init__(self, version: Version, account_sid: str, call_sid: str, sid: str):
134134
:param version: Version that contains the resource
135135
:param account_sid: The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created this Stream resource.
136136
: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
138138
"""
139139
super().__init__(version)
140140

@@ -449,11 +449,11 @@ def create(
449449
"""
450450
Create the StreamInstance
451451
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.
454454
: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`.
457457
:param parameter1_name: Parameter name
458458
:param parameter1_value: Parameter value
459459
:param parameter2_name: Parameter name
@@ -1086,11 +1086,11 @@ async def create_async(
10861086
"""
10871087
Asynchronously create the StreamInstance
10881088
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.
10911091
: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`.
10941094
:param parameter1_name: Parameter name
10951095
:param parameter1_value: Parameter value
10961096
:param parameter2_name: Parameter name
@@ -1518,7 +1518,7 @@ def get(self, sid: str) -> StreamContext:
15181518
"""
15191519
Constructs a StreamContext
15201520
1521-
:param sid: The SID of the Stream resource, or the `name` used when creating the resource
1521+
:param sid: The SID or the `name` of the Stream resource to be stopped
15221522
"""
15231523
return StreamContext(
15241524
self._version,
@@ -1531,7 +1531,7 @@ def __call__(self, sid: str) -> StreamContext:
15311531
"""
15321532
Constructs a StreamContext
15331533
1534-
:param sid: The SID of the Stream resource, or the `name` used when creating the resource
1534+
:param sid: The SID or the `name` of the Stream resource to be stopped
15351535
"""
15361536
return StreamContext(
15371537
self._version,

0 commit comments

Comments
 (0)