oci-dns 2.57.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.
Files changed (55) hide show
  1. package/lib/client.d.ts +61 -51
  2. package/lib/client.js +74 -51
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/change-resolver-compartment-request.d.ts +1 -1
  5. package/lib/request/change-steering-policy-compartment-request.d.ts +1 -1
  6. package/lib/request/change-tsig-key-compartment-request.d.ts +1 -1
  7. package/lib/request/change-view-compartment-request.d.ts +1 -1
  8. package/lib/request/change-zone-compartment-request.d.ts +1 -1
  9. package/lib/request/create-resolver-endpoint-request.d.ts +1 -1
  10. package/lib/request/create-steering-policy-attachment-request.d.ts +1 -1
  11. package/lib/request/create-steering-policy-request.d.ts +1 -1
  12. package/lib/request/create-tsig-key-request.d.ts +1 -1
  13. package/lib/request/create-view-request.d.ts +1 -1
  14. package/lib/request/create-zone-request.d.ts +1 -1
  15. package/lib/request/delete-domain-records-request.d.ts +1 -1
  16. package/lib/request/delete-resolver-endpoint-request.d.ts +1 -1
  17. package/lib/request/delete-rrset-request.d.ts +1 -1
  18. package/lib/request/delete-steering-policy-attachment-request.d.ts +1 -1
  19. package/lib/request/delete-steering-policy-request.d.ts +1 -1
  20. package/lib/request/delete-tsig-key-request.d.ts +1 -1
  21. package/lib/request/delete-view-request.d.ts +1 -1
  22. package/lib/request/delete-zone-request.d.ts +1 -1
  23. package/lib/request/get-domain-records-request.d.ts +1 -1
  24. package/lib/request/get-resolver-endpoint-request.d.ts +1 -1
  25. package/lib/request/get-resolver-request.d.ts +1 -1
  26. package/lib/request/get-rrset-request.d.ts +1 -1
  27. package/lib/request/get-steering-policy-attachment-request.d.ts +1 -1
  28. package/lib/request/get-steering-policy-request.d.ts +1 -1
  29. package/lib/request/get-tsig-key-request.d.ts +1 -1
  30. package/lib/request/get-view-request.d.ts +1 -1
  31. package/lib/request/get-zone-content-request.d.ts +1 -1
  32. package/lib/request/get-zone-records-request.d.ts +1 -1
  33. package/lib/request/get-zone-request.d.ts +1 -1
  34. package/lib/request/list-resolver-endpoints-request.d.ts +1 -1
  35. package/lib/request/list-resolvers-request.d.ts +1 -1
  36. package/lib/request/list-steering-policies-request.d.ts +1 -1
  37. package/lib/request/list-steering-policy-attachments-request.d.ts +1 -1
  38. package/lib/request/list-tsig-keys-request.d.ts +1 -1
  39. package/lib/request/list-views-request.d.ts +1 -1
  40. package/lib/request/list-zone-transfer-servers-request.d.ts +1 -1
  41. package/lib/request/list-zones-request.d.ts +1 -1
  42. package/lib/request/patch-domain-records-request.d.ts +1 -1
  43. package/lib/request/patch-rrset-request.d.ts +1 -1
  44. package/lib/request/patch-zone-records-request.d.ts +1 -1
  45. package/lib/request/update-domain-records-request.d.ts +1 -1
  46. package/lib/request/update-resolver-endpoint-request.d.ts +1 -1
  47. package/lib/request/update-resolver-request.d.ts +1 -1
  48. package/lib/request/update-rrset-request.d.ts +1 -1
  49. package/lib/request/update-steering-policy-attachment-request.d.ts +1 -1
  50. package/lib/request/update-steering-policy-request.d.ts +1 -1
  51. package/lib/request/update-tsig-key-request.d.ts +1 -1
  52. package/lib/request/update-view-request.d.ts +1 -1
  53. package/lib/request/update-zone-records-request.d.ts +1 -1
  54. package/lib/request/update-zone-request.d.ts +1 -1
  55. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -25,6 +25,7 @@ export declare enum DnsApiKeys {
25
25
  export declare class DnsClient {
26
26
  protected static serviceEndpointTemplate: string;
27
27
  protected static endpointServiceName: string;
28
+ protected "_realmSpecificEndpointTemplateEnabled": boolean;
28
29
  protected "_endpoint": string;
29
30
  protected "_defaultHeaders": any;
30
31
  protected "_waiters": DnsWaiter;
@@ -32,6 +33,9 @@ export declare class DnsClient {
32
33
  protected _circuitBreaker: null;
33
34
  protected _httpOptions: any;
34
35
  targetService: string;
36
+ protected _regionId: string;
37
+ protected "_region": common.Region;
38
+ protected _lastSetRegionOrRegionId: string;
35
39
  protected _httpClient: common.HttpClient;
36
40
  constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
37
41
  /**
@@ -44,6 +48,12 @@ export declare class DnsClient {
44
48
  */
45
49
  set endpoint(endpoint: string);
46
50
  get logger(): import("oci-common/lib/log").Logger;
51
+ /**
52
+ * Determines whether realm specific endpoint should be used or not.
53
+ * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
54
+ * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
55
+ */
56
+ set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
47
57
  /**
48
58
  * Sets the region to call (ex, Region.US_PHOENIX_1).
49
59
  * Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
@@ -82,7 +92,7 @@ export declare class DnsClient {
82
92
  * @param ChangeResolverCompartmentRequest
83
93
  * @return ChangeResolverCompartmentResponse
84
94
  * @throws OciError when an error occurs
85
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
95
+ * @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.
86
96
  */
87
97
  changeResolverCompartment(changeResolverCompartmentRequest: requests.ChangeResolverCompartmentRequest): Promise<responses.ChangeResolverCompartmentResponse>;
88
98
  /**
@@ -92,7 +102,7 @@ export declare class DnsClient {
92
102
  * @param ChangeSteeringPolicyCompartmentRequest
93
103
  * @return ChangeSteeringPolicyCompartmentResponse
94
104
  * @throws OciError when an error occurs
95
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
105
+ * @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.
96
106
  */
97
107
  changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest: requests.ChangeSteeringPolicyCompartmentRequest): Promise<responses.ChangeSteeringPolicyCompartmentResponse>;
98
108
  /**
@@ -102,7 +112,7 @@ export declare class DnsClient {
102
112
  * @param ChangeTsigKeyCompartmentRequest
103
113
  * @return ChangeTsigKeyCompartmentResponse
104
114
  * @throws OciError when an error occurs
105
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
115
+ * @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.
106
116
  */
107
117
  changeTsigKeyCompartment(changeTsigKeyCompartmentRequest: requests.ChangeTsigKeyCompartmentRequest): Promise<responses.ChangeTsigKeyCompartmentResponse>;
108
118
  /**
@@ -114,7 +124,7 @@ export declare class DnsClient {
114
124
  * @param ChangeViewCompartmentRequest
115
125
  * @return ChangeViewCompartmentResponse
116
126
  * @throws OciError when an error occurs
117
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
127
+ * @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.
118
128
  */
119
129
  changeViewCompartment(changeViewCompartmentRequest: requests.ChangeViewCompartmentRequest): Promise<responses.ChangeViewCompartmentResponse>;
120
130
  /**
@@ -131,7 +141,7 @@ export declare class DnsClient {
131
141
  * @param ChangeZoneCompartmentRequest
132
142
  * @return ChangeZoneCompartmentResponse
133
143
  * @throws OciError when an error occurs
134
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
144
+ * @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.
135
145
  */
136
146
  changeZoneCompartment(changeZoneCompartmentRequest: requests.ChangeZoneCompartmentRequest): Promise<responses.ChangeZoneCompartmentResponse>;
137
147
  /**
@@ -141,7 +151,7 @@ export declare class DnsClient {
141
151
  * @param CreateResolverEndpointRequest
142
152
  * @return CreateResolverEndpointResponse
143
153
  * @throws OciError when an error occurs
144
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
154
+ * @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.
145
155
  */
146
156
  createResolverEndpoint(createResolverEndpointRequest: requests.CreateResolverEndpointRequest): Promise<responses.CreateResolverEndpointResponse>;
147
157
  /**
@@ -152,7 +162,7 @@ export declare class DnsClient {
152
162
  * @param CreateSteeringPolicyRequest
153
163
  * @return CreateSteeringPolicyResponse
154
164
  * @throws OciError when an error occurs
155
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
165
+ * @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.
156
166
  */
157
167
  createSteeringPolicy(createSteeringPolicyRequest: requests.CreateSteeringPolicyRequest): Promise<responses.CreateSteeringPolicyResponse>;
158
168
  /**
@@ -167,7 +177,7 @@ export declare class DnsClient {
167
177
  * @param CreateSteeringPolicyAttachmentRequest
168
178
  * @return CreateSteeringPolicyAttachmentResponse
169
179
  * @throws OciError when an error occurs
170
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
180
+ * @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.
171
181
  */
172
182
  createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest: requests.CreateSteeringPolicyAttachmentRequest): Promise<responses.CreateSteeringPolicyAttachmentResponse>;
173
183
  /**
@@ -178,7 +188,7 @@ export declare class DnsClient {
178
188
  * @param CreateTsigKeyRequest
179
189
  * @return CreateTsigKeyResponse
180
190
  * @throws OciError when an error occurs
181
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
191
+ * @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.
182
192
  */
183
193
  createTsigKey(createTsigKeyRequest: requests.CreateTsigKeyRequest): Promise<responses.CreateTsigKeyResponse>;
184
194
  /**
@@ -188,7 +198,7 @@ export declare class DnsClient {
188
198
  * @param CreateViewRequest
189
199
  * @return CreateViewResponse
190
200
  * @throws OciError when an error occurs
191
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
201
+ * @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.
192
202
  */
193
203
  createView(createViewRequest: requests.CreateViewRequest): Promise<responses.CreateViewResponse>;
194
204
  /**
@@ -201,7 +211,7 @@ export declare class DnsClient {
201
211
  * @param CreateZoneRequest
202
212
  * @return CreateZoneResponse
203
213
  * @throws OciError when an error occurs
204
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
214
+ * @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.
205
215
  */
206
216
  createZone(createZoneRequest: requests.CreateZoneRequest): Promise<responses.CreateZoneResponse>;
207
217
  /**
@@ -214,7 +224,7 @@ export declare class DnsClient {
214
224
  * @param DeleteDomainRecordsRequest
215
225
  * @return DeleteDomainRecordsResponse
216
226
  * @throws OciError when an error occurs
217
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
227
+ * @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.
218
228
  */
219
229
  deleteDomainRecords(deleteDomainRecordsRequest: requests.DeleteDomainRecordsRequest): Promise<responses.DeleteDomainRecordsResponse>;
220
230
  /**
@@ -227,7 +237,7 @@ export declare class DnsClient {
227
237
  * @param DeleteRRSetRequest
228
238
  * @return DeleteRRSetResponse
229
239
  * @throws OciError when an error occurs
230
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
240
+ * @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.
231
241
  */
232
242
  deleteRRSet(deleteRRSetRequest: requests.DeleteRRSetRequest): Promise<responses.DeleteRRSetResponse>;
233
243
  /**
@@ -241,7 +251,7 @@ export declare class DnsClient {
241
251
  * @param DeleteResolverEndpointRequest
242
252
  * @return DeleteResolverEndpointResponse
243
253
  * @throws OciError when an error occurs
244
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
254
+ * @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.
245
255
  */
246
256
  deleteResolverEndpoint(deleteResolverEndpointRequest: requests.DeleteResolverEndpointRequest): Promise<responses.DeleteResolverEndpointResponse>;
247
257
  /**
@@ -255,7 +265,7 @@ export declare class DnsClient {
255
265
  * @param DeleteSteeringPolicyRequest
256
266
  * @return DeleteSteeringPolicyResponse
257
267
  * @throws OciError when an error occurs
258
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
268
+ * @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.
259
269
  */
260
270
  deleteSteeringPolicy(deleteSteeringPolicyRequest: requests.DeleteSteeringPolicyRequest): Promise<responses.DeleteSteeringPolicyResponse>;
261
271
  /**
@@ -266,7 +276,7 @@ export declare class DnsClient {
266
276
  * @param DeleteSteeringPolicyAttachmentRequest
267
277
  * @return DeleteSteeringPolicyAttachmentResponse
268
278
  * @throws OciError when an error occurs
269
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
279
+ * @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.
270
280
  */
271
281
  deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest: requests.DeleteSteeringPolicyAttachmentRequest): Promise<responses.DeleteSteeringPolicyAttachmentResponse>;
