TablePlanEnum Class

public final class TablePlanEnum
extends ExpandableStringEnum<TablePlanEnum>

Instruct the system how to handle and charge the logs ingested to this table.

Field Summary

Modifier and Type Field and Description
static final TablePlanEnum ANALYTICS

High-value logs used for continuous monitoring, real-time detection, and performance analytics.

static final TablePlanEnum AUXILIARY

Low-touch logs, such as verbose logs, and data required for auditing and compliance.

static final TablePlanEnum BASIC

Medium-touch logs needed for troubleshooting and incident response.

Constructor Summary

Constructor Description
TablePlanEnum()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of TablePlanEnum value.

Method Summary

Modifier and Type Method and Description
static TablePlanEnum fromString(String name)

Creates or finds a TablePlanEnum from its string representation.

static Collection<TablePlanEnum> values()

Gets known TablePlanEnum values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

ANALYTICS

public static final TablePlanEnum ANALYTICS

High-value logs used for continuous monitoring, real-time detection, and performance analytics.

AUXILIARY

public static final TablePlanEnum AUXILIARY

Low-touch logs, such as verbose logs, and data required for auditing and compliance.

BASIC

public static final TablePlanEnum BASIC

Medium-touch logs needed for troubleshooting and incident response.

Constructor Details

TablePlanEnum

@Deprecated
public TablePlanEnum()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of TablePlanEnum value.

Method Details

fromString

public static TablePlanEnum fromString(String name)

Creates or finds a TablePlanEnum from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding TablePlanEnum.

values

public static Collection<TablePlanEnum> values()

Gets known TablePlanEnum values.

Returns:

known TablePlanEnum values.

Applies to