Enum BulkActivationMetadata.OperationStatus
- java.lang.Object
-
- java.lang.Enum<BulkActivationMetadata.OperationStatus>
-
- com.oracle.bmc.apmtraces.model.BulkActivationMetadata.OperationStatus
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<BulkActivationMetadata.OperationStatus>
- Enclosing class:
- BulkActivationMetadata
public static enum BulkActivationMetadata.OperationStatus extends Enum<BulkActivationMetadata.OperationStatus> implements BmcEnum
Operation status of the bulk activation operation.The bulk activation operation could have either a success or an error status as defined below. The following is a success status for the bulk activation operation. SUCCESS - The bulk activation operation has succeeded and all the attributes in the bulk activation request have been activated by this operation or activated earlier. The following are error statuses for the bulk activation operation. Note that none of the attributes (string or numeric) in the bulk request have been activated by this bulk activation operation if any of the below statuses. EMPTY_ATTRIBUTE_LIST - The bulk activation request object was empty and did not contain any attributes to be activated. NUMERIC_ATTRIBUTE_LIMIT_EXCEEDED - The number of numeric attributes in the bulk request exceeded the maximum limit (100) of numeric attributes that could be activated in the APM Domain. STRING_ATTRIBUTE_LIMIT_EXCEEDED - The number of string attributes in the bulk request exceeded the maximum limit (700) of string attributes that could be activated in the APM Domain. INSUFFICIENT_STRING_SPACE - There are not enough free slots available in the APM Domain to activate the string attributes present in the bulk request. INSUFFICIENT_NUMERIC_SPACE - There are not enough free slots available in the APM Domain to activate the numeric attributes present in the bulk request. INVALID_BULK_REQUEST - The bulk request contains invalid attribute(s), or attribute(s) that resulted in a validation error, or an attribute that resulted in a processing error.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EmptyAttributeList
InsufficientNumericSpace
InsufficientStringSpace
InvalidBulkRequest
NumericAttributeLimitExceeded
StringAttributeLimitExceeded
Success
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BulkActivationMetadata.OperationStatus
create(String key)
String
getValue()
static BulkActivationMetadata.OperationStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static BulkActivationMetadata.OperationStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Success
public static final BulkActivationMetadata.OperationStatus Success
-
EmptyAttributeList
public static final BulkActivationMetadata.OperationStatus EmptyAttributeList
-
NumericAttributeLimitExceeded
public static final BulkActivationMetadata.OperationStatus NumericAttributeLimitExceeded
-
StringAttributeLimitExceeded
public static final BulkActivationMetadata.OperationStatus StringAttributeLimitExceeded
-
InsufficientStringSpace
public static final BulkActivationMetadata.OperationStatus InsufficientStringSpace
-
InsufficientNumericSpace
public static final BulkActivationMetadata.OperationStatus InsufficientNumericSpace
-
InvalidBulkRequest
public static final BulkActivationMetadata.OperationStatus InvalidBulkRequest
-
UnknownEnumValue
public static final BulkActivationMetadata.OperationStatus UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static BulkActivationMetadata.OperationStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BulkActivationMetadata.OperationStatus c : BulkActivationMetadata.OperationStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BulkActivationMetadata.OperationStatus valueOf(String name)
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.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static BulkActivationMetadata.OperationStatus create(String key)
-
-