272
282
  /**
@@ -276,7 +286,7 @@ export declare class DnsClient {
276
286
  * @param DeleteTsigKeyRequest
277
287
  * @return DeleteTsigKeyResponse
278
288
  * @throws OciError when an error occurs
279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
289
+ * @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.
280
290
  */
281
291
  deleteTsigKey(deleteTsigKeyRequest: requests.DeleteTsigKeyRequest): Promise<responses.DeleteTsigKeyResponse>;
282
292
  /**
@@ -291,7 +301,7 @@ export declare class DnsClient {
291
301
  * @param DeleteViewRequest
292
302
  * @return DeleteViewResponse
293
303
  * @throws OciError when an error occurs
294
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
304
+ * @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.
295
305
  */
296
306
  deleteView(deleteViewRequest: requests.DeleteViewRequest): Promise<responses.DeleteViewResponse>;
297
307
  /**
@@ -305,7 +315,7 @@ export declare class DnsClient {
305
315
  * @param DeleteZoneRequest
306
316
  * @return DeleteZoneResponse
307
317
  * @throws OciError when an error occurs
308
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
318
+ * @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.
309
319
  */
310
320
  deleteZone(deleteZoneRequest: requests.DeleteZoneRequest): Promise<responses.DeleteZoneResponse>;
