Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
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
Expand Up @@ -60,9 +60,9 @@ export default class ComputeManagementClient extends AzureServiceClient {
virtualMachineExtensions: operations.VirtualMachineExtensions;
virtualMachineImages: operations.VirtualMachineImages;
usageOperations: operations.UsageOperations;
virtualMachines: operations.VirtualMachines;
virtualMachineSizes: operations.VirtualMachineSizes;
images: operations.Images;
virtualMachines: operations.VirtualMachines;
virtualMachineScaleSets: operations.VirtualMachineScaleSets;
virtualMachineScaleSetExtensions: operations.VirtualMachineScaleSetExtensions;
virtualMachineScaleSetRollingUpgrades: operations.VirtualMachineScaleSetRollingUpgrades;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ class ComputeManagementClient extends ServiceClient {
this.virtualMachineExtensions = new operations.VirtualMachineExtensions(this);
this.virtualMachineImages = new operations.VirtualMachineImages(this);
this.usageOperations = new operations.UsageOperations(this);
this.virtualMachines = new operations.VirtualMachines(this);
this.virtualMachineSizes = new operations.VirtualMachineSizes(this);
this.images = new operations.Images(this);
this.virtualMachines = new operations.VirtualMachines(this);
this.virtualMachineScaleSets = new operations.VirtualMachineScaleSets(this);
this.virtualMachineScaleSetExtensions = new operations.VirtualMachineScaleSetExtensions(this);
this.virtualMachineScaleSetRollingUpgrades = new operations.VirtualMachineScaleSetRollingUpgrades(this);
Expand Down
5 changes: 2 additions & 3 deletions lib/services/computeManagement2/lib/models/bootDiagnostics.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@

/**
* 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.
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ class BootDiagnosticsInstanceView {
* URI.
* @member {string} [serialConsoleLogBlobUri] The Linux serial console log
* blob Uri.
* @member {object} [status] The boot diagnostics status information for the
* VM. <br><br> NOTE: It will be set only if there are errors encountered in
* enabling boot diagnostics.
* @member {string} [status.code] The status code.
* @member {string} [status.level] The level code. Possible values include:
* 'Info', 'Warning', 'Error'
* @member {string} [status.displayStatus] The short localizable label for
* the status.
* @member {string} [status.message] The detailed status message, including
* for alerts and error messages.
* @member {date} [status.time] The time of the status.
*/
constructor() {
}
Expand All @@ -41,17 +52,28 @@ class BootDiagnosticsInstanceView {
modelProperties: {
consoleScreenshotBlobUri: {
required: false,
readOnly: true,
serializedName: 'consoleScreenshotBlobUri',
type: {
name: 'String'
}
},
serialConsoleLogBlobUri: {
required: false,
readOnly: true,
serializedName: 'serialConsoleLogBlobUri',
type: {
name: 'String'
}
},
status: {
required: false,
readOnly: true,
serializedName: 'status',
type: {
name: 'Composite',
className: 'InstanceViewStatus'
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ class DiagnosticsProfile {
* Create a DiagnosticsProfile.
* @member {object} [bootDiagnostics] 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 screenshot of the VM from the
* 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.
* @member {boolean} [bootDiagnostics.enabled] Whether boot diagnostics
* should be enabled on the Virtual Machine.
Expand Down
55 changes: 55 additions & 0 deletions lib/services/computeManagement2/lib/models/diffDiskSettings.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/

'use strict';

/**
* Describes the parameters of differencing disk settings that can be be
* specified for operating system disk. <br><br> NOTE: The differencing disk
* settings can only be specified for managed disk.
*
*/
class DiffDiskSettings {
/**
* Create a DiffDiskSettings.
* @member {string} [option] Specifies the differencing disk settings for
* operating system disk. Possible values include: 'Local'
*/
constructor() {
}

/**
* Defines the metadata of DiffDiskSettings
*
* @returns {object} metadata of DiffDiskSettings
*
*/
mapper() {
return {
required: false,
serializedName: 'DiffDiskSettings',
type: {
name: 'Composite',
className: 'DiffDiskSettings',
modelProperties: {
option: {
required: false,
serializedName: 'option',
type: {
name: 'String'
}
}
}
}
};
}
}

module.exports = DiffDiskSettings;
Loading