Skip to content

Commit

Permalink
CodeGen from PR 18752 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Miceru/fix for automanage completeness (Azure#18752)

* Add HybridCompute paths

* Add AzureStackHci paths

* fix spelling

* formatting

* formatting

* fix LintDiff errors

* fix LintDiff warnings

* implemented collection GET for configurationProfileAssignments resources

* fix LintDiff warnings

* change description to NoContent

* enable go track 2 pipeline

Co-authored-by: ArcturusZhang <dapzhang@microsoft.com>
  • Loading branch information
SDKAuto and ArcturusZhang committed Apr 29, 2022
1 parent 53f6617 commit 4695c3b
Show file tree
Hide file tree
Showing 49 changed files with 8,769 additions and 3,890 deletions.
11 changes: 11 additions & 0 deletions sdk/automanage/azure-mgmt-automanage/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"autorest": "3.7.2",
"use": [
"@autorest/python@5.13.0",
"@autorest/modelerfour@4.19.3"
],
"commit": "9722d269ce8ad6bf8de7e8083f0409e8bcb0569f",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/automanage/resource-manager/readme.md --multiapi --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --python3-only --use=@autorest/python@5.13.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
"readme": "specification/automanage/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
__version__ = VERSION
__all__ = ['AutomanageClient']

try:
from ._patch import patch_sdk
patch_sdk()
except ImportError:
pass
# `._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()
Original file line number Diff line number Diff line change
Expand Up @@ -6,69 +6,121 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from typing import TYPE_CHECKING
from copy import deepcopy
from typing import Any, TYPE_CHECKING

from azure.mgmt.core import ARMPipelineClient
from msrest import Deserializer, Serializer

if TYPE_CHECKING:
# pylint: disable=unused-import,ungrouped-imports
from typing import Any, Optional

from azure.core.credentials import TokenCredential
from azure.core.rest import HttpRequest, HttpResponse
from azure.mgmt.core import ARMPipelineClient

from ._configuration import AutomanageClientConfiguration
from .operations import AccountsOperations
from .operations import ConfigurationProfileAssignmentsOperations
from .operations import ConfigurationProfilePreferencesOperations
from .operations import Operations
from . import models
from ._configuration import AutomanageClientConfiguration
from .operations import BestPracticesOperations, BestPracticesVersionsOperations, ConfigurationProfileAssignmentsOperations, ConfigurationProfileHCIAssignmentsOperations, ConfigurationProfileHCRPAssignmentsOperations, ConfigurationProfilesOperations, ConfigurationProfilesVersionsOperations, HCIReportsOperations, HCRPReportsOperations, Operations, ReportsOperations, ServicePrincipalsOperations

if TYPE_CHECKING:
# pylint: disable=unused-import,ungrouped-imports
from azure.core.credentials import TokenCredential

class AutomanageClient(object):
class AutomanageClient: # pylint: disable=too-many-instance-attributes
"""Automanage Client.
:ivar accounts: AccountsOperations operations
:vartype accounts: automanage_client.operations.AccountsOperations
:ivar best_practices: BestPracticesOperations operations
:vartype best_practices: azure.mgmt.automanage.operations.BestPracticesOperations
:ivar best_practices_versions: BestPracticesVersionsOperations operations
:vartype best_practices_versions:
azure.mgmt.automanage.operations.BestPracticesVersionsOperations
:ivar configuration_profiles: ConfigurationProfilesOperations operations
:vartype configuration_profiles:
azure.mgmt.automanage.operations.ConfigurationProfilesOperations
:ivar configuration_profiles_versions: ConfigurationProfilesVersionsOperations operations
:vartype configuration_profiles_versions:
azure.mgmt.automanage.operations.ConfigurationProfilesVersionsOperations
:ivar configuration_profile_assignments: ConfigurationProfileAssignmentsOperations operations
:vartype configuration_profile_assignments: automanage_client.operations.ConfigurationProfileAssignmentsOperations
:ivar configuration_profile_preferences: ConfigurationProfilePreferencesOperations operations
:vartype configuration_profile_preferences: automanage_client.operations.ConfigurationProfilePreferencesOperations
:vartype configuration_profile_assignments:
azure.mgmt.automanage.operations.ConfigurationProfileAssignmentsOperations
:ivar operations: Operations operations
:vartype operations: automanage_client.operations.Operations
:vartype operations: azure.mgmt.automanage.operations.Operations
:ivar reports: ReportsOperations operations
:vartype reports: azure.mgmt.automanage.operations.ReportsOperations
:ivar service_principals: ServicePrincipalsOperations operations
:vartype service_principals: azure.mgmt.automanage.operations.ServicePrincipalsOperations
:ivar configuration_profile_hcrp_assignments: ConfigurationProfileHCRPAssignmentsOperations
operations
:vartype configuration_profile_hcrp_assignments:
azure.mgmt.automanage.operations.ConfigurationProfileHCRPAssignmentsOperations
:ivar hcrp_reports: HCRPReportsOperations operations
:vartype hcrp_reports: azure.mgmt.automanage.operations.HCRPReportsOperations
:ivar configuration_profile_hci_assignments: ConfigurationProfileHCIAssignmentsOperations
operations
:vartype configuration_profile_hci_assignments:
azure.mgmt.automanage.operations.ConfigurationProfileHCIAssignmentsOperations
:ivar hci_reports: HCIReportsOperations operations
:vartype hci_reports: azure.mgmt.automanage.operations.HCIReportsOperations
:param credential: Credential needed for the client to connect to Azure.
:type credential: ~azure.core.credentials.TokenCredential
:param subscription_id: The ID of the target subscription.
:type subscription_id: str
:param str base_url: Service URL
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
:param base_url: Service URL. Default value is "https://management.azure.com".
:type base_url: str
:keyword api_version: Api Version. Default value is "2021-04-30-preview". Note that overriding
this default value may result in unsupported behavior.
:paramtype api_version: str
"""

def __init__(
self,
credential, # type: "TokenCredential"
subscription_id, # type: str
base_url=None, # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> None
if not base_url:
base_url = 'https://management.azure.com'
self._config = AutomanageClientConfiguration(credential, subscription_id, **kwargs)
credential: "TokenCredential",
subscription_id: str,
base_url: str = "https://management.azure.com",
**kwargs: Any
) -> None:
self._config = AutomanageClientConfiguration(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.best_practices = BestPracticesOperations(self._client, self._config, self._serialize, self._deserialize)
self.best_practices_versions = BestPracticesVersionsOperations(self._client, self._config, self._serialize, self._deserialize)
self.configuration_profiles = ConfigurationProfilesOperations(self._client, self._config, self._serialize, self._deserialize)
self.configuration_profiles_versions = ConfigurationProfilesVersionsOperations(self._client, self._config, self._serialize, self._deserialize)
self.configuration_profile_assignments = ConfigurationProfileAssignmentsOperations(self._client, self._config, self._serialize, self._deserialize)
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
self.reports = ReportsOperations(self._client, self._config, self._serialize, self._deserialize)
self.service_principals = ServicePrincipalsOperations(self._client, self._config, self._serialize, self._deserialize)
self.configuration_profile_hcrp_assignments = ConfigurationProfileHCRPAssignmentsOperations(self._client, self._config, self._serialize, self._deserialize)
self.hcrp_reports = HCRPReportsOperations(self._client, self._config, self._serialize, self._deserialize)
self.configuration_profile_hci_assignments = ConfigurationProfileHCIAssignmentsOperations(self._client, self._config, self._serialize, self._deserialize)
self.hci_reports = HCIReportsOperations(self._client, self._config, self._serialize, self._deserialize)


def _send_request(
self,
request: 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
"""

self.accounts = AccountsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.configuration_profile_assignments = ConfigurationProfileAssignmentsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.configuration_profile_preferences = ConfigurationProfilePreferencesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.operations = Operations(
self._client, self._config, self._serialize, self._deserialize)
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,20 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from typing import TYPE_CHECKING
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 typing import Any

from azure.core.credentials import TokenCredential


class AutomanageClientConfiguration(Configuration):
class AutomanageClientConfiguration(Configuration): # pylint: disable=too-many-instance-attributes
"""Configuration for AutomanageClient.
Note that all parameters used to create this instance are saved as instance
Expand All @@ -30,26 +29,29 @@ class AutomanageClientConfiguration(Configuration):
:type credential: ~azure.core.credentials.TokenCredential
:param subscription_id: The ID of the target subscription.
:type subscription_id: str
:keyword api_version: Api Version. Default value is "2021-04-30-preview". Note that overriding
this default value may result in unsupported behavior.
:paramtype api_version: str
"""

def __init__(
self,
credential, # type: "TokenCredential"
subscription_id, # type: str
**kwargs # type: Any
):
# type: (...) -> None
credential: "TokenCredential",
subscription_id: str,
**kwargs: Any
) -> None:
super(AutomanageClientConfiguration, self).__init__(**kwargs)
api_version = kwargs.pop('api_version', "2021-04-30-preview") # type: str

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.")
super(AutomanageClientConfiguration, self).__init__(**kwargs)

self.credential = credential
self.subscription_id = subscription_id
self.api_version = "2020-06-30-preview"
self.credential_scopes = ['https://management.azure.com/.default']
self.credential_scopes.extend(kwargs.pop('credential_scopes', []))
self.api_version = api_version
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
kwargs.setdefault('sdk_moniker', 'mgmt-automanage/{}'.format(VERSION))
self._configure(**kwargs)

Expand All @@ -62,9 +64,10 @@ def _configure(
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 = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)
Loading

0 comments on commit 4695c3b

Please sign in to comment.