Skip to content

Commit

Permalink
[AutoRelease] t2-automanage-2022-08-01-93502(Do not merge) (#25479)
Browse files Browse the repository at this point in the history
* code and test

* Update CHANGELOG.md

Co-authored-by: PythonSdkPipelines <PythonSdkPipelines>
Co-authored-by: Jiefeng Chen <[email protected]>
  • Loading branch information
azure-sdk and BigCat20196 authored Aug 2, 2022
1 parent eb86a53 commit 84d1079
Show file tree
Hide file tree
Showing 58 changed files with 9,190 additions and 4,043 deletions.
35 changes: 35 additions & 0 deletions sdk/automanage/azure-mgmt-automanage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Release History

## 1.0.0 (2022-08-02)

**Features**

- Added operation ConfigurationProfileAssignmentsOperations.create_or_update
- Added operation ConfigurationProfileAssignmentsOperations.list_by_cluster_name
- Added operation ConfigurationProfileAssignmentsOperations.list_by_machine_name
- Added operation ConfigurationProfileAssignmentsOperations.list_by_virtual_machines
- Added operation group BestPracticesOperations
- Added operation group BestPracticesVersionsOperations
- Added operation group ConfigurationProfileHCIAssignmentsOperations
- Added operation group ConfigurationProfileHCRPAssignmentsOperations
- Added operation group ConfigurationProfilesOperations
- Added operation group ConfigurationProfilesVersionsOperations
- Added operation group HCIReportsOperations
- Added operation group HCRPReportsOperations
- Added operation group ReportsOperations
- Added operation group ServicePrincipalsOperations
- Model ConfigurationProfileAssignment has a new parameter managed_by
- Model ConfigurationProfileAssignment has a new parameter system_data
- Model ConfigurationProfileAssignmentProperties has a new parameter status
- Model Operation has a new parameter action_type
- Model Operation has a new parameter origin

**Breaking changes**

- Model ConfigurationProfileAssignmentProperties no longer has parameter account_id
- Model ConfigurationProfileAssignmentProperties no longer has parameter compliance
- Model ConfigurationProfileAssignmentProperties no longer has parameter configuration_profile_preference_id
- Model ConfigurationProfileAssignmentProperties no longer has parameter provisioning_status
- Model Operation no longer has parameter status_code
- Removed operation ConfigurationProfileAssignmentsOperations.begin_create_or_update
- Removed operation group AccountsOperations
- Removed operation group ConfigurationProfilePreferencesOperations

## 1.0.0b2 (2021-04-21)

- Fix dependency for package
Expand Down
3 changes: 2 additions & 1 deletion sdk/automanage/azure-mgmt-automanage/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
include _meta.json
recursive-include tests *.py *.yaml
recursive-include tests *.py *.json
include *.md
include azure/__init__.py
include azure/mgmt/__init__.py
include LICENSE
include azure/mgmt/automanage/py.typed
2 changes: 1 addition & 1 deletion sdk/automanage/azure-mgmt-automanage/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Microsoft Azure SDK for Python

This is the Microsoft Azure Auto Manage Management Client Library.
This package has been tested with Python 3.6+.
This package has been tested with Python 3.7+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_
Expand Down
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/[email protected]",
"@autorest/[email protected]"
],
"commit": "2dcad6d6e9a96882eb6d317e7500a94be007a9c6",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/automanage/resource-manager/readme.md --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2",
"readme": "specification/automanage/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@
from ._version import VERSION

__version__ = VERSION
__all__ = ['AutomanageClient']

try:
from ._patch import patch_sdk
patch_sdk()
from ._patch import __all__ as _patch_all
from ._patch import * # type: ignore # pylint: disable=unused-wildcard-import
except ImportError:
pass
_patch_all = []
from ._patch import patch_sdk as _patch_sdk
__all__ = ['AutomanageClient']
__all__.extend([p for p in _patch_all if p not in __all__])

_patch_sdk()
Original file line number Diff line number Diff line change
Expand Up @@ -6,69 +6,145 @@
# 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 "2022-05-04". 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.accounts = AccountsOperations(
self._client, self._config, self._serialize, self._deserialize)
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.configuration_profile_preferences = ConfigurationProfilePreferencesOperations(
self._client, self._config, self._serialize, self._deserialize)
self._client, self._config, self._serialize, self._deserialize
)
self.operations = Operations(
self._client, self._config, self._serialize, self._deserialize)
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
"""

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 "2022-05-04". 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', "2022-05-04") # 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 84d1079

Please sign in to comment.