Skip to content

Commit

Permalink
Generated from fcefbc8dc6d16108d70f6149a019c16a39043ee2
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Sep 10, 2020
1 parent decd18c commit d13f0bf
Show file tree
Hide file tree
Showing 22 changed files with 3,553 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sdk/automanage/azure-mgmt-automanage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Release History

## 0.1.0 (1970-01-01)

* Initial Release
5 changes: 5 additions & 0 deletions sdk/automanage/azure-mgmt-automanage/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
recursive-include tests *.py *.yaml
include *.md
include azure/__init__.py
include azure/mgmt/__init__.py

21 changes: 21 additions & 0 deletions sdk/automanage/azure-mgmt-automanage/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Microsoft Azure SDK for Python

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


# Usage

For code examples, see [MyService Management](https://docs.microsoft.com/python/api/overview/azure/)
on docs.microsoft.com.


# Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project.


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-automanage%2FREADME.png)
1 change: 1 addition & 0 deletions sdk/automanage/azure-mgmt-automanage/azure/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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 ._configuration import AutomanageClientConfiguration
from ._automanage_client import AutomanageClient
__all__ = ['AutomanageClient', 'AutomanageClientConfiguration']

from .version import VERSION

__version__ = VERSION

Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# 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 SDKClient
from msrest import Serializer, Deserializer

from ._configuration import AutomanageClientConfiguration
from .operations import AccountsOperations
from .operations import ConfigurationProfileAssignmentsOperations
from .operations import ConfigurationProfilePreferencesOperations
from .operations import Operations
from . import models


class AutomanageClient(SDKClient):
"""Automanage Client
:ivar config: Configuration for client.
:vartype config: AutomanageClientConfiguration
:ivar accounts: Accounts operations
:vartype accounts: azure.mgmt.automanage.operations.AccountsOperations
:ivar configuration_profile_assignments: ConfigurationProfileAssignments operations
:vartype configuration_profile_assignments: azure.mgmt.automanage.operations.ConfigurationProfileAssignmentsOperations
:ivar configuration_profile_preferences: ConfigurationProfilePreferences operations
:vartype configuration_profile_preferences: azure.mgmt.automanage.operations.ConfigurationProfilePreferencesOperations
:ivar operations: Operations operations
:vartype operations: azure.mgmt.automanage.operations.Operations
: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: The ID of the target subscription.
:type subscription_id: str
:param str base_url: Service URL
"""

def __init__(
self, credentials, subscription_id, base_url=None):

self.config = AutomanageClientConfiguration(credentials, subscription_id, base_url)
super(AutomanageClient, self).__init__(self.config.credentials, self.config)

client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
self.api_version = '2020-06-30-preview'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)

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)
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 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 msrestazure import AzureConfiguration

from .version import VERSION


class AutomanageClientConfiguration(AzureConfiguration):
"""Configuration for AutomanageClient
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: The ID of the target subscription.
:type subscription_id: str
:param str base_url: Service URL
"""

