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: bandwidth/api/media_api.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -951,7 +951,7 @@ def upload_media(
951
951
media_id: Annotated[StrictStr, Field(description="Media ID to retrieve.")],
952
952
body: Union[StrictBytes, StrictStr],
953
953
content_type: Annotated[Optional[StrictStr], Field(description="The media type of the entity-body.")] =None,
954
-
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] =None,
954
+
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] =None,
955
955
_request_timeout: Union[
956
956
None,
957
957
Annotated[StrictFloat, Field(gt=0)],
@@ -977,7 +977,7 @@ def upload_media(
977
977
:type body: bytearray
978
978
:param content_type: The media type of the entity-body.
979
979
:type content_type: str
980
-
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
980
+
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
981
981
:type cache_control: str
982
982
:param _request_timeout: timeout setting for this request. If one
media_id: Annotated[StrictStr, Field(description="Media ID to retrieve.")],
1043
1043
body: Union[StrictBytes, StrictStr],
1044
1044
content_type: Annotated[Optional[StrictStr], Field(description="The media type of the entity-body.")] =None,
1045
-
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] =None,
1045
+
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] =None,
:param content_type: The media type of the entity-body.
1070
1070
:type content_type: str
1071
-
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
1071
+
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
1072
1072
:type cache_control: str
1073
1073
:param _request_timeout: timeout setting for this request. If one
media_id: Annotated[StrictStr, Field(description="Media ID to retrieve.")],
1134
1134
body: Union[StrictBytes, StrictStr],
1135
1135
content_type: Annotated[Optional[StrictStr], Field(description="The media type of the entity-body.")] =None,
1136
-
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] =None,
1136
+
cache_control: Annotated[Optional[StrictStr], Field(description="General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.")] =None,
:param content_type: The media type of the entity-body.
1161
1161
:type content_type: str
1162
-
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
1162
+
:param cache_control: General-header field is used to specify directives that MUST be obeyed by all caching mechanisms along the request/response chain.
1163
1163
:type cache_control: str
1164
1164
:param _request_timeout: timeout setting for this request. If one
0 commit comments