
com.azure.resourcemanager.security.models.SecureScoreControlDefinitionItem Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.security.models;
import com.azure.resourcemanager.security.fluent.models.SecureScoreControlDefinitionItemInner;
import java.util.List;
/**
* An immutable client-side representation of SecureScoreControlDefinitionItem.
*/
public interface SecureScoreControlDefinitionItem {
/**
* Gets the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: The name of the resource.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: The type of the resource.
*
* @return the type value.
*/
String type();
/**
* Gets the displayName property: User friendly display name of the control.
*
* @return the displayName value.
*/
String displayName();
/**
* Gets the description property: User friendly description of the control.
*
* @return the description value.
*/
String description();
/**
* Gets the maxScore property: Maximum control score (0..10).
*
* @return the maxScore value.
*/
Integer maxScore();
/**
* Gets the source property: Source object from which the control was created.
*
* @return the source value.
*/
SecureScoreControlDefinitionSource source();
/**
* Gets the assessmentDefinitions property: Array of assessments metadata IDs that are included in this security
* control.
*
* @return the assessmentDefinitions value.
*/
List assessmentDefinitions();
/**
* Gets the inner com.azure.resourcemanager.security.fluent.models.SecureScoreControlDefinitionItemInner object.
*
* @return the inner object.
*/
SecureScoreControlDefinitionItemInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy