Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 2.74 KB

GenerateCsr.md

File metadata and controls

49 lines (40 loc) · 2.74 KB

GenerateCsr

Properties

Name Type Description Notes
alg str [optional]
alt_names str A comma-separated list of dns alternative names [optional]
certificate_type str The certificate type to be included in the CSR certificate (ssl-client/ssl-server/certificate-signing) [optional]
city str The city to be included in the CSR certificate [optional]
common_name str The common name to be included in the CSR certificate
country str The country to be included in the CSR certificate [optional]
critical bool Add critical to the key usage extension (will be false if not added) [optional]
dep str The department to be included in the CSR certificate [optional]
email_addresses str A comma-separated list of email addresses alternative names [optional]
export_private_key bool The flag to indicate if the private key should be exported [optional] [default to False]
generate_key bool Generate a new classic key for the csr [optional]
ip_addresses str A comma-separated list of ip addresses alternative names [optional]
var_json bool Set output format to JSON [optional] [default to False]
key_type str The type of the key to generate (classic-key/dfc) [default to 'classic-key']
name str The key name
org str The organization to be included in the CSR certificate [optional]
split_level int The number of fragments that the item will be split into (not includes customer fragment) [optional] [default to 3]
state str The state to be included in the CSR certificate [optional]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]
uri_sans str A comma-separated list of uri alternative names [optional]

Example

from akeyless.models.generate_csr import GenerateCsr

# TODO update the JSON string below
json = "{}"
# create an instance of GenerateCsr from a JSON string
generate_csr_instance = GenerateCsr.from_json(json)
# print the JSON string representation of the object
print(GenerateCsr.to_json())

# convert the object into a dict
generate_csr_dict = generate_csr_instance.to_dict()
# create an instance of GenerateCsr from a dict
generate_csr_from_dict = GenerateCsr.from_dict(generate_csr_dict)

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