@itentialopensource/adapter-checkpoint_management 0.10.4 → 0.10.6
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/CALLS.md +54 -0
- package/adapter.js +997 -0
- package/entities/PackageDeployment/action.json +184 -0
- package/entities/PackageDeployment/schema.json +27 -0
- package/package.json +7 -7
- package/pronghorn.json +546 -69
- package/report/adapterInfo.json +7 -7
- package/test/integration/adapterTestIntegration.js +234 -0
- package/test/unit/adapterTestUnit.js +264 -3
- package/refs?service=git-upload-pack +0 -0
package/pronghorn.json
CHANGED
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
"name"
|
|
67
|
+
"name": "replace",
|
|
68
68
|
"type": "boolean",
|
|
69
69
|
"info": "True to replace entire mock data, false to merge/append",
|
|
70
70
|
"required": false,
|
|
71
71
|
"schema": {
|
|
72
72
|
"title": "replace",
|
|
73
|
-
"type"
|
|
73
|
+
"type": "boolean"
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
],
|
|
@@ -921,73 +921,73 @@
|
|
|
921
921
|
"task": true
|
|
922
922
|
},
|
|
923
923
|
{
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
{
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
{
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
924
|
+
"name": "iapRunAdapterLint",
|
|
925
|
+
"summary": "Run the adapter lint script to return the results",
|
|
926
|
+
"description": "Run the adapter lint script to return the results",
|
|
927
|
+
"input": [],
|
|
928
|
+
"output": {
|
|
929
|
+
"name": "result",
|
|
930
|
+
"type": "string",
|
|
931
|
+
"description": "A string containing the run results",
|
|
932
|
+
"schema": {
|
|
933
|
+
"title": "result",
|
|
934
|
+
"type": "string"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
"roles": [
|
|
938
|
+
"admin"
|
|
939
|
+
],
|
|
940
|
+
"route": {
|
|
941
|
+
"verb": "GET",
|
|
942
|
+
"path": "/iapRunAdapterLint"
|
|
943
|
+
},
|
|
944
|
+
"task": true
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
"name": "iapRunAdapterTests",
|
|
948
|
+
"summary": "Run the adapter test scripts (baseunit and unit) to return the results",
|
|
949
|
+
"description": "Run the adapter test scripts (baseunit and unit) to return the results",
|
|
950
|
+
"input": [],
|
|
951
|
+
"output": {
|
|
952
|
+
"name": "result",
|
|
953
|
+
"type": "object",
|
|
954
|
+
"description": "A JSON Object containing status, code and the result",
|
|
955
|
+
"schema": {
|
|
956
|
+
"title": "result",
|
|
957
|
+
"type": "object"
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"roles": [
|
|
961
|
+
"admin"
|
|
962
|
+
],
|
|
963
|
+
"route": {
|
|
964
|
+
"verb": "GET",
|
|
965
|
+
"path": "/iapRunAdapterTests"
|
|
966
|
+
},
|
|
967
|
+
"task": true
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"name": "iapGetAdapterInventory",
|
|
971
|
+
"summary": "Provide inventory information abbout the adapter",
|
|
972
|
+
"description": "Provide inventory information abbout the adapter",
|
|
973
|
+
"input": [],
|
|
974
|
+
"output": {
|
|
975
|
+
"name": "result",
|
|
976
|
+
"type": "object",
|
|
977
|
+
"description": "A JSON Object containing status, code and the result",
|
|
978
|
+
"schema": {
|
|
979
|
+
"title": "result",
|
|
980
|
+
"type": "object"
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"roles": [
|
|
984
|
+
"admin"
|
|
985
|
+
],
|
|
986
|
+
"route": {
|
|
987
|
+
"verb": "GET",
|
|
988
|
+
"path": "/iapGetAdapterInventory"
|
|
989
|
+
},
|
|
990
|
+
"task": true
|
|
991
991
|
},
|
|
992
992
|
{
|
|
993
993
|
"name": "login",
|
|
@@ -23998,6 +23998,483 @@
|
|
|
23998
23998
|
"path": "/setApiSettingsWithSid"
|
|
23999
23999
|
},
|
|
24000
24000
|
"task": true
|
|
24001
|
+
},
|
|
24002
|
+
{
|
|
24003
|
+
"name": "verifySoftwarePackage",
|
|
24004
|
+
"summary": "Verifies the software package on target machines.",
|
|
24005
|
+
"description": "Verifies the software package on target machines.",
|
|
24006
|
+
"input": [
|
|
24007
|
+
{
|
|
24008
|
+
"name": "body",
|
|
24009
|
+
"type": "object",
|
|
24010
|
+
"info": "Request body: object",
|
|
24011
|
+
"required": true,
|
|
24012
|
+
"schema": {
|
|
24013
|
+
"type": "object"
|
|
24014
|
+
}
|
|
24015
|
+
},
|
|
24016
|
+
{
|
|
24017
|
+
"name": "iapMetadata",
|
|
24018
|
+
"type": "object",
|
|
24019
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24020
|
+
"required": false,
|
|
24021
|
+
"schema": {
|
|
24022
|
+
"title": "iapMetadata",
|
|
24023
|
+
"type": "object"
|
|
24024
|
+
}
|
|
24025
|
+
},
|
|
24026
|
+
{
|
|
24027
|
+
"name": "sid",
|
|
24028
|
+
"type": "string",
|
|
24029
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24030
|
+
"required": false,
|
|
24031
|
+
"schema": {
|
|
24032
|
+
"title": "sid",
|
|
24033
|
+
"type": "string"
|
|
24034
|
+
}
|
|
24035
|
+
}
|
|
24036
|
+
],
|
|
24037
|
+
"output": {
|
|
24038
|
+
"name": "result",
|
|
24039
|
+
"type": "object",
|
|
24040
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24041
|
+
"schema": {
|
|
24042
|
+
"title": "result",
|
|
24043
|
+
"type": "object"
|
|
24044
|
+
}
|
|
24045
|
+
},
|
|
24046
|
+
"roles": [
|
|
24047
|
+
"admin"
|
|
24048
|
+
],
|
|
24049
|
+
"route": {
|
|
24050
|
+
"verb": "POST",
|
|
24051
|
+
"path": "/verifySoftwarePackage"
|
|
24052
|
+
},
|
|
24053
|
+
"task": true
|
|
24054
|
+
},
|
|
24055
|
+
{
|
|
24056
|
+
"name": "installSoftwarePackage",
|
|
24057
|
+
"summary": "Installs the software package on target machines.",
|
|
24058
|
+
"description": "Installs the software package on target machines.",
|
|
24059
|
+
"input": [
|
|
24060
|
+
{
|
|
24061
|
+
"name": "body",
|
|
24062
|
+
"type": "object",
|
|
24063
|
+
"info": "Request body: object",
|
|
24064
|
+
"required": true,
|
|
24065
|
+
"schema": {
|
|
24066
|
+
"type": "object"
|
|
24067
|
+
}
|
|
24068
|
+
},
|
|
24069
|
+
{
|
|
24070
|
+
"name": "iapMetadata",
|
|
24071
|
+
"type": "object",
|
|
24072
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24073
|
+
"required": false,
|
|
24074
|
+
"schema": {
|
|
24075
|
+
"title": "iapMetadata",
|
|
24076
|
+
"type": "object"
|
|
24077
|
+
}
|
|
24078
|
+
},
|
|
24079
|
+
{
|
|
24080
|
+
"name": "sid",
|
|
24081
|
+
"type": "string",
|
|
24082
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24083
|
+
"required": false,
|
|
24084
|
+
"schema": {
|
|
24085
|
+
"title": "sid",
|
|
24086
|
+
"type": "string"
|
|
24087
|
+
}
|
|
24088
|
+
}
|
|
24089
|
+
],
|
|
24090
|
+
"output": {
|
|
24091
|
+
"name": "result",
|
|
24092
|
+
"type": "object",
|
|
24093
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24094
|
+
"schema": {
|
|
24095
|
+
"title": "result",
|
|
24096
|
+
"type": "object"
|
|
24097
|
+
}
|
|
24098
|
+
},
|
|
24099
|
+
"roles": [
|
|
24100
|
+
"admin"
|
|
24101
|
+
],
|
|
24102
|
+
"route": {
|
|
24103
|
+
"verb": "POST",
|
|
24104
|
+
"path": "/installSoftwarePackage"
|
|
24105
|
+
},
|
|
24106
|
+
"task": true
|
|
24107
|
+
},
|
|
24108
|
+
{
|
|
24109
|
+
"name": "uninstallSoftwarePackage",
|
|
24110
|
+
"summary": "Uninstalls the software package from target machines.",
|
|
24111
|
+
"description": "Uninstalls the software package from target machines.",
|
|
24112
|
+
"input": [
|
|
24113
|
+
{
|
|
24114
|
+
"name": "body",
|
|
24115
|
+
"type": "object",
|
|
24116
|
+
"info": "Request body: object",
|
|
24117
|
+
"required": true,
|
|
24118
|
+
"schema": {
|
|
24119
|
+
"type": "object"
|
|
24120
|
+
}
|
|
24121
|
+
},
|
|
24122
|
+
{
|
|
24123
|
+
"name": "iapMetadata",
|
|
24124
|
+
"type": "object",
|
|
24125
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24126
|
+
"required": false,
|
|
24127
|
+
"schema": {
|
|
24128
|
+
"title": "iapMetadata",
|
|
24129
|
+
"type": "object"
|
|
24130
|
+
}
|
|
24131
|
+
},
|
|
24132
|
+
{
|
|
24133
|
+
"name": "sid",
|
|
24134
|
+
"type": "string",
|
|
24135
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24136
|
+
"required": false,
|
|
24137
|
+
"schema": {
|
|
24138
|
+
"title": "sid",
|
|
24139
|
+
"type": "string"
|
|
24140
|
+
}
|
|
24141
|
+
}
|
|
24142
|
+
],
|
|
24143
|
+
"output": {
|
|
24144
|
+
"name": "result",
|
|
24145
|
+
"type": "object",
|
|
24146
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24147
|
+
"schema": {
|
|
24148
|
+
"title": "result",
|
|
24149
|
+
"type": "object"
|
|
24150
|
+
}
|
|
24151
|
+
},
|
|
24152
|
+
"roles": [
|
|
24153
|
+
"admin"
|
|
24154
|
+
],
|
|
24155
|
+
"route": {
|
|
24156
|
+
"verb": "POST",
|
|
24157
|
+
"path": "/uninstallSoftwarePackage"
|
|
24158
|
+
},
|
|
24159
|
+
"task": true
|
|
24160
|
+
},
|
|
24161
|
+
{
|
|
24162
|
+
"name": "addRepositoryPackage",
|
|
24163
|
+
"summary": "Add the software package to the central repository.",
|
|
24164
|
+
"description": "Add the software package to the central repository. On Multi-Domain Server this command is available only after logging in to the Global domain.",
|
|
24165
|
+
"input": [
|
|
24166
|
+
{
|
|
24167
|
+
"name": "body",
|
|
24168
|
+
"type": "object",
|
|
24169
|
+
"info": "Request body: object",
|
|
24170
|
+
"required": true,
|
|
24171
|
+
"schema": {
|
|
24172
|
+
"type": "object"
|
|
24173
|
+
}
|
|
24174
|
+
},
|
|
24175
|
+
{
|
|
24176
|
+
"name": "iapMetadata",
|
|
24177
|
+
"type": "object",
|
|
24178
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24179
|
+
"required": false,
|
|
24180
|
+
"schema": {
|
|
24181
|
+
"title": "iapMetadata",
|
|
24182
|
+
"type": "object"
|
|
24183
|
+
}
|
|
24184
|
+
},
|
|
24185
|
+
{
|
|
24186
|
+
"name": "sid",
|
|
24187
|
+
"type": "string",
|
|
24188
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24189
|
+
"required": false,
|
|
24190
|
+
"schema": {
|
|
24191
|
+
"title": "sid",
|
|
24192
|
+
"type": "string"
|
|
24193
|
+
}
|
|
24194
|
+
}
|
|
24195
|
+
],
|
|
24196
|
+
"output": {
|
|
24197
|
+
"name": "result",
|
|
24198
|
+
"type": "object",
|
|
24199
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24200
|
+
"schema": {
|
|
24201
|
+
"title": "result",
|
|
24202
|
+
"type": "object"
|
|
24203
|
+
}
|
|
24204
|
+
},
|
|
24205
|
+
"roles": [
|
|
24206
|
+
"admin"
|
|
24207
|
+
],
|
|
24208
|
+
"route": {
|
|
24209
|
+
"verb": "POST",
|
|
24210
|
+
"path": "/addRepositoryPackage"
|
|
24211
|
+
},
|
|
24212
|
+
"task": true
|
|
24213
|
+
},
|
|
24214
|
+
{
|
|
24215
|
+
"name": "showRepositoryPackage",
|
|
24216
|
+
"summary": "Gets repository software packages information.",
|
|
24217
|
+
"description": "Gets repository software packages information.",
|
|
24218
|
+
"input": [
|
|
24219
|
+
{
|
|
24220
|
+
"name": "body",
|
|
24221
|
+
"type": "object",
|
|
24222
|
+
"info": "Request body: object",
|
|
24223
|
+
"required": true,
|
|
24224
|
+
"schema": {
|
|
24225
|
+
"type": "object"
|
|
24226
|
+
}
|
|
24227
|
+
},
|
|
24228
|
+
{
|
|
24229
|
+
"name": "iapMetadata",
|
|
24230
|
+
"type": "object",
|
|
24231
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24232
|
+
"required": false,
|
|
24233
|
+
"schema": {
|
|
24234
|
+
"title": "iapMetadata",
|
|
24235
|
+
"type": "object"
|
|
24236
|
+
}
|
|
24237
|
+
},
|
|
24238
|
+
{
|
|
24239
|
+
"name": "sid",
|
|
24240
|
+
"type": "string",
|
|
24241
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24242
|
+
"required": false,
|
|
24243
|
+
"schema": {
|
|
24244
|
+
"title": "sid",
|
|
24245
|
+
"type": "string"
|
|
24246
|
+
}
|
|
24247
|
+
}
|
|
24248
|
+
],
|
|
24249
|
+
"output": {
|
|
24250
|
+
"name": "result",
|
|
24251
|
+
"type": "object",
|
|
24252
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24253
|
+
"schema": {
|
|
24254
|
+
"title": "result",
|
|
24255
|
+
"type": "object"
|
|
24256
|
+
}
|
|
24257
|
+
},
|
|
24258
|
+
"roles": [
|
|
24259
|
+
"admin"
|
|
24260
|
+
],
|
|
24261
|
+
"route": {
|
|
24262
|
+
"verb": "POST",
|
|
24263
|
+
"path": "/showRepositoryPackage"
|
|
24264
|
+
},
|
|
24265
|
+
"task": true
|
|
24266
|
+
},
|
|
24267
|
+
{
|
|
24268
|
+
"name": "showSoftwarePackageDetails",
|
|
24269
|
+
"summary": "Gets the software package information from the cloud.",
|
|
24270
|
+
"description": "Gets the software package information from the cloud.",
|
|
24271
|
+
"input": [
|
|
24272
|
+
{
|
|
24273
|
+
"name": "body",
|
|
24274
|
+
"type": "object",
|
|
24275
|
+
"info": "Request body: object",
|
|
24276
|
+
"required": true,
|
|
24277
|
+
"schema": {
|
|
24278
|
+
"type": "object"
|
|
24279
|
+
}
|
|
24280
|
+
},
|
|
24281
|
+
{
|
|
24282
|
+
"name": "iapMetadata",
|
|
24283
|
+
"type": "object",
|
|
24284
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24285
|
+
"required": false,
|
|
24286
|
+
"schema": {
|
|
24287
|
+
"title": "iapMetadata",
|
|
24288
|
+
"type": "object"
|
|
24289
|
+
}
|
|
24290
|
+
},
|
|
24291
|
+
{
|
|
24292
|
+
"name": "sid",
|
|
24293
|
+
"type": "string",
|
|
24294
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24295
|
+
"required": false,
|
|
24296
|
+
"schema": {
|
|
24297
|
+
"title": "sid",
|
|
24298
|
+
"type": "string"
|
|
24299
|
+
}
|
|
24300
|
+
}
|
|
24301
|
+
],
|
|
24302
|
+
"output": {
|
|
24303
|
+
"name": "result",
|
|
24304
|
+
"type": "object",
|
|
24305
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24306
|
+
"schema": {
|
|
24307
|
+
"title": "result",
|
|
24308
|
+
"type": "object"
|
|
24309
|
+
}
|
|
24310
|
+
},
|
|
24311
|
+
"roles": [
|
|
24312
|
+
"admin"
|
|
24313
|
+
],
|
|
24314
|
+
"route": {
|
|
24315
|
+
"verb": "POST",
|
|
24316
|
+
"path": "/showSoftwarePackageDetails"
|
|
24317
|
+
},
|
|
24318
|
+
"task": true
|
|
24319
|
+
},
|
|
24320
|
+
{
|
|
24321
|
+
"name": "showSoftwarePackagesPerTargets",
|
|
24322
|
+
"summary": "Shows software packages on targets.",
|
|
24323
|
+
"description": "Shows software packages on targets.",
|
|
24324
|
+
"input": [
|
|
24325
|
+
{
|
|
24326
|
+
"name": "body",
|
|
24327
|
+
"type": "object",
|
|
24328
|
+
"info": "Request body: object",
|
|
24329
|
+
"required": true,
|
|
24330
|
+
"schema": {
|
|
24331
|
+
"type": "object"
|
|
24332
|
+
}
|
|
24333
|
+
},
|
|
24334
|
+
{
|
|
24335
|
+
"name": "iapMetadata",
|
|
24336
|
+
"type": "object",
|
|
24337
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24338
|
+
"required": false,
|
|
24339
|
+
"schema": {
|
|
24340
|
+
"title": "iapMetadata",
|
|
24341
|
+
"type": "object"
|
|
24342
|
+
}
|
|
24343
|
+
},
|
|
24344
|
+
{
|
|
24345
|
+
"name": "sid",
|
|
24346
|
+
"type": "string",
|
|
24347
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24348
|
+
"required": false,
|
|
24349
|
+
"schema": {
|
|
24350
|
+
"title": "sid",
|
|
24351
|
+
"type": "string"
|
|
24352
|
+
}
|
|
24353
|
+
}
|
|
24354
|
+
],
|
|
24355
|
+
"output": {
|
|
24356
|
+
"name": "result",
|
|
24357
|
+
"type": "object",
|
|
24358
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24359
|
+
"schema": {
|
|
24360
|
+
"title": "result",
|
|
24361
|
+
"type": "object"
|
|
24362
|
+
}
|
|
24363
|
+
},
|
|
24364
|
+
"roles": [
|
|
24365
|
+
"admin"
|
|
24366
|
+
],
|
|
24367
|
+
"route": {
|
|
24368
|
+
"verb": "POST",
|
|
24369
|
+
"path": "/showSoftwarePackagesPerTargets"
|
|
24370
|
+
},
|
|
24371
|
+
"task": true
|
|
24372
|
+
},
|
|
24373
|
+
{
|
|
24374
|
+
"name": "deleteRepositoryPackage",
|
|
24375
|
+
"summary": "Delete the repository software package from the central repository.",
|
|
24376
|
+
"description": "Delete the repository software package from the central repository. On Multi-Domain Server this command is available only after logging in to the Global domain.",
|
|
24377
|
+
"input": [
|
|
24378
|
+
{
|
|
24379
|
+
"name": "body",
|
|
24380
|
+
"type": "object",
|
|
24381
|
+
"info": "Request body: object",
|
|
24382
|
+
"required": true,
|
|
24383
|
+
"schema": {
|
|
24384
|
+
"type": "object"
|
|
24385
|
+
}
|
|
24386
|
+
},
|
|
24387
|
+
{
|
|
24388
|
+
"name": "iapMetadata",
|
|
24389
|
+
"type": "object",
|
|
24390
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24391
|
+
"required": false,
|
|
24392
|
+
"schema": {
|
|
24393
|
+
"title": "iapMetadata",
|
|
24394
|
+
"type": "object"
|
|
24395
|
+
}
|
|
24396
|
+
},
|
|
24397
|
+
{
|
|
24398
|
+
"name": "sid",
|
|
24399
|
+
"type": "string",
|
|
24400
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24401
|
+
"required": false,
|
|
24402
|
+
"schema": {
|
|
24403
|
+
"title": "sid",
|
|
24404
|
+
"type": "string"
|
|
24405
|
+
}
|
|
24406
|
+
}
|
|
24407
|
+
],
|
|
24408
|
+
"output": {
|
|
24409
|
+
"name": "result",
|
|
24410
|
+
"type": "object",
|
|
24411
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24412
|
+
"schema": {
|
|
24413
|
+
"title": "result",
|
|
24414
|
+
"type": "object"
|
|
24415
|
+
}
|
|
24416
|
+
},
|
|
24417
|
+
"roles": [
|
|
24418
|
+
"admin"
|
|
24419
|
+
],
|
|
24420
|
+
"route": {
|
|
24421
|
+
"verb": "POST",
|
|
24422
|
+
"path": "/deleteRepositoryPackage"
|
|
24423
|
+
},
|
|
24424
|
+
"task": true
|
|
24425
|
+
},
|
|
24426
|
+
{
|
|
24427
|
+
"name": "showRepositoryPackages",
|
|
24428
|
+
"summary": "Gets all repository software packages information.",
|
|
24429
|
+
"description": "Gets all repository software packages information.",
|
|
24430
|
+
"input": [
|
|
24431
|
+
{
|
|
24432
|
+
"name": "body",
|
|
24433
|
+
"type": "object",
|
|
24434
|
+
"info": "Request body: object",
|
|
24435
|
+
"required": true,
|
|
24436
|
+
"schema": {
|
|
24437
|
+
"type": "object"
|
|
24438
|
+
}
|
|
24439
|
+
},
|
|
24440
|
+
{
|
|
24441
|
+
"name": "iapMetadata",
|
|
24442
|
+
"type": "object",
|
|
24443
|
+
"info": "IAP Metadata object contains additional info needed for the request: payload, uriPathVars, uriQuery, uriOptions, addlHeaders, authData, callProperties, etc.",
|
|
24444
|
+
"required": false,
|
|
24445
|
+
"schema": {
|
|
24446
|
+
"title": "iapMetadata",
|
|
24447
|
+
"type": "object"
|
|
24448
|
+
}
|
|
24449
|
+
},
|
|
24450
|
+
{
|
|
24451
|
+
"name": "sid",
|
|
24452
|
+
"type": "string",
|
|
24453
|
+
"info": "Session unique identifier returned by the login request.",
|
|
24454
|
+
"required": false,
|
|
24455
|
+
"schema": {
|
|
24456
|
+
"title": "sid",
|
|
24457
|
+
"type": "string"
|
|
24458
|
+
}
|
|
24459
|
+
}
|
|
24460
|
+
],
|
|
24461
|
+
"output": {
|
|
24462
|
+
"name": "result",
|
|
24463
|
+
"type": "object",
|
|
24464
|
+
"description": "A JSON Object containing status, code and the result",
|
|
24465
|
+
"schema": {
|
|
24466
|
+
"title": "result",
|
|
24467
|
+
"type": "object"
|
|
24468
|
+
}
|
|
24469
|
+
},
|
|
24470
|
+
"roles": [
|
|
24471
|
+
"admin"
|
|
24472
|
+
],
|
|
24473
|
+
"route": {
|
|
24474
|
+
"verb": "POST",
|
|
24475
|
+
"path": "/showRepositoryPackages"
|
|
24476
|
+
},
|
|
24477
|
+
"task": true
|
|
24001
24478
|
}
|
|
24002
24479
|
]
|
|
24003
24480
|
}
|
package/report/adapterInfo.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.10.
|
|
3
|
-
"configLines":
|
|
2
|
+
"version": "0.10.5",
|
|
3
|
+
"configLines": 26336,
|
|
4
4
|
"scriptLines": 1783,
|
|
5
|
-
"codeLines":
|
|
6
|
-
"testLines":
|
|
7
|
-
"testCases":
|
|
8
|
-
"totalCodeLines":
|
|
9
|
-
"wfTasks":
|
|
5
|
+
"codeLines": 34764,
|
|
6
|
+
"testLines": 22108,
|
|
7
|
+
"testCases": 1058,
|
|
8
|
+
"totalCodeLines": 58655,
|
|
9
|
+
"wfTasks": 624
|
|
10
10
|
}
|