Remove "polling/polling_interval/continuation_token/..." in docstring (#2370)
* remove polling/polling_interval/... in docstring * inv * hide cls/stream * inv
This commit is contained in:
Родитель
e306702b5e
Коммит
f4fb7d1f80
|
@ -700,19 +700,6 @@ class _OperationSerializer(
|
|||
retval.append(_api_version_validation(builder))
|
||||
return retval
|
||||
|
||||
def param_description(self, builder: OperationType) -> List[str]:
|
||||
description_list = super().param_description(builder)
|
||||
if builder.expose_stream_keyword and builder.has_response_body:
|
||||
description_list.append(
|
||||
":keyword bool stream: Whether to stream the response of this operation. "
|
||||
"Defaults to False. You will have to context manage the returned stream."
|
||||
)
|
||||
if not self.code_model.options["version_tolerant"]:
|
||||
description_list.append(
|
||||
":keyword callable cls: A custom type or function that will be passed the direct response"
|
||||
)
|
||||
return description_list
|
||||
|
||||
def pop_kwargs_from_signature(self, builder: OperationType) -> List[str]:
|
||||
kwargs_to_pop = builder.parameters.kwargs_to_pop
|
||||
kwargs = self.parameter_serializer.pop_kwargs_from_signature(
|
||||
|
@ -1543,25 +1530,6 @@ class _LROOperationSerializer(_OperationSerializer[LROOperationType]):
|
|||
self.async_mode = async_mode
|
||||
self.parameter_serializer = ParameterSerializer()
|
||||
|
||||
def param_description(self, builder: LROOperationType) -> List[str]:
|
||||
retval = super().param_description(builder)
|
||||
retval.append(
|
||||
":keyword str continuation_token: A continuation token to restart a poller from a saved state."
|
||||
)
|
||||
retval.append(
|
||||
f":keyword polling: By default, your polling method will be {builder.get_polling_method(self.async_mode)}. "
|
||||
"Pass in False for this operation to not poll, or pass in your own initialized polling object for a"
|
||||
" personal polling strategy."
|
||||
)
|
||||
retval.append(
|
||||
f":paramtype polling: bool or ~{builder.get_base_polling_method_path(self.async_mode)}"
|
||||
)
|
||||
retval.append(
|
||||
":keyword int polling_interval: Default waiting time between two polls for LRO operations "
|
||||
"if no Retry-After header is present."
|
||||
)
|
||||
return retval
|
||||
|
||||
def serialize_path(self, builder: LROOperationType) -> List[str]:
|
||||
return self.parameter_serializer.serialize_path(
|
||||
builder.parameters.path, self.serializer_name
|
||||
|
|
|
@ -144,13 +144,6 @@ class PollingPagingExampleOperationsMixin(PollingPagingExampleMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be CustomDefaultPollingMethod. Pass in
|
||||
False for this operation to not poll, or pass in your own initialized polling object for a
|
||||
personal polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of CustomPoller that returns JSON object
|
||||
:rtype: ~my.library.CustomPoller[JSON]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -186,13 +179,6 @@ class PollingPagingExampleOperationsMixin(PollingPagingExampleMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be CustomDefaultPollingMethod. Pass in
|
||||
False for this operation to not poll, or pass in your own initialized polling object for a
|
||||
personal polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of CustomPoller that returns JSON object
|
||||
:rtype: ~my.library.CustomPoller[JSON]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -221,13 +207,6 @@ class PollingPagingExampleOperationsMixin(PollingPagingExampleMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be CustomDefaultPollingMethod. Pass in
|
||||
False for this operation to not poll, or pass in your own initialized polling object for a
|
||||
personal polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of CustomPoller that returns JSON object
|
||||
:rtype: ~my.library.CustomPoller[JSON]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -117,13 +117,6 @@ class PollingPagingExampleOperationsMixin(PollingPagingExampleMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncCustomDefaultPollingMethod. Pass
|
||||
in False for this operation to not poll, or pass in your own initialized polling object for a
|
||||
personal polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncCustomPoller that returns JSON object
|
||||
:rtype: ~my.library.aio.AsyncCustomPoller[JSON]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -159,13 +152,6 @@ class PollingPagingExampleOperationsMixin(PollingPagingExampleMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncCustomDefaultPollingMethod. Pass
|
||||
in False for this operation to not poll, or pass in your own initialized polling object for a
|
||||
personal polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncCustomPoller that returns JSON object
|
||||
:rtype: ~my.library.aio.AsyncCustomPoller[JSON]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -194,13 +180,6 @@ class PollingPagingExampleOperationsMixin(PollingPagingExampleMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncCustomDefaultPollingMethod. Pass
|
||||
in False for this operation to not poll, or pass in your own initialized polling object for a
|
||||
personal polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncCustomPoller that returns JSON object
|
||||
:rtype: ~my.library.aio.AsyncCustomPoller[JSON]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -50,7 +50,6 @@ class HttpSuccessOperations:
|
|||
async def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -94,7 +93,6 @@ class HttpSuccessOperations:
|
|||
async def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HttpSuccessOperations:
|
|||
async def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -74,7 +74,6 @@ class HttpSuccessOperations:
|
|||
def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -118,7 +117,6 @@ class HttpSuccessOperations:
|
|||
def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HttpSuccessOperations:
|
|||
def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -33,14 +33,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~azure.multiapi.sample.v1.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -71,14 +63,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
:type client_request_id: str
|
||||
:param test_lro_and_paging_options: Parameter group. Default value is None.
|
||||
:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either PagingResult
|
||||
or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -114,7 +98,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
:type greeting_in_chinese: str
|
||||
:param greeting_in_french: pass in 'bonjour' to pass test. Default value is None.
|
||||
:type greeting_in_french: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -149,7 +132,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
:type id: int
|
||||
:param message: An optional string parameter. Default value is None.
|
||||
:type message: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -176,7 +158,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
) -> Iterable["_models.ModelThree"]:
|
||||
"""Returns ModelThree with optionalProperty 'paged'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.multiapi.sample.v3.models.ModelThree]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -33,14 +33,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.multiapi.sample.v1.models.Product]
|
||||
|
@ -72,14 +64,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
:type client_request_id: str
|
||||
:param test_lro_and_paging_options: Parameter group. Default value is None.
|
||||
:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either PagingResult
|
||||
or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -115,7 +99,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
:type greeting_in_chinese: str
|
||||
:param greeting_in_french: pass in 'bonjour' to pass test. Default value is None.
|
||||
:type greeting_in_french: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -150,7 +133,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
:type id: int
|
||||
:param message: An optional string parameter. Default value is None.
|
||||
:type message: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -177,7 +159,6 @@ class MultiapiServiceClientOperationsMixin(object):
|
|||
) -> AsyncIterable["_models.ModelThree"]:
|
||||
"""Returns ModelThree with optionalProperty 'paged'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.multiapi.sample.v3.models.ModelThree]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -103,78 +103,78 @@
|
|||
"test_one" : {
|
||||
"sync": {
|
||||
"signature": "def test_one( # pylint: disable=inconsistent-return-statements\n self,\n id: int,\n message: Optional[str] = None,\n **kwargs: Any\n) -\u003e None:\n",
|
||||
"doc": "\"\"\"TestOne should be in an FirstVersionOperationsMixin.\n\n:param id: An int parameter. Required.\n:type id: int\n:param message: An optional string parameter. Default value is None.\n:type message: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"TestOne should be in an FirstVersionOperationsMixin.\n\n:param id: An int parameter. Required.\n:type id: int\n:param message: An optional string parameter. Default value is None.\n:type message: str\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "id, message, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def test_one( # pylint: disable=inconsistent-return-statements\n self,\n id: int,\n message: Optional[str] = None,\n **kwargs: Any\n) -\u003e None:\n",
|
||||
"doc": "\"\"\"TestOne should be in an FirstVersionOperationsMixin.\n\n:param id: An int parameter. Required.\n:type id: int\n:param message: An optional string parameter. Default value is None.\n:type message: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"TestOne should be in an FirstVersionOperationsMixin.\n\n:param id: An int parameter. Required.\n:type id: int\n:param message: An optional string parameter. Default value is None.\n:type message: str\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "id, message, **kwargs"
|
||||
}
|
||||
},
|
||||
"_test_lro_initial" : {
|
||||
"sync": {
|
||||
"signature": "def _test_lro_initial(\n self,\n product: Optional[Union[_models.Product, IO[bytes]]] = None,\n **kwargs: Any\n) -\u003e Optional[_models.Product]:\n",
|
||||
"doc": "\"\"\"Put in whatever shape of Product you want, will return a Product with id equal to 100.\n\n:param product: Product to put. Is either a Product type or a IO[bytes] type. Default value is\n None.\n:type product: ~azure.multiapi.sample.v1.models.Product or IO[bytes]\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: Product or None or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v1.models.Product or None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Put in whatever shape of Product you want, will return a Product with id equal to 100.\n\n:param product: Product to put. Is either a Product type or a IO[bytes] type. Default value is\n None.\n:type product: ~azure.multiapi.sample.v1.models.Product or IO[bytes]\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:return: Product or None or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v1.models.Product or None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "product, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def _test_lro_initial(\n self,\n product: Optional[Union[_models.Product, IO[bytes]]] = None,\n **kwargs: Any\n) -\u003e Optional[_models.Product]:\n",
|
||||
"doc": "\"\"\"Put in whatever shape of Product you want, will return a Product with id equal to 100.\n\n:param product: Product to put. Is either a Product type or a IO[bytes] type. Default value is\n None.\n:type product: ~azure.multiapi.sample.v1.models.Product or IO[bytes]\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: Product or None or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v1.models.Product or None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Put in whatever shape of Product you want, will return a Product with id equal to 100.\n\n:param product: Product to put. Is either a Product type or a IO[bytes] type. Default value is\n None.\n:type product: ~azure.multiapi.sample.v1.models.Product or IO[bytes]\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:return: Product or None or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v1.models.Product or None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "product, **kwargs"
|
||||
}
|
||||
},
|
||||
"begin_test_lro" : {
|
||||
"sync": {
|
||||
"signature": "def begin_test_lro(\n self,\n product: Optional[Union[_models.Product, IO[bytes]]] = None,\n **kwargs: Any\n) -\u003e LROPoller[_models.Product]:\n",
|
||||
"doc": "\"\"\"Put in whatever shape of Product you want, will return a Product with id equal to 100.\n\n:param product: Product to put. Is either a Product type or a IO[bytes] type. Default value is\n None.\n:type product: ~azure.multiapi.sample.v1.models.Product or IO[bytes]\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:keyword str continuation_token: A continuation token to restart a poller from a saved state.\n:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this\n operation to not poll, or pass in your own initialized polling object for a personal polling\n strategy.\n:paramtype polling: bool or ~azure.core.polling.PollingMethod\n:keyword int polling_interval: Default waiting time between two polls for LRO operations if no\n Retry-After header is present.\n:return: An instance of LROPoller that returns either Product or the result of cls(response)\n:rtype: ~azure.core.polling.LROPoller[~azure.multiapi.sample.v1.models.Product]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Put in whatever shape of Product you want, will return a Product with id equal to 100.\n\n:param product: Product to put. Is either a Product type or a IO[bytes] type. Default value is\n None.\n:type product: ~azure.multiapi.sample.v1.models.Product or IO[bytes]\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:return: An instance of LROPoller that returns either Product or the result of cls(response)\n:rtype: ~azure.core.polling.LROPoller[~azure.multiapi.sample.v1.models.Product]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "product, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def begin_test_lro(\n self,\n product: Optional[Union[_models.Product, IO[bytes]]] = None,\n **kwargs: Any\n) -\u003e AsyncLROPoller[_models.Product]:\n",
|
||||
"doc": "\"\"\"Put in whatever shape of Product you want, will return a Product with id equal to 100.\n\n:param product: Product to put. Is either a Product type or a IO[bytes] type. Default value is\n None.\n:type product: ~azure.multiapi.sample.v1.models.Product or IO[bytes]\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:keyword str continuation_token: A continuation token to restart a poller from a saved state.\n:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for\n this operation to not poll, or pass in your own initialized polling object for a personal\n polling strategy.\n:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod\n:keyword int polling_interval: Default waiting time between two polls for LRO operations if no\n Retry-After header is present.\n:return: An instance of AsyncLROPoller that returns either Product or the result of\n cls(response)\n:rtype: ~azure.core.polling.AsyncLROPoller[~azure.multiapi.sample.v1.models.Product]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Put in whatever shape of Product you want, will return a Product with id equal to 100.\n\n:param product: Product to put. Is either a Product type or a IO[bytes] type. Default value is\n None.\n:type product: ~azure.multiapi.sample.v1.models.Product or IO[bytes]\n:keyword content_type: Body Parameter content-type. Known values are: \u0027application/json\u0027.\n Default value is None.\n:paramtype content_type: str\n:return: An instance of AsyncLROPoller that returns either Product or the result of\n cls(response)\n:rtype: ~azure.core.polling.AsyncLROPoller[~azure.multiapi.sample.v1.models.Product]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "product, **kwargs"
|
||||
}
|
||||
},
|
||||
"_test_lro_and_paging_initial" : {
|
||||
"sync": {
|
||||
"signature": "def _test_lro_and_paging_initial(\n self,\n client_request_id: Optional[str] = None,\n test_lro_and_paging_options: Optional[_models.TestLroAndPagingOptions] = None,\n **kwargs: Any\n) -\u003e _models.PagingResult:\n",
|
||||
"doc": "\"\"\"A long-running paging operation that includes a nextLink that has 10 pages.\n\n:param client_request_id: Default value is None.\n:type client_request_id: str\n:param test_lro_and_paging_options: Parameter group. Default value is None.\n:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: PagingResult or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v1.models.PagingResult\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"A long-running paging operation that includes a nextLink that has 10 pages.\n\n:param client_request_id: Default value is None.\n:type client_request_id: str\n:param test_lro_and_paging_options: Parameter group. Default value is None.\n:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions\n:return: PagingResult or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v1.models.PagingResult\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "client_request_id, test_lro_and_paging_options, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def _test_lro_and_paging_initial(\n self,\n client_request_id: Optional[str] = None,\n test_lro_and_paging_options: Optional[_models.TestLroAndPagingOptions] = None,\n **kwargs: Any\n) -\u003e _models.PagingResult:\n",
|
||||
"doc": "\"\"\"A long-running paging operation that includes a nextLink that has 10 pages.\n\n:param client_request_id: Default value is None.\n:type client_request_id: str\n:param test_lro_and_paging_options: Parameter group. Default value is None.\n:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: PagingResult or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v1.models.PagingResult\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"A long-running paging operation that includes a nextLink that has 10 pages.\n\n:param client_request_id: Default value is None.\n:type client_request_id: str\n:param test_lro_and_paging_options: Parameter group. Default value is None.\n:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions\n:return: PagingResult or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v1.models.PagingResult\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "client_request_id, test_lro_and_paging_options, **kwargs"
|
||||
}
|
||||
},
|
||||
"begin_test_lro_and_paging" : {
|
||||
"sync": {
|
||||
"signature": "def begin_test_lro_and_paging(\n self,\n client_request_id: Optional[str] = None,\n test_lro_and_paging_options: Optional[_models.TestLroAndPagingOptions] = None,\n **kwargs: Any\n) -\u003e LROPoller[Iterable[\"_models.Product\"]]:\n",
|
||||
"doc": "\"\"\"A long-running paging operation that includes a nextLink that has 10 pages.\n\n:param client_request_id: Default value is None.\n:type client_request_id: str\n:param test_lro_and_paging_options: Parameter group. Default value is None.\n:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions\n:keyword callable cls: A custom type or function that will be passed the direct response\n:keyword str continuation_token: A continuation token to restart a poller from a saved state.\n:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this\n operation to not poll, or pass in your own initialized polling object for a personal polling\n strategy.\n:paramtype polling: bool or ~azure.core.polling.PollingMethod\n:keyword int polling_interval: Default waiting time between two polls for LRO operations if no\n Retry-After header is present.\n:return: An instance of LROPoller that returns an iterator like instance of either PagingResult\n or the result of cls(response)\n:rtype:\n ~azure.core.polling.LROPoller[~azure.core.paging.ItemPaged[~azure.multiapi.sample.v1.models.Product]]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"A long-running paging operation that includes a nextLink that has 10 pages.\n\n:param client_request_id: Default value is None.\n:type client_request_id: str\n:param test_lro_and_paging_options: Parameter group. Default value is None.\n:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions\n:return: An instance of LROPoller that returns an iterator like instance of either PagingResult\n or the result of cls(response)\n:rtype:\n ~azure.core.polling.LROPoller[~azure.core.paging.ItemPaged[~azure.multiapi.sample.v1.models.Product]]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "client_request_id, test_lro_and_paging_options, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def begin_test_lro_and_paging(\n self,\n client_request_id: Optional[str] = None,\n test_lro_and_paging_options: Optional[_models.TestLroAndPagingOptions] = None,\n **kwargs: Any\n) -\u003e AsyncLROPoller[AsyncIterable[\"_models.Product\"]]:\n",
|
||||
"doc": "\"\"\"A long-running paging operation that includes a nextLink that has 10 pages.\n\n:param client_request_id: Default value is None.\n:type client_request_id: str\n:param test_lro_and_paging_options: Parameter group. Default value is None.\n:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions\n:keyword callable cls: A custom type or function that will be passed the direct response\n:keyword str continuation_token: A continuation token to restart a poller from a saved state.\n:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for\n this operation to not poll, or pass in your own initialized polling object for a personal\n polling strategy.\n:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod\n:keyword int polling_interval: Default waiting time between two polls for LRO operations if no\n Retry-After header is present.\n:return: An instance of LROPoller that returns an iterator like instance of either PagingResult\n or the result of cls(response)\n:rtype:\n ~azure.core.polling.AsyncLROPoller[~azure.core.async_paging.AsyncItemPaged[~azure.multiapi.sample.v1.models.Product]]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"A long-running paging operation that includes a nextLink that has 10 pages.\n\n:param client_request_id: Default value is None.\n:type client_request_id: str\n:param test_lro_and_paging_options: Parameter group. Default value is None.\n:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions\n:return: An instance of LROPoller that returns an iterator like instance of either PagingResult\n or the result of cls(response)\n:rtype:\n ~azure.core.polling.AsyncLROPoller[~azure.core.async_paging.AsyncItemPaged[~azure.multiapi.sample.v1.models.Product]]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "client_request_id, test_lro_and_paging_options, **kwargs"
|
||||
}
|
||||
},
|
||||
"test_different_calls" : {
|
||||
"sync": {
|
||||
"signature": "def test_different_calls( # pylint: disable=inconsistent-return-statements\n self,\n greeting_in_english: str,\n **kwargs: Any\n) -\u003e None:\n",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "greeting_in_english, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def test_different_calls( # pylint: disable=inconsistent-return-statements\n self,\n greeting_in_english: str,\n **kwargs: Any\n) -\u003e None:\n",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "greeting_in_english, **kwargs"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,7 +60,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type id: int
|
||||
:param message: An optional string parameter. Default value is None.
|
||||
:type message: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -176,14 +175,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.multiapi.sample.v1.models.Product]
|
||||
|
@ -201,14 +192,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.multiapi.sample.v1.models.Product]
|
||||
|
@ -227,14 +210,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.multiapi.sample.v1.models.Product]
|
||||
|
@ -348,14 +323,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type client_request_id: str
|
||||
:param test_lro_and_paging_options: Parameter group. Default value is None.
|
||||
:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either PagingResult
|
||||
or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -481,7 +448,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
|
||||
:param greeting_in_english: pass in 'hello' to pass test. Required.
|
||||
:type greeting_in_english: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -56,7 +56,6 @@ class OperationGroupOneOperations:
|
|||
async def test_two(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""TestTwo should be in OperationGroupOneOperations.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -137,7 +137,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type id: int
|
||||
:param message: An optional string parameter. Default value is None.
|
||||
:type message: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -253,14 +252,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~azure.multiapi.sample.v1.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -277,14 +268,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~azure.multiapi.sample.v1.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -302,14 +285,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~azure.multiapi.sample.v1.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -422,14 +397,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type client_request_id: str
|
||||
:param test_lro_and_paging_options: Parameter group. Default value is None.
|
||||
:type test_lro_and_paging_options: ~azure.multiapi.sample.v1.models.TestLroAndPagingOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either PagingResult
|
||||
or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -555,7 +522,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
|
||||
:param greeting_in_english: pass in 'hello' to pass test. Required.
|
||||
:type greeting_in_english: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -77,7 +77,6 @@ class OperationGroupOneOperations:
|
|||
def test_two(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""TestTwo should be in OperationGroupOneOperations.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -104,26 +104,26 @@
|
|||
"test_one" : {
|
||||
"sync": {
|
||||
"signature": "def test_one(\n self,\n id: int,\n message: Optional[str] = None,\n **kwargs: Any\n) -\u003e _models.ModelTwo:\n",
|
||||
"doc": "\"\"\"TestOne should be in an SecondVersionOperationsMixin. Returns ModelTwo.\n\n:param id: An int parameter. Required.\n:type id: int\n:param message: An optional string parameter. Default value is None.\n:type message: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: ModelTwo or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v2.models.ModelTwo\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"TestOne should be in an SecondVersionOperationsMixin. Returns ModelTwo.\n\n:param id: An int parameter. Required.\n:type id: int\n:param message: An optional string parameter. Default value is None.\n:type message: str\n:return: ModelTwo or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v2.models.ModelTwo\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "id, message, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def test_one(\n self,\n id: int,\n message: Optional[str] = None,\n **kwargs: Any\n) -\u003e _models.ModelTwo:\n",
|
||||
"doc": "\"\"\"TestOne should be in an SecondVersionOperationsMixin. Returns ModelTwo.\n\n:param id: An int parameter. Required.\n:type id: int\n:param message: An optional string parameter. Default value is None.\n:type message: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: ModelTwo or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v2.models.ModelTwo\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"TestOne should be in an SecondVersionOperationsMixin. Returns ModelTwo.\n\n:param id: An int parameter. Required.\n:type id: int\n:param message: An optional string parameter. Default value is None.\n:type message: str\n:return: ModelTwo or the result of cls(response)\n:rtype: ~azure.multiapi.sample.v2.models.ModelTwo\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "id, message, **kwargs"
|
||||
}
|
||||
},
|
||||
"test_different_calls" : {
|
||||
"sync": {
|
||||
"signature": "def test_different_calls( # pylint: disable=inconsistent-return-statements\n self,\n greeting_in_english: str,\n greeting_in_chinese: Optional[str] = None,\n **kwargs: Any\n) -\u003e None:\n",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:param greeting_in_chinese: pass in \u0027nihao\u0027 to pass test. Default value is None.\n:type greeting_in_chinese: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:param greeting_in_chinese: pass in \u0027nihao\u0027 to pass test. Default value is None.\n:type greeting_in_chinese: str\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "greeting_in_english, greeting_in_chinese, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def test_different_calls( # pylint: disable=inconsistent-return-statements\n self,\n greeting_in_english: str,\n greeting_in_chinese: Optional[str] = None,\n **kwargs: Any\n) -\u003e None:\n",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:param greeting_in_chinese: pass in \u0027nihao\u0027 to pass test. Default value is None.\n:type greeting_in_chinese: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:param greeting_in_chinese: pass in \u0027nihao\u0027 to pass test. Default value is None.\n:type greeting_in_chinese: str\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "greeting_in_english, greeting_in_chinese, **kwargs"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,7 +47,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type id: int
|
||||
:param message: An optional string parameter. Default value is None.
|
||||
:type message: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelTwo or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v2.models.ModelTwo
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -107,7 +106,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type greeting_in_english: str
|
||||
:param greeting_in_chinese: pass in 'nihao' to pass test. Default value is None.
|
||||
:type greeting_in_chinese: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -64,7 +64,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelTwo or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v2.models.ModelTwo
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -81,7 +80,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelTwo or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v2.models.ModelTwo
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -99,7 +97,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelTwo or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v2.models.ModelTwo
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -164,7 +161,6 @@ class OperationGroupOneOperations:
|
|||
async def test_three(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""TestThree should be in OperationGroupOneOperations. Takes in ModelTwo.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -60,7 +60,6 @@ class OperationGroupTwoOperations:
|
|||
|
||||
:param parameter_one: A boolean parameter. Required.
|
||||
:type parameter_one: bool
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -95,7 +95,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type id: int
|
||||
:param message: An optional string parameter. Default value is None.
|
||||
:type message: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelTwo or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v2.models.ModelTwo
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -155,7 +154,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type greeting_in_english: str
|
||||
:param greeting_in_chinese: pass in 'nihao' to pass test. Default value is None.
|
||||
:type greeting_in_chinese: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -107,7 +107,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelTwo or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v2.models.ModelTwo
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -124,7 +123,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelTwo or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v2.models.ModelTwo
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -142,7 +140,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelTwo or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v2.models.ModelTwo
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -207,7 +204,6 @@ class OperationGroupOneOperations:
|
|||
def test_three(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""TestThree should be in OperationGroupOneOperations. Takes in ModelTwo.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -80,7 +80,6 @@ class OperationGroupTwoOperations:
|
|||
|
||||
:param parameter_one: A boolean parameter. Required.
|
||||
:type parameter_one: bool
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -104,26 +104,26 @@
|
|||
"test_paging" : {
|
||||
"sync": {
|
||||
"signature": "def test_paging(\n self,\n **kwargs: Any\n) -\u003e Iterable[\"_models.ModelThree\"]:\n",
|
||||
"doc": "\"\"\"Returns ModelThree with optionalProperty \u0027paged\u0027.\n\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: An iterator like instance of either ModelThree or the result of cls(response)\n:rtype: ~azure.core.paging.ItemPaged[~azure.multiapi.sample.v3.models.ModelThree]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Returns ModelThree with optionalProperty \u0027paged\u0027.\n\n:return: An iterator like instance of either ModelThree or the result of cls(response)\n:rtype: ~azure.core.paging.ItemPaged[~azure.multiapi.sample.v3.models.ModelThree]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "**kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": false,
|
||||
"signature": "def test_paging(\n self,\n **kwargs: Any\n) -\u003e AsyncIterable[\"_models.ModelThree\"]:\n",
|
||||
"doc": "\"\"\"Returns ModelThree with optionalProperty \u0027paged\u0027.\n\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: An iterator like instance of either ModelThree or the result of cls(response)\n:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.multiapi.sample.v3.models.ModelThree]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Returns ModelThree with optionalProperty \u0027paged\u0027.\n\n:return: An iterator like instance of either ModelThree or the result of cls(response)\n:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.multiapi.sample.v3.models.ModelThree]\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "**kwargs"
|
||||
}
|
||||
},
|
||||
"test_different_calls" : {
|
||||
"sync": {
|
||||
"signature": "def test_different_calls( # pylint: disable=inconsistent-return-statements\n self,\n greeting_in_english: str,\n greeting_in_chinese: Optional[str] = None,\n greeting_in_french: Optional[str] = None,\n **kwargs: Any\n) -\u003e None:\n",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:param greeting_in_chinese: pass in \u0027nihao\u0027 to pass test. Default value is None.\n:type greeting_in_chinese: str\n:param greeting_in_french: pass in \u0027bonjour\u0027 to pass test. Default value is None.\n:type greeting_in_french: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:param greeting_in_chinese: pass in \u0027nihao\u0027 to pass test. Default value is None.\n:type greeting_in_chinese: str\n:param greeting_in_french: pass in \u0027bonjour\u0027 to pass test. Default value is None.\n:type greeting_in_french: str\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "greeting_in_english, greeting_in_chinese, greeting_in_french, **kwargs"
|
||||
},
|
||||
"async": {
|
||||
"coroutine": true,
|
||||
"signature": "async def test_different_calls( # pylint: disable=inconsistent-return-statements\n self,\n greeting_in_english: str,\n greeting_in_chinese: Optional[str] = None,\n greeting_in_french: Optional[str] = None,\n **kwargs: Any\n) -\u003e None:\n",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:param greeting_in_chinese: pass in \u0027nihao\u0027 to pass test. Default value is None.\n:type greeting_in_chinese: str\n:param greeting_in_french: pass in \u0027bonjour\u0027 to pass test. Default value is None.\n:type greeting_in_french: str\n:keyword callable cls: A custom type or function that will be passed the direct response\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"doc": "\"\"\"Has added parameters across the API versions.\n\n:param greeting_in_english: pass in \u0027hello\u0027 to pass test. Required.\n:type greeting_in_english: str\n:param greeting_in_chinese: pass in \u0027nihao\u0027 to pass test. Default value is None.\n:type greeting_in_chinese: str\n:param greeting_in_french: pass in \u0027bonjour\u0027 to pass test. Default value is None.\n:type greeting_in_french: str\n:return: None or the result of cls(response)\n:rtype: None\n:raises ~azure.core.exceptions.HttpResponseError:\n\"\"\"",
|
||||
"call": "greeting_in_english, greeting_in_chinese, greeting_in_french, **kwargs"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -49,7 +49,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
def test_paging(self, **kwargs: Any) -> AsyncIterable["_models.ModelThree"]:
|
||||
"""Returns ModelThree with optionalProperty 'paged'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.multiapi.sample.v3.models.ModelThree]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -135,7 +134,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type greeting_in_chinese: str
|
||||
:param greeting_in_french: pass in 'bonjour' to pass test. Default value is None.
|
||||
:type greeting_in_french: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -63,7 +63,6 @@ class OperationGroupOneOperations:
|
|||
def test_operation_group_paging(self, **kwargs: Any) -> AsyncIterable["_models.ModelThree"]:
|
||||
"""Returns ModelThree with optionalProperty 'paged'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.multiapi.sample.v3.models.ModelThree]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -148,7 +147,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v3.models.ModelThree
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -165,7 +163,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v3.models.ModelThree
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -183,7 +180,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v3.models.ModelThree
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -64,7 +64,6 @@ class OperationGroupTwoOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -82,7 +81,6 @@ class OperationGroupTwoOperations:
|
|||
Known values are: 'application/json', 'application/pdf', 'image/jpeg', 'image/png',
|
||||
'image/tiff'. Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -100,7 +98,6 @@ class OperationGroupTwoOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json',
|
||||
'application/pdf', 'image/jpeg', 'image/png', 'image/tiff'. Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -161,7 +158,6 @@ class OperationGroupTwoOperations:
|
|||
async def test_five(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""TestFive should be in OperationGroupTwoOperations.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -91,7 +91,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
def test_paging(self, **kwargs: Any) -> Iterable["_models.ModelThree"]:
|
||||
"""Returns ModelThree with optionalProperty 'paged'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.multiapi.sample.v3.models.ModelThree]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -177,7 +176,6 @@ class MultiapiServiceClientOperationsMixin(MultiapiServiceClientMixinABC):
|
|||
:type greeting_in_chinese: str
|
||||
:param greeting_in_french: pass in 'bonjour' to pass test. Default value is None.
|
||||
:type greeting_in_french: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -97,7 +97,6 @@ class OperationGroupOneOperations:
|
|||
def test_operation_group_paging(self, **kwargs: Any) -> Iterable["_models.ModelThree"]:
|
||||
"""Returns ModelThree with optionalProperty 'paged'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.multiapi.sample.v3.models.ModelThree]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -182,7 +181,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v3.models.ModelThree
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -199,7 +197,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v3.models.ModelThree
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -217,7 +214,6 @@ class OperationGroupOneOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: ModelThree or the result of cls(response)
|
||||
:rtype: ~azure.multiapi.sample.v3.models.ModelThree
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -107,7 +107,6 @@ class OperationGroupTwoOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -125,7 +124,6 @@ class OperationGroupTwoOperations:
|
|||
Known values are: 'application/json', 'application/pdf', 'image/jpeg', 'image/png',
|
||||
'image/tiff'. Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -143,7 +141,6 @@ class OperationGroupTwoOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json',
|
||||
'application/pdf', 'image/jpeg', 'image/png', 'image/tiff'. Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -204,7 +201,6 @@ class OperationGroupTwoOperations:
|
|||
def test_five(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""TestFive should be in OperationGroupTwoOperations.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -59,7 +59,6 @@ class DurationOperations:
|
|||
async def get_null(self, **kwargs: Any) -> Optional[datetime.timedelta]:
|
||||
"""Get null duration value.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: timedelta or None or the result of cls(response)
|
||||
:rtype: ~datetime.timedelta or None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -111,7 +110,6 @@ class DurationOperations:
|
|||
|
||||
:param duration_body: duration body. Required.
|
||||
:type duration_body: ~datetime.timedelta
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -160,7 +158,6 @@ class DurationOperations:
|
|||
async def get_positive_duration(self, **kwargs: Any) -> datetime.timedelta:
|
||||
"""Get a positive duration value.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: timedelta or the result of cls(response)
|
||||
:rtype: ~datetime.timedelta
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -208,7 +205,6 @@ class DurationOperations:
|
|||
async def get_invalid(self, **kwargs: Any) -> datetime.timedelta:
|
||||
"""Get an invalid duration value.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: timedelta or the result of cls(response)
|
||||
:rtype: ~datetime.timedelta
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -116,7 +116,6 @@ class DurationOperations:
|
|||
def get_null(self, **kwargs: Any) -> Optional[datetime.timedelta]:
|
||||
"""Get null duration value.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: timedelta or None or the result of cls(response)
|
||||
:rtype: ~datetime.timedelta or None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -168,7 +167,6 @@ class DurationOperations:
|
|||
|
||||
:param duration_body: duration body. Required.
|
||||
:type duration_body: ~datetime.timedelta
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -217,7 +215,6 @@ class DurationOperations:
|
|||
def get_positive_duration(self, **kwargs: Any) -> datetime.timedelta:
|
||||
"""Get a positive duration value.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: timedelta or the result of cls(response)
|
||||
:rtype: ~datetime.timedelta
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -265,7 +262,6 @@ class DurationOperations:
|
|||
def get_invalid(self, **kwargs: Any) -> datetime.timedelta:
|
||||
"""Get an invalid duration value.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: timedelta or the result of cls(response)
|
||||
:rtype: ~datetime.timedelta
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -67,7 +67,6 @@ class ParameterGroupingOperations:
|
|||
:param parameter_grouping_post_required_parameters: Parameter group. Required.
|
||||
:type parameter_grouping_post_required_parameters:
|
||||
~azureparametergrouping.models.ParameterGroupingPostRequiredParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -135,7 +134,6 @@ class ParameterGroupingOperations:
|
|||
:param parameter_grouping_post_optional_parameters: Parameter group. Default value is None.
|
||||
:type parameter_grouping_post_optional_parameters:
|
||||
~azureparametergrouping.models.ParameterGroupingPostOptionalParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -197,7 +195,6 @@ class ParameterGroupingOperations:
|
|||
None.
|
||||
:type parameter_grouping_post_reserved_words_parameters:
|
||||
~azureparametergrouping.models.ParameterGroupingPostReservedWordsParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -262,7 +259,6 @@ class ParameterGroupingOperations:
|
|||
value is None.
|
||||
:type parameter_grouping_post_multi_param_groups_second_param_group:
|
||||
~azureparametergrouping.models.ParameterGroupingPostMultiParamGroupsSecondParamGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -325,7 +321,6 @@ class ParameterGroupingOperations:
|
|||
|
||||
:param first_parameter_group: Parameter group. Default value is None.
|
||||
:type first_parameter_group: ~azureparametergrouping.models.FirstParameterGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -382,7 +377,6 @@ class ParameterGroupingOperations:
|
|||
|
||||
:param grouper: Parameter group. Default value is None.
|
||||
:type grouper: ~azureparametergrouping.models.Grouper
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -213,7 +213,6 @@ class ParameterGroupingOperations:
|
|||
:param parameter_grouping_post_required_parameters: Parameter group. Required.
|
||||
:type parameter_grouping_post_required_parameters:
|
||||
~azureparametergrouping.models.ParameterGroupingPostRequiredParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -281,7 +280,6 @@ class ParameterGroupingOperations:
|
|||
:param parameter_grouping_post_optional_parameters: Parameter group. Default value is None.
|
||||
:type parameter_grouping_post_optional_parameters:
|
||||
~azureparametergrouping.models.ParameterGroupingPostOptionalParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -343,7 +341,6 @@ class ParameterGroupingOperations:
|
|||
None.
|
||||
:type parameter_grouping_post_reserved_words_parameters:
|
||||
~azureparametergrouping.models.ParameterGroupingPostReservedWordsParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -408,7 +405,6 @@ class ParameterGroupingOperations:
|
|||
value is None.
|
||||
:type parameter_grouping_post_multi_param_groups_second_param_group:
|
||||
~azureparametergrouping.models.ParameterGroupingPostMultiParamGroupsSecondParamGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -471,7 +467,6 @@ class ParameterGroupingOperations:
|
|||
|
||||
:param first_parameter_group: Parameter group. Default value is None.
|
||||
:type first_parameter_group: ~azureparametergrouping.models.FirstParameterGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -528,7 +523,6 @@ class ParameterGroupingOperations:
|
|||
|
||||
:param grouper: Parameter group. Default value is None.
|
||||
:type grouper: ~azureparametergrouping.models.Grouper
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -41,7 +41,6 @@ class AutoRestReportServiceForAzureOperationsMixin( # pylint: disable=name-too-
|
|||
for Python). The only effect is, that generators that run all tests several times, can
|
||||
distinguish the generated reports. Default value is None.
|
||||
:type qualifier: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: dict mapping str to int or the result of cls(response)
|
||||
:rtype: dict[str, int]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -63,7 +63,6 @@ class AutoRestReportServiceForAzureOperationsMixin( # pylint: disable=name-too-
|
|||
for Python). The only effect is, that generators that run all tests several times, can
|
||||
distinguish the generated reports. Default value is None.
|
||||
:type qualifier: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: dict mapping str to int or the result of cls(response)
|
||||
:rtype: dict[str, int]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -59,7 +59,6 @@ class ApiVersionDefaultOperations:
|
|||
async def get_method_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -107,7 +106,6 @@ class ApiVersionDefaultOperations:
|
|||
) -> None:
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -153,7 +151,6 @@ class ApiVersionDefaultOperations:
|
|||
async def get_path_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -199,7 +196,6 @@ class ApiVersionDefaultOperations:
|
|||
async def get_swagger_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -62,7 +62,6 @@ class ApiVersionLocalOperations:
|
|||
:keyword api_version: This should appear as a method parameter, use value '2.0'. Default value
|
||||
is "2.0". Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -113,7 +112,6 @@ class ApiVersionLocalOperations:
|
|||
:param api_version: This should appear as a method parameter, use value null, this should
|
||||
result in no serialized parameter. Default value is None.
|
||||
:type api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -161,7 +159,6 @@ class ApiVersionLocalOperations:
|
|||
:keyword api_version: This should appear as a method parameter, use value '2.0'. Default value
|
||||
is "2.0". Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -211,7 +208,6 @@ class ApiVersionLocalOperations:
|
|||
Default value is "2.0". Note that overriding this default value may result in unsupported
|
||||
behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -61,7 +61,6 @@ class HeaderOperations:
|
|||
|
||||
:param foo_client_request_id: The fooRequestId. Required.
|
||||
:type foo_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -117,7 +116,6 @@ class HeaderOperations:
|
|||
:param header_custom_named_request_id_param_grouping_parameters: Parameter group. Required.
|
||||
:type header_custom_named_request_id_param_grouping_parameters:
|
||||
~azurespecialproperties.models.HeaderCustomNamedRequestIdParamGroupingParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -171,7 +169,6 @@ class HeaderOperations:
|
|||
|
||||
:param foo_client_request_id: The fooRequestId. Required.
|
||||
:type foo_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -62,7 +62,6 @@ class OdataOperations:
|
|||
:type top: int
|
||||
:param orderby: The orderby parameter with value id. Default value is None.
|
||||
:type orderby: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -66,7 +66,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param unencoded_path_param: Unencoded path parameter with value 'path1/path2/path3'. Required.
|
||||
:type unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -115,7 +114,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param unencoded_path_param: Unencoded path parameter with value 'path1/path2/path3'. Required.
|
||||
:type unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -164,7 +162,6 @@ class SkipUrlEncodingOperations:
|
|||
Default value is "path1/path2/path3". Note that overriding this default value may result in
|
||||
unsupported behavior.
|
||||
:paramtype unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -214,7 +211,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value 'value1&q2=value2&q3=value3'. Required.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -263,7 +259,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value null. Default value is None.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -312,7 +307,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value 'value1&q2=value2&q3=value3'. Required.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -361,7 +355,6 @@ class SkipUrlEncodingOperations:
|
|||
value is "value1&q2=value2&q3=value3". Note that overriding this default value may result in
|
||||
unsupported behavior.
|
||||
:paramtype q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -61,7 +61,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -107,7 +106,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
null, and client-side validation should prevent you from making this call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -155,7 +153,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -203,7 +200,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -249,7 +245,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -64,7 +64,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: This should appear as a method parameter, use value
|
||||
'1234-5678-9012-3456'. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -115,7 +114,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: This should appear as a method parameter, use value null, client-side
|
||||
validation should prvenet the call. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -166,7 +164,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: Should appear as a method parameter -use value '1234-5678-9012-3456'.
|
||||
Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -217,7 +214,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: The subscriptionId, which appears in the path, the value is always
|
||||
'1234-5678-9012-3456'. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -54,7 +54,6 @@ class XMsClientRequestIdOperations:
|
|||
"""Get method that overwrites x-ms-client-request header with value
|
||||
9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -103,7 +102,6 @@ class XMsClientRequestIdOperations:
|
|||
:param x_ms_client_request_id: This should appear as a method parameter, use value
|
||||
'9C4D50EE-2D56-4CD3-8152-34347DC9F2B0'. Required.
|
||||
:type x_ms_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -135,7 +135,6 @@ class ApiVersionDefaultOperations:
|
|||
def get_method_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -183,7 +182,6 @@ class ApiVersionDefaultOperations:
|
|||
) -> None:
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -229,7 +227,6 @@ class ApiVersionDefaultOperations:
|
|||
def get_path_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -275,7 +272,6 @@ class ApiVersionDefaultOperations:
|
|||
def get_swagger_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -136,7 +136,6 @@ class ApiVersionLocalOperations:
|
|||
:keyword api_version: This should appear as a method parameter, use value '2.0'. Default value
|
||||
is "2.0". Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -187,7 +186,6 @@ class ApiVersionLocalOperations:
|
|||
:param api_version: This should appear as a method parameter, use value null, this should
|
||||
result in no serialized parameter. Default value is None.
|
||||
:type api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -235,7 +233,6 @@ class ApiVersionLocalOperations:
|
|||
:keyword api_version: This should appear as a method parameter, use value '2.0'. Default value
|
||||
is "2.0". Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -285,7 +282,6 @@ class ApiVersionLocalOperations:
|
|||
Default value is "2.0". Note that overriding this default value may result in unsupported
|
||||
behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -110,7 +110,6 @@ class HeaderOperations:
|
|||
|
||||
:param foo_client_request_id: The fooRequestId. Required.
|
||||
:type foo_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -166,7 +165,6 @@ class HeaderOperations:
|
|||
:param header_custom_named_request_id_param_grouping_parameters: Parameter group. Required.
|
||||
:type header_custom_named_request_id_param_grouping_parameters:
|
||||
~azurespecialproperties.models.HeaderCustomNamedRequestIdParamGroupingParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -220,7 +218,6 @@ class HeaderOperations:
|
|||
|
||||
:param foo_client_request_id: The fooRequestId. Required.
|
||||
:type foo_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -91,7 +91,6 @@ class OdataOperations:
|
|||
:type top: int
|
||||
:param orderby: The orderby parameter with value id. Default value is None.
|
||||
:type orderby: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -193,7 +193,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param unencoded_path_param: Unencoded path parameter with value 'path1/path2/path3'. Required.
|
||||
:type unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -242,7 +241,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param unencoded_path_param: Unencoded path parameter with value 'path1/path2/path3'. Required.
|
||||
:type unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -291,7 +289,6 @@ class SkipUrlEncodingOperations:
|
|||
Default value is "path1/path2/path3". Note that overriding this default value may result in
|
||||
unsupported behavior.
|
||||
:paramtype unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -339,7 +336,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value 'value1&q2=value2&q3=value3'. Required.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -388,7 +384,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value null. Default value is None.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -435,7 +430,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value 'value1&q2=value2&q3=value3'. Required.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -484,7 +478,6 @@ class SkipUrlEncodingOperations:
|
|||
value is "value1&q2=value2&q3=value3". Note that overriding this default value may result in
|
||||
unsupported behavior.
|
||||
:paramtype q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -174,7 +174,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -220,7 +219,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
null, and client-side validation should prevent you from making this call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -268,7 +266,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -316,7 +313,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -362,7 +358,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -149,7 +149,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: This should appear as a method parameter, use value
|
||||
'1234-5678-9012-3456'. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -200,7 +199,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: This should appear as a method parameter, use value null, client-side
|
||||
validation should prvenet the call. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -251,7 +249,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: Should appear as a method parameter -use value '1234-5678-9012-3456'.
|
||||
Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -302,7 +299,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: The subscriptionId, which appears in the path, the value is always
|
||||
'1234-5678-9012-3456'. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -80,7 +80,6 @@ class XMsClientRequestIdOperations:
|
|||
"""Get method that overwrites x-ms-client-request header with value
|
||||
9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -129,7 +128,6 @@ class XMsClientRequestIdOperations:
|
|||
:param x_ms_client_request_id: This should appear as a method parameter, use value
|
||||
'9C4D50EE-2D56-4CD3-8152-34347DC9F2B0'. Required.
|
||||
:type x_ms_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -56,7 +56,6 @@ class PathsOperations:
|
|||
|
||||
:param account_name: Account Name. Required.
|
||||
:type account_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -72,7 +72,6 @@ class PathsOperations:
|
|||
|
||||
:param account_name: Account Name. Required.
|
||||
:type account_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -88,7 +88,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_no_item_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that must return result of the default 'value' node.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +161,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_empty_next_link_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that gets an empty next link and should stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -236,7 +234,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_null_next_link_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that must ignore any kind of nextLink, and stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -310,7 +307,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that finishes on the first call without a nextlink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~custompollerpagerdefinitions.aio.AsyncCustomPager[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -388,7 +384,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param name: Default value is None.
|
||||
:type name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -468,7 +463,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation whose first response's items list is empty, but still returns a next link.
|
||||
Second (and final) call, will give you an items list of 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -552,7 +546,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_options:
|
||||
~custompollerpager.models.PagingGetMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -642,7 +635,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
nextOperationWithQueryParams. Default value is True. Note that overriding this default value
|
||||
may result in unsupported behavior.
|
||||
:paramtype query_constant: bool
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -717,7 +709,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param filter: OData filter options. Pass in 'foo'. Default value is None.
|
||||
:type filter: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -797,7 +788,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param maxpagesize: Max page size query param. Don't send. Known values are "5" and None.
|
||||
Default value is "5".
|
||||
:type maxpagesize: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -882,7 +872,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_odata_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_odata_multiple_pages_options:
|
||||
~custompollerpager.models.PagingGetOdataMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -974,7 +963,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
~custompollerpager.models.PagingGetMultiplePagesWithOffsetOptions
|
||||
:param client_request_id: Default value is None.
|
||||
:type client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1060,7 +1048,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that fails on the first call with 500 and then retries and then get a
|
||||
response including a nextLink that has 10 pages.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1135,7 +1122,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that includes a nextLink that has 10 pages, of which the 2nd call fails
|
||||
first with 500. The client should retry and finish all 10 pages eventually.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1209,7 +1195,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages_failure(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the first call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1283,7 +1268,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the second call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1357,7 +1341,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure_uri(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives an invalid nextLink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1437,7 +1420,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type api_version: str
|
||||
:param tenant: Sets the tenant to use. Required.
|
||||
:type tenant: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1513,7 +1495,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param custom_parameter_group: Parameter group. Required.
|
||||
:type custom_parameter_group: ~custompollerpager.models.CustomParameterGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1658,14 +1639,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_multiple_pages_lro_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_lro_options:
|
||||
~custompollerpager.models.PagingGetMultiplePagesLroOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either
|
||||
ProductResult or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -1788,7 +1761,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to append your
|
||||
client's api version to the next link.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1865,7 +1837,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to reformat it and
|
||||
override the returned api version with your client's api version.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1944,7 +1915,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that returns a paging model whose item name is is overriden by
|
||||
x-ms-client-name 'indexes'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -549,7 +549,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_no_item_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that must return result of the default 'value' node.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -623,7 +622,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_empty_next_link_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that gets an empty next link and should stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -697,7 +695,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_null_next_link_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that must ignore any kind of nextLink, and stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -771,7 +768,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that finishes on the first call without a nextlink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~custompollerpagerdefinitions.CustomPager[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -849,7 +845,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param name: Default value is None.
|
||||
:type name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -929,7 +924,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation whose first response's items list is empty, but still returns a next link.
|
||||
Second (and final) call, will give you an items list of 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1013,7 +1007,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_options:
|
||||
~custompollerpager.models.PagingGetMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1103,7 +1096,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
nextOperationWithQueryParams. Default value is True. Note that overriding this default value
|
||||
may result in unsupported behavior.
|
||||
:paramtype query_constant: bool
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1178,7 +1170,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param filter: OData filter options. Pass in 'foo'. Default value is None.
|
||||
:type filter: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1256,7 +1247,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param maxpagesize: Max page size query param. Don't send. Known values are "5" and None.
|
||||
Default value is "5".
|
||||
:type maxpagesize: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1341,7 +1331,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_odata_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_odata_multiple_pages_options:
|
||||
~custompollerpager.models.PagingGetOdataMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1433,7 +1422,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
~custompollerpager.models.PagingGetMultiplePagesWithOffsetOptions
|
||||
:param client_request_id: Default value is None.
|
||||
:type client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1519,7 +1507,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that fails on the first call with 500 and then retries and then get a
|
||||
response including a nextLink that has 10 pages.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1594,7 +1581,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that includes a nextLink that has 10 pages, of which the 2nd call fails
|
||||
first with 500. The client should retry and finish all 10 pages eventually.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1668,7 +1654,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages_failure(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the first call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1742,7 +1727,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the second call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1816,7 +1800,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure_uri(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives an invalid nextLink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1896,7 +1879,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type api_version: str
|
||||
:param tenant: Sets the tenant to use. Required.
|
||||
:type tenant: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1972,7 +1954,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param custom_parameter_group: Parameter group. Required.
|
||||
:type custom_parameter_group: ~custompollerpager.models.CustomParameterGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2117,14 +2098,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_multiple_pages_lro_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_lro_options:
|
||||
~custompollerpager.models.PagingGetMultiplePagesLroOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either
|
||||
ProductResult or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -2247,7 +2220,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to append your
|
||||
client's api version to the next link.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2324,7 +2296,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to reformat it and
|
||||
override the returned api version with your client's api version.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2403,7 +2374,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that returns a paging model whose item name is is overriden by
|
||||
x-ms-client-name 'indexes'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custompollerpager.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -60,7 +60,6 @@ class PagingOperations:
|
|||
|
||||
:param account_name: Account Name. Required.
|
||||
:type account_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custombaseurlpaging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -133,7 +132,6 @@ class PagingOperations:
|
|||
|
||||
:param account_name: Account Name. Required.
|
||||
:type account_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~custombaseurlpaging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -109,7 +109,6 @@ class PagingOperations:
|
|||
|
||||
:param account_name: Account Name. Required.
|
||||
:type account_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custombaseurlpaging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -182,7 +181,6 @@ class PagingOperations:
|
|||
|
||||
:param account_name: Account Name. Required.
|
||||
:type account_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~custombaseurlpaging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -50,7 +50,6 @@ class HttpSuccessOperations:
|
|||
async def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -94,7 +93,6 @@ class HttpSuccessOperations:
|
|||
async def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HttpSuccessOperations:
|
|||
async def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -74,7 +74,6 @@ class HttpSuccessOperations:
|
|||
def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -118,7 +117,6 @@ class HttpSuccessOperations:
|
|||
def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HttpSuccessOperations:
|
|||
def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -50,7 +50,6 @@ class HeadExceptionOperations:
|
|||
async def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -94,7 +93,6 @@ class HeadExceptionOperations:
|
|||
async def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HeadExceptionOperations:
|
|||
async def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -74,7 +74,6 @@ class HeadExceptionOperations:
|
|||
def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -118,7 +117,6 @@ class HeadExceptionOperations:
|
|||
def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HeadExceptionOperations:
|
|||
def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -50,7 +50,6 @@ class HttpSuccessOperations:
|
|||
async def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -94,7 +93,6 @@ class HttpSuccessOperations:
|
|||
async def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HttpSuccessOperations:
|
|||
async def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -74,7 +74,6 @@ class HttpSuccessOperations:
|
|||
def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -118,7 +117,6 @@ class HttpSuccessOperations:
|
|||
def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HttpSuccessOperations:
|
|||
def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -135,14 +135,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -163,14 +155,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -192,14 +176,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -329,14 +305,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -357,14 +325,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -386,14 +346,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -510,14 +462,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -536,14 +480,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -563,14 +499,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -686,14 +614,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -713,14 +633,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -741,14 +653,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -134,14 +134,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -161,14 +153,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -189,14 +173,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -320,14 +296,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -347,14 +315,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -375,14 +335,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -495,14 +447,6 @@ class LRORetrysOperations:
|
|||
entity that contains ProvisioningState=’Accepted’. Polls return this value until the last poll
|
||||
returns a ‘200’ with ProvisioningState=’Succeeded’.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -590,14 +534,6 @@ class LRORetrysOperations:
|
|||
"""Long running delete request, service returns a 500, then a 202 to the initial request. Polls
|
||||
return this value until the last poll returns a ‘200’ with ProvisioningState=’Succeeded’.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -685,14 +621,6 @@ class LRORetrysOperations:
|
|||
"""Long running delete request, service returns a 500, then a 202 to the initial request. Poll the
|
||||
endpoint indicated in the Azure-AsyncOperation header for operation status.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -797,14 +725,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -822,14 +742,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -848,14 +760,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -970,14 +874,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -996,14 +892,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1023,14 +911,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -151,14 +151,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -176,14 +168,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -202,14 +186,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -329,14 +305,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -355,14 +323,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -382,14 +342,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -509,14 +461,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -535,14 +479,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -562,14 +498,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -692,14 +620,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -718,14 +638,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -745,14 +657,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -853,14 +757,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
async def begin_delete_non_retry400(self, **kwargs: Any) -> AsyncLROPoller[None]:
|
||||
"""Long running delete request, service returns a 400 with an error body.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -942,14 +838,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
async def begin_delete202_non_retry400(self, **kwargs: Any) -> AsyncLROPoller[None]:
|
||||
"""Long running delete request, service returns a 202 with a location header.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1035,14 +923,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request. Poll the endpoint
|
||||
indicated in the Azure-AsyncOperation header for operation status.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1146,14 +1026,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1170,14 +1042,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1195,14 +1059,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1312,14 +1168,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1336,14 +1184,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1361,14 +1201,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1482,14 +1314,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1507,14 +1331,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1533,14 +1349,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1654,14 +1462,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -1679,14 +1479,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -1705,14 +1497,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -1836,14 +1620,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -1863,14 +1639,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -1891,14 +1659,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2030,14 +1790,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2057,14 +1809,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2085,14 +1829,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2189,14 +1925,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
async def begin_delete204_succeeded(self, **kwargs: Any) -> AsyncLROPoller[None]:
|
||||
"""Long running delete request, service returns a 204 to the initial request, indicating success.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2284,14 +2012,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request. Poll the endpoint
|
||||
indicated in the Azure-AsyncOperation header for operation status.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2396,14 +2116,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2421,14 +2133,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2447,14 +2151,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2569,14 +2265,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2595,14 +2283,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2622,14 +2302,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2742,14 +2414,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2768,14 +2432,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2795,14 +2451,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2926,14 +2574,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2953,14 +2593,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -2981,14 +2613,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -3120,14 +2744,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -3147,14 +2763,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -3175,14 +2783,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either Product or the result of
|
||||
cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~lro.models.Product]
|
||||
|
@ -3284,14 +2884,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request receing a reponse
|
||||
with an invalid 'Location' and 'Retry-After' headers.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3379,14 +2971,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request. The endpoint
|
||||
indicated in the Azure-AsyncOperation header is invalid.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3474,14 +3058,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request. Poll the endpoint
|
||||
indicated in the Azure-AsyncOperation header for operation status.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3586,14 +3162,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3611,14 +3179,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3637,14 +3197,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3759,14 +3311,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3785,14 +3329,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3812,14 +3348,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3934,14 +3462,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3960,14 +3480,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3987,14 +3499,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -201,14 +201,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -228,14 +220,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -256,14 +240,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -392,14 +368,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -419,14 +387,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -447,14 +407,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -570,14 +522,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -596,14 +540,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -623,14 +559,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -746,14 +674,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -773,14 +693,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -801,14 +713,6 @@ class LROsCustomHeaderOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -241,14 +241,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -267,14 +259,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -294,14 +278,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -424,14 +400,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -450,14 +418,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -477,14 +437,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -596,14 +548,6 @@ class LRORetrysOperations:
|
|||
entity that contains ProvisioningState=’Accepted’. Polls return this value until the last poll
|
||||
returns a ‘200’ with ProvisioningState=’Succeeded’.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -688,14 +632,6 @@ class LRORetrysOperations:
|
|||
"""Long running delete request, service returns a 500, then a 202 to the initial request. Polls
|
||||
return this value until the last poll returns a ‘200’ with ProvisioningState=’Succeeded’.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -783,14 +719,6 @@ class LRORetrysOperations:
|
|||
"""Long running delete request, service returns a 500, then a 202 to the initial request. Poll the
|
||||
endpoint indicated in the Azure-AsyncOperation header for operation status.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -895,14 +823,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -920,14 +840,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -946,14 +858,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1068,14 +972,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1094,14 +990,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1121,14 +1009,6 @@ class LRORetrysOperations:
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -563,14 +563,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -587,14 +579,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -612,14 +596,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -738,14 +714,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -763,14 +731,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -789,14 +749,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -915,14 +867,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -940,14 +884,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -966,14 +902,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1095,14 +1023,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1120,14 +1040,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1146,14 +1058,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1251,14 +1155,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
def begin_delete_non_retry400(self, **kwargs: Any) -> LROPoller[None]:
|
||||
"""Long running delete request, service returns a 400 with an error body.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1338,14 +1234,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
def begin_delete202_non_retry400(self, **kwargs: Any) -> LROPoller[None]:
|
||||
"""Long running delete request, service returns a 202 with a location header.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1431,14 +1319,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request. Poll the endpoint
|
||||
indicated in the Azure-AsyncOperation header for operation status.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1542,14 +1422,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1566,14 +1438,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1591,14 +1455,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1708,14 +1564,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1732,14 +1580,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1757,14 +1597,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1878,14 +1710,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1903,14 +1727,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1929,14 +1745,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2050,14 +1858,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2074,14 +1874,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2099,14 +1891,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2229,14 +2013,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2255,14 +2031,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2282,14 +2050,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2420,14 +2180,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2446,14 +2198,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2473,14 +2217,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2574,14 +2310,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
def begin_delete204_succeeded(self, **kwargs: Any) -> LROPoller[None]:
|
||||
"""Long running delete request, service returns a 204 to the initial request, indicating success.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2669,14 +2397,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request. Poll the endpoint
|
||||
indicated in the Azure-AsyncOperation header for operation status.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2781,14 +2501,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2806,14 +2518,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2832,14 +2536,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2954,14 +2650,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2980,14 +2668,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3007,14 +2687,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3127,14 +2799,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3152,14 +2816,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3178,14 +2834,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3308,14 +2956,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3334,14 +2974,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3361,14 +2993,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3499,14 +3123,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3525,14 +3141,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3552,14 +3160,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~lro.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3660,14 +3260,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request receing a reponse
|
||||
with an invalid 'Location' and 'Retry-After' headers.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3755,14 +3347,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request. The endpoint
|
||||
indicated in the Azure-AsyncOperation header is invalid.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3850,14 +3434,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
"""Long running delete request, service returns a 202 to the initial request. Poll the endpoint
|
||||
indicated in the Azure-AsyncOperation header for operation status.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3962,14 +3538,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -3987,14 +3555,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -4013,14 +3573,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -4135,14 +3687,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -4161,14 +3705,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -4188,14 +3724,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -4310,14 +3838,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for JSON body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -4336,14 +3856,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Content type parameter for binary body.
|
||||
Default value is "application/json".
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -4363,14 +3875,6 @@ class LROSADsOperations: # pylint: disable=too-many-public-methods
|
|||
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
|
||||
Default value is None.
|
||||
:paramtype content_type: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -96,14 +96,6 @@ class LROWithParamaterizedEndpointsOperationsMixin( # pylint: disable=name-too-
|
|||
|
||||
:param account_name: Account Name. Pass in 'local' to pass test. Required.
|
||||
:type account_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncLROBasePolling. Pass in False
|
||||
for this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either str or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[str]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -220,14 +212,6 @@ class LROWithParamaterizedEndpointsOperationsMixin( # pylint: disable=name-too-
|
|||
:keyword constant_parameter: Next link for the list operation. Default value is "iAmConstant".
|
||||
Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype constant_parameter: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncLROBasePolling. Pass in False
|
||||
for this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either str or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[str]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -132,14 +132,6 @@ class LROWithParamaterizedEndpointsOperationsMixin( # pylint: disable=name-too-
|
|||
|
||||
:param account_name: Account Name. Pass in 'local' to pass test. Required.
|
||||
:type account_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be LROBasePolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either str or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[str]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -256,14 +248,6 @@ class LROWithParamaterizedEndpointsOperationsMixin( # pylint: disable=name-too-
|
|||
:keyword constant_parameter: Next link for the list operation. Default value is "iAmConstant".
|
||||
Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype constant_parameter: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be LROBasePolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either str or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[str]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -58,7 +58,6 @@ class ApiVersionDefaultOperations:
|
|||
async def get_method_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -106,7 +105,6 @@ class ApiVersionDefaultOperations:
|
|||
) -> None:
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -152,7 +150,6 @@ class ApiVersionDefaultOperations:
|
|||
async def get_path_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -198,7 +195,6 @@ class ApiVersionDefaultOperations:
|
|||
async def get_swagger_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -61,7 +61,6 @@ class ApiVersionLocalOperations:
|
|||
:keyword api_version: This should appear as a method parameter, use value '2.0'. Default value
|
||||
is "2.0". Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -112,7 +111,6 @@ class ApiVersionLocalOperations:
|
|||
:param api_version: This should appear as a method parameter, use value null, this should
|
||||
result in no serialized parameter. Default value is None.
|
||||
:type api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -160,7 +158,6 @@ class ApiVersionLocalOperations:
|
|||
:keyword api_version: This should appear as a method parameter, use value '2.0'. Default value
|
||||
is "2.0". Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -210,7 +207,6 @@ class ApiVersionLocalOperations:
|
|||
Default value is "2.0". Note that overriding this default value may result in unsupported
|
||||
behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -60,7 +60,6 @@ class HeaderOperations:
|
|||
|
||||
:param foo_client_request_id: The fooRequestId. Required.
|
||||
:type foo_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -116,7 +115,6 @@ class HeaderOperations:
|
|||
:param header_custom_named_request_id_param_grouping_parameters: Parameter group. Required.
|
||||
:type header_custom_named_request_id_param_grouping_parameters:
|
||||
~mixedapiversion.models.HeaderCustomNamedRequestIdParamGroupingParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -172,7 +170,6 @@ class HeaderOperations:
|
|||
|
||||
:param foo_client_request_id: The fooRequestId. Required.
|
||||
:type foo_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -52,7 +52,6 @@ class HttpSuccessOperations:
|
|||
async def head200(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -95,7 +94,6 @@ class HttpSuccessOperations:
|
|||
async def head204(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HttpSuccessOperations:
|
|||
async def head404(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -61,7 +61,6 @@ class OdataOperations:
|
|||
:type top: int
|
||||
:param orderby: The orderby parameter with value id. Default value is None.
|
||||
:type orderby: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -65,7 +65,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param unencoded_path_param: Unencoded path parameter with value 'path1/path2/path3'. Required.
|
||||
:type unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -114,7 +113,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param unencoded_path_param: Unencoded path parameter with value 'path1/path2/path3'. Required.
|
||||
:type unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -163,7 +161,6 @@ class SkipUrlEncodingOperations:
|
|||
Default value is "path1/path2/path3". Note that overriding this default value may result in
|
||||
unsupported behavior.
|
||||
:paramtype unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -213,7 +210,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value 'value1&q2=value2&q3=value3'. Required.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -262,7 +258,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value null. Default value is None.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -311,7 +306,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value 'value1&q2=value2&q3=value3'. Required.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -360,7 +354,6 @@ class SkipUrlEncodingOperations:
|
|||
value is "value1&q2=value2&q3=value3". Note that overriding this default value may result in
|
||||
unsupported behavior.
|
||||
:paramtype q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -60,7 +60,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -106,7 +105,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
null, and client-side validation should prevent you from making this call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -154,7 +152,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -202,7 +199,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -248,7 +244,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -63,7 +63,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: This should appear as a method parameter, use value
|
||||
'1234-5678-9012-3456'. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -114,7 +113,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: This should appear as a method parameter, use value null, client-side
|
||||
validation should prvenet the call. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -165,7 +163,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: Should appear as a method parameter -use value '1234-5678-9012-3456'.
|
||||
Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -216,7 +213,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: The subscriptionId, which appears in the path, the value is always
|
||||
'1234-5678-9012-3456'. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -53,7 +53,6 @@ class XMsClientRequestIdOperations:
|
|||
"""Get method that overwrites x-ms-client-request header with value
|
||||
9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -102,7 +101,6 @@ class XMsClientRequestIdOperations:
|
|||
:param x_ms_client_request_id: This should appear as a method parameter, use value
|
||||
'9C4D50EE-2D56-4CD3-8152-34347DC9F2B0'. Required.
|
||||
:type x_ms_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -134,7 +134,6 @@ class ApiVersionDefaultOperations:
|
|||
def get_method_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -182,7 +181,6 @@ class ApiVersionDefaultOperations:
|
|||
) -> None:
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -228,7 +226,6 @@ class ApiVersionDefaultOperations:
|
|||
def get_path_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -274,7 +271,6 @@ class ApiVersionDefaultOperations:
|
|||
def get_swagger_global_valid(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""GET method with api-version modeled in global settings.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -135,7 +135,6 @@ class ApiVersionLocalOperations:
|
|||
:keyword api_version: This should appear as a method parameter, use value '2.0'. Default value
|
||||
is "2.0". Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -186,7 +185,6 @@ class ApiVersionLocalOperations:
|
|||
:param api_version: This should appear as a method parameter, use value null, this should
|
||||
result in no serialized parameter. Default value is None.
|
||||
:type api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -234,7 +232,6 @@ class ApiVersionLocalOperations:
|
|||
:keyword api_version: This should appear as a method parameter, use value '2.0'. Default value
|
||||
is "2.0". Note that overriding this default value may result in unsupported behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -284,7 +281,6 @@ class ApiVersionLocalOperations:
|
|||
Default value is "2.0". Note that overriding this default value may result in unsupported
|
||||
behavior.
|
||||
:paramtype api_version: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -109,7 +109,6 @@ class HeaderOperations:
|
|||
|
||||
:param foo_client_request_id: The fooRequestId. Required.
|
||||
:type foo_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -165,7 +164,6 @@ class HeaderOperations:
|
|||
:param header_custom_named_request_id_param_grouping_parameters: Parameter group. Required.
|
||||
:type header_custom_named_request_id_param_grouping_parameters:
|
||||
~mixedapiversion.models.HeaderCustomNamedRequestIdParamGroupingParameters
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -221,7 +219,6 @@ class HeaderOperations:
|
|||
|
||||
:param foo_client_request_id: The fooRequestId. Required.
|
||||
:type foo_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -76,7 +76,6 @@ class HttpSuccessOperations:
|
|||
def head200(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -119,7 +118,6 @@ class HttpSuccessOperations:
|
|||
def head204(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HttpSuccessOperations:
|
|||
def head404(self, **kwargs: Any) -> None: # pylint: disable=inconsistent-return-statements
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -90,7 +90,6 @@ class OdataOperations:
|
|||
:type top: int
|
||||
:param orderby: The orderby parameter with value id. Default value is None.
|
||||
:type orderby: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -192,7 +192,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param unencoded_path_param: Unencoded path parameter with value 'path1/path2/path3'. Required.
|
||||
:type unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -241,7 +240,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param unencoded_path_param: Unencoded path parameter with value 'path1/path2/path3'. Required.
|
||||
:type unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -290,7 +288,6 @@ class SkipUrlEncodingOperations:
|
|||
Default value is "path1/path2/path3". Note that overriding this default value may result in
|
||||
unsupported behavior.
|
||||
:paramtype unencoded_path_param: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -338,7 +335,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value 'value1&q2=value2&q3=value3'. Required.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -387,7 +383,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value null. Default value is None.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -434,7 +429,6 @@ class SkipUrlEncodingOperations:
|
|||
|
||||
:param q1: Unencoded query parameter with value 'value1&q2=value2&q3=value3'. Required.
|
||||
:type q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -483,7 +477,6 @@ class SkipUrlEncodingOperations:
|
|||
value is "value1&q2=value2&q3=value3". Note that overriding this default value may result in
|
||||
unsupported behavior.
|
||||
:paramtype q1: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -173,7 +173,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -219,7 +218,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
null, and client-side validation should prevent you from making this call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -267,7 +265,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -315,7 +312,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -361,7 +357,6 @@ class SubscriptionInCredentialsOperations:
|
|||
"""POST method with subscriptionId modeled in credentials. Set the credential subscriptionId to
|
||||
'1234-5678-9012-3456' to succeed.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -148,7 +148,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: This should appear as a method parameter, use value
|
||||
'1234-5678-9012-3456'. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -199,7 +198,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: This should appear as a method parameter, use value null, client-side
|
||||
validation should prvenet the call. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -250,7 +248,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: Should appear as a method parameter -use value '1234-5678-9012-3456'.
|
||||
Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -301,7 +298,6 @@ class SubscriptionInMethodOperations:
|
|||
:param subscription_id: The subscriptionId, which appears in the path, the value is always
|
||||
'1234-5678-9012-3456'. Required.
|
||||
:type subscription_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -79,7 +79,6 @@ class XMsClientRequestIdOperations:
|
|||
"""Get method that overwrites x-ms-client-request header with value
|
||||
9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -128,7 +127,6 @@ class XMsClientRequestIdOperations:
|
|||
:param x_ms_client_request_id: This should appear as a method parameter, use value
|
||||
'9C4D50EE-2D56-4CD3-8152-34347DC9F2B0'. Required.
|
||||
:type x_ms_client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: None or the result of cls(response)
|
||||
:rtype: None
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -50,7 +50,6 @@ class HttpSuccessOperations:
|
|||
async def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -94,7 +93,6 @@ class HttpSuccessOperations:
|
|||
async def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HttpSuccessOperations:
|
|||
async def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -74,7 +74,6 @@ class HttpSuccessOperations:
|
|||
def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -118,7 +117,6 @@ class HttpSuccessOperations:
|
|||
def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HttpSuccessOperations:
|
|||
def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -86,7 +86,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_no_item_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that must return result of the default 'value' node.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -160,7 +159,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_empty_next_link_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that gets an empty next link and should stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -234,7 +232,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_null_next_link_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that must ignore any kind of nextLink, and stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -308,7 +305,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that finishes on the first call without a nextlink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -386,7 +382,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param name: Default value is None.
|
||||
:type name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -466,7 +461,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation whose first response's items list is empty, but still returns a next link.
|
||||
Second (and final) call, will give you an items list of 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -550,7 +544,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_options:
|
||||
~azure.packagemode.batch.paging.models.PagingGetMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -640,7 +633,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
nextOperationWithQueryParams. Default value is True. Note that overriding this default value
|
||||
may result in unsupported behavior.
|
||||
:paramtype query_constant: bool
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -715,7 +707,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param filter: OData filter options. Pass in 'foo'. Default value is None.
|
||||
:type filter: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -795,7 +786,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param maxpagesize: Max page size query param. Don't send. Known values are "5" and None.
|
||||
Default value is "5".
|
||||
:type maxpagesize: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -880,7 +870,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_odata_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_odata_multiple_pages_options:
|
||||
~azure.packagemode.batch.paging.models.PagingGetOdataMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -972,7 +961,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
~azure.packagemode.batch.paging.models.PagingGetMultiplePagesWithOffsetOptions
|
||||
:param client_request_id: Default value is None.
|
||||
:type client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1058,7 +1046,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that fails on the first call with 500 and then retries and then get a
|
||||
response including a nextLink that has 10 pages.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1133,7 +1120,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that includes a nextLink that has 10 pages, of which the 2nd call fails
|
||||
first with 500. The client should retry and finish all 10 pages eventually.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1207,7 +1193,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages_failure(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the first call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1281,7 +1266,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the second call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1355,7 +1339,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure_uri(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives an invalid nextLink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1435,7 +1418,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type api_version: str
|
||||
:param tenant: Sets the tenant to use. Required.
|
||||
:type tenant: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1511,7 +1493,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param custom_parameter_group: Parameter group. Required.
|
||||
:type custom_parameter_group: ~azure.packagemode.batch.paging.models.CustomParameterGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1656,14 +1637,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_multiple_pages_lro_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_lro_options:
|
||||
~azure.packagemode.batch.paging.models.PagingGetMultiplePagesLroOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncARMPolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either
|
||||
ProductResult or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -1786,7 +1759,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to append your
|
||||
client's api version to the next link.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1863,7 +1835,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to reformat it and
|
||||
override the returned api version with your client's api version.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1942,7 +1913,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that returns a paging model whose item name is is overriden by
|
||||
x-ms-client-name 'indexes'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -547,7 +547,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_no_item_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that must return result of the default 'value' node.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -621,7 +620,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_empty_next_link_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that gets an empty next link and should stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -695,7 +693,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_null_next_link_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that must ignore any kind of nextLink, and stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -769,7 +766,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that finishes on the first call without a nextlink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -847,7 +843,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param name: Default value is None.
|
||||
:type name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -927,7 +922,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation whose first response's items list is empty, but still returns a next link.
|
||||
Second (and final) call, will give you an items list of 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1011,7 +1005,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_options:
|
||||
~azure.packagemode.batch.paging.models.PagingGetMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1101,7 +1094,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
nextOperationWithQueryParams. Default value is True. Note that overriding this default value
|
||||
may result in unsupported behavior.
|
||||
:paramtype query_constant: bool
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1176,7 +1168,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param filter: OData filter options. Pass in 'foo'. Default value is None.
|
||||
:type filter: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1254,7 +1245,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param maxpagesize: Max page size query param. Don't send. Known values are "5" and None.
|
||||
Default value is "5".
|
||||
:type maxpagesize: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1339,7 +1329,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_odata_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_odata_multiple_pages_options:
|
||||
~azure.packagemode.batch.paging.models.PagingGetOdataMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1431,7 +1420,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
~azure.packagemode.batch.paging.models.PagingGetMultiplePagesWithOffsetOptions
|
||||
:param client_request_id: Default value is None.
|
||||
:type client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1517,7 +1505,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that fails on the first call with 500 and then retries and then get a
|
||||
response including a nextLink that has 10 pages.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1592,7 +1579,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that includes a nextLink that has 10 pages, of which the 2nd call fails
|
||||
first with 500. The client should retry and finish all 10 pages eventually.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1666,7 +1652,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages_failure(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the first call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1740,7 +1725,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the second call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1814,7 +1798,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure_uri(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives an invalid nextLink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1894,7 +1877,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type api_version: str
|
||||
:param tenant: Sets the tenant to use. Required.
|
||||
:type tenant: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1970,7 +1952,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param custom_parameter_group: Parameter group. Required.
|
||||
:type custom_parameter_group: ~azure.packagemode.batch.paging.models.CustomParameterGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2115,14 +2096,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_multiple_pages_lro_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_lro_options:
|
||||
~azure.packagemode.batch.paging.models.PagingGetMultiplePagesLroOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be ARMPolling. Pass in False for this
|
||||
operation to not poll, or pass in your own initialized polling object for a personal polling
|
||||
strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either
|
||||
ProductResult or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -2245,7 +2218,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to append your
|
||||
client's api version to the next link.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2322,7 +2294,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to reformat it and
|
||||
override the returned api version with your client's api version.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2401,7 +2372,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that returns a paging model whose item name is is overriden by
|
||||
x-ms-client-name 'indexes'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.packagemode.batch.paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -50,7 +50,6 @@ class HttpSuccessOperations:
|
|||
async def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -94,7 +93,6 @@ class HttpSuccessOperations:
|
|||
async def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HttpSuccessOperations:
|
|||
async def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -74,7 +74,6 @@ class HttpSuccessOperations:
|
|||
def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -118,7 +117,6 @@ class HttpSuccessOperations:
|
|||
def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HttpSuccessOperations:
|
|||
def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -50,7 +50,6 @@ class HttpSuccessOperations:
|
|||
async def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -94,7 +93,6 @@ class HttpSuccessOperations:
|
|||
async def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HttpSuccessOperations:
|
|||
async def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -74,7 +74,6 @@ class HttpSuccessOperations:
|
|||
def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -118,7 +117,6 @@ class HttpSuccessOperations:
|
|||
def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HttpSuccessOperations:
|
|||
def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -50,7 +50,6 @@ class HttpSuccessOperations:
|
|||
async def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -94,7 +93,6 @@ class HttpSuccessOperations:
|
|||
async def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -138,7 +136,6 @@ class HttpSuccessOperations:
|
|||
async def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -74,7 +74,6 @@ class HttpSuccessOperations:
|
|||
def head200(self, **kwargs: Any) -> bool:
|
||||
"""Return 200 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -118,7 +117,6 @@ class HttpSuccessOperations:
|
|||
def head204(self, **kwargs: Any) -> bool:
|
||||
"""Return 204 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -162,7 +160,6 @@ class HttpSuccessOperations:
|
|||
def head404(self, **kwargs: Any) -> bool:
|
||||
"""Return 404 status code if successful.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: bool or the result of cls(response)
|
||||
:rtype: bool
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -85,7 +85,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_no_item_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that must return result of the default 'value' node.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -159,7 +158,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_empty_next_link_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that gets an empty next link and should stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -233,7 +231,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_null_next_link_name_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that must ignore any kind of nextLink, and stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -307,7 +304,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that finishes on the first call without a nextlink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -385,7 +381,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param name: Default value is None.
|
||||
:type name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -465,7 +460,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation whose first response's items list is empty, but still returns a next link.
|
||||
Second (and final) call, will give you an items list of 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -548,7 +542,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type client_request_id: str
|
||||
:param paging_get_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_options: ~paging.models.PagingGetMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -638,7 +631,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
nextOperationWithQueryParams. Default value is True. Note that overriding this default value
|
||||
may result in unsupported behavior.
|
||||
:paramtype query_constant: bool
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -713,7 +705,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param filter: OData filter options. Pass in 'foo'. Default value is None.
|
||||
:type filter: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -793,7 +784,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param maxpagesize: Max page size query param. Don't send. Known values are "5" and None.
|
||||
Default value is "5".
|
||||
:type maxpagesize: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -878,7 +868,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_odata_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_odata_multiple_pages_options:
|
||||
~paging.models.PagingGetOdataMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -970,7 +959,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
~paging.models.PagingGetMultiplePagesWithOffsetOptions
|
||||
:param client_request_id: Default value is None.
|
||||
:type client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1056,7 +1044,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that fails on the first call with 500 and then retries and then get a
|
||||
response including a nextLink that has 10 pages.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1131,7 +1118,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that includes a nextLink that has 10 pages, of which the 2nd call fails
|
||||
first with 500. The client should retry and finish all 10 pages eventually.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1205,7 +1191,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages_failure(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the first call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1279,7 +1264,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the second call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1353,7 +1337,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure_uri(self, **kwargs: Any) -> AsyncIterable["_models.Product"]:
|
||||
"""A paging operation that receives an invalid nextLink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1433,7 +1416,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type api_version: str
|
||||
:param tenant: Sets the tenant to use. Required.
|
||||
:type tenant: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1509,7 +1491,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param custom_parameter_group: Parameter group. Required.
|
||||
:type custom_parameter_group: ~paging.models.CustomParameterGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1653,14 +1634,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type client_request_id: str
|
||||
:param paging_get_multiple_pages_lro_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_lro_options: ~paging.models.PagingGetMultiplePagesLroOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be AsyncLROBasePolling. Pass in False
|
||||
for this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either
|
||||
ProductResult or the result of cls(response)
|
||||
:rtype:
|
||||
|
@ -1783,7 +1756,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to append your
|
||||
client's api version to the next link.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1860,7 +1832,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to reformat it and
|
||||
override the returned api version with your client's api version.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1939,7 +1910,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that returns a paging model whose item name is is overriden by
|
||||
x-ms-client-name 'indexes'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
|
@ -546,7 +546,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_no_item_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that must return result of the default 'value' node.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -620,7 +619,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_empty_next_link_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that gets an empty next link and should stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -694,7 +692,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_null_next_link_name_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that must ignore any kind of nextLink, and stop after page 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -768,7 +765,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that finishes on the first call without a nextlink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -846,7 +842,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param name: Default value is None.
|
||||
:type name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -926,7 +921,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation whose first response's items list is empty, but still returns a next link.
|
||||
Second (and final) call, will give you an items list of 1.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1009,7 +1003,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type client_request_id: str
|
||||
:param paging_get_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_options: ~paging.models.PagingGetMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1099,7 +1092,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
nextOperationWithQueryParams. Default value is True. Note that overriding this default value
|
||||
may result in unsupported behavior.
|
||||
:paramtype query_constant: bool
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1174,7 +1166,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param filter: OData filter options. Pass in 'foo'. Default value is None.
|
||||
:type filter: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1252,7 +1243,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param maxpagesize: Max page size query param. Don't send. Known values are "5" and None.
|
||||
Default value is "5".
|
||||
:type maxpagesize: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1337,7 +1327,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:param paging_get_odata_multiple_pages_options: Parameter group. Default value is None.
|
||||
:type paging_get_odata_multiple_pages_options:
|
||||
~paging.models.PagingGetOdataMultiplePagesOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1429,7 +1418,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
~paging.models.PagingGetMultiplePagesWithOffsetOptions
|
||||
:param client_request_id: Default value is None.
|
||||
:type client_request_id: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1515,7 +1503,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that fails on the first call with 500 and then retries and then get a
|
||||
response including a nextLink that has 10 pages.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1590,7 +1577,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that includes a nextLink that has 10 pages, of which the 2nd call fails
|
||||
first with 500. The client should retry and finish all 10 pages eventually.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1664,7 +1650,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_single_pages_failure(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the first call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1738,7 +1723,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives a 400 on the second call.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1812,7 +1796,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
def get_multiple_pages_failure_uri(self, **kwargs: Any) -> Iterable["_models.Product"]:
|
||||
"""A paging operation that receives an invalid nextLink.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1892,7 +1875,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type api_version: str
|
||||
:param tenant: Sets the tenant to use. Required.
|
||||
:type tenant: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -1968,7 +1950,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
|
||||
:param custom_parameter_group: Parameter group. Required.
|
||||
:type custom_parameter_group: ~paging.models.CustomParameterGroup
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2112,14 +2093,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
:type client_request_id: str
|
||||
:param paging_get_multiple_pages_lro_options: Parameter group. Default value is None.
|
||||
:type paging_get_multiple_pages_lro_options: ~paging.models.PagingGetMultiplePagesLroOptions
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: By default, your polling method will be LROBasePolling. Pass in False for
|
||||
this operation to not poll, or pass in your own initialized polling object for a personal
|
||||
polling strategy.
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
|
||||
Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns an iterator like instance of either
|
||||
ProductResult or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~azure.core.paging.ItemPaged[~paging.models.Product]]
|
||||
|
@ -2241,7 +2214,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to append your
|
||||
client's api version to the next link.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2318,7 +2290,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation with api version. When calling the next link, you want to reformat it and
|
||||
override the returned api version with your client's api version.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
@ -2397,7 +2368,6 @@ class PagingOperations: # pylint: disable=too-many-public-methods
|
|||
"""A paging operation that returns a paging model whose item name is is overriden by
|
||||
x-ms-client-name 'indexes'.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either Product or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~paging.models.Product]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче