Class CreateOctKeyOptions
java.lang.Object
com.azure.security.keyvault.keys.models.CreateKeyOptions
com.azure.security.keyvault.keys.models.CreateOctKeyOptions
Represents the configurable options to create a symmetric key.
-
Constructor Summary
ConstructorsConstructorDescriptionCreateOctKeyOptions(String name) Creates aCreateOctKeyOptionswithnameas name of the key. -
Method Summary
Modifier and TypeMethodDescriptionGets the key size in bits, such as 128, 192, or 256.Get the HSM value of the key being created.setEnabled(Boolean enabled) Set a value that indicates if the key is enabled.setExpiresOn(OffsetDateTime expiresOn) Set theexpiresUTC time.setExportable(Boolean exportable) Set a flag that indicates if the private key can be exported.setHardwareProtected(Boolean hardwareProtected) Set whether the key being created is of HSM type or not.setKeyOperations(KeyOperation... keyOperations) Set the key operations.setKeySize(Integer keySize) Sets the key size in bits, such as 128, 192, or 256.setNotBefore(OffsetDateTime notBefore) Set thenotBeforeUTC time.setReleasePolicy(KeyReleasePolicy releasePolicy) Set the policy rules under which the key can be exported.Set the tags to be associated with the key.Methods inherited from class CreateKeyOptions
getExpiresOn, getKeyOperations, getKeyType, getName, getNotBefore, getReleasePolicy, getTags, isEnabled, isExportable
-
Constructor Details
-
CreateOctKeyOptions
Creates aCreateOctKeyOptionswithnameas name of the key.- Parameters:
name- The name of the key.
-
-
Method Details
-
setKeySize
Sets the key size in bits, such as 128, 192, or 256. Ifnull, the service default is used.- Parameters:
keySize- The key size in bits to set.- Returns:
- The updated
CreateOctKeyOptionsobject.
-
getKeySize
Gets the key size in bits, such as 128, 192, or 256.- Returns:
- The key size in bits.
-
setHardwareProtected
Set whether the key being created is of HSM type or not.- Parameters:
hardwareProtected- The HSM value to set.- Returns:
- The updated
CreateOctKeyOptionsobject.
-
isHardwareProtected
Get the HSM value of the key being created.- Returns:
- the HSM value.
-
setKeyOperations
Set the key operations.- Overrides:
setKeyOperationsin classCreateKeyOptions- Parameters:
keyOperations- The key operations to set.- Returns:
- The updated
CreateOctKeyOptionsobject.
-
setNotBefore
Set thenotBeforeUTC time.- Overrides:
setNotBeforein classCreateKeyOptions- Parameters:
notBefore- The notBefore UTC time to set.- Returns:
- The updated
CreateOctKeyOptionsobject.
-
setExpiresOn
Set theexpiresUTC time.- Overrides:
setExpiresOnin classCreateKeyOptions- Parameters:
expiresOn- The expiry time to set. for the key.- Returns:
- The updated
CreateOctKeyOptionsobject.
-
setTags
Set the tags to be associated with the key.- Overrides:
setTagsin classCreateKeyOptions- Parameters:
tags- The tags to set.- Returns:
- The updated
CreateOctKeyOptionsobject.
-
setEnabled
Set a value that indicates if the key is enabled.- Overrides:
setEnabledin classCreateKeyOptions- Parameters:
enabled- The enabled value to set.- Returns:
- The updated
CreateOctKeyOptionsobject.
-
setExportable
Set a flag that indicates if the private key can be exported.- Overrides:
setExportablein classCreateKeyOptions- Parameters:
exportable- A flag that indicates if the private key can be exported.- Returns:
- The updated
CreateOctKeyOptionsobject.
-
setReleasePolicy
Set the policy rules under which the key can be exported.- Overrides:
setReleasePolicyin classCreateKeyOptions- Parameters:
releasePolicy- The policy rules to set.- Returns:
- The updated
CreateOctKeyOptionsobject.
-