oci-dns 2.77.0 → 2.77.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 (56) hide show
  1. package/lib/client.d.ts +59 -53
  2. package/lib/client.js +61 -52
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/change-resolver-compartment-request.d.ts +1 -1
  5. package/lib/request/change-steering-policy-compartment-request.d.ts +1 -1
  6. package/lib/request/change-tsig-key-compartment-request.d.ts +1 -1
  7. package/lib/request/change-view-compartment-request.d.ts +1 -1
  8. package/lib/request/change-zone-compartment-request.d.ts +1 -1
  9. package/lib/request/create-resolver-endpoint-request.d.ts +1 -1
  10. package/lib/request/create-steering-policy-attachment-request.d.ts +1 -1
  11. package/lib/request/create-steering-policy-request.d.ts +1 -1
  12. package/lib/request/create-tsig-key-request.d.ts +1 -1
  13. package/lib/request/create-view-request.d.ts +1 -1
  14. package/lib/request/create-zone-from-zone-file-request.d.ts +1 -1
  15. package/lib/request/create-zone-request.d.ts +1 -1
  16. package/lib/request/delete-domain-records-request.d.ts +1 -1
  17. package/lib/request/delete-resolver-endpoint-request.d.ts +1 -1
  18. package/lib/request/delete-rrset-request.d.ts +1 -1
  19. package/lib/request/delete-steering-policy-attachment-request.d.ts +1 -1
  20. package/lib/request/delete-steering-policy-request.d.ts +1 -1
  21. package/lib/request/delete-tsig-key-request.d.ts +1 -1
  22. package/lib/request/delete-view-request.d.ts +1 -1
  23. package/lib/request/delete-zone-request.d.ts +1 -1
  24. package/lib/request/get-domain-records-request.d.ts +1 -1
  25. package/lib/request/get-resolver-endpoint-request.d.ts +1 -1
  26. package/lib/request/get-resolver-request.d.ts +1 -1
  27. package/lib/request/get-rrset-request.d.ts +1 -1
  28. package/lib/request/get-steering-policy-attachment-request.d.ts +1 -1
  29. package/lib/request/get-steering-policy-request.d.ts +1 -1
  30. package/lib/request/get-tsig-key-request.d.ts +1 -1
  31. package/lib/request/get-view-request.d.ts +1 -1
  32. package/lib/request/get-zone-content-request.d.ts +1 -1
  33. package/lib/request/get-zone-records-request.d.ts +1 -1
  34. package/lib/request/get-zone-request.d.ts +1 -1
  35. package/lib/request/list-resolver-endpoints-request.d.ts +1 -1
  36. package/lib/request/list-resolvers-request.d.ts +1 -1
  37. package/lib/request/list-steering-policies-request.d.ts +1 -1
  38. package/lib/request/list-steering-policy-attachments-request.d.ts +1 -1
  39. package/lib/request/list-tsig-keys-request.d.ts +1 -1
  40. package/lib/request/list-views-request.d.ts +1 -1
  41. package/lib/request/list-zone-transfer-servers-request.d.ts +1 -1
  42. package/lib/request/list-zones-request.d.ts +1 -1
  43. package/lib/request/patch-domain-records-request.d.ts +1 -1
  44. package/lib/request/patch-rrset-request.d.ts +1 -1
  45. package/lib/request/patch-zone-records-request.d.ts +1 -1
  46. package/lib/request/update-domain-records-request.d.ts +1 -1
  47. package/lib/request/update-resolver-endpoint-request.d.ts +1 -1
  48. package/lib/request/update-resolver-request.d.ts +1 -1
  49. package/lib/request/update-rrset-request.d.ts +1 -1
  50. package/lib/request/update-steering-policy-attachment-request.d.ts +1 -1
  51. package/lib/request/update-steering-policy-request.d.ts +1 -1
  52. package/lib/request/update-tsig-key-request.d.ts +1 -1
  53. package/lib/request/update-view-request.d.ts +1 -1
  54. package/lib/request/update-zone-records-request.d.ts +1 -1
  55. package/lib/request/update-zone-request.d.ts +1 -1
  56. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -48,6 +48,7 @@ const model = __importStar(require("./model"));