def __init__(
self, credentials, subscription_id, base_url=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 base_url:
base_url = 'https://management.azure.com'

super(AutomanageClientConfiguration, self).__init__(base_url)

# Starting Autorest.Python 4.0.64, make connection pool activated by default
self.keep_alive = True

self.add_user_agent('azure-mgmt-automanage/{}'.format(VERSION))
self.add_user_agent('Azure-SDK-For-Python')

self.credentials = credentials
self.subscription_id = subscription_id
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
# 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.
# --------------------------------------------------------------------------

try:
from ._models_py3 import Account
from ._models_py3 import AccountIdentity
from ._models_py3 import AccountUpdate
from ._models_py3 import AzureEntityResource
from ._models_py3 import ConfigurationProfileAssignment
from ._models_py3 import ConfigurationProfileAssignmentCompliance
from ._models_py3 import ConfigurationProfileAssignmentProperties
from ._models_py3 import ConfigurationProfilePreference
from ._models_py3 import ConfigurationProfilePreferenceAntiMalware
from ._models_py3 import ConfigurationProfilePreferenceProperties
from ._models_py3 import ConfigurationProfilePreferenceUpdate
from ._models_py3 import ConfigurationProfilePreferenceVmBackup
from ._models_py3 import ErrorAdditionalInfo
from ._models_py3 import ErrorResponse, ErrorResponseException
from ._models_py3 import ErrorResponseError
from ._models_py3 import Operation
from ._models_py3 import OperationDisplay
from ._models_py3 import ProxyResource
from ._models_py3 import Resource
from ._models_py3 import TrackedResource
from ._models_py3 import UpdateResource
except (SyntaxError, ImportError):
from ._models import Account
from ._models import AccountIdentity
from ._models import AccountUpdate
from ._models import AzureEntityResource
from ._models import ConfigurationProfileAssignment
from ._models import ConfigurationProfileAssignmentCompliance
from ._models import ConfigurationProfileAssignmentProperties
from ._models import ConfigurationProfilePreference
from ._models import ConfigurationProfilePreferenceAntiMalware
from ._models import ConfigurationProfilePreferenceProperties
from ._models import ConfigurationProfilePreferenceUpdate
from ._models import ConfigurationProfilePreferenceVmBackup
from ._models import ErrorAdditionalInfo
from ._models import ErrorResponse, ErrorResponseException
from ._models import ErrorResponseError
from ._models import Operation
from ._models import OperationDisplay
from ._models import ProxyResource
from ._models import Resource
from ._models import TrackedResource
from ._models import UpdateResource
from ._paged_models import AccountPaged
from ._paged_models import ConfigurationProfileAssignmentPaged
from ._paged_models import ConfigurationProfilePreferencePaged
from ._paged_models import OperationPaged
from ._automanage_client_enums import (
ResourceIdentityType,
ConfigurationProfile,
ProvisioningState,
UpdateStatus,
EnableRealTimeProtection,
RunScheduledScan,
ScanType,
)

__all__ = [
'Account',
'AccountIdentity',
'AccountUpdate',
'AzureEntityResource',
'ConfigurationProfileAssignment',
'ConfigurationProfileAssignmentCompliance',
'ConfigurationProfileAssignmentProperties',
'ConfigurationProfilePreference',
'ConfigurationProfilePreferenceAntiMalware',
'ConfigurationProfilePreferenceProperties',
'ConfigurationProfilePreferenceUpdate',
'ConfigurationProfilePreferenceVmBackup',
'ErrorAdditionalInfo',
'ErrorResponse', 'ErrorResponseException',
'ErrorResponseError',
'Operation',
'OperationDisplay',
'ProxyResource',
'Resource',
'TrackedResource',
'UpdateResource',
'AccountPaged',
'ConfigurationProfileAssignmentPaged',
'ConfigurationProfilePreferencePaged',
'OperationPaged',
'ResourceIdentityType',
'ConfigurationProfile',
'ProvisioningState',
'UpdateStatus',
'EnableRealTimeProtection',
'RunScheduledScan',
'ScanType',
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# 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 enum import Enum


class ResourceIdentityType(str, Enum):

system_assigned = "SystemAssigned"
none = "None"


class ConfigurationProfile(str, Enum):

azurevirtualmachinebestpractices_dev_test = "Azure virtual machine best practices – Dev/Test"
azurevirtualmachinebestpractices_production = "Azure virtual machine best practices – Production"


class ProvisioningState(str, Enum):

succeeded = "Succeeded"
failed = "Failed"
created = "Created"


class UpdateStatus(str, Enum):

succeeded = "Succeeded"
failed = "Failed"
created = "Created"


class EnableRealTimeProtection(str, Enum):

true = "True"
false = "False"


class RunScheduledScan(str, Enum):

true = "True"
false = "False"


class ScanType(str, Enum):

quick = "Quick"
full = "Full"
Loading

0 comments on commit d13f0bf

Please sign in to comment.