public static enum UptimeCheckConfig.CheckerType extends Enum<UptimeCheckConfig.CheckerType> implements com.google.protobuf.ProtocolMessageEnum
What kind of checkers are available to be used by the check.Protobuf enum
google.monitoring.v3.UptimeCheckConfig.CheckerType| Enum Constant and Description |
|---|
CHECKER_TYPE_UNSPECIFIED
The default checker type.
|
STATIC_IP_CHECKERS
`STATIC_IP_CHECKERS` are used for uptime checks that perform egress
across the public internet.
|
UNRECOGNIZED |
VPC_CHECKERS
`VPC_CHECKERS` are used for uptime checks that perform egress using
Service Directory and private network access.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
CHECKER_TYPE_UNSPECIFIED_VALUE
The default checker type.
|
static int |
STATIC_IP_CHECKERS_VALUE
`STATIC_IP_CHECKERS` are used for uptime checks that perform egress
across the public internet.
|
static int |
VPC_CHECKERS_VALUE
`VPC_CHECKERS` are used for uptime checks that perform egress using
Service Directory and private network access.
|
| Modifier and Type | Method and Description |
|---|---|
static UptimeCheckConfig.CheckerType |
forNumber(int value) |
static com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptor() |
com.google.protobuf.Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
com.google.protobuf.Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static com.google.protobuf.Internal.EnumLiteMap<UptimeCheckConfig.CheckerType> |
internalGetValueMap() |
static UptimeCheckConfig.CheckerType |
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) |
static UptimeCheckConfig.CheckerType |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static UptimeCheckConfig.CheckerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UptimeCheckConfig.CheckerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UptimeCheckConfig.CheckerType CHECKER_TYPE_UNSPECIFIED
The default checker type. Currently converted to `STATIC_IP_CHECKERS` on creation, the default conversion behavior may change in the future.
CHECKER_TYPE_UNSPECIFIED = 0;public static final UptimeCheckConfig.CheckerType STATIC_IP_CHECKERS
`STATIC_IP_CHECKERS` are used for uptime checks that perform egress across the public internet. `STATIC_IP_CHECKERS` use the static IP addresses returned by `ListUptimeCheckIps`.
STATIC_IP_CHECKERS = 1;public static final UptimeCheckConfig.CheckerType VPC_CHECKERS
`VPC_CHECKERS` are used for uptime checks that perform egress using Service Directory and private network access. When using `VPC_CHECKERS`, the monitored resource type must be `servicedirectory_service`.
VPC_CHECKERS = 3;public static final UptimeCheckConfig.CheckerType UNRECOGNIZED
public static final int CHECKER_TYPE_UNSPECIFIED_VALUE
The default checker type. Currently converted to `STATIC_IP_CHECKERS` on creation, the default conversion behavior may change in the future.
CHECKER_TYPE_UNSPECIFIED = 0;public static final int STATIC_IP_CHECKERS_VALUE
`STATIC_IP_CHECKERS` are used for uptime checks that perform egress across the public internet. `STATIC_IP_CHECKERS` use the static IP addresses returned by `ListUptimeCheckIps`.
STATIC_IP_CHECKERS = 1;public static final int VPC_CHECKERS_VALUE
`VPC_CHECKERS` are used for uptime checks that perform egress using Service Directory and private network access. When using `VPC_CHECKERS`, the monitored resource type must be `servicedirectory_service`.
VPC_CHECKERS = 3;public static UptimeCheckConfig.CheckerType[] values()
for (UptimeCheckConfig.CheckerType c : UptimeCheckConfig.CheckerType.values()) System.out.println(c);
public static UptimeCheckConfig.CheckerType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic final int getNumber()
getNumber in interface com.google.protobuf.Internal.EnumLitegetNumber in interface com.google.protobuf.ProtocolMessageEnum@Deprecated public static UptimeCheckConfig.CheckerType valueOf(int value)
forNumber(int) instead.value - The numeric wire value of the corresponding enum entry.public static UptimeCheckConfig.CheckerType forNumber(int value)
value - The numeric wire value of the corresponding enum entry.public static com.google.protobuf.Internal.EnumLiteMap<UptimeCheckConfig.CheckerType> internalGetValueMap()
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnumpublic final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnumpublic static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
public static UptimeCheckConfig.CheckerType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Copyright © 2023 Google LLC. All rights reserved.