48
48
  const oci_common_1 = require("oci-common");
49
49
  const dns_waiter_1 = require("./dns-waiter");
50
50
  const oci_common_2 = require("oci-common");
51
+ const Breaker = require("opossum");
51
52
  // ===============================================
52
53
  // This file is autogenerated - Please do not edit
53
54
  // ===============================================
@@ -185,6 +186,14 @@ class DnsClient {
185
186
  }
186
187
  throw Error("Waiters do not exist. Please create waiters.");
187
188
  }
189
+ /**
190
+ * Shutdown the circuit breaker used by the client when it is no longer needed
191
+ */
192
+ shutdownCircuitBreaker() {
193
+ if (this._circuitBreaker) {
194
+ this._circuitBreaker.shutdown();
195
+ }
196
+ }
188
197
  /**
189
198
  * Moves a resolver into a different compartment along with its protected default view and any endpoints.
190
199
  * <p>
@@ -195,7 +204,7 @@ class DnsClient {
195
204
  * @param ChangeResolverCompartmentRequest
196
205
  * @return ChangeResolverCompartmentResponse
197
206
  * @throws OciError when an error occurs
198
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
207
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
199
208
  */
200
209
  changeResolverCompartment(changeResolverCompartmentRequest) {
201
210
  return __awaiter(this, void 0, void 0, function* () {
@@ -260,7 +269,7 @@ class DnsClient {
260
269
  * @param ChangeSteeringPolicyCompartmentRequest
261
270
  * @return ChangeSteeringPolicyCompartmentResponse
262
271
  * @throws OciError when an error occurs
263
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
272
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
264
273
  */
265
274
  changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest) {
266
275
  return __awaiter(this, void 0, void 0, function* () {
@@ -320,7 +329,7 @@ class DnsClient {
320
329
  * @param ChangeTsigKeyCompartmentRequest
321
330
  * @return ChangeTsigKeyCompartmentResponse
322
331
  * @throws OciError when an error occurs
323
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
332
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
324
333
  */
325
334
  changeTsigKeyCompartment(changeTsigKeyCompartmentRequest) {
326
335
  return __awaiter(this, void 0, void 0, function* () {
@@ -382,7 +391,7 @@ class DnsClient {
382
391
  * @param ChangeViewCompartmentRequest
383
392
  * @return ChangeViewCompartmentResponse
384
393
  * @throws OciError when an error occurs
385
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
394
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
386
395
  */
387
396
  changeViewCompartment(changeViewCompartmentRequest) {
388
397
  return __awaiter(this, void 0, void 0, function* () {
@@ -454,7 +463,7 @@ class DnsClient {
454
463
  * @param ChangeZoneCompartmentRequest
455
464
  * @return ChangeZoneCompartmentResponse
456
465
  * @throws OciError when an error occurs
457
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
466
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
458
467
  */
459
468
  changeZoneCompartment(changeZoneCompartmentRequest) {
460
469
  return __awaiter(this, void 0, void 0, function* () {
@@ -519,7 +528,7 @@ class DnsClient {
519
528
  * @param CreateResolverEndpointRequest
520
529
  * @return CreateResolverEndpointResponse
521
530
  * @throws OciError when an error occurs
522
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
531
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
523
532
  */
524
533
  createResolverEndpoint(createResolverEndpointRequest) {
525
534
  return __awaiter(this, void 0, void 0, function* () {
@@ -598,7 +607,7 @@ class DnsClient {
598
607
  * @param CreateSteeringPolicyRequest
599
608
  * @return CreateSteeringPolicyResponse
600
609
  * @throws OciError when an error occurs
601
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
610
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
602
611
  */
603
612
  createSteeringPolicy(createSteeringPolicyRequest) {
604
613
  return __awaiter(this, void 0, void 0, function* () {
@@ -674,7 +683,7 @@ class DnsClient {
674
683
  * @param CreateSteeringPolicyAttachmentRequest
675
684
  * @return CreateSteeringPolicyAttachmentResponse
676
685
  * @throws OciError when an error occurs
677
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
686
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
678
687
  */
679
688
  createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest) {
680
689
  return __awaiter(this, void 0, void 0, function* () {
@@ -746,7 +755,7 @@ class DnsClient {
746
755
  * @param CreateTsigKeyRequest
747
756
  * @return CreateTsigKeyResponse
748
757
  * @throws OciError when an error occurs
749
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
758
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
750
759
  */
751
760
  createTsigKey(createTsigKeyRequest) {
752
761
  return __awaiter(this, void 0, void 0, function* () {
@@ -821,7 +830,7 @@ class DnsClient {
821
830
  * @param CreateViewRequest
822
831
  * @return CreateViewResponse
823
832
  * @throws OciError when an error occurs
824
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
833
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/CreateView.ts.html |here} to see how to use CreateView API.
825
834
  */
826
835
  createView(createViewRequest) {
827
836
  return __awaiter(this, void 0, void 0, function* () {
@@ -900,7 +909,7 @@ class DnsClient {
900
909
  * @param CreateZoneRequest
901
910
  * @return CreateZoneResponse
902
911
  * @throws OciError when an error occurs
903
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
912
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
904
913
  */
905
914
  createZone(createZoneRequest) {
906
915
  return __awaiter(this, void 0, void 0, function* () {
@@ -977,7 +986,7 @@ class DnsClient {
977
986
  * @param CreateZoneFromZoneFileRequest
978
987
  * @return CreateZoneFromZoneFileResponse
979
988
  * @throws OciError when an error occurs
980
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/CreateZoneFromZoneFile.ts.html |here} to see how to use CreateZoneFromZoneFile API.
989
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/CreateZoneFromZoneFile.ts.html |here} to see how to use CreateZoneFromZoneFile API.
981
990
  */
982
991
  createZoneFromZoneFile(createZoneFromZoneFileRequest) {
983
992
  return __awaiter(this, void 0, void 0, function* () {
@@ -1057,7 +1066,7 @@ class DnsClient {
1057
1066
  * @param DeleteDomainRecordsRequest
1058
1067
  * @return DeleteDomainRecordsResponse
1059
1068
  * @throws OciError when an error occurs
1060
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
1069
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
1061
1070
  */
1062
1071
  deleteDomainRecords(deleteDomainRecordsRequest) {
1063
1072
  return __awaiter(this, void 0, void 0, function* () {
@@ -1122,7 +1131,7 @@ class DnsClient {
1122
1131
  * @param DeleteRRSetRequest
1123
1132
  * @return DeleteRRSetResponse
1124
1133
  * @throws OciError when an error occurs
1125
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
1134
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
1126
1135
  */
1127
1136
  deleteRRSet(deleteRRSetRequest) {
1128
1137
  return __awaiter(this, void 0, void 0, function* () {
@@ -1189,7 +1198,7 @@ class DnsClient {
1189
1198
  * @param DeleteResolverEndpointRequest
1190
1199
  * @return DeleteResolverEndpointResponse
1191
1200
  * @throws OciError when an error occurs
1192
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
1201
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
1193
1202
  */
1194
1203
  deleteResolverEndpoint(deleteResolverEndpointRequest) {
1195
1204
  return __awaiter(this, void 0, void 0, function* () {
@@ -1258,7 +1267,7 @@ class DnsClient {
1258
1267
  * @param DeleteSteeringPolicyRequest
1259
1268
  * @return DeleteSteeringPolicyResponse
1260
1269
  * @throws OciError when an error occurs
1261
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
1270
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
1262
1271
  */
1263
1272
  deleteSteeringPolicy(deleteSteeringPolicyRequest) {
1264
1273
  return __awaiter(this, void 0, void 0, function* () {
@@ -1318,7 +1327,7 @@ class DnsClient {
1318
1327
  * @param DeleteSteeringPolicyAttachmentRequest
1319
1328
  * @return DeleteSteeringPolicyAttachmentResponse
1320
1329
  * @throws OciError when an error occurs
1321
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
1330
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
1322
1331
  */
1323
1332
  deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest) {
1324
1333
  return __awaiter(this, void 0, void 0, function* () {
@@ -1377,7 +1386,7 @@ class DnsClient {
1377
1386
  * @param DeleteTsigKeyRequest
1378
1387
  * @return DeleteTsigKeyResponse
1379
1388
  * @throws OciError when an error occurs
1380
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
1389
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
1381
1390
  */
1382
1391
  deleteTsigKey(deleteTsigKeyRequest) {
1383
1392
  return __awaiter(this, void 0, void 0, function* () {
@@ -1446,7 +1455,7 @@ class DnsClient {
1446
1455
  * @param DeleteViewRequest
1447
1456
  * @return DeleteViewResponse
1448
1457
  * @throws OciError when an error occurs
1449
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
1458
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
1450
1459
  */
1451
1460
  deleteView(deleteViewRequest) {
1452
1461
  return __awaiter(this, void 0, void 0, function* () {
@@ -1514,7 +1523,7 @@ class DnsClient {
1514
1523
  * @param DeleteZoneRequest
1515
1524
  * @return DeleteZoneResponse
1516
1525
  * @throws OciError when an error occurs
1517
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
1526
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
1518
1527
  */
1519
1528
  deleteZone(deleteZoneRequest) {
1520
1529
  return __awaiter(this, void 0, void 0, function* () {
@@ -1584,7 +1593,7 @@ class DnsClient {
1584
1593
  * @param GetDomainRecordsRequest
1585
1594
  * @return GetDomainRecordsResponse
1586
1595
  * @throws OciError when an error occurs
1587
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
1596
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
1588
1597
  */
1589
1598
  getDomainRecords(getDomainRecordsRequest) {
1590
1599
  return __awaiter(this, void 0, void 0, function* () {
@@ -1714,7 +1723,7 @@ class DnsClient {
1714
1723
  * @param GetRRSetRequest
1715
1724
  * @return GetRRSetResponse
1716
1725
  * @throws OciError when an error occurs
1717
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
1726
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
1718
1727
  */
1719
1728
  getRRSet(getRRSetRequest) {
1720
1729
  return __awaiter(this, void 0, void 0, function* () {
@@ -1842,7 +1851,7 @@ class DnsClient {
1842
1851
  * @param GetResolverRequest
1843
1852
  * @return GetResolverResponse
1844
1853
  * @throws OciError when an error occurs
1845
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
1854
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
1846
1855
  */
1847
1856
  getResolver(getResolverRequest) {
1848
1857
  return __awaiter(this, void 0, void 0, function* () {
@@ -1913,7 +1922,7 @@ class DnsClient {
1913
1922
  * @param GetResolverEndpointRequest
1914
1923
  * @return GetResolverEndpointResponse
1915
1924
  * @throws OciError when an error occurs
1916
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
1925
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
1917
1926
  */
1918
1927
  getResolverEndpoint(getResolverEndpointRequest) {
1919
1928
  return __awaiter(this, void 0, void 0, function* () {
@@ -1982,7 +1991,7 @@ class DnsClient {
1982
1991
  * @param GetSteeringPolicyRequest
1983
1992
  * @return GetSteeringPolicyResponse
1984
1993
  * @throws OciError when an error occurs
1985
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
1994
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
1986
1995
  */
1987
1996
  getSteeringPolicy(getSteeringPolicyRequest) {
1988
1997
  return __awaiter(this, void 0, void 0, function* () {
@@ -2050,7 +2059,7 @@ class DnsClient {
2050
2059
  * @param GetSteeringPolicyAttachmentRequest
2051
2060
  * @return GetSteeringPolicyAttachmentResponse
2052
2061
  * @throws OciError when an error occurs
2053
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
2062
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
2054
2063
  */
2055
2064
  getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest) {
2056
2065
  return __awaiter(this, void 0, void 0, function* () {
@@ -2118,7 +2127,7 @@ class DnsClient {
2118
2127
  * @param GetTsigKeyRequest
2119
2128
  * @return GetTsigKeyResponse
2120
2129
  * @throws OciError when an error occurs
2121
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
2130
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
2122
2131
  */
2123
2132
  getTsigKey(getTsigKeyRequest) {
2124
2133
  return __awaiter(this, void 0, void 0, function* () {
@@ -2190,7 +2199,7 @@ class DnsClient {
2190
2199
  * @param GetViewRequest
2191
2200
  * @return GetViewResponse
2192
2201
  * @throws OciError when an error occurs
2193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetView.ts.html |here} to see how to use GetView API.
2202
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetView.ts.html |here} to see how to use GetView API.
2194
2203
  */
2195
2204
  getView(getViewRequest) {
2196
2205
  return __awaiter(this, void 0, void 0, function* () {
@@ -2261,7 +2270,7 @@ class DnsClient {
2261
2270
  * @param GetZoneRequest
2262
2271
  * @return GetZoneResponse
2263
2272
  * @throws OciError when an error occurs
2264
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
2273
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetZone.ts.html |here} to see how to use GetZone API.
2265
2274
  */
2266
2275
  getZone(getZoneRequest) {
2267
2276
  return __awaiter(this, void 0, void 0, function* () {
@@ -2331,7 +2340,7 @@ class DnsClient {
2331
2340
  * @param GetZoneContentRequest
2332
2341
  * @return GetZoneContentResponse
2333
2342
  * @throws OciError when an error occurs
2334
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
2343
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
2335
2344
  */
2336
2345
  getZoneContent(getZoneContentRequest) {
2337
2346
  return __awaiter(this, void 0, void 0, function* () {
@@ -2404,7 +2413,7 @@ class DnsClient {
2404
2413
  * @param GetZoneRecordsRequest
2405
2414
  * @return GetZoneRecordsResponse
2406
2415
  * @throws OciError when an error occurs
2407
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
2416
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
2408
2417
  */
2409
2418
  getZoneRecords(getZoneRecordsRequest) {
2410
2419
  return __awaiter(this, void 0, void 0, function* () {
@@ -2535,7 +2544,7 @@ class DnsClient {
2535
2544
  * @param ListResolverEndpointsRequest
2536
2545
  * @return ListResolverEndpointsResponse
2537
2546
  * @throws OciError when an error occurs
2538
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
2547
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
2539
2548
  */
2540
2549
  listResolverEndpoints(listResolverEndpointsRequest) {
2541
2550
  return __awaiter(this, void 0, void 0, function* () {
@@ -2652,7 +2661,7 @@ class DnsClient {
2652
2661
  * @param ListResolversRequest
2653
2662
  * @return ListResolversResponse
2654
2663
  * @throws OciError when an error occurs
2655
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
2664
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
2656
2665
  */
2657
2666
  listResolvers(listResolversRequest) {
2658
2667
  return __awaiter(this, void 0, void 0, function* () {
@@ -2764,7 +2773,7 @@ class DnsClient {
2764
2773
  * @param ListSteeringPoliciesRequest
2765
2774
  * @return ListSteeringPoliciesResponse
2766
2775
  * @throws OciError when an error occurs
2767
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
2776
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
2768
2777
  */
2769
2778
  listSteeringPolicies(listSteeringPoliciesRequest) {
2770
2779
  return __awaiter(this, void 0, void 0, function* () {
@@ -2886,7 +2895,7 @@ class DnsClient {
2886
2895
  * @param ListSteeringPolicyAttachmentsRequest
2887
2896
  * @return ListSteeringPolicyAttachmentsResponse
2888
2897
  * @throws OciError when an error occurs
2889
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
2898
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
2890
2899
  */
2891
2900
  listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest) {
2892
2901
  return __awaiter(this, void 0, void 0, function* () {
@@ -3009,7 +3018,7 @@ class DnsClient {
3009
3018
  * @param ListTsigKeysRequest
3010
3019
  * @return ListTsigKeysResponse
3011
3020
  * @throws OciError when an error occurs
3012
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
3021
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
3013
3022
  */
3014
3023
  listTsigKeys(listTsigKeysRequest) {
3015
3024
  return __awaiter(this, void 0, void 0, function* () {
@@ -3126,7 +3135,7 @@ class DnsClient {
3126
3135
  * @param ListViewsRequest
3127
3136
  * @return ListViewsResponse
3128
3137
  * @throws OciError when an error occurs
3129
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
3138
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ListViews.ts.html |here} to see how to use ListViews API.
3130
3139
  */
3131
3140
  listViews(listViewsRequest) {
3132
3141
  return __awaiter(this, void 0, void 0, function* () {
@@ -3240,7 +3249,7 @@ class DnsClient {
3240
3249
  * @param ListZoneTransferServersRequest
3241
3250
  * @return ListZoneTransferServersResponse
3242
3251
  * @throws OciError when an error occurs
3243
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
3252
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
3244
3253
  */
3245
3254
  listZoneTransferServers(listZoneTransferServersRequest) {
3246
3255
  return __awaiter(this, void 0, void 0, function* () {
@@ -3349,7 +3358,7 @@ class DnsClient {
3349
3358
  * @param ListZonesRequest
3350
3359
  * @return ListZonesResponse
3351
3360
  * @throws OciError when an error occurs
3352
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
3361
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/ListZones.ts.html |here} to see how to use ListZones API.
3353
3362
  */
3354
3363
  listZones(listZonesRequest) {
3355
3364
  return __awaiter(this, void 0, void 0, function* () {
@@ -3476,7 +3485,7 @@ class DnsClient {
3476
3485
  * @param PatchDomainRecordsRequest
3477
3486
  * @return PatchDomainRecordsResponse
3478
3487
  * @throws OciError when an error occurs
3479
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
3488
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
3480
3489
  */
3481
3490
  patchDomainRecords(patchDomainRecordsRequest) {
3482
3491
  return __awaiter(this, void 0, void 0, function* () {
@@ -3561,7 +3570,7 @@ class DnsClient {
3561
3570
  * @param PatchRRSetRequest
3562
3571
  * @return PatchRRSetResponse
3563
3572
  * @throws OciError when an error occurs
3564
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
3573
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
3565
3574
  */
3566
3575
  patchRRSet(patchRRSetRequest) {
3567
3576
  return __awaiter(this, void 0, void 0, function* () {
@@ -3649,7 +3658,7 @@ class DnsClient {
3649
3658
  * @param PatchZoneRecordsRequest
3650
3659
  * @return PatchZoneRecordsResponse
3651
3660
  * @throws OciError when an error occurs
3652
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
3661
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
3653
3662
  */
3654
3663
  patchZoneRecords(patchZoneRecordsRequest) {
3655
3664
  return __awaiter(this, void 0, void 0, function* () {
@@ -3735,7 +3744,7 @@ class DnsClient {
3735
3744
  * @param UpdateDomainRecordsRequest
3736
3745
  * @return UpdateDomainRecordsResponse
3737
3746
  * @throws OciError when an error occurs
3738
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
3747
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
3739
3748
  */
3740
3749
  updateDomainRecords(updateDomainRecordsRequest) {
3741
3750
  return __awaiter(this, void 0, void 0, function* () {
@@ -3820,7 +3829,7 @@ class DnsClient {
3820
3829
  * @param UpdateRRSetRequest
3821
3830
  * @return UpdateRRSetResponse
3822
3831
  * @throws OciError when an error occurs
3823
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
3832
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
3824
3833
  */
3825
3834
  updateRRSet(updateRRSetRequest) {
3826
3835
  return __awaiter(this, void 0, void 0, function* () {
@@ -3903,7 +3912,7 @@ class DnsClient {
3903
3912
  * @param UpdateResolverRequest
3904
3913
  * @return UpdateResolverResponse
3905
3914
  * @throws OciError when an error occurs
3906
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
3915
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
3907
3916
  */
3908
3917
  updateResolver(updateResolverRequest) {
3909
3918
  return __awaiter(this, void 0, void 0, function* () {
@@ -3977,7 +3986,7 @@ class DnsClient {
3977
3986
  * @param UpdateResolverEndpointRequest
3978
3987
  * @return UpdateResolverEndpointResponse
3979
3988
  * @throws OciError when an error occurs
3980
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
3989
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
3981
3990
  */
3982
3991
  updateResolverEndpoint(updateResolverEndpointRequest) {
3983
3992
  return __awaiter(this, void 0, void 0, function* () {
@@ -4052,7 +4061,7 @@ class DnsClient {
4052
4061
  * @param UpdateSteeringPolicyRequest
4053
4062
  * @return UpdateSteeringPolicyResponse
4054
4063
  * @throws OciError when an error occurs
4055
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
4064
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
4056
4065
  */
4057
4066
  updateSteeringPolicy(updateSteeringPolicyRequest) {
4058
4067
  return __awaiter(this, void 0, void 0, function* () {
@@ -4121,7 +4130,7 @@ class DnsClient {
4121
4130
  * @param UpdateSteeringPolicyAttachmentRequest
4122
4131
  * @return UpdateSteeringPolicyAttachmentResponse
4123
4132
  * @throws OciError when an error occurs
4124
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
4133
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
4125
4134
  */
4126
4135
  updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest) {
4127
4136
  return __awaiter(this, void 0, void 0, function* () {
@@ -4190,7 +4199,7 @@ class DnsClient {
4190
4199
  * @param UpdateTsigKeyRequest
4191
4200
  * @return UpdateTsigKeyResponse
4192
4201
  * @throws OciError when an error occurs
4193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
4202
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
4194
4203
  */
4195
4204
  updateTsigKey(updateTsigKeyRequest) {
4196
4205
  return __awaiter(this, void 0, void 0, function* () {
@@ -4264,7 +4273,7 @@ class DnsClient {
4264
4273
  * @param UpdateViewRequest
4265
4274
  * @return UpdateViewResponse
4266
4275
  * @throws OciError when an error occurs
4267
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
4276
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
4268
4277
  */
4269
4278
  updateView(updateViewRequest) {
4270
4279
  return __awaiter(this, void 0, void 0, function* () {
@@ -4343,7 +4352,7 @@ class DnsClient {
4343
4352
  * @param UpdateZoneRequest
4344
4353
  * @return UpdateZoneResponse
4345
4354
  * @throws OciError when an error occurs
4346
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
4355
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
4347
4356
  */
4348
4357
  updateZone(updateZoneRequest) {
4349
4358
  return __awaiter(this, void 0, void 0, function* () {
@@ -4425,7 +4434,7 @@ class DnsClient {
4425
4434
  * @param UpdateZoneRecordsRequest
4426
4435
  * @return UpdateZoneRecordsResponse
4427
4436
  * @throws OciError when an error occurs
4428
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
4437
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
4429
4438
  */
4430
4439
  updateZoneRecords(updateZoneRecordsRequest) {
4431
4440
  return __awaiter(this, void 0, void 0, function* () {