Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4062 from Azure/restapi_auto_authorization/resour…
Browse files Browse the repository at this point in the history
…ce-manager

[AutoPR] authorization/resource-manager
  • Loading branch information
Dan Schulte authored Nov 8, 2018
2 parents 1d82f48 + 3be7723 commit 7eb42bd
Show file tree
Hide file tree
Showing 23 changed files with 170 additions and 166 deletions.
13 changes: 7 additions & 6 deletions lib/services/authorizationManagement/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,23 @@ uid: azure-arm-authorization
summary: *content

---
# Microsoft Azure SDK for Node.js - AuthorizationManagementClient
**This SDK will be deprecated next year and will be replaced by a new TypeScript-based isomorphic SDK (found at https://github.com/Azure/azure-sdk-for-js) which works on Node.js and browsers.**
## Microsoft Azure SDK for Node.js - AuthorizationManagementClient
This project provides a Node.js package for accessing Azure. Right now it supports:
- **Node.js version 6.x.x or higher**

## Features
### Features


## How to Install
### How to Install

```bash
npm install azure-arm-authorization
```

## How to use
### How to use

### Authentication, client creation and list classicAdministrators as an example.
#### Authentication, client creation and list classicAdministrators as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
Expand All @@ -35,6 +36,6 @@ msRestAzure.interactiveLogin().then((creds) => {
console.dir(err, {depth: null, colors: true});
});

## Related projects
### Related projects

- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node)
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
class ClassicAdministrator {
/**
* Create a ClassicAdministrator.
* @member {string} [id] The ID of the administrator.
* @member {string} [name] The name of the administrator.
* @member {string} [type] The type of the administrator.
* @member {string} [emailAddress] The email address of the administrator.
* @member {string} [role] The role of the administrator.
* @property {string} [id] The ID of the administrator.
* @property {string} [name] The name of the administrator.
* @property {string} [type] The type of the administrator.
* @property {string} [emailAddress] The email address of the administrator.
* @property {string} [role] The role of the administrator.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class ClassicAdministratorListResult extends Array {
/**
* Create a ClassicAdministratorListResult.
* @member {string} [nextLink] The URL to use for getting the next set of
* @property {string} [nextLink] The URL to use for getting the next set of
* results.
*/
constructor() {
Expand Down
24 changes: 12 additions & 12 deletions lib/services/authorizationManagement/lib/models/denyAssignment.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@
class DenyAssignment {
/**
* Create a DenyAssignment.
* @member {string} [id] The deny assignment ID.
* @member {string} [name] The deny assignment name.
* @member {string} [type] The deny assignment type.
* @member {string} [denyAssignmentName] The display name of the deny
* @property {string} [id] The deny assignment ID.
* @property {string} [name] The deny assignment name.
* @property {string} [type] The deny assignment type.
* @property {string} [denyAssignmentName] The display name of the deny
* assignment.
* @member {string} [description] The description of the deny assignment.
* @member {array} [permissions] An array of permissions that are denied by
* @property {string} [description] The description of the deny assignment.
* @property {array} [permissions] An array of permissions that are denied by
* the deny assignment.
* @member {string} [scope] The deny assignment scope.
* @member {boolean} [doNotApplyToChildScopes] Determines if the deny
* @property {string} [scope] The deny assignment scope.
* @property {boolean} [doNotApplyToChildScopes] Determines if the deny
* assignment applies to child scopes. Default value is false.
* @member {array} [principals] Array of principals to which the deny
* @property {array} [principals] Array of principals to which the deny
* assignment applies.
* @member {array} [excludePrincipals] Array of principals to which the deny
* assignment does not apply.
* @member {boolean} [isSystemProtected] Specifies whether this deny
* @property {array} [excludePrincipals] Array of principals to which the
* deny assignment does not apply.
* @property {boolean} [isSystemProtected] Specifies whether this deny
* assignment was created by Azure and cannot be edited or deleted.
*/
constructor() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
class DenyAssignmentFilter {
/**
* Create a DenyAssignmentFilter.
* @member {string} [denyAssignmentName] Return deny assignment with
* @property {string} [denyAssignmentName] Return deny assignment with
* specified name.
* @member {string} [principalId] Return all deny assignments where the
* @property {string} [principalId] Return all deny assignments where the
* specified principal is listed in the principals list of deny assignments.
* @member {string} [gdprExportPrincipalId] Return all deny assignments where
* the specified principal is listed either in the principals list or exclude
* principals list of deny assignments.
* @property {string} [gdprExportPrincipalId] Return all deny assignments
* where the specified principal is listed either in the principals list or
* exclude principals list of deny assignments.
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class DenyAssignmentListResult extends Array {
/**
* Create a DenyAssignmentListResult.
* @member {string} [nextLink] The URL to use for getting the next set of
* @property {string} [nextLink] The URL to use for getting the next set of
* results.
*/
constructor() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
class DenyAssignmentPermission {
/**
* Create a DenyAssignmentPermission.
* @member {array} [actions] Actions to which the deny assignment does not
* @property {array} [actions] Actions to which the deny assignment does not
* grant access.
* @member {array} [notActions] Actions to exclude from that the deny
* @property {array} [notActions] Actions to exclude from that the deny
* assignment does not grant access.
* @member {array} [dataActions] Data actions to which the deny assignment
* @property {array} [dataActions] Data actions to which the deny assignment
* does not grant access.
* @member {array} [notDataActions] Data actions to exclude from that the
* @property {array} [notDataActions] Data actions to exclude from that the
* deny assignment does not grant access.
*/
constructor() {
Expand Down
Loading

0 comments on commit 7eb42bd

Please sign in to comment.