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 pem-encoded CSR to sign with the CA to be used for certificate issuance
friendly_name
str
A friendly name for the certificate
[optional]
common_name
str
The common name (CN) for the certificate
[optional]
alt_names
str
A comma-delimited list of Subject Alternative Names (SANs) for the certificate; these can be host names or email addresses.
[optional] [default to '']
ttl
str
The time to live for the certificate such as 1m, 1h, 1d, 1y, ...
not_before
str
The date and time when the certificate becomes valid in YYYY-MM-DDTHH:mm:ss.sssZ format
[optional]
not_after
str
The date and time when the certificate expires in YYYY-MM-DDTHH:mm:ss.sssZ format
[optional]
Example
frominfisicalapi_client.models.api_v1_pki_ca_ca_id_sign_certificate_post_requestimportApiV1PkiCaCaIdSignCertificatePostRequest# TODO update the JSON string belowjson="{}"# create an instance of ApiV1PkiCaCaIdSignCertificatePostRequest from a JSON stringapi_v1_pki_ca_ca_id_sign_certificate_post_request_instance=ApiV1PkiCaCaIdSignCertificatePostRequest.from_json(json)
# print the JSON string representation of the objectprintApiV1PkiCaCaIdSignCertificatePostRequest.to_json()
# convert the object into a dictapi_v1_pki_ca_ca_id_sign_certificate_post_request_dict=api_v1_pki_ca_ca_id_sign_certificate_post_request_instance.to_dict()
# create an instance of ApiV1PkiCaCaIdSignCertificatePostRequest from a dictapi_v1_pki_ca_ca_id_sign_certificate_post_request_from_dict=ApiV1PkiCaCaIdSignCertificatePostRequest.from_dict(api_v1_pki_ca_ca_id_sign_certificate_post_request_dict)