oci-vulnerabilityscanning 2.57.0 → 2.59.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.
- package/lib/client.d.ts +68 -58
- package/lib/client.js +81 -58
- package/lib/client.js.map +1 -1
- package/lib/request/change-container-scan-recipe-compartment-request.d.ts +1 -1
- package/lib/request/change-container-scan-result-compartment-request.d.ts +1 -1
- package/lib/request/change-container-scan-target-compartment-request.d.ts +1 -1
- package/lib/request/change-host-agent-scan-result-compartment-request.d.ts +1 -1
- package/lib/request/change-host-cis-benchmark-scan-result-compartment-request.d.ts +1 -1
- package/lib/request/change-host-endpoint-protection-scan-result-compartment-request.d.ts +1 -1
- package/lib/request/change-host-port-scan-result-compartment-request.d.ts +1 -1
- package/lib/request/change-host-scan-recipe-compartment-request.d.ts +1 -1
- package/lib/request/change-host-scan-target-compartment-request.d.ts +1 -1
- package/lib/request/create-container-scan-recipe-request.d.ts +1 -1
- package/lib/request/create-container-scan-target-request.d.ts +1 -1
- package/lib/request/create-host-scan-recipe-request.d.ts +1 -1
- package/lib/request/create-host-scan-target-request.d.ts +1 -1
- package/lib/request/delete-container-scan-recipe-request.d.ts +1 -1
- package/lib/request/delete-container-scan-result-request.d.ts +1 -1
- package/lib/request/delete-container-scan-target-request.d.ts +1 -1
- package/lib/request/delete-host-agent-scan-result-request.d.ts +1 -1
- package/lib/request/delete-host-cis-benchmark-scan-result-request.d.ts +1 -1
- package/lib/request/delete-host-endpoint-protection-scan-result-request.d.ts +1 -1
- package/lib/request/delete-host-port-scan-result-request.d.ts +1 -1
- package/lib/request/delete-host-scan-recipe-request.d.ts +1 -1
- package/lib/request/delete-host-scan-target-request.d.ts +1 -1
- package/lib/request/export-host-agent-scan-result-csv-request.d.ts +1 -1
- package/lib/request/export-host-vulnerability-csv-request.d.ts +1 -1
- package/lib/request/get-container-scan-recipe-request.d.ts +1 -1
- package/lib/request/get-container-scan-result-request.d.ts +1 -1
- package/lib/request/get-container-scan-target-request.d.ts +1 -1
- package/lib/request/get-host-agent-scan-result-request.d.ts +1 -1
- package/lib/request/get-host-cis-benchmark-scan-result-request.d.ts +1 -1
- package/lib/request/get-host-endpoint-protection-scan-result-request.d.ts +1 -1
- package/lib/request/get-host-port-scan-result-request.d.ts +1 -1
- package/lib/request/get-host-scan-recipe-request.d.ts +1 -1
- package/lib/request/get-host-scan-target-request.d.ts +1 -1
- package/lib/request/get-host-vulnerability-request.d.ts +1 -1
- package/lib/request/get-vulnerability-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-container-scan-recipes-request.d.ts +1 -1
- package/lib/request/list-container-scan-results-request.d.ts +1 -1
- package/lib/request/list-container-scan-targets-request.d.ts +1 -1
- package/lib/request/list-host-agent-scan-results-request.d.ts +1 -1
- package/lib/request/list-host-cis-benchmark-scan-results-request.d.ts +1 -1
- package/lib/request/list-host-endpoint-protection-scan-results-request.d.ts +1 -1
- package/lib/request/list-host-port-scan-results-request.d.ts +1 -1
- package/lib/request/list-host-scan-recipes-request.d.ts +1 -1
- package/lib/request/list-host-scan-target-errors-request.d.ts +1 -1
- package/lib/request/list-host-scan-targets-request.d.ts +1 -1
- package/lib/request/list-host-vulnerabilities-request.d.ts +1 -1
- package/lib/request/list-host-vulnerability-impacted-hosts-request.d.ts +1 -1
- package/lib/request/list-vulnerabilities-request.d.ts +1 -1
- package/lib/request/list-vulnerability-impacted-containers-request.d.ts +1 -1
- package/lib/request/list-vulnerability-impacted-hosts-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/update-container-scan-recipe-request.d.ts +1 -1
- package/lib/request/update-container-scan-target-request.d.ts +1 -1
- package/lib/request/update-host-scan-recipe-request.d.ts +1 -1
- package/lib/request/update-host-scan-target-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -56,11 +56,14 @@ var VulnerabilityScanningApiKeys;
|
|
|
56
56
|
*/
|
|
57
57
|
class VulnerabilityScanningClient {
|
|
58
58
|
constructor(params, clientConfiguration) {
|
|
59
|
+
this["_realmSpecificEndpointTemplateEnabled"] = false;
|
|
59
60
|
this["_endpoint"] = "";
|
|
60
61
|
this["_defaultHeaders"] = {};
|
|
61
62
|
this._circuitBreaker = null;
|
|
62
63
|
this._httpOptions = undefined;
|
|
63
64
|
this.targetService = "VulnerabilityScanning";
|
|
65
|
+
this._regionId = "";
|
|
66
|
+
this._lastSetRegionOrRegionId = "";
|
|
64
67
|
const requestSigner = params.authenticationDetailsProvider
|
|
65
68
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
66
69
|
: null;
|
|
@@ -110,13 +113,31 @@ class VulnerabilityScanningClient {
|
|
|
110
113
|
get logger() {
|
|
111
114
|
return common.LOG.logger;
|
|
112
115
|
}
|
|
116
|
+
/**
|
|
117
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
118
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
119
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
120
|
+
*/
|
|
121
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
|
|
122
|
+
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
|
|
123
|
+
if (this.logger)
|
|
124
|
+
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
125
|
+
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
|
|
126
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(VulnerabilityScanningClient.serviceEndpointTemplate, this._region, VulnerabilityScanningClient.endpointServiceName);
|
|
127
|
+
}
|
|
128
|
+
else if (this._lastSetRegionOrRegionId === common.Region.REGION_ID_STRING) {
|
|
129
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(VulnerabilityScanningClient.serviceEndpointTemplate, this._regionId, VulnerabilityScanningClient.endpointServiceName);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
113
132
|
/**
|
|
114
133
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
115
134
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
116
135
|
* @param region The region of the service.
|
|
117
136
|
*/
|
|
118
137
|
set region(region) {
|
|
138
|
+
this._region = region;
|
|
119
139
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(VulnerabilityScanningClient.serviceEndpointTemplate, region, VulnerabilityScanningClient.endpointServiceName);
|
|
140
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_STRING;
|
|
120
141
|
}
|
|
121
142
|
/**
|
|
122
143
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -127,7 +148,9 @@ class VulnerabilityScanningClient {
|
|
|
127
148
|
* @param regionId The public region ID.
|
|
128
149
|
*/
|
|
129
150
|
set regionId(regionId) {
|
|
151
|
+
this._regionId = regionId;
|
|
130
152
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(VulnerabilityScanningClient.serviceEndpointTemplate, regionId, VulnerabilityScanningClient.endpointServiceName);
|
|
153
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
|
|
131
154
|
}
|
|
132
155
|
/**
|
|
133
156
|
* Creates a new VulnerabilityScanningWaiter for resources for this service.
|
|
@@ -157,7 +180,7 @@ class VulnerabilityScanningClient {
|
|
|
157
180
|
* @param ChangeContainerScanRecipeCompartmentRequest
|
|
158
181
|
* @return ChangeContainerScanRecipeCompartmentResponse
|
|
159
182
|
* @throws OciError when an error occurs
|
|
160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeContainerScanRecipeCompartment.ts.html |here} to see how to use ChangeContainerScanRecipeCompartment API.
|
|
161
184
|
*/
|
|
162
185
|
changeContainerScanRecipeCompartment(changeContainerScanRecipeCompartmentRequest) {
|
|
163
186
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -215,7 +238,7 @@ class VulnerabilityScanningClient {
|
|
|
215
238
|
* @param ChangeContainerScanResultCompartmentRequest
|
|
216
239
|
* @return ChangeContainerScanResultCompartmentResponse
|
|
217
240
|
* @throws OciError when an error occurs
|
|
218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeContainerScanResultCompartment.ts.html |here} to see how to use ChangeContainerScanResultCompartment API.
|
|
219
242
|
*/
|
|
220
243
|
changeContainerScanResultCompartment(changeContainerScanResultCompartmentRequest) {
|
|
221
244
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -273,7 +296,7 @@ class VulnerabilityScanningClient {
|
|
|
273
296
|
* @param ChangeContainerScanTargetCompartmentRequest
|
|
274
297
|
* @return ChangeContainerScanTargetCompartmentResponse
|
|
275
298
|
* @throws OciError when an error occurs
|
|
276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
299
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeContainerScanTargetCompartment.ts.html |here} to see how to use ChangeContainerScanTargetCompartment API.
|
|
277
300
|
*/
|
|
278
301
|
changeContainerScanTargetCompartment(changeContainerScanTargetCompartmentRequest) {
|
|
279
302
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -331,7 +354,7 @@ class VulnerabilityScanningClient {
|
|
|
331
354
|
* @param ChangeHostAgentScanResultCompartmentRequest
|
|
332
355
|
* @return ChangeHostAgentScanResultCompartmentResponse
|
|
333
356
|
* @throws OciError when an error occurs
|
|
334
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
357
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeHostAgentScanResultCompartment.ts.html |here} to see how to use ChangeHostAgentScanResultCompartment API.
|
|
335
358
|
*/
|
|
336
359
|
changeHostAgentScanResultCompartment(changeHostAgentScanResultCompartmentRequest) {
|
|
337
360
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -389,7 +412,7 @@ class VulnerabilityScanningClient {
|
|
|
389
412
|
* @param ChangeHostCisBenchmarkScanResultCompartmentRequest
|
|
390
413
|
* @return ChangeHostCisBenchmarkScanResultCompartmentResponse
|
|
391
414
|
* @throws OciError when an error occurs
|
|
392
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeHostCisBenchmarkScanResultCompartment.ts.html |here} to see how to use ChangeHostCisBenchmarkScanResultCompartment API.
|
|
393
416
|
*/
|
|
394
417
|
changeHostCisBenchmarkScanResultCompartment(changeHostCisBenchmarkScanResultCompartmentRequest) {
|
|
395
418
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -447,7 +470,7 @@ class VulnerabilityScanningClient {
|
|
|
447
470
|
* @param ChangeHostEndpointProtectionScanResultCompartmentRequest
|
|
448
471
|
* @return ChangeHostEndpointProtectionScanResultCompartmentResponse
|
|
449
472
|
* @throws OciError when an error occurs
|
|
450
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
473
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeHostEndpointProtectionScanResultCompartment.ts.html |here} to see how to use ChangeHostEndpointProtectionScanResultCompartment API.
|
|
451
474
|
*/
|
|
452
475
|
changeHostEndpointProtectionScanResultCompartment(changeHostEndpointProtectionScanResultCompartmentRequest) {
|
|
453
476
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -505,7 +528,7 @@ class VulnerabilityScanningClient {
|
|
|
505
528
|
* @param ChangeHostPortScanResultCompartmentRequest
|
|
506
529
|
* @return ChangeHostPortScanResultCompartmentResponse
|
|
507
530
|
* @throws OciError when an error occurs
|
|
508
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
531
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeHostPortScanResultCompartment.ts.html |here} to see how to use ChangeHostPortScanResultCompartment API.
|
|
509
532
|
*/
|
|
510
533
|
changeHostPortScanResultCompartment(changeHostPortScanResultCompartmentRequest) {
|
|
511
534
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -563,7 +586,7 @@ class VulnerabilityScanningClient {
|
|
|
563
586
|
* @param ChangeHostScanRecipeCompartmentRequest
|
|
564
587
|
* @return ChangeHostScanRecipeCompartmentResponse
|
|
565
588
|
* @throws OciError when an error occurs
|
|
566
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
589
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeHostScanRecipeCompartment.ts.html |here} to see how to use ChangeHostScanRecipeCompartment API.
|
|
567
590
|
*/
|
|
568
591
|
changeHostScanRecipeCompartment(changeHostScanRecipeCompartmentRequest) {
|
|
569
592
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -621,7 +644,7 @@ class VulnerabilityScanningClient {
|
|
|
621
644
|
* @param ChangeHostScanTargetCompartmentRequest
|
|
622
645
|
* @return ChangeHostScanTargetCompartmentResponse
|
|
623
646
|
* @throws OciError when an error occurs
|
|
624
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
647
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ChangeHostScanTargetCompartment.ts.html |here} to see how to use ChangeHostScanTargetCompartment API.
|
|
625
648
|
*/
|
|
626
649
|
changeHostScanTargetCompartment(changeHostScanTargetCompartmentRequest) {
|
|
627
650
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -679,7 +702,7 @@ class VulnerabilityScanningClient {
|
|
|
679
702
|
* @param CreateContainerScanRecipeRequest
|
|
680
703
|
* @return CreateContainerScanRecipeResponse
|
|
681
704
|
* @throws OciError when an error occurs
|
|
682
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
705
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/CreateContainerScanRecipe.ts.html |here} to see how to use CreateContainerScanRecipe API.
|
|
683
706
|
*/
|
|
684
707
|
createContainerScanRecipe(createContainerScanRecipeRequest) {
|
|
685
708
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -748,7 +771,7 @@ class VulnerabilityScanningClient {
|
|
|
748
771
|
* @param CreateContainerScanTargetRequest
|
|
749
772
|
* @return CreateContainerScanTargetResponse
|
|
750
773
|
* @throws OciError when an error occurs
|
|
751
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
774
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/CreateContainerScanTarget.ts.html |here} to see how to use CreateContainerScanTarget API.
|
|
752
775
|
*/
|
|
753
776
|
createContainerScanTarget(createContainerScanTargetRequest) {
|
|
754
777
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -817,7 +840,7 @@ class VulnerabilityScanningClient {
|
|
|
817
840
|
* @param CreateHostScanRecipeRequest
|
|
818
841
|
* @return CreateHostScanRecipeResponse
|
|
819
842
|
* @throws OciError when an error occurs
|
|
820
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
843
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/CreateHostScanRecipe.ts.html |here} to see how to use CreateHostScanRecipe API.
|
|
821
844
|
*/
|
|
822
845
|
createHostScanRecipe(createHostScanRecipeRequest) {
|
|
823
846
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -886,7 +909,7 @@ class VulnerabilityScanningClient {
|
|
|
886
909
|
* @param CreateHostScanTargetRequest
|
|
887
910
|
* @return CreateHostScanTargetResponse
|
|
888
911
|
* @throws OciError when an error occurs
|
|
889
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
912
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/CreateHostScanTarget.ts.html |here} to see how to use CreateHostScanTarget API.
|
|
890
913
|
*/
|
|
891
914
|
createHostScanTarget(createHostScanTargetRequest) {
|
|
892
915
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -955,7 +978,7 @@ class VulnerabilityScanningClient {
|
|
|
955
978
|
* @param DeleteContainerScanRecipeRequest
|
|
956
979
|
* @return DeleteContainerScanRecipeResponse
|
|
957
980
|
* @throws OciError when an error occurs
|
|
958
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
981
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteContainerScanRecipe.ts.html |here} to see how to use DeleteContainerScanRecipe API.
|
|
959
982
|
*/
|
|
960
983
|
deleteContainerScanRecipe(deleteContainerScanRecipeRequest) {
|
|
961
984
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1016,7 +1039,7 @@ class VulnerabilityScanningClient {
|
|
|
1016
1039
|
* @param DeleteContainerScanResultRequest
|
|
1017
1040
|
* @return DeleteContainerScanResultResponse
|
|
1018
1041
|
* @throws OciError when an error occurs
|
|
1019
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1042
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteContainerScanResult.ts.html |here} to see how to use DeleteContainerScanResult API.
|
|
1020
1043
|
*/
|
|
1021
1044
|
deleteContainerScanResult(deleteContainerScanResultRequest) {
|
|
1022
1045
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1077,7 +1100,7 @@ class VulnerabilityScanningClient {
|
|
|
1077
1100
|
* @param DeleteContainerScanTargetRequest
|
|
1078
1101
|
* @return DeleteContainerScanTargetResponse
|
|
1079
1102
|
* @throws OciError when an error occurs
|
|
1080
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteContainerScanTarget.ts.html |here} to see how to use DeleteContainerScanTarget API.
|
|
1081
1104
|
*/
|
|
1082
1105
|
deleteContainerScanTarget(deleteContainerScanTargetRequest) {
|
|
1083
1106
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1138,7 +1161,7 @@ class VulnerabilityScanningClient {
|
|
|
1138
1161
|
* @param DeleteHostAgentScanResultRequest
|
|
1139
1162
|
* @return DeleteHostAgentScanResultResponse
|
|
1140
1163
|
* @throws OciError when an error occurs
|
|
1141
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1164
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteHostAgentScanResult.ts.html |here} to see how to use DeleteHostAgentScanResult API.
|
|
1142
1165
|
*/
|
|
1143
1166
|
deleteHostAgentScanResult(deleteHostAgentScanResultRequest) {
|
|
1144
1167
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1199,7 +1222,7 @@ class VulnerabilityScanningClient {
|
|
|
1199
1222
|
* @param DeleteHostCisBenchmarkScanResultRequest
|
|
1200
1223
|
* @return DeleteHostCisBenchmarkScanResultResponse
|
|
1201
1224
|
* @throws OciError when an error occurs
|
|
1202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteHostCisBenchmarkScanResult.ts.html |here} to see how to use DeleteHostCisBenchmarkScanResult API.
|
|
1203
1226
|
*/
|
|
1204
1227
|
deleteHostCisBenchmarkScanResult(deleteHostCisBenchmarkScanResultRequest) {
|
|
1205
1228
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1260,7 +1283,7 @@ class VulnerabilityScanningClient {
|
|
|
1260
1283
|
* @param DeleteHostEndpointProtectionScanResultRequest
|
|
1261
1284
|
* @return DeleteHostEndpointProtectionScanResultResponse
|
|
1262
1285
|
* @throws OciError when an error occurs
|
|
1263
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteHostEndpointProtectionScanResult.ts.html |here} to see how to use DeleteHostEndpointProtectionScanResult API.
|
|
1264
1287
|
*/
|
|
1265
1288
|
deleteHostEndpointProtectionScanResult(deleteHostEndpointProtectionScanResultRequest) {
|
|
1266
1289
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1321,7 +1344,7 @@ class VulnerabilityScanningClient {
|
|
|
1321
1344
|
* @param DeleteHostPortScanResultRequest
|
|
1322
1345
|
* @return DeleteHostPortScanResultResponse
|
|
1323
1346
|
* @throws OciError when an error occurs
|
|
1324
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1347
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteHostPortScanResult.ts.html |here} to see how to use DeleteHostPortScanResult API.
|
|
1325
1348
|
*/
|
|
1326
1349
|
deleteHostPortScanResult(deleteHostPortScanResultRequest) {
|
|
1327
1350
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1382,7 +1405,7 @@ class VulnerabilityScanningClient {
|
|
|
1382
1405
|
* @param DeleteHostScanRecipeRequest
|
|
1383
1406
|
* @return DeleteHostScanRecipeResponse
|
|
1384
1407
|
* @throws OciError when an error occurs
|
|
1385
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1408
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteHostScanRecipe.ts.html |here} to see how to use DeleteHostScanRecipe API.
|
|
1386
1409
|
*/
|
|
1387
1410
|
deleteHostScanRecipe(deleteHostScanRecipeRequest) {
|
|
1388
1411
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1443,7 +1466,7 @@ class VulnerabilityScanningClient {
|
|
|
1443
1466
|
* @param DeleteHostScanTargetRequest
|
|
1444
1467
|
* @return DeleteHostScanTargetResponse
|
|
1445
1468
|
* @throws OciError when an error occurs
|
|
1446
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1469
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/DeleteHostScanTarget.ts.html |here} to see how to use DeleteHostScanTarget API.
|
|
1447
1470
|
*/
|
|
1448
1471
|
deleteHostScanTarget(deleteHostScanTargetRequest) {
|
|
1449
1472
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1504,7 +1527,7 @@ class VulnerabilityScanningClient {
|
|
|
1504
1527
|
* @param ExportHostAgentScanResultCsvRequest
|
|
1505
1528
|
* @return ExportHostAgentScanResultCsvResponse
|
|
1506
1529
|
* @throws OciError when an error occurs
|
|
1507
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1530
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ExportHostAgentScanResultCsv.ts.html |here} to see how to use ExportHostAgentScanResultCsv API.
|
|
1508
1531
|
*/
|
|
1509
1532
|
exportHostAgentScanResultCsv(exportHostAgentScanResultCsvRequest) {
|
|
1510
1533
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1561,7 +1584,7 @@ class VulnerabilityScanningClient {
|
|
|
1561
1584
|
* @param ExportHostVulnerabilityCsvRequest
|
|
1562
1585
|
* @return ExportHostVulnerabilityCsvResponse
|
|
1563
1586
|
* @throws OciError when an error occurs
|
|
1564
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1587
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ExportHostVulnerabilityCsv.ts.html |here} to see how to use ExportHostVulnerabilityCsv API.
|
|
1565
1588
|
*/
|
|
1566
1589
|
exportHostVulnerabilityCsv(exportHostVulnerabilityCsvRequest) {
|
|
1567
1590
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1618,7 +1641,7 @@ class VulnerabilityScanningClient {
|
|
|
1618
1641
|
* @param GetContainerScanRecipeRequest
|
|
1619
1642
|
* @return GetContainerScanRecipeResponse
|
|
1620
1643
|
* @throws OciError when an error occurs
|
|
1621
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1644
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetContainerScanRecipe.ts.html |here} to see how to use GetContainerScanRecipe API.
|
|
1622
1645
|
*/
|
|
1623
1646
|
getContainerScanRecipe(getContainerScanRecipeRequest) {
|
|
1624
1647
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1682,7 +1705,7 @@ class VulnerabilityScanningClient {
|
|
|
1682
1705
|
* @param GetContainerScanResultRequest
|
|
1683
1706
|
* @return GetContainerScanResultResponse
|
|
1684
1707
|
* @throws OciError when an error occurs
|
|
1685
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1708
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetContainerScanResult.ts.html |here} to see how to use GetContainerScanResult API.
|
|
1686
1709
|
*/
|
|
1687
1710
|
getContainerScanResult(getContainerScanResultRequest) {
|
|
1688
1711
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1746,7 +1769,7 @@ class VulnerabilityScanningClient {
|
|
|
1746
1769
|
* @param GetContainerScanTargetRequest
|
|
1747
1770
|
* @return GetContainerScanTargetResponse
|
|
1748
1771
|
* @throws OciError when an error occurs
|
|
1749
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1772
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetContainerScanTarget.ts.html |here} to see how to use GetContainerScanTarget API.
|
|
1750
1773
|
*/
|
|
1751
1774
|
getContainerScanTarget(getContainerScanTargetRequest) {
|
|
1752
1775
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1810,7 +1833,7 @@ class VulnerabilityScanningClient {
|
|
|
1810
1833
|
* @param GetHostAgentScanResultRequest
|
|
1811
1834
|
* @return GetHostAgentScanResultResponse
|
|
1812
1835
|
* @throws OciError when an error occurs
|
|
1813
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1836
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetHostAgentScanResult.ts.html |here} to see how to use GetHostAgentScanResult API.
|
|
1814
1837
|
*/
|
|
1815
1838
|
getHostAgentScanResult(getHostAgentScanResultRequest) {
|
|
1816
1839
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1874,7 +1897,7 @@ class VulnerabilityScanningClient {
|
|
|
1874
1897
|
* @param GetHostCisBenchmarkScanResultRequest
|
|
1875
1898
|
* @return GetHostCisBenchmarkScanResultResponse
|
|
1876
1899
|
* @throws OciError when an error occurs
|
|
1877
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1900
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetHostCisBenchmarkScanResult.ts.html |here} to see how to use GetHostCisBenchmarkScanResult API.
|
|
1878
1901
|
*/
|
|
1879
1902
|
getHostCisBenchmarkScanResult(getHostCisBenchmarkScanResultRequest) {
|
|
1880
1903
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1938,7 +1961,7 @@ class VulnerabilityScanningClient {
|
|
|
1938
1961
|
* @param GetHostEndpointProtectionScanResultRequest
|
|
1939
1962
|
* @return GetHostEndpointProtectionScanResultResponse
|
|
1940
1963
|
* @throws OciError when an error occurs
|
|
1941
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1964
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetHostEndpointProtectionScanResult.ts.html |here} to see how to use GetHostEndpointProtectionScanResult API.
|
|
1942
1965
|
*/
|
|
1943
1966
|
getHostEndpointProtectionScanResult(getHostEndpointProtectionScanResultRequest) {
|
|
1944
1967
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2002,7 +2025,7 @@ class VulnerabilityScanningClient {
|
|
|
2002
2025
|
* @param GetHostPortScanResultRequest
|
|
2003
2026
|
* @return GetHostPortScanResultResponse
|
|
2004
2027
|
* @throws OciError when an error occurs
|
|
2005
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2028
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetHostPortScanResult.ts.html |here} to see how to use GetHostPortScanResult API.
|
|
2006
2029
|
*/
|
|
2007
2030
|
getHostPortScanResult(getHostPortScanResultRequest) {
|
|
2008
2031
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2066,7 +2089,7 @@ class VulnerabilityScanningClient {
|
|
|
2066
2089
|
* @param GetHostScanRecipeRequest
|
|
2067
2090
|
* @return GetHostScanRecipeResponse
|
|
2068
2091
|
* @throws OciError when an error occurs
|
|
2069
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2092
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetHostScanRecipe.ts.html |here} to see how to use GetHostScanRecipe API.
|
|
2070
2093
|
*/
|
|
2071
2094
|
getHostScanRecipe(getHostScanRecipeRequest) {
|
|
2072
2095
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2130,7 +2153,7 @@ class VulnerabilityScanningClient {
|
|
|
2130
2153
|
* @param GetHostScanTargetRequest
|
|
2131
2154
|
* @return GetHostScanTargetResponse
|
|
2132
2155
|
* @throws OciError when an error occurs
|
|
2133
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetHostScanTarget.ts.html |here} to see how to use GetHostScanTarget API.
|
|
2134
2157
|
*/
|
|
2135
2158
|
getHostScanTarget(getHostScanTargetRequest) {
|
|
2136
2159
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2194,7 +2217,7 @@ class VulnerabilityScanningClient {
|
|
|
2194
2217
|
* @param GetHostVulnerabilityRequest
|
|
2195
2218
|
* @return GetHostVulnerabilityResponse
|
|
2196
2219
|
* @throws OciError when an error occurs
|
|
2197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2220
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetHostVulnerability.ts.html |here} to see how to use GetHostVulnerability API.
|
|
2198
2221
|
*/
|
|
2199
2222
|
getHostVulnerability(getHostVulnerabilityRequest) {
|
|
2200
2223
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2258,7 +2281,7 @@ class VulnerabilityScanningClient {
|
|
|
2258
2281
|
* @param GetVulnerabilityRequest
|
|
2259
2282
|
* @return GetVulnerabilityResponse
|
|
2260
2283
|
* @throws OciError when an error occurs
|
|
2261
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2284
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetVulnerability.ts.html |here} to see how to use GetVulnerability API.
|
|
2262
2285
|
*/
|
|
2263
2286
|
getVulnerability(getVulnerabilityRequest) {
|
|
2264
2287
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2322,7 +2345,7 @@ class VulnerabilityScanningClient {
|
|
|
2322
2345
|
* @param GetWorkRequestRequest
|
|
2323
2346
|
* @return GetWorkRequestResponse
|
|
2324
2347
|
* @throws OciError when an error occurs
|
|
2325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2348
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
2326
2349
|
*/
|
|
2327
2350
|
getWorkRequest(getWorkRequestRequest) {
|
|
2328
2351
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2386,7 +2409,7 @@ class VulnerabilityScanningClient {
|
|
|
2386
2409
|
* @param ListContainerScanRecipesRequest
|
|
2387
2410
|
* @return ListContainerScanRecipesResponse
|
|
2388
2411
|
* @throws OciError when an error occurs
|
|
2389
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2412
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListContainerScanRecipes.ts.html |here} to see how to use ListContainerScanRecipes API.
|
|
2390
2413
|
*/
|
|
2391
2414
|
listContainerScanRecipes(listContainerScanRecipesRequest) {
|
|
2392
2415
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2456,7 +2479,7 @@ class VulnerabilityScanningClient {
|
|
|
2456
2479
|
* @param ListContainerScanResultsRequest
|
|
2457
2480
|
* @return ListContainerScanResultsResponse
|
|
2458
2481
|
* @throws OciError when an error occurs
|
|
2459
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2482
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListContainerScanResults.ts.html |here} to see how to use ListContainerScanResults API.
|
|
2460
2483
|
*/
|
|
2461
2484
|
listContainerScanResults(listContainerScanResultsRequest) {
|
|
2462
2485
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2531,7 +2554,7 @@ class VulnerabilityScanningClient {
|
|
|
2531
2554
|
* @param ListContainerScanTargetsRequest
|
|
2532
2555
|
* @return ListContainerScanTargetsResponse
|
|
2533
2556
|
* @throws OciError when an error occurs
|
|
2534
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2557
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListContainerScanTargets.ts.html |here} to see how to use ListContainerScanTargets API.
|
|
2535
2558
|
*/
|
|
2536
2559
|
listContainerScanTargets(listContainerScanTargetsRequest) {
|
|
2537
2560
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2601,7 +2624,7 @@ class VulnerabilityScanningClient {
|
|
|
2601
2624
|
* @param ListHostAgentScanResultsRequest
|
|
2602
2625
|
* @return ListHostAgentScanResultsResponse
|
|
2603
2626
|
* @throws OciError when an error occurs
|
|
2604
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2627
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostAgentScanResults.ts.html |here} to see how to use ListHostAgentScanResults API.
|
|
2605
2628
|
*/
|
|
2606
2629
|
listHostAgentScanResults(listHostAgentScanResultsRequest) {
|
|
2607
2630
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2676,7 +2699,7 @@ class VulnerabilityScanningClient {
|
|
|
2676
2699
|
* @param ListHostCisBenchmarkScanResultsRequest
|
|
2677
2700
|
* @return ListHostCisBenchmarkScanResultsResponse
|
|
2678
2701
|
* @throws OciError when an error occurs
|
|
2679
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2702
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostCisBenchmarkScanResults.ts.html |here} to see how to use ListHostCisBenchmarkScanResults API.
|
|
2680
2703
|
*/
|
|
2681
2704
|
listHostCisBenchmarkScanResults(listHostCisBenchmarkScanResultsRequest) {
|
|
2682
2705
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2750,7 +2773,7 @@ class VulnerabilityScanningClient {
|
|
|
2750
2773
|
* @param ListHostEndpointProtectionScanResultsRequest
|
|
2751
2774
|
* @return ListHostEndpointProtectionScanResultsResponse
|
|
2752
2775
|
* @throws OciError when an error occurs
|
|
2753
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2776
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostEndpointProtectionScanResults.ts.html |here} to see how to use ListHostEndpointProtectionScanResults API.
|
|
2754
2777
|
*/
|
|
2755
2778
|
listHostEndpointProtectionScanResults(listHostEndpointProtectionScanResultsRequest) {
|
|
2756
2779
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2824,7 +2847,7 @@ class VulnerabilityScanningClient {
|
|
|
2824
2847
|
* @param ListHostPortScanResultsRequest
|
|
2825
2848
|
* @return ListHostPortScanResultsResponse
|
|
2826
2849
|
* @throws OciError when an error occurs
|
|
2827
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2850
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostPortScanResults.ts.html |here} to see how to use ListHostPortScanResults API.
|
|
2828
2851
|
*/
|
|
2829
2852
|
listHostPortScanResults(listHostPortScanResultsRequest) {
|
|
2830
2853
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2898,7 +2921,7 @@ class VulnerabilityScanningClient {
|
|
|
2898
2921
|
* @param ListHostScanRecipesRequest
|
|
2899
2922
|
* @return ListHostScanRecipesResponse
|
|
2900
2923
|
* @throws OciError when an error occurs
|
|
2901
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2924
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostScanRecipes.ts.html |here} to see how to use ListHostScanRecipes API.
|
|
2902
2925
|
*/
|
|
2903
2926
|
listHostScanRecipes(listHostScanRecipesRequest) {
|
|
2904
2927
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2968,7 +2991,7 @@ class VulnerabilityScanningClient {
|
|
|
2968
2991
|
* @param ListHostScanTargetErrorsRequest
|
|
2969
2992
|
* @return ListHostScanTargetErrorsResponse
|
|
2970
2993
|
* @throws OciError when an error occurs
|
|
2971
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2994
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostScanTargetErrors.ts.html |here} to see how to use ListHostScanTargetErrors API.
|
|
2972
2995
|
*/
|
|
2973
2996
|
listHostScanTargetErrors(listHostScanTargetErrorsRequest) {
|
|
2974
2997
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3039,7 +3062,7 @@ class VulnerabilityScanningClient {
|
|
|
3039
3062
|
* @param ListHostScanTargetsRequest
|
|
3040
3063
|
* @return ListHostScanTargetsResponse
|
|
3041
3064
|
* @throws OciError when an error occurs
|
|
3042
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3065
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostScanTargets.ts.html |here} to see how to use ListHostScanTargets API.
|
|
3043
3066
|
*/
|
|
3044
3067
|
listHostScanTargets(listHostScanTargetsRequest) {
|
|
3045
3068
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3109,7 +3132,7 @@ class VulnerabilityScanningClient {
|
|
|
3109
3132
|
* @param ListHostVulnerabilitiesRequest
|
|
3110
3133
|
* @return ListHostVulnerabilitiesResponse
|
|
3111
3134
|
* @throws OciError when an error occurs
|
|
3112
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3135
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostVulnerabilities.ts.html |here} to see how to use ListHostVulnerabilities API.
|
|
3113
3136
|
*/
|
|
3114
3137
|
listHostVulnerabilities(listHostVulnerabilitiesRequest) {
|
|
3115
3138
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3181,7 +3204,7 @@ class VulnerabilityScanningClient {
|
|
|
3181
3204
|
* @param ListHostVulnerabilityImpactedHostsRequest
|
|
3182
3205
|
* @return ListHostVulnerabilityImpactedHostsResponse
|
|
3183
3206
|
* @throws OciError when an error occurs
|
|
3184
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3207
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListHostVulnerabilityImpactedHosts.ts.html |here} to see how to use ListHostVulnerabilityImpactedHosts API.
|
|
3185
3208
|
*/
|
|
3186
3209
|
listHostVulnerabilityImpactedHosts(listHostVulnerabilityImpactedHostsRequest) {
|
|
3187
3210
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3250,7 +3273,7 @@ class VulnerabilityScanningClient {
|
|
|
3250
3273
|
* @param ListVulnerabilitiesRequest
|
|
3251
3274
|
* @return ListVulnerabilitiesResponse
|
|
3252
3275
|
* @throws OciError when an error occurs
|
|
3253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListVulnerabilities.ts.html |here} to see how to use ListVulnerabilities API.
|
|
3254
3277
|
*/
|
|
3255
3278
|
listVulnerabilities(listVulnerabilitiesRequest) {
|
|
3256
3279
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3322,7 +3345,7 @@ class VulnerabilityScanningClient {
|
|
|
3322
3345
|
* @param ListVulnerabilityImpactedContainersRequest
|
|
3323
3346
|
* @return ListVulnerabilityImpactedContainersResponse
|
|
3324
3347
|
* @throws OciError when an error occurs
|
|
3325
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3348
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListVulnerabilityImpactedContainers.ts.html |here} to see how to use ListVulnerabilityImpactedContainers API.
|
|
3326
3349
|
*/
|
|
3327
3350
|
listVulnerabilityImpactedContainers(listVulnerabilityImpactedContainersRequest) {
|
|
3328
3351
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3391,7 +3414,7 @@ class VulnerabilityScanningClient {
|
|
|
3391
3414
|
* @param ListVulnerabilityImpactedHostsRequest
|
|
3392
3415
|
* @return ListVulnerabilityImpactedHostsResponse
|
|
3393
3416
|
* @throws OciError when an error occurs
|
|
3394
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3417
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListVulnerabilityImpactedHosts.ts.html |here} to see how to use ListVulnerabilityImpactedHosts API.
|
|
3395
3418
|
*/
|
|
3396
3419
|
listVulnerabilityImpactedHosts(listVulnerabilityImpactedHostsRequest) {
|
|
3397
3420
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3460,7 +3483,7 @@ class VulnerabilityScanningClient {
|
|
|
3460
3483
|
* @param ListWorkRequestErrorsRequest
|
|
3461
3484
|
* @return ListWorkRequestErrorsResponse
|
|
3462
3485
|
* @throws OciError when an error occurs
|
|
3463
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3486
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
3464
3487
|
*/
|
|
3465
3488
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
3466
3489
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3527,7 +3550,7 @@ class VulnerabilityScanningClient {
|
|
|
3527
3550
|
* @param ListWorkRequestLogsRequest
|
|
3528
3551
|
* @return ListWorkRequestLogsResponse
|
|
3529
3552
|
* @throws OciError when an error occurs
|
|
3530
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3553
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
3531
3554
|
*/
|
|
3532
3555
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
3533
3556
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3594,7 +3617,7 @@ class VulnerabilityScanningClient {
|
|
|
3594
3617
|
* @param ListWorkRequestsRequest
|
|
3595
3618
|
* @return ListWorkRequestsResponse
|
|
3596
3619
|
* @throws OciError when an error occurs
|
|
3597
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3620
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
3598
3621
|
*/
|
|
3599
3622
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3600
3623
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3660,7 +3683,7 @@ class VulnerabilityScanningClient {
|
|
|
3660
3683
|
* @param UpdateContainerScanRecipeRequest
|
|
3661
3684
|
* @return UpdateContainerScanRecipeResponse
|
|
3662
3685
|
* @throws OciError when an error occurs
|
|
3663
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3686
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/UpdateContainerScanRecipe.ts.html |here} to see how to use UpdateContainerScanRecipe API.
|
|
3664
3687
|
*/
|
|
3665
3688
|
updateContainerScanRecipe(updateContainerScanRecipeRequest) {
|
|
3666
3689
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3722,7 +3745,7 @@ class VulnerabilityScanningClient {
|
|
|
3722
3745
|
* @param UpdateContainerScanTargetRequest
|
|
3723
3746
|
* @return UpdateContainerScanTargetResponse
|
|
3724
3747
|
* @throws OciError when an error occurs
|
|
3725
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3748
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/UpdateContainerScanTarget.ts.html |here} to see how to use UpdateContainerScanTarget API.
|
|
3726
3749
|
*/
|
|
3727
3750
|
updateContainerScanTarget(updateContainerScanTargetRequest) {
|
|
3728
3751
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3784,7 +3807,7 @@ class VulnerabilityScanningClient {
|
|
|
3784
3807
|
* @param UpdateHostScanRecipeRequest
|
|
3785
3808
|
* @return UpdateHostScanRecipeResponse
|
|
3786
3809
|
* @throws OciError when an error occurs
|
|
3787
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3810
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/UpdateHostScanRecipe.ts.html |here} to see how to use UpdateHostScanRecipe API.
|
|
3788
3811
|
*/
|
|
3789
3812
|
updateHostScanRecipe(updateHostScanRecipeRequest) {
|
|
3790
3813
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3846,7 +3869,7 @@ class VulnerabilityScanningClient {
|
|
|
3846
3869
|
* @param UpdateHostScanTargetRequest
|
|
3847
3870
|
* @return UpdateHostScanTargetResponse
|
|
3848
3871
|
* @throws OciError when an error occurs
|
|
3849
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3872
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/vulnerabilityscanning/UpdateHostScanTarget.ts.html |here} to see how to use UpdateHostScanTarget API.
|
|
3850
3873
|
*/
|
|
3851
3874
|
updateHostScanTarget(updateHostScanTargetRequest) {
|
|
3852
3875
|
return __awaiter(this, void 0, void 0, function* () {
|