com.microsoft.graph.generated.models.ResourceOperation 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;
/**
* Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC).
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class ResourceOperation extends Entity implements Parsable {
/**
* Instantiates a new {@link ResourceOperation} and sets the default values.
*/
public ResourceOperation() {
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 ResourceOperation}
*/
@jakarta.annotation.Nonnull
public static ResourceOperation createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new ResourceOperation();
}
/**
* Gets the actionName property value. Type of action this operation is going to perform. The actionName should be concise and limited to as few words as possible.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getActionName() {
return this.backingStore.get("actionName");
}
/**
* Gets the description property value. Description of the resource operation. The description is used in mouse-over text for the operation when shown in the Azure Portal.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDescription() {
return this.backingStore.get("description");
}
/**
* 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("actionName", (n) -> { this.setActionName(n.getStringValue()); });
deserializerMap.put("description", (n) -> { this.setDescription(n.getStringValue()); });
deserializerMap.put("resourceName", (n) -> { this.setResourceName(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the resourceName property value. Name of the Resource this operation is performed on.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getResourceName() {
return this.backingStore.get("resourceName");
}
/**
* 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("actionName", this.getActionName());
writer.writeStringValue("description", this.getDescription());
writer.writeStringValue("resourceName", this.getResourceName());
}
/**
* Sets the actionName property value. Type of action this operation is going to perform. The actionName should be concise and limited to as few words as possible.
* @param value Value to set for the actionName property.
*/
public void setActionName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("actionName", value);
}
/**
* Sets the description property value. Description of the resource operation. The description is used in mouse-over text for the operation when shown in the Azure Portal.
* @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 resourceName property value. Name of the Resource this operation is performed on.
* @param value Value to set for the resourceName property.
*/
public void setResourceName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("resourceName", value);
}
}