oci-dns 2.74.0 → 2.76.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +55 -53
- package/lib/client.js +59 -54
- package/lib/client.js.map +1 -1
- package/lib/dns-waiter.d.ts +173 -1
- package/lib/dns-waiter.js +239 -1
- package/lib/dns-waiter.js.map +1 -1
- package/lib/request/change-resolver-compartment-request.d.ts +1 -1
- package/lib/request/change-steering-policy-compartment-request.d.ts +1 -1
- package/lib/request/change-tsig-key-compartment-request.d.ts +1 -1
- package/lib/request/change-view-compartment-request.d.ts +1 -1
- package/lib/request/change-zone-compartment-request.d.ts +1 -1
- package/lib/request/create-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/create-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/create-steering-policy-request.d.ts +1 -1
- package/lib/request/create-tsig-key-request.d.ts +1 -1
- package/lib/request/create-view-request.d.ts +1 -1
- package/lib/request/create-zone-from-zone-file-request.d.ts +1 -1
- package/lib/request/create-zone-request.d.ts +1 -1
- package/lib/request/delete-domain-records-request.d.ts +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.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import common = require("oci-common");
|
|
|
16
16
|
import * as requests from "./request";
|
|
17
17
|
import * as model from "./model";
|
|
18
18
|
import * as responses from "./response";
|
|
19
|
+
import { WorkRequestClient } from "oci-workrequests";
|
|
19
20
|
import { DnsWaiter } from "./dns-waiter";
|
|
20
21
|
export declare enum DnsApiKeys {
|
|
21
22
|
}
|
|
@@ -73,10 +74,11 @@ export declare class DnsClient {
|
|
|
73
74
|
/**
|
|
74
75
|
* Creates a new DnsWaiter for resources for this service.
|
|
75
76
|
*
|
|
77
|
+
* @param workRequestClient The work request service client used to query for work request status
|
|
76
78
|
* @param config The waiter configuration for termination and delay strategy
|
|
77
79
|
* @return The service waiters.
|
|
78
80
|
*/
|
|
79
|
-
createWaiters(config?: common.WaiterConfiguration): DnsWaiter;
|
|
81
|
+
createWaiters(workRequestClient: WorkRequestClient, config?: common.WaiterConfiguration): DnsWaiter;
|
|
80
82
|
/**
|
|
81
83
|
* Gets the waiters available for resources for this service.
|
|
82
84
|
*
|
|
@@ -93,7 +95,7 @@ export declare class DnsClient {
|
|
|
93
95
|
* @param ChangeResolverCompartmentRequest
|
|
94
96
|
* @return ChangeResolverCompartmentResponse
|
|
95
97
|
* @throws OciError when an error occurs
|
|
96
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
98
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
|
|
97
99
|
*/
|
|
98
100
|
changeResolverCompartment(changeResolverCompartmentRequest: requests.ChangeResolverCompartmentRequest): Promise<responses.ChangeResolverCompartmentResponse>;
|
|
99
101
|
/**
|
|
@@ -103,7 +105,7 @@ export declare class DnsClient {
|
|
|
103
105
|
* @param ChangeSteeringPolicyCompartmentRequest
|
|
104
106
|
* @return ChangeSteeringPolicyCompartmentResponse
|
|
105
107
|
* @throws OciError when an error occurs
|
|
106
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
108
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
|
|
107
109
|
*/
|
|
108
110
|
changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest: requests.ChangeSteeringPolicyCompartmentRequest): Promise<responses.ChangeSteeringPolicyCompartmentResponse>;
|
|
109
111
|
/**
|
|
@@ -113,7 +115,7 @@ export declare class DnsClient {
|
|
|
113
115
|
* @param ChangeTsigKeyCompartmentRequest
|
|
114
116
|
* @return ChangeTsigKeyCompartmentResponse
|
|
115
117
|
* @throws OciError when an error occurs
|
|
116
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
118
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
|
|
117
119
|
*/
|
|
118
120
|
changeTsigKeyCompartment(changeTsigKeyCompartmentRequest: requests.ChangeTsigKeyCompartmentRequest): Promise<responses.ChangeTsigKeyCompartmentResponse>;
|
|
119
121
|
/**
|
|
@@ -125,7 +127,7 @@ export declare class DnsClient {
|
|
|
125
127
|
* @param ChangeViewCompartmentRequest
|
|
126
128
|
* @return ChangeViewCompartmentResponse
|
|
127
129
|
* @throws OciError when an error occurs
|
|
128
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
|
|
129
131
|
*/
|
|
130
132
|
changeViewCompartment(changeViewCompartmentRequest: requests.ChangeViewCompartmentRequest): Promise<responses.ChangeViewCompartmentResponse>;
|
|
131
133
|
/**
|
|
@@ -142,7 +144,7 @@ export declare class DnsClient {
|
|
|
142
144
|
* @param ChangeZoneCompartmentRequest
|
|
143
145
|
* @return ChangeZoneCompartmentResponse
|
|
144
146
|
* @throws OciError when an error occurs
|
|
145
|
-
* @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.76.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
|
|
146
148
|
*/
|
|
147
149
|
changeZoneCompartment(changeZoneCompartmentRequest: requests.ChangeZoneCompartmentRequest): Promise<responses.ChangeZoneCompartmentResponse>;
|
|
148
150
|
/**
|
|
@@ -152,7 +154,7 @@ export declare class DnsClient {
|
|
|
152
154
|
* @param CreateResolverEndpointRequest
|
|
153
155
|
* @return CreateResolverEndpointResponse
|
|
154
156
|
* @throws OciError when an error occurs
|
|
155
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
157
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
|
|
156
158
|
*/
|
|
157
159
|
createResolverEndpoint(createResolverEndpointRequest: requests.CreateResolverEndpointRequest): Promise<responses.CreateResolverEndpointResponse>;
|
|
158
160
|
/**
|
|
@@ -163,7 +165,7 @@ export declare class DnsClient {
|
|
|
163
165
|
* @param CreateSteeringPolicyRequest
|
|
164
166
|
* @return CreateSteeringPolicyResponse
|
|
165
167
|
* @throws OciError when an error occurs
|
|
166
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
168
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
|
|
167
169
|
*/
|
|
168
170
|
createSteeringPolicy(createSteeringPolicyRequest: requests.CreateSteeringPolicyRequest): Promise<responses.CreateSteeringPolicyResponse>;
|
|
169
171
|
/**
|
|
@@ -178,7 +180,7 @@ export declare class DnsClient {
|
|
|
178
180
|
* @param CreateSteeringPolicyAttachmentRequest
|
|
179
181
|
* @return CreateSteeringPolicyAttachmentResponse
|
|
180
182
|
* @throws OciError when an error occurs
|
|
181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
|
|
182
184
|
*/
|
|
183
185
|
createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest: requests.CreateSteeringPolicyAttachmentRequest): Promise<responses.CreateSteeringPolicyAttachmentResponse>;
|
|
184
186
|
/**
|
|
@@ -189,7 +191,7 @@ export declare class DnsClient {
|
|
|
189
191
|
* @param CreateTsigKeyRequest
|
|
190
192
|
* @return CreateTsigKeyResponse
|
|
191
193
|
* @throws OciError when an error occurs
|
|
192
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
194
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
|
|
193
195
|
*/
|
|
194
196
|
createTsigKey(createTsigKeyRequest: requests.CreateTsigKeyRequest): Promise<responses.CreateTsigKeyResponse>;
|
|
195
197
|
/**
|
|
@@ -199,7 +201,7 @@ export declare class DnsClient {
|
|
|
199
201
|
* @param CreateViewRequest
|
|
200
202
|
* @return CreateViewResponse
|
|
201
203
|
* @throws OciError when an error occurs
|
|
202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
|
|
203
205
|
*/
|
|
204
206
|
createView(createViewRequest: requests.CreateViewRequest): Promise<responses.CreateViewResponse>;
|
|
205
207
|
/**
|
|
@@ -212,7 +214,7 @@ export declare class DnsClient {
|
|
|
212
214
|
* @param CreateZoneRequest
|
|
213
215
|
* @return CreateZoneResponse
|
|
214
216
|
* @throws OciError when an error occurs
|
|
215
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
217
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
|
|
216
218
|
*/
|
|
217
219
|
createZone(createZoneRequest: requests.CreateZoneRequest): Promise<responses.CreateZoneResponse>;
|
|
218
220
|
/**
|
|
@@ -222,7 +224,7 @@ export declare class DnsClient {
|
|
|
222
224
|
* @param CreateZoneFromZoneFileRequest
|
|
223
225
|
* @return CreateZoneFromZoneFileResponse
|
|
224
226
|
* @throws OciError when an error occurs
|
|
225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
227
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/CreateZoneFromZoneFile.ts.html |here} to see how to use CreateZoneFromZoneFile API.
|
|
226
228
|
*/
|
|
227
229
|
createZoneFromZoneFile(createZoneFromZoneFileRequest: requests.CreateZoneFromZoneFileRequest): Promise<responses.CreateZoneFromZoneFileResponse>;
|
|
228
230
|
/**
|
|
@@ -235,7 +237,7 @@ export declare class DnsClient {
|
|
|
235
237
|
* @param DeleteDomainRecordsRequest
|
|
236
238
|
* @return DeleteDomainRecordsResponse
|
|
237
239
|
* @throws OciError when an error occurs
|
|
238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
240
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
|
|
239
241
|
*/
|
|
240
242
|
deleteDomainRecords(deleteDomainRecordsRequest: requests.DeleteDomainRecordsRequest): Promise<responses.DeleteDomainRecordsResponse>;
|
|
241
243
|
/**
|
|
@@ -248,7 +250,7 @@ export declare class DnsClient {
|
|
|
248
250
|
* @param DeleteRRSetRequest
|
|
249
251
|
* @return DeleteRRSetResponse
|
|
250
252
|
* @throws OciError when an error occurs
|
|
251
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
253
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
|
|
252
254
|
*/
|
|
253
255
|
deleteRRSet(deleteRRSetRequest: requests.DeleteRRSetRequest): Promise<responses.DeleteRRSetResponse>;
|
|
254
256
|
/**
|
|
@@ -262,7 +264,7 @@ export declare class DnsClient {
|
|
|
262
264
|
* @param DeleteResolverEndpointRequest
|
|
263
265
|
* @return DeleteResolverEndpointResponse
|
|
264
266
|
* @throws OciError when an error occurs
|
|
265
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
267
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
|
|
266
268
|
*/
|
|
267
269
|
deleteResolverEndpoint(deleteResolverEndpointRequest: requests.DeleteResolverEndpointRequest): Promise<responses.DeleteResolverEndpointResponse>;
|
|
268
270
|
/**
|
|
@@ -276,7 +278,7 @@ export declare class DnsClient {
|
|
|
276
278
|
* @param DeleteSteeringPolicyRequest
|
|
277
279
|
* @return DeleteSteeringPolicyResponse
|
|
278
280
|
* @throws OciError when an error occurs
|
|
279
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
281
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
|
|
280
282
|
*/
|
|
281
283
|
deleteSteeringPolicy(deleteSteeringPolicyRequest: requests.DeleteSteeringPolicyRequest): Promise<responses.DeleteSteeringPolicyResponse>;
|
|
282
284
|
/**
|
|
@@ -287,7 +289,7 @@ export declare class DnsClient {
|
|
|
287
289
|
* @param DeleteSteeringPolicyAttachmentRequest
|
|
288
290
|
* @return DeleteSteeringPolicyAttachmentResponse
|
|
289
291
|
* @throws OciError when an error occurs
|
|
290
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
292
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
|
|
291
293
|
*/
|
|
292
294
|
deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest: requests.DeleteSteeringPolicyAttachmentRequest): Promise<responses.DeleteSteeringPolicyAttachmentResponse>;
|
|
293
295
|
/**
|
|
@@ -297,7 +299,7 @@ export declare class DnsClient {
|
|
|
297
299
|
* @param DeleteTsigKeyRequest
|
|
298
300
|
* @return DeleteTsigKeyResponse
|
|
299
301
|
* @throws OciError when an error occurs
|
|
300
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
302
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
|
|
301
303
|
*/
|
|
302
304
|
deleteTsigKey(deleteTsigKeyRequest: requests.DeleteTsigKeyRequest): Promise<responses.DeleteTsigKeyResponse>;
|
|
303
305
|
/**
|
|
@@ -312,7 +314,7 @@ export declare class DnsClient {
|
|
|
312
314
|
* @param DeleteViewRequest
|
|
313
315
|
* @return DeleteViewResponse
|
|
314
316
|
* @throws OciError when an error occurs
|
|
315
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
317
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
|
|
316
318
|
*/
|
|
317
319
|
deleteView(deleteViewRequest: requests.DeleteViewRequest): Promise<responses.DeleteViewResponse>;
|
|
318
320
|
/**
|
|
@@ -326,7 +328,7 @@ export declare class DnsClient {
|
|
|
326
328
|
* @param DeleteZoneRequest
|
|
327
329
|
* @return DeleteZoneResponse
|
|
328
330
|
* @throws OciError when an error occurs
|
|
329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
331
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
|
|
330
332
|
*/
|
|
331
333
|
deleteZone(deleteZoneRequest: requests.DeleteZoneRequest): Promise<responses.DeleteZoneResponse>;
|
|
332
334
|
/**
|
|
@@ -340,7 +342,7 @@ export declare class DnsClient {
|
|
|
340
342
|
* @param GetDomainRecordsRequest
|
|
341
343
|
* @return GetDomainRecordsResponse
|
|
342
344
|
* @throws OciError when an error occurs
|
|
343
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
345
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
|
|
344
346
|
*/
|
|
345
347
|
getDomainRecords(getDomainRecordsRequest: requests.GetDomainRecordsRequest): Promise<responses.GetDomainRecordsResponse>;
|
|
346
348
|
/**
|
|
@@ -385,7 +387,7 @@ export declare class DnsClient {
|
|
|
385
387
|
* @param GetRRSetRequest
|
|
386
388
|
* @return GetRRSetResponse
|
|
387
389
|
* @throws OciError when an error occurs
|
|
388
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
390
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
|
|
389
391
|
*/
|
|
390
392
|
getRRSet(getRRSetRequest: requests.GetRRSetRequest): Promise<responses.GetRRSetResponse>;
|
|
391
393
|
/**
|
|
@@ -430,7 +432,7 @@ export declare class DnsClient {
|
|
|
430
432
|
* @param GetResolverRequest
|
|
431
433
|
* @return GetResolverResponse
|
|
432
434
|
* @throws OciError when an error occurs
|
|
433
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
435
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
|
|
434
436
|
*/
|
|
435
437
|
getResolver(getResolverRequest: requests.GetResolverRequest): Promise<responses.GetResolverResponse>;
|
|
436
438
|
/**
|
|
@@ -443,7 +445,7 @@ export declare class DnsClient {
|
|
|
443
445
|
* @param GetResolverEndpointRequest
|
|
444
446
|
* @return GetResolverEndpointResponse
|
|
445
447
|
* @throws OciError when an error occurs
|
|
446
|
-
* @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.76.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
|
|
447
449
|
*/
|
|
448
450
|
getResolverEndpoint(getResolverEndpointRequest: requests.GetResolverEndpointRequest): Promise<responses.GetResolverEndpointResponse>;
|
|
449
451
|
/**
|
|
@@ -453,7 +455,7 @@ export declare class DnsClient {
|
|
|
453
455
|
* @param GetSteeringPolicyRequest
|
|
454
456
|
* @return GetSteeringPolicyResponse
|
|
455
457
|
* @throws OciError when an error occurs
|
|
456
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
458
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
|
|
457
459
|
*/
|
|
458
460
|
getSteeringPolicy(getSteeringPolicyRequest: requests.GetSteeringPolicyRequest): Promise<responses.GetSteeringPolicyResponse>;
|
|
459
461
|
/**
|
|
@@ -463,7 +465,7 @@ export declare class DnsClient {
|
|
|
463
465
|
* @param GetSteeringPolicyAttachmentRequest
|
|
464
466
|
* @return GetSteeringPolicyAttachmentResponse
|
|
465
467
|
* @throws OciError when an error occurs
|
|
466
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
468
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
|
|
467
469
|
*/
|
|
468
470
|
getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest: requests.GetSteeringPolicyAttachmentRequest): Promise<responses.GetSteeringPolicyAttachmentResponse>;
|
|
469
471
|
/**
|
|
@@ -473,7 +475,7 @@ export declare class DnsClient {
|
|
|
473
475
|
* @param GetTsigKeyRequest
|
|
474
476
|
* @return GetTsigKeyResponse
|
|
475
477
|
* @throws OciError when an error occurs
|
|
476
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
478
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
|
|
477
479
|
*/
|
|
478
480
|
getTsigKey(getTsigKeyRequest: requests.GetTsigKeyRequest): Promise<responses.GetTsigKeyResponse>;
|
|
479
481
|
/**
|
|
@@ -487,7 +489,7 @@ export declare class DnsClient {
|
|
|
487
489
|
* @param GetViewRequest
|
|
488
490
|
* @return GetViewResponse
|
|
489
491
|
* @throws OciError when an error occurs
|
|
490
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
492
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetView.ts.html |here} to see how to use GetView API.
|
|
491
493
|
*/
|
|
492
494
|
getView(getViewRequest: requests.GetViewRequest): Promise<responses.GetViewResponse>;
|
|
493
495
|
/**
|
|
@@ -500,7 +502,7 @@ export declare class DnsClient {
|
|
|
500
502
|
* @param GetZoneRequest
|
|
501
503
|
* @return GetZoneResponse
|
|
502
504
|
* @throws OciError when an error occurs
|
|
503
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
505
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
|
|
504
506
|
*/
|
|
505
507
|
getZone(getZoneRequest: requests.GetZoneRequest): Promise<responses.GetZoneResponse>;
|
|
506
508
|
/**
|
|
@@ -510,7 +512,7 @@ export declare class DnsClient {
|
|
|
510
512
|
* @param GetZoneContentRequest
|
|
511
513
|
* @return GetZoneContentResponse
|
|
512
514
|
* @throws OciError when an error occurs
|
|
513
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
515
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
|
|
514
516
|
*/
|
|
515
517
|
getZoneContent(getZoneContentRequest: requests.GetZoneContentRequest): Promise<responses.GetZoneContentResponse>;
|
|
516
518
|
/**
|
|
@@ -525,7 +527,7 @@ export declare class DnsClient {
|
|
|
525
527
|
* @param GetZoneRecordsRequest
|
|
526
528
|
* @return GetZoneRecordsResponse
|
|
527
529
|
* @throws OciError when an error occurs
|
|
528
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
530
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
|
|
529
531
|
*/
|
|
530
532
|
getZoneRecords(getZoneRecordsRequest: requests.GetZoneRecordsRequest): Promise<responses.GetZoneRecordsResponse>;
|
|
531
533
|
/**
|
|
@@ -570,7 +572,7 @@ export declare class DnsClient {
|
|
|
570
572
|
* @param ListResolverEndpointsRequest
|
|
571
573
|
* @return ListResolverEndpointsResponse
|
|
572
574
|
* @throws OciError when an error occurs
|
|
573
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
575
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
|
|
574
576
|
*/
|
|
575
577
|
listResolverEndpoints(listResolverEndpointsRequest: requests.ListResolverEndpointsRequest): Promise<responses.ListResolverEndpointsResponse>;
|
|
576
578
|
/**
|
|
@@ -617,7 +619,7 @@ export declare class DnsClient {
|
|
|
617
619
|
* @param ListResolversRequest
|
|
618
620
|
* @return ListResolversResponse
|
|
619
621
|
* @throws OciError when an error occurs
|
|
620
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
622
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
|
|
621
623
|
*/
|
|
622
624
|
listResolvers(listResolversRequest: requests.ListResolversRequest): Promise<responses.ListResolversResponse>;
|
|
623
625
|
/**
|
|
@@ -659,7 +661,7 @@ export declare class DnsClient {
|
|
|
659
661
|
* @param ListSteeringPoliciesRequest
|
|
660
662
|
* @return ListSteeringPoliciesResponse
|
|
661
663
|
* @throws OciError when an error occurs
|
|
662
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
664
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
|
|
663
665
|
*/
|
|
664
666
|
listSteeringPolicies(listSteeringPoliciesRequest: requests.ListSteeringPoliciesRequest): Promise<responses.ListSteeringPoliciesResponse>;
|
|
665
667
|
/**
|
|
@@ -701,7 +703,7 @@ export declare class DnsClient {
|
|
|
701
703
|
* @param ListSteeringPolicyAttachmentsRequest
|
|
702
704
|
* @return ListSteeringPolicyAttachmentsResponse
|
|
703
705
|
* @throws OciError when an error occurs
|
|
704
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
706
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
|
|
705
707
|
*/
|
|
706
708
|
listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest: requests.ListSteeringPolicyAttachmentsRequest): Promise<responses.ListSteeringPolicyAttachmentsResponse>;
|
|
707
709
|
/**
|
|
@@ -743,7 +745,7 @@ export declare class DnsClient {
|
|
|
743
745
|
* @param ListTsigKeysRequest
|
|
744
746
|
* @return ListTsigKeysResponse
|
|
745
747
|
* @throws OciError when an error occurs
|
|
746
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
748
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
|
|
747
749
|
*/
|
|
748
750
|
listTsigKeys(listTsigKeysRequest: requests.ListTsigKeysRequest): Promise<responses.ListTsigKeysResponse>;
|
|
749
751
|
/**
|
|
@@ -790,7 +792,7 @@ export declare class DnsClient {
|
|
|
790
792
|
* @param ListViewsRequest
|
|
791
793
|
* @return ListViewsResponse
|
|
792
794
|
* @throws OciError when an error occurs
|
|
793
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
795
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
|
|
794
796
|
*/
|
|
795
797
|
listViews(listViewsRequest: requests.ListViewsRequest): Promise<responses.ListViewsResponse>;
|
|
796
798
|
/**
|
|
@@ -834,7 +836,7 @@ export declare class DnsClient {
|
|
|
834
836
|
* @param ListZoneTransferServersRequest
|
|
835
837
|
* @return ListZoneTransferServersResponse
|
|
836
838
|
* @throws OciError when an error occurs
|
|
837
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
839
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
|
|
838
840
|
*/
|
|
839
841
|
listZoneTransferServers(listZoneTransferServersRequest: requests.ListZoneTransferServersRequest): Promise<responses.ListZoneTransferServersResponse>;
|
|
840
842
|
/**
|
|
@@ -879,7 +881,7 @@ export declare class DnsClient {
|
|
|
879
881
|
* @param ListZonesRequest
|
|
880
882
|
* @return ListZonesResponse
|
|
881
883
|
* @throws OciError when an error occurs
|
|
882
|
-
* @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.76.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
|
|
883
885
|
*/
|
|
884
886
|
listZones(listZonesRequest: requests.ListZonesRequest): Promise<responses.ListZonesResponse>;
|
|
885
887
|
/**
|
|
@@ -926,7 +928,7 @@ export declare class DnsClient {
|
|
|
926
928
|
* @param PatchDomainRecordsRequest
|
|
927
929
|
* @return PatchDomainRecordsResponse
|
|
928
930
|
* @throws OciError when an error occurs
|
|
929
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
931
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
|
|
930
932
|
*/
|
|
931
933
|
patchDomainRecords(patchDomainRecordsRequest: requests.PatchDomainRecordsRequest): Promise<responses.PatchDomainRecordsResponse>;
|
|
932
934
|
/**
|
|
@@ -939,7 +941,7 @@ export declare class DnsClient {
|
|
|
939
941
|
* @param PatchRRSetRequest
|
|
940
942
|
* @return PatchRRSetResponse
|
|
941
943
|
* @throws OciError when an error occurs
|
|
942
|
-
* @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.76.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
|
|
943
945
|
*/
|
|
944
946
|
patchRRSet(patchRRSetRequest: requests.PatchRRSetRequest): Promise<responses.PatchRRSetResponse>;
|
|
945
947
|
/**
|
|
@@ -954,7 +956,7 @@ export declare class DnsClient {
|
|
|
954
956
|
* @param PatchZoneRecordsRequest
|
|
955
957
|
* @return PatchZoneRecordsResponse
|
|
956
958
|
* @throws OciError when an error occurs
|
|
957
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
959
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
|
|
958
960
|
*/
|
|
959
961
|
patchZoneRecords(patchZoneRecordsRequest: requests.PatchZoneRecordsRequest): Promise<responses.PatchZoneRecordsResponse>;
|
|
960
962
|
/**
|
|
@@ -969,7 +971,7 @@ export declare class DnsClient {
|
|
|
969
971
|
* @param UpdateDomainRecordsRequest
|
|
970
972
|
* @return UpdateDomainRecordsResponse
|
|
971
973
|
* @throws OciError when an error occurs
|
|
972
|
-
* @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.76.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
|
|
973
975
|
*/
|
|
974
976
|
updateDomainRecords(updateDomainRecordsRequest: requests.UpdateDomainRecordsRequest): Promise<responses.UpdateDomainRecordsResponse>;
|
|
975
977
|
/**
|
|
@@ -982,7 +984,7 @@ export declare class DnsClient {
|
|
|
982
984
|
* @param UpdateRRSetRequest
|
|
983
985
|
* @return UpdateRRSetResponse
|
|
984
986
|
* @throws OciError when an error occurs
|
|
985
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
987
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
|
|
986
988
|
*/
|
|
987
989
|
updateRRSet(updateRRSetRequest: requests.UpdateRRSetRequest): Promise<responses.UpdateRRSetResponse>;
|
|
988
990
|
/**
|
|
@@ -992,7 +994,7 @@ export declare class DnsClient {
|
|
|
992
994
|
* @param UpdateResolverRequest
|
|
993
995
|
* @return UpdateResolverResponse
|
|
994
996
|
* @throws OciError when an error occurs
|
|
995
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
997
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
|
|
996
998
|
*/
|
|
997
999
|
updateResolver(updateResolverRequest: requests.UpdateResolverRequest): Promise<responses.UpdateResolverResponse>;
|
|
998
1000
|
/**
|
|
@@ -1002,7 +1004,7 @@ export declare class DnsClient {
|
|
|
1002
1004
|
* @param UpdateResolverEndpointRequest
|
|
1003
1005
|
* @return UpdateResolverEndpointResponse
|
|
1004
1006
|
* @throws OciError when an error occurs
|
|
1005
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1007
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
|
|
1006
1008
|
*/
|
|
1007
1009
|
updateResolverEndpoint(updateResolverEndpointRequest: requests.UpdateResolverEndpointRequest): Promise<responses.UpdateResolverEndpointResponse>;
|
|
1008
1010
|
/**
|
|
@@ -1012,7 +1014,7 @@ export declare class DnsClient {
|
|
|
1012
1014
|
* @param UpdateSteeringPolicyRequest
|
|
1013
1015
|
* @return UpdateSteeringPolicyResponse
|
|
1014
1016
|
* @throws OciError when an error occurs
|
|
1015
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1017
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
|
|
1016
1018
|
*/
|
|
1017
1019
|
updateSteeringPolicy(updateSteeringPolicyRequest: requests.UpdateSteeringPolicyRequest): Promise<responses.UpdateSteeringPolicyResponse>;
|
|
1018
1020
|
/**
|
|
@@ -1022,7 +1024,7 @@ export declare class DnsClient {
|
|
|
1022
1024
|
* @param UpdateSteeringPolicyAttachmentRequest
|
|
1023
1025
|
* @return UpdateSteeringPolicyAttachmentResponse
|
|
1024
1026
|
* @throws OciError when an error occurs
|
|
1025
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1027
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
|
|
1026
1028
|
*/
|
|
1027
1029
|
updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest: requests.UpdateSteeringPolicyAttachmentRequest): Promise<responses.UpdateSteeringPolicyAttachmentResponse>;
|
|
1028
1030
|
/**
|
|
@@ -1032,7 +1034,7 @@ export declare class DnsClient {
|
|
|
1032
1034
|
* @param UpdateTsigKeyRequest
|
|
1033
1035
|
* @return UpdateTsigKeyResponse
|
|
1034
1036
|
* @throws OciError when an error occurs
|
|
1035
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1037
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
|
|
1036
1038
|
*/
|
|
1037
1039
|
updateTsigKey(updateTsigKeyRequest: requests.UpdateTsigKeyRequest): Promise<responses.UpdateTsigKeyResponse>;
|
|
1038
1040
|
/**
|
|
@@ -1042,7 +1044,7 @@ export declare class DnsClient {
|
|
|
1042
1044
|
* @param UpdateViewRequest
|
|
1043
1045
|
* @return UpdateViewResponse
|
|
1044
1046
|
* @throws OciError when an error occurs
|
|
1045
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1047
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
|
|
1046
1048
|
*/
|
|
1047
1049
|
updateView(updateViewRequest: requests.UpdateViewRequest): Promise<responses.UpdateViewResponse>;
|
|
1048
1050
|
/**
|
|
@@ -1057,7 +1059,7 @@ export declare class DnsClient {
|
|
|
1057
1059
|
* @param UpdateZoneRequest
|
|
1058
1060
|
* @return UpdateZoneResponse
|
|
1059
1061
|
* @throws OciError when an error occurs
|
|
1060
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1062
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
|
|
1061
1063
|
*/
|
|
1062
1064
|
updateZone(updateZoneRequest: requests.UpdateZoneRequest): Promise<responses.UpdateZoneResponse>;
|
|
1063
1065
|
/**
|
|
@@ -1073,7 +1075,7 @@ export declare class DnsClient {
|
|
|
1073
1075
|
* @param UpdateZoneRecordsRequest
|
|
1074
1076
|
* @return UpdateZoneRecordsResponse
|
|
1075
1077
|
* @throws OciError when an error occurs
|
|
1076
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1078
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
|
|
1077
1079
|
*/
|
|
1078
1080
|
updateZoneRecords(updateZoneRecordsRequest: requests.UpdateZoneRecordsRequest): Promise<responses.UpdateZoneRecordsResponse>;
|
|
1079
1081
|
}
|