oci-dns 2.77.0 → 2.78.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 +64 -58
- package/lib/client.js +71 -62
- package/lib/client.js.map +1 -1
- package/lib/model/create-zone-base-details.d.ts +8 -2
- package/lib/model/create-zone-base-details.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-from-zone-file-request.d.ts +1 -1
- package/lib/request/create-zone-request.d.ts +1 -1
- package/lib/request/delete-domain-records-request.d.ts +2 -2
- package/lib/request/delete-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/delete-rrset-request.d.ts +2 -2
- 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 +2 -2
- package/lib/request/get-domain-records-request.d.ts +2 -2
- 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 +2 -2
- 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 +2 -2
- package/lib/request/get-zone-records-request.d.ts +2 -2
- package/lib/request/get-zone-request.d.ts +2 -2
- 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 +2 -2
- package/lib/request/patch-rrset-request.d.ts +2 -2
- package/lib/request/patch-zone-records-request.d.ts +2 -2
- package/lib/request/update-domain-records-request.d.ts +2 -2
- 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 +2 -2
- 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 +2 -2
- package/lib/request/update-zone-request.d.ts +2 -2
- 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.
|
|
207
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
332
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
394
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
466
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
531
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
610
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
686
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
758
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
833
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
912
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
989
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
1069
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
1134
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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* () {
|
|
@@ -1185,11 +1194,11 @@ class DnsClient {
|
|
|
1185
1194
|
* a `404` response to be consistent with other operations of the API. Resolver endpoints may not
|
|
1186
1195
|
* be deleted if they are referenced by a resolver rule.
|
|
1187
1196
|
*
|
|
1188
|
-
* This operation
|
|
1197
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
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.
|
|
1201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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* () {
|
|
@@ -1210,7 +1219,7 @@ class DnsClient {
|
|
|
1210
1219
|
"If-Unmodified-Since": deleteResolverEndpointRequest.ifUnmodifiedSince,
|
|
1211
1220
|
"opc-request-id": deleteResolverEndpointRequest.opcRequestId
|
|
1212
1221
|
};
|
|
1213
|
-
const specRetryConfiguration = common.
|
|
1222
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1214
1223
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteResolverEndpointRequest.retryConfiguration, specRetryConfiguration);
|
|
1215
1224
|
if (this.logger)
|
|
1216
1225
|
retrier.logger = this.logger;
|
|
@@ -1254,11 +1263,11 @@ class DnsClient {
|
|
|
1254
1263
|
* Deletion will fail if the policy is attached to any zones. To detach a
|
|
1255
1264
|
* policy from a zone, see `DeleteSteeringPolicyAttachment`.
|
|
1256
1265
|
*
|
|
1257
|
-
* This operation
|
|
1266
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
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.
|
|
1270
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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* () {
|
|
@@ -1278,7 +1287,7 @@ class DnsClient {
|
|
|
1278
1287
|
"If-Unmodified-Since": deleteSteeringPolicyRequest.ifUnmodifiedSince,
|
|
1279
1288
|
"opc-request-id": deleteSteeringPolicyRequest.opcRequestId
|
|
1280
1289
|
};
|
|
1281
|
-
const specRetryConfiguration = common.
|
|
1290
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1282
1291
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteSteeringPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
1283
1292
|
if (this.logger)
|
|
1284
1293
|
retrier.logger = this.logger;
|
|
@@ -1314,11 +1323,11 @@ class DnsClient {
|
|
|
1314
1323
|
* Deletes the specified steering policy attachment.
|
|
1315
1324
|
* A `204` response indicates that the delete has been successful.
|
|
1316
1325
|
*
|
|
1317
|
-
* This operation
|
|
1326
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
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.
|
|
1330
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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* () {
|
|
@@ -1338,7 +1347,7 @@ class DnsClient {
|
|
|
1338
1347
|
"If-Unmodified-Since": deleteSteeringPolicyAttachmentRequest.ifUnmodifiedSince,
|
|
1339
1348
|
"opc-request-id": deleteSteeringPolicyAttachmentRequest.opcRequestId
|
|
1340
1349
|
};
|
|
1341
|
-
const specRetryConfiguration = common.
|
|
1350
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1342
1351
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteSteeringPolicyAttachmentRequest.retryConfiguration, specRetryConfiguration);
|
|
1343
1352
|
if (this.logger)
|
|
1344
1353
|
retrier.logger = this.logger;
|
|
@@ -1373,11 +1382,11 @@ class DnsClient {
|
|
|
1373
1382
|
/**
|
|
1374
1383
|
* Deletes the specified TSIG key.
|
|
1375
1384
|
*
|
|
1376
|
-
* This operation
|
|
1385
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
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.
|
|
1389
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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* () {
|
|
@@ -1397,7 +1406,7 @@ class DnsClient {
|
|
|
1397
1406
|
"If-Unmodified-Since": deleteTsigKeyRequest.ifUnmodifiedSince,
|
|
1398
1407
|
"opc-request-id": deleteTsigKeyRequest.opcRequestId
|
|
1399
1408
|
};
|
|
1400
|
-
const specRetryConfiguration = common.
|
|
1409
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1401
1410
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteTsigKeyRequest.retryConfiguration, specRetryConfiguration);
|
|
1402
1411
|
if (this.logger)
|
|
1403
1412
|
retrier.logger = this.logger;
|
|
@@ -1442,11 +1451,11 @@ class DnsClient {
|
|
|
1442
1451
|
* deleted if they are referenced by non-deleted zones or resolvers.
|
|
1443
1452
|
* Protected views cannot be deleted.
|
|
1444
1453
|
*
|
|
1445
|
-
* This operation
|
|
1454
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
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.
|
|
1458
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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* () {
|
|
@@ -1466,7 +1475,7 @@ class DnsClient {
|
|
|
1466
1475
|
"If-Unmodified-Since": deleteViewRequest.ifUnmodifiedSince,
|
|
1467
1476
|
"opc-request-id": deleteViewRequest.opcRequestId
|
|
1468
1477
|
};
|
|
1469
|
-
const specRetryConfiguration = common.
|
|
1478
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1470
1479
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteViewRequest.retryConfiguration, specRetryConfiguration);
|
|
1471
1480
|
if (this.logger)
|
|
1472
1481
|
retrier.logger = this.logger;
|
|
@@ -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.
|
|
1526
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
1596
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
1726
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
1854
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
1925
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
1994
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2062
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2273
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2343
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2416
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2547
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2664
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2776
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
2898
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3021
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3138
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3252
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3361
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3488
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3573
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3661
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3747
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3832
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3915
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
3989
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
4064
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
4133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
4202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
4276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
4355
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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.
|
|
4437
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/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* () {
|