com.microsoft.graph.beta.generated.models.DeviceCompliancePolicySettingStateSummary Maven / Gradle / Ivy
package com.microsoft.graph.beta.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;
/**
* Device Compilance Policy Setting State summary across the account.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class DeviceCompliancePolicySettingStateSummary extends Entity implements Parsable {
/**
* Instantiates a new {@link DeviceCompliancePolicySettingStateSummary} and sets the default values.
*/
public DeviceCompliancePolicySettingStateSummary() {
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 DeviceCompliancePolicySettingStateSummary}
*/
@jakarta.annotation.Nonnull
public static DeviceCompliancePolicySettingStateSummary createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new DeviceCompliancePolicySettingStateSummary();
}
/**
* Gets the compliantDeviceCount property value. Number of compliant devices
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getCompliantDeviceCount() {
return this.backingStore.get("compliantDeviceCount");
}
/**
* Gets the conflictDeviceCount property value. Number of conflict devices
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getConflictDeviceCount() {
return this.backingStore.get("conflictDeviceCount");
}
/**
* Gets the deviceComplianceSettingStates property value. The deviceComplianceSettingStates property
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getDeviceComplianceSettingStates() {
return this.backingStore.get("deviceComplianceSettingStates");
}
/**
* Gets the errorDeviceCount property value. Number of error devices
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getErrorDeviceCount() {
return this.backingStore.get("errorDeviceCount");
}
/**
* 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("compliantDeviceCount", (n) -> { this.setCompliantDeviceCount(n.getIntegerValue()); });
deserializerMap.put("conflictDeviceCount", (n) -> { this.setConflictDeviceCount(n.getIntegerValue()); });
deserializerMap.put("deviceComplianceSettingStates", (n) -> { this.setDeviceComplianceSettingStates(n.getCollectionOfObjectValues(DeviceComplianceSettingState::createFromDiscriminatorValue)); });
deserializerMap.put("errorDeviceCount", (n) -> { this.setErrorDeviceCount(n.getIntegerValue()); });
deserializerMap.put("nonCompliantDeviceCount", (n) -> { this.setNonCompliantDeviceCount(n.getIntegerValue()); });
deserializerMap.put("notApplicableDeviceCount", (n) -> { this.setNotApplicableDeviceCount(n.getIntegerValue()); });
deserializerMap.put("platformType", (n) -> { this.setPlatformType(n.getEnumValue(PolicyPlatformType::forValue)); });
deserializerMap.put("remediatedDeviceCount", (n) -> { this.setRemediatedDeviceCount(n.getIntegerValue()); });
deserializerMap.put("setting", (n) -> { this.setSetting(n.getStringValue()); });
deserializerMap.put("settingName", (n) -> { this.setSettingName(n.getStringValue()); });
deserializerMap.put("unknownDeviceCount", (n) -> { this.setUnknownDeviceCount(n.getIntegerValue()); });
return deserializerMap;
}
/**
* Gets the nonCompliantDeviceCount property value. Number of NonCompliant devices
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getNonCompliantDeviceCount() {
return this.backingStore.get("nonCompliantDeviceCount");
}
/**
* Gets the notApplicableDeviceCount property value. Number of not applicable devices
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getNotApplicableDeviceCount() {
return this.backingStore.get("notApplicableDeviceCount");
}
/**
* Gets the platformType property value. Supported platform types for policies.
* @return a {@link PolicyPlatformType}
*/
@jakarta.annotation.Nullable
public PolicyPlatformType getPlatformType() {
return this.backingStore.get("platformType");
}
/**
* Gets the remediatedDeviceCount property value. Number of remediated devices
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getRemediatedDeviceCount() {
return this.backingStore.get("remediatedDeviceCount");
}
/**
* Gets the setting property value. The setting class name and property name.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getSetting() {
return this.backingStore.get("setting");
}
/**
* Gets the settingName property value. Name of the setting.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getSettingName() {
return this.backingStore.get("settingName");
}
/**
* Gets the unknownDeviceCount property value. Number of unknown devices
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getUnknownDeviceCount() {
return this.backingStore.get("unknownDeviceCount");
}
/**
* 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("compliantDeviceCount", this.getCompliantDeviceCount());
writer.writeIntegerValue("conflictDeviceCount", this.getConflictDeviceCount());
writer.writeCollectionOfObjectValues("deviceComplianceSettingStates", this.getDeviceComplianceSettingStates());
writer.writeIntegerValue("errorDeviceCount", this.getErrorDeviceCount());
writer.writeIntegerValue("nonCompliantDeviceCount", this.getNonCompliantDeviceCount());
writer.writeIntegerValue("notApplicableDeviceCount", this.getNotApplicableDeviceCount());
writer.writeEnumValue("platformType", this.getPlatformType());
writer.writeIntegerValue("remediatedDeviceCount", this.getRemediatedDeviceCount());
writer.writeStringValue("setting", this.getSetting());
writer.writeStringValue("settingName", this.getSettingName());
writer.writeIntegerValue("unknownDeviceCount", this.getUnknownDeviceCount());
}
/**
* Sets the compliantDeviceCount property value. Number of compliant devices
* @param value Value to set for the compliantDeviceCount property.
*/
public void setCompliantDeviceCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("compliantDeviceCount", value);
}
/**
* Sets the conflictDeviceCount property value. Number of conflict devices
* @param value Value to set for the conflictDeviceCount property.
*/
public void setConflictDeviceCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("conflictDeviceCount", value);
}
/**
* Sets the deviceComplianceSettingStates property value. The deviceComplianceSettingStates property
* @param value Value to set for the deviceComplianceSettingStates property.
*/
public void setDeviceComplianceSettingStates(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("deviceComplianceSettingStates", value);
}
/**
* Sets the errorDeviceCount property value. Number of error devices
* @param value Value to set for the errorDeviceCount property.
*/
public void setErrorDeviceCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("errorDeviceCount", value);
}
/**
* Sets the nonCompliantDeviceCount property value. Number of NonCompliant devices
* @param value Value to set for the nonCompliantDeviceCount property.
*/
public void setNonCompliantDeviceCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("nonCompliantDeviceCount", value);
}
/**
* Sets the notApplicableDeviceCount property value. Number of not applicable devices
* @param value Value to set for the notApplicableDeviceCount property.
*/
public void setNotApplicableDeviceCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("notApplicableDeviceCount", value);
}
/**
* Sets the platformType property value. Supported platform types for policies.
* @param value Value to set for the platformType property.
*/
public void setPlatformType(@jakarta.annotation.Nullable final PolicyPlatformType value) {
this.backingStore.set("platformType", value);
}
/**
* Sets the remediatedDeviceCount property value. Number of remediated devices
* @param value Value to set for the remediatedDeviceCount property.
*/
public void setRemediatedDeviceCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("remediatedDeviceCount", value);
}
/**
* Sets the setting property value. The setting class name and property name.
* @param value Value to set for the setting property.
*/
public void setSetting(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("setting", value);
}
/**
* Sets the settingName property value. Name of the setting.
* @param value Value to set for the settingName property.
*/
public void setSettingName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("settingName", value);
}
/**
* Sets the unknownDeviceCount property value. Number of unknown devices
* @param value Value to set for the unknownDeviceCount property.
*/
public void setUnknownDeviceCount(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("unknownDeviceCount", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy