com.microsoft.graph.generated.models.RoleDefinition Maven / Gradle / Ivy
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* The Role Definition resource. The role definition is the foundation of role based access in Intune. The role combines an Intune resource such as a Mobile App and associated role permissions such as Create or Read for the resource. There are two types of roles, built-in and custom. Built-in roles cannot be modified. Both built-in roles and custom roles must have assignments to be enforced. Create custom roles if you want to define a role that allows any of the available resources and role permissions to be combined into a single role.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class RoleDefinition extends Entity implements Parsable {
/**
* Instantiates a new {@link RoleDefinition} and sets the default values.
*/
public RoleDefinition() {
super();
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link RoleDefinition}
*/
@jakarta.annotation.Nonnull
public static RoleDefinition createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
final ParseNode mappingValueNode = parseNode.getChildNode("@odata.type");
if (mappingValueNode != null) {
final String mappingValue = mappingValueNode.getStringValue();
switch (mappingValue) {
case "#microsoft.graph.deviceAndAppManagementRoleDefinition": return new DeviceAndAppManagementRoleDefinition();
}
}
return new RoleDefinition();
}
/**
* Gets the description property value. Description of the Role definition.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDescription() {
return this.backingStore.get("description");
}
/**
* Gets the displayName property value. Display Name of the Role definition.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisplayName() {
return this.backingStore.get("displayName");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("description", (n) -> { this.setDescription(n.getStringValue()); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("isBuiltIn", (n) -> { this.setIsBuiltIn(n.getBooleanValue()); });
deserializerMap.put("roleAssignments", (n) -> { this.setRoleAssignments(n.getCollectionOfObjectValues(RoleAssignment::createFromDiscriminatorValue)); });
deserializerMap.put("rolePermissions", (n) -> { this.setRolePermissions(n.getCollectionOfObjectValues(RolePermission::createFromDiscriminatorValue)); });
return deserializerMap;
}
/**
* Gets the isBuiltIn property value. Type of Role. Set to True if it is built-in, or set to False if it is a custom role definition.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getIsBuiltIn() {
return this.backingStore.get("isBuiltIn");
}
/**
* Gets the roleAssignments property value. List of Role assignments for this role definition.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getRoleAssignments() {
return this.backingStore.get("roleAssignments");
}
/**
* Gets the rolePermissions property value. List of Role Permissions this role is allowed to perform. These must match the actionName that is defined as part of the rolePermission.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getRolePermissions() {
return this.backingStore.get("rolePermissions");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeStringValue("description", this.getDescription());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeBooleanValue("isBuiltIn", this.getIsBuiltIn());
writer.writeCollectionOfObjectValues("roleAssignments", this.getRoleAssignments());
writer.writeCollectionOfObjectValues("rolePermissions", this.getRolePermissions());
}
/**
* Sets the description property value. Description of the Role definition.
* @param value Value to set for the description property.
*/
public void setDescription(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("description", value);
}
/**
* Sets the displayName property value. Display Name of the Role definition.
* @param value Value to set for the displayName property.
*/
public void setDisplayName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("displayName", value);
}
/**
* Sets the isBuiltIn property value. Type of Role. Set to True if it is built-in, or set to False if it is a custom role definition.
* @param value Value to set for the isBuiltIn property.
*/
public void setIsBuiltIn(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isBuiltIn", value);
}
/**
* Sets the roleAssignments property value. List of Role assignments for this role definition.
* @param value Value to set for the roleAssignments property.
*/
public void setRoleAssignments(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("roleAssignments", value);
}
/**
* Sets the rolePermissions property value. List of Role Permissions this role is allowed to perform. These must match the actionName that is defined as part of the rolePermission.
* @param value Value to set for the rolePermissions property.
*/
public void setRolePermissions(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("rolePermissions", value);
}
}