Skip to content
Merged
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 @@ -13,7 +13,7 @@ import * as msRest from "ms-rest-js";
import * as msRestAzure from "ms-rest-azure-js";

const packageName = "@azure/arm-authorization";
const packageVersion = "0.1.0";
const packageVersion = "0.2.0";

export class AuthorizationManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
Expand Down
8 changes: 5 additions & 3 deletions packages/@azure/arm-authorization/lib/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ export interface RoleAssignmentFilter {
*/
principalId?: string;
/**
* @member {boolean} [canDelegate] The Delegation flag for the roleassignment
* @member {boolean} [canDelegate] The Delegation flag for the role
* assignment
*/
canDelegate?: boolean;
}
Expand Down Expand Up @@ -194,7 +195,8 @@ export interface RoleAssignment {
*/
principalType?: PrincipalType;
/**
* @member {boolean} [canDelegate] The Delegation flag for the roleassignment
* @member {boolean} [canDelegate] The Delegation flag for the role
* assignment
*/
canDelegate?: boolean;
}
Expand Down Expand Up @@ -225,7 +227,7 @@ export interface RoleAssignmentCreateParameters {
*/
principalType?: PrincipalType;
/**
* @member {boolean} [canDelegate] The delgation flag used for creating a
* @member {boolean} [canDelegate] The delegation flag used for creating a
* role assignment
*/
canDelegate?: boolean;
Expand Down