All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.securityinsights.models.IncidentProperties Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for SecurityInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider. Package tag package-preview-2021-09.

There is a newer version: 1.0.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.securityinsights.models;

import com.azure.resourcemanager.securityinsights.fluent.models.IncidentPropertiesInner;
import java.time.OffsetDateTime;
import java.util.List;

/**
 * An immutable client-side representation of IncidentProperties.
 */
public interface IncidentProperties {
    /**
     * Gets the additionalData property: Additional data on the incident.
     * 
     * @return the additionalData value.
     */
    IncidentAdditionalData additionalData();

    /**
     * Gets the classification property: The reason the incident was closed.
     * 
     * @return the classification value.
     */
    IncidentClassification classification();

    /**
     * Gets the classificationComment property: Describes the reason the incident was closed.
     * 
     * @return the classificationComment value.
     */
    String classificationComment();

    /**
     * Gets the classificationReason property: The classification reason the incident was closed with.
     * 
     * @return the classificationReason value.
     */
    IncidentClassificationReason classificationReason();

    /**
     * Gets the createdTimeUtc property: The time the incident was created.
     * 
     * @return the createdTimeUtc value.
     */
    OffsetDateTime createdTimeUtc();

    /**
     * Gets the description property: The description of the incident.
     * 
     * @return the description value.
     */
    String description();

    /**
     * Gets the firstActivityTimeUtc property: The time of the first activity in the incident.
     * 
     * @return the firstActivityTimeUtc value.
     */
    OffsetDateTime firstActivityTimeUtc();

    /**
     * Gets the incidentUrl property: The deep-link url to the incident in Azure portal.
     * 
     * @return the incidentUrl value.
     */
    String incidentUrl();

    /**
     * Gets the incidentNumber property: A sequential number.
     * 
     * @return the incidentNumber value.
     */
    Integer incidentNumber();

    /**
     * Gets the labels property: List of labels relevant to this incident.
     * 
     * @return the labels value.
     */
    List labels();

    /**
     * Gets the providerName property: The name of the source provider that generated the incident.
     * 
     * @return the providerName value.
     */
    String providerName();

    /**
     * Gets the providerIncidentId property: The incident ID assigned by the incident provider.
     * 
     * @return the providerIncidentId value.
     */
    String providerIncidentId();

    /**
     * Gets the lastActivityTimeUtc property: The time of the last activity in the incident.
     * 
     * @return the lastActivityTimeUtc value.
     */
    OffsetDateTime lastActivityTimeUtc();

    /**
     * Gets the lastModifiedTimeUtc property: The last time the incident was updated.
     * 
     * @return the lastModifiedTimeUtc value.
     */
    OffsetDateTime lastModifiedTimeUtc();

    /**
     * Gets the owner property: Describes a user that the incident is assigned to.
     * 
     * @return the owner value.
     */
    IncidentOwnerInfo owner();

    /**
     * Gets the relatedAnalyticRuleIds property: List of resource ids of Analytic rules related to the incident.
     * 
     * @return the relatedAnalyticRuleIds value.
     */
    List relatedAnalyticRuleIds();

    /**
     * Gets the severity property: The severity of the incident.
     * 
     * @return the severity value.
     */
    IncidentSeverity severity();

    /**
     * Gets the status property: The status of the incident.
     * 
     * @return the status value.
     */
    IncidentStatus status();

    /**
     * Gets the teamInformation property: Describes a team for the incident.
     * 
     * @return the teamInformation value.
     */
    TeamInformation teamInformation();

    /**
     * Gets the title property: The title of the incident.
     * 
     * @return the title value.
     */
    String title();

    /**
     * Gets the inner com.azure.resourcemanager.securityinsights.fluent.models.IncidentPropertiesInner object.
     * 
     * @return the inner object.
     */
    IncidentPropertiesInner innerModel();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy