com.azure.resourcemanager.securityinsights.models.DataConnectorLicenseState 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-2022-09.
The 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.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Describes the state of user's license for a connector kind.
*/
public final class DataConnectorLicenseState extends ExpandableStringEnum {
/**
* Static value Valid for DataConnectorLicenseState.
*/
public static final DataConnectorLicenseState VALID = fromString("Valid");
/**
* Static value Invalid for DataConnectorLicenseState.
*/
public static final DataConnectorLicenseState INVALID = fromString("Invalid");
/**
* Static value Unknown for DataConnectorLicenseState.
*/
public static final DataConnectorLicenseState UNKNOWN = fromString("Unknown");
/**
* Creates a new instance of DataConnectorLicenseState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public DataConnectorLicenseState() {
}
/**
* Creates or finds a DataConnectorLicenseState from its string representation.
*
* @param name a name to look for.
* @return the corresponding DataConnectorLicenseState.
*/
public static DataConnectorLicenseState fromString(String name) {
return fromString(name, DataConnectorLicenseState.class);
}
/**
* Gets known DataConnectorLicenseState values.
*
* @return known DataConnectorLicenseState values.
*/
public static Collection values() {
return values(DataConnectorLicenseState.class);
}
}