0% found this document useful (0 votes)
25 views2 pages

SSL

This document describes the configuration of SSL certificates and keys. It defines objects for certificates and keys that contain properties like name, public key, certificate type, and private key. Certificates can be one of several standard types like PEM, DER, PFX, and P7B. Keys require a name and can contain a private key value.

Uploaded by

liming
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
0% found this document useful (0 votes)
25 views2 pages

SSL

This document describes the configuration of SSL certificates and keys. It defines objects for certificates and keys that contain properties like name, public key, certificate type, and private key. Certificates can be one of several standard types like PEM, DER, PFX, and P7B. Keys require a name and can contain a private key value.

Uploaded by

liming
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1/ 2

{

"id":"/axapi/v3/ssl",
"type":"object",
"node-type":"intermediate",
"title":"ssl",
"operation-not-allowed": ["PUT", "POST", "DELETE"],
"partition-visibility":"shared",
"auto-created-object":1,
"description":"Local file Mangement",
"properties":{
"certificate":{
"type":"object",
"$ref":"/axapi/v3/ssl/certificate/{name}",
"properties":{
"name":{
"type":"string",
"format":"string-rlx",
"minLength":1,
"maxLength":245,
"partition-visibility":"shared",
"description":"ssl certificate local file name"
},
"public-key":{
"type":"string",
"format":"string-rlx",
"minLength":1,
"maxLength":2048,
"partition-visibility":"shared"
},
"certificate-type":{
"type":"string",
"format":"enum",
"partition-visibility":"shared",
"description":"'pem': pem; 'der': der; 'pfx': pfx; 'p7b': p7b;
",
"enum":[
"pem",
"der",
"pfx",
"p7b"
]
},
"pfx-password":{
"type":"string",
"format":"string-rlx",
"minLength":1,
"maxLength":128,
"partition-visibility":"shared",
"description":"The password for certificate file (pfx type
only)"
}
},
"required":[
"name"
]
},
"key":{
"type":"object",
"$ref":"/axapi/v3/ssl/key/{name}",
"properties":{
"name":{
"type":"string",
"format":"string-rlx",
"minLength":1,
"maxLength":245,
"partition-visibility":"shared",
"description":"ssl certificate local file name"
},
"private-key":{
"type":"string",
"format":"string-rlx",
"minLength":1,
"maxLength":2048,
"partition-visibility":"shared"
}
},
"required":[
"name"
]
}
}
}

You might also like