311
321
  /**
@@ -319,7 +329,7 @@ export declare class DnsClient {
319
329
  * @param GetDomainRecordsRequest
320
330
  * @return GetDomainRecordsResponse
321
331
  * @throws OciError when an error occurs
322
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
332
+ * @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.
323
333
  */
324
334
  getDomainRecords(getDomainRecordsRequest: requests.GetDomainRecordsRequest): Promise<responses.GetDomainRecordsResponse>;
325
335
  /**
@@ -364,7 +374,7 @@ export declare class DnsClient {
364
374
  * @param GetRRSetRequest
365
375
  * @return GetRRSetResponse
366
376
  * @throws OciError when an error occurs
367
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
377
+ * @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.
368
378
  */
369
379
  getRRSet(getRRSetRequest: requests.GetRRSetRequest): Promise<responses.GetRRSetResponse>;
370
380
  /**
@@ -409,7 +419,7 @@ export declare class DnsClient {
409
419
  * @param GetResolverRequest
410
420
  * @return GetResolverResponse
411
421
  * @throws OciError when an error occurs
412
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
422
+ * @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.
413
423
  */
414
424
  getResolver(getResolverRequest: requests.GetResolverRequest): Promise<responses.GetResolverResponse>;
415
425
  /**
@@ -422,7 +432,7 @@ export declare class DnsClient {
422
432
  * @param GetResolverEndpointRequest
423
433
  * @return GetResolverEndpointResponse
424
434
  * @throws OciError when an error occurs
425
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
435
+ * @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.
426
436
  */
