Enum DatadogSite
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum DatadogSite extends Enum<DatadogSite>
Defines the Datadog sites you can send tracked data to.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classDatadogSite.Companion
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<DatadogSite>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description USThe US1 site: app.datadoghq.com (legacy name).
US1The US1 site: app.datadoghq.com.
US3The US3 site: us3.datadoghq.com.
US5The US5 site: us5.datadoghq.com.
GOVThe US1_FED site (FedRAMP compatible): app.ddog-gov.com (legacy name).
US1_FEDThe US1_FED site (FedRAMP compatible): app.ddog-gov.com.
EUThe EU1 site: app.datadoghq.eu (legacy name).
EU1The EU1 site: app.datadoghq.eu.
AP1The AP1 site: ap1.datadoghq.com.
STAGINGThe STAGING site (internal usage only): app.datad0g.com.
-
Method Summary
Modifier and Type Method Description final DatadogSitevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<DatadogSite>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<DatadogSite>getEntries()Defines the Datadog sites you can send tracked data to. -
-
Method Detail
-
valueOf
final DatadogSite valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<DatadogSite> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<DatadogSite> getEntries()
Defines the Datadog sites you can send tracked data to.
-
-
-
-