oci-dns 2.56.0 → 2.58.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 +61 -51
- package/lib/client.js +74 -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
|
@@ -59,11 +59,14 @@ var DnsApiKeys;
|
|
|
59
59
|
*/
|
|
60
60
|
class DnsClient {
|
|
61
61
|
constructor(params, clientConfiguration) {
|
|
62
|
+
this["_realmSpecificEndpointTemplateEnabled"] = false;
|
|
62
63
|
this["_endpoint"] = "";
|
|
63
64
|
this["_defaultHeaders"] = {};
|
|
64
65
|
this._circuitBreaker = null;
|
|
65
66
|
this._httpOptions = undefined;
|
|
66
67
|
this.targetService = "Dns";
|
|
68
|
+
this._regionId = "";
|
|
69
|
+
this._lastSetRegionOrRegionId = "";
|
|
67
70
|
const requestSigner = params.authenticationDetailsProvider
|
|
68
71
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
69
72
|
: null;
|
|
@@ -113,13 +116,31 @@ class DnsClient {
|
|
|
113
116
|
get logger() {
|
|
114
117
|
return common.LOG.logger;
|
|
115
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
121
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
122
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
123
|
+
*/
|
|
124
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
|
|
125
|
+
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
|
|
126
|
+
if (this.logger)
|
|
127
|
+
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
128
|
+
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
|
|
129
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(DnsClient.serviceEndpointTemplate, this._region, DnsClient.endpointServiceName);
|
|
130
|
+
}
|
|
131
|
+
else if (this._lastSetRegionOrRegionId === common.Region.REGION_ID_STRING) {
|
|
132
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(DnsClient.serviceEndpointTemplate, this._regionId, DnsClient.endpointServiceName);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
116
135
|
/**
|
|
117
136
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
118
137
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
119
138
|
* @param region The region of the service.
|
|
120
139
|
*/
|
|
121
140
|
set region(region) {
|
|
141
|
+
this._region = region;
|
|
122
142
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(DnsClient.serviceEndpointTemplate, region, DnsClient.endpointServiceName);
|
|
143
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_STRING;
|
|
123
144
|
}
|
|
124
145
|
/**
|
|
125
146
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -130,7 +151,9 @@ class DnsClient {
|
|
|
130
151
|
* @param regionId The public region ID.
|
|
131
152
|
*/
|
|
132
153
|
set regionId(regionId) {
|
|
154
|
+
this._regionId = regionId;
|
|
133
155
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(DnsClient.serviceEndpointTemplate, regionId, DnsClient.endpointServiceName);
|
|
156
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
|
|
134
157
|
}
|
|
135
158
|
/**
|
|
136
159
|
* Creates a new DnsWaiter for resources for this service.
|
|
@@ -163,7 +186,7 @@ class DnsClient {
|
|
|
163
186
|
* @param ChangeResolverCompartmentRequest
|
|
164
187
|
* @return ChangeResolverCompartmentResponse
|
|
165
188
|
* @throws OciError when an error occurs
|
|
166
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
189
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
|
|
167
190
|
*/
|
|
168
191
|
changeResolverCompartment(changeResolverCompartmentRequest) {
|
|
169
192
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -228,7 +251,7 @@ class DnsClient {
|
|
|
228
251
|
* @param ChangeSteeringPolicyCompartmentRequest
|
|
229
252
|
* @return ChangeSteeringPolicyCompartmentResponse
|
|
230
253
|
* @throws OciError when an error occurs
|
|
231
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
254
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
|
|
232
255
|
*/
|
|
233
256
|
changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest) {
|
|
234
257
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -288,7 +311,7 @@ class DnsClient {
|
|
|
288
311
|
* @param ChangeTsigKeyCompartmentRequest
|
|
289
312
|
* @return ChangeTsigKeyCompartmentResponse
|
|
290
313
|
* @throws OciError when an error occurs
|
|
291
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
314
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
|
|
292
315
|
*/
|
|
293
316
|
changeTsigKeyCompartment(changeTsigKeyCompartmentRequest) {
|
|
294
317
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -350,7 +373,7 @@ class DnsClient {
|
|
|
350
373
|
* @param ChangeViewCompartmentRequest
|
|
351
374
|
* @return ChangeViewCompartmentResponse
|
|
352
375
|
* @throws OciError when an error occurs
|
|
353
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
376
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
|
|
354
377
|
*/
|
|
355
378
|
changeViewCompartment(changeViewCompartmentRequest) {
|
|
356
379
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -422,7 +445,7 @@ class DnsClient {
|
|
|
422
445
|
* @param ChangeZoneCompartmentRequest
|
|
423
446
|
* @return ChangeZoneCompartmentResponse
|
|
424
447
|
* @throws OciError when an error occurs
|
|
425
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
448
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
|
|
426
449
|
*/
|
|
427
450
|
changeZoneCompartment(changeZoneCompartmentRequest) {
|
|
428
451
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -487,7 +510,7 @@ class DnsClient {
|
|
|
487
510
|
* @param CreateResolverEndpointRequest
|
|
488
511
|
* @return CreateResolverEndpointResponse
|
|
489
512
|
* @throws OciError when an error occurs
|
|
490
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
513
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
|
|
491
514
|
*/
|
|
492
515
|
createResolverEndpoint(createResolverEndpointRequest) {
|
|
493
516
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -566,7 +589,7 @@ class DnsClient {
|
|
|
566
589
|
* @param CreateSteeringPolicyRequest
|
|
567
590
|
* @return CreateSteeringPolicyResponse
|
|
568
591
|
* @throws OciError when an error occurs
|
|
569
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
592
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
|
|
570
593
|
*/
|
|
571
594
|
createSteeringPolicy(createSteeringPolicyRequest) {
|
|
572
595
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -642,7 +665,7 @@ class DnsClient {
|
|
|
642
665
|
* @param CreateSteeringPolicyAttachmentRequest
|
|
643
666
|
* @return CreateSteeringPolicyAttachmentResponse
|
|
644
667
|
* @throws OciError when an error occurs
|
|
645
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
668
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
|
|
646
669
|
*/
|
|
647
670
|
createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest) {
|
|
648
671
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -714,7 +737,7 @@ class DnsClient {
|
|
|
714
737
|
* @param CreateTsigKeyRequest
|
|
715
738
|
* @return CreateTsigKeyResponse
|
|
716
739
|
* @throws OciError when an error occurs
|
|
717
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
740
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
|
|
718
741
|
*/
|
|
719
742
|
createTsigKey(createTsigKeyRequest) {
|
|
720
743
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -789,7 +812,7 @@ class DnsClient {
|
|
|
789
812
|
* @param CreateViewRequest
|
|
790
813
|
* @return CreateViewResponse
|
|
791
814
|
* @throws OciError when an error occurs
|
|
792
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
815
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/CreateView.ts.html |here} to see how to use CreateView API.
|
|
793
816
|
*/
|
|
794
817
|
createView(createViewRequest) {
|
|
795
818
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -868,7 +891,7 @@ class DnsClient {
|
|
|
868
891
|
* @param CreateZoneRequest
|
|
869
892
|
* @return CreateZoneResponse
|
|
870
893
|
* @throws OciError when an error occurs
|
|
871
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
894
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
|
|
872
895
|
*/
|
|
873
896
|
createZone(createZoneRequest) {
|
|
874
897
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -948,7 +971,7 @@ class DnsClient {
|
|
|
948
971
|
* @param DeleteDomainRecordsRequest
|
|
949
972
|
* @return DeleteDomainRecordsResponse
|
|
950
973
|
* @throws OciError when an error occurs
|
|
951
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
974
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
|
|
952
975
|
*/
|
|
953
976
|
deleteDomainRecords(deleteDomainRecordsRequest) {
|
|
954
977
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1013,7 +1036,7 @@ class DnsClient {
|
|
|
1013
1036
|
* @param DeleteRRSetRequest
|
|
1014
1037
|
* @return DeleteRRSetResponse
|
|
1015
1038
|
* @throws OciError when an error occurs
|
|
1016
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1039
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
|
|
1017
1040
|
*/
|
|
1018
1041
|
deleteRRSet(deleteRRSetRequest) {
|
|
1019
1042
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1080,7 +1103,7 @@ class DnsClient {
|
|
|
1080
1103
|
* @param DeleteResolverEndpointRequest
|
|
1081
1104
|
* @return DeleteResolverEndpointResponse
|
|
1082
1105
|
* @throws OciError when an error occurs
|
|
1083
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1106
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
|
|
1084
1107
|
*/
|
|
1085
1108
|
deleteResolverEndpoint(deleteResolverEndpointRequest) {
|
|
1086
1109
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1149,7 +1172,7 @@ class DnsClient {
|
|
|
1149
1172
|
* @param DeleteSteeringPolicyRequest
|
|
1150
1173
|
* @return DeleteSteeringPolicyResponse
|
|
1151
1174
|
* @throws OciError when an error occurs
|
|
1152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1175
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
|
|
1153
1176
|
*/
|
|
1154
1177
|
deleteSteeringPolicy(deleteSteeringPolicyRequest) {
|
|
1155
1178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1209,7 +1232,7 @@ class DnsClient {
|
|
|
1209
1232
|
* @param DeleteSteeringPolicyAttachmentRequest
|
|
1210
1233
|
* @return DeleteSteeringPolicyAttachmentResponse
|
|
1211
1234
|
* @throws OciError when an error occurs
|
|
1212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1235
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
|
|
1213
1236
|
*/
|
|
1214
1237
|
deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest) {
|
|
1215
1238
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1268,7 +1291,7 @@ class DnsClient {
|
|
|
1268
1291
|
* @param DeleteTsigKeyRequest
|
|
1269
1292
|
* @return DeleteTsigKeyResponse
|
|
1270
1293
|
* @throws OciError when an error occurs
|
|
1271
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1294
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
|
|
1272
1295
|
*/
|
|
1273
1296
|
deleteTsigKey(deleteTsigKeyRequest) {
|
|
1274
1297
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1337,7 +1360,7 @@ class DnsClient {
|
|
|
1337
1360
|
* @param DeleteViewRequest
|
|
1338
1361
|
* @return DeleteViewResponse
|
|
1339
1362
|
* @throws OciError when an error occurs
|
|
1340
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1363
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
|
|
1341
1364
|
*/
|
|
1342
1365
|
deleteView(deleteViewRequest) {
|
|
1343
1366
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1405,7 +1428,7 @@ class DnsClient {
|
|
|
1405
1428
|
* @param DeleteZoneRequest
|
|
1406
1429
|
* @return DeleteZoneResponse
|
|
1407
1430
|
* @throws OciError when an error occurs
|
|
1408
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1431
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
|
|
1409
1432
|
*/
|
|
1410
1433
|
deleteZone(deleteZoneRequest) {
|
|
1411
1434
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1475,7 +1498,7 @@ class DnsClient {
|
|
|
1475
1498
|
* @param GetDomainRecordsRequest
|
|
1476
1499
|
* @return GetDomainRecordsResponse
|
|
1477
1500
|
* @throws OciError when an error occurs
|
|
1478
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1501
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
|
|
1479
1502
|
*/
|
|
1480
1503
|
getDomainRecords(getDomainRecordsRequest) {
|
|
1481
1504
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1605,7 +1628,7 @@ class DnsClient {
|
|
|
1605
1628
|
* @param GetRRSetRequest
|
|
1606
1629
|
* @return GetRRSetResponse
|
|
1607
1630
|
* @throws OciError when an error occurs
|
|
1608
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1631
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
|
|
1609
1632
|
*/
|
|
1610
1633
|
getRRSet(getRRSetRequest) {
|
|
1611
1634
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1733,7 +1756,7 @@ class DnsClient {
|
|
|
1733
1756
|
* @param GetResolverRequest
|
|
1734
1757
|
* @return GetResolverResponse
|
|
1735
1758
|
* @throws OciError when an error occurs
|
|
1736
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1759
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
|
|
1737
1760
|
*/
|
|
1738
1761
|
getResolver(getResolverRequest) {
|
|
1739
1762
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1804,7 +1827,7 @@ class DnsClient {
|
|
|
1804
1827
|
* @param GetResolverEndpointRequest
|
|
1805
1828
|
* @return GetResolverEndpointResponse
|
|
1806
1829
|
* @throws OciError when an error occurs
|
|
1807
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1830
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
|
|
1808
1831
|
*/
|
|
1809
1832
|
getResolverEndpoint(getResolverEndpointRequest) {
|
|
1810
1833
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1873,7 +1896,7 @@ class DnsClient {
|
|
|
1873
1896
|
* @param GetSteeringPolicyRequest
|
|
1874
1897
|
* @return GetSteeringPolicyResponse
|
|
1875
1898
|
* @throws OciError when an error occurs
|
|
1876
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1899
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
|
|
1877
1900
|
*/
|
|
1878
1901
|
getSteeringPolicy(getSteeringPolicyRequest) {
|
|
1879
1902
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1941,7 +1964,7 @@ class DnsClient {
|
|
|
1941
1964
|
* @param GetSteeringPolicyAttachmentRequest
|
|
1942
1965
|
* @return GetSteeringPolicyAttachmentResponse
|
|
1943
1966
|
* @throws OciError when an error occurs
|
|
1944
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1967
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
|
|
1945
1968
|
*/
|
|
1946
1969
|
getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest) {
|
|
1947
1970
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2009,7 +2032,7 @@ class DnsClient {
|
|
|
2009
2032
|
* @param GetTsigKeyRequest
|
|
2010
2033
|
* @return GetTsigKeyResponse
|
|
2011
2034
|
* @throws OciError when an error occurs
|
|
2012
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2035
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
|
|
2013
2036
|
*/
|
|
2014
2037
|
getTsigKey(getTsigKeyRequest) {
|
|
2015
2038
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2081,7 +2104,7 @@ class DnsClient {
|
|
|
2081
2104
|
* @param GetViewRequest
|
|
2082
2105
|
* @return GetViewResponse
|
|
2083
2106
|
* @throws OciError when an error occurs
|
|
2084
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2107
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetView.ts.html |here} to see how to use GetView API.
|
|
2085
2108
|
*/
|
|
2086
2109
|
getView(getViewRequest) {
|
|
2087
2110
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2152,7 +2175,7 @@ class DnsClient {
|
|
|
2152
2175
|
* @param GetZoneRequest
|
|
2153
2176
|
* @return GetZoneResponse
|
|
2154
2177
|
* @throws OciError when an error occurs
|
|
2155
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2178
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetZone.ts.html |here} to see how to use GetZone API.
|
|
2156
2179
|
*/
|
|
2157
2180
|
getZone(getZoneRequest) {
|
|
2158
2181
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2222,7 +2245,7 @@ class DnsClient {
|
|
|
2222
2245
|
* @param GetZoneContentRequest
|
|
2223
2246
|
* @return GetZoneContentResponse
|
|
2224
2247
|
* @throws OciError when an error occurs
|
|
2225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
|
|
2226
2249
|
*/
|
|
2227
2250
|
getZoneContent(getZoneContentRequest) {
|
|
2228
2251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2295,7 +2318,7 @@ class DnsClient {
|
|
|
2295
2318
|
* @param GetZoneRecordsRequest
|
|
2296
2319
|
* @return GetZoneRecordsResponse
|
|
2297
2320
|
* @throws OciError when an error occurs
|
|
2298
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
|
|
2299
2322
|
*/
|
|
2300
2323
|
getZoneRecords(getZoneRecordsRequest) {
|
|
2301
2324
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2426,7 +2449,7 @@ class DnsClient {
|
|
|
2426
2449
|
* @param ListResolverEndpointsRequest
|
|
2427
2450
|
* @return ListResolverEndpointsResponse
|
|
2428
2451
|
* @throws OciError when an error occurs
|
|
2429
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2452
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
|
|
2430
2453
|
*/
|
|
2431
2454
|
listResolverEndpoints(listResolverEndpointsRequest) {
|
|
2432
2455
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2543,7 +2566,7 @@ class DnsClient {
|
|
|
2543
2566
|
* @param ListResolversRequest
|
|
2544
2567
|
* @return ListResolversResponse
|
|
2545
2568
|
* @throws OciError when an error occurs
|
|
2546
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2569
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
|
|
2547
2570
|
*/
|
|
2548
2571
|
listResolvers(listResolversRequest) {
|
|
2549
2572
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2655,7 +2678,7 @@ class DnsClient {
|
|
|
2655
2678
|
* @param ListSteeringPoliciesRequest
|
|
2656
2679
|
* @return ListSteeringPoliciesResponse
|
|
2657
2680
|
* @throws OciError when an error occurs
|
|
2658
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2681
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
|
|
2659
2682
|
*/
|
|
2660
2683
|
listSteeringPolicies(listSteeringPoliciesRequest) {
|
|
2661
2684
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2777,7 +2800,7 @@ class DnsClient {
|
|
|
2777
2800
|
* @param ListSteeringPolicyAttachmentsRequest
|
|
2778
2801
|
* @return ListSteeringPolicyAttachmentsResponse
|
|
2779
2802
|
* @throws OciError when an error occurs
|
|
2780
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2803
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
|
|
2781
2804
|
*/
|
|
2782
2805
|
listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest) {
|
|
2783
2806
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2900,7 +2923,7 @@ class DnsClient {
|
|
|
2900
2923
|
* @param ListTsigKeysRequest
|
|
2901
2924
|
* @return ListTsigKeysResponse
|
|
2902
2925
|
* @throws OciError when an error occurs
|
|
2903
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2926
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
|
|
2904
2927
|
*/
|
|
2905
2928
|
listTsigKeys(listTsigKeysRequest) {
|
|
2906
2929
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3017,7 +3040,7 @@ class DnsClient {
|
|
|
3017
3040
|
* @param ListViewsRequest
|
|
3018
3041
|
* @return ListViewsResponse
|
|
3019
3042
|
* @throws OciError when an error occurs
|
|
3020
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3043
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ListViews.ts.html |here} to see how to use ListViews API.
|
|
3021
3044
|
*/
|
|
3022
3045
|
listViews(listViewsRequest) {
|
|
3023
3046
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3131,7 +3154,7 @@ class DnsClient {
|
|
|
3131
3154
|
* @param ListZoneTransferServersRequest
|
|
3132
3155
|
* @return ListZoneTransferServersResponse
|
|
3133
3156
|
* @throws OciError when an error occurs
|
|
3134
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3157
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
|
|
3135
3158
|
*/
|
|
3136
3159
|
listZoneTransferServers(listZoneTransferServersRequest) {
|
|
3137
3160
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3240,7 +3263,7 @@ class DnsClient {
|
|
|
3240
3263
|
* @param ListZonesRequest
|
|
3241
3264
|
* @return ListZonesResponse
|
|
3242
3265
|
* @throws OciError when an error occurs
|
|
3243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3266
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/ListZones.ts.html |here} to see how to use ListZones API.
|
|
3244
3267
|
*/
|
|
3245
3268
|
listZones(listZonesRequest) {
|
|
3246
3269
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3367,7 +3390,7 @@ class DnsClient {
|
|
|
3367
3390
|
* @param PatchDomainRecordsRequest
|
|
3368
3391
|
* @return PatchDomainRecordsResponse
|
|
3369
3392
|
* @throws OciError when an error occurs
|
|
3370
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3393
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
|
|
3371
3394
|
*/
|
|
3372
3395
|
patchDomainRecords(patchDomainRecordsRequest) {
|
|
3373
3396
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3452,7 +3475,7 @@ class DnsClient {
|
|
|
3452
3475
|
* @param PatchRRSetRequest
|
|
3453
3476
|
* @return PatchRRSetResponse
|
|
3454
3477
|
* @throws OciError when an error occurs
|
|
3455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3478
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
|
|
3456
3479
|
*/
|
|
3457
3480
|
patchRRSet(patchRRSetRequest) {
|
|
3458
3481
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3540,7 +3563,7 @@ class DnsClient {
|
|
|
3540
3563
|
* @param PatchZoneRecordsRequest
|
|
3541
3564
|
* @return PatchZoneRecordsResponse
|
|
3542
3565
|
* @throws OciError when an error occurs
|
|
3543
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3566
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
|
|
3544
3567
|
*/
|
|
3545
3568
|
patchZoneRecords(patchZoneRecordsRequest) {
|
|
3546
3569
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3626,7 +3649,7 @@ class DnsClient {
|
|
|
3626
3649
|
* @param UpdateDomainRecordsRequest
|
|
3627
3650
|
* @return UpdateDomainRecordsResponse
|
|
3628
3651
|
* @throws OciError when an error occurs
|
|
3629
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3652
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
|
|
3630
3653
|
*/
|
|
3631
3654
|
updateDomainRecords(updateDomainRecordsRequest) {
|
|
3632
3655
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3711,7 +3734,7 @@ class DnsClient {
|
|
|
3711
3734
|
* @param UpdateRRSetRequest
|
|
3712
3735
|
* @return UpdateRRSetResponse
|
|
3713
3736
|
* @throws OciError when an error occurs
|
|
3714
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3737
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
|
|
3715
3738
|
*/
|
|
3716
3739
|
updateRRSet(updateRRSetRequest) {
|
|
3717
3740
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3794,7 +3817,7 @@ class DnsClient {
|
|
|
3794
3817
|
* @param UpdateResolverRequest
|
|
3795
3818
|
* @return UpdateResolverResponse
|
|
3796
3819
|
* @throws OciError when an error occurs
|
|
3797
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3820
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
|
|
3798
3821
|
*/
|
|
3799
3822
|
updateResolver(updateResolverRequest) {
|
|
3800
3823
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3868,7 +3891,7 @@ class DnsClient {
|
|
|
3868
3891
|
* @param UpdateResolverEndpointRequest
|
|
3869
3892
|
* @return UpdateResolverEndpointResponse
|
|
3870
3893
|
* @throws OciError when an error occurs
|
|
3871
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3894
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
|
|
3872
3895
|
*/
|
|
3873
3896
|
updateResolverEndpoint(updateResolverEndpointRequest) {
|
|
3874
3897
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3943,7 +3966,7 @@ class DnsClient {
|
|
|
3943
3966
|
* @param UpdateSteeringPolicyRequest
|
|
3944
3967
|
* @return UpdateSteeringPolicyResponse
|
|
3945
3968
|
* @throws OciError when an error occurs
|
|
3946
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3969
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
|
|
3947
3970
|
*/
|
|
3948
3971
|
updateSteeringPolicy(updateSteeringPolicyRequest) {
|
|
3949
3972
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4012,7 +4035,7 @@ class DnsClient {
|
|
|
4012
4035
|
* @param UpdateSteeringPolicyAttachmentRequest
|
|
4013
4036
|
* @return UpdateSteeringPolicyAttachmentResponse
|
|
4014
4037
|
* @throws OciError when an error occurs
|
|
4015
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4038
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
|
|
4016
4039
|
*/
|
|
4017
4040
|
updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest) {
|
|
4018
4041
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4081,7 +4104,7 @@ class DnsClient {
|
|
|
4081
4104
|
* @param UpdateTsigKeyRequest
|
|
4082
4105
|
* @return UpdateTsigKeyResponse
|
|
4083
4106
|
* @throws OciError when an error occurs
|
|
4084
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4107
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
|
|
4085
4108
|
*/
|
|
4086
4109
|
updateTsigKey(updateTsigKeyRequest) {
|
|
4087
4110
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4155,7 +4178,7 @@ class DnsClient {
|
|
|
4155
4178
|
* @param UpdateViewRequest
|
|
4156
4179
|
* @return UpdateViewResponse
|
|
4157
4180
|
* @throws OciError when an error occurs
|
|
4158
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4181
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
|
|
4159
4182
|
*/
|
|
4160
4183
|
updateView(updateViewRequest) {
|
|
4161
4184
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4234,7 +4257,7 @@ class DnsClient {
|
|
|
4234
4257
|
* @param UpdateZoneRequest
|
|
4235
4258
|
* @return UpdateZoneResponse
|
|
4236
4259
|
* @throws OciError when an error occurs
|
|
4237
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4260
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
|
|
4238
4261
|
*/
|
|
4239
4262
|
updateZone(updateZoneRequest) {
|
|
4240
4263
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4316,7 +4339,7 @@ class DnsClient {
|
|
|
4316
4339
|
* @param UpdateZoneRecordsRequest
|
|
4317
4340
|
* @return UpdateZoneRecordsResponse
|
|
4318
4341
|
* @throws OciError when an error occurs
|
|
4319
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4342
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
|
|
4320
4343
|
*/
|
|
4321
4344
|
updateZoneRecords(updateZoneRecordsRequest) {
|
|
4322
4345
|
return __awaiter(this, void 0, void 0, function* () {
|