427
437
  getResolverEndpoint(getResolverEndpointRequest: requests.GetResolverEndpointRequest): Promise<responses.GetResolverEndpointResponse>;
428
438
  /**
@@ -432,7 +442,7 @@ export declare class DnsClient {
432
442
  * @param GetSteeringPolicyRequest
433
443
  * @return GetSteeringPolicyResponse
434
444
  * @throws OciError when an error occurs
435
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
445
+ * @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.
436
446
  */
437
447
  getSteeringPolicy(getSteeringPolicyRequest: requests.GetSteeringPolicyRequest): Promise<responses.GetSteeringPolicyResponse>;
438
448
  /**
@@ -442,7 +452,7 @@ export declare class DnsClient {
442
452
  * @param GetSteeringPolicyAttachmentRequest
443
453
  * @return GetSteeringPolicyAttachmentResponse
444
454
  * @throws OciError when an error occurs
445
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
455
+ * @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.
446
456
  */
447
457
  getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest: requests.GetSteeringPolicyAttachmentRequest): Promise<responses.GetSteeringPolicyAttachmentResponse>;
448
458
  /**
@@ -452,7 +462,7 @@ export declare class DnsClient {
452
462
  * @param GetTsigKeyRequest
453
463
  * @return GetTsigKeyResponse
454
464
  * @throws OciError when an error occurs
455
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
465
+ * @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.
456
466
  */
