@harnessio/react-ssca-manager-client 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,13 +1,50 @@
|
|
|
1
1
|
export interface ArtifactDetailResponse {
|
|
2
|
+
/**
|
|
3
|
+
* Pipeline execution id of build pipeline used to orchestrate the artifact
|
|
4
|
+
*/
|
|
2
5
|
build_pipeline_execution_id?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Pipeline id of build pipeline used to orchestrate the artifact
|
|
8
|
+
*/
|
|
3
9
|
build_pipeline_id?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Pipeline name of build pipeline used to orchestrate the artifact
|
|
12
|
+
*/
|
|
13
|
+
build_pipeline_name?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Count of the normalized components within the artifact
|
|
16
|
+
*/
|
|
4
17
|
components_count?: number;
|
|
18
|
+
/**
|
|
19
|
+
* Artifact Identifier
|
|
20
|
+
*/
|
|
5
21
|
id: string;
|
|
22
|
+
/**
|
|
23
|
+
* Name of the artifact
|
|
24
|
+
*/
|
|
6
25
|
name: string;
|
|
26
|
+
/**
|
|
27
|
+
* Count of pre-production env in which artifact is deploye
|
|
28
|
+
*/
|
|
7
29
|
non_prod_env_count?: number;
|
|
30
|
+
/**
|
|
31
|
+
* Orchestration step identifier
|
|
32
|
+
*/
|
|
8
33
|
orchestration_id?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Count of production env in which artifact is deployed
|
|
36
|
+
*/
|
|
9
37
|
prod_env_count?: number;
|
|
38
|
+
/**
|
|
39
|
+
* Version of the artifact
|
|
40
|
+
*/
|
|
10
41
|
tag: string;
|
|
42
|
+
/**
|
|
43
|
+
* Last Updated time of artifact
|
|
44
|
+
*/
|
|
11
45
|
updated?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Registry url of the artifact
|
|
48
|
+
*/
|
|
12
49
|
url?: string;
|
|
13
50
|
}
|
|
@@ -4,6 +4,6 @@ export interface ArtifactListingRequestBody {
|
|
|
4
4
|
component_filter?: ComponentFilter[];
|
|
5
5
|
environment_type?: 'All' | 'NonProd' | 'None' | 'Prod';
|
|
6
6
|
license_filter?: LicenseFilter;
|
|
7
|
-
policy_violation?: 'ALLOW' | 'DENY';
|
|
7
|
+
policy_violation?: 'ALLOW' | 'ANY' | 'DENY' | 'NONE';
|
|
8
8
|
search_term?: string;
|
|
9
9
|
}
|