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 @@ -19,7 +19,7 @@ declare class AuthorizationManagementClient {
*
* @param {credentials} credentials - Credentials needed for the client to connect to Azure.
*
* @param {string} subscriptionId - Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
* @param {string} subscriptionId - The ID of the target subscription.
*
* @param {string} [baseUri] - The base URI of the service.
*
Expand All @@ -32,7 +32,7 @@ declare class AuthorizationManagementClient {
*
* @param {boolean} [options.noRetryPolicy] - If set to true, turn off default retry policy
*
* @param {string} [options.apiVersion] - Client Api Version.
* @param {string} [options.apiVersion] - The API version to use for this operation.
*
* @param {string} [options.acceptLanguage] - Gets or sets the preferred language for the response.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var operations = require('./operations');
*
* @param {credentials} credentials - Credentials needed for the client to connect to Azure.
*
* @param {string} subscriptionId - Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
* @param {string} subscriptionId - The ID of the target subscription.
*
* @param {string} [baseUri] - The base URI of the service.
*
Expand All @@ -42,7 +42,7 @@ var operations = require('./operations');
*
* @param {boolean} [options.noRetryPolicy] - If set to true, turn off default retry policy
*
* @param {string} [options.apiVersion] - Client Api Version.
* @param {string} [options.apiVersion] - The API version to use for this operation.
*
* @param {string} [options.acceptLanguage] - Gets or sets the preferred language for the response.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ var models = require('./index');
* @constructor
* Classic Administrators
*
* @member {string} [id] Gets or sets the classic administrator id.
* @member {string} [id] The ID of the administrator.
*
* @member {string} [name] Gets or sets the classic administrator name.
* @member {string} [name] The name of the administrator.
*
* @member {string} [type] Gets or sets the classic administrator type.
* @member {string} [type] The type of the administrator.
*
* @member {object} [properties] Gets or sets the classic administrator
* properties.
* @member {object} [properties] Properties for the classic administrator.
*
* @member {string} [properties.emailAddress] Gets or sets the email address
* @member {string} [properties.emailAddress] The email address of the
* administrator.
*
* @member {string} [properties.role] Gets or sets the role
* @member {string} [properties.role] The role of the administrator.
*
*/
function ClassicAdministrator() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ var util = require('util');
* @constructor
* ClassicAdministrator list result information.
*
* @member {string} [nextLink] Gets or sets the URL to get the next set of
* classic administrators results.
* @member {string} [nextLink] The URL to use for getting the next set of
* results.
*
*/
function ClassicAdministratorListResult() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
* @constructor
* Classic Administrator properties.
*
* @member {string} [emailAddress] Gets or sets the email address
* @member {string} [emailAddress] The email address of the administrator.
*
* @member {string} [role] Gets or sets the role
* @member {string} [role] The role of the administrator.
*
*/
function ClassicAdministratorProperties() {
Expand Down
Loading