
com.azure.resourcemanager.security.models.ResourcesCoverageStatus 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.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* This field is available for subscription-level only, and reflects the coverage status of the resources under the
* subscription. Please note: The "pricingTier" field reflects the plan status of the subscription. However, since the
* plan status can also be defined at the resource level, there might be misalignment between the subscription's plan
* status and the resource status. This field helps indicate the coverage status of the resources.
*/
public final class ResourcesCoverageStatus extends ExpandableStringEnum {
/**
* Static value FullyCovered for ResourcesCoverageStatus.
*/
public static final ResourcesCoverageStatus FULLY_COVERED = fromString("FullyCovered");
/**
* Static value PartiallyCovered for ResourcesCoverageStatus.
*/
public static final ResourcesCoverageStatus PARTIALLY_COVERED = fromString("PartiallyCovered");
/**
* Static value NotCovered for ResourcesCoverageStatus.
*/
public static final ResourcesCoverageStatus NOT_COVERED = fromString("NotCovered");
/**
* Creates a new instance of ResourcesCoverageStatus value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ResourcesCoverageStatus() {
}
/**
* Creates or finds a ResourcesCoverageStatus from its string representation.
*
* @param name a name to look for.
* @return the corresponding ResourcesCoverageStatus.
*/
public static ResourcesCoverageStatus fromString(String name) {
return fromString(name, ResourcesCoverageStatus.class);
}
/**
* Gets known ResourcesCoverageStatus values.
*
* @return known ResourcesCoverageStatus values.
*/
public static Collection values() {
return values(ResourcesCoverageStatus.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy