Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"autorest": "1.2.2", "date": "2017-08-24T01:30:50Z", "version": ""}
{"autorest": "1.2.2", "date": "2017-09-11T20:44:49Z", "version": ""}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"autorest": "1.2.2", "date": "2017-08-24T01:31:02Z", "version": ""}
{"autorest": "1.2.2", "date": "2017-09-11T20:45:01Z", "version": ""}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"autorest": "1.2.2", "date": "2017-08-24T01:31:17Z", "version": ""}
{"autorest": "1.2.2", "date": "2017-09-11T20:45:17Z", "version": ""}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"autorest": "1.2.2", "date": "2017-08-24T01:31:35Z", "version": ""}
{"autorest": "1.2.2", "date": "2017-09-11T20:45:38Z", "version": ""}
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
from .virtual_machine_instance_view import VirtualMachineInstanceView
from .virtual_machine import VirtualMachine
from .upgrade_policy import UpgradePolicy
from .recovery_policy import RecoveryPolicy
from .image_os_disk import ImageOSDisk
from .image_data_disk import ImageDataDisk
from .image_storage_profile import ImageStorageProfile
Expand Down Expand Up @@ -151,7 +150,6 @@
ResourceIdentityType,
MaintenanceOperationResultCodeTypes,
UpgradeMode,
RecoveryMode,
OperatingSystemStateTypes,
ResourceSkuCapacityScaleType,
ResourceSkuRestrictionsType,
Expand Down Expand Up @@ -215,7 +213,6 @@
'VirtualMachineInstanceView',
'VirtualMachine',
'UpgradePolicy',
'RecoveryPolicy',
'ImageOSDisk',
'ImageDataDisk',
'ImageStorageProfile',
Expand Down Expand Up @@ -305,7 +302,6 @@
'ResourceIdentityType',
'MaintenanceOperationResultCodeTypes',
'UpgradeMode',
'RecoveryMode',
'OperatingSystemStateTypes',
'ResourceSkuCapacityScaleType',
'ResourceSkuRestrictionsType',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,6 @@ class UpgradeMode(Enum):
manual = "Manual"


class RecoveryMode(Enum):

none = "None"
over_provision = "OverProvision"
reprovision = "Reprovision"


class OperatingSystemStateTypes(Enum):

generalized = "Generalized"
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ class VirtualMachineScaleSet(Resource):
:param upgrade_policy: The upgrade policy.
:type upgrade_policy: :class:`UpgradePolicy
<azure.mgmt.compute.compute.v2017_03_30.models.UpgradePolicy>`
:param recovery_policy: The recovery policy.
:type recovery_policy: :class:`RecoveryPolicy
<azure.mgmt.compute.compute.v2017_03_30.models.RecoveryPolicy>`
:param virtual_machine_profile: The virtual machine profile.
:type virtual_machine_profile: :class:`VirtualMachineScaleSetVMProfile
<azure.mgmt.compute.compute.v2017_03_30.models.VirtualMachineScaleSetVMProfile>`
Expand Down Expand Up @@ -85,7 +82,6 @@ class VirtualMachineScaleSet(Resource):
'sku': {'key': 'sku', 'type': 'Sku'},
'plan': {'key': 'plan', 'type': 'Plan'},
'upgrade_policy': {'key': 'properties.upgradePolicy', 'type': 'UpgradePolicy'},
'recovery_policy': {'key': 'properties.recoveryPolicy', 'type': 'RecoveryPolicy'},
'virtual_machine_profile': {'key': 'properties.virtualMachineProfile', 'type': 'VirtualMachineScaleSetVMProfile'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'overprovision': {'key': 'properties.overprovision', 'type': 'bool'},
Expand All @@ -94,12 +90,11 @@ class VirtualMachineScaleSet(Resource):
'identity': {'key': 'identity', 'type': 'VirtualMachineScaleSetIdentity'},
}

def __init__(self, location, tags=None, sku=None, plan=None, upgrade_policy=None, recovery_policy=None, virtual_machine_profile=None, overprovision=None, single_placement_group=None, identity=None):
def __init__(self, location, tags=None, sku=None, plan=None, upgrade_policy=None, virtual_machine_profile=None, overprovision=None, single_placement_group=None, identity=None):
super(VirtualMachineScaleSet, self).__init__(location=location, tags=tags)
self.sku = sku
self.plan = plan
self.upgrade_policy = upgrade_policy
self.recovery_policy = recovery_policy
self.virtual_machine_profile = virtual_machine_profile
self.provisioning_state = None
self.overprovision = overprovision
Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-containerservice/build.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"autorest": "1.2.2", "date": "2017-08-24T01:31:42Z", "version": ""}
{"autorest": "1.2.2", "date": "2017-09-11T20:45:46Z", "version": ""}