oci-dns 2.3.0 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +238 -51
- package/lib/client.js +282 -51
- 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
|
@@ -144,7 +144,7 @@ class DnsClient {
|
|
|
144
144
|
* @param ChangeResolverCompartmentRequest
|
|
145
145
|
* @return ChangeResolverCompartmentResponse
|
|
146
146
|
* @throws OciError when an error occurs
|
|
147
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
147
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
|
|
148
148
|
*/
|
|
149
149
|
changeResolverCompartment(changeResolverCompartmentRequest) {
|
|
150
150
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -205,7 +205,7 @@ class DnsClient {
|
|
|
205
205
|
* @param ChangeSteeringPolicyCompartmentRequest
|
|
206
206
|
* @return ChangeSteeringPolicyCompartmentResponse
|
|
207
207
|
* @throws OciError when an error occurs
|
|
208
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
208
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
|
|
209
209
|
*/
|
|
210
210
|
changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest) {
|
|
211
211
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -261,7 +261,7 @@ class DnsClient {
|
|
|
261
261
|
* @param ChangeTsigKeyCompartmentRequest
|
|
262
262
|
* @return ChangeTsigKeyCompartmentResponse
|
|
263
263
|
* @throws OciError when an error occurs
|
|
264
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
264
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
|
|
265
265
|
*/
|
|
266
266
|
changeTsigKeyCompartment(changeTsigKeyCompartmentRequest) {
|
|
267
267
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -318,7 +318,7 @@ class DnsClient {
|
|
|
318
318
|
* @param ChangeViewCompartmentRequest
|
|
319
319
|
* @return ChangeViewCompartmentResponse
|
|
320
320
|
* @throws OciError when an error occurs
|
|
321
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
|
|
322
322
|
*/
|
|
323
323
|
changeViewCompartment(changeViewCompartmentRequest) {
|
|
324
324
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -383,7 +383,7 @@ class DnsClient {
|
|
|
383
383
|
* @param ChangeZoneCompartmentRequest
|
|
384
384
|
* @return ChangeZoneCompartmentResponse
|
|
385
385
|
* @throws OciError when an error occurs
|
|
386
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
386
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
|
|
387
387
|
*/
|
|
388
388
|
changeZoneCompartment(changeZoneCompartmentRequest) {
|
|
389
389
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -444,7 +444,7 @@ class DnsClient {
|
|
|
444
444
|
* @param CreateResolverEndpointRequest
|
|
445
445
|
* @return CreateResolverEndpointResponse
|
|
446
446
|
* @throws OciError when an error occurs
|
|
447
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
447
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
|
|
448
448
|
*/
|
|
449
449
|
createResolverEndpoint(createResolverEndpointRequest) {
|
|
450
450
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -519,7 +519,7 @@ class DnsClient {
|
|
|
519
519
|
* @param CreateSteeringPolicyRequest
|
|
520
520
|
* @return CreateSteeringPolicyResponse
|
|
521
521
|
* @throws OciError when an error occurs
|
|
522
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
522
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
|
|
523
523
|
*/
|
|
524
524
|
createSteeringPolicy(createSteeringPolicyRequest) {
|
|
525
525
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -591,7 +591,7 @@ class DnsClient {
|
|
|
591
591
|
* @param CreateSteeringPolicyAttachmentRequest
|
|
592
592
|
* @return CreateSteeringPolicyAttachmentResponse
|
|
593
593
|
* @throws OciError when an error occurs
|
|
594
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
594
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
|
|
595
595
|
*/
|
|
596
596
|
createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest) {
|
|
597
597
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -659,7 +659,7 @@ class DnsClient {
|
|
|
659
659
|
* @param CreateTsigKeyRequest
|
|
660
660
|
* @return CreateTsigKeyResponse
|
|
661
661
|
* @throws OciError when an error occurs
|
|
662
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
662
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
|
|
663
663
|
*/
|
|
664
664
|
createTsigKey(createTsigKeyRequest) {
|
|
665
665
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -730,7 +730,7 @@ class DnsClient {
|
|
|
730
730
|
* @param CreateViewRequest
|
|
731
731
|
* @return CreateViewResponse
|
|
732
732
|
* @throws OciError when an error occurs
|
|
733
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
733
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/CreateView.ts.html |here} to see how to use CreateView API.
|
|
734
734
|
*/
|
|
735
735
|
createView(createViewRequest) {
|
|
736
736
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -806,7 +806,7 @@ class DnsClient {
|
|
|
806
806
|
* @param CreateZoneRequest
|
|
807
807
|
* @return CreateZoneResponse
|
|
808
808
|
* @throws OciError when an error occurs
|
|
809
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
809
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
|
|
810
810
|
*/
|
|
811
811
|
createZone(createZoneRequest) {
|
|
812
812
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -881,7 +881,7 @@ class DnsClient {
|
|
|
881
881
|
* @param DeleteDomainRecordsRequest
|
|
882
882
|
* @return DeleteDomainRecordsResponse
|
|
883
883
|
* @throws OciError when an error occurs
|
|
884
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
884
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
|
|
885
885
|
*/
|
|
886
886
|
deleteDomainRecords(deleteDomainRecordsRequest) {
|
|
887
887
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -941,7 +941,7 @@ class DnsClient {
|
|
|
941
941
|
* @param DeleteRRSetRequest
|
|
942
942
|
* @return DeleteRRSetResponse
|
|
943
943
|
* @throws OciError when an error occurs
|
|
944
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
944
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
|
|
945
945
|
*/
|
|
946
946
|
deleteRRSet(deleteRRSetRequest) {
|
|
947
947
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1003,7 +1003,7 @@ class DnsClient {
|
|
|
1003
1003
|
* @param DeleteResolverEndpointRequest
|
|
1004
1004
|
* @return DeleteResolverEndpointResponse
|
|
1005
1005
|
* @throws OciError when an error occurs
|
|
1006
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1006
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
|
|
1007
1007
|
*/
|
|
1008
1008
|
deleteResolverEndpoint(deleteResolverEndpointRequest) {
|
|
1009
1009
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1067,7 +1067,7 @@ class DnsClient {
|
|
|
1067
1067
|
* @param DeleteSteeringPolicyRequest
|
|
1068
1068
|
* @return DeleteSteeringPolicyResponse
|
|
1069
1069
|
* @throws OciError when an error occurs
|
|
1070
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1070
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
|
|
1071
1071
|
*/
|
|
1072
1072
|
deleteSteeringPolicy(deleteSteeringPolicyRequest) {
|
|
1073
1073
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1123,7 +1123,7 @@ class DnsClient {
|
|
|
1123
1123
|
* @param DeleteSteeringPolicyAttachmentRequest
|
|
1124
1124
|
* @return DeleteSteeringPolicyAttachmentResponse
|
|
1125
1125
|
* @throws OciError when an error occurs
|
|
1126
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1126
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
|
|
1127
1127
|
*/
|
|
1128
1128
|
deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest) {
|
|
1129
1129
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1178,7 +1178,7 @@ class DnsClient {
|
|
|
1178
1178
|
* @param DeleteTsigKeyRequest
|
|
1179
1179
|
* @return DeleteTsigKeyResponse
|
|
1180
1180
|
* @throws OciError when an error occurs
|
|
1181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1181
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
|
|
1182
1182
|
*/
|
|
1183
1183
|
deleteTsigKey(deleteTsigKeyRequest) {
|
|
1184
1184
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1242,7 +1242,7 @@ class DnsClient {
|
|
|
1242
1242
|
* @param DeleteViewRequest
|
|
1243
1243
|
* @return DeleteViewResponse
|
|
1244
1244
|
* @throws OciError when an error occurs
|
|
1245
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1245
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
|
|
1246
1246
|
*/
|
|
1247
1247
|
deleteView(deleteViewRequest) {
|
|
1248
1248
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1305,7 +1305,7 @@ class DnsClient {
|
|
|
1305
1305
|
* @param DeleteZoneRequest
|
|
1306
1306
|
* @return DeleteZoneResponse
|
|
1307
1307
|
* @throws OciError when an error occurs
|
|
1308
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1308
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
|
|
1309
1309
|
*/
|
|
1310
1310
|
deleteZone(deleteZoneRequest) {
|
|
1311
1311
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1371,7 +1371,7 @@ class DnsClient {
|
|
|
1371
1371
|
* @param GetDomainRecordsRequest
|
|
1372
1372
|
* @return GetDomainRecordsResponse
|
|
1373
1373
|
* @throws OciError when an error occurs
|
|
1374
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1374
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
|
|
1375
1375
|
*/
|
|
1376
1376
|
getDomainRecords(getDomainRecordsRequest) {
|
|
1377
1377
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1449,6 +1449,7 @@ class DnsClient {
|
|
|
1449
1449
|
});
|
|
1450
1450
|
}
|
|
1451
1451
|
/**
|
|
1452
|
+
* NOTE: This function is deprecated in favor of getDomainRecordsRecordIterator function.
|
|
1452
1453
|
* Creates a new async iterator which will iterate over the models.Record objects
|
|
1453
1454
|
* contained in responses from the getDomainRecords operation. This iterator will fetch more data from the
|
|
1454
1455
|
* server as needed.
|
|
@@ -1459,6 +1460,7 @@ class DnsClient {
|
|
|
1459
1460
|
return oci_common_1.genericPaginateRecords(request, req => this.getDomainRecords(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken), res => res.recordCollection.items || []);
|
|
1460
1461
|
}
|
|
1461
1462
|
/**
|
|
1463
|
+
* NOTE: This function is deprecated in favor of getDomainRecordsResponseIterator function.
|
|
1462
1464
|
* Creates a new async iterator which will iterate over the responses received from the getDomainRecords operation. This iterator
|
|
1463
1465
|
* will fetch more data from the server as needed.
|
|
1464
1466
|
*
|
|
@@ -1467,6 +1469,25 @@ class DnsClient {
|
|
|
1467
1469
|
getAllDomainRecordsResponses(request) {
|
|
1468
1470
|
return oci_common_1.genericPaginateResponses(request, req => this.getDomainRecords(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken));
|
|
1469
1471
|
}
|
|
1472
|
+
/**
|
|
1473
|
+
* Creates a new async iterator which will iterate over the models.Record objects
|
|
1474
|
+
* contained in responses from the getDomainRecords operation. This iterator will fetch more data from the
|
|
1475
|
+
* server as needed.
|
|
1476
|
+
*
|
|
1477
|
+
* @param request a request which can be sent to the service operation
|
|
1478
|
+
*/
|
|
1479
|
+
getDomainRecordsRecordIterator(request) {
|
|
1480
|
+
return oci_common_1.genericPaginateRecords(request, req => this.getDomainRecords(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken), res => res.recordCollection.items || []);
|
|
1481
|
+
}
|
|
1482
|
+
/**
|
|
1483
|
+
* Creates a new async iterator which will iterate over the responses received from the getDomainRecords operation. This iterator
|
|
1484
|
+
* will fetch more data from the server as needed.
|
|
1485
|
+
*
|
|
1486
|
+
* @param request a request which can be sent to the service operation
|
|
1487
|
+
*/
|
|
1488
|
+
getDomainRecordsResponseIterator(request) {
|
|
1489
|
+
return oci_common_1.genericPaginateResponses(request, req => this.getDomainRecords(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken));
|
|
1490
|
+
}
|
|
1470
1491
|
/**
|
|
1471
1492
|
* Gets a list of all records in the specified RRSet. The results are sorted by `recordHash` by default. For
|
|
1472
1493
|
* private zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is
|
|
@@ -1476,7 +1497,7 @@ class DnsClient {
|
|
|
1476
1497
|
* @param GetRRSetRequest
|
|
1477
1498
|
* @return GetRRSetResponse
|
|
1478
1499
|
* @throws OciError when an error occurs
|
|
1479
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1500
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
|
|
1480
1501
|
*/
|
|
1481
1502
|
getRRSet(getRRSetRequest) {
|
|
1482
1503
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1552,6 +1573,7 @@ class DnsClient {
|
|
|
1552
1573
|
});
|
|
1553
1574
|
}
|
|
1554
1575
|
/**
|
|
1576
|
+
* NOTE: This function is deprecated in favor of getRRSetRecordIterator function.
|
|
1555
1577
|
* Creates a new async iterator which will iterate over the models.Record objects
|
|
1556
1578
|
* contained in responses from the getRRSet operation. This iterator will fetch more data from the
|
|
1557
1579
|
* server as needed.
|
|
@@ -1562,6 +1584,7 @@ class DnsClient {
|
|
|
1562
1584
|
return oci_common_1.genericPaginateRecords(request, req => this.getRRSet(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken), res => res.rRSet.items || []);
|
|
1563
1585
|
}
|
|
1564
1586
|
/**
|
|
1587
|
+
* NOTE: This function is deprecated in favor of getRRSetResponseIterator function.
|
|
1565
1588
|
* Creates a new async iterator which will iterate over the responses received from the getRRSet operation. This iterator
|
|
1566
1589
|
* will fetch more data from the server as needed.
|
|
1567
1590
|
*
|
|
@@ -1570,6 +1593,25 @@ class DnsClient {
|
|
|
1570
1593
|
getAllRRSetResponses(request) {
|
|
1571
1594
|
return oci_common_1.genericPaginateResponses(request, req => this.getRRSet(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken));
|
|
1572
1595
|
}
|
|
1596
|
+
/**
|
|
1597
|
+
* Creates a new async iterator which will iterate over the models.Record objects
|
|
1598
|
+
* contained in responses from the getRRSet operation. This iterator will fetch more data from the
|
|
1599
|
+
* server as needed.
|
|
1600
|
+
*
|
|
1601
|
+
* @param request a request which can be sent to the service operation
|
|
1602
|
+
*/
|
|
1603
|
+
getRRSetRecordIterator(request) {
|
|
1604
|
+
return oci_common_1.genericPaginateRecords(request, req => this.getRRSet(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken), res => res.rRSet.items || []);
|
|
1605
|
+
}
|
|
1606
|
+
/**
|
|
1607
|
+
* Creates a new async iterator which will iterate over the responses received from the getRRSet operation. This iterator
|
|
1608
|
+
* will fetch more data from the server as needed.
|
|
1609
|
+
*
|
|
1610
|
+
* @param request a request which can be sent to the service operation
|
|
1611
|
+
*/
|
|
1612
|
+
getRRSetResponseIterator(request) {
|
|
1613
|
+
return oci_common_1.genericPaginateResponses(request, req => this.getRRSet(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken));
|
|
1614
|
+
}
|
|
1573
1615
|
/**
|
|
1574
1616
|
* Gets information about a specific resolver. Note that attempting to get a
|
|
1575
1617
|
* resolver in the DELETED lifecycleState will result in a `404` response to be
|
|
@@ -1578,7 +1620,7 @@ class DnsClient {
|
|
|
1578
1620
|
* @param GetResolverRequest
|
|
1579
1621
|
* @return GetResolverResponse
|
|
1580
1622
|
* @throws OciError when an error occurs
|
|
1581
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1623
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
|
|
1582
1624
|
*/
|
|
1583
1625
|
getResolver(getResolverRequest) {
|
|
1584
1626
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1644,7 +1686,7 @@ class DnsClient {
|
|
|
1644
1686
|
* @param GetResolverEndpointRequest
|
|
1645
1687
|
* @return GetResolverEndpointResponse
|
|
1646
1688
|
* @throws OciError when an error occurs
|
|
1647
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1689
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
|
|
1648
1690
|
*/
|
|
1649
1691
|
getResolverEndpoint(getResolverEndpointRequest) {
|
|
1650
1692
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1709,7 +1751,7 @@ class DnsClient {
|
|
|
1709
1751
|
* @param GetSteeringPolicyRequest
|
|
1710
1752
|
* @return GetSteeringPolicyResponse
|
|
1711
1753
|
* @throws OciError when an error occurs
|
|
1712
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1754
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
|
|
1713
1755
|
*/
|
|
1714
1756
|
getSteeringPolicy(getSteeringPolicyRequest) {
|
|
1715
1757
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1773,7 +1815,7 @@ class DnsClient {
|
|
|
1773
1815
|
* @param GetSteeringPolicyAttachmentRequest
|
|
1774
1816
|
* @return GetSteeringPolicyAttachmentResponse
|
|
1775
1817
|
* @throws OciError when an error occurs
|
|
1776
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1818
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
|
|
1777
1819
|
*/
|
|
1778
1820
|
getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest) {
|
|
1779
1821
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1837,7 +1879,7 @@ class DnsClient {
|
|
|
1837
1879
|
* @param GetTsigKeyRequest
|
|
1838
1880
|
* @return GetTsigKeyResponse
|
|
1839
1881
|
* @throws OciError when an error occurs
|
|
1840
|
-
* @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.5.1/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
|
|
1841
1883
|
*/
|
|
1842
1884
|
getTsigKey(getTsigKeyRequest) {
|
|
1843
1885
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1903,7 +1945,7 @@ class DnsClient {
|
|
|
1903
1945
|
* @param GetViewRequest
|
|
1904
1946
|
* @return GetViewResponse
|
|
1905
1947
|
* @throws OciError when an error occurs
|
|
1906
|
-
* @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.5.1/dns/GetView.ts.html |here} to see how to use GetView API.
|
|
1907
1949
|
*/
|
|
1908
1950
|
getView(getViewRequest) {
|
|
1909
1951
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1969,7 +2011,7 @@ class DnsClient {
|
|
|
1969
2011
|
* @param GetZoneRequest
|
|
1970
2012
|
* @return GetZoneResponse
|
|
1971
2013
|
* @throws OciError when an error occurs
|
|
1972
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2014
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetZone.ts.html |here} to see how to use GetZone API.
|
|
1973
2015
|
*/
|
|
1974
2016
|
getZone(getZoneRequest) {
|
|
1975
2017
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2035,7 +2077,7 @@ class DnsClient {
|
|
|
2035
2077
|
* @param GetZoneContentRequest
|
|
2036
2078
|
* @return GetZoneContentResponse
|
|
2037
2079
|
* @throws OciError when an error occurs
|
|
2038
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2080
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
|
|
2039
2081
|
*/
|
|
2040
2082
|
getZoneContent(getZoneContentRequest) {
|
|
2041
2083
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2103,7 +2145,7 @@ class DnsClient {
|
|
|
2103
2145
|
* @param GetZoneRecordsRequest
|
|
2104
2146
|
* @return GetZoneRecordsResponse
|
|
2105
2147
|
* @throws OciError when an error occurs
|
|
2106
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2148
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
|
|
2107
2149
|
*/
|
|
2108
2150
|
getZoneRecords(getZoneRecordsRequest) {
|
|
2109
2151
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2182,6 +2224,7 @@ class DnsClient {
|
|
|
2182
2224
|
});
|
|
2183
2225
|
}
|
|
2184
2226
|
/**
|
|
2227
|
+
* NOTE: This function is deprecated in favor of getZoneRecordsRecordIterator function.
|
|
2185
2228
|
* Creates a new async iterator which will iterate over the models.Record objects
|
|
2186
2229
|
* contained in responses from the getZoneRecords operation. This iterator will fetch more data from the
|
|
2187
2230
|
* server as needed.
|
|
@@ -2192,6 +2235,7 @@ class DnsClient {
|
|
|
2192
2235
|
return oci_common_1.genericPaginateRecords(request, req => this.getZoneRecords(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken), res => res.recordCollection.items || []);
|
|
2193
2236
|
}
|
|
2194
2237
|
/**
|
|
2238
|
+
* NOTE: This function is deprecated in favor of getZoneRecordsResponseIterator function.
|
|
2195
2239
|
* Creates a new async iterator which will iterate over the responses received from the getZoneRecords operation. This iterator
|
|
2196
2240
|
* will fetch more data from the server as needed.
|
|
2197
2241
|
*
|
|
@@ -2200,6 +2244,25 @@ class DnsClient {
|
|
|
2200
2244
|
getAllZoneRecordsResponses(request) {
|
|
2201
2245
|
return oci_common_1.genericPaginateResponses(request, req => this.getZoneRecords(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken));
|
|
2202
2246
|
}
|
|
2247
|
+
/**
|
|
2248
|
+
* Creates a new async iterator which will iterate over the models.Record objects
|
|
2249
|
+
* contained in responses from the getZoneRecords operation. This iterator will fetch more data from the
|
|
2250
|
+
* server as needed.
|
|
2251
|
+
*
|
|
2252
|
+
* @param request a request which can be sent to the service operation
|
|
2253
|
+
*/
|
|
2254
|
+
getZoneRecordsRecordIterator(request) {
|
|
2255
|
+
return oci_common_1.genericPaginateRecords(request, req => this.getZoneRecords(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken), res => res.recordCollection.items || []);
|
|
2256
|
+
}
|
|
2257
|
+
/**
|
|
2258
|
+
* Creates a new async iterator which will iterate over the responses received from the getZoneRecords operation. This iterator
|
|
2259
|
+
* will fetch more data from the server as needed.
|
|
2260
|
+
*
|
|
2261
|
+
* @param request a request which can be sent to the service operation
|
|
2262
|
+
*/
|
|
2263
|
+
getZoneRecordsResponseIterator(request) {
|
|
2264
|
+
return oci_common_1.genericPaginateResponses(request, req => this.getZoneRecords(req), res => res.opcNextPage, (req, nextPageToken) => (req.page = nextPageToken));
|
|
2265
|
+
}
|
|
2203
2266
|
/**
|
|
2204
2267
|
* Gets a list of all endpoints within a resolver. The collection can be filtered by name or lifecycle state.
|
|
2205
2268
|
* It can be sorted on creation time or name both in ASC or DESC order. Note that when no lifecycleState
|
|
@@ -2209,7 +2272,7 @@ class DnsClient {
|
|
|
2209
2272
|
* @param ListResolverEndpointsRequest
|
|
2210
2273
|
* @return ListResolverEndpointsResponse
|
|
2211
2274
|
* @throws OciError when an error occurs
|
|
2212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2275
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
|
|
2213
2276
|
*/
|
|
2214
2277
|
listResolverEndpoints(listResolverEndpointsRequest) {
|
|
2215
2278
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2272,6 +2335,7 @@ class DnsClient {
|
|
|
2272
2335
|
});
|
|
2273
2336
|
}
|
|
2274
2337
|
/**
|
|
2338
|
+
* NOTE: This function is deprecated in favor of listResolverEndpointsRecordIterator function.
|
|
2275
2339
|
* Creates a new async iterator which will iterate over the models.ResolverEndpointSummary objects
|
|
2276
2340
|
* contained in responses from the listResolverEndpoints operation. This iterator will fetch more data from the
|
|
2277
2341
|
* server as needed.
|
|
@@ -2282,6 +2346,7 @@ class DnsClient {
|
|
|
2282
2346
|
return oci_common_1.paginateRecords(request, req => this.listResolverEndpoints(req));
|
|
2283
2347
|
}
|
|
2284
2348
|
/**
|
|
2349
|
+
* NOTE: This function is deprecated in favor of listResolverEndpointsResponseIterator function.
|
|
2285
2350
|
* Creates a new async iterator which will iterate over the responses received from the listResolverEndpoints operation. This iterator
|
|
2286
2351
|
* will fetch more data from the server as needed.
|
|
2287
2352
|
*
|
|
@@ -2290,6 +2355,25 @@ class DnsClient {
|
|
|
2290
2355
|
listAllResolverEndpointsResponses(request) {
|
|
2291
2356
|
return oci_common_1.paginateResponses(request, req => this.listResolverEndpoints(req));
|
|
2292
2357
|
}
|
|
2358
|
+
/**
|
|
2359
|
+
* Creates a new async iterator which will iterate over the models.ResolverEndpointSummary objects
|
|
2360
|
+
* contained in responses from the listResolverEndpoints operation. This iterator will fetch more data from the
|
|
2361
|
+
* server as needed.
|
|
2362
|
+
*
|
|
2363
|
+
* @param request a request which can be sent to the service operation
|
|
2364
|
+
*/
|
|
2365
|
+
listResolverEndpointsRecordIterator(request) {
|
|
2366
|
+
return oci_common_1.paginateRecords(request, req => this.listResolverEndpoints(req));
|
|
2367
|
+
}
|
|
2368
|
+
/**
|
|
2369
|
+
* Creates a new async iterator which will iterate over the responses received from the listResolverEndpoints operation. This iterator
|
|
2370
|
+
* will fetch more data from the server as needed.
|
|
2371
|
+
*
|
|
2372
|
+
* @param request a request which can be sent to the service operation
|
|
2373
|
+
*/
|
|
2374
|
+
listResolverEndpointsResponseIterator(request) {
|
|
2375
|
+
return oci_common_1.paginateResponses(request, req => this.listResolverEndpoints(req));
|
|
2376
|
+
}
|
|
2293
2377
|
/**
|
|
2294
2378
|
* Gets a list of all resolvers within a compartment. The collection can
|
|
2295
2379
|
* be filtered by display name, id, or lifecycle state. It can be sorted
|
|
@@ -2301,7 +2385,7 @@ class DnsClient {
|
|
|
2301
2385
|
* @param ListResolversRequest
|
|
2302
2386
|
* @return ListResolversResponse
|
|
2303
2387
|
* @throws OciError when an error occurs
|
|
2304
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2388
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
|
|
2305
2389
|
*/
|
|
2306
2390
|
listResolvers(listResolversRequest) {
|
|
2307
2391
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2364,6 +2448,7 @@ class DnsClient {
|
|
|
2364
2448
|
});
|
|
2365
2449
|
}
|
|
2366
2450
|
/**
|
|
2451
|
+
* NOTE: This function is deprecated in favor of listResolversRecordIterator function.
|
|
2367
2452
|
* Creates a new async iterator which will iterate over the models.ResolverSummary objects
|
|
2368
2453
|
* contained in responses from the listResolvers operation. This iterator will fetch more data from the
|
|
2369
2454
|
* server as needed.
|
|
@@ -2374,6 +2459,7 @@ class DnsClient {
|
|
|
2374
2459
|
return oci_common_1.paginateRecords(request, req => this.listResolvers(req));
|
|
2375
2460
|
}
|
|
2376
2461
|
/**
|
|
2462
|
+
* NOTE: This function is deprecated in favor of listResolversResponseIterator function.
|
|
2377
2463
|
* Creates a new async iterator which will iterate over the responses received from the listResolvers operation. This iterator
|
|
2378
2464
|
* will fetch more data from the server as needed.
|
|
2379
2465
|
*
|
|
@@ -2382,13 +2468,32 @@ class DnsClient {
|
|
|
2382
2468
|
listAllResolversResponses(request) {
|
|
2383
2469
|
return oci_common_1.paginateResponses(request, req => this.listResolvers(req));
|
|
2384
2470
|
}
|
|
2471
|
+
/**
|
|
2472
|
+
* Creates a new async iterator which will iterate over the models.ResolverSummary objects
|
|
2473
|
+
* contained in responses from the listResolvers operation. This iterator will fetch more data from the
|
|
2474
|
+
* server as needed.
|
|
2475
|
+
*
|
|
2476
|
+
* @param request a request which can be sent to the service operation
|
|
2477
|
+
*/
|
|
2478
|
+
listResolversRecordIterator(request) {
|
|
2479
|
+
return oci_common_1.paginateRecords(request, req => this.listResolvers(req));
|
|
2480
|
+
}
|
|
2481
|
+
/**
|
|
2482
|
+
* Creates a new async iterator which will iterate over the responses received from the listResolvers operation. This iterator
|
|
2483
|
+
* will fetch more data from the server as needed.
|
|
2484
|
+
*
|
|
2485
|
+
* @param request a request which can be sent to the service operation
|
|
2486
|
+
*/
|
|
2487
|
+
listResolversResponseIterator(request) {
|
|
2488
|
+
return oci_common_1.paginateResponses(request, req => this.listResolvers(req));
|
|
2489
|
+
}
|
|
2385
2490
|
/**
|
|
2386
2491
|
* Gets a list of all steering policies in the specified compartment.
|
|
2387
2492
|
*
|
|
2388
2493
|
* @param ListSteeringPoliciesRequest
|
|
2389
2494
|
* @return ListSteeringPoliciesResponse
|
|
2390
2495
|
* @throws OciError when an error occurs
|
|
2391
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2496
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
|
|
2392
2497
|
*/
|
|
2393
2498
|
listSteeringPolicies(listSteeringPoliciesRequest) {
|
|
2394
2499
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2461,6 +2566,7 @@ class DnsClient {
|
|
|
2461
2566
|
});
|
|
2462
2567
|
}
|
|
2463
2568
|
/**
|
|
2569
|
+
* NOTE: This function is deprecated in favor of listSteeringPoliciesRecordIterator function.
|
|
2464
2570
|
* Creates a new async iterator which will iterate over the models.SteeringPolicySummary objects
|
|
2465
2571
|
* contained in responses from the listSteeringPolicies operation. This iterator will fetch more data from the
|
|
2466
2572
|
* server as needed.
|
|
@@ -2471,6 +2577,7 @@ class DnsClient {
|
|
|
2471
2577
|
return oci_common_1.paginateRecords(request, req => this.listSteeringPolicies(req));
|
|
2472
2578
|
}
|
|
2473
2579
|
/**
|
|
2580
|
+
* NOTE: This function is deprecated in favor of listSteeringPoliciesResponseIterator function.
|
|
2474
2581
|
* Creates a new async iterator which will iterate over the responses received from the listSteeringPolicies operation. This iterator
|
|
2475
2582
|
* will fetch more data from the server as needed.
|
|
2476
2583
|
*
|
|
@@ -2479,13 +2586,32 @@ class DnsClient {
|
|
|
2479
2586
|
listAllSteeringPoliciesResponses(request) {
|
|
2480
2587
|
return oci_common_1.paginateResponses(request, req => this.listSteeringPolicies(req));
|
|
2481
2588
|
}
|
|
2589
|
+
/**
|
|
2590
|
+
* Creates a new async iterator which will iterate over the models.SteeringPolicySummary objects
|
|
2591
|
+
* contained in responses from the listSteeringPolicies operation. This iterator will fetch more data from the
|
|
2592
|
+
* server as needed.
|
|
2593
|
+
*
|
|
2594
|
+
* @param request a request which can be sent to the service operation
|
|
2595
|
+
*/
|
|
2596
|
+
listSteeringPoliciesRecordIterator(request) {
|
|
2597
|
+
return oci_common_1.paginateRecords(request, req => this.listSteeringPolicies(req));
|
|
2598
|
+
}
|
|
2599
|
+
/**
|
|
2600
|
+
* Creates a new async iterator which will iterate over the responses received from the listSteeringPolicies operation. This iterator
|
|
2601
|
+
* will fetch more data from the server as needed.
|
|
2602
|
+
*
|
|
2603
|
+
* @param request a request which can be sent to the service operation
|
|
2604
|
+
*/
|
|
2605
|
+
listSteeringPoliciesResponseIterator(request) {
|
|
2606
|
+
return oci_common_1.paginateResponses(request, req => this.listSteeringPolicies(req));
|
|
2607
|
+
}
|
|
2482
2608
|
/**
|
|
2483
2609
|
* Lists the steering policy attachments in the specified compartment.
|
|
2484
2610
|
*
|
|
2485
2611
|
* @param ListSteeringPolicyAttachmentsRequest
|
|
2486
2612
|
* @return ListSteeringPolicyAttachmentsResponse
|
|
2487
2613
|
* @throws OciError when an error occurs
|
|
2488
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2614
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
|
|
2489
2615
|
*/
|
|
2490
2616
|
listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest) {
|
|
2491
2617
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2559,6 +2685,7 @@ class DnsClient {
|
|
|
2559
2685
|
});
|
|
2560
2686
|
}
|
|
2561
2687
|
/**
|
|
2688
|
+
* NOTE: This function is deprecated in favor of listSteeringPolicyAttachmentsRecordIterator function.
|
|
2562
2689
|
* Creates a new async iterator which will iterate over the models.SteeringPolicyAttachmentSummary objects
|
|
2563
2690
|
* contained in responses from the listSteeringPolicyAttachments operation. This iterator will fetch more data from the
|
|
2564
2691
|
* server as needed.
|
|
@@ -2569,6 +2696,7 @@ class DnsClient {
|
|
|
2569
2696
|
return oci_common_1.paginateRecords(request, req => this.listSteeringPolicyAttachments(req));
|
|
2570
2697
|
}
|
|
2571
2698
|
/**
|
|
2699
|
+
* NOTE: This function is deprecated in favor of listSteeringPolicyAttachmentsResponseIterator function.
|
|
2572
2700
|
* Creates a new async iterator which will iterate over the responses received from the listSteeringPolicyAttachments operation. This iterator
|
|
2573
2701
|
* will fetch more data from the server as needed.
|
|
2574
2702
|
*
|
|
@@ -2577,13 +2705,32 @@ class DnsClient {
|
|
|
2577
2705
|
listAllSteeringPolicyAttachmentsResponses(request) {
|
|
2578
2706
|
return oci_common_1.paginateResponses(request, req => this.listSteeringPolicyAttachments(req));
|
|
2579
2707
|
}
|
|
2708
|
+
/**
|
|
2709
|
+
* Creates a new async iterator which will iterate over the models.SteeringPolicyAttachmentSummary objects
|
|
2710
|
+
* contained in responses from the listSteeringPolicyAttachments operation. This iterator will fetch more data from the
|
|
2711
|
+
* server as needed.
|
|
2712
|
+
*
|
|
2713
|
+
* @param request a request which can be sent to the service operation
|
|
2714
|
+
*/
|
|
2715
|
+
listSteeringPolicyAttachmentsRecordIterator(request) {
|
|
2716
|
+
return oci_common_1.paginateRecords(request, req => this.listSteeringPolicyAttachments(req));
|
|
2717
|
+
}
|
|
2718
|
+
/**
|
|
2719
|
+
* Creates a new async iterator which will iterate over the responses received from the listSteeringPolicyAttachments operation. This iterator
|
|
2720
|
+
* will fetch more data from the server as needed.
|
|
2721
|
+
*
|
|
2722
|
+
* @param request a request which can be sent to the service operation
|
|
2723
|
+
*/
|
|
2724
|
+
listSteeringPolicyAttachmentsResponseIterator(request) {
|
|
2725
|
+
return oci_common_1.paginateResponses(request, req => this.listSteeringPolicyAttachments(req));
|
|
2726
|
+
}
|
|
2580
2727
|
/**
|
|
2581
2728
|
* Gets a list of all TSIG keys in the specified compartment.
|
|
2582
2729
|
*
|
|
2583
2730
|
* @param ListTsigKeysRequest
|
|
2584
2731
|
* @return ListTsigKeysResponse
|
|
2585
2732
|
* @throws OciError when an error occurs
|
|
2586
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2733
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
|
|
2587
2734
|
*/
|
|
2588
2735
|
listTsigKeys(listTsigKeysRequest) {
|
|
2589
2736
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2646,6 +2793,7 @@ class DnsClient {
|
|
|
2646
2793
|
});
|
|
2647
2794
|
}
|
|
2648
2795
|
/**
|
|
2796
|
+
* NOTE: This function is deprecated in favor of listTsigKeysRecordIterator function.
|
|
2649
2797
|
* Creates a new async iterator which will iterate over the models.TsigKeySummary objects
|
|
2650
2798
|
* contained in responses from the listTsigKeys operation. This iterator will fetch more data from the
|
|
2651
2799
|
* server as needed.
|
|
@@ -2656,6 +2804,7 @@ class DnsClient {
|
|
|
2656
2804
|
return oci_common_1.paginateRecords(request, req => this.listTsigKeys(req));
|
|
2657
2805
|
}
|
|
2658
2806
|
/**
|
|
2807
|
+
* NOTE: This function is deprecated in favor of listTsigKeysResponseIterator function.
|
|
2659
2808
|
* Creates a new async iterator which will iterate over the responses received from the listTsigKeys operation. This iterator
|
|
2660
2809
|
* will fetch more data from the server as needed.
|
|
2661
2810
|
*
|
|
@@ -2664,6 +2813,25 @@ class DnsClient {
|
|
|
2664
2813
|
listAllTsigKeysResponses(request) {
|
|
2665
2814
|
return oci_common_1.paginateResponses(request, req => this.listTsigKeys(req));
|
|
2666
2815
|
}
|
|
2816
|
+
/**
|
|
2817
|
+
* Creates a new async iterator which will iterate over the models.TsigKeySummary objects
|
|
2818
|
+
* contained in responses from the listTsigKeys operation. This iterator will fetch more data from the
|
|
2819
|
+
* server as needed.
|
|
2820
|
+
*
|
|
2821
|
+
* @param request a request which can be sent to the service operation
|
|
2822
|
+
*/
|
|
2823
|
+
listTsigKeysRecordIterator(request) {
|
|
2824
|
+
return oci_common_1.paginateRecords(request, req => this.listTsigKeys(req));
|
|
2825
|
+
}
|
|
2826
|
+
/**
|
|
2827
|
+
* Creates a new async iterator which will iterate over the responses received from the listTsigKeys operation. This iterator
|
|
2828
|
+
* will fetch more data from the server as needed.
|
|
2829
|
+
*
|
|
2830
|
+
* @param request a request which can be sent to the service operation
|
|
2831
|
+
*/
|
|
2832
|
+
listTsigKeysResponseIterator(request) {
|
|
2833
|
+
return oci_common_1.paginateResponses(request, req => this.listTsigKeys(req));
|
|
2834
|
+
}
|
|
2667
2835
|
/**
|
|
2668
2836
|
* Gets a list of all views within a compartment. The collection can
|
|
2669
2837
|
* be filtered by display name, id, or lifecycle state. It can be sorted
|
|
@@ -2675,7 +2843,7 @@ class DnsClient {
|
|
|
2675
2843
|
* @param ListViewsRequest
|
|
2676
2844
|
* @return ListViewsResponse
|
|
2677
2845
|
* @throws OciError when an error occurs
|
|
2678
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2846
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ListViews.ts.html |here} to see how to use ListViews API.
|
|
2679
2847
|
*/
|
|
2680
2848
|
listViews(listViewsRequest) {
|
|
2681
2849
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2738,6 +2906,7 @@ class DnsClient {
|
|
|
2738
2906
|
});
|
|
2739
2907
|
}
|
|
2740
2908
|
/**
|
|
2909
|
+
* NOTE: This function is deprecated in favor of listViewsRecordIterator function.
|
|
2741
2910
|
* Creates a new async iterator which will iterate over the models.ViewSummary objects
|
|
2742
2911
|
* contained in responses from the listViews operation. This iterator will fetch more data from the
|
|
2743
2912
|
* server as needed.
|
|
@@ -2748,6 +2917,7 @@ class DnsClient {
|
|
|
2748
2917
|
return oci_common_1.paginateRecords(request, req => this.listViews(req));
|
|
2749
2918
|
}
|
|
2750
2919
|
/**
|
|
2920
|
+
* NOTE: This function is deprecated in favor of listViewsResponseIterator function.
|
|
2751
2921
|
* Creates a new async iterator which will iterate over the responses received from the listViews operation. This iterator
|
|
2752
2922
|
* will fetch more data from the server as needed.
|
|
2753
2923
|
*
|
|
@@ -2756,6 +2926,25 @@ class DnsClient {
|
|
|
2756
2926
|
listAllViewsResponses(request) {
|
|
2757
2927
|
return oci_common_1.paginateResponses(request, req => this.listViews(req));
|
|
2758
2928
|
}
|
|
2929
|
+
/**
|
|
2930
|
+
* Creates a new async iterator which will iterate over the models.ViewSummary objects
|
|
2931
|
+
* contained in responses from the listViews operation. This iterator will fetch more data from the
|
|
2932
|
+
* server as needed.
|
|
2933
|
+
*
|
|
2934
|
+
* @param request a request which can be sent to the service operation
|
|
2935
|
+
*/
|
|
2936
|
+
listViewsRecordIterator(request) {
|
|
2937
|
+
return oci_common_1.paginateRecords(request, req => this.listViews(req));
|
|
2938
|
+
}
|
|
2939
|
+
/**
|
|
2940
|
+
* Creates a new async iterator which will iterate over the responses received from the listViews operation. This iterator
|
|
2941
|
+
* will fetch more data from the server as needed.
|
|
2942
|
+
*
|
|
2943
|
+
* @param request a request which can be sent to the service operation
|
|
2944
|
+
*/
|
|
2945
|
+
listViewsResponseIterator(request) {
|
|
2946
|
+
return oci_common_1.paginateResponses(request, req => this.listViews(req));
|
|
2947
|
+
}
|
|
2759
2948
|
/**
|
|
2760
2949
|
* Gets a list of IP addresses of OCI nameservers for inbound and outbound transfer of zones in the specified
|
|
2761
2950
|
* compartment (which must be the root compartment of a tenancy) that transfer zone data with external master or
|
|
@@ -2764,7 +2953,7 @@ class DnsClient {
|
|
|
2764
2953
|
* @param ListZoneTransferServersRequest
|
|
2765
2954
|
* @return ListZoneTransferServersResponse
|
|
2766
2955
|
* @throws OciError when an error occurs
|
|
2767
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2956
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
|
|
2768
2957
|
*/
|
|
2769
2958
|
listZoneTransferServers(listZoneTransferServersRequest) {
|
|
2770
2959
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2821,6 +3010,7 @@ class DnsClient {
|
|
|
2821
3010
|
});
|
|
2822
3011
|
}
|
|
2823
3012
|
/**
|
|
3013
|
+
* NOTE: This function is deprecated in favor of listZoneTransferServersRecordIterator function.
|
|
2824
3014
|
* Creates a new async iterator which will iterate over the models.ZoneTransferServer objects
|
|
2825
3015
|
* contained in responses from the listZoneTransferServers operation. This iterator will fetch more data from the
|
|
2826
3016
|
* server as needed.
|
|
@@ -2831,6 +3021,7 @@ class DnsClient {
|
|
|
2831
3021
|
return oci_common_1.paginateRecords(request, req => this.listZoneTransferServers(req));
|
|
2832
3022
|
}
|
|
2833
3023
|
/**
|
|
3024
|
+
* NOTE: This function is deprecated in favor of listZoneTransferServersResponseIterator function.
|
|
2834
3025
|
* Creates a new async iterator which will iterate over the responses received from the listZoneTransferServers operation. This iterator
|
|
2835
3026
|
* will fetch more data from the server as needed.
|
|
2836
3027
|
*
|
|
@@ -2839,6 +3030,25 @@ class DnsClient {
|
|
|
2839
3030
|
listAllZoneTransferServersResponses(request) {
|
|
2840
3031
|
return oci_common_1.paginateResponses(request, req => this.listZoneTransferServers(req));
|
|
2841
3032
|
}
|
|
3033
|
+
/**
|
|
3034
|
+
* Creates a new async iterator which will iterate over the models.ZoneTransferServer objects
|
|
3035
|
+
* contained in responses from the listZoneTransferServers operation. This iterator will fetch more data from the
|
|
3036
|
+
* server as needed.
|
|
3037
|
+
*
|
|
3038
|
+
* @param request a request which can be sent to the service operation
|
|
3039
|
+
*/
|
|
3040
|
+
listZoneTransferServersRecordIterator(request) {
|
|
3041
|
+
return oci_common_1.paginateRecords(request, req => this.listZoneTransferServers(req));
|
|
3042
|
+
}
|
|
3043
|
+
/**
|
|
3044
|
+
* Creates a new async iterator which will iterate over the responses received from the listZoneTransferServers operation. This iterator
|
|
3045
|
+
* will fetch more data from the server as needed.
|
|
3046
|
+
*
|
|
3047
|
+
* @param request a request which can be sent to the service operation
|
|
3048
|
+
*/
|
|
3049
|
+
listZoneTransferServersResponseIterator(request) {
|
|
3050
|
+
return oci_common_1.paginateResponses(request, req => this.listZoneTransferServers(req));
|
|
3051
|
+
}
|
|
2842
3052
|
/**
|
|
2843
3053
|
* Gets a list of all zones in the specified compartment. The collection can be filtered by name, time created,
|
|
2844
3054
|
* scope, associated view, and zone type. Filtering by view is only supported for private zones.
|
|
@@ -2846,7 +3056,7 @@ class DnsClient {
|
|
|
2846
3056
|
* @param ListZonesRequest
|
|
2847
3057
|
* @return ListZonesResponse
|
|
2848
3058
|
* @throws OciError when an error occurs
|
|
2849
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3059
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/ListZones.ts.html |here} to see how to use ListZones API.
|
|
2850
3060
|
*/
|
|
2851
3061
|
listZones(listZonesRequest) {
|
|
2852
3062
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2919,6 +3129,7 @@ class DnsClient {
|
|
|
2919
3129
|
});
|
|
2920
3130
|
}
|
|
2921
3131
|
/**
|
|
3132
|
+
* NOTE: This function is deprecated in favor of listZonesRecordIterator function.
|
|
2922
3133
|
* Creates a new async iterator which will iterate over the models.ZoneSummary objects
|
|
2923
3134
|
* contained in responses from the listZones operation. This iterator will fetch more data from the
|
|
2924
3135
|
* server as needed.
|
|
@@ -2929,6 +3140,7 @@ class DnsClient {
|
|
|
2929
3140
|
return oci_common_1.paginateRecords(request, req => this.listZones(req));
|
|
2930
3141
|
}
|
|
2931
3142
|
/**
|
|
3143
|
+
* NOTE: This function is deprecated in favor of listZonesResponseIterator function.
|
|
2932
3144
|
* Creates a new async iterator which will iterate over the responses received from the listZones operation. This iterator
|
|
2933
3145
|
* will fetch more data from the server as needed.
|
|
2934
3146
|
*
|
|
@@ -2937,6 +3149,25 @@ class DnsClient {
|
|
|
2937
3149
|
listAllZonesResponses(request) {
|
|
2938
3150
|
return oci_common_1.paginateResponses(request, req => this.listZones(req));
|
|
2939
3151
|
}
|
|
3152
|
+
/**
|
|
3153
|
+
* Creates a new async iterator which will iterate over the models.ZoneSummary objects
|
|
3154
|
+
* contained in responses from the listZones operation. This iterator will fetch more data from the
|
|
3155
|
+
* server as needed.
|
|
3156
|
+
*
|
|
3157
|
+
* @param request a request which can be sent to the service operation
|
|
3158
|
+
*/
|
|
3159
|
+
listZonesRecordIterator(request) {
|
|
3160
|
+
return oci_common_1.paginateRecords(request, req => this.listZones(req));
|
|
3161
|
+
}
|
|
3162
|
+
/**
|
|
3163
|
+
* Creates a new async iterator which will iterate over the responses received from the listZones operation. This iterator
|
|
3164
|
+
* will fetch more data from the server as needed.
|
|
3165
|
+
*
|
|
3166
|
+
* @param request a request which can be sent to the service operation
|
|
3167
|
+
*/
|
|
3168
|
+
listZonesResponseIterator(request) {
|
|
3169
|
+
return oci_common_1.paginateResponses(request, req => this.listZones(req));
|
|
3170
|
+
}
|
|
2940
3171
|
/**
|
|
2941
3172
|
* Updates records in the specified zone at a domain. You can update one record or all records for the specified
|
|
2942
3173
|
* zone depending on the changes provided in the request body. You can also add or remove records using this
|
|
@@ -2947,7 +3178,7 @@ class DnsClient {
|
|
|
2947
3178
|
* @param PatchDomainRecordsRequest
|
|
2948
3179
|
* @return PatchDomainRecordsResponse
|
|
2949
3180
|
* @throws OciError when an error occurs
|
|
2950
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3181
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
|
|
2951
3182
|
*/
|
|
2952
3183
|
patchDomainRecords(patchDomainRecordsRequest) {
|
|
2953
3184
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3027,7 +3258,7 @@ class DnsClient {
|
|
|
3027
3258
|
* @param PatchRRSetRequest
|
|
3028
3259
|
* @return PatchRRSetResponse
|
|
3029
3260
|
* @throws OciError when an error occurs
|
|
3030
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3261
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
|
|
3031
3262
|
*/
|
|
3032
3263
|
patchRRSet(patchRRSetRequest) {
|
|
3033
3264
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3110,7 +3341,7 @@ class DnsClient {
|
|
|
3110
3341
|
* @param PatchZoneRecordsRequest
|
|
3111
3342
|
* @return PatchZoneRecordsResponse
|
|
3112
3343
|
* @throws OciError when an error occurs
|
|
3113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3344
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
|
|
3114
3345
|
*/
|
|
3115
3346
|
patchZoneRecords(patchZoneRecordsRequest) {
|
|
3116
3347
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3192,7 +3423,7 @@ class DnsClient {
|
|
|
3192
3423
|
* @param UpdateDomainRecordsRequest
|
|
3193
3424
|
* @return UpdateDomainRecordsResponse
|
|
3194
3425
|
* @throws OciError when an error occurs
|
|
3195
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3426
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
|
|
3196
3427
|
*/
|
|
3197
3428
|
updateDomainRecords(updateDomainRecordsRequest) {
|
|
3198
3429
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3272,7 +3503,7 @@ class DnsClient {
|
|
|
3272
3503
|
* @param UpdateRRSetRequest
|
|
3273
3504
|
* @return UpdateRRSetResponse
|
|
3274
3505
|
* @throws OciError when an error occurs
|
|
3275
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3506
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
|
|
3276
3507
|
*/
|
|
3277
3508
|
updateRRSet(updateRRSetRequest) {
|
|
3278
3509
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3351,7 +3582,7 @@ class DnsClient {
|
|
|
3351
3582
|
* @param UpdateResolverRequest
|
|
3352
3583
|
* @return UpdateResolverResponse
|
|
3353
3584
|
* @throws OciError when an error occurs
|
|
3354
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3585
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
|
|
3355
3586
|
*/
|
|
3356
3587
|
updateResolver(updateResolverRequest) {
|
|
3357
3588
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3421,7 +3652,7 @@ class DnsClient {
|
|
|
3421
3652
|
* @param UpdateResolverEndpointRequest
|
|
3422
3653
|
* @return UpdateResolverEndpointResponse
|
|
3423
3654
|
* @throws OciError when an error occurs
|
|
3424
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3655
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
|
|
3425
3656
|
*/
|
|
3426
3657
|
updateResolverEndpoint(updateResolverEndpointRequest) {
|
|
3427
3658
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3492,7 +3723,7 @@ class DnsClient {
|
|
|
3492
3723
|
* @param UpdateSteeringPolicyRequest
|
|
3493
3724
|
* @return UpdateSteeringPolicyResponse
|
|
3494
3725
|
* @throws OciError when an error occurs
|
|
3495
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3726
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
|
|
3496
3727
|
*/
|
|
3497
3728
|
updateSteeringPolicy(updateSteeringPolicyRequest) {
|
|
3498
3729
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3557,7 +3788,7 @@ class DnsClient {
|
|
|
3557
3788
|
* @param UpdateSteeringPolicyAttachmentRequest
|
|
3558
3789
|
* @return UpdateSteeringPolicyAttachmentResponse
|
|
3559
3790
|
* @throws OciError when an error occurs
|
|
3560
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3791
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
|
|
3561
3792
|
*/
|
|
3562
3793
|
updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest) {
|
|
3563
3794
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3622,7 +3853,7 @@ class DnsClient {
|
|
|
3622
3853
|
* @param UpdateTsigKeyRequest
|
|
3623
3854
|
* @return UpdateTsigKeyResponse
|
|
3624
3855
|
* @throws OciError when an error occurs
|
|
3625
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3856
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
|
|
3626
3857
|
*/
|
|
3627
3858
|
updateTsigKey(updateTsigKeyRequest) {
|
|
3628
3859
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3692,7 +3923,7 @@ class DnsClient {
|
|
|
3692
3923
|
* @param UpdateViewRequest
|
|
3693
3924
|
* @return UpdateViewResponse
|
|
3694
3925
|
* @throws OciError when an error occurs
|
|
3695
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3926
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
|
|
3696
3927
|
*/
|
|
3697
3928
|
updateView(updateViewRequest) {
|
|
3698
3929
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3766,7 +3997,7 @@ class DnsClient {
|
|
|
3766
3997
|
* @param UpdateZoneRequest
|
|
3767
3998
|
* @return UpdateZoneResponse
|
|
3768
3999
|
* @throws OciError when an error occurs
|
|
3769
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4000
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
|
|
3770
4001
|
*/
|
|
3771
4002
|
updateZone(updateZoneRequest) {
|
|
3772
4003
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3843,7 +4074,7 @@ class DnsClient {
|
|
|
3843
4074
|
* @param UpdateZoneRecordsRequest
|
|
3844
4075
|
* @return UpdateZoneRecordsResponse
|
|
3845
4076
|
* @throws OciError when an error occurs
|
|
3846
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4077
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.1/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
|
|
3847
4078
|
*/
|
|
3848
4079
|
updateZoneRecords(updateZoneRecordsRequest) {
|
|
3849
4080
|
return __awaiter(this, void 0, void 0, function* () {
|