oci-jms 2.57.0 → 2.58.1

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.
Files changed (48) hide show
  1. package/lib/client.d.ts +54 -44
  2. package/lib/client.js +67 -44
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/add-fleet-installation-sites-request.d.ts +1 -1
  5. package/lib/request/cancel-work-request-request.d.ts +1 -1
  6. package/lib/request/change-fleet-compartment-request.d.ts +1 -1
  7. package/lib/request/create-blocklist-request.d.ts +1 -1
  8. package/lib/request/create-fleet-request.d.ts +1 -1
  9. package/lib/request/delete-blocklist-request.d.ts +1 -1
  10. package/lib/request/delete-crypto-analysis-result-request.d.ts +1 -1
  11. package/lib/request/delete-fleet-request.d.ts +1 -1
  12. package/lib/request/generate-agent-deploy-script-request.d.ts +1 -1
  13. package/lib/request/get-crypto-analysis-result-request.d.ts +1 -1
  14. package/lib/request/get-fleet-advanced-feature-configuration-request.d.ts +1 -1
  15. package/lib/request/get-fleet-agent-configuration-request.d.ts +1 -1
  16. package/lib/request/get-fleet-request.d.ts +1 -1
  17. package/lib/request/get-java-family-request.d.ts +1 -1
  18. package/lib/request/get-java-release-request.d.ts +1 -1
  19. package/lib/request/get-work-request-request.d.ts +1 -1
  20. package/lib/request/list-blocklists-request.d.ts +1 -1
  21. package/lib/request/list-crypto-analysis-results-request.d.ts +1 -1
  22. package/lib/request/list-fleets-request.d.ts +1 -1
  23. package/lib/request/list-installation-sites-request.d.ts +1 -1
  24. package/lib/request/list-java-families-request.d.ts +1 -1
  25. package/lib/request/list-java-releases-request.d.ts +1 -1
  26. package/lib/request/list-jre-usage-request.d.ts +1 -1
  27. package/lib/request/list-work-items-request.d.ts +1 -1
  28. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  29. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  30. package/lib/request/list-work-requests-request.d.ts +1 -1
  31. package/lib/request/remove-fleet-installation-sites-request.d.ts +1 -1
  32. package/lib/request/request-crypto-analyses-request.d.ts +1 -1
  33. package/lib/request/request-jfr-recordings-request.d.ts +1 -1
  34. package/lib/request/scan-java-server-usage-request.d.ts +1 -1
  35. package/lib/request/scan-library-usage-request.d.ts +1 -1
  36. package/lib/request/summarize-application-usage-request.d.ts +1 -1
  37. package/lib/request/summarize-deployed-application-usage-request.d.ts +1 -1
  38. package/lib/request/summarize-installation-usage-request.d.ts +1 -1
  39. package/lib/request/summarize-java-server-instance-usage-request.d.ts +1 -1
  40. package/lib/request/summarize-java-server-usage-request.d.ts +1 -1
  41. package/lib/request/summarize-jre-usage-request.d.ts +1 -1
  42. package/lib/request/summarize-library-usage-request.d.ts +1 -1
  43. package/lib/request/summarize-managed-instance-usage-request.d.ts +1 -1
  44. package/lib/request/summarize-resource-inventory-request.d.ts +1 -1
  45. package/lib/request/update-fleet-advanced-feature-configuration-request.d.ts +1 -1
  46. package/lib/request/update-fleet-agent-configuration-request.d.ts +1 -1
  47. package/lib/request/update-fleet-request.d.ts +1 -1
  48. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -56,11 +56,14 @@ var JavaManagementServiceApiKeys;
56
56
  */
