You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The common name to be included in the PKI certificate
[optional]
country
str
A comma-separated list of the country that will be set in the issued certificate
[optional]
display_id
str
The name of the key to use in the sign PKI Cert process
dns_names
str
DNS Names to be included in the PKI certificate (in a comma-delimited list)
[optional]
var_json
bool
Set output format to JSON
[optional] [default to False]
key_usage
str
key-usage
[optional] [default to 'DigitalSignature,KeyAgreement,KeyEncipherment']
locality
str
A comma-separated list of the locality that will be set in the issued certificate
[optional]
organizational_units
str
A comma-separated list of organizational units (OU) that will be set in the issued certificate
[optional]
organizations
str
A comma-separated list of organizations (O) that will be set in the issued certificate
[optional]
postal_code
str
A comma-separated list of the postal code that will be set in the issued certificate
[optional]
province
str
A comma-separated list of the province that will be set in the issued certificate
[optional]
public_key_pem_data
str
PublicKey using for signing in a PEM format.
[optional]
signing_method
str
SigningMethod
street_address
str
A comma-separated list of the street address that will be set in the issued certificate
[optional]
token
str
Authentication token (see `/auth` and `/configure`)
[optional]
ttl
int
he requested Time To Live for the certificate, in seconds
uid_token
str
The universal identity token, Required only for universal_identity authentication
[optional]
uri_sans
str
The URI Subject Alternative Names to be included in the PKI certificate (in a comma-delimited list)
[optional]
version
int
classic key version
Example
fromakeyless.models.sign_pki_cert_with_classic_keyimportSignPKICertWithClassicKey# TODO update the JSON string belowjson="{}"# create an instance of SignPKICertWithClassicKey from a JSON stringsign_pki_cert_with_classic_key_instance=SignPKICertWithClassicKey.from_json(json)
# print the JSON string representation of the objectprint(SignPKICertWithClassicKey.to_json())
# convert the object into a dictsign_pki_cert_with_classic_key_dict=sign_pki_cert_with_classic_key_instance.to_dict()
# create an instance of SignPKICertWithClassicKey from a dictsign_pki_cert_with_classic_key_from_dict=SignPKICertWithClassicKey.from_dict(sign_pki_cert_with_classic_key_dict)