457
467
  getTsigKey(getTsigKeyRequest: requests.GetTsigKeyRequest): Promise<responses.GetTsigKeyResponse>;
458
468
  /**
@@ -466,7 +476,7 @@ export declare class DnsClient {
466
476
  * @param GetViewRequest
467
477
  * @return GetViewResponse
468
478
  * @throws OciError when an error occurs
469
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetView.ts.html |here} to see how to use GetView API.
479
+ * @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.
470
480
  */
471
481
  getView(getViewRequest: requests.GetViewRequest): Promise<responses.GetViewResponse>;
472
482
  /**
@@ -479,7 +489,7 @@ export declare class DnsClient {
479
489
  * @param GetZoneRequest
480
490
  * @return GetZoneResponse
481
491
  * @throws OciError when an error occurs
482
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
492
+ * @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.
483
493
  */
484
494
  getZone(getZoneRequest: requests.GetZoneRequest): Promise<responses.GetZoneResponse>;
485
495
  /**
@@ -489,7 +499,7 @@ export declare class DnsClient {
489
499
  * @param GetZoneContentRequest
490
500
  * @return GetZoneContentResponse
491
501
  * @throws OciError when an error occurs
492
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
502
+ * @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.
493
503
  */
494
504
  getZoneContent(getZoneContentRequest: requests.GetZoneContentRequest): Promise<responses.GetZoneContentResponse>;
495
505
  /**
@@ -504,7 +514,7 @@ export declare class DnsClient {
504
514
  * @param GetZoneRecordsRequest
505
515
  * @return GetZoneRecordsResponse
506
516
  * @throws OciError when an error occurs
507
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
517
+ * @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.
508
518
  */
509
519
  getZoneRecords(getZoneRecordsRequest: requests.GetZoneRecordsRequest): Promise<responses.GetZoneRecordsResponse>;
510
520
  /**
@@ -549,7 +559,7 @@ export declare class DnsClient {
549
559
  * @param ListResolverEndpointsRequest
550
560
  * @return ListResolverEndpointsResponse
551
561
  * @throws OciError when an error occurs
552
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
562
+ * @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.
553
563
  */
554
564
  listResolverEndpoints(listResolverEndpointsRequest: requests.ListResolverEndpointsRequest): Promise<responses.ListResolverEndpointsResponse>;
555
565
  /**
@@ -596,7 +606,7 @@ export declare class DnsClient {
596
606
  * @param ListResolversRequest
597
607
  * @return ListResolversResponse
598
608
  * @throws OciError when an error occurs
599
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
609
+ * @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.
600
610
  */
601
611
  listResolvers(listResolversRequest: requests.ListResolversRequest): Promise<responses.ListResolversResponse>;
602
612
  /**
@@ -638,7 +648,7 @@ export declare class DnsClient {
638
648
  * @param ListSteeringPoliciesRequest
639
649
  * @return ListSteeringPoliciesResponse
640
650
  * @throws OciError when an error occurs
641
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
651
+ * @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.
642
652
  */
643
653
  listSteeringPolicies(listSteeringPoliciesRequest: requests.ListSteeringPoliciesRequest): Promise<responses.ListSteeringPoliciesResponse>;