57
57
  class JavaManagementServiceClient {
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 = "JavaManagementService";
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 JavaManagementServiceClient {
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(JavaManagementServiceClient.serviceEndpointTemplate, this._region, JavaManagementServiceClient.endpointServiceName);
127
+ }
128
+ else if (this._lastSetRegionOrRegionId === common.Region.REGION_ID_STRING) {
129
+ this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(JavaManagementServiceClient.serviceEndpointTemplate, this._regionId, JavaManagementServiceClient.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(JavaManagementServiceClient.serviceEndpointTemplate, region, JavaManagementServiceClient.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 JavaManagementServiceClient {
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(JavaManagementServiceClient.serviceEndpointTemplate, regionId, JavaManagementServiceClient.endpointServiceName);
153
+ this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
131
154
  }
132
155
  /**
133
156
  * Creates a new JavaManagementServiceWaiter for resources for this service.
@@ -156,7 +179,7 @@ class JavaManagementServiceClient {
156
179
  * @param AddFleetInstallationSitesRequest
157
180
  * @return AddFleetInstallationSitesResponse
158
181
  * @throws OciError when an error occurs
159
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/AddFleetInstallationSites.ts.html |here} to see how to use AddFleetInstallationSites API.
182
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/AddFleetInstallationSites.ts.html |here} to see how to use AddFleetInstallationSites API.
160
183
  */
161
184
  addFleetInstallationSites(addFleetInstallationSitesRequest) {
162
185
  return __awaiter(this, void 0, void 0, function* () {
@@ -218,7 +241,7 @@ class JavaManagementServiceClient {
218
241
  * @param CancelWorkRequestRequest
219
242
  * @return CancelWorkRequestResponse
220
243
  * @throws OciError when an error occurs
221
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
244
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
222
245
  */
223
246
  cancelWorkRequest(cancelWorkRequestRequest) {
224
247
  return __awaiter(this, void 0, void 0, function* () {
@@ -274,7 +297,7 @@ class JavaManagementServiceClient {
274
297
  * @param ChangeFleetCompartmentRequest
275
298
  * @return ChangeFleetCompartmentResponse
276
299
  * @throws OciError when an error occurs
277
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ChangeFleetCompartment.ts.html |here} to see how to use ChangeFleetCompartment API.
300
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ChangeFleetCompartment.ts.html |here} to see how to use ChangeFleetCompartment API.
278
301
  */
279
302
  changeFleetCompartment(changeFleetCompartmentRequest) {
280
303
  return __awaiter(this, void 0, void 0, function* () {
@@ -337,7 +360,7 @@ class JavaManagementServiceClient {
337
360
  * @param CreateBlocklistRequest
338
361
  * @return CreateBlocklistResponse
339
362
  * @throws OciError when an error occurs
340
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/CreateBlocklist.ts.html |here} to see how to use CreateBlocklist API.
363
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/CreateBlocklist.ts.html |here} to see how to use CreateBlocklist API.
341
364
  */
342
365
  createBlocklist(createBlocklistRequest) {
343
366
  return __awaiter(this, void 0, void 0, function* () {
@@ -409,7 +432,7 @@ class JavaManagementServiceClient {
409
432
  * @param CreateFleetRequest
410
433
  * @return CreateFleetResponse
411
434
  * @throws OciError when an error occurs
412
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/CreateFleet.ts.html |here} to see how to use CreateFleet API.
435
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/CreateFleet.ts.html |here} to see how to use CreateFleet API.
413
436
  */
414
437
  createFleet(createFleetRequest) {
415
438
  return __awaiter(this, void 0, void 0, function* () {
@@ -468,7 +491,7 @@ class JavaManagementServiceClient {
468
491
  * @param DeleteBlocklistRequest
469
492
  * @return DeleteBlocklistResponse
470
493
  * @throws OciError when an error occurs
471
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/DeleteBlocklist.ts.html |here} to see how to use DeleteBlocklist API.
494
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/DeleteBlocklist.ts.html |here} to see how to use DeleteBlocklist API.
472
495
  */
473
496
  deleteBlocklist(deleteBlocklistRequest) {
474
497
  return __awaiter(this, void 0, void 0, function* () {
@@ -524,7 +547,7 @@ class JavaManagementServiceClient {
524
547
  * @param DeleteCryptoAnalysisResultRequest
525
548
  * @return DeleteCryptoAnalysisResultResponse
526
549
  * @throws OciError when an error occurs
527
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/DeleteCryptoAnalysisResult.ts.html |here} to see how to use DeleteCryptoAnalysisResult API.
550
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/DeleteCryptoAnalysisResult.ts.html |here} to see how to use DeleteCryptoAnalysisResult API.
528
551
  */
529
552
  deleteCryptoAnalysisResult(deleteCryptoAnalysisResultRequest) {
530
553
  return __awaiter(this, void 0, void 0, function* () {
@@ -585,7 +608,7 @@ class JavaManagementServiceClient {
585
608
  * @param DeleteFleetRequest
586
609
  * @return DeleteFleetResponse
587
610
  * @throws OciError when an error occurs
588
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/DeleteFleet.ts.html |here} to see how to use DeleteFleet API.
611
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/DeleteFleet.ts.html |here} to see how to use DeleteFleet API.
589
612
  */
590
613
  deleteFleet(deleteFleetRequest) {
591
614
  return __awaiter(this, void 0, void 0, function* () {
@@ -646,7 +669,7 @@ class JavaManagementServiceClient {
646
669
  * @param GenerateAgentDeployScriptRequest
647
670
  * @return GenerateAgentDeployScriptResponse
648
671
  * @throws OciError when an error occurs
649
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/GenerateAgentDeployScript.ts.html |here} to see how to use GenerateAgentDeployScript API.
672
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/GenerateAgentDeployScript.ts.html |here} to see how to use GenerateAgentDeployScript API.
650
673
  */
651
674
  generateAgentDeployScript(generateAgentDeployScriptRequest) {
652
675
  return __awaiter(this, void 0, void 0, function* () {
@@ -714,7 +737,7 @@ class JavaManagementServiceClient {
714
737
  * @param GetCryptoAnalysisResultRequest
715
738
  * @return GetCryptoAnalysisResultResponse
716
739
  * @throws OciError when an error occurs
717
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/GetCryptoAnalysisResult.ts.html |here} to see how to use GetCryptoAnalysisResult API.
740
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/GetCryptoAnalysisResult.ts.html |here} to see how to use GetCryptoAnalysisResult API.
718
741
  */
719
742
  getCryptoAnalysisResult(getCryptoAnalysisResultRequest) {
720
743
  return __awaiter(this, void 0, void 0, function* () {
@@ -778,7 +801,7 @@ class JavaManagementServiceClient {
778
801
  * @param GetFleetRequest
779
802
  * @return GetFleetResponse
780
803
  * @throws OciError when an error occurs
781
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/GetFleet.ts.html |here} to see how to use GetFleet API.
804
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/GetFleet.ts.html |here} to see how to use GetFleet API.
782
805
  */
783
806
  getFleet(getFleetRequest) {
784
807
  return __awaiter(this, void 0, void 0, function* () {
@@ -842,7 +865,7 @@ class JavaManagementServiceClient {
842
865
  * @param GetFleetAdvancedFeatureConfigurationRequest
843
866
  * @return GetFleetAdvancedFeatureConfigurationResponse
844
867
  * @throws OciError when an error occurs
845
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/GetFleetAdvancedFeatureConfiguration.ts.html |here} to see how to use GetFleetAdvancedFeatureConfiguration API.
868
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/GetFleetAdvancedFeatureConfiguration.ts.html |here} to see how to use GetFleetAdvancedFeatureConfiguration API.
846
869
  */
847
870
  getFleetAdvancedFeatureConfiguration(getFleetAdvancedFeatureConfigurationRequest) {
848
871
  return __awaiter(this, void 0, void 0, function* () {
@@ -906,7 +929,7 @@ class JavaManagementServiceClient {
906
929
  * @param GetFleetAgentConfigurationRequest
907
930
  * @return GetFleetAgentConfigurationResponse
908
931
  * @throws OciError when an error occurs
909
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/GetFleetAgentConfiguration.ts.html |here} to see how to use GetFleetAgentConfiguration API.
932
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/GetFleetAgentConfiguration.ts.html |here} to see how to use GetFleetAgentConfiguration API.
910
933
  */
911
934
  getFleetAgentConfiguration(getFleetAgentConfigurationRequest) {
912
935
  return __awaiter(this, void 0, void 0, function* () {
@@ -970,7 +993,7 @@ class JavaManagementServiceClient {
970
993
  * @param GetJavaFamilyRequest
971
994
  * @return GetJavaFamilyResponse
972
995
  * @throws OciError when an error occurs
973
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/GetJavaFamily.ts.html |here} to see how to use GetJavaFamily API.
996
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/GetJavaFamily.ts.html |here} to see how to use GetJavaFamily API.
974
997
  */
975
998
  getJavaFamily(getJavaFamilyRequest) {
976
999
  return __awaiter(this, void 0, void 0, function* () {
@@ -1028,7 +1051,7 @@ class JavaManagementServiceClient {
1028
1051
  * @param GetJavaReleaseRequest
1029
1052
  * @return GetJavaReleaseResponse
1030
1053
  * @throws OciError when an error occurs
1031
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/GetJavaRelease.ts.html |here} to see how to use GetJavaRelease API.
1054
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/GetJavaRelease.ts.html |here} to see how to use GetJavaRelease API.
1032
1055
  */
1033
1056
  getJavaRelease(getJavaReleaseRequest) {
1034
1057
  return __awaiter(this, void 0, void 0, function* () {
@@ -1086,7 +1109,7 @@ class JavaManagementServiceClient {
1086
1109
  * @param GetWorkRequestRequest
1087
1110
  * @return GetWorkRequestResponse
1088
1111
  * @throws OciError when an error occurs
1089
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1112
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
1090
1113
  */
1091
1114
  getWorkRequest(getWorkRequestRequest) {
1092
1115
  return __awaiter(this, void 0, void 0, function* () {
@@ -1155,7 +1178,7 @@ class JavaManagementServiceClient {
1155
1178
  * @param ListBlocklistsRequest
1156
1179
  * @return ListBlocklistsResponse
1157
1180
  * @throws OciError when an error occurs
1158
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListBlocklists.ts.html |here} to see how to use ListBlocklists API.
1181
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListBlocklists.ts.html |here} to see how to use ListBlocklists API.
1159
1182
  */
1160
1183
  listBlocklists(listBlocklistsRequest) {
1161
1184
  return __awaiter(this, void 0, void 0, function* () {
@@ -1225,7 +1248,7 @@ class JavaManagementServiceClient {
1225
1248
  * @param ListCryptoAnalysisResultsRequest
1226
1249
  * @return ListCryptoAnalysisResultsResponse
1227
1250
  * @throws OciError when an error occurs
1228
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListCryptoAnalysisResults.ts.html |here} to see how to use ListCryptoAnalysisResults API.
1251
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListCryptoAnalysisResults.ts.html |here} to see how to use ListCryptoAnalysisResults API.
1229
1252
  */
1230
1253
  listCryptoAnalysisResults(listCryptoAnalysisResultsRequest) {
1231
1254
  return __awaiter(this, void 0, void 0, function* () {
@@ -1299,7 +1322,7 @@ class JavaManagementServiceClient {
1299
1322
  * @param ListFleetsRequest
1300
1323
  * @return ListFleetsResponse
1301
1324
  * @throws OciError when an error occurs
1302
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListFleets.ts.html |here} to see how to use ListFleets API.
1325
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListFleets.ts.html |here} to see how to use ListFleets API.
1303
1326
  */
1304
1327
  listFleets(listFleetsRequest) {
1305
1328
  return __awaiter(this, void 0, void 0, function* () {
@@ -1370,7 +1393,7 @@ class JavaManagementServiceClient {
1370
1393
  * @param ListInstallationSitesRequest
1371
1394
  * @return ListInstallationSitesResponse
1372
1395
  * @throws OciError when an error occurs
1373
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListInstallationSites.ts.html |here} to see how to use ListInstallationSites API.
1396
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListInstallationSites.ts.html |here} to see how to use ListInstallationSites API.
1374
1397
  */
1375
1398
  listInstallationSites(listInstallationSitesRequest) {
1376
1399
  return __awaiter(this, void 0, void 0, function* () {
@@ -1451,7 +1474,7 @@ class JavaManagementServiceClient {
1451
1474
  * @param ListJavaFamiliesRequest
1452
1475
  * @return ListJavaFamiliesResponse
1453
1476
  * @throws OciError when an error occurs
1454
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListJavaFamilies.ts.html |here} to see how to use ListJavaFamilies API.
1477
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListJavaFamilies.ts.html |here} to see how to use ListJavaFamilies API.
1455
1478
  */
1456
1479
  listJavaFamilies(listJavaFamiliesRequest) {
1457
1480
  return __awaiter(this, void 0, void 0, function* () {
@@ -1520,7 +1543,7 @@ class JavaManagementServiceClient {
1520
1543
  * @param ListJavaReleasesRequest
1521
1544
  * @return ListJavaReleasesResponse
1522
1545
  * @throws OciError when an error occurs
1523
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListJavaReleases.ts.html |here} to see how to use ListJavaReleases API.
1546
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListJavaReleases.ts.html |here} to see how to use ListJavaReleases API.
1524
1547
  */
1525
1548
  listJavaReleases(listJavaReleasesRequest) {
1526
1549
  return __awaiter(this, void 0, void 0, function* () {
@@ -1591,7 +1614,7 @@ class JavaManagementServiceClient {
1591
1614
  * @param ListJreUsageRequest
1592
1615
  * @return ListJreUsageResponse
1593
1616
  * @throws OciError when an error occurs
1594
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListJreUsage.ts.html |here} to see how to use ListJreUsage API.
1617
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListJreUsage.ts.html |here} to see how to use ListJreUsage API.
1595
1618
  */
1596
1619
  listJreUsage(listJreUsageRequest) {
1597
1620
  return __awaiter(this, void 0, void 0, function* () {
@@ -1664,7 +1687,7 @@ class JavaManagementServiceClient {
1664
1687
  * @param ListWorkItemsRequest
1665
1688
  * @return ListWorkItemsResponse
1666
1689
  * @throws OciError when an error occurs
1667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListWorkItems.ts.html |here} to see how to use ListWorkItems API.
1690
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListWorkItems.ts.html |here} to see how to use ListWorkItems API.
1668
1691
  */
1669
1692
  listWorkItems(listWorkItemsRequest) {
1670
1693
  return __awaiter(this, void 0, void 0, function* () {
@@ -1731,7 +1754,7 @@ class JavaManagementServiceClient {
1731
1754
  * @param ListWorkRequestErrorsRequest
1732
1755
  * @return ListWorkRequestErrorsResponse
1733
1756
  * @throws OciError when an error occurs
1734
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1757
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1735
1758
  */
1736
1759
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
1737
1760
  return __awaiter(this, void 0, void 0, function* () {
@@ -1798,7 +1821,7 @@ class JavaManagementServiceClient {
1798
1821
  * @param ListWorkRequestLogsRequest
1799
1822
  * @return ListWorkRequestLogsResponse
1800
1823
  * @throws OciError when an error occurs
1801
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1824
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1802
1825
  */
1803
1826
  listWorkRequestLogs(listWorkRequestLogsRequest) {
1804
1827
  return __awaiter(this, void 0, void 0, function* () {
@@ -1865,7 +1888,7 @@ class JavaManagementServiceClient {
1865
1888
  * @param ListWorkRequestsRequest
1866
1889
  * @return ListWorkRequestsResponse
1867
1890
  * @throws OciError when an error occurs
1868
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1891
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1869
1892
  */
1870
1893
  listWorkRequests(listWorkRequestsRequest) {
1871
1894
  return __awaiter(this, void 0, void 0, function* () {
@@ -1932,7 +1955,7 @@ class JavaManagementServiceClient {
1932
1955
  * @param RemoveFleetInstallationSitesRequest
1933
1956
  * @return RemoveFleetInstallationSitesResponse
1934
1957
  * @throws OciError when an error occurs
1935
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/RemoveFleetInstallationSites.ts.html |here} to see how to use RemoveFleetInstallationSites API.
1958
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/RemoveFleetInstallationSites.ts.html |here} to see how to use RemoveFleetInstallationSites API.
1936
1959
  */
1937
1960
  removeFleetInstallationSites(removeFleetInstallationSitesRequest) {
1938
1961
  return __awaiter(this, void 0, void 0, function* () {
@@ -1996,7 +2019,7 @@ class JavaManagementServiceClient {
1996
2019
  * @param RequestCryptoAnalysesRequest
1997
2020
  * @return RequestCryptoAnalysesResponse
1998
2021
  * @throws OciError when an error occurs
1999
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/RequestCryptoAnalyses.ts.html |here} to see how to use RequestCryptoAnalyses API.
2022
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/RequestCryptoAnalyses.ts.html |here} to see how to use RequestCryptoAnalyses API.
2000
2023
  */
2001
2024
  requestCryptoAnalyses(requestCryptoAnalysesRequest) {
2002
2025
  return __awaiter(this, void 0, void 0, function* () {
@@ -2058,7 +2081,7 @@ class JavaManagementServiceClient {
2058
2081
  * @param RequestJfrRecordingsRequest
2059
2082
  * @return RequestJfrRecordingsResponse
2060
2083
  * @throws OciError when an error occurs
2061
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/RequestJfrRecordings.ts.html |here} to see how to use RequestJfrRecordings API.
2084
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/RequestJfrRecordings.ts.html |here} to see how to use RequestJfrRecordings API.
2062
2085
  */
2063
2086
  requestJfrRecordings(requestJfrRecordingsRequest) {
2064
2087
  return __awaiter(this, void 0, void 0, function* () {
@@ -2118,7 +2141,7 @@ class JavaManagementServiceClient {
2118
2141
  * @param ScanJavaServerUsageRequest
2119
2142
  * @return ScanJavaServerUsageResponse
2120
2143
  * @throws OciError when an error occurs
2121
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ScanJavaServerUsage.ts.html |here} to see how to use ScanJavaServerUsage API.
2144
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ScanJavaServerUsage.ts.html |here} to see how to use ScanJavaServerUsage API.
2122
2145
  */
2123
2146
  scanJavaServerUsage(scanJavaServerUsageRequest) {
2124
2147
  return __awaiter(this, void 0, void 0, function* () {
@@ -2180,7 +2203,7 @@ class JavaManagementServiceClient {
2180
2203
  * @param ScanLibraryUsageRequest
2181
2204
  * @return ScanLibraryUsageResponse
2182
2205
  * @throws OciError when an error occurs
2183
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/ScanLibraryUsage.ts.html |here} to see how to use ScanLibraryUsage API.
2206
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/ScanLibraryUsage.ts.html |here} to see how to use ScanLibraryUsage API.
2184
2207
  */
2185
2208
  scanLibraryUsage(scanLibraryUsageRequest) {
2186
2209
  return __awaiter(this, void 0, void 0, function* () {
@@ -2242,7 +2265,7 @@ class JavaManagementServiceClient {
2242
2265
  * @param SummarizeApplicationUsageRequest
2243
2266
  * @return SummarizeApplicationUsageResponse
2244
2267
  * @throws OciError when an error occurs
2245
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeApplicationUsage.ts.html |here} to see how to use SummarizeApplicationUsage API.
2268
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeApplicationUsage.ts.html |here} to see how to use SummarizeApplicationUsage API.
2246
2269
  */
2247
2270
  summarizeApplicationUsage(summarizeApplicationUsageRequest) {
2248
2271
  return __awaiter(this, void 0, void 0, function* () {
@@ -2325,7 +2348,7 @@ class JavaManagementServiceClient {
2325
2348
  * @param SummarizeDeployedApplicationUsageRequest
2326
2349
  * @return SummarizeDeployedApplicationUsageResponse
2327
2350
  * @throws OciError when an error occurs
2328
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeDeployedApplicationUsage.ts.html |here} to see how to use SummarizeDeployedApplicationUsage API.
2351
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeDeployedApplicationUsage.ts.html |here} to see how to use SummarizeDeployedApplicationUsage API.
2329
2352
  */
2330
2353
  summarizeDeployedApplicationUsage(summarizeDeployedApplicationUsageRequest) {
2331
2354
  return __awaiter(this, void 0, void 0, function* () {
@@ -2402,7 +2425,7 @@ class JavaManagementServiceClient {
2402
2425
  * @param SummarizeInstallationUsageRequest
2403
2426
  * @return SummarizeInstallationUsageResponse
2404
2427
  * @throws OciError when an error occurs
2405
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeInstallationUsage.ts.html |here} to see how to use SummarizeInstallationUsage API.
2428
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeInstallationUsage.ts.html |here} to see how to use SummarizeInstallationUsage API.
2406
2429
  */
2407
2430
  summarizeInstallationUsage(summarizeInstallationUsageRequest) {
2408
2431
  return __awaiter(this, void 0, void 0, function* () {
@@ -2482,7 +2505,7 @@ class JavaManagementServiceClient {
2482
2505
  * @param SummarizeJavaServerInstanceUsageRequest
2483
2506
  * @return SummarizeJavaServerInstanceUsageResponse
2484
2507
  * @throws OciError when an error occurs
2485
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeJavaServerInstanceUsage.ts.html |here} to see how to use SummarizeJavaServerInstanceUsage API.
2508
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeJavaServerInstanceUsage.ts.html |here} to see how to use SummarizeJavaServerInstanceUsage API.
2486
2509
  */
2487
2510
  summarizeJavaServerInstanceUsage(summarizeJavaServerInstanceUsageRequest) {
2488
2511
  return __awaiter(this, void 0, void 0, function* () {
@@ -2560,7 +2583,7 @@ class JavaManagementServiceClient {
2560
2583
  * @param SummarizeJavaServerUsageRequest
2561
2584
  * @return SummarizeJavaServerUsageResponse
2562
2585
  * @throws OciError when an error occurs
2563
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeJavaServerUsage.ts.html |here} to see how to use SummarizeJavaServerUsage API.
2586
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeJavaServerUsage.ts.html |here} to see how to use SummarizeJavaServerUsage API.
2564
2587
  */
2565
2588
  summarizeJavaServerUsage(summarizeJavaServerUsageRequest) {
2566
2589
  return __awaiter(this, void 0, void 0, function* () {
@@ -2634,7 +2657,7 @@ class JavaManagementServiceClient {
2634
2657
  * @param SummarizeJreUsageRequest
2635
2658
  * @return SummarizeJreUsageResponse
2636
2659
  * @throws OciError when an error occurs
2637
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeJreUsage.ts.html |here} to see how to use SummarizeJreUsage API.
2660
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeJreUsage.ts.html |here} to see how to use SummarizeJreUsage API.
2638
2661
  */
2639
2662
  summarizeJreUsage(summarizeJreUsageRequest) {
2640
2663
  return __awaiter(this, void 0, void 0, function* () {
@@ -2714,7 +2737,7 @@ class JavaManagementServiceClient {
2714
2737
  * @param SummarizeLibraryUsageRequest
2715
2738
  * @return SummarizeLibraryUsageResponse
2716
2739
  * @throws OciError when an error occurs
2717
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeLibraryUsage.ts.html |here} to see how to use SummarizeLibraryUsage API.
2740
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeLibraryUsage.ts.html |here} to see how to use SummarizeLibraryUsage API.
2718
2741
  */
2719
2742
  summarizeLibraryUsage(summarizeLibraryUsageRequest) {
2720
2743
  return __awaiter(this, void 0, void 0, function* () {
@@ -2790,7 +2813,7 @@ class JavaManagementServiceClient {
2790
2813
  * @param SummarizeManagedInstanceUsageRequest
2791
2814
  * @return SummarizeManagedInstanceUsageResponse
2792
2815
  * @throws OciError when an error occurs
2793
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeManagedInstanceUsage.ts.html |here} to see how to use SummarizeManagedInstanceUsage API.
2816
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeManagedInstanceUsage.ts.html |here} to see how to use SummarizeManagedInstanceUsage API.
2794
2817
  */
2795
2818
  summarizeManagedInstanceUsage(summarizeManagedInstanceUsageRequest) {
2796
2819
  return __awaiter(this, void 0, void 0, function* () {
@@ -2872,7 +2895,7 @@ class JavaManagementServiceClient {
2872
2895
  * @param SummarizeResourceInventoryRequest
2873
2896
  * @return SummarizeResourceInventoryResponse
2874
2897
  * @throws OciError when an error occurs
2875
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/SummarizeResourceInventory.ts.html |here} to see how to use SummarizeResourceInventory API.
2898
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/SummarizeResourceInventory.ts.html |here} to see how to use SummarizeResourceInventory API.
2876
2899
  */
2877
2900
  summarizeResourceInventory(summarizeResourceInventoryRequest) {
2878
2901
  return __awaiter(this, void 0, void 0, function* () {
@@ -2932,7 +2955,7 @@ class JavaManagementServiceClient {
2932
2955
  * @param UpdateFleetRequest
2933
2956
  * @return UpdateFleetResponse
2934
2957
  * @throws OciError when an error occurs
2935
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/UpdateFleet.ts.html |here} to see how to use UpdateFleet API.
2958
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/UpdateFleet.ts.html |here} to see how to use UpdateFleet API.
2936
2959
  */
2937
2960
  updateFleet(updateFleetRequest) {
2938
2961
  return __awaiter(this, void 0, void 0, function* () {
@@ -2995,7 +3018,7 @@ class JavaManagementServiceClient {
2995
3018
  * @param UpdateFleetAdvancedFeatureConfigurationRequest
2996
3019
  * @return UpdateFleetAdvancedFeatureConfigurationResponse
2997
3020
  * @throws OciError when an error occurs
2998
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/UpdateFleetAdvancedFeatureConfiguration.ts.html |here} to see how to use UpdateFleetAdvancedFeatureConfiguration API.
3021
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/UpdateFleetAdvancedFeatureConfiguration.ts.html |here} to see how to use UpdateFleetAdvancedFeatureConfiguration API.
2999
3022
  */
3000
3023
  updateFleetAdvancedFeatureConfiguration(updateFleetAdvancedFeatureConfigurationRequest) {
3001
3024
  return __awaiter(this, void 0, void 0, function* () {
@@ -3061,7 +3084,7 @@ class JavaManagementServiceClient {
3061
3084
  * @param UpdateFleetAgentConfigurationRequest
3062
3085
  * @return UpdateFleetAgentConfigurationResponse
3063
3086
  * @throws OciError when an error occurs
3064
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/jms/UpdateFleetAgentConfiguration.ts.html |here} to see how to use UpdateFleetAgentConfiguration API.
3087
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/jms/UpdateFleetAgentConfiguration.ts.html |here} to see how to use UpdateFleetAgentConfiguration API.
3065
3088
  */
3066
3089
  updateFleetAgentConfiguration(updateFleetAgentConfigurationRequest) {
3067
3090
  return __awaiter(this, void 0, void 0, function* () {