@autorest/python 6.12.2 → 6.12.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -700,19 +700,6 @@ class _OperationSerializer(
|
|
|
700
700
|
retval.append(_api_version_validation(builder))
|
|
701
701
|
return retval
|
|
702
702
|
|
|
703
|
-
def param_description(self, builder: OperationType) -> List[str]:
|
|
704
|
-
description_list = super().param_description(builder)
|
|
705
|
-
if builder.expose_stream_keyword and builder.has_response_body:
|
|
706
|
-
description_list.append(
|
|
707
|
-
":keyword bool stream: Whether to stream the response of this operation. "
|
|
708
|
-
"Defaults to False. You will have to context manage the returned stream."
|
|
709
|
-
)
|
|
710
|
-
if not self.code_model.options["version_tolerant"]:
|
|
711
|
-
description_list.append(
|
|
712
|
-
":keyword callable cls: A custom type or function that will be passed the direct response"
|
|
713
|
-
)
|
|
714
|
-
return description_list
|
|
715
|
-
|
|
716
703
|
def pop_kwargs_from_signature(self, builder: OperationType) -> List[str]:
|
|
717
704
|
kwargs_to_pop = builder.parameters.kwargs_to_pop
|
|
718
705
|
kwargs = self.parameter_serializer.pop_kwargs_from_signature(
|
|
@@ -1543,25 +1530,6 @@ class _LROOperationSerializer(_OperationSerializer[LROOperationType]):
|
|
|
1543
1530
|
self.async_mode = async_mode
|
|
1544
1531
|
self.parameter_serializer = ParameterSerializer()
|
|
1545
1532
|
|
|
1546
|
-
def param_description(self, builder: LROOperationType) -> List[str]:
|
|
1547
|
-
retval = super().param_description(builder)
|
|
1548
|
-
retval.append(
|
|
1549
|
-
":keyword str continuation_token: A continuation token to restart a poller from a saved state."
|
|
1550
|
-
)
|
|
1551
|
-
retval.append(
|
|
1552
|
-
f":keyword polling: By default, your polling method will be {builder.get_polling_method(self.async_mode)}. "
|
|
1553
|
-
"Pass in False for this operation to not poll, or pass in your own initialized polling object for a"
|
|
1554
|
-
" personal polling strategy."
|
|
1555
|
-
)
|
|
1556
|
-
retval.append(
|
|
1557
|
-
f":paramtype polling: bool or ~{builder.get_base_polling_method_path(self.async_mode)}"
|
|
1558
|
-
)
|
|
1559
|
-
retval.append(
|
|
1560
|
-
":keyword int polling_interval: Default waiting time between two polls for LRO operations "
|
|
1561
|
-
"if no Retry-After header is present."
|
|
1562
|
-
)
|
|
1563
|
-
return retval
|
|
1564
|
-
|
|
1565
1533
|
def serialize_path(self, builder: LROOperationType) -> List[str]:
|
|
1566
1534
|
return self.parameter_serializer.serialize_path(
|
|
1567
1535
|
builder.parameters.path, self.serializer_name
|
|
@@ -32,8 +32,8 @@ SPECIAL_HEADER_SERIALIZATION: Dict[str, List[str]] = {
|
|
|
32
32
|
],
|
|
33
33
|
"repeatability-first-sent": [
|
|
34
34
|
"""if "Repeatability-First-Sent" not in _headers:""",
|
|
35
|
-
""" _headers["Repeatability-First-Sent"] = _SERIALIZER.serialize_data(
|
|
36
|
-
"rfc-1123")""",
|
|
35
|
+
""" _headers["Repeatability-First-Sent"] = _SERIALIZER.serialize_data(""",
|
|
36
|
+
""" datetime.datetime.now(datetime.timezone.utc), "rfc-1123")""",
|
|
37
37
|
],
|
|
38
38
|
"client-request-id": [],
|
|
39
39
|
"x-ms-client-request-id": [],
|
|
@@ -625,7 +625,7 @@ def _get_deserialize_callable_from_annotation( # pylint: disable=R0911, R0915,
|
|
|
625
625
|
|
|
626
626
|
# is it a literal?
|
|
627
627
|
try:
|
|
628
|
-
if annotation.__origin__
|
|
628
|
+
if annotation.__origin__ is typing.Literal:
|
|
629
629
|
return None
|
|
630
630
|
except AttributeError:
|
|
631
631
|
pass
|
package/package.json
CHANGED