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 @@ -17,9 +17,9 @@ declare class ComputeManagementClient {
* Initializes a new instance of the ComputeManagementClient class.
* @constructor
*
* @param {credentials} credentials - Gets Azure subscription credentials.
* @param {credentials} credentials - Credentials needed for the client to connect to Azure.
*
* @param {string} subscriptionId - subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
* @param {string} subscriptionId - Subscription credentials that uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
*
* @param {string} [baseUri] - The base URI of the service.
*
Expand Down Expand Up @@ -61,7 +61,7 @@ declare class ComputeManagementClient {
virtualMachines: operations.VirtualMachines;
virtualMachineScaleSets: operations.VirtualMachineScaleSets;
virtualMachineScaleSetVMs: operations.VirtualMachineScaleSetVMs;
containerServiceOperations: operations.ContainerServiceOperations;
containerServices: operations.ContainerServices;
}

export = ComputeManagementClient;
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ var operations = require('./operations');
* Initializes a new instance of the ComputeManagementClient class.
* @constructor
*
* @param {credentials} credentials - Gets Azure subscription credentials.
* @param {credentials} credentials - Credentials needed for the client to connect to Azure.
*
* @param {string} subscriptionId - subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
* @param {string} subscriptionId - Subscription credentials that uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
*
* @param {string} [baseUri] - The base URI of the service.
*
Expand Down Expand Up @@ -88,7 +88,7 @@ function ComputeManagementClient(credentials, subscriptionId, baseUri, options)
this.virtualMachines = new operations.VirtualMachines(this);
this.virtualMachineScaleSets = new operations.VirtualMachineScaleSets(this);
this.virtualMachineScaleSetVMs = new operations.VirtualMachineScaleSetVMs(this);
this.containerServiceOperations = new operations.ContainerServiceOperations(this);
this.containerServices = new operations.ContainerServices(this);
this.models = models;
msRest.addSerializationMixin(this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,25 @@
* @class
* Initializes a new instance of the AdditionalUnattendContent class.
* @constructor
* additional XML formatted information that can be included in the
* Additional XML formatted information that can be included in the
* Unattend.xml file, which is used by Windows Setup. Contents are defined by
* setting name, component name, and the pass in which the content is a
* applied.
* @member {string} [passName] the pass name. Currently, the only allowable
*
* @member {string} [passName] The pass name. Currently, the only allowable
* value is oobeSystem. Possible values include: 'oobeSystem'
*
* @member {string} [componentName] the component name. Currently, the only
* @member {string} [componentName] The component name. Currently, the only
* allowable value is Microsoft-Windows-Shell-Setup. Possible values include:
* 'Microsoft-Windows-Shell-Setup'
*
* @member {string} [settingName] setting name (e.g. FirstLogonCommands,
* AutoLogon ). Possible values include: 'AutoLogon', 'FirstLogonCommands'
*
* @member {string} [content] XML formatted content that is added to the
* unattend.xml file in the specified pass and component.The XML must be less
* than 4 KB and must include the root element for the setting or feature
* that is being inserted.
* unattend.xml file in the specified pass and component. The XML must be
* less than 4 KB and must include the root element for the setting or
* feature that is being inserted.
*
*/
function AdditionalUnattendContent() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* Initializes a new instance of the ApiEntityReference class.
* @constructor
* The API entity reference.
*
* @member {string} [id] the ARM resource id in the form of
* /subscriptions/{SubcriptionId}/resourceGroups/{ResourceGroupName}/...
*
Expand Down
1 change: 1 addition & 0 deletions lib/services/computeManagement2/lib/models/apiError.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ var util = require('util');
* Initializes a new instance of the ApiError class.
* @constructor
* Api error.
*
* @member {array} [details] the Api error details
*
* @member {object} [innererror] the Api inner error
Expand Down
1 change: 1 addition & 0 deletions lib/services/computeManagement2/lib/models/apiErrorBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* Initializes a new instance of the ApiErrorBase class.
* @constructor
* Api error base.
*
* @member {string} [code] the error code.
*
* @member {string} [target] the target of the particular error.
Expand Down
6 changes: 4 additions & 2 deletions lib/services/computeManagement2/lib/models/availabilitySet.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ var util = require('util');
* Initializes a new instance of the AvailabilitySet class.
* @constructor
* Create or update Availability Set parameters.
*
* @member {number} [platformUpdateDomainCount] Update Domain count.
*
* @member {number} [platformFaultDomainCount] Fault Domain count.
*
* @member {array} [virtualMachines] a list containing reference to all
* Virtual Machines created under this Availability Set.
* @member {array} [virtualMachines] A list of references to all virtual
* machines in the availability set.
*
* @member {array} [statuses] the resource status information.
*
Expand Down Expand Up @@ -125,6 +126,7 @@ AvailabilitySet.prototype.mapper = function () {
},
statuses: {
required: false,
readOnly: true,
serializedName: 'properties.statuses',
type: {
name: 'Sequence',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ var util = require('util');
* Initializes a new instance of the AvailabilitySetListResult class.
* @constructor
* The List Availability Set operation response.
* @member {array} [value] the list of availability sets
*
*
*/
function AvailabilitySetListResult() {
}
Expand Down
7 changes: 4 additions & 3 deletions lib/services/computeManagement2/lib/models/bootDiagnostics.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@
* Initializes a new instance of the BootDiagnostics class.
* @constructor
* Describes Boot Diagnostics.
* @member {boolean} [enabled] whether boot diagnostics should be enabled on
*
* @member {boolean} [enabled] Whether boot diagnostics should be enabled on
* the Virtual Machine.
*
* @member {string} [storageUri] the boot diagnostics storage Uri. It should
* be a valid Uri
* @member {string} [storageUri] URI of the storage account to use for placing
* the console output and screenshot.
*
*/
function BootDiagnostics() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
* Initializes a new instance of the BootDiagnosticsInstanceView class.
* @constructor
* The instance view of a virtual machine boot diagnostics.
* @member {string} [consoleScreenshotBlobUri] the console screenshot blob Uri.
*
* @member {string} [consoleScreenshotBlobUri] The console screenshot blob URI.
*
* @member {string} [serialConsoleLogBlobUri] the Linux serial console log
* @member {string} [serialConsoleLogBlobUri] The Linux serial console log
* blob Uri.
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* Initializes a new instance of the ComputeLongRunningOperationProperties class.
* @constructor
* Compute-specific operation properties, including output
*
* @member {object} [output] Operation output data (raw JSON)
*
*/
Expand Down

This file was deleted.

Loading