Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR] compute/resource-manager #3383

Merged
merged 12 commits into from
Sep 25, 2018
Merged
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
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