-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dashboard stats and replace basic constraints with subject type p…
…roperty
- Loading branch information
Showing
11 changed files
with
103 additions
and
21 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* CZERTAINLY Core API | ||
* REST API for CZERTAINLY Core | ||
* | ||
* The version of the OpenAPI document: 2.12.1-SNAPSHOT | ||
* The version of the OpenAPI document: 2.13.1-SNAPSHOT | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
@@ -17,6 +17,7 @@ import type { | |
CertificateProtocolDto, | ||
CertificateRequestDto, | ||
CertificateState, | ||
CertificateSubjectType, | ||
CertificateType, | ||
CertificateValidationStatus, | ||
ComplianceStatus, | ||
|
@@ -185,11 +186,10 @@ export interface CertificateDetailDto { | |
*/ | ||
keyUsage: Array<string>; | ||
/** | ||
* Basic Constraints | ||
* @type {string} | ||
* @type {CertificateSubjectType} | ||
* @memberof CertificateDetailDto | ||
*/ | ||
basicConstraints: string; | ||
subjectType: CertificateSubjectType; | ||
/** | ||
* Certificate metadata | ||
* @type {Array<MetadataResponseDto>} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// tslint:disable | ||
/** | ||
* CZERTAINLY Core API | ||
* REST API for CZERTAINLY Core | ||
* | ||
* The version of the OpenAPI document: 2.13.1-SNAPSHOT | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
/** | ||
* Certificate subject type | ||
* @export | ||
* @enum {string} | ||
*/ | ||
export enum CertificateSubjectType { | ||
EndEntity = 'endEntity', | ||
SelfSignedEndEntity = 'selfSignedEndEntity', | ||
IntermediateCa = 'intermediateCa', | ||
RootCa = 'rootCa' | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* CZERTAINLY Core API | ||
* REST API for CZERTAINLY Core | ||
* | ||
* The version of the OpenAPI document: 2.12.1-SNAPSHOT | ||
* The version of the OpenAPI document: 2.13.1-SNAPSHOT | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
@@ -37,6 +37,7 @@ export enum PlatformEnum { | |
CertificateRequestFormat = 'CertificateRequestFormat', | ||
DiscoveryStatus = 'DiscoveryStatus', | ||
CertificateProtocol = 'CertificateProtocol', | ||
CertificateSubjectType = 'CertificateSubjectType', | ||
KeyAlgorithm = 'KeyAlgorithm', | ||
KeyFormat = 'KeyFormat', | ||
KeyState = 'KeyState', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* CZERTAINLY Core API | ||
* REST API for CZERTAINLY Core | ||
* | ||
* The version of the OpenAPI document: 2.12.1-SNAPSHOT | ||
* The version of the OpenAPI document: 2.13.1-SNAPSHOT | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
|
@@ -101,11 +101,11 @@ export interface StatisticsDto { | |
*/ | ||
certificateStatByKeySize?: { [key: string]: number; }; | ||
/** | ||
* Map of Certificate count by basic constraints | ||
* Map of Certificate count by subject type | ||
* @type {{ [key: string]: number; }} | ||
* @memberof StatisticsDto | ||
*/ | ||
certificateStatByBasicConstraints?: { [key: string]: number; }; | ||
certificateStatBySubjectType?: { [key: string]: number; }; | ||
/** | ||
* Map of Certificate count by state | ||
* @type {{ [key: string]: number; }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters