forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 2
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 18183 in Azure/azure-rest-api-specs
config readme.python (Azure#18183)
- Loading branch information
SDKAuto
committed
Mar 15, 2022
1 parent
3922dd7
commit 994aea6
Showing
75 changed files
with
37,257 additions
and
11 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 |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
"@autorest/[email protected]", | ||
"@autorest/[email protected]" | ||
], | ||
"commit": "1659cfde425308fc46b5f2cd962c3be40ba04ace", | ||
"commit": "71860bf1bf486de15d91f5b30b568f21b624a551", | ||
"repository_url": "https://github.com/Azure/azure-rest-api-specs", | ||
"autorest_command": "autorest specification/appplatform/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2", | ||
"autorest_command": "autorest specification/appplatform/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2", | ||
"readme": "specification/appplatform/resource-manager/readme.md" | ||
} |
73 changes: 73 additions & 0 deletions
73
...platform/azure-mgmt-appplatform/azure/mgmt/appplatform/_app_platform_management_client.py
Large diffs are not rendered by default.
Oops, something went wrong.
73 changes: 73 additions & 0 deletions
73
...form/azure-mgmt-appplatform/azure/mgmt/appplatform/aio/_app_platform_management_client.py
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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
18 changes: 18 additions & 0 deletions
18
...appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2022_03_01_preview/__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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 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) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from ._app_platform_management_client import AppPlatformManagementClient | ||
from ._version import VERSION | ||
|
||
__version__ = VERSION | ||
__all__ = ['AppPlatformManagementClient'] | ||
|
||
# `._patch.py` is used for handwritten extensions to the generated code | ||
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md | ||
from ._patch import patch_sdk | ||
patch_sdk() |
176 changes: 176 additions & 0 deletions
176
...appplatform/azure/mgmt/appplatform/v2022_03_01_preview/_app_platform_management_client.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,176 @@ | ||
# 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) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from copy import deepcopy | ||
from typing import Any, Optional, TYPE_CHECKING | ||
|
||
from azure.core.rest import HttpRequest, HttpResponse | ||
from azure.mgmt.core import ARMPipelineClient | ||
from msrest import Deserializer, Serializer | ||
|
||
from . import models | ||
from ._configuration import AppPlatformManagementClientConfiguration | ||
from .operations import ApiPortalCustomDomainsOperations, ApiPortalsOperations, AppsOperations, BindingsOperations, BuildServiceAgentPoolOperations, BuildServiceBuilderOperations, BuildServiceOperations, BuildpackBindingOperations, CertificatesOperations, ConfigServersOperations, ConfigurationServicesOperations, CustomDomainsOperations, DeploymentsOperations, GatewayCustomDomainsOperations, GatewayRouteConfigsOperations, GatewaysOperations, MonitoringSettingsOperations, Operations, RuntimeVersionsOperations, ServiceRegistriesOperations, ServicesOperations, SkusOperations, StoragesOperations | ||
|
||
if TYPE_CHECKING: | ||
# pylint: disable=unused-import,ungrouped-imports | ||
from azure.core.credentials import TokenCredential | ||
|
||
class AppPlatformManagementClient: | ||
"""REST API for Azure Spring Cloud. | ||
:ivar services: ServicesOperations operations | ||
:vartype services: azure.mgmt.appplatform.v2022_03_01_preview.operations.ServicesOperations | ||
:ivar config_servers: ConfigServersOperations operations | ||
:vartype config_servers: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.ConfigServersOperations | ||
:ivar configuration_services: ConfigurationServicesOperations operations | ||
:vartype configuration_services: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.ConfigurationServicesOperations | ||
:ivar service_registries: ServiceRegistriesOperations operations | ||
:vartype service_registries: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.ServiceRegistriesOperations | ||
:ivar build_service: BuildServiceOperations operations | ||
:vartype build_service: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.BuildServiceOperations | ||
:ivar buildpack_binding: BuildpackBindingOperations operations | ||
:vartype buildpack_binding: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.BuildpackBindingOperations | ||
:ivar build_service_builder: BuildServiceBuilderOperations operations | ||
:vartype build_service_builder: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.BuildServiceBuilderOperations | ||
:ivar build_service_agent_pool: BuildServiceAgentPoolOperations operations | ||
:vartype build_service_agent_pool: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.BuildServiceAgentPoolOperations | ||
:ivar monitoring_settings: MonitoringSettingsOperations operations | ||
:vartype monitoring_settings: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.MonitoringSettingsOperations | ||
:ivar apps: AppsOperations operations | ||
:vartype apps: azure.mgmt.appplatform.v2022_03_01_preview.operations.AppsOperations | ||
:ivar bindings: BindingsOperations operations | ||
:vartype bindings: azure.mgmt.appplatform.v2022_03_01_preview.operations.BindingsOperations | ||
:ivar storages: StoragesOperations operations | ||
:vartype storages: azure.mgmt.appplatform.v2022_03_01_preview.operations.StoragesOperations | ||
:ivar certificates: CertificatesOperations operations | ||
:vartype certificates: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.CertificatesOperations | ||
:ivar custom_domains: CustomDomainsOperations operations | ||
:vartype custom_domains: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.CustomDomainsOperations | ||
:ivar deployments: DeploymentsOperations operations | ||
:vartype deployments: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.DeploymentsOperations | ||
:ivar operations: Operations operations | ||
:vartype operations: azure.mgmt.appplatform.v2022_03_01_preview.operations.Operations | ||
:ivar runtime_versions: RuntimeVersionsOperations operations | ||
:vartype runtime_versions: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.RuntimeVersionsOperations | ||
:ivar skus: SkusOperations operations | ||
:vartype skus: azure.mgmt.appplatform.v2022_03_01_preview.operations.SkusOperations | ||
:ivar gateways: GatewaysOperations operations | ||
:vartype gateways: azure.mgmt.appplatform.v2022_03_01_preview.operations.GatewaysOperations | ||
:ivar gateway_route_configs: GatewayRouteConfigsOperations operations | ||
:vartype gateway_route_configs: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.GatewayRouteConfigsOperations | ||
:ivar gateway_custom_domains: GatewayCustomDomainsOperations operations | ||
:vartype gateway_custom_domains: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.GatewayCustomDomainsOperations | ||
:ivar api_portals: ApiPortalsOperations operations | ||
:vartype api_portals: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.ApiPortalsOperations | ||
:ivar api_portal_custom_domains: ApiPortalCustomDomainsOperations operations | ||
:vartype api_portal_custom_domains: | ||
azure.mgmt.appplatform.v2022_03_01_preview.operations.ApiPortalCustomDomainsOperations | ||
:param credential: Credential needed for the client to connect to Azure. | ||
:type credential: ~azure.core.credentials.TokenCredential | ||
:param subscription_id: Gets subscription ID which uniquely identify the Microsoft Azure | ||
subscription. The subscription ID forms part of the URI for every service call. | ||
:type subscription_id: str | ||
:param base_url: Service URL. Default value is 'https://management.azure.com'. | ||
:type base_url: str | ||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no | ||
Retry-After header is present. | ||
""" | ||
|
||
def __init__( | ||
self, | ||
credential: "TokenCredential", | ||
subscription_id: str, | ||
base_url: str = "https://management.azure.com", | ||
**kwargs: Any | ||
) -> None: | ||
self._config = AppPlatformManagementClientConfiguration(credential=credential, subscription_id=subscription_id, **kwargs) | ||
self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) | ||
|
||
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} | ||
self._serialize = Serializer(client_models) | ||
self._deserialize = Deserializer(client_models) | ||
self._serialize.client_side_validation = False | ||
self.services = ServicesOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.config_servers = ConfigServersOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.configuration_services = ConfigurationServicesOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.service_registries = ServiceRegistriesOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.build_service = BuildServiceOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.buildpack_binding = BuildpackBindingOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.build_service_builder = BuildServiceBuilderOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.build_service_agent_pool = BuildServiceAgentPoolOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.monitoring_settings = MonitoringSettingsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.apps = AppsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.bindings = BindingsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.storages = StoragesOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.certificates = CertificatesOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.custom_domains = CustomDomainsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.deployments = DeploymentsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize) | ||
self.runtime_versions = RuntimeVersionsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.skus = SkusOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.gateways = GatewaysOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.gateway_route_configs = GatewayRouteConfigsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.gateway_custom_domains = GatewayCustomDomainsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.api_portals = ApiPortalsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
self.api_portal_custom_domains = ApiPortalCustomDomainsOperations(self._client, self._config, self._serialize, self._deserialize) | ||
|
||
|
||
def _send_request( | ||
self, | ||
request, # type: HttpRequest | ||
**kwargs: Any | ||
) -> HttpResponse: | ||
"""Runs the network request through the client's chained policies. | ||
>>> from azure.core.rest import HttpRequest | ||
>>> request = HttpRequest("GET", "https://www.example.org/") | ||
<HttpRequest [GET], url: 'https://www.example.org/'> | ||
>>> response = client._send_request(request) | ||
<HttpResponse: 200 OK> | ||
For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart | ||
:param request: The network request you want to make. Required. | ||
:type request: ~azure.core.rest.HttpRequest | ||
:keyword bool stream: Whether the response payload will be streamed. Defaults to False. | ||
:return: The response of your network call. Does not do error handling on your response. | ||
:rtype: ~azure.core.rest.HttpResponse | ||
""" | ||
|
||
request_copy = deepcopy(request) | ||
request_copy.url = self._client.format_url(request_copy.url) | ||
return self._client.send_request(request_copy, **kwargs) | ||
|
||
def close(self): | ||
# type: () -> None | ||
self._client.close() | ||
|
||
def __enter__(self): | ||
# type: () -> AppPlatformManagementClient | ||
self._client.__enter__() | ||
return self | ||
|
||
def __exit__(self, *exc_details): | ||
# type: (Any) -> None | ||
self._client.__exit__(*exc_details) |
68 changes: 68 additions & 0 deletions
68
...tform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2022_03_01_preview/_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,68 @@ | ||
# 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) AutoRest 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.configuration import Configuration | ||
from azure.core.pipeline import policies | ||
from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy | ||
|
||
from ._version import VERSION | ||
|
||
if TYPE_CHECKING: | ||
# pylint: disable=unused-import,ungrouped-imports | ||
from azure.core.credentials import TokenCredential | ||
|
||
|
||
class AppPlatformManagementClientConfiguration(Configuration): | ||
"""Configuration for AppPlatformManagementClient. | ||
Note that all parameters used to create this instance are saved as instance | ||
attributes. | ||
:param credential: Credential needed for the client to connect to Azure. | ||
:type credential: ~azure.core.credentials.TokenCredential | ||
:param subscription_id: Gets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. | ||
:type subscription_id: str | ||
""" | ||
|
||
def __init__( | ||
self, | ||
credential: "TokenCredential", | ||
subscription_id: str, | ||
**kwargs: Any | ||
) -> None: | ||
super(AppPlatformManagementClientConfiguration, self).__init__(**kwargs) | ||
if credential is None: | ||
raise ValueError("Parameter 'credential' must not be None.") | ||
if subscription_id is None: | ||
raise ValueError("Parameter 'subscription_id' must not be None.") | ||
|
||
self.credential = credential | ||
self.subscription_id = subscription_id | ||
self.api_version = "2022-03-01-preview" | ||
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) | ||
kwargs.setdefault('sdk_moniker', 'mgmt-appplatform/{}'.format(VERSION)) | ||
self._configure(**kwargs) | ||
|
||
def _configure( | ||
self, | ||
**kwargs # type: Any | ||
): | ||
# type: (...) -> 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 ARMHttpLoggingPolicy(**kwargs) | ||
self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**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.authentication_policy = kwargs.get('authentication_policy') | ||
if self.credential and not self.authentication_policy: | ||
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs) |
Oops, something went wrong.