Skip to content

Commit

Permalink
Release azure mgmt compute bugfix (#13936)
Browse files Browse the repository at this point in the history
* Generated from 06059d6b06b133ddc68b54170569960cc8e1dec4

compute add java readme

* update changelog and version

* Packaging update of azure-mgmt-compute

Co-authored-by: SDK Automation <sdkautomation@microsoft.com>
Co-authored-by: Azure SDK Bot <adxpysdk@microsoft.com>
  • Loading branch information
3 people authored Sep 23, 2020
1 parent a219074 commit 5ad658f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions sdk/compute/azure-mgmt-compute/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 13.1.1 (2020-09-22)

**Bugfixes**

- Remove maximum condition in platform_fault_domain and platform_fault_domain_count

## 13.1.0 (2020-09-08)

**Features**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ class DedicatedHost(Resource):
'name': {'readonly': True},
'type': {'readonly': True},
'location': {'required': True},
'platform_fault_domain': {'maximum': 2, 'minimum': 0},
'platform_fault_domain': {'minimum': 0},
'host_id': {'readonly': True},
'virtual_machines': {'readonly': True},
'provisioning_time': {'readonly': True},
Expand Down Expand Up @@ -976,7 +976,7 @@ class DedicatedHostGroup(Resource):
'name': {'readonly': True},
'type': {'readonly': True},
'location': {'required': True},
'platform_fault_domain_count': {'required': True, 'maximum': 3, 'minimum': 1},
'platform_fault_domain_count': {'required': True, 'minimum': 1},
'hosts': {'readonly': True},
'instance_view': {'readonly': True},
}
Expand Down Expand Up @@ -1059,7 +1059,7 @@ class DedicatedHostGroupUpdate(UpdateResource):
"""

_validation = {
'platform_fault_domain_count': {'required': True, 'maximum': 3, 'minimum': 1},
'platform_fault_domain_count': {'required': True, 'minimum': 1},
'hosts': {'readonly': True},
'instance_view': {'readonly': True},
}
Expand Down Expand Up @@ -1196,7 +1196,7 @@ class DedicatedHostUpdate(UpdateResource):
"""

_validation = {
'platform_fault_domain': {'maximum': 2, 'minimum': 0},
'platform_fault_domain': {'minimum': 0},
'host_id': {'readonly': True},
'virtual_machines': {'readonly': True},
'provisioning_time': {'readonly': True},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ class DedicatedHost(Resource):
'name': {'readonly': True},
'type': {'readonly': True},
'location': {'required': True},
'platform_fault_domain': {'maximum': 2, 'minimum': 0},
'platform_fault_domain': {'minimum': 0},
'host_id': {'readonly': True},
'virtual_machines': {'readonly': True},
'provisioning_time': {'readonly': True},
Expand Down Expand Up @@ -976,7 +976,7 @@ class DedicatedHostGroup(Resource):
'name': {'readonly': True},
'type': {'readonly': True},
'location': {'required': True},
'platform_fault_domain_count': {'required': True, 'maximum': 3, 'minimum': 1},
'platform_fault_domain_count': {'required': True, 'minimum': 1},
'hosts': {'readonly': True},
'instance_view': {'readonly': True},
}
Expand Down Expand Up @@ -1059,7 +1059,7 @@ class DedicatedHostGroupUpdate(UpdateResource):
"""

_validation = {
'platform_fault_domain_count': {'required': True, 'maximum': 3, 'minimum': 1},
'platform_fault_domain_count': {'required': True, 'minimum': 1},
'hosts': {'readonly': True},
'instance_view': {'readonly': True},
}
Expand Down Expand Up @@ -1196,7 +1196,7 @@ class DedicatedHostUpdate(UpdateResource):
"""

_validation = {
'platform_fault_domain': {'maximum': 2, 'minimum': 0},
'platform_fault_domain': {'minimum': 0},
'host_id': {'readonly': True},
'virtual_machines': {'readonly': True},
'provisioning_time': {'readonly': True},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "13.1.0"
VERSION = "13.1.1"

0 comments on commit 5ad658f

Please sign in to comment.