Skip to content

Commit

Permalink
regen for code spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
iscai-msft committed Jul 14, 2021
1 parent bacf5cf commit d4b50a5
Show file tree
Hide file tree
Showing 48 changed files with 644 additions and 644 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def build_get_null_request(
# type: (...) -> HttpRequest
"""Get null duration value.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down Expand Up @@ -56,8 +56,8 @@ def build_put_positive_duration_request(
# type: (...) -> HttpRequest
"""Put a positive duration value.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword json: Pass in a JSON-serializable object (usually a dictionary). See the template in
our example to find the input shape. duration body.
Expand Down Expand Up @@ -103,8 +103,8 @@ def build_get_positive_duration_request(
# type: (...) -> HttpRequest
"""Get a positive duration value.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down Expand Up @@ -134,8 +134,8 @@ def build_get_invalid_request(
# type: (...) -> HttpRequest
"""Get an invalid duration value.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
def build_get_null_request(**kwargs: Any) -> HttpRequest:
"""Get null duration value.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand All @@ -40,8 +40,8 @@ def build_get_null_request(**kwargs: Any) -> HttpRequest:
def build_put_positive_duration_request(*, json: Any = None, content: Any = None, **kwargs: Any) -> HttpRequest:
"""Put a positive duration value.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword json: Pass in a JSON-serializable object (usually a dictionary). See the template in
our example to find the input shape. duration body.
Expand Down Expand Up @@ -79,8 +79,8 @@ def build_put_positive_duration_request(*, json: Any = None, content: Any = None
def build_get_positive_duration_request(**kwargs: Any) -> HttpRequest:
"""Get a positive duration value.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand All @@ -102,8 +102,8 @@ def build_get_positive_duration_request(**kwargs: Any) -> HttpRequest:
def build_get_invalid_request(**kwargs: Any) -> HttpRequest:
"""Get an invalid duration value.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def build_post_required_request(
# type: (...) -> HttpRequest
"""Post a bunch of required parameters grouped.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:param path: Path parameter.
:type path: str
Expand Down Expand Up @@ -93,8 +93,8 @@ def build_post_optional_request(
# type: (...) -> HttpRequest
"""Post a bunch of optional parameters grouped.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword custom_header:
:paramtype custom_header: str
Expand Down Expand Up @@ -139,8 +139,8 @@ def build_post_reserved_words_request(
# type: (...) -> HttpRequest
"""Post a grouped parameters with reserved words.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword from_parameter: 'from' is a reserved word. Pass in 'bob' to pass.
:paramtype from_parameter: str
Expand Down Expand Up @@ -185,8 +185,8 @@ def build_post_multi_param_groups_request(
# type: (...) -> HttpRequest
"""Post parameters from multiple different parameter groups.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword header_one:
:paramtype header_one: str
Expand Down Expand Up @@ -241,8 +241,8 @@ def build_post_shared_parameter_group_object_request(
# type: (...) -> HttpRequest
"""Post parameters with a shared parameter group object.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword header_one:
:paramtype header_one: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def build_post_required_request(
) -> HttpRequest:
"""Post a bunch of required parameters grouped.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:param path: Path parameter.
:type path: str
Expand Down Expand Up @@ -85,8 +85,8 @@ def build_post_optional_request(
) -> HttpRequest:
"""Post a bunch of optional parameters grouped.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword custom_header:
:paramtype custom_header: str
Expand Down Expand Up @@ -121,8 +121,8 @@ def build_post_reserved_words_request(
) -> HttpRequest:
"""Post a grouped parameters with reserved words.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword from_parameter: 'from' is a reserved word. Pass in 'bob' to pass.
:paramtype from_parameter: str
Expand Down Expand Up @@ -162,8 +162,8 @@ def build_post_multi_param_groups_request(
) -> HttpRequest:
"""Post parameters from multiple different parameter groups.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword header_one:
:paramtype header_one: str
Expand Down Expand Up @@ -206,8 +206,8 @@ def build_post_shared_parameter_group_object_request(
) -> HttpRequest:
"""Post parameters with a shared parameter group object.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword header_one:
:paramtype header_one: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def build_get_report_request(
# type: (...) -> HttpRequest
"""Get test coverage report.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword qualifier: If specified, qualifies the generated report further (e.g. '2.7' vs '3.5'
in for Python). The only effect is, that generators that run all tests several times, can
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
def build_get_report_request(*, qualifier: Optional[str] = None, **kwargs: Any) -> HttpRequest:
"""Get test coverage report.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword qualifier: If specified, qualifies the generated report further (e.g. '2.7' vs '3.5'
in for Python). The only effect is, that generators that run all tests several times, can
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def build_get_method_global_valid_request(
# type: (...) -> HttpRequest
"""GET method with api-version modeled in global settings.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down Expand Up @@ -62,8 +62,8 @@ def build_get_method_global_not_provided_valid_request(
# type: (...) -> HttpRequest
"""GET method with api-version modeled in global settings.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down Expand Up @@ -99,8 +99,8 @@ def build_get_path_global_valid_request(
# type: (...) -> HttpRequest
"""GET method with api-version modeled in global settings.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down Expand Up @@ -136,8 +136,8 @@ def build_get_swagger_global_valid_request(
# type: (...) -> HttpRequest
"""GET method with api-version modeled in global settings.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
def build_get_method_global_valid_request(**kwargs: Any) -> HttpRequest:
"""GET method with api-version modeled in global settings.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand All @@ -45,8 +45,8 @@ def build_get_method_global_valid_request(**kwargs: Any) -> HttpRequest:
def build_get_method_global_not_provided_valid_request(**kwargs: Any) -> HttpRequest:
"""GET method with api-version modeled in global settings.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down Expand Up @@ -75,8 +75,8 @@ def build_get_method_global_not_provided_valid_request(**kwargs: Any) -> HttpReq
def build_get_path_global_valid_request(**kwargs: Any) -> HttpRequest:
"""GET method with api-version modeled in global settings.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand All @@ -103,8 +103,8 @@ def build_get_path_global_valid_request(**kwargs: Any) -> HttpRequest:
def build_get_swagger_global_valid_request(**kwargs: Any) -> HttpRequest:
"""GET method with api-version modeled in global settings.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def build_get_method_local_valid_request(
# type: (...) -> HttpRequest
"""Get method with api-version modeled in the method. pass in api-version = '2.0' to succeed.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down Expand Up @@ -62,8 +62,8 @@ def build_get_method_local_null_request(
# type: (...) -> HttpRequest
"""Get method with api-version modeled in the method. pass in api-version = null to succeed.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:keyword api_version: This should appear as a method parameter, use value null, this should
result in no serialized parameter.
Expand Down Expand Up @@ -104,8 +104,8 @@ def build_get_path_local_valid_request(
# type: (...) -> HttpRequest
"""Get method with api-version modeled in the method. pass in api-version = '2.0' to succeed.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down Expand Up @@ -141,8 +141,8 @@ def build_get_swagger_local_valid_request(
# type: (...) -> HttpRequest
"""Get method with api-version modeled in the method. pass in api-version = '2.0' to succeed.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder into your
code flow.
See https://aka.ms/azsdk/python/protocol/quickstart for how to incorporate this request builder
into your code flow.
:return: Returns an :class:`~azure.core.rest.HttpRequest` that you will pass to the client's
`send_request` method. See https://aka.ms/azsdk/python/protocol/quickstart for how to
Expand Down
Loading

0 comments on commit d4b50a5

Please sign in to comment.