com.azure.resourcemanager.security.models.EventSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-security Show documentation
Show all versions of azure-resourcemanager-security Show documentation
This package contains Microsoft Azure SDK for Security Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.Security (Azure Security Center) resource provider. Package tag package-composite-v3.
// 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.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* A valid event source type.
*/
public final class EventSource extends ExpandableStringEnum {
/**
* Static value Assessments for EventSource.
*/
public static final EventSource ASSESSMENTS = fromString("Assessments");
/**
* Static value AssessmentsSnapshot for EventSource.
*/
public static final EventSource ASSESSMENTS_SNAPSHOT = fromString("AssessmentsSnapshot");
/**
* Static value SubAssessments for EventSource.
*/
public static final EventSource SUB_ASSESSMENTS = fromString("SubAssessments");
/**
* Static value SubAssessmentsSnapshot for EventSource.
*/
public static final EventSource SUB_ASSESSMENTS_SNAPSHOT = fromString("SubAssessmentsSnapshot");
/**
* Static value Alerts for EventSource.
*/
public static final EventSource ALERTS = fromString("Alerts");
/**
* Static value SecureScores for EventSource.
*/
public static final EventSource SECURE_SCORES = fromString("SecureScores");
/**
* Static value SecureScoresSnapshot for EventSource.
*/
public static final EventSource SECURE_SCORES_SNAPSHOT = fromString("SecureScoresSnapshot");
/**
* Static value SecureScoreControls for EventSource.
*/
public static final EventSource SECURE_SCORE_CONTROLS = fromString("SecureScoreControls");
/**
* Static value SecureScoreControlsSnapshot for EventSource.
*/
public static final EventSource SECURE_SCORE_CONTROLS_SNAPSHOT = fromString("SecureScoreControlsSnapshot");
/**
* Static value RegulatoryComplianceAssessment for EventSource.
*/
public static final EventSource REGULATORY_COMPLIANCE_ASSESSMENT = fromString("RegulatoryComplianceAssessment");
/**
* Static value RegulatoryComplianceAssessmentSnapshot for EventSource.
*/
public static final EventSource REGULATORY_COMPLIANCE_ASSESSMENT_SNAPSHOT
= fromString("RegulatoryComplianceAssessmentSnapshot");
/**
* Static value AttackPaths for EventSource.
*/
public static final EventSource ATTACK_PATHS = fromString("AttackPaths");
/**
* Static value AttackPathsSnapshot for EventSource.
*/
public static final EventSource ATTACK_PATHS_SNAPSHOT = fromString("AttackPathsSnapshot");
/**
* Creates a new instance of EventSource value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public EventSource() {
}
/**
* Creates or finds a EventSource from its string representation.
*
* @param name a name to look for.
* @return the corresponding EventSource.
*/
public static EventSource fromString(String name) {
return fromString(name, EventSource.class);
}
/**
* Gets known EventSource values.
*
* @return known EventSource values.
*/
public static Collection values() {
return values(EventSource.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy