Enum BulkDeActivationMetadata.OperationStatus
- java.lang.Object
-
- java.lang.Enum<BulkDeActivationMetadata.OperationStatus>
-
- com.oracle.bmc.apmtraces.model.BulkDeActivationMetadata.OperationStatus
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<BulkDeActivationMetadata.OperationStatus>
- Enclosing class:
- BulkDeActivationMetadata
public static enum BulkDeActivationMetadata.OperationStatus extends Enum<BulkDeActivationMetadata.OperationStatus> implements BmcEnum
Operation status of the bulk deactivation operation.The bulk deactivation operation could have either a success or an error status as defined below. Note that if a bulk operation has not succeeded, we do not deactivate any tags in the request set. SUCCESS - The bulk deactivation operation has succeeded and all the attributes in the bulk deactivation request have been deactivated by this operation or deactivated earlier. The following are error statuses for the bulk deactivation operation. Note that none of the attributes (string or numeric) in the bulk request have been deactivated by this bulk deactivation operation if any of the below statuses are returned. EMPTY_ATTRIBUTE_LIST - The bulk deactivation request object was empty and did not contain any attributes to be deactivated. NUMERIC_ATTRIBUTE_LIMIT_EXCEEDED - The number of numeric attributes in the bulk request exceeded the maximum limit (100) of numeric attributes that could be present 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 present in the APM Domain. 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
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 BulkDeActivationMetadata.OperationStatus
create(String key)
String
getValue()
static BulkDeActivationMetadata.OperationStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static BulkDeActivationMetadata.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 BulkDeActivationMetadata.OperationStatus Success
-
EmptyAttributeList
public static final BulkDeActivationMetadata.OperationStatus EmptyAttributeList
-
NumericAttributeLimitExceeded
public static final BulkDeActivationMetadata.OperationStatus NumericAttributeLimitExceeded
-
StringAttributeLimitExceeded
public static final BulkDeActivationMetadata.OperationStatus StringAttributeLimitExceeded
-
InvalidBulkRequest
public static final BulkDeActivationMetadata.OperationStatus InvalidBulkRequest
-
UnknownEnumValue
public static final BulkDeActivationMetadata.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 BulkDeActivationMetadata.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 (BulkDeActivationMetadata.OperationStatus c : BulkDeActivationMetadata.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 BulkDeActivationMetadata.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 BulkDeActivationMetadata.OperationStatus create(String key)
-
-