Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sdk/loadtesting/azure-mgmt-loadtesting/_meta.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"commit": "269c77bb83979703db9df46784effa70d9eed1e1",
"commit": "e16870317d588dda243e69712cc6e25757fd16e0",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.9.2",
"use": [
"@autorest/python@6.2.16",
"@autorest/python@6.4.0",
"@autorest/[email protected]"
],
"autorest_command": "autorest specification/loadtestservice/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.2.16 --use=@autorest/[email protected] --version=3.9.2 --version-tolerant=False",
"autorest_command": "autorest specification/loadtestservice/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/python@6.4.0 --use=@autorest/[email protected] --version=3.9.2 --version-tolerant=False",
"readme": "specification/loadtestservice/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ def __enter__(self) -> "LoadTestMgmtClient":
self._client.__enter__()
return self

def __exit__(self, *exc_details) -> None:
def __exit__(self, *exc_details: Any) -> None:
self._client.__exit__(*exc_details)
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "1.0.0"
VERSION = "1.0.0b1"
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ async def __aenter__(self) -> "LoadTestMgmtClient":
await self._client.__aenter__()
return self

async def __aexit__(self, *exc_details) -> None:
async def __aexit__(self, *exc_details: Any) -> None:
await self._client.__aexit__(*exc_details)
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,8 @@ async def begin_create_or_update(
:type resource_group_name: str
:param load_test_name: Load Test name. Required.
:type load_test_name: str
:param load_test_resource: LoadTest resource data. Is either a model type or a IO type.
Required.
:param load_test_resource: LoadTest resource data. Is either a LoadTestResource type or a IO
type. Required.
:type load_test_resource: ~azure.mgmt.loadtesting.models.LoadTestResource or IO
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
Default value is None.
Expand Down Expand Up @@ -710,8 +710,8 @@ async def begin_update(
:type resource_group_name: str
:param load_test_name: Load Test name. Required.
:type load_test_name: str
:param load_test_resource_patch_request_body: LoadTest resource update data. Is either a model
type or a IO type. Required.
:param load_test_resource_patch_request_body: LoadTest resource update data. Is either a
LoadTestResourcePatchRequestBody type or a IO type. Required.
:type load_test_resource_patch_request_body:
~azure.mgmt.loadtesting.models.LoadTestResourcePatchRequestBody or IO
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ async def check_availability(
:type location: str
:param quota_bucket_name: Quota Bucket name. Required.
:type quota_bucket_name: str
:param quota_bucket_request: Quota Bucket Request data. Is either a model type or a IO type.
Required.
:param quota_bucket_request: Quota Bucket Request data. Is either a QuotaBucketRequest type or
a IO type. Required.
:type quota_bucket_request: ~azure.mgmt.loadtesting.models.QuotaBucketRequest or IO
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
Default value is None.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -688,8 +688,8 @@ def begin_create_or_update(
:type resource_group_name: str
:param load_test_name: Load Test name. Required.
:type load_test_name: str
:param load_test_resource: LoadTest resource data. Is either a model type or a IO type.
Required.
:param load_test_resource: LoadTest resource data. Is either a LoadTestResource type or a IO
type. Required.
:type load_test_resource: ~azure.mgmt.loadtesting.models.LoadTestResource or IO
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
Default value is None.
Expand Down Expand Up @@ -924,8 +924,8 @@ def begin_update(
:type resource_group_name: str
:param load_test_name: Load Test name. Required.
:type load_test_name: str
:param load_test_resource_patch_request_body: LoadTest resource update data. Is either a model
type or a IO type. Required.
:param load_test_resource_patch_request_body: LoadTest resource update data. Is either a
LoadTestResourcePatchRequestBody type or a IO type. Required.
:type load_test_resource_patch_request_body:
~azure.mgmt.loadtesting.models.LoadTestResourcePatchRequestBody or IO
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@ def check_availability(
:type location: str
:param quota_bucket_name: Quota Bucket name. Required.
:type quota_bucket_name: str
:param quota_bucket_request: Quota Bucket Request data. Is either a model type or a IO type.
Required.
:param quota_bucket_request: Quota Bucket Request data. Is either a QuotaBucketRequest type or
a IO type. Required.
:type quota_bucket_request: ~azure.mgmt.loadtesting.models.QuotaBucketRequest or IO
:keyword content_type: Body Parameter content-type. Known values are: 'application/json'.
Default value is None.
Expand Down