# 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 msrest.service_client import ServiceClient
from msrest import Serializer, Deserializer
from msrestazure import AzureConfiguration
from .version import VERSION
from .operations.certificate_orders_operations import CertificateOrdersOperations
from .operations.certificates_operations import CertificatesOperations
from .operations.classic_mobile_services_operations import ClassicMobileServicesOperations
from .operations.domains_operations import DomainsOperations
from .operations.global_model_operations import GlobalModelOperations
from .operations.global_certificate_order_operations import GlobalCertificateOrderOperations
from .operations.global_domain_registration_operations import GlobalDomainRegistrationOperations
from .operations.global_resource_groups_operations import GlobalResourceGroupsOperations
from .operations.hosting_environments_operations import HostingEnvironmentsOperations
from .operations.managed_hosting_environments_operations import ManagedHostingEnvironmentsOperations
from .operations.provider_operations import ProviderOperations
from .operations.recommendations_operations import RecommendationsOperations
from .operations.server_farms_operations import ServerFarmsOperations
from .operations.sites_operations import SitesOperations
from .operations.top_level_domains_operations import TopLevelDomainsOperations
from .operations.usage_operations import UsageOperations
from . import models
class WebSiteManagementClientConfiguration(AzureConfiguration):
"""Configuration for WebSiteManagementClient
Note that all parameters used to create this instance are saved as instance
attributes.
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: Subscription Id
:type subscription_id: str
:param api_version: API Version
:type api_version: str
:param accept_language: Gets or sets the preferred language for the
response.
:type accept_language: str
:param long_running_operation_retry_timeout: Gets or sets the retry
timeout in seconds for Long Running Operations. Default value is 30.
:type long_running_operation_retry_timeout: int
:param generate_client_request_id: When set to true a unique
x-ms-client-request-id value is generated and included in each request.
Default is true.
:type generate_client_request_id: bool
:param str base_url: Service URL
:param str filepath: Existing config
"""
def __init__(
self, credentials, subscription_id, api_version='2015-08-01', accept_language='en-US', long_running_operation_retry_timeout=30, generate_client_request_id=True, base_url=None, filepath=None):
if credentials is None:
raise ValueError("Parameter 'credentials' must not be None.")
if subscription_id is None:
raise ValueError("Parameter 'subscription_id' must not be None.")
if not isinstance(subscription_id, str):
raise TypeError("Parameter 'subscription_id' must be str.")
if api_version is not None and not isinstance(api_version, str):
raise TypeError("Optional parameter 'api_version' must be str.")
if accept_language is not None and not isinstance(accept_language, str):
raise TypeError("Optional parameter 'accept_language' must be str.")
if not base_url:
base_url = 'https://management.azure.com'
super(WebSiteManagementClientConfiguration, self).__init__(base_url, filepath)
self.add_user_agent('websitemanagementclient/{}'.format(VERSION))
self.add_user_agent('Azure-SDK-For-Python')
self.credentials = credentials
self.subscription_id = subscription_id
self.api_version = api_version
self.accept_language = accept_language
self.long_running_operation_retry_timeout = long_running_operation_retry_timeout
self.generate_client_request_id = generate_client_request_id
[docs]class WebSiteManagementClient(object):
"""Use these APIs to manage Azure Websites resources through the Azure Resource Manager. All task operations conform to the HTTP/1.1 protocol specification and each operation returns an x-ms-request-id header that can be used to obtain information about the request. You must make sure that requests made to these resources are secure. For more information, see <a href="https://msdn.microsoft.com/en-us/library/azure/dn790557.aspx">Authenticating Azure Resource Manager requests.</a>
:ivar config: Configuration for client.
:vartype config: WebSiteManagementClientConfiguration
:ivar certificate_orders: CertificateOrders operations
:vartype certificate_orders: .operations.CertificateOrdersOperations
:ivar certificates: Certificates operations
:vartype certificates: .operations.CertificatesOperations
:ivar classic_mobile_services: ClassicMobileServices operations
:vartype classic_mobile_services: .operations.ClassicMobileServicesOperations
:ivar domains: Domains operations
:vartype domains: .operations.DomainsOperations
:ivar global_model: GlobalModel operations
:vartype global_model: .operations.GlobalModelOperations
:ivar global_certificate_order: GlobalCertificateOrder operations
:vartype global_certificate_order: .operations.GlobalCertificateOrderOperations
:ivar global_domain_registration: GlobalDomainRegistration operations
:vartype global_domain_registration: .operations.GlobalDomainRegistrationOperations
:ivar global_resource_groups: GlobalResourceGroups operations
:vartype global_resource_groups: .operations.GlobalResourceGroupsOperations
:ivar hosting_environments: HostingEnvironments operations
:vartype hosting_environments: .operations.HostingEnvironmentsOperations
:ivar managed_hosting_environments: ManagedHostingEnvironments operations
:vartype managed_hosting_environments: .operations.ManagedHostingEnvironmentsOperations
:ivar provider: Provider operations
:vartype provider: .operations.ProviderOperations
:ivar recommendations: Recommendations operations
:vartype recommendations: .operations.RecommendationsOperations
:ivar server_farms: ServerFarms operations
:vartype server_farms: .operations.ServerFarmsOperations
:ivar sites: Sites operations
:vartype sites: .operations.SitesOperations
:ivar top_level_domains: TopLevelDomains operations
:vartype top_level_domains: .operations.TopLevelDomainsOperations
:ivar usage: Usage operations
:vartype usage: .operations.UsageOperations
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: Subscription Id
:type subscription_id: str
:param api_version: API Version
:type api_version: str
:param accept_language: Gets or sets the preferred language for the
response.
:type accept_language: str
:param long_running_operation_retry_timeout: Gets or sets the retry
timeout in seconds for Long Running Operations. Default value is 30.
:type long_running_operation_retry_timeout: int
:param generate_client_request_id: When set to true a unique
x-ms-client-request-id value is generated and included in each request.
Default is true.
:type generate_client_request_id: bool
:param str base_url: Service URL
:param str filepath: Existing config
"""
def __init__(
self, credentials, subscription_id, api_version='2015-08-01', accept_language='en-US', long_running_operation_retry_timeout=30, generate_client_request_id=True, base_url=None, filepath=None):
self.config = WebSiteManagementClientConfiguration(credentials, subscription_id, api_version, accept_language, long_running_operation_retry_timeout, generate_client_request_id, base_url, filepath)
self._client = ServiceClient(self.config.credentials, self.config)
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.certificate_orders = CertificateOrdersOperations(
self._client, self.config, self._serialize, self._deserialize)
self.certificates = CertificatesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.classic_mobile_services = ClassicMobileServicesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.domains = DomainsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.global_model = GlobalModelOperations(
self._client, self.config, self._serialize, self._deserialize)
self.global_certificate_order = GlobalCertificateOrderOperations(
self._client, self.config, self._serialize, self._deserialize)
self.global_domain_registration = GlobalDomainRegistrationOperations(
self._client, self.config, self._serialize, self._deserialize)
self.global_resource_groups = GlobalResourceGroupsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.hosting_environments = HostingEnvironmentsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.managed_hosting_environments = ManagedHostingEnvironmentsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.provider = ProviderOperations(
self._client, self.config, self._serialize, self._deserialize)
self.recommendations = RecommendationsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.server_farms = ServerFarmsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.sites = SitesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.top_level_domains = TopLevelDomainsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.usage = UsageOperations(
self._client, self.config, self._serialize, self._deserialize)