public static enum ImportJob.ImportJobState extends Enum<ImportJob.ImportJobState> implements ProtocolMessageEnum
The state of the [ImportJob][google.cloud.kms.v1.ImportJob], indicating if it can be used.Protobuf enum
google.cloud.kms.v1.ImportJob.ImportJobState
Enum Constant and 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 |
Modifier and Type | Field and 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.
|
Modifier and Type | Method and Description |
---|---|
static ImportJob.ImportJobState |
forNumber(int value) |
static Descriptors.EnumDescriptor |
getDescriptor() |
Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static Internal.EnumLiteMap<ImportJob.ImportJobState> |
internalGetValueMap() |
static ImportJob.ImportJobState |
valueOf(Descriptors.EnumValueDescriptor desc) |
static ImportJob.ImportJobState |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
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.
|
public static final ImportJob.ImportJobState IMPORT_JOB_STATE_UNSPECIFIED
Not specified.
IMPORT_JOB_STATE_UNSPECIFIED = 0;
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;
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;
public static final ImportJob.ImportJobState EXPIRED
This job can no longer be used and may not leave this state once entered.
EXPIRED = 3;
public static final ImportJob.ImportJobState UNRECOGNIZED
public static final int IMPORT_JOB_STATE_UNSPECIFIED_VALUE
Not specified.
IMPORT_JOB_STATE_UNSPECIFIED = 0;
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;
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;
public static final int EXPIRED_VALUE
This job can no longer be used and may not leave this state once entered.
EXPIRED = 3;
public static ImportJob.ImportJobState[] values()
for (ImportJob.ImportJobState c : ImportJob.ImportJobState.values()) System.out.println(c);
public static ImportJob.ImportJobState 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 Internal.EnumLite
getNumber
in interface ProtocolMessageEnum
@Deprecated public static ImportJob.ImportJobState valueOf(int value)
forNumber(int)
instead.value
- The numeric wire value of the corresponding enum entry.public static ImportJob.ImportJobState forNumber(int value)
value
- The numeric wire value of the corresponding enum entry.public static Internal.EnumLiteMap<ImportJob.ImportJobState> internalGetValueMap()
public final Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor
in interface ProtocolMessageEnum
public final Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType
in interface ProtocolMessageEnum
public static final Descriptors.EnumDescriptor getDescriptor()
public static ImportJob.ImportJobState valueOf(Descriptors.EnumValueDescriptor desc)
Copyright © 2022 Google LLC. All rights reserved.