Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR] netapp/resource-manager #8488

Merged
merged 9 commits into from
Nov 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions sdk/netapp/azure-mgmt-netapp/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
Release History
===============

0.7.0 (2019-11-12)
++++++++++++++++++

**Features**

- Model MountTarget has a new parameter type
- Model Volume has a new parameter data_protection
- Model Volume has a new parameter volume_type
- Added operation group NetAppResourceOperations

**Breaking changes**

- Removed operation group AzureNetAppFilesManagementClientOperationsMixin

0.6.0 (2019-09-26)
++++++++++++++++++

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
from msrest import Serializer, Deserializer

from ._configuration import AzureNetAppFilesManagementClientConfiguration
from .operations import AzureNetAppFilesManagementClientOperationsMixin
from .operations import Operations
from .operations import NetAppResourceOperations
from .operations import AccountsOperations
from .operations import PoolsOperations
from .operations import VolumesOperations
Expand All @@ -23,14 +23,16 @@
from . import models


class AzureNetAppFilesManagementClient(AzureNetAppFilesManagementClientOperationsMixin, SDKClient):
class AzureNetAppFilesManagementClient(SDKClient):
"""Microsoft NetApp Azure Resource Provider specification

:ivar config: Configuration for client.
:vartype config: AzureNetAppFilesManagementClientConfiguration

:ivar operations: Operations operations
:vartype operations: azure.mgmt.netapp.operations.Operations
:ivar net_app_resource: NetAppResource operations
:vartype net_app_resource: azure.mgmt.netapp.operations.NetAppResourceOperations
:ivar accounts: Accounts operations
:vartype accounts: azure.mgmt.netapp.operations.AccountsOperations
:ivar pools: Pools operations
Expand Down Expand Up @@ -59,12 +61,14 @@ def __init__(
super(AzureNetAppFilesManagementClient, 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 = '2019-07-01'
self.api_version = '2019-08-01'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)

self.operations = Operations(
self._client, self.config, self._serialize, self._deserialize)
self.net_app_resource = NetAppResourceOperations(
self._client, self.config, self._serialize, self._deserialize)
self.accounts = AccountsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.pools = PoolsOperations(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from ._models_py3 import NetAppAccountPatch
from ._models_py3 import Operation
from ._models_py3 import OperationDisplay
from ._models_py3 import ReplicationObject
from ._models_py3 import ResourceNameAvailability
from ._models_py3 import ResourceNameAvailabilityRequest
from ._models_py3 import ServiceSpecification
Expand All @@ -29,6 +30,7 @@
from ._models_py3 import Volume
from ._models_py3 import VolumePatch
from ._models_py3 import VolumePatchPropertiesExportPolicy
from ._models_py3 import VolumePropertiesDataProtection
from ._models_py3 import VolumePropertiesExportPolicy
except (SyntaxError, ImportError):
from ._models import ActiveDirectory
Expand All @@ -42,6 +44,7 @@
from ._models import NetAppAccountPatch
from ._models import Operation
from ._models import OperationDisplay
from ._models import ReplicationObject
from ._models import ResourceNameAvailability
from ._models import ResourceNameAvailabilityRequest
from ._models import ServiceSpecification
Expand All @@ -50,6 +53,7 @@
from ._models import Volume
from ._models import VolumePatch
from ._models import VolumePatchPropertiesExportPolicy
from ._models import VolumePropertiesDataProtection
from ._models import VolumePropertiesExportPolicy
from ._paged_models import CapacityPoolPaged
from ._paged_models import MountTargetPaged
Expand All @@ -75,6 +79,7 @@
'NetAppAccountPatch',
'Operation',
'OperationDisplay',
'ReplicationObject',
'ResourceNameAvailability',
'ResourceNameAvailabilityRequest',
'ServiceSpecification',
Expand All @@ -83,6 +88,7 @@
'Volume',
'VolumePatch',
'VolumePatchPropertiesExportPolicy',
'VolumePropertiesDataProtection',
'VolumePropertiesExportPolicy',
'OperationPaged',
'NetAppAccountPaged',
Expand Down
Loading