oci-dns 2.74.0 → 2.76.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.
Files changed (59) hide show
  1. package/lib/client.d.ts +55 -53
  2. package/lib/client.js +59 -54
  3. package/lib/client.js.map +1 -1
  4. package/lib/dns-waiter.d.ts +173 -1
  5. package/lib/dns-waiter.js +239 -1
  6. package/lib/dns-waiter.js.map +1 -1
  7. package/lib/request/change-resolver-compartment-request.d.ts +1 -1
  8. package/lib/request/change-steering-policy-compartment-request.d.ts +1 -1
  9. package/lib/request/change-tsig-key-compartment-request.d.ts +1 -1
  10. package/lib/request/change-view-compartment-request.d.ts +1 -1
  11. package/lib/request/change-zone-compartment-request.d.ts +1 -1
  12. package/lib/request/create-resolver-endpoint-request.d.ts +1 -1
  13. package/lib/request/create-steering-policy-attachment-request.d.ts +1 -1
  14. package/lib/request/create-steering-policy-request.d.ts +1 -1
  15. package/lib/request/create-tsig-key-request.d.ts +1 -1
  16. package/lib/request/create-view-request.d.ts +1 -1
  17. package/lib/request/create-zone-from-zone-file-request.d.ts +1 -1
  18. package/lib/request/create-zone-request.d.ts +1 -1
  19. package/lib/request/delete-domain-records-request.d.ts +1 -1
  20. package/lib/request/delete-resolver-endpoint-request.d.ts +1 -1
  21. package/lib/request/delete-rrset-request.d.ts +1 -1
  22. package/lib/request/delete-steering-policy-attachment-request.d.ts +1 -1
  23. package/lib/request/delete-steering-policy-request.d.ts +1 -1
  24. package/lib/request/delete-tsig-key-request.d.ts +1 -1
  25. package/lib/request/delete-view-request.d.ts +1 -1
  26. package/lib/request/delete-zone-request.d.ts +1 -1
  27. package/lib/request/get-domain-records-request.d.ts +1 -1
  28. package/lib/request/get-resolver-endpoint-request.d.ts +1 -1
  29. package/lib/request/get-resolver-request.d.ts +1 -1
  30. package/lib/request/get-rrset-request.d.ts +1 -1
  31. package/lib/request/get-steering-policy-attachment-request.d.ts +1 -1
  32. package/lib/request/get-steering-policy-request.d.ts +1 -1
  33. package/lib/request/get-tsig-key-request.d.ts +1 -1
  34. package/lib/request/get-view-request.d.ts +1 -1
  35. package/lib/request/get-zone-content-request.d.ts +1 -1
  36. package/lib/request/get-zone-records-request.d.ts +1 -1
  37. package/lib/request/get-zone-request.d.ts +1 -1
  38. package/lib/request/list-resolver-endpoints-request.d.ts +1 -1
  39. package/lib/request/list-resolvers-request.d.ts +1 -1
  40. package/lib/request/list-steering-policies-request.d.ts +1 -1
  41. package/lib/request/list-steering-policy-attachments-request.d.ts +1 -1
  42. package/lib/request/list-tsig-keys-request.d.ts +1 -1
  43. package/lib/request/list-views-request.d.ts +1 -1
  44. package/lib/request/list-zone-transfer-servers-request.d.ts +1 -1
  45. package/lib/request/list-zones-request.d.ts +1 -1
  46. package/lib/request/patch-domain-records-request.d.ts +1 -1
  47. package/lib/request/patch-rrset-request.d.ts +1 -1
  48. package/lib/request/patch-zone-records-request.d.ts +1 -1
  49. package/lib/request/update-domain-records-request.d.ts +1 -1
  50. package/lib/request/update-resolver-endpoint-request.d.ts +1 -1
  51. package/lib/request/update-resolver-request.d.ts +1 -1
  52. package/lib/request/update-rrset-request.d.ts +1 -1
  53. package/lib/request/update-steering-policy-attachment-request.d.ts +1 -1
  54. package/lib/request/update-steering-policy-request.d.ts +1 -1
  55. package/lib/request/update-tsig-key-request.d.ts +1 -1
  56. package/lib/request/update-view-request.d.ts +1 -1
  57. package/lib/request/update-zone-records-request.d.ts +1 -1
  58. package/lib/request/update-zone-request.d.ts +1 -1
  59. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -83,6 +83,10 @@ class DnsClient {
83
83
  ? clientConfiguration.bodyDuplexMode
84
84
  : undefined;
85
85
  }