644
654
  /**
@@ -680,7 +690,7 @@ export declare class DnsClient {
680
690
  * @param ListSteeringPolicyAttachmentsRequest
681
691
  * @return ListSteeringPolicyAttachmentsResponse
682
692
  * @throws OciError when an error occurs
683
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
693
+ * @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.
684
694
  */
685
695
  listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest: requests.ListSteeringPolicyAttachmentsRequest): Promise<responses.ListSteeringPolicyAttachmentsResponse>;
686
696
  /**
@@ -722,7 +732,7 @@ export declare class DnsClient {
722
732
  * @param ListTsigKeysRequest
723
733
  * @return ListTsigKeysResponse
724
734
  * @throws OciError when an error occurs
725
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
735
+ * @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.
726
736
  */
727
737
  listTsigKeys(listTsigKeysRequest: requests.ListTsigKeysRequest): Promise<responses.ListTsigKeysResponse>;
728
738
  /**
@@ -769,7 +779,7 @@ export declare class DnsClient {
769
779
  * @param ListViewsRequest
770
780
  * @return ListViewsResponse
771
781
  * @throws OciError when an error occurs
772
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
782
+ * @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.
773
783
  */
774
784
  listViews(listViewsRequest: requests.ListViewsRequest): Promise<responses.ListViewsResponse>;
775
785
  /**
@@ -813,7 +823,7 @@ export declare class DnsClient {
813
823
  * @param ListZoneTransferServersRequest
814
824
  * @return ListZoneTransferServersResponse
815
825
  * @throws OciError when an error occurs
816
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
826
+ * @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.
817
827
  */
818
828
  listZoneTransferServers(listZoneTransferServersRequest: requests.ListZoneTransferServersRequest): Promise<responses.ListZoneTransferServersResponse>;
819
829
  /**
@@ -858,7 +868,7 @@ export declare class DnsClient {
858
868
  * @param ListZonesRequest
859
869
  * @return ListZonesResponse
860
870
  * @throws OciError when an error occurs
861
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
871
+ * @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.
862
872
  */
863
873
  listZones(listZonesRequest: requests.ListZonesRequest): Promise<responses.ListZonesResponse>;
864
874
  /**
@@ -905,7 +915,7 @@ export declare class DnsClient {
905
915
  * @param PatchDomainRecordsRequest
906
916
  * @return PatchDomainRecordsResponse
907
917
  * @throws OciError when an error occurs
908
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
918
+ * @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.
909
919
  */
910
920
  patchDomainRecords(patchDomainRecordsRequest: requests.PatchDomainRecordsRequest): Promise<responses.PatchDomainRecordsResponse>;
911
921
  /**
@@ -918,7 +928,7 @@ export declare class DnsClient {
918
928
  * @param PatchRRSetRequest
919
929
  * @return PatchRRSetResponse
920
930
  * @throws OciError when an error occurs
921
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
931
+ * @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.
922
932
  */
923
933
  patchRRSet(patchRRSetRequest: requests.PatchRRSetRequest): Promise<responses.PatchRRSetResponse>;
924
934
  /**
@@ -933,7 +943,7 @@ export declare class DnsClient {
933
943
  * @param PatchZoneRecordsRequest
934
944
  * @return PatchZoneRecordsResponse
935
945
  * @throws OciError when an error occurs
936
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
946
+ * @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.
937
947
  */
938
948
  patchZoneRecords(patchZoneRecordsRequest: requests.PatchZoneRecordsRequest): Promise<responses.PatchZoneRecordsResponse>;
939
949
  /**
@@ -948,7 +958,7 @@ export declare class DnsClient {
948
958
  * @param UpdateDomainRecordsRequest
949
959
  * @return UpdateDomainRecordsResponse
950
960
  * @throws OciError when an error occurs
951
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
961
+ * @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.
952
962
  */
953
963
  updateDomainRecords(updateDomainRecordsRequest: requests.UpdateDomainRecordsRequest): Promise<responses.UpdateDomainRecordsResponse>;
954
964
  /**
@@ -961,7 +971,7 @@ export declare class DnsClient {
961
971
  * @param UpdateRRSetRequest
962
972
  * @return UpdateRRSetResponse
963
973
  * @throws OciError when an error occurs
964
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
974
+ * @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.
965
975
  */
