com.azure.resourcemanager.newrelicobservability.models.SendSubscriptionLogsStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-newrelicobservability Show documentation
Show all versions of azure-resourcemanager-newrelicobservability Show documentation
This package contains Microsoft Azure SDK for NewRelicObservability Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2024-01-01.
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.newrelicobservability.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Indicates whether subscription logs are being sent.
*/
public final class SendSubscriptionLogsStatus extends ExpandableStringEnum {
/**
* Static value Enabled for SendSubscriptionLogsStatus.
*/
public static final SendSubscriptionLogsStatus ENABLED = fromString("Enabled");
/**
* Static value Disabled for SendSubscriptionLogsStatus.
*/
public static final SendSubscriptionLogsStatus DISABLED = fromString("Disabled");
/**
* Creates a new instance of SendSubscriptionLogsStatus value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public SendSubscriptionLogsStatus() {
}
/**
* Creates or finds a SendSubscriptionLogsStatus from its string representation.
*
* @param name a name to look for.
* @return the corresponding SendSubscriptionLogsStatus.
*/
public static SendSubscriptionLogsStatus fromString(String name) {
return fromString(name, SendSubscriptionLogsStatus.class);
}
/**
* Gets known SendSubscriptionLogsStatus values.
*
* @return known SendSubscriptionLogsStatus values.
*/
public static Collection values() {
return values(SendSubscriptionLogsStatus.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy