![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.fluent.models.RoleDefinitionInner Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.authorization.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.List;
/**
* Role definition.
*/
@Fluent
public final class RoleDefinitionInner implements JsonSerializable {
/*
* The role definition ID.
*/
private String id;
/*
* The role definition name.
*/
private String name;
/*
* The role definition type.
*/
private String type;
/*
* Role definition properties.
*/
private RoleDefinitionProperties innerProperties;
/**
* Creates an instance of RoleDefinitionInner class.
*/
public RoleDefinitionInner() {
}
/**
* Get the id property: The role definition ID.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Get the name property: The role definition name.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Get the type property: The role definition type.
*
* @return the type value.
*/
public String type() {
return this.type;
}
/**
* Get the innerProperties property: Role definition properties.
*
* @return the innerProperties value.
*/
private RoleDefinitionProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the roleName property: The role name.
*
* @return the roleName value.
*/
public String roleName() {
return this.innerProperties() == null ? null : this.innerProperties().roleName();
}
/**
* Set the roleName property: The role name.
*
* @param roleName the roleName value to set.
* @return the RoleDefinitionInner object itself.
*/
public RoleDefinitionInner withRoleName(String roleName) {
if (this.innerProperties() == null) {
this.innerProperties = new RoleDefinitionProperties();
}
this.innerProperties().withRoleName(roleName);
return this;
}
/**
* Get the description property: The role definition description.
*
* @return the description value.
*/
public String description() {
return this.innerProperties() == null ? null : this.innerProperties().description();
}
/**
* Set the description property: The role definition description.
*
* @param description the description value to set.
* @return the RoleDefinitionInner object itself.
*/
public RoleDefinitionInner withDescription(String description) {
if (this.innerProperties() == null) {
this.innerProperties = new RoleDefinitionProperties();
}
this.innerProperties().withDescription(description);
return this;
}
/**
* Get the roleType property: The role type.
*
* @return the roleType value.
*/
public String roleType() {
return this.innerProperties() == null ? null : this.innerProperties().roleType();
}
/**
* Set the roleType property: The role type.
*
* @param roleType the roleType value to set.
* @return the RoleDefinitionInner object itself.
*/
public RoleDefinitionInner withRoleType(String roleType) {
if (this.innerProperties() == null) {
this.innerProperties = new RoleDefinitionProperties();
}
this.innerProperties().withRoleType(roleType);
return this;
}
/**
* Get the permissions property: Role definition permissions.
*
* @return the permissions value.
*/
public List permissions() {
return this.innerProperties() == null ? null : this.innerProperties().permissions();
}
/**
* Set the permissions property: Role definition permissions.
*
* @param permissions the permissions value to set.
* @return the RoleDefinitionInner object itself.
*/
public RoleDefinitionInner withPermissions(List permissions) {
if (this.innerProperties() == null) {
this.innerProperties = new RoleDefinitionProperties();
}
this.innerProperties().withPermissions(permissions);
return this;
}
/**
* Get the assignableScopes property: Role definition assignable scopes.
*
* @return the assignableScopes value.
*/
public List assignableScopes() {
return this.innerProperties() == null ? null : this.innerProperties().assignableScopes();
}
/**
* Set the assignableScopes property: Role definition assignable scopes.
*
* @param assignableScopes the assignableScopes value to set.
* @return the RoleDefinitionInner object itself.
*/
public RoleDefinitionInner withAssignableScopes(List assignableScopes) {
if (this.innerProperties() == null) {
this.innerProperties = new RoleDefinitionProperties();
}
this.innerProperties().withAssignableScopes(assignableScopes);
return this;
}
/**
* Get the createdOn property: Time it was created.
*
* @return the createdOn value.
*/
public OffsetDateTime createdOn() {
return this.innerProperties() == null ? null : this.innerProperties().createdOn();
}
/**
* Get the updatedOn property: Time it was updated.
*
* @return the updatedOn value.
*/
public OffsetDateTime updatedOn() {
return this.innerProperties() == null ? null : this.innerProperties().updatedOn();
}
/**
* Get the createdBy property: Id of the user who created the assignment.
*
* @return the createdBy value.
*/
public String createdBy() {
return this.innerProperties() == null ? null : this.innerProperties().createdBy();
}
/**
* Get the updatedBy property: Id of the user who updated the assignment.
*
* @return the updatedBy value.
*/
public String updatedBy() {
return this.innerProperties() == null ? null : this.innerProperties().updatedBy();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of RoleDefinitionInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of RoleDefinitionInner if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IOException If an error occurs while reading the RoleDefinitionInner.
*/
public static RoleDefinitionInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
RoleDefinitionInner deserializedRoleDefinitionInner = new RoleDefinitionInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedRoleDefinitionInner.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedRoleDefinitionInner.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedRoleDefinitionInner.type = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedRoleDefinitionInner.innerProperties = RoleDefinitionProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedRoleDefinitionInner;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy