Skip to content

Commit 72a895d

Browse files
authored
release-for-hanaonazure-mgmt (#11441)
1 parent 83915fa commit 72a895d

16 files changed

+707
-1566
lines changed

sdk/hanaonazure/azure-mgmt-hanaonazure/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Release History
22

3+
## 0.14.0 (2020-05-14)
4+
5+
**Features**
6+
7+
- Model SapMonitor has a new parameter sap_monitor_collector_version
8+
- Model SapMonitor has a new parameter monitor_subnet
9+
- Added operation group ProviderInstancesOperations
10+
11+
**Breaking changes**
12+
13+
- Model Resource no longer has parameter tags
14+
- Model Resource no longer has parameter location
15+
- Model SapMonitor no longer has parameter key_vault_id
16+
- Model SapMonitor no longer has parameter hana_db_password_key_vault_url
17+
- Model SapMonitor no longer has parameter hana_db_name
18+
- Model SapMonitor no longer has parameter hana_db_credentials_msi_id
19+
- Model SapMonitor no longer has parameter hana_hostname
20+
- Model SapMonitor no longer has parameter hana_db_username
21+
- Model SapMonitor no longer has parameter hana_db_password
22+
- Model SapMonitor no longer has parameter hana_subnet
23+
- Model SapMonitor no longer has parameter hana_db_sql_port
24+
- Removed operation group HanaInstancesOperations
25+
326
## 0.13.0 (2020-02-13)
427

528
**Features**

sdk/hanaonazure/azure-mgmt-hanaonazure/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is the Microsoft Azure SAP Hana on Azure Management Client Library.
44
This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8.
5-
For a more complete view of Azure libraries, see the [Github repo](https://github.com/Azure/azure-sdk-for-python/sdk)
5+
For a more complete view of Azure libraries, see the [Github repo](https://github.com/Azure/azure-sdk-for-python/)
66

77

88
# Usage

sdk/hanaonazure/azure-mgmt-hanaonazure/azure/mgmt/hanaonazure/_hana_management_client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
from ._configuration import HanaManagementClientConfiguration
1616
from .operations import Operations
17-
from .operations import HanaInstancesOperations
1817
from .operations import SapMonitorsOperations
18+
from .operations import ProviderInstancesOperations
1919
from . import models
2020

2121

@@ -27,10 +27,10 @@ class HanaManagementClient(SDKClient):
2727
2828
:ivar operations: Operations operations
2929
:vartype operations: azure.mgmt.hanaonazure.operations.Operations
30-
:ivar hana_instances: HanaInstances operations
31-
:vartype hana_instances: azure.mgmt.hanaonazure.operations.HanaInstancesOperations
3230
:ivar sap_monitors: SapMonitors operations
3331
:vartype sap_monitors: azure.mgmt.hanaonazure.operations.SapMonitorsOperations
32+
:ivar provider_instances: ProviderInstances operations
33+
:vartype provider_instances: azure.mgmt.hanaonazure.operations.ProviderInstancesOperations
3434
3535
:param credentials: Credentials needed for the client to connect to Azure.
3636
:type credentials: :mod:`A msrestazure Credentials
@@ -49,13 +49,13 @@ def __init__(
4949
super(HanaManagementClient, self).__init__(self.config.credentials, self.config)
5050

5151
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
52-
self.api_version = '2017-11-03-preview'
52+
self.api_version = '2020-02-07-preview'
5353
self._serialize = Serializer(client_models)
5454
self._deserialize = Deserializer(client_models)
5555

5656
self.operations = Operations(
5757
self._client, self.config, self._serialize, self._deserialize)
58-
self.hana_instances = HanaInstancesOperations(
59-
self._client, self.config, self._serialize, self._deserialize)
6058
self.sap_monitors = SapMonitorsOperations(
6159
self._client, self.config, self._serialize, self._deserialize)
60+
self.provider_instances = ProviderInstancesOperations(
61+
self._client, self.config, self._serialize, self._deserialize)

sdk/hanaonazure/azure-mgmt-hanaonazure/azure/mgmt/hanaonazure/models/__init__.py

Lines changed: 11 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -10,65 +10,44 @@
1010
# --------------------------------------------------------------------------
1111

1212
try:
13-
from ._models_py3 import Disk
1413
from ._models_py3 import Display
1514
from ._models_py3 import ErrorResponse, ErrorResponseException
16-
from ._models_py3 import HanaInstance
17-
from ._models_py3 import HardwareProfile
18-
from ._models_py3 import IpAddress
19-
from ._models_py3 import MonitoringDetails
20-
from ._models_py3 import NetworkProfile
2115
from ._models_py3 import Operation
22-
from ._models_py3 import OSProfile
16+
from ._models_py3 import ProviderInstance
17+
from ._models_py3 import ProxyResource
2318
from ._models_py3 import Resource
2419
from ._models_py3 import SapMonitor
25-
from ._models_py3 import StorageProfile
2620
from ._models_py3 import Tags
21+
from ._models_py3 import TrackedResource
2722
except (SyntaxError, ImportError):
28-
from ._models import Disk
2923
from ._models import Display
3024
from ._models import ErrorResponse, ErrorResponseException
31-
from ._models import HanaInstance
32-
from ._models import HardwareProfile
33-
from ._models import IpAddress
34-
from ._models import MonitoringDetails
35-
from ._models import NetworkProfile
3625
from ._models import Operation
37-
from ._models import OSProfile
26+
from ._models import ProviderInstance
27+
from ._models import ProxyResource
3828
from ._models import Resource
3929
from ._models import SapMonitor
40-
from ._models import StorageProfile
4130
from ._models import Tags
42-
from ._paged_models import HanaInstancePaged
31+
from ._models import TrackedResource
4332
from ._paged_models import OperationPaged
33+
from ._paged_models import ProviderInstancePaged
4434
from ._paged_models import SapMonitorPaged
4535
from ._hana_management_client_enums import (
46-
HanaHardwareTypeNamesEnum,
47-
HanaInstanceSizeNamesEnum,
48-
HanaInstancePowerStateEnum,
4936
HanaProvisioningStatesEnum,
5037
)
5138

5239
__all__ = [
53-
'Disk',
5440
'Display',
5541
'ErrorResponse', 'ErrorResponseException',
56-
'HanaInstance',
57-
'HardwareProfile',
58-
'IpAddress',
59-
'MonitoringDetails',
60-
'NetworkProfile',
6142
'Operation',
62-
'OSProfile',
43+
'ProviderInstance',
44+
'ProxyResource',
6345
'Resource',
6446
'SapMonitor',
65-
'StorageProfile',
6647
'Tags',
48+
'TrackedResource',
6749
'OperationPaged',
68-
'HanaInstancePaged',
6950
'SapMonitorPaged',
70-
'HanaHardwareTypeNamesEnum',
71-
'HanaInstanceSizeNamesEnum',
72-
'HanaInstancePowerStateEnum',
51+
'ProviderInstancePaged',
7352
'HanaProvisioningStatesEnum',
7453
]

sdk/hanaonazure/azure-mgmt-hanaonazure/azure/mgmt/hanaonazure/models/_hana_management_client_enums.py

Lines changed: 0 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -12,69 +12,6 @@
1212
from enum import Enum
1313

1414

15-
class HanaHardwareTypeNamesEnum(str, Enum):
16-
17-
cisco_ucs = "Cisco_UCS"
18-
hpe = "HPE"
19-
20-
21-
class HanaInstanceSizeNamesEnum(str, Enum):
22-
23-
s72m = "S72m"
24-
s144m = "S144m"
25-
s72 = "S72"
26-
s144 = "S144"
27-
s192 = "S192"
28-
s192m = "S192m"
29-
s192xm = "S192xm"
30-
s96 = "S96"
31-
s112 = "S112"
32-
s224 = "S224"
33-
s224m = "S224m"
34-
s224om = "S224om"
35-
s224oo = "S224oo"
36-
s224oom = "S224oom"
37-
s224ooo = "S224ooo"
38-
s384 = "S384"
39-
s384m = "S384m"
40-
s384xm = "S384xm"
41-
s384xxm = "S384xxm"
42-
s448 = "S448"
43-
s448m = "S448m"
44-
s448om = "S448om"
45-
s448oo = "S448oo"
46-
s448oom = "S448oom"
47-
s448ooo = "S448ooo"
48-
s576m = "S576m"
49-
s576xm = "S576xm"
50-
s672 = "S672"
51-
s672m = "S672m"
52-
s672om = "S672om"
53-
s672oo = "S672oo"
54-
s672oom = "S672oom"
55-
s672ooo = "S672ooo"
56-
s768 = "S768"
57-
s768m = "S768m"
58-
s768xm = "S768xm"
59-
s896 = "S896"
60-
s896m = "S896m"
61-
s896om = "S896om"
62-
s896oo = "S896oo"
63-
s896oom = "S896oom"
64-
s896ooo = "S896ooo"
65-
s960m = "S960m"
66-
67-
68-
class HanaInstancePowerStateEnum(str, Enum):
69-
70-
starting = "starting"
71-
started = "started"
72-
stopping = "stopping"
73-
stopped = "stopped"
74-
restarting = "restarting"
75-
unknown = "unknown"
76-
77-
7815
class HanaProvisioningStatesEnum(str, Enum):
7916

8017
accepted = "Accepted"

0 commit comments

Comments
 (0)