forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 31901 in Azure/azure-rest-api-specs
Merge 134dab2ea4de63069e9d51cf7bfcf516ed213a6b into 59799c650469a665614dd88c261ade7b78dcf77d
- Loading branch information
SDKAuto
committed
Dec 17, 2024
1 parent
9b941a1
commit 402f760
Showing
95 changed files
with
17,228 additions
and
15,043 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"commit": "ce46dc3e04b0bc3a7b04d9c715c1107186978a5c", | ||
"repository_url": "https://github.com/Azure/azure-rest-api-specs", | ||
"typespec_src": "specification/loadtestservice/LoadTestService", | ||
"@azure-tools/typespec-python": "0.37.1" | ||
} |
38 changes: 33 additions & 5 deletions
38
sdk/loadtesting/azure-developer-loadtesting/azure/developer/loadtesting/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,38 @@ | ||
# ------------------------------------------------------------------------- | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# Code generated by Microsoft (R) Python Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
# -------------------------------------------------------------------------- | ||
from ._client import LoadTestAdministrationClient, LoadTestRunClient | ||
# pylint: disable=wrong-import-position | ||
|
||
from typing import TYPE_CHECKING | ||
|
||
if TYPE_CHECKING: | ||
from ._patch import * # pylint: disable=unused-wildcard-import | ||
|
||
from ._client import LoadTestAdministrationClient # type: ignore | ||
from ._client import LoadTestRunClient # type: ignore | ||
from ._client import LoadTestAdministrationClient # type: ignore | ||
from ._client import LoadTestRunClient # type: ignore | ||
from ._version import VERSION | ||
|
||
__version__ = VERSION | ||
__all__ = ["LoadTestAdministrationClient", "LoadTestRunClient"] | ||
|
||
try: | ||
from ._patch import __all__ as _patch_all | ||
from ._patch import * | ||
except ImportError: | ||
_patch_all = [] | ||
from ._patch import patch_sdk as _patch_sdk | ||
|
||
__all__ = [ | ||
"LoadTestAdministrationClient", | ||
"LoadTestRunClient", | ||
"LoadTestAdministrationClient", | ||
"LoadTestRunClient", | ||
] | ||
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore | ||
|
||
_patch_sdk() |
295 changes: 262 additions & 33 deletions
295
sdk/loadtesting/azure-developer-loadtesting/azure/developer/loadtesting/_client.py
Large diffs are not rendered by default.
Oops, something went wrong.
208 changes: 208 additions & 0 deletions
208
sdk/loadtesting/azure-developer-loadtesting/azure/developer/loadtesting/_configuration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,208 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# Code generated by Microsoft (R) Python Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from typing import Any, TYPE_CHECKING | ||
|
||
from azure.core.pipeline import policies | ||
|
||
from ._version import VERSION | ||
|
||
if TYPE_CHECKING: | ||
from azure.core.credentials import TokenCredential | ||
|
||
|
||
class LoadTestAdministrationClientConfiguration: # pylint: disable=too-many-instance-attributes,name-too-long | ||
"""Configuration for LoadTestAdministrationClient. | ||
Note that all parameters used to create this instance are saved as instance | ||
attributes. | ||
:param endpoint: Required. | ||
:type endpoint: str | ||
:param credential: Credential used to authenticate requests to the service. Required. | ||
:type credential: ~azure.core.credentials.TokenCredential | ||
:keyword api_version: The API version to use for this operation. Default value is | ||
"2024-12-01-preview". Note that overriding this default value may result in unsupported | ||
behavior. | ||
:paramtype api_version: str | ||
""" | ||
|
||
def __init__(self, endpoint: str, credential: "TokenCredential", **kwargs: Any) -> None: | ||
api_version: str = kwargs.pop("api_version", "2024-12-01-preview") | ||
|
||
if endpoint is None: | ||
raise ValueError("Parameter 'endpoint' must not be None.") | ||
if credential is None: | ||
raise ValueError("Parameter 'credential' must not be None.") | ||
|
||
self.endpoint = endpoint | ||
self.credential = credential | ||
self.api_version = api_version | ||
self.credential_scopes = kwargs.pop("credential_scopes", ["https://cnt-prod.loadtesting.azure.com/.default"]) | ||
kwargs.setdefault("sdk_moniker", "developer-loadtesting/{}".format(VERSION)) | ||
self.polling_interval = kwargs.get("polling_interval", 30) | ||
self._configure(**kwargs) | ||
|
||
def _configure(self, **kwargs: Any) -> None: | ||
self.user_agent_policy = kwargs.get("user_agent_policy") or policies.UserAgentPolicy(**kwargs) | ||
self.headers_policy = kwargs.get("headers_policy") or policies.HeadersPolicy(**kwargs) | ||
self.proxy_policy = kwargs.get("proxy_policy") or policies.ProxyPolicy(**kwargs) | ||
self.logging_policy = kwargs.get("logging_policy") or policies.NetworkTraceLoggingPolicy(**kwargs) | ||
self.http_logging_policy = kwargs.get("http_logging_policy") or policies.HttpLoggingPolicy(**kwargs) | ||
self.custom_hook_policy = kwargs.get("custom_hook_policy") or policies.CustomHookPolicy(**kwargs) | ||
self.redirect_policy = kwargs.get("redirect_policy") or policies.RedirectPolicy(**kwargs) | ||
self.retry_policy = kwargs.get("retry_policy") or policies.RetryPolicy(**kwargs) | ||
self.authentication_policy = kwargs.get("authentication_policy") | ||
if self.credential and not self.authentication_policy: | ||
self.authentication_policy = policies.BearerTokenCredentialPolicy( | ||
self.credential, *self.credential_scopes, **kwargs | ||
) | ||
|
||
|
||
class LoadTestRunClientConfiguration: # pylint: disable=too-many-instance-attributes | ||
"""Configuration for LoadTestRunClient. | ||
Note that all parameters used to create this instance are saved as instance | ||
attributes. | ||
:param endpoint: Required. | ||
:type endpoint: str | ||
:param credential: Credential used to authenticate requests to the service. Required. | ||
:type credential: ~azure.core.credentials.TokenCredential | ||
:keyword api_version: The API version to use for this operation. Default value is | ||
"2024-12-01-preview". Note that overriding this default value may result in unsupported | ||
behavior. | ||
:paramtype api_version: str | ||
""" | ||
|
||
def __init__(self, endpoint: str, credential: "TokenCredential", **kwargs: Any) -> None: | ||
api_version: str = kwargs.pop("api_version", "2024-12-01-preview") | ||
|
||
if endpoint is None: | ||
raise ValueError("Parameter 'endpoint' must not be None.") | ||
if credential is None: | ||
raise ValueError("Parameter 'credential' must not be None.") | ||
|
||
self.endpoint = endpoint | ||
self.credential = credential | ||
self.api_version = api_version | ||
self.credential_scopes = kwargs.pop("credential_scopes", ["https://cnt-prod.loadtesting.azure.com/.default"]) | ||
kwargs.setdefault("sdk_moniker", "developer-loadtesting/{}".format(VERSION)) | ||
self.polling_interval = kwargs.get("polling_interval", 30) | ||
self._configure(**kwargs) | ||
|
||
def _configure(self, **kwargs: Any) -> None: | ||
self.user_agent_policy = kwargs.get("user_agent_policy") or policies.UserAgentPolicy(**kwargs) | ||
self.headers_policy = kwargs.get("headers_policy") or policies.HeadersPolicy(**kwargs) | ||
self.proxy_policy = kwargs.get("proxy_policy") or policies.ProxyPolicy(**kwargs) | ||
self.logging_policy = kwargs.get("logging_policy") or policies.NetworkTraceLoggingPolicy(**kwargs) | ||
self.http_logging_policy = kwargs.get("http_logging_policy") or policies.HttpLoggingPolicy(**kwargs) | ||
self.custom_hook_policy = kwargs.get("custom_hook_policy") or policies.CustomHookPolicy(**kwargs) | ||
self.redirect_policy = kwargs.get("redirect_policy") or policies.RedirectPolicy(**kwargs) | ||
self.retry_policy = kwargs.get("retry_policy") or policies.RetryPolicy(**kwargs) | ||
self.authentication_policy = kwargs.get("authentication_policy") | ||
if self.credential and not self.authentication_policy: | ||
self.authentication_policy = policies.BearerTokenCredentialPolicy( | ||
self.credential, *self.credential_scopes, **kwargs | ||
) | ||
|
||
|
||
class LoadTestAdministrationClientConfiguration: # pylint: disable=too-many-instance-attributes,name-too-long | ||
"""Configuration for LoadTestAdministrationClient. | ||
Note that all parameters used to create this instance are saved as instance | ||
attributes. | ||
:param endpoint: Required. | ||
:type endpoint: str | ||
:param credential: Credential used to authenticate requests to the service. Required. | ||
:type credential: ~azure.core.credentials.TokenCredential | ||
:keyword api_version: The API version to use for this operation. Default value is | ||
"2024-12-01-preview". Note that overriding this default value may result in unsupported | ||
behavior. | ||
:paramtype api_version: str | ||
""" | ||
|
||
def __init__(self, endpoint: str, credential: "TokenCredential", **kwargs: Any) -> None: | ||
api_version: str = kwargs.pop("api_version", "2024-12-01-preview") | ||
|
||
if endpoint is None: | ||
raise ValueError("Parameter 'endpoint' must not be None.") | ||
if credential is None: | ||
raise ValueError("Parameter 'credential' must not be None.") | ||
|
||
self.endpoint = endpoint | ||
self.credential = credential | ||
self.api_version = api_version | ||
self.credential_scopes = kwargs.pop("credential_scopes", ["https://cnt-prod.loadtesting.azure.com/.default"]) | ||
kwargs.setdefault("sdk_moniker", "developer-loadtesting/{}".format(VERSION)) | ||
self.polling_interval = kwargs.get("polling_interval", 30) | ||
self._configure(**kwargs) | ||
|
||
def _configure(self, **kwargs: Any) -> None: | ||
self.user_agent_policy = kwargs.get("user_agent_policy") or policies.UserAgentPolicy(**kwargs) | ||
self.headers_policy = kwargs.get("headers_policy") or policies.HeadersPolicy(**kwargs) | ||
self.proxy_policy = kwargs.get("proxy_policy") or policies.ProxyPolicy(**kwargs) | ||
self.logging_policy = kwargs.get("logging_policy") or policies.NetworkTraceLoggingPolicy(**kwargs) | ||
self.http_logging_policy = kwargs.get("http_logging_policy") or policies.HttpLoggingPolicy(**kwargs) | ||
self.custom_hook_policy = kwargs.get("custom_hook_policy") or policies.CustomHookPolicy(**kwargs) | ||
self.redirect_policy = kwargs.get("redirect_policy") or policies.RedirectPolicy(**kwargs) | ||
self.retry_policy = kwargs.get("retry_policy") or policies.RetryPolicy(**kwargs) | ||
self.authentication_policy = kwargs.get("authentication_policy") | ||
if self.credential and not self.authentication_policy: | ||
self.authentication_policy = policies.BearerTokenCredentialPolicy( | ||
self.credential, *self.credential_scopes, **kwargs | ||
) | ||
|
||
|
||
class LoadTestRunClientConfiguration: # pylint: disable=too-many-instance-attributes | ||
"""Configuration for LoadTestRunClient. | ||
Note that all parameters used to create this instance are saved as instance | ||
attributes. | ||
:param endpoint: Required. | ||
:type endpoint: str | ||
:param credential: Credential used to authenticate requests to the service. Required. | ||
:type credential: ~azure.core.credentials.TokenCredential | ||
:keyword api_version: The API version to use for this operation. Default value is | ||
"2024-12-01-preview". Note that overriding this default value may result in unsupported | ||
behavior. | ||
:paramtype api_version: str | ||
""" | ||
|
||
def __init__(self, endpoint: str, credential: "TokenCredential", **kwargs: Any) -> None: | ||
api_version: str = kwargs.pop("api_version", "2024-12-01-preview") | ||
|
||
if endpoint is None: | ||
raise ValueError("Parameter 'endpoint' must not be None.") | ||
if credential is None: | ||
raise ValueError("Parameter 'credential' must not be None.") | ||
|
||
self.endpoint = endpoint | ||
self.credential = credential | ||
self.api_version = api_version | ||
self.credential_scopes = kwargs.pop("credential_scopes", ["https://cnt-prod.loadtesting.azure.com/.default"]) | ||
kwargs.setdefault("sdk_moniker", "developer-loadtesting/{}".format(VERSION)) | ||
self.polling_interval = kwargs.get("polling_interval", 30) | ||
self._configure(**kwargs) | ||
|
||
def _configure(self, **kwargs: Any) -> None: | ||
self.user_agent_policy = kwargs.get("user_agent_policy") or policies.UserAgentPolicy(**kwargs) | ||
self.headers_policy = kwargs.get("headers_policy") or policies.HeadersPolicy(**kwargs) | ||
self.proxy_policy = kwargs.get("proxy_policy") or policies.ProxyPolicy(**kwargs) | ||
self.logging_policy = kwargs.get("logging_policy") or policies.NetworkTraceLoggingPolicy(**kwargs) | ||
self.http_logging_policy = kwargs.get("http_logging_policy") or policies.HttpLoggingPolicy(**kwargs) | ||
self.custom_hook_policy = kwargs.get("custom_hook_policy") or policies.CustomHookPolicy(**kwargs) | ||
self.redirect_policy = kwargs.get("redirect_policy") or policies.RedirectPolicy(**kwargs) | ||
self.retry_policy = kwargs.get("retry_policy") or policies.RetryPolicy(**kwargs) | ||
self.authentication_policy = kwargs.get("authentication_policy") | ||
if self.credential and not self.authentication_policy: | ||
self.authentication_policy = policies.BearerTokenCredentialPolicy( | ||
self.credential, *self.credential_scopes, **kwargs | ||
) |
26 changes: 0 additions & 26 deletions
26
...oadtesting/azure-developer-loadtesting/azure/developer/loadtesting/_generated/__init__.py
This file was deleted.
Oops, something went wrong.
88 changes: 0 additions & 88 deletions
88
...loadtesting/azure-developer-loadtesting/azure/developer/loadtesting/_generated/_client.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.