harness-mcp-v2 3.2.21 → 3.2.22
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.
- package/README.md +7 -7
- package/build/data/schemas/v0/pipeline.d.ts.map +1 -1
- package/build/data/schemas/v0/pipeline.js +967 -173
- package/build/data/schemas/v0/pipeline.js.map +1 -1
- package/build/data/schemas/v0/template.d.ts.map +1 -1
- package/build/data/schemas/v0/template.js +1323 -512
- package/build/data/schemas/v0/template.js.map +1 -1
- package/build/data/schemas/v1/pipeline.d.ts.map +1 -1
- package/build/data/schemas/v1/pipeline.js +8 -1
- package/build/data/schemas/v1/pipeline.js.map +1 -1
- package/build/data/schemas/v1/template.d.ts.map +1 -1
- package/build/data/schemas/v1/template.js +8 -1
- package/build/data/schemas/v1/template.js.map +1 -1
- package/build/index.js +2 -0
- package/build/index.js.map +1 -1
- package/build/registry/extractors.d.ts +8 -0
- package/build/registry/extractors.d.ts.map +1 -1
- package/build/registry/extractors.js +62 -0
- package/build/registry/extractors.js.map +1 -1
- package/build/registry/index.d.ts.map +1 -1
- package/build/registry/index.js +9 -1
- package/build/registry/index.js.map +1 -1
- package/build/registry/toolsets/access-control.js +1 -1
- package/build/registry/toolsets/access-control.js.map +1 -1
- package/build/registry/toolsets/agents.js +6 -6
- package/build/registry/toolsets/agents.js.map +1 -1
- package/build/registry/toolsets/alerts.d.ts +3 -0
- package/build/registry/toolsets/alerts.d.ts.map +1 -0
- package/build/registry/toolsets/alerts.js +234 -0
- package/build/registry/toolsets/alerts.js.map +1 -0
- package/build/registry/toolsets/connectors.js +1 -1
- package/build/registry/toolsets/connectors.js.map +1 -1
- package/build/registry/toolsets/environments.js +1 -1
- package/build/registry/toolsets/environments.js.map +1 -1
- package/build/registry/toolsets/incidents.d.ts.map +1 -1
- package/build/registry/toolsets/incidents.js +40 -15
- package/build/registry/toolsets/incidents.js.map +1 -1
- package/build/registry/toolsets/infrastructure.js +1 -1
- package/build/registry/toolsets/infrastructure.js.map +1 -1
- package/build/registry/toolsets/scopes.d.ts +1 -1
- package/build/registry/toolsets/scopes.js +1 -1
- package/build/registry/toolsets/secrets.js +1 -1
- package/build/registry/toolsets/secrets.js.map +1 -1
- package/build/registry/toolsets/services.js +1 -1
- package/build/registry/toolsets/services.js.map +1 -1
- package/build/registry/types.d.ts +1 -1
- package/build/registry/types.d.ts.map +1 -1
- package/build/tools/harness-create.js +3 -3
- package/build/tools/harness-create.js.map +1 -1
- package/build/tools/harness-delete.js +3 -3
- package/build/tools/harness-delete.js.map +1 -1
- package/build/tools/harness-describe.d.ts.map +1 -1
- package/build/tools/harness-describe.js +6 -3
- package/build/tools/harness-describe.js.map +1 -1
- package/build/tools/harness-diagnose.d.ts.map +1 -1
- package/build/tools/harness-diagnose.js +3 -2
- package/build/tools/harness-diagnose.js.map +1 -1
- package/build/tools/harness-execute.js +3 -3
- package/build/tools/harness-execute.js.map +1 -1
- package/build/tools/harness-get.js +4 -4
- package/build/tools/harness-get.js.map +1 -1
- package/build/tools/harness-list.js +5 -5
- package/build/tools/harness-list.js.map +1 -1
- package/build/tools/harness-search.d.ts.map +1 -1
- package/build/tools/harness-search.js +4 -3
- package/build/tools/harness-search.js.map +1 -1
- package/build/tools/harness-status.d.ts.map +1 -1
- package/build/tools/harness-status.js +3 -2
- package/build/tools/harness-status.js.map +1 -1
- package/build/tools/harness-update.js +3 -3
- package/build/tools/harness-update.js.map +1 -1
- package/build/tools/input-schemas.d.ts +17 -1
- package/build/tools/input-schemas.d.ts.map +1 -1
- package/build/tools/input-schemas.js +46 -2
- package/build/tools/input-schemas.js.map +1 -1
- package/build/utils/deep-links.d.ts +5 -0
- package/build/utils/deep-links.d.ts.map +1 -1
- package/build/utils/deep-links.js +12 -0
- package/build/utils/deep-links.js.map +1 -1
- package/build/utils/url-parser.d.ts.map +1 -1
- package/build/utils/url-parser.js +3 -1
- package/build/utils/url-parser.js.map +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
|
@@ -1820,6 +1820,125 @@ const schema = {
|
|
|
1820
1820
|
"assertion": {
|
|
1821
1821
|
"type": "string"
|
|
1822
1822
|
},
|
|
1823
|
+
"authentication": {
|
|
1824
|
+
"type": "object",
|
|
1825
|
+
"properties": {
|
|
1826
|
+
"type": {
|
|
1827
|
+
"type": "string",
|
|
1828
|
+
"enum": [
|
|
1829
|
+
"None",
|
|
1830
|
+
"Basic",
|
|
1831
|
+
"BearerToken",
|
|
1832
|
+
"ApiKey"
|
|
1833
|
+
],
|
|
1834
|
+
"default": "None"
|
|
1835
|
+
},
|
|
1836
|
+
"spec": {
|
|
1837
|
+
"type": "object",
|
|
1838
|
+
"properties": {
|
|
1839
|
+
"username": {
|
|
1840
|
+
"type": "string"
|
|
1841
|
+
},
|
|
1842
|
+
"password": {
|
|
1843
|
+
"type": "string"
|
|
1844
|
+
},
|
|
1845
|
+
"token": {
|
|
1846
|
+
"type": "string"
|
|
1847
|
+
},
|
|
1848
|
+
"keyName": {
|
|
1849
|
+
"type": "string"
|
|
1850
|
+
},
|
|
1851
|
+
"keyValue": {
|
|
1852
|
+
"type": "string"
|
|
1853
|
+
},
|
|
1854
|
+
"addTo": {
|
|
1855
|
+
"type": "string",
|
|
1856
|
+
"enum": [
|
|
1857
|
+
"Header",
|
|
1858
|
+
"QueryParameter"
|
|
1859
|
+
],
|
|
1860
|
+
"default": "Header"
|
|
1861
|
+
}
|
|
1862
|
+
}
|
|
1863
|
+
}
|
|
1864
|
+
},
|
|
1865
|
+
"allOf": [
|
|
1866
|
+
{
|
|
1867
|
+
"if": {
|
|
1868
|
+
"properties": {
|
|
1869
|
+
"type": {
|
|
1870
|
+
"const": "Basic"
|
|
1871
|
+
}
|
|
1872
|
+
},
|
|
1873
|
+
"required": [
|
|
1874
|
+
"type"
|
|
1875
|
+
]
|
|
1876
|
+
},
|
|
1877
|
+
"then": {
|
|
1878
|
+
"required": [
|
|
1879
|
+
"spec"
|
|
1880
|
+
],
|
|
1881
|
+
"properties": {
|
|
1882
|
+
"spec": {
|
|
1883
|
+
"required": [
|
|
1884
|
+
"username",
|
|
1885
|
+
"password"
|
|
1886
|
+
]
|
|
1887
|
+
}
|
|
1888
|
+
}
|
|
1889
|
+
}
|
|
1890
|
+
},
|
|
1891
|
+
{
|
|
1892
|
+
"if": {
|
|
1893
|
+
"properties": {
|
|
1894
|
+
"type": {
|
|
1895
|
+
"const": "BearerToken"
|
|
1896
|
+
}
|
|
1897
|
+
},
|
|
1898
|
+
"required": [
|
|
1899
|
+
"type"
|
|
1900
|
+
]
|
|
1901
|
+
},
|
|
1902
|
+
"then": {
|
|
1903
|
+
"required": [
|
|
1904
|
+
"spec"
|
|
1905
|
+
],
|
|
1906
|
+
"properties": {
|
|
1907
|
+
"spec": {
|
|
1908
|
+
"required": [
|
|
1909
|
+
"token"
|
|
1910
|
+
]
|
|
1911
|
+
}
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
"if": {
|
|
1917
|
+
"properties": {
|
|
1918
|
+
"type": {
|
|
1919
|
+
"const": "ApiKey"
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
"required": [
|
|
1923
|
+
"type"
|
|
1924
|
+
]
|
|
1925
|
+
},
|
|
1926
|
+
"then": {
|
|
1927
|
+
"required": [
|
|
1928
|
+
"spec"
|
|
1929
|
+
],
|
|
1930
|
+
"properties": {
|
|
1931
|
+
"spec": {
|
|
1932
|
+
"required": [
|
|
1933
|
+
"keyName",
|
|
1934
|
+
"keyValue"
|
|
1935
|
+
]
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1938
|
+
}
|
|
1939
|
+
}
|
|
1940
|
+
]
|
|
1941
|
+
},
|
|
1823
1942
|
"delegateSelectors": {
|
|
1824
1943
|
"oneOf": [
|
|
1825
1944
|
{
|
|
@@ -1897,6 +2016,125 @@ const schema = {
|
|
|
1897
2016
|
"assertion": {
|
|
1898
2017
|
"type": "string"
|
|
1899
2018
|
},
|
|
2019
|
+
"authentication": {
|
|
2020
|
+
"type": "object",
|
|
2021
|
+
"properties": {
|
|
2022
|
+
"type": {
|
|
2023
|
+
"type": "string",
|
|
2024
|
+
"enum": [
|
|
2025
|
+
"None",
|
|
2026
|
+
"Basic",
|
|
2027
|
+
"BearerToken",
|
|
2028
|
+
"ApiKey"
|
|
2029
|
+
],
|
|
2030
|
+
"default": "None"
|
|
2031
|
+
},
|
|
2032
|
+
"spec": {
|
|
2033
|
+
"type": "object",
|
|
2034
|
+
"properties": {
|
|
2035
|
+
"username": {
|
|
2036
|
+
"type": "string"
|
|
2037
|
+
},
|
|
2038
|
+
"password": {
|
|
2039
|
+
"type": "string"
|
|
2040
|
+
},
|
|
2041
|
+
"token": {
|
|
2042
|
+
"type": "string"
|
|
2043
|
+
},
|
|
2044
|
+
"keyName": {
|
|
2045
|
+
"type": "string"
|
|
2046
|
+
},
|
|
2047
|
+
"keyValue": {
|
|
2048
|
+
"type": "string"
|
|
2049
|
+
},
|
|
2050
|
+
"addTo": {
|
|
2051
|
+
"type": "string",
|
|
2052
|
+
"enum": [
|
|
2053
|
+
"Header",
|
|
2054
|
+
"QueryParameter"
|
|
2055
|
+
],
|
|
2056
|
+
"default": "Header"
|
|
2057
|
+
}
|
|
2058
|
+
}
|
|
2059
|
+
}
|
|
2060
|
+
},
|
|
2061
|
+
"allOf": [
|
|
2062
|
+
{
|
|
2063
|
+
"if": {
|
|
2064
|
+
"properties": {
|
|
2065
|
+
"type": {
|
|
2066
|
+
"const": "Basic"
|
|
2067
|
+
}
|
|
2068
|
+
},
|
|
2069
|
+
"required": [
|
|
2070
|
+
"type"
|
|
2071
|
+
]
|
|
2072
|
+
},
|
|
2073
|
+
"then": {
|
|
2074
|
+
"required": [
|
|
2075
|
+
"spec"
|
|
2076
|
+
],
|
|
2077
|
+
"properties": {
|
|
2078
|
+
"spec": {
|
|
2079
|
+
"required": [
|
|
2080
|
+
"username",
|
|
2081
|
+
"password"
|
|
2082
|
+
]
|
|
2083
|
+
}
|
|
2084
|
+
}
|
|
2085
|
+
}
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"if": {
|
|
2089
|
+
"properties": {
|
|
2090
|
+
"type": {
|
|
2091
|
+
"const": "BearerToken"
|
|
2092
|
+
}
|
|
2093
|
+
},
|
|
2094
|
+
"required": [
|
|
2095
|
+
"type"
|
|
2096
|
+
]
|
|
2097
|
+
},
|
|
2098
|
+
"then": {
|
|
2099
|
+
"required": [
|
|
2100
|
+
"spec"
|
|
2101
|
+
],
|
|
2102
|
+
"properties": {
|
|
2103
|
+
"spec": {
|
|
2104
|
+
"required": [
|
|
2105
|
+
"token"
|
|
2106
|
+
]
|
|
2107
|
+
}
|
|
2108
|
+
}
|
|
2109
|
+
}
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"if": {
|
|
2113
|
+
"properties": {
|
|
2114
|
+
"type": {
|
|
2115
|
+
"const": "ApiKey"
|
|
2116
|
+
}
|
|
2117
|
+
},
|
|
2118
|
+
"required": [
|
|
2119
|
+
"type"
|
|
2120
|
+
]
|
|
2121
|
+
},
|
|
2122
|
+
"then": {
|
|
2123
|
+
"required": [
|
|
2124
|
+
"spec"
|
|
2125
|
+
],
|
|
2126
|
+
"properties": {
|
|
2127
|
+
"spec": {
|
|
2128
|
+
"required": [
|
|
2129
|
+
"keyName",
|
|
2130
|
+
"keyValue"
|
|
2131
|
+
]
|
|
2132
|
+
}
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
2136
|
+
]
|
|
2137
|
+
},
|
|
1900
2138
|
"delegateSelectors": {
|
|
1901
2139
|
"oneOf": [
|
|
1902
2140
|
{
|
|
@@ -16059,6 +16297,22 @@ const schema = {
|
|
|
16059
16297
|
}
|
|
16060
16298
|
}
|
|
16061
16299
|
}
|
|
16300
|
+
},
|
|
16301
|
+
{
|
|
16302
|
+
"if": {
|
|
16303
|
+
"properties": {
|
|
16304
|
+
"type": {
|
|
16305
|
+
"const": "ClaudeCodeSecurity"
|
|
16306
|
+
}
|
|
16307
|
+
}
|
|
16308
|
+
},
|
|
16309
|
+
"then": {
|
|
16310
|
+
"properties": {
|
|
16311
|
+
"spec": {
|
|
16312
|
+
"$ref": "#/definitions/pipeline/steps/common/ClaudeCodeSecurityStepInfo"
|
|
16313
|
+
}
|
|
16314
|
+
}
|
|
16315
|
+
}
|
|
16062
16316
|
}
|
|
16063
16317
|
]
|
|
16064
16318
|
},
|
|
@@ -28605,17 +28859,292 @@ const schema = {
|
|
|
28605
28859
|
"ingestion": {
|
|
28606
28860
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlIngestion"
|
|
28607
28861
|
},
|
|
28608
|
-
"instance": {
|
|
28609
|
-
"$ref": "#/definitions/pipeline/steps/common/STOYamlInstance"
|
|
28610
|
-
},
|
|
28862
|
+
"instance": {
|
|
28863
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlInstance"
|
|
28864
|
+
},
|
|
28865
|
+
"mode": {
|
|
28866
|
+
"oneOf": [
|
|
28867
|
+
{
|
|
28868
|
+
"type": "string",
|
|
28869
|
+
"enum": [
|
|
28870
|
+
"ingestion",
|
|
28871
|
+
"orchestration",
|
|
28872
|
+
"extraction"
|
|
28873
|
+
]
|
|
28874
|
+
},
|
|
28875
|
+
{
|
|
28876
|
+
"type": "string",
|
|
28877
|
+
"pattern": "(<\\+.+>.*)",
|
|
28878
|
+
"minLength": 1
|
|
28879
|
+
}
|
|
28880
|
+
]
|
|
28881
|
+
},
|
|
28882
|
+
"outputVariables": {
|
|
28883
|
+
"oneOf": [
|
|
28884
|
+
{
|
|
28885
|
+
"type": "array",
|
|
28886
|
+
"items": {
|
|
28887
|
+
"$ref": "#/definitions/pipeline/common/OutputNGVariable"
|
|
28888
|
+
}
|
|
28889
|
+
},
|
|
28890
|
+
{
|
|
28891
|
+
"type": "string",
|
|
28892
|
+
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
28893
|
+
"minLength": 1
|
|
28894
|
+
}
|
|
28895
|
+
]
|
|
28896
|
+
},
|
|
28897
|
+
"privileged": {
|
|
28898
|
+
"oneOf": [
|
|
28899
|
+
{
|
|
28900
|
+
"type": "boolean"
|
|
28901
|
+
},
|
|
28902
|
+
{
|
|
28903
|
+
"type": "string",
|
|
28904
|
+
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
28905
|
+
"minLength": 1
|
|
28906
|
+
}
|
|
28907
|
+
]
|
|
28908
|
+
},
|
|
28909
|
+
"resources": {
|
|
28910
|
+
"$ref": "#/definitions/pipeline/common/ContainerResource"
|
|
28911
|
+
},
|
|
28912
|
+
"runAsUser": {
|
|
28913
|
+
"oneOf": [
|
|
28914
|
+
{
|
|
28915
|
+
"type": "integer",
|
|
28916
|
+
"format": "int32"
|
|
28917
|
+
},
|
|
28918
|
+
{
|
|
28919
|
+
"type": "string"
|
|
28920
|
+
}
|
|
28921
|
+
]
|
|
28922
|
+
},
|
|
28923
|
+
"settings": {
|
|
28924
|
+
"oneOf": [
|
|
28925
|
+
{
|
|
28926
|
+
"$ref": "#/definitions/pipeline/common/ParameterFieldMapStringJsonNode"
|
|
28927
|
+
},
|
|
28928
|
+
{
|
|
28929
|
+
"type": "string"
|
|
28930
|
+
}
|
|
28931
|
+
]
|
|
28932
|
+
},
|
|
28933
|
+
"target": {
|
|
28934
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
28935
|
+
},
|
|
28936
|
+
"tool": {
|
|
28937
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlZapToolData"
|
|
28938
|
+
},
|
|
28939
|
+
"description": {
|
|
28940
|
+
"desc": "This is the description for ZapStepInfo"
|
|
28941
|
+
}
|
|
28942
|
+
}
|
|
28943
|
+
},
|
|
28944
|
+
"STOYamlZapToolData": {
|
|
28945
|
+
"title": "STOYamlZapToolData",
|
|
28946
|
+
"type": "object",
|
|
28947
|
+
"properties": {
|
|
28948
|
+
"context": {
|
|
28949
|
+
"type": "string"
|
|
28950
|
+
},
|
|
28951
|
+
"port": {
|
|
28952
|
+
"oneOf": [
|
|
28953
|
+
{
|
|
28954
|
+
"type": "integer",
|
|
28955
|
+
"format": "int32"
|
|
28956
|
+
},
|
|
28957
|
+
{
|
|
28958
|
+
"type": "string",
|
|
28959
|
+
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
28960
|
+
"minLength": 1
|
|
28961
|
+
}
|
|
28962
|
+
]
|
|
28963
|
+
},
|
|
28964
|
+
"description": {
|
|
28965
|
+
"desc": "This is the description for STOYamlZapToolData"
|
|
28966
|
+
}
|
|
28967
|
+
},
|
|
28968
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
28969
|
+
},
|
|
28970
|
+
"ModelScanStepInfo": {
|
|
28971
|
+
"title": "ModelScanStepInfo",
|
|
28972
|
+
"allOf": [
|
|
28973
|
+
{
|
|
28974
|
+
"$ref": "#/definitions/pipeline/common/StepSpecType"
|
|
28975
|
+
},
|
|
28976
|
+
{
|
|
28977
|
+
"type": "object",
|
|
28978
|
+
"required": [
|
|
28979
|
+
"config",
|
|
28980
|
+
"mode",
|
|
28981
|
+
"target"
|
|
28982
|
+
],
|
|
28983
|
+
"properties": {
|
|
28984
|
+
"advanced": {
|
|
28985
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlAdvancedSettings"
|
|
28986
|
+
},
|
|
28987
|
+
"baseImageConnectorRefs": {
|
|
28988
|
+
"$ref": "#/definitions/pipeline/steps/ci/ParameterFieldListString"
|
|
28989
|
+
},
|
|
28990
|
+
"config": {
|
|
28991
|
+
"type": "string",
|
|
28992
|
+
"enum": [
|
|
28993
|
+
"default"
|
|
28994
|
+
]
|
|
28995
|
+
},
|
|
28996
|
+
"connectorRef": {
|
|
28997
|
+
"type": "string"
|
|
28998
|
+
},
|
|
28999
|
+
"imageTag": {
|
|
29000
|
+
"type": "string"
|
|
29001
|
+
},
|
|
29002
|
+
"imagePullPolicy": {
|
|
29003
|
+
"oneOf": [
|
|
29004
|
+
{
|
|
29005
|
+
"type": "string",
|
|
29006
|
+
"enum": [
|
|
29007
|
+
"Always",
|
|
29008
|
+
"Never",
|
|
29009
|
+
"IfNotPresent"
|
|
29010
|
+
]
|
|
29011
|
+
},
|
|
29012
|
+
{
|
|
29013
|
+
"type": "string",
|
|
29014
|
+
"pattern": "(<\\+.+>.*)",
|
|
29015
|
+
"minLength": 1
|
|
29016
|
+
}
|
|
29017
|
+
]
|
|
29018
|
+
},
|
|
29019
|
+
"ingestion": {
|
|
29020
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlIngestion"
|
|
29021
|
+
},
|
|
29022
|
+
"mode": {
|
|
29023
|
+
"oneOf": [
|
|
29024
|
+
{
|
|
29025
|
+
"type": "string",
|
|
29026
|
+
"enum": [
|
|
29027
|
+
"ingestion",
|
|
29028
|
+
"orchestration"
|
|
29029
|
+
]
|
|
29030
|
+
},
|
|
29031
|
+
{
|
|
29032
|
+
"type": "string",
|
|
29033
|
+
"pattern": "(<\\+.+>.*)",
|
|
29034
|
+
"minLength": 1
|
|
29035
|
+
}
|
|
29036
|
+
]
|
|
29037
|
+
},
|
|
29038
|
+
"outputVariables": {
|
|
29039
|
+
"oneOf": [
|
|
29040
|
+
{
|
|
29041
|
+
"type": "array",
|
|
29042
|
+
"items": {
|
|
29043
|
+
"$ref": "#/definitions/pipeline/common/OutputNGVariable"
|
|
29044
|
+
}
|
|
29045
|
+
},
|
|
29046
|
+
{
|
|
29047
|
+
"type": "string",
|
|
29048
|
+
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
29049
|
+
"minLength": 1
|
|
29050
|
+
}
|
|
29051
|
+
]
|
|
29052
|
+
},
|
|
29053
|
+
"privileged": {
|
|
29054
|
+
"oneOf": [
|
|
29055
|
+
{
|
|
29056
|
+
"type": "boolean"
|
|
29057
|
+
},
|
|
29058
|
+
{
|
|
29059
|
+
"type": "string",
|
|
29060
|
+
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
29061
|
+
"minLength": 1
|
|
29062
|
+
}
|
|
29063
|
+
]
|
|
29064
|
+
},
|
|
29065
|
+
"resources": {
|
|
29066
|
+
"$ref": "#/definitions/pipeline/common/ContainerResource"
|
|
29067
|
+
},
|
|
29068
|
+
"runAsUser": {
|
|
29069
|
+
"oneOf": [
|
|
29070
|
+
{
|
|
29071
|
+
"type": "integer",
|
|
29072
|
+
"format": "int32"
|
|
29073
|
+
},
|
|
29074
|
+
{
|
|
29075
|
+
"type": "string"
|
|
29076
|
+
}
|
|
29077
|
+
]
|
|
29078
|
+
},
|
|
29079
|
+
"settings": {
|
|
29080
|
+
"oneOf": [
|
|
29081
|
+
{
|
|
29082
|
+
"$ref": "#/definitions/pipeline/common/ParameterFieldMapStringJsonNode"
|
|
29083
|
+
},
|
|
29084
|
+
{
|
|
29085
|
+
"type": "string"
|
|
29086
|
+
}
|
|
29087
|
+
]
|
|
29088
|
+
},
|
|
29089
|
+
"target": {
|
|
29090
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
29091
|
+
}
|
|
29092
|
+
}
|
|
29093
|
+
}
|
|
29094
|
+
],
|
|
29095
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
29096
|
+
"type": "object",
|
|
29097
|
+
"required": [
|
|
29098
|
+
"config",
|
|
29099
|
+
"mode",
|
|
29100
|
+
"target"
|
|
29101
|
+
],
|
|
29102
|
+
"properties": {
|
|
29103
|
+
"advanced": {
|
|
29104
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlAdvancedSettings"
|
|
29105
|
+
},
|
|
29106
|
+
"baseImageConnectorRefs": {
|
|
29107
|
+
"$ref": "#/definitions/pipeline/steps/ci/ParameterFieldListString"
|
|
29108
|
+
},
|
|
29109
|
+
"config": {
|
|
29110
|
+
"type": "string",
|
|
29111
|
+
"enum": [
|
|
29112
|
+
"default"
|
|
29113
|
+
]
|
|
29114
|
+
},
|
|
29115
|
+
"connectorRef": {
|
|
29116
|
+
"type": "string"
|
|
29117
|
+
},
|
|
29118
|
+
"imageTag": {
|
|
29119
|
+
"type": "string"
|
|
29120
|
+
},
|
|
29121
|
+
"imagePullPolicy": {
|
|
29122
|
+
"oneOf": [
|
|
29123
|
+
{
|
|
29124
|
+
"type": "string",
|
|
29125
|
+
"enum": [
|
|
29126
|
+
"Always",
|
|
29127
|
+
"Never",
|
|
29128
|
+
"IfNotPresent"
|
|
29129
|
+
]
|
|
29130
|
+
},
|
|
29131
|
+
{
|
|
29132
|
+
"type": "string",
|
|
29133
|
+
"pattern": "(<\\+.+>.*)",
|
|
29134
|
+
"minLength": 1
|
|
29135
|
+
}
|
|
29136
|
+
]
|
|
29137
|
+
},
|
|
29138
|
+
"ingestion": {
|
|
29139
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlIngestion"
|
|
29140
|
+
},
|
|
28611
29141
|
"mode": {
|
|
28612
29142
|
"oneOf": [
|
|
28613
29143
|
{
|
|
28614
29144
|
"type": "string",
|
|
28615
29145
|
"enum": [
|
|
28616
29146
|
"ingestion",
|
|
28617
|
-
"orchestration"
|
|
28618
|
-
"extraction"
|
|
29147
|
+
"orchestration"
|
|
28619
29148
|
]
|
|
28620
29149
|
},
|
|
28621
29150
|
{
|
|
@@ -28679,42 +29208,13 @@ const schema = {
|
|
|
28679
29208
|
"target": {
|
|
28680
29209
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
28681
29210
|
},
|
|
28682
|
-
"tool": {
|
|
28683
|
-
"$ref": "#/definitions/pipeline/steps/common/STOYamlZapToolData"
|
|
28684
|
-
},
|
|
28685
29211
|
"description": {
|
|
28686
|
-
"desc": "This is the description for
|
|
29212
|
+
"desc": "This is the description for ModelScanStepInfo"
|
|
28687
29213
|
}
|
|
28688
29214
|
}
|
|
28689
29215
|
},
|
|
28690
|
-
"
|
|
28691
|
-
"title": "
|
|
28692
|
-
"type": "object",
|
|
28693
|
-
"properties": {
|
|
28694
|
-
"context": {
|
|
28695
|
-
"type": "string"
|
|
28696
|
-
},
|
|
28697
|
-
"port": {
|
|
28698
|
-
"oneOf": [
|
|
28699
|
-
{
|
|
28700
|
-
"type": "integer",
|
|
28701
|
-
"format": "int32"
|
|
28702
|
-
},
|
|
28703
|
-
{
|
|
28704
|
-
"type": "string",
|
|
28705
|
-
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
28706
|
-
"minLength": 1
|
|
28707
|
-
}
|
|
28708
|
-
]
|
|
28709
|
-
},
|
|
28710
|
-
"description": {
|
|
28711
|
-
"desc": "This is the description for STOYamlZapToolData"
|
|
28712
|
-
}
|
|
28713
|
-
},
|
|
28714
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
28715
|
-
},
|
|
28716
|
-
"ModelScanStepInfo": {
|
|
28717
|
-
"title": "ModelScanStepInfo",
|
|
29216
|
+
"OpenAiStepInfo": {
|
|
29217
|
+
"title": "OpenAiStepInfo",
|
|
28718
29218
|
"allOf": [
|
|
28719
29219
|
{
|
|
28720
29220
|
"$ref": "#/definitions/pipeline/common/StepSpecType"
|
|
@@ -28730,18 +29230,43 @@ const schema = {
|
|
|
28730
29230
|
"advanced": {
|
|
28731
29231
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlAdvancedSettings"
|
|
28732
29232
|
},
|
|
29233
|
+
"auth": {
|
|
29234
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlAuth"
|
|
29235
|
+
},
|
|
28733
29236
|
"baseImageConnectorRefs": {
|
|
28734
29237
|
"$ref": "#/definitions/pipeline/steps/ci/ParameterFieldListString"
|
|
28735
29238
|
},
|
|
28736
29239
|
"config": {
|
|
28737
|
-
"
|
|
28738
|
-
|
|
28739
|
-
|
|
29240
|
+
"oneOf": [
|
|
29241
|
+
{
|
|
29242
|
+
"type": "string",
|
|
29243
|
+
"enum": [
|
|
29244
|
+
"default",
|
|
29245
|
+
"full",
|
|
29246
|
+
"incremental"
|
|
29247
|
+
]
|
|
29248
|
+
},
|
|
29249
|
+
{
|
|
29250
|
+
"type": "string",
|
|
29251
|
+
"pattern": "(<\\+.+>.*)",
|
|
29252
|
+
"minLength": 1
|
|
29253
|
+
}
|
|
28740
29254
|
]
|
|
28741
29255
|
},
|
|
28742
29256
|
"connectorRef": {
|
|
28743
29257
|
"type": "string"
|
|
28744
29258
|
},
|
|
29259
|
+
"llmConnectorRef": {
|
|
29260
|
+
"description": "Harness LLM connector reference for Codex authentication (OpenAI or Anthropic)",
|
|
29261
|
+
"oneOf": [
|
|
29262
|
+
{
|
|
29263
|
+
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
29264
|
+
},
|
|
29265
|
+
{
|
|
29266
|
+
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
29267
|
+
}
|
|
29268
|
+
]
|
|
29269
|
+
},
|
|
28745
29270
|
"imageTag": {
|
|
28746
29271
|
"type": "string"
|
|
28747
29272
|
},
|
|
@@ -28834,6 +29359,9 @@ const schema = {
|
|
|
28834
29359
|
},
|
|
28835
29360
|
"target": {
|
|
28836
29361
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
29362
|
+
},
|
|
29363
|
+
"tool": {
|
|
29364
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlOpenAiToolData"
|
|
28837
29365
|
}
|
|
28838
29366
|
}
|
|
28839
29367
|
}
|
|
@@ -28849,18 +29377,43 @@ const schema = {
|
|
|
28849
29377
|
"advanced": {
|
|
28850
29378
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlAdvancedSettings"
|
|
28851
29379
|
},
|
|
29380
|
+
"auth": {
|
|
29381
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlAuth"
|
|
29382
|
+
},
|
|
28852
29383
|
"baseImageConnectorRefs": {
|
|
28853
29384
|
"$ref": "#/definitions/pipeline/steps/ci/ParameterFieldListString"
|
|
28854
29385
|
},
|
|
28855
29386
|
"config": {
|
|
28856
|
-
"
|
|
28857
|
-
|
|
28858
|
-
|
|
29387
|
+
"oneOf": [
|
|
29388
|
+
{
|
|
29389
|
+
"type": "string",
|
|
29390
|
+
"enum": [
|
|
29391
|
+
"default",
|
|
29392
|
+
"full",
|
|
29393
|
+
"incremental"
|
|
29394
|
+
]
|
|
29395
|
+
},
|
|
29396
|
+
{
|
|
29397
|
+
"type": "string",
|
|
29398
|
+
"pattern": "(<\\+.+>.*)",
|
|
29399
|
+
"minLength": 1
|
|
29400
|
+
}
|
|
28859
29401
|
]
|
|
28860
29402
|
},
|
|
28861
29403
|
"connectorRef": {
|
|
28862
29404
|
"type": "string"
|
|
28863
29405
|
},
|
|
29406
|
+
"llmConnectorRef": {
|
|
29407
|
+
"description": "Harness LLM connector reference for Codex authentication (OpenAI or Anthropic)",
|
|
29408
|
+
"oneOf": [
|
|
29409
|
+
{
|
|
29410
|
+
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
29411
|
+
},
|
|
29412
|
+
{
|
|
29413
|
+
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
29414
|
+
}
|
|
29415
|
+
]
|
|
29416
|
+
},
|
|
28864
29417
|
"imageTag": {
|
|
28865
29418
|
"type": "string"
|
|
28866
29419
|
},
|
|
@@ -28954,13 +29507,29 @@ const schema = {
|
|
|
28954
29507
|
"target": {
|
|
28955
29508
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
28956
29509
|
},
|
|
29510
|
+
"tool": {
|
|
29511
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlOpenAiToolData"
|
|
29512
|
+
},
|
|
28957
29513
|
"description": {
|
|
28958
|
-
"desc": "This is the description for
|
|
29514
|
+
"desc": "This is the description for OpenAiStepInfo"
|
|
28959
29515
|
}
|
|
28960
29516
|
}
|
|
28961
29517
|
},
|
|
28962
|
-
"
|
|
28963
|
-
"title": "
|
|
29518
|
+
"STOYamlOpenAiToolData": {
|
|
29519
|
+
"title": "STOYamlOpenAiToolData",
|
|
29520
|
+
"type": "object",
|
|
29521
|
+
"properties": {
|
|
29522
|
+
"model": {
|
|
29523
|
+
"type": "string"
|
|
29524
|
+
},
|
|
29525
|
+
"description": {
|
|
29526
|
+
"desc": "This is the description for STOYamlOpenAiToolData"
|
|
29527
|
+
}
|
|
29528
|
+
},
|
|
29529
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
29530
|
+
},
|
|
29531
|
+
"MythosAgentStepInfo": {
|
|
29532
|
+
"title": "MythosAgentStepInfo",
|
|
28964
29533
|
"allOf": [
|
|
28965
29534
|
{
|
|
28966
29535
|
"$ref": "#/definitions/pipeline/common/StepSpecType"
|
|
@@ -28983,25 +29552,27 @@ const schema = {
|
|
|
28983
29552
|
"$ref": "#/definitions/pipeline/steps/ci/ParameterFieldListString"
|
|
28984
29553
|
},
|
|
28985
29554
|
"config": {
|
|
29555
|
+
"type": "string",
|
|
29556
|
+
"enum": [
|
|
29557
|
+
"hunt_full",
|
|
29558
|
+
"hunt_incremental",
|
|
29559
|
+
"scan"
|
|
29560
|
+
]
|
|
29561
|
+
},
|
|
29562
|
+
"connectorRef": {
|
|
29563
|
+
"type": "string"
|
|
29564
|
+
},
|
|
29565
|
+
"llmConnectorRef": {
|
|
29566
|
+
"description": "Harness LLM connector reference for Mythos Agent authentication (OpenAI or Anthropic)",
|
|
28986
29567
|
"oneOf": [
|
|
28987
29568
|
{
|
|
28988
|
-
"
|
|
28989
|
-
"enum": [
|
|
28990
|
-
"default",
|
|
28991
|
-
"full",
|
|
28992
|
-
"incremental"
|
|
28993
|
-
]
|
|
29569
|
+
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
28994
29570
|
},
|
|
28995
29571
|
{
|
|
28996
|
-
"
|
|
28997
|
-
"pattern": "(<\\+.+>.*)",
|
|
28998
|
-
"minLength": 1
|
|
29572
|
+
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
28999
29573
|
}
|
|
29000
29574
|
]
|
|
29001
29575
|
},
|
|
29002
|
-
"connectorRef": {
|
|
29003
|
-
"type": "string"
|
|
29004
|
-
},
|
|
29005
29576
|
"imageTag": {
|
|
29006
29577
|
"type": "string"
|
|
29007
29578
|
},
|
|
@@ -29094,6 +29665,9 @@ const schema = {
|
|
|
29094
29665
|
},
|
|
29095
29666
|
"target": {
|
|
29096
29667
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
29668
|
+
},
|
|
29669
|
+
"tool": {
|
|
29670
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlMythosAgentToolData"
|
|
29097
29671
|
}
|
|
29098
29672
|
}
|
|
29099
29673
|
}
|
|
@@ -29116,25 +29690,27 @@ const schema = {
|
|
|
29116
29690
|
"$ref": "#/definitions/pipeline/steps/ci/ParameterFieldListString"
|
|
29117
29691
|
},
|
|
29118
29692
|
"config": {
|
|
29693
|
+
"type": "string",
|
|
29694
|
+
"enum": [
|
|
29695
|
+
"hunt_full",
|
|
29696
|
+
"hunt_incremental",
|
|
29697
|
+
"scan"
|
|
29698
|
+
]
|
|
29699
|
+
},
|
|
29700
|
+
"connectorRef": {
|
|
29701
|
+
"type": "string"
|
|
29702
|
+
},
|
|
29703
|
+
"llmConnectorRef": {
|
|
29704
|
+
"description": "Harness LLM connector reference for Mythos Agent authentication (OpenAI or Anthropic)",
|
|
29119
29705
|
"oneOf": [
|
|
29120
29706
|
{
|
|
29121
|
-
"
|
|
29122
|
-
"enum": [
|
|
29123
|
-
"default",
|
|
29124
|
-
"full",
|
|
29125
|
-
"incremental"
|
|
29126
|
-
]
|
|
29707
|
+
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
29127
29708
|
},
|
|
29128
29709
|
{
|
|
29129
|
-
"
|
|
29130
|
-
"pattern": "(<\\+.+>.*)",
|
|
29131
|
-
"minLength": 1
|
|
29710
|
+
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
29132
29711
|
}
|
|
29133
29712
|
]
|
|
29134
29713
|
},
|
|
29135
|
-
"connectorRef": {
|
|
29136
|
-
"type": "string"
|
|
29137
|
-
},
|
|
29138
29714
|
"imageTag": {
|
|
29139
29715
|
"type": "string"
|
|
29140
29716
|
},
|
|
@@ -29228,13 +29804,32 @@ const schema = {
|
|
|
29228
29804
|
"target": {
|
|
29229
29805
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
29230
29806
|
},
|
|
29807
|
+
"tool": {
|
|
29808
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlMythosAgentToolData"
|
|
29809
|
+
},
|
|
29231
29810
|
"description": {
|
|
29232
|
-
"desc": "This is the description for
|
|
29811
|
+
"desc": "This is the description for MythosAgentStepInfo"
|
|
29233
29812
|
}
|
|
29234
29813
|
}
|
|
29235
29814
|
},
|
|
29236
|
-
"
|
|
29237
|
-
"title": "
|
|
29815
|
+
"STOYamlMythosAgentToolData": {
|
|
29816
|
+
"title": "STOYamlMythosAgentToolData",
|
|
29817
|
+
"type": "object",
|
|
29818
|
+
"properties": {
|
|
29819
|
+
"model": {
|
|
29820
|
+
"type": "string"
|
|
29821
|
+
},
|
|
29822
|
+
"base_url": {
|
|
29823
|
+
"type": "string"
|
|
29824
|
+
},
|
|
29825
|
+
"description": {
|
|
29826
|
+
"desc": "This is the description for STOYamlMythosAgentToolData"
|
|
29827
|
+
}
|
|
29828
|
+
},
|
|
29829
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
29830
|
+
},
|
|
29831
|
+
"ClaudeCodeSecurityStepInfo": {
|
|
29832
|
+
"title": "ClaudeCodeSecurityStepInfo",
|
|
29238
29833
|
"allOf": [
|
|
29239
29834
|
{
|
|
29240
29835
|
"$ref": "#/definitions/pipeline/common/StepSpecType"
|
|
@@ -29257,16 +29852,34 @@ const schema = {
|
|
|
29257
29852
|
"$ref": "#/definitions/pipeline/steps/ci/ParameterFieldListString"
|
|
29258
29853
|
},
|
|
29259
29854
|
"config": {
|
|
29260
|
-
"
|
|
29261
|
-
|
|
29262
|
-
|
|
29263
|
-
|
|
29264
|
-
|
|
29855
|
+
"oneOf": [
|
|
29856
|
+
{
|
|
29857
|
+
"type": "string",
|
|
29858
|
+
"enum": [
|
|
29859
|
+
"pr_scan"
|
|
29860
|
+
]
|
|
29861
|
+
},
|
|
29862
|
+
{
|
|
29863
|
+
"type": "string",
|
|
29864
|
+
"pattern": "(<\\+.+>.*)",
|
|
29865
|
+
"minLength": 1
|
|
29866
|
+
}
|
|
29265
29867
|
]
|
|
29266
29868
|
},
|
|
29267
29869
|
"connectorRef": {
|
|
29268
29870
|
"type": "string"
|
|
29269
29871
|
},
|
|
29872
|
+
"llmConnectorRef": {
|
|
29873
|
+
"description": "Harness LLM connector reference for Claude Code Security authentication (Anthropic)",
|
|
29874
|
+
"oneOf": [
|
|
29875
|
+
{
|
|
29876
|
+
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
29877
|
+
},
|
|
29878
|
+
{
|
|
29879
|
+
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
29880
|
+
}
|
|
29881
|
+
]
|
|
29882
|
+
},
|
|
29270
29883
|
"imageTag": {
|
|
29271
29884
|
"type": "string"
|
|
29272
29885
|
},
|
|
@@ -29361,7 +29974,7 @@ const schema = {
|
|
|
29361
29974
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
29362
29975
|
},
|
|
29363
29976
|
"tool": {
|
|
29364
|
-
"$ref": "#/definitions/pipeline/steps/common/
|
|
29977
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlClaudeCodeSecurityToolData"
|
|
29365
29978
|
}
|
|
29366
29979
|
}
|
|
29367
29980
|
}
|
|
@@ -29384,16 +29997,34 @@ const schema = {
|
|
|
29384
29997
|
"$ref": "#/definitions/pipeline/steps/ci/ParameterFieldListString"
|
|
29385
29998
|
},
|
|
29386
29999
|
"config": {
|
|
29387
|
-
"
|
|
29388
|
-
|
|
29389
|
-
|
|
29390
|
-
|
|
29391
|
-
|
|
30000
|
+
"oneOf": [
|
|
30001
|
+
{
|
|
30002
|
+
"type": "string",
|
|
30003
|
+
"enum": [
|
|
30004
|
+
"pr_scan"
|
|
30005
|
+
]
|
|
30006
|
+
},
|
|
30007
|
+
{
|
|
30008
|
+
"type": "string",
|
|
30009
|
+
"pattern": "(<\\+.+>.*)",
|
|
30010
|
+
"minLength": 1
|
|
30011
|
+
}
|
|
29392
30012
|
]
|
|
29393
30013
|
},
|
|
29394
30014
|
"connectorRef": {
|
|
29395
30015
|
"type": "string"
|
|
29396
30016
|
},
|
|
30017
|
+
"llmConnectorRef": {
|
|
30018
|
+
"description": "Harness LLM connector reference for Claude Code Security authentication (Anthropic)",
|
|
30019
|
+
"oneOf": [
|
|
30020
|
+
{
|
|
30021
|
+
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
30022
|
+
},
|
|
30023
|
+
{
|
|
30024
|
+
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
30025
|
+
}
|
|
30026
|
+
]
|
|
30027
|
+
},
|
|
29397
30028
|
"imageTag": {
|
|
29398
30029
|
"type": "string"
|
|
29399
30030
|
},
|
|
@@ -29488,25 +30119,22 @@ const schema = {
|
|
|
29488
30119
|
"$ref": "#/definitions/pipeline/steps/common/STOYamlTarget"
|
|
29489
30120
|
},
|
|
29490
30121
|
"tool": {
|
|
29491
|
-
"$ref": "#/definitions/pipeline/steps/common/
|
|
30122
|
+
"$ref": "#/definitions/pipeline/steps/common/STOYamlClaudeCodeSecurityToolData"
|
|
29492
30123
|
},
|
|
29493
30124
|
"description": {
|
|
29494
|
-
"desc": "This is the description for
|
|
30125
|
+
"desc": "This is the description for ClaudeCodeSecurityStepInfo"
|
|
29495
30126
|
}
|
|
29496
30127
|
}
|
|
29497
30128
|
},
|
|
29498
|
-
"
|
|
29499
|
-
"title": "
|
|
30129
|
+
"STOYamlClaudeCodeSecurityToolData": {
|
|
30130
|
+
"title": "STOYamlClaudeCodeSecurityToolData",
|
|
29500
30131
|
"type": "object",
|
|
29501
30132
|
"properties": {
|
|
29502
30133
|
"model": {
|
|
29503
30134
|
"type": "string"
|
|
29504
30135
|
},
|
|
29505
|
-
"base_url": {
|
|
29506
|
-
"type": "string"
|
|
29507
|
-
},
|
|
29508
30136
|
"description": {
|
|
29509
|
-
"desc": "This is the description for
|
|
30137
|
+
"desc": "This is the description for STOYamlClaudeCodeSecurityToolData"
|
|
29510
30138
|
}
|
|
29511
30139
|
},
|
|
29512
30140
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
@@ -43346,6 +43974,101 @@ const schema = {
|
|
|
43346
43974
|
}
|
|
43347
43975
|
]
|
|
43348
43976
|
},
|
|
43977
|
+
"ClaudeCodeSecurityNode": {
|
|
43978
|
+
"title": "ClaudeCodeSecurityNode",
|
|
43979
|
+
"type": "object",
|
|
43980
|
+
"required": [
|
|
43981
|
+
"identifier",
|
|
43982
|
+
"name",
|
|
43983
|
+
"spec",
|
|
43984
|
+
"type"
|
|
43985
|
+
],
|
|
43986
|
+
"properties": {
|
|
43987
|
+
"description": {
|
|
43988
|
+
"type": "string",
|
|
43989
|
+
"desc": "This is the description for ClaudeCodeSecurityNode"
|
|
43990
|
+
},
|
|
43991
|
+
"enforce": {
|
|
43992
|
+
"$ref": "#/definitions/pipeline/common/PolicyConfig"
|
|
43993
|
+
},
|
|
43994
|
+
"failureStrategies": {
|
|
43995
|
+
"oneOf": [
|
|
43996
|
+
{
|
|
43997
|
+
"type": "array",
|
|
43998
|
+
"items": {
|
|
43999
|
+
"$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
|
|
44000
|
+
}
|
|
44001
|
+
},
|
|
44002
|
+
{
|
|
44003
|
+
"type": "string",
|
|
44004
|
+
"pattern": "^<\\+input>$",
|
|
44005
|
+
"minLength": 1
|
|
44006
|
+
}
|
|
44007
|
+
]
|
|
44008
|
+
},
|
|
44009
|
+
"identifier": {
|
|
44010
|
+
"type": "string",
|
|
44011
|
+
"pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
|
|
44012
|
+
},
|
|
44013
|
+
"name": {
|
|
44014
|
+
"type": "string",
|
|
44015
|
+
"pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
|
|
44016
|
+
},
|
|
44017
|
+
"strategy": {
|
|
44018
|
+
"oneOf": [
|
|
44019
|
+
{
|
|
44020
|
+
"$ref": "#/definitions/pipeline/common/StrategyConfig"
|
|
44021
|
+
},
|
|
44022
|
+
{
|
|
44023
|
+
"type": "string",
|
|
44024
|
+
"pattern": "^<\\+input>$",
|
|
44025
|
+
"minLength": 1
|
|
44026
|
+
}
|
|
44027
|
+
]
|
|
44028
|
+
},
|
|
44029
|
+
"timeout": {
|
|
44030
|
+
"type": "string",
|
|
44031
|
+
"pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
|
|
44032
|
+
},
|
|
44033
|
+
"type": {
|
|
44034
|
+
"type": "string",
|
|
44035
|
+
"enum": [
|
|
44036
|
+
"ClaudeCodeSecurity"
|
|
44037
|
+
]
|
|
44038
|
+
},
|
|
44039
|
+
"when": {
|
|
44040
|
+
"oneOf": [
|
|
44041
|
+
{
|
|
44042
|
+
"$ref": "#/definitions/pipeline/common/StepWhenCondition"
|
|
44043
|
+
},
|
|
44044
|
+
{
|
|
44045
|
+
"type": "string",
|
|
44046
|
+
"pattern": "^<\\+input>$",
|
|
44047
|
+
"minLength": 1
|
|
44048
|
+
}
|
|
44049
|
+
]
|
|
44050
|
+
}
|
|
44051
|
+
},
|
|
44052
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
44053
|
+
"allOf": [
|
|
44054
|
+
{
|
|
44055
|
+
"if": {
|
|
44056
|
+
"properties": {
|
|
44057
|
+
"type": {
|
|
44058
|
+
"const": "ClaudeCodeSecurity"
|
|
44059
|
+
}
|
|
44060
|
+
}
|
|
44061
|
+
},
|
|
44062
|
+
"then": {
|
|
44063
|
+
"properties": {
|
|
44064
|
+
"spec": {
|
|
44065
|
+
"$ref": "#/definitions/pipeline/steps/common/ClaudeCodeSecurityStepInfo"
|
|
44066
|
+
}
|
|
44067
|
+
}
|
|
44068
|
+
}
|
|
44069
|
+
}
|
|
44070
|
+
]
|
|
44071
|
+
},
|
|
43349
44072
|
"SscaAibomOrchestrationStepNode": {
|
|
43350
44073
|
"title": "SscaAibomOrchestrationStepNode",
|
|
43351
44074
|
"type": "object",
|
|
@@ -65900,7 +66623,6 @@ const schema = {
|
|
|
65900
66623
|
"provider": {
|
|
65901
66624
|
"type": "string",
|
|
65902
66625
|
"enum": [
|
|
65903
|
-
"smi",
|
|
65904
66626
|
"istio"
|
|
65905
66627
|
]
|
|
65906
66628
|
},
|
|
@@ -65909,22 +66631,6 @@ const schema = {
|
|
|
65909
66631
|
}
|
|
65910
66632
|
},
|
|
65911
66633
|
"allOf": [
|
|
65912
|
-
{
|
|
65913
|
-
"if": {
|
|
65914
|
-
"properties": {
|
|
65915
|
-
"provider": {
|
|
65916
|
-
"const": "smi"
|
|
65917
|
-
}
|
|
65918
|
-
}
|
|
65919
|
-
},
|
|
65920
|
-
"then": {
|
|
65921
|
-
"properties": {
|
|
65922
|
-
"spec": {
|
|
65923
|
-
"$ref": "#/definitions/pipeline/steps/cd/SMIProviderSpec"
|
|
65924
|
-
}
|
|
65925
|
-
}
|
|
65926
|
-
}
|
|
65927
|
-
},
|
|
65928
66634
|
{
|
|
65929
66635
|
"if": {
|
|
65930
66636
|
"properties": {
|
|
@@ -65943,8 +66649,8 @@ const schema = {
|
|
|
65943
66649
|
}
|
|
65944
66650
|
]
|
|
65945
66651
|
},
|
|
65946
|
-
"
|
|
65947
|
-
"title": "
|
|
66652
|
+
"IstioProviderSpec": {
|
|
66653
|
+
"title": "IstioProviderSpec",
|
|
65948
66654
|
"allOf": [
|
|
65949
66655
|
{
|
|
65950
66656
|
"$ref": "#/definitions/pipeline/steps/cd/K8sTrafficRoutingProviderBaseSpec"
|
|
@@ -65952,8 +66658,51 @@ const schema = {
|
|
|
65952
66658
|
{
|
|
65953
66659
|
"type": "object",
|
|
65954
66660
|
"properties": {
|
|
65955
|
-
"
|
|
65956
|
-
"
|
|
66661
|
+
"gateways": {
|
|
66662
|
+
"oneOf": [
|
|
66663
|
+
{
|
|
66664
|
+
"type": "array",
|
|
66665
|
+
"items": {
|
|
66666
|
+
"type": "string",
|
|
66667
|
+
"minLength": 1
|
|
66668
|
+
},
|
|
66669
|
+
"minItems": 1
|
|
66670
|
+
},
|
|
66671
|
+
{
|
|
66672
|
+
"type": "string",
|
|
66673
|
+
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
66674
|
+
"minLength": 1
|
|
66675
|
+
}
|
|
66676
|
+
]
|
|
66677
|
+
},
|
|
66678
|
+
"hosts": {
|
|
66679
|
+
"oneOf": [
|
|
66680
|
+
{
|
|
66681
|
+
"type": "array",
|
|
66682
|
+
"items": {
|
|
66683
|
+
"type": "string",
|
|
66684
|
+
"minLength": 1
|
|
66685
|
+
},
|
|
66686
|
+
"minItems": 1
|
|
66687
|
+
},
|
|
66688
|
+
{
|
|
66689
|
+
"type": "string",
|
|
66690
|
+
"pattern": "(<\\+.+>.*)",
|
|
66691
|
+
"minLength": 1
|
|
66692
|
+
}
|
|
66693
|
+
]
|
|
66694
|
+
},
|
|
66695
|
+
"delegateService": {
|
|
66696
|
+
"oneOf": [
|
|
66697
|
+
{
|
|
66698
|
+
"type": "boolean"
|
|
66699
|
+
},
|
|
66700
|
+
{
|
|
66701
|
+
"type": "string",
|
|
66702
|
+
"pattern": "(<\\+.+>.*)",
|
|
66703
|
+
"minLength": 1
|
|
66704
|
+
}
|
|
66705
|
+
]
|
|
65957
66706
|
}
|
|
65958
66707
|
}
|
|
65959
66708
|
}
|
|
@@ -66455,66 +67204,6 @@ const schema = {
|
|
|
66455
67204
|
}
|
|
66456
67205
|
]
|
|
66457
67206
|
},
|
|
66458
|
-
"IstioProviderSpec": {
|
|
66459
|
-
"title": "IstioProviderSpec",
|
|
66460
|
-
"allOf": [
|
|
66461
|
-
{
|
|
66462
|
-
"$ref": "#/definitions/pipeline/steps/cd/K8sTrafficRoutingProviderBaseSpec"
|
|
66463
|
-
},
|
|
66464
|
-
{
|
|
66465
|
-
"type": "object",
|
|
66466
|
-
"properties": {
|
|
66467
|
-
"gateways": {
|
|
66468
|
-
"oneOf": [
|
|
66469
|
-
{
|
|
66470
|
-
"type": "array",
|
|
66471
|
-
"items": {
|
|
66472
|
-
"type": "string",
|
|
66473
|
-
"minLength": 1
|
|
66474
|
-
},
|
|
66475
|
-
"minItems": 1
|
|
66476
|
-
},
|
|
66477
|
-
{
|
|
66478
|
-
"type": "string",
|
|
66479
|
-
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
66480
|
-
"minLength": 1
|
|
66481
|
-
}
|
|
66482
|
-
]
|
|
66483
|
-
},
|
|
66484
|
-
"hosts": {
|
|
66485
|
-
"oneOf": [
|
|
66486
|
-
{
|
|
66487
|
-
"type": "array",
|
|
66488
|
-
"items": {
|
|
66489
|
-
"type": "string",
|
|
66490
|
-
"minLength": 1
|
|
66491
|
-
},
|
|
66492
|
-
"minItems": 1
|
|
66493
|
-
},
|
|
66494
|
-
{
|
|
66495
|
-
"type": "string",
|
|
66496
|
-
"pattern": "(<\\+.+>.*)",
|
|
66497
|
-
"minLength": 1
|
|
66498
|
-
}
|
|
66499
|
-
]
|
|
66500
|
-
},
|
|
66501
|
-
"delegateService": {
|
|
66502
|
-
"oneOf": [
|
|
66503
|
-
{
|
|
66504
|
-
"type": "boolean"
|
|
66505
|
-
},
|
|
66506
|
-
{
|
|
66507
|
-
"type": "string",
|
|
66508
|
-
"pattern": "(<\\+.+>.*)",
|
|
66509
|
-
"minLength": 1
|
|
66510
|
-
}
|
|
66511
|
-
]
|
|
66512
|
-
}
|
|
66513
|
-
}
|
|
66514
|
-
}
|
|
66515
|
-
],
|
|
66516
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
66517
|
-
},
|
|
66518
67207
|
"TerraformRollbackStepNode": {
|
|
66519
67208
|
"title": "TerraformRollbackStepNode",
|
|
66520
67209
|
"type": "object",
|
|
@@ -66848,6 +67537,21 @@ const schema = {
|
|
|
66848
67537
|
"prodListenerRuleArn": {
|
|
66849
67538
|
"type": "string"
|
|
66850
67539
|
},
|
|
67540
|
+
"prodListenerRuleConfigs": {
|
|
67541
|
+
"oneOf": [
|
|
67542
|
+
{
|
|
67543
|
+
"type": "array",
|
|
67544
|
+
"items": {
|
|
67545
|
+
"$ref": "#/definitions/pipeline/steps/cd/ProdListenerRuleConfig"
|
|
67546
|
+
}
|
|
67547
|
+
},
|
|
67548
|
+
{
|
|
67549
|
+
"type": "string",
|
|
67550
|
+
"pattern": "(<\\+.+>.*)",
|
|
67551
|
+
"minLength": 1
|
|
67552
|
+
}
|
|
67553
|
+
]
|
|
67554
|
+
},
|
|
66851
67555
|
"sameAsAlreadyRunningInstances": {
|
|
66852
67556
|
"oneOf": [
|
|
66853
67557
|
{
|
|
@@ -66931,6 +67635,21 @@ const schema = {
|
|
|
66931
67635
|
"prodListenerRuleArn": {
|
|
66932
67636
|
"type": "string"
|
|
66933
67637
|
},
|
|
67638
|
+
"prodListenerRuleConfigs": {
|
|
67639
|
+
"oneOf": [
|
|
67640
|
+
{
|
|
67641
|
+
"type": "array",
|
|
67642
|
+
"items": {
|
|
67643
|
+
"$ref": "#/definitions/pipeline/steps/cd/ProdListenerRuleConfig"
|
|
67644
|
+
}
|
|
67645
|
+
},
|
|
67646
|
+
{
|
|
67647
|
+
"type": "string",
|
|
67648
|
+
"pattern": "(<\\+.+>.*)",
|
|
67649
|
+
"minLength": 1
|
|
67650
|
+
}
|
|
67651
|
+
]
|
|
67652
|
+
},
|
|
66934
67653
|
"sameAsAlreadyRunningInstances": {
|
|
66935
67654
|
"oneOf": [
|
|
66936
67655
|
{
|
|
@@ -66972,6 +67691,27 @@ const schema = {
|
|
|
66972
67691
|
}
|
|
66973
67692
|
}
|
|
66974
67693
|
},
|
|
67694
|
+
"ProdListenerRuleConfig": {
|
|
67695
|
+
"title": "ProdListenerRuleConfig",
|
|
67696
|
+
"type": "object",
|
|
67697
|
+
"required": [
|
|
67698
|
+
"prodListenerRuleArn"
|
|
67699
|
+
],
|
|
67700
|
+
"properties": {
|
|
67701
|
+
"prodListenerRuleArn": {
|
|
67702
|
+
"type": "string",
|
|
67703
|
+
"pattern": "^(?=\\s*\\S).*$"
|
|
67704
|
+
},
|
|
67705
|
+
"stageTargetGroupArn": {
|
|
67706
|
+
"type": "string"
|
|
67707
|
+
},
|
|
67708
|
+
"description": {
|
|
67709
|
+
"type": "string",
|
|
67710
|
+
"desc": "This is the description for ProdListenerRuleConfig"
|
|
67711
|
+
}
|
|
67712
|
+
},
|
|
67713
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
67714
|
+
},
|
|
66975
67715
|
"EcsUpgradeContainerStepNode": {
|
|
66976
67716
|
"title": "EcsUpgradeContainerStepNode",
|
|
66977
67717
|
"type": "object",
|
|
@@ -100249,6 +100989,21 @@ const schema = {
|
|
|
100249
100989
|
}
|
|
100250
100990
|
]
|
|
100251
100991
|
},
|
|
100992
|
+
"ruleOverrides": {
|
|
100993
|
+
"oneOf": [
|
|
100994
|
+
{
|
|
100995
|
+
"type": "array",
|
|
100996
|
+
"items": {
|
|
100997
|
+
"$ref": "#/definitions/pipeline/steps/cd/InheritRuleOverride"
|
|
100998
|
+
}
|
|
100999
|
+
},
|
|
101000
|
+
{
|
|
101001
|
+
"type": "string",
|
|
101002
|
+
"pattern": "(<\\+.+>.*)",
|
|
101003
|
+
"minLength": 1
|
|
101004
|
+
}
|
|
101005
|
+
]
|
|
101006
|
+
},
|
|
100252
101007
|
"downsizeOldService": {
|
|
100253
101008
|
"oneOf": [
|
|
100254
101009
|
{
|
|
@@ -100280,6 +101035,39 @@ const schema = {
|
|
|
100280
101035
|
}
|
|
100281
101036
|
}
|
|
100282
101037
|
},
|
|
101038
|
+
"InheritRuleOverride": {
|
|
101039
|
+
"title": "InheritRuleOverride",
|
|
101040
|
+
"type": "object",
|
|
101041
|
+
"required": [
|
|
101042
|
+
"listenerRuleArn"
|
|
101043
|
+
],
|
|
101044
|
+
"properties": {
|
|
101045
|
+
"listenerRuleArn": {
|
|
101046
|
+
"type": "string",
|
|
101047
|
+
"pattern": "^(?=\\s*\\S).*$"
|
|
101048
|
+
},
|
|
101049
|
+
"weightPercentage": {
|
|
101050
|
+
"oneOf": [
|
|
101051
|
+
{
|
|
101052
|
+
"type": "integer",
|
|
101053
|
+
"format": "int32",
|
|
101054
|
+
"minimum": 0,
|
|
101055
|
+
"maximum": 100
|
|
101056
|
+
},
|
|
101057
|
+
{
|
|
101058
|
+
"type": "string",
|
|
101059
|
+
"pattern": "(<\\+.+>.*)",
|
|
101060
|
+
"minLength": 1
|
|
101061
|
+
}
|
|
101062
|
+
]
|
|
101063
|
+
},
|
|
101064
|
+
"description": {
|
|
101065
|
+
"type": "string",
|
|
101066
|
+
"desc": "This is the description for InheritRuleOverride"
|
|
101067
|
+
}
|
|
101068
|
+
},
|
|
101069
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
101070
|
+
},
|
|
100283
101071
|
"StandAloneTrafficShiftRollbackStepNode": {
|
|
100284
101072
|
"title": "StandAloneTrafficShiftRollbackStepNode",
|
|
100285
101073
|
"type": "object",
|
|
@@ -118683,6 +119471,9 @@ const schema = {
|
|
|
118683
119471
|
{
|
|
118684
119472
|
"$ref": "#/definitions/pipeline/steps/common/MythosAgentNode"
|
|
118685
119473
|
},
|
|
119474
|
+
{
|
|
119475
|
+
"$ref": "#/definitions/pipeline/steps/common/ClaudeCodeSecurityNode"
|
|
119476
|
+
},
|
|
118686
119477
|
{
|
|
118687
119478
|
"$ref": "#/definitions/pipeline/steps/common/SscaEnforcementStepNode"
|
|
118688
119479
|
},
|
|
@@ -119461,6 +120252,9 @@ const schema = {
|
|
|
119461
120252
|
{
|
|
119462
120253
|
"$ref": "#/definitions/pipeline/steps/common/MythosAgentNode"
|
|
119463
120254
|
},
|
|
120255
|
+
{
|
|
120256
|
+
"$ref": "#/definitions/pipeline/steps/common/ClaudeCodeSecurityNode"
|
|
120257
|
+
},
|
|
119464
120258
|
{
|
|
119465
120259
|
"$ref": "#/definitions/pipeline/steps/common/SscaComplianceStepNode"
|
|
119466
120260
|
},
|