oci-dns 2.20.0 → 2.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +52 -51
- package/lib/client.js +57 -52
- package/lib/client.js.map +1 -1
- package/lib/request/change-resolver-compartment-request.d.ts +1 -1
- package/lib/request/change-steering-policy-compartment-request.d.ts +1 -1
- package/lib/request/change-tsig-key-compartment-request.d.ts +1 -1
- package/lib/request/change-view-compartment-request.d.ts +1 -1
- package/lib/request/change-zone-compartment-request.d.ts +1 -1
- package/lib/request/create-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/create-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/create-steering-policy-request.d.ts +1 -1
- package/lib/request/create-tsig-key-request.d.ts +1 -1
- package/lib/request/create-view-request.d.ts +1 -1
- package/lib/request/create-zone-request.d.ts +1 -1
- package/lib/request/delete-domain-records-request.d.ts +1 -1
- package/lib/request/delete-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/delete-rrset-request.d.ts +1 -1
- package/lib/request/delete-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/delete-steering-policy-request.d.ts +1 -1
- package/lib/request/delete-tsig-key-request.d.ts +1 -1
- package/lib/request/delete-view-request.d.ts +1 -1
- package/lib/request/delete-zone-request.d.ts +1 -1
- package/lib/request/get-domain-records-request.d.ts +1 -1
- package/lib/request/get-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/get-resolver-request.d.ts +1 -1
- package/lib/request/get-rrset-request.d.ts +1 -1
- package/lib/request/get-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/get-steering-policy-request.d.ts +1 -1
- package/lib/request/get-tsig-key-request.d.ts +1 -1
- package/lib/request/get-view-request.d.ts +1 -1
- package/lib/request/get-zone-content-request.d.ts +1 -1
- package/lib/request/get-zone-records-request.d.ts +1 -1
- package/lib/request/get-zone-request.d.ts +1 -1
- package/lib/request/list-resolver-endpoints-request.d.ts +1 -1
- package/lib/request/list-resolvers-request.d.ts +1 -1
- package/lib/request/list-steering-policies-request.d.ts +1 -1
- package/lib/request/list-steering-policy-attachments-request.d.ts +1 -1
- package/lib/request/list-tsig-keys-request.d.ts +1 -1
- package/lib/request/list-views-request.d.ts +1 -1
- package/lib/request/list-zone-transfer-servers-request.d.ts +1 -1
- package/lib/request/list-zones-request.d.ts +1 -1
- package/lib/request/patch-domain-records-request.d.ts +1 -1
- package/lib/request/patch-rrset-request.d.ts +1 -1
- package/lib/request/patch-zone-records-request.d.ts +1 -1
- package/lib/request/update-domain-records-request.d.ts +1 -1
- package/lib/request/update-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/update-resolver-request.d.ts +1 -1
- package/lib/request/update-rrset-request.d.ts +1 -1
- package/lib/request/update-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/update-steering-policy-request.d.ts +1 -1
- package/lib/request/update-tsig-key-request.d.ts +1 -1
- package/lib/request/update-view-request.d.ts +1 -1
- package/lib/request/update-zone-records-request.d.ts +1 -1
- package/lib/request/update-zone-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -62,6 +62,7 @@ class DnsClient {
|
|
|
62
62
|
this["_endpoint"] = "";
|
|
63
63
|
this["_defaultHeaders"] = {};
|
|
64
64
|
this._circuitBreaker = null;
|
|
65
|
+
this._httpOptions = undefined;
|
|
65
66
|
const requestSigner = params.authenticationDetailsProvider
|
|
66
67
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
67
68
|
: null;
|
|
@@ -70,6 +71,9 @@ class DnsClient {
|
|
|
70
71
|
this._circuitBreaker = clientConfiguration.circuitBreaker
|
|
71
72
|
? clientConfiguration.circuitBreaker.circuit
|
|
72
73
|
: null;
|
|
74
|
+
this._httpOptions = clientConfiguration.httpOptions
|
|
75
|
+
? clientConfiguration.httpOptions
|
|
76
|
+
: undefined;
|
|
73
77
|
}
|
|
74
78
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
75
79
|
const specCircuitBreakerEnabled = true;
|
|
@@ -79,7 +83,8 @@ class DnsClient {
|
|
|
79
83
|
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
80
84
|
}
|
|
81
85
|
this._httpClient =
|
|
82
|
-
params.httpClient ||
|
|
86
|
+
params.httpClient ||
|
|
87
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
83
88
|
if (params.authenticationDetailsProvider &&
|
|
84
89
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
85
90
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -155,7 +160,7 @@ class DnsClient {
|
|
|
155
160
|
* @param ChangeResolverCompartmentRequest
|
|
156
161
|
* @return ChangeResolverCompartmentResponse
|
|
157
162
|
* @throws OciError when an error occurs
|
|
158
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
163
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
|
|
159
164
|
*/
|
|
160
165
|
changeResolverCompartment(changeResolverCompartmentRequest) {
|
|
161
166
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -218,7 +223,7 @@ class DnsClient {
|
|
|
218
223
|
* @param ChangeSteeringPolicyCompartmentRequest
|
|
219
224
|
* @return ChangeSteeringPolicyCompartmentResponse
|
|
220
225
|
* @throws OciError when an error occurs
|
|
221
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
226
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
|
|
222
227
|
*/
|
|
223
228
|
changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest) {
|
|
224
229
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -276,7 +281,7 @@ class DnsClient {
|
|
|
276
281
|
* @param ChangeTsigKeyCompartmentRequest
|
|
277
282
|
* @return ChangeTsigKeyCompartmentResponse
|
|
278
283
|
* @throws OciError when an error occurs
|
|
279
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
284
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
|
|
280
285
|
*/
|
|
281
286
|
changeTsigKeyCompartment(changeTsigKeyCompartmentRequest) {
|
|
282
287
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -335,7 +340,7 @@ class DnsClient {
|
|
|
335
340
|
* @param ChangeViewCompartmentRequest
|
|
336
341
|
* @return ChangeViewCompartmentResponse
|
|
337
342
|
* @throws OciError when an error occurs
|
|
338
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
343
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
|
|
339
344
|
*/
|
|
340
345
|
changeViewCompartment(changeViewCompartmentRequest) {
|
|
341
346
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -402,7 +407,7 @@ class DnsClient {
|
|
|
402
407
|
* @param ChangeZoneCompartmentRequest
|
|
403
408
|
* @return ChangeZoneCompartmentResponse
|
|
404
409
|
* @throws OciError when an error occurs
|
|
405
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
|
|
406
411
|
*/
|
|
407
412
|
changeZoneCompartment(changeZoneCompartmentRequest) {
|
|
408
413
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -465,7 +470,7 @@ class DnsClient {
|
|
|
465
470
|
* @param CreateResolverEndpointRequest
|
|
466
471
|
* @return CreateResolverEndpointResponse
|
|
467
472
|
* @throws OciError when an error occurs
|
|
468
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
473
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
|
|
469
474
|
*/
|
|
470
475
|
createResolverEndpoint(createResolverEndpointRequest) {
|
|
471
476
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -542,7 +547,7 @@ class DnsClient {
|
|
|
542
547
|
* @param CreateSteeringPolicyRequest
|
|
543
548
|
* @return CreateSteeringPolicyResponse
|
|
544
549
|
* @throws OciError when an error occurs
|
|
545
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
550
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
|
|
546
551
|
*/
|
|
547
552
|
createSteeringPolicy(createSteeringPolicyRequest) {
|
|
548
553
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -616,7 +621,7 @@ class DnsClient {
|
|
|
616
621
|
* @param CreateSteeringPolicyAttachmentRequest
|
|
617
622
|
* @return CreateSteeringPolicyAttachmentResponse
|
|
618
623
|
* @throws OciError when an error occurs
|
|
619
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
624
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
|
|
620
625
|
*/
|
|
621
626
|
createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest) {
|
|
622
627
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -686,7 +691,7 @@ class DnsClient {
|
|
|
686
691
|
* @param CreateTsigKeyRequest
|
|
687
692
|
* @return CreateTsigKeyResponse
|
|
688
693
|
* @throws OciError when an error occurs
|
|
689
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
694
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
|
|
690
695
|
*/
|
|
691
696
|
createTsigKey(createTsigKeyRequest) {
|
|
692
697
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -759,7 +764,7 @@ class DnsClient {
|
|
|
759
764
|
* @param CreateViewRequest
|
|
760
765
|
* @return CreateViewResponse
|
|
761
766
|
* @throws OciError when an error occurs
|
|
762
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
767
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
|
|
763
768
|
*/
|
|
764
769
|
createView(createViewRequest) {
|
|
765
770
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -837,7 +842,7 @@ class DnsClient {
|
|
|
837
842
|
* @param CreateZoneRequest
|
|
838
843
|
* @return CreateZoneResponse
|
|
839
844
|
* @throws OciError when an error occurs
|
|
840
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
845
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
|
|
841
846
|
*/
|
|
842
847
|
createZone(createZoneRequest) {
|
|
843
848
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -914,7 +919,7 @@ class DnsClient {
|
|
|
914
919
|
* @param DeleteDomainRecordsRequest
|
|
915
920
|
* @return DeleteDomainRecordsResponse
|
|
916
921
|
* @throws OciError when an error occurs
|
|
917
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
922
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
|
|
918
923
|
*/
|
|
919
924
|
deleteDomainRecords(deleteDomainRecordsRequest) {
|
|
920
925
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -976,7 +981,7 @@ class DnsClient {
|
|
|
976
981
|
* @param DeleteRRSetRequest
|
|
977
982
|
* @return DeleteRRSetResponse
|
|
978
983
|
* @throws OciError when an error occurs
|
|
979
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
984
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
|
|
980
985
|
*/
|
|
981
986
|
deleteRRSet(deleteRRSetRequest) {
|
|
982
987
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1040,7 +1045,7 @@ class DnsClient {
|
|
|
1040
1045
|
* @param DeleteResolverEndpointRequest
|
|
1041
1046
|
* @return DeleteResolverEndpointResponse
|
|
1042
1047
|
* @throws OciError when an error occurs
|
|
1043
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1048
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
|
|
1044
1049
|
*/
|
|
1045
1050
|
deleteResolverEndpoint(deleteResolverEndpointRequest) {
|
|
1046
1051
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1106,7 +1111,7 @@ class DnsClient {
|
|
|
1106
1111
|
* @param DeleteSteeringPolicyRequest
|
|
1107
1112
|
* @return DeleteSteeringPolicyResponse
|
|
1108
1113
|
* @throws OciError when an error occurs
|
|
1109
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1114
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
|
|
1110
1115
|
*/
|
|
1111
1116
|
deleteSteeringPolicy(deleteSteeringPolicyRequest) {
|
|
1112
1117
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1164,7 +1169,7 @@ class DnsClient {
|
|
|
1164
1169
|
* @param DeleteSteeringPolicyAttachmentRequest
|
|
1165
1170
|
* @return DeleteSteeringPolicyAttachmentResponse
|
|
1166
1171
|
* @throws OciError when an error occurs
|
|
1167
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1172
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
|
|
1168
1173
|
*/
|
|
1169
1174
|
deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest) {
|
|
1170
1175
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1221,7 +1226,7 @@ class DnsClient {
|
|
|
1221
1226
|
* @param DeleteTsigKeyRequest
|
|
1222
1227
|
* @return DeleteTsigKeyResponse
|
|
1223
1228
|
* @throws OciError when an error occurs
|
|
1224
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
|
|
1225
1230
|
*/
|
|
1226
1231
|
deleteTsigKey(deleteTsigKeyRequest) {
|
|
1227
1232
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1287,7 +1292,7 @@ class DnsClient {
|
|
|
1287
1292
|
* @param DeleteViewRequest
|
|
1288
1293
|
* @return DeleteViewResponse
|
|
1289
1294
|
* @throws OciError when an error occurs
|
|
1290
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1295
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
|
|
1291
1296
|
*/
|
|
1292
1297
|
deleteView(deleteViewRequest) {
|
|
1293
1298
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1352,7 +1357,7 @@ class DnsClient {
|
|
|
1352
1357
|
* @param DeleteZoneRequest
|
|
1353
1358
|
* @return DeleteZoneResponse
|
|
1354
1359
|
* @throws OciError when an error occurs
|
|
1355
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1360
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
|
|
1356
1361
|
*/
|
|
1357
1362
|
deleteZone(deleteZoneRequest) {
|
|
1358
1363
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1420,7 +1425,7 @@ class DnsClient {
|
|
|
1420
1425
|
* @param GetDomainRecordsRequest
|
|
1421
1426
|
* @return GetDomainRecordsResponse
|
|
1422
1427
|
* @throws OciError when an error occurs
|
|
1423
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1428
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
|
|
1424
1429
|
*/
|
|
1425
1430
|
getDomainRecords(getDomainRecordsRequest) {
|
|
1426
1431
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1548,7 +1553,7 @@ class DnsClient {
|
|
|
1548
1553
|
* @param GetRRSetRequest
|
|
1549
1554
|
* @return GetRRSetResponse
|
|
1550
1555
|
* @throws OciError when an error occurs
|
|
1551
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1556
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
|
|
1552
1557
|
*/
|
|
1553
1558
|
getRRSet(getRRSetRequest) {
|
|
1554
1559
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1673,7 +1678,7 @@ class DnsClient {
|
|
|
1673
1678
|
* @param GetResolverRequest
|
|
1674
1679
|
* @return GetResolverResponse
|
|
1675
1680
|
* @throws OciError when an error occurs
|
|
1676
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1681
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
|
|
1677
1682
|
*/
|
|
1678
1683
|
getResolver(getResolverRequest) {
|
|
1679
1684
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1741,7 +1746,7 @@ class DnsClient {
|
|
|
1741
1746
|
* @param GetResolverEndpointRequest
|
|
1742
1747
|
* @return GetResolverEndpointResponse
|
|
1743
1748
|
* @throws OciError when an error occurs
|
|
1744
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1749
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
|
|
1745
1750
|
*/
|
|
1746
1751
|
getResolverEndpoint(getResolverEndpointRequest) {
|
|
1747
1752
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1808,7 +1813,7 @@ class DnsClient {
|
|
|
1808
1813
|
* @param GetSteeringPolicyRequest
|
|
1809
1814
|
* @return GetSteeringPolicyResponse
|
|
1810
1815
|
* @throws OciError when an error occurs
|
|
1811
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1816
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
|
|
1812
1817
|
*/
|
|
1813
1818
|
getSteeringPolicy(getSteeringPolicyRequest) {
|
|
1814
1819
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1874,7 +1879,7 @@ class DnsClient {
|
|
|
1874
1879
|
* @param GetSteeringPolicyAttachmentRequest
|
|
1875
1880
|
* @return GetSteeringPolicyAttachmentResponse
|
|
1876
1881
|
* @throws OciError when an error occurs
|
|
1877
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1882
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
|
|
1878
1883
|
*/
|
|
1879
1884
|
getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest) {
|
|
1880
1885
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1940,7 +1945,7 @@ class DnsClient {
|
|
|
1940
1945
|
* @param GetTsigKeyRequest
|
|
1941
1946
|
* @return GetTsigKeyResponse
|
|
1942
1947
|
* @throws OciError when an error occurs
|
|
1943
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1948
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
|
|
1944
1949
|
*/
|
|
1945
1950
|
getTsigKey(getTsigKeyRequest) {
|
|
1946
1951
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2008,7 +2013,7 @@ class DnsClient {
|
|
|
2008
2013
|
* @param GetViewRequest
|
|
2009
2014
|
* @return GetViewResponse
|
|
2010
2015
|
* @throws OciError when an error occurs
|
|
2011
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2016
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetView.ts.html |here} to see how to use GetView API.
|
|
2012
2017
|
*/
|
|
2013
2018
|
getView(getViewRequest) {
|
|
2014
2019
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2076,7 +2081,7 @@ class DnsClient {
|
|
|
2076
2081
|
* @param GetZoneRequest
|
|
2077
2082
|
* @return GetZoneResponse
|
|
2078
2083
|
* @throws OciError when an error occurs
|
|
2079
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2084
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
|
|
2080
2085
|
*/
|
|
2081
2086
|
getZone(getZoneRequest) {
|
|
2082
2087
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2144,7 +2149,7 @@ class DnsClient {
|
|
|
2144
2149
|
* @param GetZoneContentRequest
|
|
2145
2150
|
* @return GetZoneContentResponse
|
|
2146
2151
|
* @throws OciError when an error occurs
|
|
2147
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2152
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
|
|
2148
2153
|
*/
|
|
2149
2154
|
getZoneContent(getZoneContentRequest) {
|
|
2150
2155
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2214,7 +2219,7 @@ class DnsClient {
|
|
|
2214
2219
|
* @param GetZoneRecordsRequest
|
|
2215
2220
|
* @return GetZoneRecordsResponse
|
|
2216
2221
|
* @throws OciError when an error occurs
|
|
2217
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
|
|
2218
2223
|
*/
|
|
2219
2224
|
getZoneRecords(getZoneRecordsRequest) {
|
|
2220
2225
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2343,7 +2348,7 @@ class DnsClient {
|
|
|
2343
2348
|
* @param ListResolverEndpointsRequest
|
|
2344
2349
|
* @return ListResolverEndpointsResponse
|
|
2345
2350
|
* @throws OciError when an error occurs
|
|
2346
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2351
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
|
|
2347
2352
|
*/
|
|
2348
2353
|
listResolverEndpoints(listResolverEndpointsRequest) {
|
|
2349
2354
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2458,7 +2463,7 @@ class DnsClient {
|
|
|
2458
2463
|
* @param ListResolversRequest
|
|
2459
2464
|
* @return ListResolversResponse
|
|
2460
2465
|
* @throws OciError when an error occurs
|
|
2461
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2466
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
|
|
2462
2467
|
*/
|
|
2463
2468
|
listResolvers(listResolversRequest) {
|
|
2464
2469
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2568,7 +2573,7 @@ class DnsClient {
|
|
|
2568
2573
|
* @param ListSteeringPoliciesRequest
|
|
2569
2574
|
* @return ListSteeringPoliciesResponse
|
|
2570
2575
|
* @throws OciError when an error occurs
|
|
2571
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2576
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
|
|
2572
2577
|
*/
|
|
2573
2578
|
listSteeringPolicies(listSteeringPoliciesRequest) {
|
|
2574
2579
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2688,7 +2693,7 @@ class DnsClient {
|
|
|
2688
2693
|
* @param ListSteeringPolicyAttachmentsRequest
|
|
2689
2694
|
* @return ListSteeringPolicyAttachmentsResponse
|
|
2690
2695
|
* @throws OciError when an error occurs
|
|
2691
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2696
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
|
|
2692
2697
|
*/
|
|
2693
2698
|
listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest) {
|
|
2694
2699
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2809,7 +2814,7 @@ class DnsClient {
|
|
|
2809
2814
|
* @param ListTsigKeysRequest
|
|
2810
2815
|
* @return ListTsigKeysResponse
|
|
2811
2816
|
* @throws OciError when an error occurs
|
|
2812
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2817
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
|
|
2813
2818
|
*/
|
|
2814
2819
|
listTsigKeys(listTsigKeysRequest) {
|
|
2815
2820
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2924,7 +2929,7 @@ class DnsClient {
|
|
|
2924
2929
|
* @param ListViewsRequest
|
|
2925
2930
|
* @return ListViewsResponse
|
|
2926
2931
|
* @throws OciError when an error occurs
|
|
2927
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2932
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
|
|
2928
2933
|
*/
|
|
2929
2934
|
listViews(listViewsRequest) {
|
|
2930
2935
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3036,7 +3041,7 @@ class DnsClient {
|
|
|
3036
3041
|
* @param ListZoneTransferServersRequest
|
|
3037
3042
|
* @return ListZoneTransferServersResponse
|
|
3038
3043
|
* @throws OciError when an error occurs
|
|
3039
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3044
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
|
|
3040
3045
|
*/
|
|
3041
3046
|
listZoneTransferServers(listZoneTransferServersRequest) {
|
|
3042
3047
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3141,7 +3146,7 @@ class DnsClient {
|
|
|
3141
3146
|
* @param ListZonesRequest
|
|
3142
3147
|
* @return ListZonesResponse
|
|
3143
3148
|
* @throws OciError when an error occurs
|
|
3144
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3149
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
|
|
3145
3150
|
*/
|
|
3146
3151
|
listZones(listZonesRequest) {
|
|
3147
3152
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3265,7 +3270,7 @@ class DnsClient {
|
|
|
3265
3270
|
* @param PatchDomainRecordsRequest
|
|
3266
3271
|
* @return PatchDomainRecordsResponse
|
|
3267
3272
|
* @throws OciError when an error occurs
|
|
3268
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3273
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
|
|
3269
3274
|
*/
|
|
3270
3275
|
patchDomainRecords(patchDomainRecordsRequest) {
|
|
3271
3276
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3347,7 +3352,7 @@ class DnsClient {
|
|
|
3347
3352
|
* @param PatchRRSetRequest
|
|
3348
3353
|
* @return PatchRRSetResponse
|
|
3349
3354
|
* @throws OciError when an error occurs
|
|
3350
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3355
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
|
|
3351
3356
|
*/
|
|
3352
3357
|
patchRRSet(patchRRSetRequest) {
|
|
3353
3358
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3432,7 +3437,7 @@ class DnsClient {
|
|
|
3432
3437
|
* @param PatchZoneRecordsRequest
|
|
3433
3438
|
* @return PatchZoneRecordsResponse
|
|
3434
3439
|
* @throws OciError when an error occurs
|
|
3435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3440
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
|
|
3436
3441
|
*/
|
|
3437
3442
|
patchZoneRecords(patchZoneRecordsRequest) {
|
|
3438
3443
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3516,7 +3521,7 @@ class DnsClient {
|
|
|
3516
3521
|
* @param UpdateDomainRecordsRequest
|
|
3517
3522
|
* @return UpdateDomainRecordsResponse
|
|
3518
3523
|
* @throws OciError when an error occurs
|
|
3519
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
|
|
3520
3525
|
*/
|
|
3521
3526
|
updateDomainRecords(updateDomainRecordsRequest) {
|
|
3522
3527
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3598,7 +3603,7 @@ class DnsClient {
|
|
|
3598
3603
|
* @param UpdateRRSetRequest
|
|
3599
3604
|
* @return UpdateRRSetResponse
|
|
3600
3605
|
* @throws OciError when an error occurs
|
|
3601
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3606
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
|
|
3602
3607
|
*/
|
|
3603
3608
|
updateRRSet(updateRRSetRequest) {
|
|
3604
3609
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3679,7 +3684,7 @@ class DnsClient {
|
|
|
3679
3684
|
* @param UpdateResolverRequest
|
|
3680
3685
|
* @return UpdateResolverResponse
|
|
3681
3686
|
* @throws OciError when an error occurs
|
|
3682
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3687
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
|
|
3683
3688
|
*/
|
|
3684
3689
|
updateResolver(updateResolverRequest) {
|
|
3685
3690
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3751,7 +3756,7 @@ class DnsClient {
|
|
|
3751
3756
|
* @param UpdateResolverEndpointRequest
|
|
3752
3757
|
* @return UpdateResolverEndpointResponse
|
|
3753
3758
|
* @throws OciError when an error occurs
|
|
3754
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3759
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
|
|
3755
3760
|
*/
|
|
3756
3761
|
updateResolverEndpoint(updateResolverEndpointRequest) {
|
|
3757
3762
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3824,7 +3829,7 @@ class DnsClient {
|
|
|
3824
3829
|
* @param UpdateSteeringPolicyRequest
|
|
3825
3830
|
* @return UpdateSteeringPolicyResponse
|
|
3826
3831
|
* @throws OciError when an error occurs
|
|
3827
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3832
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
|
|
3828
3833
|
*/
|
|
3829
3834
|
updateSteeringPolicy(updateSteeringPolicyRequest) {
|
|
3830
3835
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3891,7 +3896,7 @@ class DnsClient {
|
|
|
3891
3896
|
* @param UpdateSteeringPolicyAttachmentRequest
|
|
3892
3897
|
* @return UpdateSteeringPolicyAttachmentResponse
|
|
3893
3898
|
* @throws OciError when an error occurs
|
|
3894
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3899
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
|
|
3895
3900
|
*/
|
|
3896
3901
|
updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest) {
|
|
3897
3902
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3958,7 +3963,7 @@ class DnsClient {
|
|
|
3958
3963
|
* @param UpdateTsigKeyRequest
|
|
3959
3964
|
* @return UpdateTsigKeyResponse
|
|
3960
3965
|
* @throws OciError when an error occurs
|
|
3961
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3966
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
|
|
3962
3967
|
*/
|
|
3963
3968
|
updateTsigKey(updateTsigKeyRequest) {
|
|
3964
3969
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4030,7 +4035,7 @@ class DnsClient {
|
|
|
4030
4035
|
* @param UpdateViewRequest
|
|
4031
4036
|
* @return UpdateViewResponse
|
|
4032
4037
|
* @throws OciError when an error occurs
|
|
4033
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4038
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
|
|
4034
4039
|
*/
|
|
4035
4040
|
updateView(updateViewRequest) {
|
|
4036
4041
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4106,7 +4111,7 @@ class DnsClient {
|
|
|
4106
4111
|
* @param UpdateZoneRequest
|
|
4107
4112
|
* @return UpdateZoneResponse
|
|
4108
4113
|
* @throws OciError when an error occurs
|
|
4109
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4114
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
|
|
4110
4115
|
*/
|
|
4111
4116
|
updateZone(updateZoneRequest) {
|
|
4112
4117
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4185,7 +4190,7 @@ class DnsClient {
|
|
|
4185
4190
|
* @param UpdateZoneRecordsRequest
|
|
4186
4191
|
* @return UpdateZoneRecordsResponse
|
|
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.
|
|
4193
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
|
|
4189
4194
|
*/
|
|
4190
4195
|
updateZoneRecords(updateZoneRecordsRequest) {
|
|
4191
4196
|
return __awaiter(this, void 0, void 0, function* () {
|