Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 1.78 KB

GetImportToken.md

File metadata and controls

17 lines (12 loc) · 1.78 KB

GetImportToken

Properties

Name Type Description Notes
CreationDate time.Time The date the import token was created. The date format follows RFC 3339. [optional] [readonly]
Expiration float32 The time in seconds from the creation of an import token that determines how long its associated public key remains valid. The minimum value is `300` seconds (5 minutes), and the maximum value is `86400` (24 hours). The default value is `600` (10 minutes). [optional]
ExpirationDate time.Time The date the import token expires. The date format follows RFC 3339. [optional] [readonly]
MaxAllowedRetrievals float32 The number of times that an import token can be retrieved within its expiration time before it is no longer accessible. [optional]
RemainingRetrievals float32 The number of retrievals that are available for the import token before it is no longer accessible. [optional] [readonly]
Nonce *os.File The nonce value that is used to verify a key import request. Encrypt and provide the encrypted nonce value when you use `POST /keys` to securely import a key to the service. [optional] [readonly]
Payload *os.File The public encryption key that you can use to encrypt key material before you import it into the service. This value is a PEM-encoded public key in PKIX format. Because PEM encoding is a binary format, the value is base64 encoded. [optional] [readonly]

[Back to Model list] [Back to API list] [Back to README]