com.microsoft.graph.beta.generated.models.security.DataSourceContainer Maven / Gradle / Ivy
package com.microsoft.graph.beta.models.security;
import com.microsoft.graph.beta.models.Entity;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.time.OffsetDateTime;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class DataSourceContainer extends Entity implements Parsable {
/**
* Instantiates a new {@link DataSourceContainer} and sets the default values.
*/
public DataSourceContainer() {
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 DataSourceContainer}
*/
@jakarta.annotation.Nonnull
public static DataSourceContainer 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.security.ediscoveryCustodian": return new EdiscoveryCustodian();
case "#microsoft.graph.security.ediscoveryNoncustodialDataSource": return new EdiscoveryNoncustodialDataSource();
}
}
return new DataSourceContainer();
}
/**
* Gets the createdDateTime property value. Created date and time of the dataSourceContainer entity.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getCreatedDateTime() {
return this.backingStore.get("createdDateTime");
}
/**
* Gets the displayName property value. Display name of the dataSourceContainer entity.
* @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("createdDateTime", (n) -> { this.setCreatedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("holdStatus", (n) -> { this.setHoldStatus(n.getEnumValue(DataSourceHoldStatus::forValue)); });
deserializerMap.put("lastModifiedDateTime", (n) -> { this.setLastModifiedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("releasedDateTime", (n) -> { this.setReleasedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("status", (n) -> { this.setStatus(n.getEnumValue(DataSourceContainerStatus::forValue)); });
return deserializerMap;
}
/**
* Gets the holdStatus property value. The hold status of the dataSourceContainer. The possible values are: notApplied, applied, applying, removing, partial
* @return a {@link DataSourceHoldStatus}
*/
@jakarta.annotation.Nullable
public DataSourceHoldStatus getHoldStatus() {
return this.backingStore.get("holdStatus");
}
/**
* Gets the lastModifiedDateTime property value. Last modified date and time of the dataSourceContainer.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getLastModifiedDateTime() {
return this.backingStore.get("lastModifiedDateTime");
}
/**
* Gets the releasedDateTime property value. Date and time that the dataSourceContainer was released from the case.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getReleasedDateTime() {
return this.backingStore.get("releasedDateTime");
}
/**
* Gets the status property value. Latest status of the dataSourceContainer. Possible values are: Active, Released.
* @return a {@link DataSourceContainerStatus}
*/
@jakarta.annotation.Nullable
public DataSourceContainerStatus getStatus() {
return this.backingStore.get("status");
}
/**
* 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.writeOffsetDateTimeValue("createdDateTime", this.getCreatedDateTime());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeEnumValue("holdStatus", this.getHoldStatus());
writer.writeOffsetDateTimeValue("lastModifiedDateTime", this.getLastModifiedDateTime());
writer.writeOffsetDateTimeValue("releasedDateTime", this.getReleasedDateTime());
writer.writeEnumValue("status", this.getStatus());
}
/**
* Sets the createdDateTime property value. Created date and time of the dataSourceContainer entity.
* @param value Value to set for the createdDateTime property.
*/
public void setCreatedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("createdDateTime", value);
}
/**
* Sets the displayName property value. Display name of the dataSourceContainer entity.
* @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 holdStatus property value. The hold status of the dataSourceContainer. The possible values are: notApplied, applied, applying, removing, partial
* @param value Value to set for the holdStatus property.
*/
public void setHoldStatus(@jakarta.annotation.Nullable final DataSourceHoldStatus value) {
this.backingStore.set("holdStatus", value);
}
/**
* Sets the lastModifiedDateTime property value. Last modified date and time of the dataSourceContainer.
* @param value Value to set for the lastModifiedDateTime property.
*/
public void setLastModifiedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("lastModifiedDateTime", value);
}
/**
* Sets the releasedDateTime property value. Date and time that the dataSourceContainer was released from the case.
* @param value Value to set for the releasedDateTime property.
*/
public void setReleasedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("releasedDateTime", value);
}
/**
* Sets the status property value. Latest status of the dataSourceContainer. Possible values are: Active, Released.
* @param value Value to set for the status property.
*/
public void setStatus(@jakarta.annotation.Nullable final DataSourceContainerStatus value) {
this.backingStore.set("status", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy