Skip to content

Commit

Permalink
Manually Release ContainerService (#10757)
Browse files Browse the repository at this point in the history
  • Loading branch information
LianwMS authored Apr 10, 2020
1 parent de8b8b2 commit 9d49474
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 9.0.1 (2020-04-09)

**Bugfixes**

- Switch field type to string to avoid unmarshal errors

## 9.0.0 (2020-03-24)

**Features**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1779,7 +1779,7 @@ class ManagedClusterPropertiesAutoScalerProfile(Model):
"""Parameters to be applied to the cluster-autoscaler when enabled.
:param balance_similar_node_groups:
:type balance_similar_node_groups: bool
:type balance_similar_node_groups: str
:param scan_interval:
:type scan_interval: str
:param scale_down_delay_after_add:
Expand All @@ -1799,7 +1799,7 @@ class ManagedClusterPropertiesAutoScalerProfile(Model):
"""

_attribute_map = {
'balance_similar_node_groups': {'key': 'balance-similar-node-groups', 'type': 'bool'},
'balance_similar_node_groups': {'key': 'balance-similar-node-groups', 'type': 'str'},
'scan_interval': {'key': 'scan-interval', 'type': 'str'},
'scale_down_delay_after_add': {'key': 'scale-down-delay-after-add', 'type': 'str'},
'scale_down_delay_after_delete': {'key': 'scale-down-delay-after-delete', 'type': 'str'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1779,7 +1779,7 @@ class ManagedClusterPropertiesAutoScalerProfile(Model):
"""Parameters to be applied to the cluster-autoscaler when enabled.
:param balance_similar_node_groups:
:type balance_similar_node_groups: bool
:type balance_similar_node_groups: str
:param scan_interval:
:type scan_interval: str
:param scale_down_delay_after_add:
Expand All @@ -1799,7 +1799,7 @@ class ManagedClusterPropertiesAutoScalerProfile(Model):
"""

_attribute_map = {
'balance_similar_node_groups': {'key': 'balance-similar-node-groups', 'type': 'bool'},
'balance_similar_node_groups': {'key': 'balance-similar-node-groups', 'type': 'str'},
'scan_interval': {'key': 'scan-interval', 'type': 'str'},
'scale_down_delay_after_add': {'key': 'scale-down-delay-after-add', 'type': 'str'},
'scale_down_delay_after_delete': {'key': 'scale-down-delay-after-delete', 'type': 'str'},
Expand All @@ -1810,7 +1810,7 @@ class ManagedClusterPropertiesAutoScalerProfile(Model):
'max_graceful_termination_sec': {'key': 'max-graceful-termination-sec', 'type': 'str'},
}

def __init__(self, *, balance_similar_node_groups: bool=None, scan_interval: str=None, scale_down_delay_after_add: str=None, scale_down_delay_after_delete: str=None, scale_down_delay_after_failure: str=None, scale_down_unneeded_time: str=None, scale_down_unready_time: str=None, scale_down_utilization_threshold: str=None, max_graceful_termination_sec: str=None, **kwargs) -> None:
def __init__(self, *, balance_similar_node_groups: str=None, scan_interval: str=None, scale_down_delay_after_add: str=None, scale_down_delay_after_delete: str=None, scale_down_delay_after_failure: str=None, scale_down_unneeded_time: str=None, scale_down_unready_time: str=None, scale_down_utilization_threshold: str=None, max_graceful_termination_sec: str=None, **kwargs) -> None:
super(ManagedClusterPropertiesAutoScalerProfile, self).__init__(**kwargs)
self.balance_similar_node_groups = balance_similar_node_groups
self.scan_interval = scan_interval
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "9.0.0"
VERSION = "9.0.1"

0 comments on commit 9d49474

Please sign in to comment.