Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.http.BaseCollectionPage;
import com.microsoft.graph.models.ComplianceInformation;
import com.microsoft.graph.models.SecureScoreControlStateUpdate;
import com.microsoft.graph.models.SecurityVendorInformation;
import com.microsoft.graph.models.Entity;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Secure Score Control Profile.
*/
public class SecureScoreControlProfile extends Entity implements IJsonBackedObject {
/**
* The Action Type.
* Control action type (Config, Review, Behavior).
*/
@SerializedName(value = "actionType", alternate = {"ActionType"})
@Expose
@Nullable
public String actionType;
/**
* The Action Url.
* URL to where the control can be actioned.
*/
@SerializedName(value = "actionUrl", alternate = {"ActionUrl"})
@Expose
@Nullable
public String actionUrl;
/**
* The Azure Tenant Id.
* GUID string for tenant ID.
*/
@SerializedName(value = "azureTenantId", alternate = {"AzureTenantId"})
@Expose
@Nullable
public String azureTenantId;
/**
* The Compliance Information.
* The collection of compliance information associated with secure score control
*/
@SerializedName(value = "complianceInformation", alternate = {"ComplianceInformation"})
@Expose
@Nullable
public java.util.List complianceInformation;
/**
* The Control Category.
* Control action category (Identity, Data, Device, Apps, Infrastructure).
*/
@SerializedName(value = "controlCategory", alternate = {"ControlCategory"})
@Expose
@Nullable
public String controlCategory;
/**
* The Control State Updates.
* Flag to indicate where the tenant has marked a control (ignored, thirdParty, reviewed) (supports update).
*/
@SerializedName(value = "controlStateUpdates", alternate = {"ControlStateUpdates"})
@Expose
@Nullable
public java.util.List controlStateUpdates;
/**
* The Deprecated.
* Flag to indicate if a control is depreciated.
*/
@SerializedName(value = "deprecated", alternate = {"Deprecated"})
@Expose
@Nullable
public Boolean deprecated;
/**
* The Implementation Cost.
* Resource cost of implemmentating control (low, moderate, high).
*/
@SerializedName(value = "implementationCost", alternate = {"ImplementationCost"})
@Expose
@Nullable
public String implementationCost;
/**
* The Last Modified Date Time.
* Time at which the control profile entity was last modified. The Timestamp type represents date and time
*/
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
@Expose
@Nullable
public java.time.OffsetDateTime lastModifiedDateTime;
/**
* The Max Score.
* max attainable score for the control.
*/
@SerializedName(value = "maxScore", alternate = {"MaxScore"})
@Expose
@Nullable
public Double maxScore;
/**
* The Rank.
* Microsoft's stack ranking of control.
*/
@SerializedName(value = "rank", alternate = {"Rank"})
@Expose
@Nullable
public Integer rank;
/**
* The Remediation.
* Description of what the control will help remediate.
*/
@SerializedName(value = "remediation", alternate = {"Remediation"})
@Expose
@Nullable
public String remediation;
/**
* The Remediation Impact.
* Description of the impact on users of the remediation.
*/
@SerializedName(value = "remediationImpact", alternate = {"RemediationImpact"})
@Expose
@Nullable
public String remediationImpact;
/**
* The Service.
* Service that owns the control (Exchange, Sharepoint, Azure AD).
*/
@SerializedName(value = "service", alternate = {"Service"})
@Expose
@Nullable
public String service;
/**
* The Threats.
* List of threats the control mitigates (accountBreach, dataDeletion, dataExfiltration, dataSpillage,
*/
@SerializedName(value = "threats", alternate = {"Threats"})
@Expose
@Nullable
public java.util.List threats;
/**
* The Tier.
*
*/
@SerializedName(value = "tier", alternate = {"Tier"})
@Expose
@Nullable
public String tier;
/**
* The Title.
*
*/
@SerializedName(value = "title", alternate = {"Title"})
@Expose
@Nullable
public String title;
/**
* The User Impact.
*
*/
@SerializedName(value = "userImpact", alternate = {"UserImpact"})
@Expose
@Nullable
public String userImpact;
/**
* The Vendor Information.
*
*/
@SerializedName(value = "vendorInformation", alternate = {"VendorInformation"})
@Expose
@Nullable
public SecurityVendorInformation vendorInformation;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
}
}