966
976
  updateRRSet(updateRRSetRequest: requests.UpdateRRSetRequest): Promise<responses.UpdateRRSetResponse>;
967
977
  /**
@@ -971,7 +981,7 @@ export declare class DnsClient {
971
981
  * @param UpdateResolverRequest
972
982
  * @return UpdateResolverResponse
973
983
  * @throws OciError when an error occurs
974
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
984
+ * @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.
975
985
  */
976
986
  updateResolver(updateResolverRequest: requests.UpdateResolverRequest): Promise<responses.UpdateResolverResponse>;
977
987
  /**
@@ -981,7 +991,7 @@ export declare class DnsClient {
981
991
  * @param UpdateResolverEndpointRequest
982
992
  * @return UpdateResolverEndpointResponse
983
993
  * @throws OciError when an error occurs
984
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
994
+ * @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.
985
995
  */
986
996
  updateResolverEndpoint(updateResolverEndpointRequest: requests.UpdateResolverEndpointRequest): Promise<responses.UpdateResolverEndpointResponse>;
987
997
  /**
@@ -991,7 +1001,7 @@ export declare class DnsClient {
991
1001
  * @param UpdateSteeringPolicyRequest
992
1002
  * @return UpdateSteeringPolicyResponse
993
1003
  * @throws OciError when an error occurs
994
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
1004
+ * @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.
995
1005
  */
996
1006
  updateSteeringPolicy(updateSteeringPolicyRequest: requests.UpdateSteeringPolicyRequest): Promise<responses.UpdateSteeringPolicyResponse>;
997
1007
  /**
@@ -1001,7 +1011,7 @@ export declare class DnsClient {
1001
1011
  * @param UpdateSteeringPolicyAttachmentRequest
1002
1012
  * @return UpdateSteeringPolicyAttachmentResponse
1003
1013
  * @throws OciError when an error occurs
1004
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
1014
+ * @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.
1005
1015
  */
1006
1016
  updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest: requests.UpdateSteeringPolicyAttachmentRequest): Promise<responses.UpdateSteeringPolicyAttachmentResponse>;
1007
1017
  /**
@@ -1011,7 +1021,7 @@ export declare class DnsClient {
1011
1021
  * @param UpdateTsigKeyRequest
1012
1022
  * @return UpdateTsigKeyResponse
1013
1023
  * @throws OciError when an error occurs
1014
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
1024
+ * @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.
1015
1025
  */
1016
1026
  updateTsigKey(updateTsigKeyRequest: requests.UpdateTsigKeyRequest): Promise<responses.UpdateTsigKeyResponse>;
1017
1027
  /**
@@ -1021,7 +1031,7 @@ export declare class DnsClient {
1021
1031
  * @param UpdateViewRequest
1022
1032
  * @return UpdateViewResponse
1023
1033
  * @throws OciError when an error occurs
1024
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
1034
+ * @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.
1025
1035
  */
1026
1036
  updateView(updateViewRequest: requests.UpdateViewRequest): Promise<responses.UpdateViewResponse>;
1027
1037
  /**
@@ -1036,7 +1046,7 @@ export declare class DnsClient {
1036
1046
  * @param UpdateZoneRequest
1037
1047
  * @return UpdateZoneResponse
1038
1048
  * @throws OciError when an error occurs
1039
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
1049
+ * @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.
1040
1050
  */
1041
1051
  updateZone(updateZoneRequest: requests.UpdateZoneRequest): Promise<responses.UpdateZoneResponse>;
1042
1052
  /**
@@ -1052,7 +1062,7 @@ export declare class DnsClient {
1052
1062
  * @param UpdateZoneRecordsRequest
1053
1063
  * @return UpdateZoneRecordsResponse
1054
1064
  * @throws OciError when an error occurs
1055
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
1065
+ * @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.
1056
1066
  */
1057
1067
  updateZoneRecords(updateZoneRecordsRequest: requests.UpdateZoneRecordsRequest): Promise<responses.UpdateZoneRecordsResponse>;
1058
1068
  }