![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.securityinsights.models.PollingFrequency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-securityinsights Show documentation
Show all versions of azure-resourcemanager-securityinsights Show documentation
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.
// 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.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The polling frequency for the TAXII server.
*/
public final class PollingFrequency extends ExpandableStringEnum {
/**
* Static value OnceAMinute for PollingFrequency.
*/
public static final PollingFrequency ONCE_AMINUTE = fromString("OnceAMinute");
/**
* Static value OnceAnHour for PollingFrequency.
*/
public static final PollingFrequency ONCE_AN_HOUR = fromString("OnceAnHour");
/**
* Static value OnceADay for PollingFrequency.
*/
public static final PollingFrequency ONCE_ADAY = fromString("OnceADay");
/**
* Creates a new instance of PollingFrequency value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public PollingFrequency() {
}
/**
* Creates or finds a PollingFrequency from its string representation.
*
* @param name a name to look for.
* @return the corresponding PollingFrequency.
*/
public static PollingFrequency fromString(String name) {
return fromString(name, PollingFrequency.class);
}
/**
* Gets known PollingFrequency values.
*
* @return known PollingFrequency values.
*/
public static Collection values() {
return values(PollingFrequency.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy