Skip to content

Commit 4817a54

Browse files
AutorestCIlmazuel
authored andcommitted
[AutoPR] compute/resource-manager (#3383)
* [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
1 parent ed4dbf6 commit 4817a54

File tree

149 files changed

+1198
-1025
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+1198
-1025
lines changed

azure-mgmt-compute/HISTORY.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
Release History
44
===============
55

6+
4.2.0 (2018-09-25)
7+
++++++++++++++++++
8+
9+
**Features**
10+
11+
- Model OSDisk has a new parameter diff_disk_settings
12+
- Model BootDiagnosticsInstanceView has a new parameter status
13+
- Model VirtualMachineScaleSetOSDisk has a new parameter diff_disk_settings
14+
- Added operation VirtualMachinesOperations.list_by_location
15+
16+
**Note**
17+
18+
- azure-mgmt-nspkg is not installed anymore on Python 3 (PEP420-based namespace package)
19+
620
4.1.0 (2018-09-12)
721
++++++++++++++++++
822

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/boot_diagnostics.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414

1515
class BootDiagnostics(Model):
1616
"""Boot Diagnostics is a debugging feature which allows you to view Console
17-
Output and Screenshot to diagnose VM status. <br><br> For Linux Virtual
18-
Machines, you can easily view the output of your console log. <br><br> For
19-
both Windows and Linux virtual machines, Azure also enables you to see a
17+
Output and Screenshot to diagnose VM status. <br><br> You can easily view
18+
the output of your console log. <br><br> Azure also enables you to see a
2019
screenshot of the VM from the hypervisor.
2120
2221
:param enabled: Whether boot diagnostics should be enabled on the Virtual

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/boot_diagnostics_instance_view.py

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,26 @@
1515
class BootDiagnosticsInstanceView(Model):
1616
"""The instance view of a virtual machine boot diagnostics.
1717
18-
:param console_screenshot_blob_uri: The console screenshot blob URI.
19-
:type console_screenshot_blob_uri: str
20-
:param serial_console_log_blob_uri: The Linux serial console log blob Uri.
21-
:type serial_console_log_blob_uri: str
18+
Variables are only populated by the server, and will be ignored when
19+
sending a request.
20+
21+
:ivar console_screenshot_blob_uri: The console screenshot blob URI.
22+
:vartype console_screenshot_blob_uri: str
23+
:ivar serial_console_log_blob_uri: The Linux serial console log blob Uri.
24+
:vartype serial_console_log_blob_uri: str
2225
"""
2326

27+
_validation = {
28+
'console_screenshot_blob_uri': {'readonly': True},
29+
'serial_console_log_blob_uri': {'readonly': True},
30+
}
31+
2432
_attribute_map = {
2533
'console_screenshot_blob_uri': {'key': 'consoleScreenshotBlobUri', 'type': 'str'},
2634
'serial_console_log_blob_uri': {'key': 'serialConsoleLogBlobUri', 'type': 'str'},
2735
}
2836

2937
def __init__(self, **kwargs):
3038
super(BootDiagnosticsInstanceView, self).__init__(**kwargs)
31-
self.console_screenshot_blob_uri = kwargs.get('console_screenshot_blob_uri', None)
32-
self.serial_console_log_blob_uri = kwargs.get('serial_console_log_blob_uri', None)
39+
self.console_screenshot_blob_uri = None
40+
self.serial_console_log_blob_uri = None

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/boot_diagnostics_instance_view_py3.py

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,26 @@
1515
class BootDiagnosticsInstanceView(Model):
1616
"""The instance view of a virtual machine boot diagnostics.
1717
18-
:param console_screenshot_blob_uri: The console screenshot blob URI.
19-
:type console_screenshot_blob_uri: str
20-
:param serial_console_log_blob_uri: The Linux serial console log blob Uri.
21-
:type serial_console_log_blob_uri: str
18+
Variables are only populated by the server, and will be ignored when
19+
sending a request.
20+
21+
:ivar console_screenshot_blob_uri: The console screenshot blob URI.
22+
:vartype console_screenshot_blob_uri: str
23+
:ivar serial_console_log_blob_uri: The Linux serial console log blob Uri.
24+
:vartype serial_console_log_blob_uri: str
2225
"""
2326

27+
_validation = {
28+
'console_screenshot_blob_uri': {'readonly': True},
29+
'serial_console_log_blob_uri': {'readonly': True},
30+
}
31+
2432
_attribute_map = {
2533
'console_screenshot_blob_uri': {'key': 'consoleScreenshotBlobUri', 'type': 'str'},
2634
'serial_console_log_blob_uri': {'key': 'serialConsoleLogBlobUri', 'type': 'str'},
2735
}
2836

29-
def __init__(self, *, console_screenshot_blob_uri: str=None, serial_console_log_blob_uri: str=None, **kwargs) -> None:
37+
def __init__(self, **kwargs) -> None:
3038
super(BootDiagnosticsInstanceView, self).__init__(**kwargs)
31-
self.console_screenshot_blob_uri = console_screenshot_blob_uri
32-
self.serial_console_log_blob_uri = serial_console_log_blob_uri
39+
self.console_screenshot_blob_uri = None
40+
self.serial_console_log_blob_uri = None

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/boot_diagnostics_py3.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414

1515
class BootDiagnostics(Model):
1616
"""Boot Diagnostics is a debugging feature which allows you to view Console
17-
Output and Screenshot to diagnose VM status. <br><br> For Linux Virtual
18-
Machines, you can easily view the output of your console log. <br><br> For
19-
both Windows and Linux virtual machines, Azure also enables you to see a
17+
Output and Screenshot to diagnose VM status. <br><br> You can easily view
18+
the output of your console log. <br><br> Azure also enables you to see a
2019
screenshot of the VM from the hypervisor.
2120
2221
:param enabled: Whether boot diagnostics should be enabled on the Virtual

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/diagnostics_profile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ class DiagnosticsProfile(Model):
1818
1919
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
2020
allows you to view Console Output and Screenshot to diagnose VM status.
21-
<br><br> For Linux Virtual Machines, you can easily view the output of
22-
your console log. <br><br> For both Windows and Linux virtual machines,
21+
<br><br> You can easily view the output of your console log. <br><br>
2322
Azure also enables you to see a screenshot of the VM from the hypervisor.
2423
:type boot_diagnostics:
2524
~azure.mgmt.compute.v2015_06_15.models.BootDiagnostics

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/diagnostics_profile_py3.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ class DiagnosticsProfile(Model):
1818
1919
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
2020
allows you to view Console Output and Screenshot to diagnose VM status.
21-
<br><br> For Linux Virtual Machines, you can easily view the output of
22-
your console log. <br><br> For both Windows and Linux virtual machines,
21+
<br><br> You can easily view the output of your console log. <br><br>
2322
Azure also enables you to see a screenshot of the VM from the hypervisor.
2423
:type boot_diagnostics:
2524
~azure.mgmt.compute.v2015_06_15.models.BootDiagnostics

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/virtual_machine_instance_view.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ class VirtualMachineInstanceView(Model):
3333
list[~azure.mgmt.compute.v2015_06_15.models.VirtualMachineExtensionInstanceView]
3434
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
3535
allows you to view Console Output and Screenshot to diagnose VM status.
36-
<br><br> For Linux Virtual Machines, you can easily view the output of
37-
your console log. <br><br> For both Windows and Linux virtual machines,
36+
<br><br> You can easily view the output of your console log. <br><br>
3837
Azure also enables you to see a screenshot of the VM from the hypervisor.
3938
:type boot_diagnostics:
4039
~azure.mgmt.compute.v2015_06_15.models.BootDiagnosticsInstanceView

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/virtual_machine_instance_view_py3.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ class VirtualMachineInstanceView(Model):
3333
list[~azure.mgmt.compute.v2015_06_15.models.VirtualMachineExtensionInstanceView]
3434
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
3535
allows you to view Console Output and Screenshot to diagnose VM status.
36-
<br><br> For Linux Virtual Machines, you can easily view the output of
37-
your console log. <br><br> For both Windows and Linux virtual machines,
36+
<br><br> You can easily view the output of your console log. <br><br>
3837
Azure also enables you to see a screenshot of the VM from the hypervisor.
3938
:type boot_diagnostics:
4039
~azure.mgmt.compute.v2015_06_15.models.BootDiagnosticsInstanceView

azure-mgmt-compute/azure/mgmt/compute/v2015_06_15/models/virtual_machine_scale_set_vm_instance_view.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ class VirtualMachineScaleSetVMInstanceView(Model):
3131
list[~azure.mgmt.compute.v2015_06_15.models.VirtualMachineExtensionInstanceView]
3232
:param boot_diagnostics: Boot Diagnostics is a debugging feature which
3333
allows you to view Console Output and Screenshot to diagnose VM status.
34-
<br><br> For Linux Virtual Machines, you can easily view the output of
35-
your console log. <br><br> For both Windows and Linux virtual machines,
34+
<br><br> You can easily view the output of your console log. <br><br>
3635
Azure also enables you to see a screenshot of the VM from the hypervisor.
3736
:type boot_diagnostics:
3837
~azure.mgmt.compute.v2015_06_15.models.BootDiagnosticsInstanceView

0 commit comments

Comments
 (0)