Ravi Teja | dd6c01d | 2020-04-30 06:17:38 -0500 | [diff] [blame] | 1 | description: > |
Patrick Williams | a134741 | 2022-12-06 10:56:22 -0600 | [diff] [blame] | 2 | Implement to get CSR string signed by authority and get client certificate. |
Ravi Teja | dd6c01d | 2020-04-30 06:17:38 -0500 | [diff] [blame] | 3 | |
| 4 | properties: |
| 5 | - name: ClientCertificate |
| 6 | type: string |
| 7 | description: > |
Patrick Williams | a134741 | 2022-12-06 10:56:22 -0600 | [diff] [blame] | 8 | Client certificate content. User reads this property based on status. |
Ravi Teja | dd6c01d | 2020-04-30 06:17:38 -0500 | [diff] [blame] | 9 | The value of this property is empty until Status.State == complete. |
| 10 | - name: Status |
| 11 | type: enum[self.State] |
| 12 | default: Pending |
| 13 | description: > |
| 14 | The current status of the signing operation. |
| 15 | |
| 16 | enumerations: |
Patrick Williams | 8da396c | 2022-03-14 14:21:02 -0500 | [diff] [blame] | 17 | - name: State |
| 18 | description: > |
| 19 | Signing operation state enum. |
| 20 | values: |
| 21 | - name: Pending |
| 22 | description: > |
| 23 | Signing request is pending. |
| 24 | - name: BadCSR |
| 25 | description: > |
| 26 | The CSR was malformed. |
| 27 | - name: Complete |
| 28 | description: > |
| 29 | CSR signing complete |