com.microsoft.azure.management.graphrbac.implementation.RoleAssignmentInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-graph-rbac Show documentation
Show all versions of azure-mgmt-graph-rbac Show documentation
This package contains Microsoft Azure Graph RBAC Management SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-authorization is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.graphrbac.implementation;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
/**
* Role Assignments.
*/
@JsonFlatten
public class RoleAssignmentInner {
/**
* The role assignment ID.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/**
* The role assignment name.
*/
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private String name;
/**
* The role assignment type.
*/
@JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY)
private String type;
/**
* The role assignment scope.
*/
@JsonProperty(value = "properties.scope")
private String scope;
/**
* The role definition ID.
*/
@JsonProperty(value = "properties.roleDefinitionId")
private String roleDefinitionId;
/**
* The principal ID.
*/
@JsonProperty(value = "properties.principalId")
private String principalId;
/**
* The Delegation flag for the roleassignment.
*/
@JsonProperty(value = "properties.canDelegate")
private Boolean canDelegate;
/**
* Get the id value.
*
* @return the id value
*/
public String id() {
return this.id;
}
/**
* Get the name value.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Get the type value.
*
* @return the type value
*/
public String type() {
return this.type;
}
/**
* Get the scope value.
*
* @return the scope value
*/
public String scope() {
return this.scope;
}
/**
* Set the scope value.
*
* @param scope the scope value to set
* @return the RoleAssignmentInner object itself.
*/
public RoleAssignmentInner withScope(String scope) {
this.scope = scope;
return this;
}
/**
* Get the roleDefinitionId value.
*
* @return the roleDefinitionId value
*/
public String roleDefinitionId() {
return this.roleDefinitionId;
}
/**
* Set the roleDefinitionId value.
*
* @param roleDefinitionId the roleDefinitionId value to set
* @return the RoleAssignmentInner object itself.
*/
public RoleAssignmentInner withRoleDefinitionId(String roleDefinitionId) {
this.roleDefinitionId = roleDefinitionId;
return this;
}
/**
* Get the principalId value.
*
* @return the principalId value
*/
public String principalId() {
return this.principalId;
}
/**
* Set the principalId value.
*
* @param principalId the principalId value to set
* @return the RoleAssignmentInner object itself.
*/
public RoleAssignmentInner withPrincipalId(String principalId) {
this.principalId = principalId;
return this;
}
/**
* Get the canDelegate value.
*
* @return the canDelegate value
*/
public Boolean canDelegate() {
return this.canDelegate;
}
/**
* Set the canDelegate value.
*
* @param canDelegate the canDelegate value to set
* @return the RoleAssignmentInner object itself.
*/
public RoleAssignmentInner withCanDelegate(Boolean canDelegate) {
this.canDelegate = canDelegate;
return this;
}
}