com.microsoft.graph.generated.models.AttackSimulationOperation 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;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class AttackSimulationOperation extends LongRunningOperation implements Parsable {
/**
* Instantiates a new {@link AttackSimulationOperation} and sets the default values.
*/
public AttackSimulationOperation() {
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 AttackSimulationOperation}
*/
@jakarta.annotation.Nonnull
public static AttackSimulationOperation createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new AttackSimulationOperation();
}
/**
* 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("percentageCompleted", (n) -> { this.setPercentageCompleted(n.getIntegerValue()); });
deserializerMap.put("tenantId", (n) -> { this.setTenantId(n.getStringValue()); });
deserializerMap.put("type", (n) -> { this.setType(n.getEnumValue(AttackSimulationOperationType::forValue)); });
return deserializerMap;
}
/**
* Gets the percentageCompleted property value. Percentage of completion of the respective operation.
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getPercentageCompleted() {
return this.backingStore.get("percentageCompleted");
}
/**
* Gets the tenantId property value. Tenant identifier.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getTenantId() {
return this.backingStore.get("tenantId");
}
/**
* Gets the type property value. The attack simulation operation type. Possible values are: createSimulation, updateSimulation, unknownFutureValue.
* @return a {@link AttackSimulationOperationType}
*/
@jakarta.annotation.Nullable
public AttackSimulationOperationType getType() {
return this.backingStore.get("type");
}
/**
* 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.writeIntegerValue("percentageCompleted", this.getPercentageCompleted());
writer.writeStringValue("tenantId", this.getTenantId());
writer.writeEnumValue("type", this.getType());
}
/**
* Sets the percentageCompleted property value. Percentage of completion of the respective operation.
* @param value Value to set for the percentageCompleted property.
*/
public void setPercentageCompleted(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("percentageCompleted", value);
}
/**
* Sets the tenantId property value. Tenant identifier.
* @param value Value to set for the tenantId property.
*/
public void setTenantId(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("tenantId", value);
}
/**
* Sets the type property value. The attack simulation operation type. Possible values are: createSimulation, updateSimulation, unknownFutureValue.
* @param value Value to set for the type property.
*/
public void setType(@jakarta.annotation.Nullable final AttackSimulationOperationType value) {
this.backingStore.set("type", value);
}
}