Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.containerinstance; import java.util.Collection; import com.fasterxml.jackson.annotation.JsonCreator; import com.microsoft.rest.ExpandableStringEnum;
Defines values for LogAnalyticsLogType.
/** * Defines values for LogAnalyticsLogType. */
public final class LogAnalyticsLogType extends ExpandableStringEnum<LogAnalyticsLogType> {
Static value ContainerInsights for LogAnalyticsLogType.
/** Static value ContainerInsights for LogAnalyticsLogType. */
public static final LogAnalyticsLogType CONTAINER_INSIGHTS = fromString("ContainerInsights");
Static value ContainerInstanceLogs for LogAnalyticsLogType.
/** Static value ContainerInstanceLogs for LogAnalyticsLogType. */
public static final LogAnalyticsLogType CONTAINER_INSTANCE_LOGS = fromString("ContainerInstanceLogs");
Creates or finds a LogAnalyticsLogType from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding LogAnalyticsLogType
/** * Creates or finds a LogAnalyticsLogType from its string representation. * @param name a name to look for * @return the corresponding LogAnalyticsLogType */
@JsonCreator public static LogAnalyticsLogType fromString(String name) { return fromString(name, LogAnalyticsLogType.class); }
Returns:known LogAnalyticsLogType values
/** * @return known LogAnalyticsLogType values */
public static Collection<LogAnalyticsLogType> values() { return values(LogAnalyticsLogType.class); } }