Enum CertificateAuthorityConfigType
- java.lang.Object
-
- java.lang.Enum<CertificateAuthorityConfigType>
-
- com.oracle.bmc.certificatesmanagement.model.CertificateAuthorityConfigType
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<CertificateAuthorityConfigType>
@Generated(value="OracleSDKGenerator", comments="API Version: 20210224") public enum CertificateAuthorityConfigType extends Enum<CertificateAuthorityConfigType> implements BmcEnumThe manner in which the root or subordinate certificate authority (CA) is generated and managed.CA configuration types include the following: - Root CA generated internally by the service (ROOT_CA_GENERATED_INTERNALLY). You provide the details required to generate a certificate, including the Oracle Cloud Infrastructure (OCI) Key Management service (KMS) hardware-protected, asymmetric encryption key. Using this information, the Certificates service creates the root CA certificate which is then signed by the OCI KMS private key. - Subordinate CA issued by a CA that was generated internally by the service (SUBORDINATE_CA_ISSUED_BY_INTERNAL_CA). You provide the details required to generate a certificate, including the OCI KMS hardware-protected, asymmetric encryption key. Using this information, the Certificates service creates the subordinate CA certificate which is then signed by the OCI KMS private key you specified and the OCI KMS private key of the issuer CA. - Root CA imported to the service (ROOT_CA_MANAGED_EXTERNALLY). You import the root CA certificate in PEM format without the certificate’s private key. Private keys are managed externally by OCI KMS Dedicated KMS (DKMS), an on-premises key management solution, or a third-party cloud provider. This type of CA can’t directly issue certificates or subordinate CAs. Instead, for any certificates or subordinate CAs you want to issue, the service generates a CSR that you must sign externally and then import. - Subordinate CA issued by a CA that was generated externally, but where you manage keys in OCI (SUBORDINATE_CA_MANAGED_INTERNALLY_ISSUED_BY_EXTERNAL_CA). You import the key of the subordinate CA certificate to OCI KMS. You then provide the details required to generate a CSR that you must sign externally by using the private key of the external parent CA. During this time, the CA remains in a PENDING_ACTIVATION lifecycle state. To complete activation, import the signed certificate. This type of subordinate CA can issue certificates and subordinate CAs of its own.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description RootCaGeneratedInternallyRootCaManagedExternallySubordinateCaIssuedByInternalCaSubordinateCaManagedInternallyIssuedByExternalCaUnknownEnumValueThis 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 CertificateAuthorityConfigTypecreate(String key)StringgetValue()static CertificateAuthorityConfigTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CertificateAuthorityConfigType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RootCaGeneratedInternally
public static final CertificateAuthorityConfigType RootCaGeneratedInternally
-
SubordinateCaIssuedByInternalCa
public static final CertificateAuthorityConfigType SubordinateCaIssuedByInternalCa
-
RootCaManagedExternally
public static final CertificateAuthorityConfigType RootCaManagedExternally
-
SubordinateCaManagedInternallyIssuedByExternalCa
public static final CertificateAuthorityConfigType SubordinateCaManagedInternallyIssuedByExternalCa
-
UnknownEnumValue
public static final CertificateAuthorityConfigType 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 CertificateAuthorityConfigType[] 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 (CertificateAuthorityConfigType c : CertificateAuthorityConfigType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CertificateAuthorityConfigType 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 CertificateAuthorityConfigType create(String key)
-
-