Skip to content

Commit

Permalink
[AutoPR] compute/resource-manager (#3383)
Browse files Browse the repository at this point in the history
* [AutoPR compute/resource-manager] More detail added to the descriptions. (#3379)

* Generated from 3e469dd4a038e012849e46c67479c06383438b59

More detail added to the descriptions.

Changes made to description strings.

* Generated from 67ce182a3a8d197dc80e43e909f4497f5187447e

Addressed review comments

Addressed review comments on the updateable fields.

* Generated from a92afaeaf927c92e6784981875d29e83174a6e07

Added another updateable property description

Added another updateable property description

* Generated from ad369e69d0583a6198e9969b7c318e267d8c6729 (#3394)

Updated comments and introduced AvailabilitySetSkuType to help users use predefined constants

* Generated from 7d119071aeb883d55e9860d9ccdbf74050ce856b (#3402)

Made minor change to gallery swagger.

* [AutoPR compute/resource-manager] Add api version 2018-10-01 for Microsoft.Compute (#3404)

* Generated from cf4aa82f2f8b9745ddac737bf309b1feec83c5bc

Soft reset from Azure Repository

* Generated from 71cfd635af943e3e36cb382a4677700861afae02

Added API version 2018-10-01

* [AutoPR compute/resource-manager] Swagger changes for adding diffdisksettings property for the Ephemeral OS Disks  (#3373)

* Generated from 2f5219561aefc8c0d87bb9b62d5fc8f222f2b842

updated comment

* Generated from 3286411fb1aa50b4ef9633cfdd4403f6357d1cf0

 updated swagger specs for diffdisksettings property

* Generated from f8934d4e93099dec66995c9fdeccd02d7fb535bd

 updated swagger spec comments  for diff disk settings [property

* Generated from 474d5b03008f5780dcb546ed5264bae7eb3d8e59

 updated 2018-10-01 version specs with diffdisk property

* [AutoPR compute/resource-manager] Swagger change for adding status to BootDiagnosticsInstanceView (#3407)

* Generated from 9855ec03e53f44f96c32a2fa1089ac852998dfee

Updated compute.json

* Generated from 05aee80018965c46bc328df16dc79b315e4ecc22

Made BootDiagnosticsInstanceView properties readOnly

* Generated from 05aee80018965c46bc328df16dc79b315e4ecc22

Made BootDiagnosticsInstanceView properties readOnly

* [AutoPR compute/resource-manager] Swagger change for listing virtual machines in a subscription by location (#3418)

* Generated from 3be1a911d16b8296adaedaa7f947fbdd04e85d19

Updated compute.json

* Generated from ae050a8fdd8c727b1344880df360fc78188bbd56

Merge branch 'master' into locations_virtualMachines

* Generated from f8fd0b64d1e5cdcbac402960aea82d5f0b2838a0

Merge branch 'master' into locations_virtualMachines

* Packaging update of azure-mgmt-compute

* [AutoPR compute/resource-manager] Set location for the final state option of the POST long running disk… (#3431)

* Generated from 001427fae9affdb238c7bcb30cf81da5fd96e546

Set location for the final state option of the POST long running disk operations.

* GrantAccess test (#3430)

* Remove deprecated file

* Compute 4.2.0
  • Loading branch information
AutorestCI authored and lmazuel committed Sep 25, 2018
1 parent ed4dbf6 commit 4817a54
Show file tree
Hide file tree
Showing 149 changed files with 1,198 additions and 1,025 deletions.
14 changes: 14 additions & 0 deletions azure-mgmt-compute/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
Release History
===============

4.2.0 (2018-09-25)
++++++++++++++++++

**Features**

- Model OSDisk has a new parameter diff_disk_settings
- Model BootDiagnosticsInstanceView has a new parameter status
- Model VirtualMachineScaleSetOSDisk has a new parameter diff_disk_settings
- Added operation VirtualMachinesOperations.list_by_location

**Note**

- azure-mgmt-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)

4.1.0 (2018-09-12)
++++++++++++++++++

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@

class BootDiagnostics(Model):
"""Boot Diagnostics is a debugging feature which allows you to view Console
Output and Screenshot to diagnose VM status. <br><br> For Linux Virtual
Machines, you can easily view the output of your console log. <br><br> For
both Windows and Linux virtual machines, Azure also enables you to see a
Output and Screenshot to diagnose VM status. <br><br> You can easily view
the output of your console log. <br><br> Azure also enables you to see a
screenshot of the VM from the hypervisor.
:param enabled: Whether boot diagnostics should be enabled on the Virtual
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,26 @@
class BootDiagnosticsInstanceView(Model):
"""The instance view of a virtual machine boot diagnostics.
:param console_screenshot_blob_uri: The console screenshot blob URI.
:type console_screenshot_blob_uri: str
:param serial_console_log_blob_uri: The Linux serial console log blob Uri.
:type serial_console_log_blob_uri: str
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar console_screenshot_blob_uri: The console screenshot blob URI.
:vartype console_screenshot_blob_uri: str
:ivar serial_console_log_blob_uri: The Linux serial console log blob Uri.
:vartype serial_console_log_blob_uri: str
"""

_validation = {
'console_screenshot_blob_uri': {'readonly': True},
'serial_console_log_blob_uri': {'readonly': True},
}

_attribute_map = {
'console_screenshot_blob_uri': {'key': 'consoleScreenshotBlobUri', 'type': 'str'},
'serial_console_log_blob_uri': {'key': 'serialConsoleLogBlobUri', 'type': 'str'},
}

def __init__(self, **kwargs):
super(BootDiagnosticsInstanceView, self).__init__(**kwargs)
self.console_screenshot_blob_uri = kwargs.get('console_screenshot_blob_uri', None)
self.serial_console_log_blob_uri = kwargs.get('serial_console_log_blob_uri', None)
self.console_screenshot_blob_uri = None
self.serial_console_log_blob_uri = None
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,26 @@
class BootDiagnosticsInstanceView(Model):
"""The instance view of a virtual machine boot diagnostics.
:param console_screenshot_blob_uri: The console screenshot blob URI.
:type console_screenshot_blob_uri: str
:param serial_console_log_blob_uri: The Linux serial console log blob Uri.
:type serial_console_log_blob_uri: str
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar console_screenshot_blob_uri: The console screenshot blob URI.
:vartype console_screenshot_blob_uri: str
:ivar serial_console_log_blob_uri: The Linux serial console log blob Uri.
:vartype serial_console_log_blob_uri: str
"""

_validation = {
'console_screenshot_blob_uri': {'readonly': True},
'serial_console_log_blob_uri': {'readonly': True},
}

_attribute_map = {
'console_screenshot_blob_uri': {'key': 'consoleScreenshotBlobUri', 'type': 'str'},
'serial_console_log_blob_uri': {'key': 'serialConsoleLogBlobUri', 'type': 'str'},
}

def __init__(self, *, console_screenshot_blob_uri: str=None, serial_console_log_blob_uri: str=None, **kwargs) -> None:
def __init__(self, **kwargs) -> None:
super(BootDiagnosticsInstanceView, self).__init__(**kwargs)
self.console_screenshot_blob_uri = console_screenshot_blob_uri
self.serial_console_log_blob_uri = serial_console_log_blob_uri
self.console_screenshot_blob_uri = None
self.serial_console_log_blob_uri = None
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@

class BootDiagnostics(Model):
"""Boot Diagnostics is a debugging feature which allows you to view Console
Output and Screenshot to diagnose VM status. <br><br> For Linux Virtual
Machines, you can easily view the output of your console log. <br><br> For
both Windows and Linux virtual machines, Azure also enables you to see a
Output and Screenshot to diagnose VM status. <br><br> You can easily view
the output of your console log. <br><br> Azure also enables you to see a
screenshot of the VM from the hypervisor.
:param enabled: Whether boot diagnostics should be enabled on the Virtual
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ class DiagnosticsProfile(Model):
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2015_06_15.models.BootDiagnostics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ class DiagnosticsProfile(Model):
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2015_06_15.models.BootDiagnostics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ class VirtualMachineInstanceView(Model):
list[~azure.mgmt.compute.v2015_06_15.models.VirtualMachineExtensionInstanceView]
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2015_06_15.models.BootDiagnosticsInstanceView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ class VirtualMachineInstanceView(Model):
list[~azure.mgmt.compute.v2015_06_15.models.VirtualMachineExtensionInstanceView]
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2015_06_15.models.BootDiagnosticsInstanceView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ class VirtualMachineScaleSetVMInstanceView(Model):
list[~azure.mgmt.compute.v2015_06_15.models.VirtualMachineExtensionInstanceView]
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2015_06_15.models.BootDiagnosticsInstanceView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ class VirtualMachineScaleSetVMInstanceView(Model):
list[~azure.mgmt.compute.v2015_06_15.models.VirtualMachineExtensionInstanceView]
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2015_06_15.models.BootDiagnosticsInstanceView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@

class BootDiagnostics(Model):
"""Boot Diagnostics is a debugging feature which allows you to view Console
Output and Screenshot to diagnose VM status. <br><br> For Linux Virtual
Machines, you can easily view the output of your console log. <br><br> For
both Windows and Linux virtual machines, Azure also enables you to see a
Output and Screenshot to diagnose VM status. <br><br> You can easily view
the output of your console log. <br><br> Azure also enables you to see a
screenshot of the VM from the hypervisor.
:param enabled: Whether boot diagnostics should be enabled on the Virtual
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,26 @@
class BootDiagnosticsInstanceView(Model):
"""The instance view of a virtual machine boot diagnostics.
:param console_screenshot_blob_uri: The console screenshot blob URI.
:type console_screenshot_blob_uri: str
:param serial_console_log_blob_uri: The Linux serial console log blob Uri.
:type serial_console_log_blob_uri: str
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar console_screenshot_blob_uri: The console screenshot blob URI.
:vartype console_screenshot_blob_uri: str
:ivar serial_console_log_blob_uri: The Linux serial console log blob Uri.
:vartype serial_console_log_blob_uri: str
"""

_validation = {
'console_screenshot_blob_uri': {'readonly': True},
'serial_console_log_blob_uri': {'readonly': True},
}

_attribute_map = {
'console_screenshot_blob_uri': {'key': 'consoleScreenshotBlobUri', 'type': 'str'},
'serial_console_log_blob_uri': {'key': 'serialConsoleLogBlobUri', 'type': 'str'},
}

def __init__(self, **kwargs):
super(BootDiagnosticsInstanceView, self).__init__(**kwargs)
self.console_screenshot_blob_uri = kwargs.get('console_screenshot_blob_uri', None)
self.serial_console_log_blob_uri = kwargs.get('serial_console_log_blob_uri', None)
self.console_screenshot_blob_uri = None
self.serial_console_log_blob_uri = None
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,26 @@
class BootDiagnosticsInstanceView(Model):
"""The instance view of a virtual machine boot diagnostics.
:param console_screenshot_blob_uri: The console screenshot blob URI.
:type console_screenshot_blob_uri: str
:param serial_console_log_blob_uri: The Linux serial console log blob Uri.
:type serial_console_log_blob_uri: str
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar console_screenshot_blob_uri: The console screenshot blob URI.
:vartype console_screenshot_blob_uri: str
:ivar serial_console_log_blob_uri: The Linux serial console log blob Uri.
:vartype serial_console_log_blob_uri: str
"""

_validation = {
'console_screenshot_blob_uri': {'readonly': True},
'serial_console_log_blob_uri': {'readonly': True},
}

_attribute_map = {
'console_screenshot_blob_uri': {'key': 'consoleScreenshotBlobUri', 'type': 'str'},
'serial_console_log_blob_uri': {'key': 'serialConsoleLogBlobUri', 'type': 'str'},
}

def __init__(self, *, console_screenshot_blob_uri: str=None, serial_console_log_blob_uri: str=None, **kwargs) -> None:
def __init__(self, **kwargs) -> None:
super(BootDiagnosticsInstanceView, self).__init__(**kwargs)
self.console_screenshot_blob_uri = console_screenshot_blob_uri
self.serial_console_log_blob_uri = serial_console_log_blob_uri
self.console_screenshot_blob_uri = None
self.serial_console_log_blob_uri = None
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@

class BootDiagnostics(Model):
"""Boot Diagnostics is a debugging feature which allows you to view Console
Output and Screenshot to diagnose VM status. <br><br> For Linux Virtual
Machines, you can easily view the output of your console log. <br><br> For
both Windows and Linux virtual machines, Azure also enables you to see a
Output and Screenshot to diagnose VM status. <br><br> You can easily view
the output of your console log. <br><br> Azure also enables you to see a
screenshot of the VM from the hypervisor.
:param enabled: Whether boot diagnostics should be enabled on the Virtual
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ class DiagnosticsProfile(Model):
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2016_03_30.models.BootDiagnostics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ class DiagnosticsProfile(Model):
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2016_03_30.models.BootDiagnostics
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ class VirtualMachineInstanceView(Model):
list[~azure.mgmt.compute.v2016_03_30.models.VirtualMachineExtensionInstanceView]
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2016_03_30.models.BootDiagnosticsInstanceView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ class VirtualMachineInstanceView(Model):
list[~azure.mgmt.compute.v2016_03_30.models.VirtualMachineExtensionInstanceView]
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2016_03_30.models.BootDiagnosticsInstanceView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ class VirtualMachineScaleSetVMInstanceView(Model):
list[~azure.mgmt.compute.v2016_03_30.models.VirtualMachineExtensionInstanceView]
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2016_03_30.models.BootDiagnosticsInstanceView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ class VirtualMachineScaleSetVMInstanceView(Model):
list[~azure.mgmt.compute.v2016_03_30.models.VirtualMachineExtensionInstanceView]
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
allows you to view Console Output and Screenshot to diagnose VM status.
<br><br> For Linux Virtual Machines, you can easily view the output of
your console log. <br><br> For both Windows and Linux virtual machines,
<br><br> You can easily view the output of your console log. <br><br>
Azure also enables you to see a screenshot of the VM from the hypervisor.
:type boot_diagnostics:
~azure.mgmt.compute.v2016_03_30.models.BootDiagnosticsInstanceView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@

class BootDiagnostics(Model):
"""Boot Diagnostics is a debugging feature which allows you to view Console
Output and Screenshot to diagnose VM status. <br><br> For Linux Virtual
Machines, you can easily view the output of your console log. <br><br> For
both Windows and Linux virtual machines, Azure also enables you to see a
Output and Screenshot to diagnose VM status. <br><br> You can easily view
the output of your console log. <br><br> Azure also enables you to see a
screenshot of the VM from the hypervisor.
:param enabled: Whether boot diagnostics should be enabled on the Virtual
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,26 @@
class BootDiagnosticsInstanceView(Model):
"""The instance view of a virtual machine boot diagnostics.
:param console_screenshot_blob_uri: The console screenshot blob URI.
:type console_screenshot_blob_uri: str
:param serial_console_log_blob_uri: The Linux serial console log blob Uri.
:type serial_console_log_blob_uri: str
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar console_screenshot_blob_uri: The console screenshot blob URI.
:vartype console_screenshot_blob_uri: str
:ivar serial_console_log_blob_uri: The Linux serial console log blob Uri.
:vartype serial_console_log_blob_uri: str
"""

_validation = {
'console_screenshot_blob_uri': {'readonly': True},
'serial_console_log_blob_uri': {'readonly': True},
}

_attribute_map = {
'console_screenshot_blob_uri': {'key': 'consoleScreenshotBlobUri', 'type': 'str'},
'serial_console_log_blob_uri': {'key': 'serialConsoleLogBlobUri', 'type': 'str'},
}

def __init__(self, **kwargs):
super(BootDiagnosticsInstanceView, self).__init__(**kwargs)
self.console_screenshot_blob_uri = kwargs.get('console_screenshot_blob_uri', None)
self.serial_console_log_blob_uri = kwargs.get('serial_console_log_blob_uri', None)
self.console_screenshot_blob_uri = None
self.serial_console_log_blob_uri = None
Loading

0 comments on commit 4817a54

Please sign in to comment.