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 @@ -130,7 +130,7 @@ interface WithRoleDefinitionId {
interface WithCanDelegate {
/**
* Specifies canDelegate.
* @param canDelegate The delgation flag used for creating a role assignment
* @param canDelegate The delegation flag used for creating a role assignment
* @return the next definition stage
*/
WithCreate withCanDelegate(Boolean canDelegate);
Expand Down Expand Up @@ -172,7 +172,7 @@ interface UpdateStages {
interface WithCanDelegate {
/**
* Specifies canDelegate.
* @param canDelegate The delgation flag used for creating a role assignment
* @param canDelegate The delegation flag used for creating a role assignment
* @return the next update stage
*/
Update withCanDelegate(Boolean canDelegate);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class RoleAssignmentCreateParameters {
private PrincipalType principalType;

/**
* The delgation flag used for creating a role assignment.
* The delegation flag used for creating a role assignment.
*/
@JsonProperty(value = "properties.canDelegate")
private Boolean canDelegate;
Expand Down Expand Up @@ -106,7 +106,7 @@ public RoleAssignmentCreateParameters withPrincipalType(PrincipalType principalT
}

/**
* Get the delgation flag used for creating a role assignment.
* Get the delegation flag used for creating a role assignment.
*
* @return the canDelegate value
*/
Expand All @@ -115,7 +115,7 @@ public Boolean canDelegate() {
}

/**
* Set the delgation flag used for creating a role assignment.
* Set the delegation flag used for creating a role assignment.
*
* @param canDelegate the canDelegate value to set
* @return the RoleAssignmentCreateParameters object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class RoleAssignmentFilter {
private String principalId;

/**
* The Delegation flag for the roleassignment.
* The Delegation flag for the role assignment.
*/
@JsonProperty(value = "canDelegate")
private Boolean canDelegate;
Expand All @@ -47,7 +47,7 @@ public RoleAssignmentFilter withPrincipalId(String principalId) {
}

/**
* Get the Delegation flag for the roleassignment.
* Get the Delegation flag for the role assignment.
*
* @return the canDelegate value
*/
Expand All @@ -56,7 +56,7 @@ public Boolean canDelegate() {
}

/**
* Set the Delegation flag for the roleassignment.
* Set the Delegation flag for the role assignment.
*
* @param canDelegate the canDelegate value to set
* @return the RoleAssignmentFilter object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class RoleAssignmentInner {
private PrincipalType principalType;

/**
* The Delegation flag for the roleassignment.
* The Delegation flag for the role assignment.
*/
@JsonProperty(value = "properties.canDelegate")
private Boolean canDelegate;
Expand Down Expand Up @@ -176,7 +176,7 @@ public RoleAssignmentInner withPrincipalType(PrincipalType principalType) {
}

/**
* Get the Delegation flag for the roleassignment.
* Get the Delegation flag for the role assignment.
*
* @return the canDelegate value
*/
Expand All @@ -185,7 +185,7 @@ public Boolean canDelegate() {
}

/**
* Set the Delegation flag for the roleassignment.
* Set the Delegation flag for the role assignment.
*
* @param canDelegate the canDelegate value to set
* @return the RoleAssignmentInner object itself.
Expand Down