86
+ if (!oci_common_2.developerToolConfiguration.isServiceEnabled("dns")) {
87
+ let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
88
+ throw errmsg.concat("dns");
89
+ }
86
90
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
87
91
  const specCircuitBreakerEnabled = true;
88
92
  if (!this._circuitBreaker &&
@@ -162,11 +166,12 @@ class DnsClient {
162
166
  /**
163
167
  * Creates a new DnsWaiter for resources for this service.
164
168
  *
169
+ * @param workRequestClient The work request service client used to query for work request status
165
170
  * @param config The waiter configuration for termination and delay strategy
166
171
  * @return The service waiters.
167
172
  */
168
- createWaiters(config) {
169
- this._waiters = new dns_waiter_1.DnsWaiter(this, config);
173
+ createWaiters(workRequestClient, config) {
174
+ this._waiters = new dns_waiter_1.DnsWaiter(this, workRequestClient, config);
170
175
  return this._waiters;
171
176
  }
172
177
  /**
@@ -190,7 +195,7 @@ class DnsClient {
190
195
  * @param ChangeResolverCompartmentRequest
191
196
  * @return ChangeResolverCompartmentResponse
192
197
  * @throws OciError when an error occurs
193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
198
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
194
199
  */
195
200
  changeResolverCompartment(changeResolverCompartmentRequest) {
196
201
  return __awaiter(this, void 0, void 0, function* () {
@@ -255,7 +260,7 @@ class DnsClient {
255
260
  * @param ChangeSteeringPolicyCompartmentRequest
256
261
  * @return ChangeSteeringPolicyCompartmentResponse
257
262
  * @throws OciError when an error occurs
258
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
263
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
259
264
  */
260
265
  changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest) {
261
266
  return __awaiter(this, void 0, void 0, function* () {
@@ -315,7 +320,7 @@ class DnsClient {
315
320
  * @param ChangeTsigKeyCompartmentRequest
316
321
  * @return ChangeTsigKeyCompartmentResponse
317
322
  * @throws OciError when an error occurs
318
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
323
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
319
324
  */
320
325
  changeTsigKeyCompartment(changeTsigKeyCompartmentRequest) {
321
326
  return __awaiter(this, void 0, void 0, function* () {
@@ -377,7 +382,7 @@ class DnsClient {
377
382
  * @param ChangeViewCompartmentRequest
378
383
  * @return ChangeViewCompartmentResponse
379
384
  * @throws OciError when an error occurs
380
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
385
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
381
386
  */
382
387
  changeViewCompartment(changeViewCompartmentRequest) {
383
388
  return __awaiter(this, void 0, void 0, function* () {
@@ -449,7 +454,7 @@ class DnsClient {
449
454
  * @param ChangeZoneCompartmentRequest
450
455
  * @return ChangeZoneCompartmentResponse
451
456
  * @throws OciError when an error occurs
452
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
457
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
453
458
  */
454
459
  changeZoneCompartment(changeZoneCompartmentRequest) {
455
460
  return __awaiter(this, void 0, void 0, function* () {
@@ -514,7 +519,7 @@ class DnsClient {
514
519
  * @param CreateResolverEndpointRequest
515
520
  * @return CreateResolverEndpointResponse
516
521
  * @throws OciError when an error occurs
517
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
522
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
518
523
  */
519
524
  createResolverEndpoint(createResolverEndpointRequest) {
520
525
  return __awaiter(this, void 0, void 0, function* () {
@@ -593,7 +598,7 @@ class DnsClient {
593
598
  * @param CreateSteeringPolicyRequest
594
599
  * @return CreateSteeringPolicyResponse
595
600
  * @throws OciError when an error occurs
596
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
601
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
597
602
  */
598
603
  createSteeringPolicy(createSteeringPolicyRequest) {
599
604
  return __awaiter(this, void 0, void 0, function* () {
@@ -669,7 +674,7 @@ class DnsClient {
669
674
  * @param CreateSteeringPolicyAttachmentRequest
670
675
  * @return CreateSteeringPolicyAttachmentResponse
671
676
  * @throws OciError when an error occurs
672
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
677
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
673
678
  */
674
679
  createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest) {
675
680
  return __awaiter(this, void 0, void 0, function* () {
@@ -741,7 +746,7 @@ class DnsClient {
741
746
  * @param CreateTsigKeyRequest
742
747
  * @return CreateTsigKeyResponse
743
748
  * @throws OciError when an error occurs
744
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
749
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
745
750
  */
746
751
  createTsigKey(createTsigKeyRequest) {
747
752
  return __awaiter(this, void 0, void 0, function* () {
@@ -816,7 +821,7 @@ class DnsClient {
816
821
  * @param CreateViewRequest
817
822
  * @return CreateViewResponse
818
823
  * @throws OciError when an error occurs
819
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
824
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
820
825
  */
821
826
  createView(createViewRequest) {
822
827
  return __awaiter(this, void 0, void 0, function* () {
@@ -895,7 +900,7 @@ class DnsClient {
895
900
  * @param CreateZoneRequest
896
901
  * @return CreateZoneResponse
897
902
  * @throws OciError when an error occurs
898
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
903
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
899
904
  */
900
905
  createZone(createZoneRequest) {
901
906
  return __awaiter(this, void 0, void 0, function* () {
@@ -972,7 +977,7 @@ class DnsClient {
972
977
  * @param CreateZoneFromZoneFileRequest
973
978
  * @return CreateZoneFromZoneFileResponse
974
979
  * @throws OciError when an error occurs
975
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/CreateZoneFromZoneFile.ts.html |here} to see how to use CreateZoneFromZoneFile API.
980
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateZoneFromZoneFile.ts.html |here} to see how to use CreateZoneFromZoneFile API.
976
981
  */
977
982
  createZoneFromZoneFile(createZoneFromZoneFileRequest) {
978
983
  return __awaiter(this, void 0, void 0, function* () {
@@ -1052,7 +1057,7 @@ class DnsClient {
1052
1057
  * @param DeleteDomainRecordsRequest
1053
1058
  * @return DeleteDomainRecordsResponse
1054
1059
  * @throws OciError when an error occurs
1055
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
1060
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
1056
1061
  */
1057
1062
  deleteDomainRecords(deleteDomainRecordsRequest) {
1058
1063
  return __awaiter(this, void 0, void 0, function* () {
@@ -1117,7 +1122,7 @@ class DnsClient {
1117
1122
  * @param DeleteRRSetRequest
1118
1123
  * @return DeleteRRSetResponse
1119
1124
  * @throws OciError when an error occurs
1120
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
1125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
1121
1126
  */
1122
1127
  deleteRRSet(deleteRRSetRequest) {
1123
1128
  return __awaiter(this, void 0, void 0, function* () {
@@ -1184,7 +1189,7 @@ class DnsClient {
1184
1189
  * @param DeleteResolverEndpointRequest
1185
1190
  * @return DeleteResolverEndpointResponse
1186
1191
  * @throws OciError when an error occurs
1187
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
1192
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
1188
1193
  */
1189
1194
  deleteResolverEndpoint(deleteResolverEndpointRequest) {
1190
1195
  return __awaiter(this, void 0, void 0, function* () {
@@ -1253,7 +1258,7 @@ class DnsClient {
1253
1258
  * @param DeleteSteeringPolicyRequest
1254
1259
  * @return DeleteSteeringPolicyResponse
1255
1260
  * @throws OciError when an error occurs
1256
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
1261
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
1257
1262
  */
1258
1263
  deleteSteeringPolicy(deleteSteeringPolicyRequest) {
1259
1264
  return __awaiter(this, void 0, void 0, function* () {
@@ -1313,7 +1318,7 @@ class DnsClient {
1313
1318
  * @param DeleteSteeringPolicyAttachmentRequest
1314
1319
  * @return DeleteSteeringPolicyAttachmentResponse
1315
1320
  * @throws OciError when an error occurs
1316
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
1321
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
1317
1322
  */
1318
1323
  deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest) {
1319
1324
  return __awaiter(this, void 0, void 0, function* () {
@@ -1372,7 +1377,7 @@ class DnsClient {
1372
1377
  * @param DeleteTsigKeyRequest
1373
1378
  * @return DeleteTsigKeyResponse
1374
1379
  * @throws OciError when an error occurs
1375
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
1380
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
1376
1381
  */
1377
1382
  deleteTsigKey(deleteTsigKeyRequest) {
1378
1383
  return __awaiter(this, void 0, void 0, function* () {
@@ -1441,7 +1446,7 @@ class DnsClient {
1441
1446
  * @param DeleteViewRequest
1442
1447
  * @return DeleteViewResponse
1443
1448
  * @throws OciError when an error occurs
1444
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
1449
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
1445
1450
  */
1446
1451
  deleteView(deleteViewRequest) {
1447
1452
  return __awaiter(this, void 0, void 0, function* () {
@@ -1509,7 +1514,7 @@ class DnsClient {
1509
1514
  * @param DeleteZoneRequest
1510
1515
  * @return DeleteZoneResponse
1511
1516
  * @throws OciError when an error occurs
1512
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
1517
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
1513
1518
  */
1514
1519
  deleteZone(deleteZoneRequest) {
1515
1520
  return __awaiter(this, void 0, void 0, function* () {
@@ -1579,7 +1584,7 @@ class DnsClient {
1579
1584
  * @param GetDomainRecordsRequest
1580
1585
  * @return GetDomainRecordsResponse
1581
1586
  * @throws OciError when an error occurs
1582
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
1587
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
1583
1588
  */
1584
1589
  getDomainRecords(getDomainRecordsRequest) {
1585
1590
  return __awaiter(this, void 0, void 0, function* () {
@@ -1709,7 +1714,7 @@ class DnsClient {
1709
1714
  * @param GetRRSetRequest
1710
1715
  * @return GetRRSetResponse
1711
1716
  * @throws OciError when an error occurs
1712
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
1717
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
1713
1718
  */
1714
1719
  getRRSet(getRRSetRequest) {
1715
1720
  return __awaiter(this, void 0, void 0, function* () {
@@ -1837,7 +1842,7 @@ class DnsClient {
1837
1842
  * @param GetResolverRequest
1838
1843
  * @return GetResolverResponse
1839
1844
  * @throws OciError when an error occurs
1840
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
1845
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
1841
1846
  */
1842
1847
  getResolver(getResolverRequest) {
1843
1848
  return __awaiter(this, void 0, void 0, function* () {
@@ -1908,7 +1913,7 @@ class DnsClient {
1908
1913
  * @param GetResolverEndpointRequest
1909
1914
  * @return GetResolverEndpointResponse
1910
1915
  * @throws OciError when an error occurs
1911
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
1916
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
1912
1917
  */
1913
1918
  getResolverEndpoint(getResolverEndpointRequest) {
1914
1919
  return __awaiter(this, void 0, void 0, function* () {
@@ -1977,7 +1982,7 @@ class DnsClient {
1977
1982
  * @param GetSteeringPolicyRequest
1978
1983
  * @return GetSteeringPolicyResponse
1979
1984
  * @throws OciError when an error occurs
1980
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
1985
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
1981
1986
  */
1982
1987
  getSteeringPolicy(getSteeringPolicyRequest) {
1983
1988
  return __awaiter(this, void 0, void 0, function* () {
@@ -2045,7 +2050,7 @@ class DnsClient {
2045
2050
  * @param GetSteeringPolicyAttachmentRequest
2046
2051
  * @return GetSteeringPolicyAttachmentResponse
2047
2052
  * @throws OciError when an error occurs
2048
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
2053
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
2049
2054
  */
2050
2055
  getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest) {
2051
2056
  return __awaiter(this, void 0, void 0, function* () {
@@ -2113,7 +2118,7 @@ class DnsClient {
2113
2118
  * @param GetTsigKeyRequest
2114
2119
  * @return GetTsigKeyResponse
2115
2120
  * @throws OciError when an error occurs
2116
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
2121
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
2117
2122
  */
2118
2123
  getTsigKey(getTsigKeyRequest) {
2119
2124
  return __awaiter(this, void 0, void 0, function* () {
@@ -2185,7 +2190,7 @@ class DnsClient {
2185
2190
  * @param GetViewRequest
2186
2191
  * @return GetViewResponse
2187
2192
  * @throws OciError when an error occurs
2188
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetView.ts.html |here} to see how to use GetView API.
2193
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetView.ts.html |here} to see how to use GetView API.
2189
2194
  */
2190
2195
  getView(getViewRequest) {
2191
2196
  return __awaiter(this, void 0, void 0, function* () {
@@ -2256,7 +2261,7 @@ class DnsClient {
2256
2261
  * @param GetZoneRequest
2257
2262
  * @return GetZoneResponse
2258
2263
  * @throws OciError when an error occurs
2259
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
2264
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
2260
2265
  */
2261
2266
  getZone(getZoneRequest) {
2262
2267
  return __awaiter(this, void 0, void 0, function* () {
@@ -2326,7 +2331,7 @@ class DnsClient {
2326
2331
  * @param GetZoneContentRequest
2327
2332
  * @return GetZoneContentResponse
2328
2333
  * @throws OciError when an error occurs
2329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
2334
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
2330
2335
  */
2331
2336
  getZoneContent(getZoneContentRequest) {
2332
2337
  return __awaiter(this, void 0, void 0, function* () {
@@ -2399,7 +2404,7 @@ class DnsClient {
2399
2404
  * @param GetZoneRecordsRequest
2400
2405
  * @return GetZoneRecordsResponse
2401
2406
  * @throws OciError when an error occurs
2402
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
2407
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
2403
2408
  */
2404
2409
  getZoneRecords(getZoneRecordsRequest) {
2405
2410
  return __awaiter(this, void 0, void 0, function* () {
@@ -2530,7 +2535,7 @@ class DnsClient {
2530
2535
  * @param ListResolverEndpointsRequest
2531
2536
  * @return ListResolverEndpointsResponse
2532
2537
  * @throws OciError when an error occurs
2533
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
2538
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
2534
2539
  */
2535
2540
  listResolverEndpoints(listResolverEndpointsRequest) {
2536
2541
  return __awaiter(this, void 0, void 0, function* () {
@@ -2647,7 +2652,7 @@ class DnsClient {
2647
2652
  * @param ListResolversRequest
2648
2653
  * @return ListResolversResponse
2649
2654
  * @throws OciError when an error occurs
2650
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
2655
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
2651
2656
  */
2652
2657
  listResolvers(listResolversRequest) {
2653
2658
  return __awaiter(this, void 0, void 0, function* () {
@@ -2759,7 +2764,7 @@ class DnsClient {
2759
2764
  * @param ListSteeringPoliciesRequest
2760
2765
  * @return ListSteeringPoliciesResponse
2761
2766
  * @throws OciError when an error occurs
2762
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
2767
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
2763
2768
  */
2764
2769
  listSteeringPolicies(listSteeringPoliciesRequest) {
2765
2770
  return __awaiter(this, void 0, void 0, function* () {
@@ -2881,7 +2886,7 @@ class DnsClient {
2881
2886
  * @param ListSteeringPolicyAttachmentsRequest
2882
2887
  * @return ListSteeringPolicyAttachmentsResponse
2883
2888
  * @throws OciError when an error occurs
2884
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
2889
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
2885
2890
  */
2886
2891
  listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest) {
2887
2892
  return __awaiter(this, void 0, void 0, function* () {
@@ -3004,7 +3009,7 @@ class DnsClient {
3004
3009
  * @param ListTsigKeysRequest
3005
3010
  * @return ListTsigKeysResponse
3006
3011
  * @throws OciError when an error occurs
3007
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
3012
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
3008
3013
  */
3009
3014
  listTsigKeys(listTsigKeysRequest) {
3010
3015
  return __awaiter(this, void 0, void 0, function* () {
@@ -3121,7 +3126,7 @@ class DnsClient {
3121
3126
  * @param ListViewsRequest
3122
3127
  * @return ListViewsResponse
3123
3128
  * @throws OciError when an error occurs
3124
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
3129
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
3125
3130
  */
3126
3131
  listViews(listViewsRequest) {
3127
3132
  return __awaiter(this, void 0, void 0, function* () {
@@ -3235,7 +3240,7 @@ class DnsClient {
3235
3240
  * @param ListZoneTransferServersRequest
3236
3241
  * @return ListZoneTransferServersResponse
3237
3242
  * @throws OciError when an error occurs
3238
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
3243
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
3239
3244
  */
3240
3245
  listZoneTransferServers(listZoneTransferServersRequest) {
3241
3246
  return __awaiter(this, void 0, void 0, function* () {
@@ -3344,7 +3349,7 @@ class DnsClient {
3344
3349
  * @param ListZonesRequest
3345
3350
  * @return ListZonesResponse
3346
3351
  * @throws OciError when an error occurs
3347
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
3352
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
3348
3353
  */
3349
3354
  listZones(listZonesRequest) {
3350
3355
  return __awaiter(this, void 0, void 0, function* () {
@@ -3471,7 +3476,7 @@ class DnsClient {
3471
3476
  * @param PatchDomainRecordsRequest
3472
3477
  * @return PatchDomainRecordsResponse
3473
3478
  * @throws OciError when an error occurs
3474
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
3479
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
3475
3480
  */
3476
3481
  patchDomainRecords(patchDomainRecordsRequest) {
3477
3482
  return __awaiter(this, void 0, void 0, function* () {
@@ -3556,7 +3561,7 @@ class DnsClient {
3556
3561
  * @param PatchRRSetRequest
3557
3562
  * @return PatchRRSetResponse
3558
3563
  * @throws OciError when an error occurs
3559
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
3564
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
3560
3565
  */
3561
3566
  patchRRSet(patchRRSetRequest) {
3562
3567
  return __awaiter(this, void 0, void 0, function* () {
@@ -3644,7 +3649,7 @@ class DnsClient {
3644
3649
  * @param PatchZoneRecordsRequest
3645
3650
  * @return PatchZoneRecordsResponse
3646
3651
  * @throws OciError when an error occurs
3647
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
3652
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
3648
3653
  */
3649
3654
  patchZoneRecords(patchZoneRecordsRequest) {
3650
3655
  return __awaiter(this, void 0, void 0, function* () {
@@ -3730,7 +3735,7 @@ class DnsClient {
3730
3735
  * @param UpdateDomainRecordsRequest
3731
3736
  * @return UpdateDomainRecordsResponse
3732
3737
  * @throws OciError when an error occurs
3733
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
3738
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
3734
3739
  */
3735
3740
  updateDomainRecords(updateDomainRecordsRequest) {
3736
3741
  return __awaiter(this, void 0, void 0, function* () {
@@ -3815,7 +3820,7 @@ class DnsClient {
3815
3820
  * @param UpdateRRSetRequest
3816
3821
  * @return UpdateRRSetResponse
3817
3822
  * @throws OciError when an error occurs
3818
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
3823
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
3819
3824
  */
3820
3825
  updateRRSet(updateRRSetRequest) {
3821
3826
  return __awaiter(this, void 0, void 0, function* () {
@@ -3898,7 +3903,7 @@ class DnsClient {
3898
3903
  * @param UpdateResolverRequest
3899
3904
  * @return UpdateResolverResponse
3900
3905
  * @throws OciError when an error occurs
3901
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
3906
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
3902
3907
  */
3903
3908
  updateResolver(updateResolverRequest) {
3904
3909
  return __awaiter(this, void 0, void 0, function* () {
@@ -3972,7 +3977,7 @@ class DnsClient {
3972
3977
  * @param UpdateResolverEndpointRequest
3973
3978
  * @return UpdateResolverEndpointResponse
3974
3979
  * @throws OciError when an error occurs
3975
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
3980
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
3976
3981
  */
3977
3982
  updateResolverEndpoint(updateResolverEndpointRequest) {
3978
3983
  return __awaiter(this, void 0, void 0, function* () {
@@ -4047,7 +4052,7 @@ class DnsClient {
4047
4052
  * @param UpdateSteeringPolicyRequest
4048
4053
  * @return UpdateSteeringPolicyResponse
4049
4054
  * @throws OciError when an error occurs
4050
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
4055
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
4051
4056
  */
4052
4057
  updateSteeringPolicy(updateSteeringPolicyRequest) {
4053
4058
  return __awaiter(this, void 0, void 0, function* () {
@@ -4116,7 +4121,7 @@ class DnsClient {
4116
4121
  * @param UpdateSteeringPolicyAttachmentRequest
4117
4122
  * @return UpdateSteeringPolicyAttachmentResponse
4118
4123
  * @throws OciError when an error occurs
4119
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
4124
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
4120
4125
  */
4121
4126
  updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest) {
4122
4127
  return __awaiter(this, void 0, void 0, function* () {
@@ -4185,7 +4190,7 @@ class DnsClient {
4185
4190
  * @param UpdateTsigKeyRequest
4186
4191
  * @return UpdateTsigKeyResponse
4187
4192
  * @throws OciError when an error occurs
4188
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
4193
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
4189
4194
  */
4190
4195
  updateTsigKey(updateTsigKeyRequest) {
4191
4196
  return __awaiter(this, void 0, void 0, function* () {
@@ -4259,7 +4264,7 @@ class DnsClient {
4259
4264
  * @param UpdateViewRequest
4260
4265
  * @return UpdateViewResponse
4261
4266
  * @throws OciError when an error occurs
4262
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
4267
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
4263
4268
  */
4264
4269
  updateView(updateViewRequest) {
4265
4270
  return __awaiter(this, void 0, void 0, function* () {
@@ -4338,7 +4343,7 @@ class DnsClient {
4338
4343
  * @param UpdateZoneRequest
4339
4344
  * @return UpdateZoneResponse
4340
4345
  * @throws OciError when an error occurs
4341
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
4346
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
4342
4347
  */
4343
4348
  updateZone(updateZoneRequest) {
4344
4349
  return __awaiter(this, void 0, void 0, function* () {
@@ -4420,7 +4425,7 @@ class DnsClient {
4420
4425
  * @param UpdateZoneRecordsRequest
4421
4426
  * @return UpdateZoneRecordsResponse
4422
4427
  * @throws OciError when an error occurs
4423
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.74.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
4428
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
4424
4429
  */
4425
4430
  updateZoneRecords(updateZoneRecordsRequest) {
4426
4431
  return __awaiter(this, void 0, void 0, function* () {