Package com.google.cloud.kms.v1
Enum ImportJob.ImportJobState
- java.lang.Object
-
- java.lang.Enum<ImportJob.ImportJobState>
-
- com.google.cloud.kms.v1.ImportJob.ImportJobState
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<ImportJob.ImportJobState>
- Enclosing class:
- ImportJob
public static enum ImportJob.ImportJobState extends Enum<ImportJob.ImportJobState> implements com.google.protobuf.ProtocolMessageEnum
The state of the [ImportJob][google.cloud.kms.v1.ImportJob], indicating if it can be used.
Protobuf enumgoogle.cloud.kms.v1.ImportJob.ImportJobState
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE
This job may be used in [CreateCryptoKey][google.cloud.kms.v1.KeyManagementService.CreateCryptoKey] and [CreateCryptoKeyVersion][google.cloud.kms.v1.KeyManagementService.CreateCryptoKeyVersion] requests.EXPIRED
This job can no longer be used and may not leave this state once entered.IMPORT_JOB_STATE_UNSPECIFIED
Not specified.PENDING_GENERATION
The wrapping key for this job is still being generated.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
ACTIVE_VALUE
This job may be used in [CreateCryptoKey][google.cloud.kms.v1.KeyManagementService.CreateCryptoKey] and [CreateCryptoKeyVersion][google.cloud.kms.v1.KeyManagementService.CreateCryptoKeyVersion] requests.static int
EXPIRED_VALUE
This job can no longer be used and may not leave this state once entered.static int
IMPORT_JOB_STATE_UNSPECIFIED_VALUE
Not specified.static int
PENDING_GENERATION_VALUE
The wrapping key for this job is still being generated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ImportJob.ImportJobState
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<ImportJob.ImportJobState>
internalGetValueMap()
static ImportJob.ImportJobState
valueOf(int value)
Deprecated.static ImportJob.ImportJobState
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static ImportJob.ImportJobState
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImportJob.ImportJobState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMPORT_JOB_STATE_UNSPECIFIED
public static final ImportJob.ImportJobState IMPORT_JOB_STATE_UNSPECIFIED
Not specified.
IMPORT_JOB_STATE_UNSPECIFIED = 0;
-
PENDING_GENERATION
public static final ImportJob.ImportJobState PENDING_GENERATION
The wrapping key for this job is still being generated. It may not be used. Cloud KMS will automatically mark this job as [ACTIVE][google.cloud.kms.v1.ImportJob.ImportJobState.ACTIVE] as soon as the wrapping key is generated.
PENDING_GENERATION = 1;
-
ACTIVE
public static final ImportJob.ImportJobState ACTIVE
This job may be used in [CreateCryptoKey][google.cloud.kms.v1.KeyManagementService.CreateCryptoKey] and [CreateCryptoKeyVersion][google.cloud.kms.v1.KeyManagementService.CreateCryptoKeyVersion] requests.
ACTIVE = 2;
-
EXPIRED
public static final ImportJob.ImportJobState EXPIRED
This job can no longer be used and may not leave this state once entered.
EXPIRED = 3;
-
UNRECOGNIZED
public static final ImportJob.ImportJobState UNRECOGNIZED
-
-
Field Detail
-
IMPORT_JOB_STATE_UNSPECIFIED_VALUE
public static final int IMPORT_JOB_STATE_UNSPECIFIED_VALUE
Not specified.
IMPORT_JOB_STATE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
PENDING_GENERATION_VALUE
public static final int PENDING_GENERATION_VALUE
The wrapping key for this job is still being generated. It may not be used. Cloud KMS will automatically mark this job as [ACTIVE][google.cloud.kms.v1.ImportJob.ImportJobState.ACTIVE] as soon as the wrapping key is generated.
PENDING_GENERATION = 1;
- See Also:
- Constant Field Values
-
ACTIVE_VALUE
public static final int ACTIVE_VALUE
This job may be used in [CreateCryptoKey][google.cloud.kms.v1.KeyManagementService.CreateCryptoKey] and [CreateCryptoKeyVersion][google.cloud.kms.v1.KeyManagementService.CreateCryptoKeyVersion] requests.
ACTIVE = 2;
- See Also:
- Constant Field Values
-
EXPIRED_VALUE
public static final int EXPIRED_VALUE
This job can no longer be used and may not leave this state once entered.
EXPIRED = 3;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ImportJob.ImportJobState[] 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 (ImportJob.ImportJobState c : ImportJob.ImportJobState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImportJob.ImportJobState 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
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static ImportJob.ImportJobState valueOf(int value)
Deprecated.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:
value
- 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
-
forNumber
public static ImportJob.ImportJobState forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<ImportJob.ImportJobState> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static ImportJob.ImportJobState valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- 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
-
-