oci-dns 2.4.0 → 2.6.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.
Files changed (56) hide show
  1. package/LICENSE.txt +6 -0
  2. package/lib/client.d.ts +292 -51
  3. package/lib/client.js +445 -102
  4. package/lib/client.js.map +1 -1
  5. package/lib/request/change-resolver-compartment-request.d.ts +1 -1
  6. package/lib/request/change-steering-policy-compartment-request.d.ts +1 -1
  7. package/lib/request/change-tsig-key-compartment-request.d.ts +1 -1
  8. package/lib/request/change-view-compartment-request.d.ts +1 -1
  9. package/lib/request/change-zone-compartment-request.d.ts +1 -1
  10. package/lib/request/create-resolver-endpoint-request.d.ts +1 -1
  11. package/lib/request/create-steering-policy-attachment-request.d.ts +1 -1
  12. package/lib/request/create-steering-policy-request.d.ts +1 -1
  13. package/lib/request/create-tsig-key-request.d.ts +1 -1
  14. package/lib/request/create-view-request.d.ts +1 -1
  15. package/lib/request/create-zone-request.d.ts +1 -1
  16. package/lib/request/delete-domain-records-request.d.ts +1 -1
  17. package/lib/request/delete-resolver-endpoint-request.d.ts +1 -1
  18. package/lib/request/delete-rrset-request.d.ts +1 -1
  19. package/lib/request/delete-steering-policy-attachment-request.d.ts +1 -1
  20. package/lib/request/delete-steering-policy-request.d.ts +1 -1
  21. package/lib/request/delete-tsig-key-request.d.ts +1 -1
  22. package/lib/request/delete-view-request.d.ts +1 -1
  23. package/lib/request/delete-zone-request.d.ts +1 -1
  24. package/lib/request/get-domain-records-request.d.ts +1 -1
  25. package/lib/request/get-resolver-endpoint-request.d.ts +1 -1
  26. package/lib/request/get-resolver-request.d.ts +1 -1
  27. package/lib/request/get-rrset-request.d.ts +1 -1
  28. package/lib/request/get-steering-policy-attachment-request.d.ts +1 -1
  29. package/lib/request/get-steering-policy-request.d.ts +1 -1
  30. package/lib/request/get-tsig-key-request.d.ts +1 -1
  31. package/lib/request/get-view-request.d.ts +1 -1
  32. package/lib/request/get-zone-content-request.d.ts +1 -1
  33. package/lib/request/get-zone-records-request.d.ts +1 -1
  34. package/lib/request/get-zone-request.d.ts +1 -1
  35. package/lib/request/list-resolver-endpoints-request.d.ts +1 -1
  36. package/lib/request/list-resolvers-request.d.ts +1 -1
  37. package/lib/request/list-steering-policies-request.d.ts +1 -1
  38. package/lib/request/list-steering-policy-attachments-request.d.ts +1 -1
  39. package/lib/request/list-tsig-keys-request.d.ts +1 -1
  40. package/lib/request/list-views-request.d.ts +1 -1
  41. package/lib/request/list-zone-transfer-servers-request.d.ts +1 -1
  42. package/lib/request/list-zones-request.d.ts +1 -1
  43. package/lib/request/patch-domain-records-request.d.ts +1 -1
  44. package/lib/request/patch-rrset-request.d.ts +1 -1
  45. package/lib/request/patch-zone-records-request.d.ts +1 -1
  46. package/lib/request/update-domain-records-request.d.ts +1 -1
  47. package/lib/request/update-resolver-endpoint-request.d.ts +1 -1
  48. package/lib/request/update-resolver-request.d.ts +1 -1
  49. package/lib/request/update-rrset-request.d.ts +1 -1
  50. package/lib/request/update-steering-policy-attachment-request.d.ts +1 -1
  51. package/lib/request/update-steering-policy-request.d.ts +1 -1
  52. package/lib/request/update-tsig-key-request.d.ts +1 -1
  53. package/lib/request/update-view-request.d.ts +1 -1
  54. package/lib/request/update-zone-records-request.d.ts +1 -1
  55. package/lib/request/update-zone-request.d.ts +1 -1
  56. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -19,6 +19,9 @@ import * as responses from "./response";
19
19
  import { DnsWaiter } from "./dns-waiter";
20
20
  export declare enum DnsApiKeys {
21
21
  }
22
+ /**
23
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
24
+ */
22
25
  export declare class DnsClient {
23
26
  protected static serviceEndpointTemplate: string;
24
27
  protected "_endpoint": string;
@@ -70,38 +73,42 @@ export declare class DnsClient {
70
73
  * Moves a resolver into a different compartment along with its protected default view and any endpoints.
71
74
  * Zones in the default view are not moved. Requires a `PRIVATE` scope query parameter.
72
75
  *
76
+ * This operation does not retry by default if the user has not defined a retry configuration.
73
77
  * @param ChangeResolverCompartmentRequest
74
78
  * @return ChangeResolverCompartmentResponse
75
79
  * @throws OciError when an error occurs
76
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
80
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
77
81
  */
78
82
  changeResolverCompartment(changeResolverCompartmentRequest: requests.ChangeResolverCompartmentRequest): Promise<responses.ChangeResolverCompartmentResponse>;
79
83
  /**
80
84
  * Moves a steering policy into a different compartment.
81
85
  *
86
+ * This operation does not retry by default if the user has not defined a retry configuration.
82
87
  * @param ChangeSteeringPolicyCompartmentRequest
83
88
  * @return ChangeSteeringPolicyCompartmentResponse
84
89
  * @throws OciError when an error occurs
85
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
90
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
86
91
  */
87
92
  changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest: requests.ChangeSteeringPolicyCompartmentRequest): Promise<responses.ChangeSteeringPolicyCompartmentResponse>;
88
93
  /**
89
94
  * Moves a TSIG key into a different compartment.
90
95
  *
96
+ * This operation does not retry by default if the user has not defined a retry configuration.
91
97
  * @param ChangeTsigKeyCompartmentRequest
92
98
  * @return ChangeTsigKeyCompartmentResponse
93
99
  * @throws OciError when an error occurs
94
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
100
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
95
101
  */
96
102
  changeTsigKeyCompartment(changeTsigKeyCompartmentRequest: requests.ChangeTsigKeyCompartmentRequest): Promise<responses.ChangeTsigKeyCompartmentResponse>;
97
103
  /**
98
104
  * Moves a view into a different compartment. Protected views cannot have their compartment changed. Requires a
99
105
  * `PRIVATE` scope query parameter.
100
106
  *
107
+ * This operation does not retry by default if the user has not defined a retry configuration.
101
108
  * @param ChangeViewCompartmentRequest
102
109
  * @return ChangeViewCompartmentResponse
103
110
  * @throws OciError when an error occurs
104
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
111
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
105
112
  */
106
113
  changeViewCompartment(changeViewCompartmentRequest: requests.ChangeViewCompartmentRequest): Promise<responses.ChangeViewCompartmentResponse>;
107
114
  /**
@@ -111,29 +118,32 @@ export declare class DnsClient {
111
118
  * <p>
112
119
  **Note:** All SteeringPolicyAttachment objects associated with this zone will also be moved into the provided compartment.
113
120
  *
121
+ * This operation does not retry by default if the user has not defined a retry configuration.
114
122
  * @param ChangeZoneCompartmentRequest
115
123
  * @return ChangeZoneCompartmentResponse
116
124
  * @throws OciError when an error occurs
117
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
118
126
  */
119
127
  changeZoneCompartment(changeZoneCompartmentRequest: requests.ChangeZoneCompartmentRequest): Promise<responses.ChangeZoneCompartmentResponse>;
120
128
  /**
121
129
  * Creates a new resolver endpoint. Requires a `PRIVATE` scope query parameter.
122
130
  *
131
+ * This operation does not retry by default if the user has not defined a retry configuration.
123
132
  * @param CreateResolverEndpointRequest
124
133
  * @return CreateResolverEndpointResponse
125
134
  * @throws OciError when an error occurs
126
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
135
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
127
136
  */
128
137
  createResolverEndpoint(createResolverEndpointRequest: requests.CreateResolverEndpointRequest): Promise<responses.CreateResolverEndpointResponse>;
129
138
  /**
130
139
  * Creates a new steering policy in the specified compartment. For more information on
131
140
  * creating policies with templates, see [Traffic Management API Guide](https://docs.cloud.oracle.com/iaas/Content/TrafficManagement/Concepts/trafficmanagementapi.htm).
132
141
  *
142
+ * This operation does not retry by default if the user has not defined a retry configuration.
133
143
  * @param CreateSteeringPolicyRequest
134
144
  * @return CreateSteeringPolicyResponse
135
145
  * @throws OciError when an error occurs
136
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
146
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
137
147
  */
138
148
  createSteeringPolicy(createSteeringPolicyRequest: requests.CreateSteeringPolicyRequest): Promise<responses.CreateSteeringPolicyResponse>;
139
149
  /**
@@ -144,29 +154,32 @@ export declare class DnsClient {
144
154
  For the purposes of access control, the attachment is automatically placed
145
155
  * into the same compartment as the domain's zone.
146
156
  *
157
+ * This operation does not retry by default if the user has not defined a retry configuration.
147
158
  * @param CreateSteeringPolicyAttachmentRequest
148
159
  * @return CreateSteeringPolicyAttachmentResponse
149
160
  * @throws OciError when an error occurs
150
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
161
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
151
162
  */
152
163
  createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest: requests.CreateSteeringPolicyAttachmentRequest): Promise<responses.CreateSteeringPolicyAttachmentResponse>;
153
164
  /**
154
165
  * Creates a new TSIG key in the specified compartment. There is no
155
166
  * `opc-retry-token` header since TSIG key names must be globally unique.
156
167
  *
168
+ * This operation does not retry by default if the user has not defined a retry configuration.
157
169
  * @param CreateTsigKeyRequest
158
170
  * @return CreateTsigKeyResponse
159
171
  * @throws OciError when an error occurs
160
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
172
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
161
173
  */
162
174
  createTsigKey(createTsigKeyRequest: requests.CreateTsigKeyRequest): Promise<responses.CreateTsigKeyResponse>;
163
175
  /**
164
176
  * Creates a new view in the specified compartment. Requires a `PRIVATE` scope query parameter.
165
177
  *
178
+ * This operation does not retry by default if the user has not defined a retry configuration.
166
179
  * @param CreateViewRequest
167
180
  * @return CreateViewResponse
168
181
  * @throws OciError when an error occurs
169
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
182
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
170
183
  */
171
184
  createView(createViewRequest: requests.CreateViewRequest): Promise<responses.CreateViewResponse>;
172
185
  /**
@@ -176,10 +189,11 @@ export declare class DnsClient {
176
189
  * private zone. Private zones must have a zone type of `PRIMARY`. Creating a private zone at or under
177
190
  * `oraclevcn.com` within the default protected view of a VCN-dedicated resolver is not permitted.
178
191
  *
192
+ * This operation does not retry by default if the user has not defined a retry configuration.
179
193
  * @param CreateZoneRequest
180
194
  * @return CreateZoneResponse
181
195
  * @throws OciError when an error occurs
182
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
196
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
183
197
  */
184
198
  createZone(createZoneRequest: requests.CreateZoneRequest): Promise<responses.CreateZoneResponse>;
185
199
  /**
@@ -187,10 +201,11 @@ export declare class DnsClient {
187
201
  * required with a value of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used
188
202
  * for the scope query parameter then the viewId query parameter is required.
189
203
  *
204
+ * This operation does not retry by default if the user has not defined a retry configuration.
190
205
  * @param DeleteDomainRecordsRequest
191
206
  * @return DeleteDomainRecordsResponse
192
207
  * @throws OciError when an error occurs
193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
208
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
194
209
  */
195
210
  deleteDomainRecords(deleteDomainRecordsRequest: requests.DeleteDomainRecordsRequest): Promise<responses.DeleteDomainRecordsResponse>;
196
211
  /**
@@ -198,10 +213,11 @@ export declare class DnsClient {
198
213
  * value of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used for the scope
199
214
  * query parameter then the viewId query parameter is required.
200
215
  *
216
+ * This operation does not retry by default if the user has not defined a retry configuration.
201
217
  * @param DeleteRRSetRequest
202
218
  * @return DeleteRRSetResponse
203
219
  * @throws OciError when an error occurs
204
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
220
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
205
221
  */
206
222
  deleteRRSet(deleteRRSetRequest: requests.DeleteRRSetRequest): Promise<responses.DeleteRRSetResponse>;
207
223
  /**
@@ -210,10 +226,11 @@ export declare class DnsClient {
210
226
  * Resolver endpoints may not be deleted if they are referenced by a resolver rule. Requires a `PRIVATE` scope
211
227
  * query parameter.
212
228
  *
229
+ * This operation does not retry by default if the user has not defined a retry configuration.
213
230
  * @param DeleteResolverEndpointRequest
214
231
  * @return DeleteResolverEndpointResponse
215
232
  * @throws OciError when an error occurs
216
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
233
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
217
234
  */
218
235
  deleteResolverEndpoint(deleteResolverEndpointRequest: requests.DeleteResolverEndpointRequest): Promise<responses.DeleteResolverEndpointResponse>;
219
236
  /**
@@ -222,29 +239,32 @@ export declare class DnsClient {
222
239
  * Deletion will fail if the policy is attached to any zones. To detach a
223
240
  * policy from a zone, see `DeleteSteeringPolicyAttachment`.
224
241
  *
242
+ * This operation does not retry by default if the user has not defined a retry configuration.
225
243
  * @param DeleteSteeringPolicyRequest
226
244
  * @return DeleteSteeringPolicyResponse
227
245
  * @throws OciError when an error occurs
228
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
246
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
229
247
  */
230
248
  deleteSteeringPolicy(deleteSteeringPolicyRequest: requests.DeleteSteeringPolicyRequest): Promise<responses.DeleteSteeringPolicyResponse>;
231
249
  /**
232
250
  * Deletes the specified steering policy attachment.
233
251
  * A `204` response indicates that the delete has been successful.
234
252
  *
253
+ * This operation does not retry by default if the user has not defined a retry configuration.
235
254
  * @param DeleteSteeringPolicyAttachmentRequest
236
255
  * @return DeleteSteeringPolicyAttachmentResponse
237
256
  * @throws OciError when an error occurs
238
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
257
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
239
258
  */
240
259
  deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest: requests.DeleteSteeringPolicyAttachmentRequest): Promise<responses.DeleteSteeringPolicyAttachmentResponse>;
241
260
  /**
242
261
  * Deletes the specified TSIG key.
243
262
  *
263
+ * This operation does not retry by default if the user has not defined a retry configuration.
244
264
  * @param DeleteTsigKeyRequest
245
265
  * @return DeleteTsigKeyResponse
246
266
  * @throws OciError when an error occurs
247
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
267
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
248
268
  */
249
269
  deleteTsigKey(deleteTsigKeyRequest: requests.DeleteTsigKeyRequest): Promise<responses.DeleteTsigKeyResponse>;
250
270
  /**
@@ -254,10 +274,11 @@ export declare class DnsClient {
254
274
  * deleted if they are referenced by non-deleted zones or resolvers.
255
275
  * Protected views cannot be deleted. Requires a `PRIVATE` scope query parameter.
256
276
  *
277
+ * This operation does not retry by default if the user has not defined a retry configuration.
257
278
  * @param DeleteViewRequest
258
279
  * @return DeleteViewResponse
259
280
  * @throws OciError when an error occurs
260
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
281
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
261
282
  */
262
283
  deleteView(deleteViewRequest: requests.DeleteViewRequest): Promise<responses.DeleteViewResponse>;
263
284
  /**
@@ -266,10 +287,11 @@ export declare class DnsClient {
266
287
  * required with a value of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used
267
288
  * for the scope query parameter then the viewId query parameter is required.
268
289
  *
290
+ * This operation does not retry by default if the user has not defined a retry configuration.
269
291
  * @param DeleteZoneRequest
270
292
  * @return DeleteZoneResponse
271
293
  * @throws OciError when an error occurs
272
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
294
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
273
295
  */
274
296
  deleteZone(deleteZoneRequest: requests.DeleteZoneRequest): Promise<responses.DeleteZoneResponse>;
275
297
  /**
@@ -279,13 +301,15 @@ export declare class DnsClient {
279
301
  * provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
280
302
  * parameter is required.
281
303
  *
304
+ * This operation does not retry by default if the user has not defined a retry configuration.
282
305
  * @param GetDomainRecordsRequest
283
306
  * @return GetDomainRecordsResponse
284
307
  * @throws OciError when an error occurs
285
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
308
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
286
309
  */
287
310
  getDomainRecords(getDomainRecordsRequest: requests.GetDomainRecordsRequest): Promise<responses.GetDomainRecordsResponse>;
288
311
  /**
312
+ * NOTE: This function is deprecated in favor of getDomainRecordsRecordIterator function.
289
313
  * Creates a new async iterator which will iterate over the models.Record objects
290
314
  * contained in responses from the getDomainRecords operation. This iterator will fetch more data from the
291
315
  * server as needed.
@@ -294,25 +318,43 @@ export declare class DnsClient {
294
318
  */
295
319
  getAllDomainRecords(request: requests.GetDomainRecordsRequest): AsyncIterableIterator<model.Record>;
296
320
  /**
321
+ * NOTE: This function is deprecated in favor of getDomainRecordsResponseIterator function.
297
322
  * Creates a new async iterator which will iterate over the responses received from the getDomainRecords operation. This iterator
298
323
  * will fetch more data from the server as needed.
299
324
  *
300
325
  * @param request a request which can be sent to the service operation
301
326
  */
302
327
  getAllDomainRecordsResponses(request: requests.GetDomainRecordsRequest): AsyncIterableIterator<responses.GetDomainRecordsResponse>;
328
+ /**
329
+ * Creates a new async iterator which will iterate over the models.Record objects
330
+ * contained in responses from the getDomainRecords operation. This iterator will fetch more data from the
331
+ * server as needed.
332
+ *
333
+ * @param request a request which can be sent to the service operation
334
+ */
335
+ getDomainRecordsRecordIterator(request: requests.GetDomainRecordsRequest): AsyncIterableIterator<model.Record>;
336
+ /**
337
+ * Creates a new async iterator which will iterate over the responses received from the getDomainRecords operation. This iterator
338
+ * will fetch more data from the server as needed.
339
+ *
340
+ * @param request a request which can be sent to the service operation
341
+ */
342
+ getDomainRecordsResponseIterator(request: requests.GetDomainRecordsRequest): AsyncIterableIterator<responses.GetDomainRecordsResponse>;
303
343
  /**
304
344
  * Gets a list of all records in the specified RRSet. The results are sorted by `recordHash` by default. For
305
345
  * private zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is
306
346
  * provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
307
347
  * parameter is required.
308
348
  *
349
+ * This operation does not retry by default if the user has not defined a retry configuration.
309
350
  * @param GetRRSetRequest
310
351
  * @return GetRRSetResponse
311
352
  * @throws OciError when an error occurs
312
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
353
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
313
354
  */
314
355
  getRRSet(getRRSetRequest: requests.GetRRSetRequest): Promise<responses.GetRRSetResponse>;
315
356
  /**
357
+ * NOTE: This function is deprecated in favor of getRRSetRecordIterator function.
316
358
  * Creates a new async iterator which will iterate over the models.Record objects
317
359
  * contained in responses from the getRRSet operation. This iterator will fetch more data from the
318
360
  * server as needed.
@@ -321,21 +363,38 @@ export declare class DnsClient {
321
363
  */
322
364
  getAllRRSet(request: requests.GetRRSetRequest): AsyncIterableIterator<model.Record>;
323
365
  /**
366
+ * NOTE: This function is deprecated in favor of getRRSetResponseIterator function.
324
367
  * Creates a new async iterator which will iterate over the responses received from the getRRSet operation. This iterator
325
368
  * will fetch more data from the server as needed.
326
369
  *
327
370
  * @param request a request which can be sent to the service operation
328
371
  */
329
372
  getAllRRSetResponses(request: requests.GetRRSetRequest): AsyncIterableIterator<responses.GetRRSetResponse>;
373
+ /**
374
+ * Creates a new async iterator which will iterate over the models.Record objects
375
+ * contained in responses from the getRRSet operation. This iterator will fetch more data from the
376
+ * server as needed.
377
+ *
378
+ * @param request a request which can be sent to the service operation
379
+ */
380
+ getRRSetRecordIterator(request: requests.GetRRSetRequest): AsyncIterableIterator<model.Record>;
381
+ /**
382
+ * Creates a new async iterator which will iterate over the responses received from the getRRSet operation. This iterator
383
+ * will fetch more data from the server as needed.
384
+ *
385
+ * @param request a request which can be sent to the service operation
386
+ */
387
+ getRRSetResponseIterator(request: requests.GetRRSetRequest): AsyncIterableIterator<responses.GetRRSetResponse>;
330
388
  /**
331
389
  * Gets information about a specific resolver. Note that attempting to get a
332
390
  * resolver in the DELETED lifecycleState will result in a `404` response to be
333
391
  * consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
334
392
  *
393
+ * This operation does not retry by default if the user has not defined a retry configuration.
335
394
  * @param GetResolverRequest
336
395
  * @return GetResolverResponse
337
396
  * @throws OciError when an error occurs
338
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
397
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
339
398
  */
340
399
  getResolver(getResolverRequest: requests.GetResolverRequest): Promise<responses.GetResolverResponse>;
341
400
  /**
@@ -343,37 +402,41 @@ export declare class DnsClient {
343
402
  * in the DELETED lifecycle state will result in a `404` response to be consistent with other operations of the
344
403
  * API. Requires a `PRIVATE` scope query parameter.
345
404
  *
405
+ * This operation does not retry by default if the user has not defined a retry configuration.
346
406
  * @param GetResolverEndpointRequest
347
407
  * @return GetResolverEndpointResponse
348
408
  * @throws OciError when an error occurs
349
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
409
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
350
410
  */
351
411
  getResolverEndpoint(getResolverEndpointRequest: requests.GetResolverEndpointRequest): Promise<responses.GetResolverEndpointResponse>;
352
412
  /**
353
413
  * Gets information about the specified steering policy.
354
414
  *
415
+ * This operation does not retry by default if the user has not defined a retry configuration.
355
416
  * @param GetSteeringPolicyRequest
356
417
  * @return GetSteeringPolicyResponse
357
418
  * @throws OciError when an error occurs
358
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
419
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
359
420
  */
360
421
  getSteeringPolicy(getSteeringPolicyRequest: requests.GetSteeringPolicyRequest): Promise<responses.GetSteeringPolicyResponse>;
361
422
  /**
362
423
  * Gets information about the specified steering policy attachment.
363
424
  *
425
+ * This operation does not retry by default if the user has not defined a retry configuration.
364
426
  * @param GetSteeringPolicyAttachmentRequest
365
427
  * @return GetSteeringPolicyAttachmentResponse
366
428
  * @throws OciError when an error occurs
367
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
429
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
368
430
  */
369
431
  getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest: requests.GetSteeringPolicyAttachmentRequest): Promise<responses.GetSteeringPolicyAttachmentResponse>;
370
432
  /**
371
433
  * Gets information about the specified TSIG key.
372
434
  *
435
+ * This operation does not retry by default if the user has not defined a retry configuration.
373
436
  * @param GetTsigKeyRequest
374
437
  * @return GetTsigKeyResponse
375
438
  * @throws OciError when an error occurs
376
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
439
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
377
440
  */
378
441
  getTsigKey(getTsigKeyRequest: requests.GetTsigKeyRequest): Promise<responses.GetTsigKeyResponse>;
379
442
  /**
@@ -381,10 +444,11 @@ export declare class DnsClient {
381
444
  * view in the DELETED lifecycleState will result in a `404` response to be
382
445
  * consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
383
446
  *
447
+ * This operation does not retry by default if the user has not defined a retry configuration.
384
448
  * @param GetViewRequest
385
449
  * @return GetViewResponse
386
450
  * @throws OciError when an error occurs
387
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetView.ts.html |here} to see how to use GetView API.
451
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetView.ts.html |here} to see how to use GetView API.
388
452
  */
389
453
  getView(getViewRequest: requests.GetViewRequest): Promise<responses.GetViewResponse>;
390
454
  /**
@@ -392,19 +456,21 @@ export declare class DnsClient {
392
456
  * zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is provided as a
393
457
  * path parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is required.
394
458
  *
459
+ * This operation does not retry by default if the user has not defined a retry configuration.
395
460
  * @param GetZoneRequest
396
461
  * @return GetZoneResponse
397
462
  * @throws OciError when an error occurs
398
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
463
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
399
464
  */
400
465
  getZone(getZoneRequest: requests.GetZoneRequest): Promise<responses.GetZoneResponse>;
401
466
  /**
402
467
  * Gets the requested zone's zone file.
403
468
  *
469
+ * This operation does not retry by default if the user has not defined a retry configuration.
404
470
  * @param GetZoneContentRequest
405
471
  * @return GetZoneContentResponse
406
472
  * @throws OciError when an error occurs
407
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
473
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
408
474
  */
409
475
  getZoneContent(getZoneContentRequest: requests.GetZoneContentRequest): Promise<responses.GetZoneContentResponse>;
410
476
  /**
@@ -414,13 +480,15 @@ export declare class DnsClient {
414
480
  * provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
415
481
  * parameter is required.
416
482
  *
483
+ * This operation does not retry by default if the user has not defined a retry configuration.
417
484
  * @param GetZoneRecordsRequest
418
485
  * @return GetZoneRecordsResponse
419
486
  * @throws OciError when an error occurs
420
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
487
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
421
488
  */
422
489
  getZoneRecords(getZoneRecordsRequest: requests.GetZoneRecordsRequest): Promise<responses.GetZoneRecordsResponse>;
423
490
  /**
491
+ * NOTE: This function is deprecated in favor of getZoneRecordsRecordIterator function.
424
492
  * Creates a new async iterator which will iterate over the models.Record objects
425
493
  * contained in responses from the getZoneRecords operation. This iterator will fetch more data from the
426
494
  * server as needed.
@@ -429,25 +497,43 @@ export declare class DnsClient {
429
497
  */
430
498
  getAllZoneRecords(request: requests.GetZoneRecordsRequest): AsyncIterableIterator<model.Record>;
431
499
  /**
500
+ * NOTE: This function is deprecated in favor of getZoneRecordsResponseIterator function.
432
501
  * Creates a new async iterator which will iterate over the responses received from the getZoneRecords operation. This iterator
433
502
  * will fetch more data from the server as needed.
434
503
  *
435
504
  * @param request a request which can be sent to the service operation
436
505
  */
437
506
  getAllZoneRecordsResponses(request: requests.GetZoneRecordsRequest): AsyncIterableIterator<responses.GetZoneRecordsResponse>;
507
+ /**
508
+ * Creates a new async iterator which will iterate over the models.Record objects
509
+ * contained in responses from the getZoneRecords operation. This iterator will fetch more data from the
510
+ * server as needed.
511
+ *
512
+ * @param request a request which can be sent to the service operation
513
+ */
514
+ getZoneRecordsRecordIterator(request: requests.GetZoneRecordsRequest): AsyncIterableIterator<model.Record>;
515
+ /**
516
+ * Creates a new async iterator which will iterate over the responses received from the getZoneRecords operation. This iterator
517
+ * will fetch more data from the server as needed.
518
+ *
519
+ * @param request a request which can be sent to the service operation
520
+ */
521
+ getZoneRecordsResponseIterator(request: requests.GetZoneRecordsRequest): AsyncIterableIterator<responses.GetZoneRecordsResponse>;
438
522
  /**
439
523
  * Gets a list of all endpoints within a resolver. The collection can be filtered by name or lifecycle state.
440
524
  * It can be sorted on creation time or name both in ASC or DESC order. Note that when no lifecycleState
441
525
  * query parameter is provided, the collection does not include resolver endpoints in the DELETED
442
526
  * lifecycle state to be consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
443
527
  *
528
+ * This operation does not retry by default if the user has not defined a retry configuration.
444
529
  * @param ListResolverEndpointsRequest
445
530
  * @return ListResolverEndpointsResponse
446
531
  * @throws OciError when an error occurs
447
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
532
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
448
533
  */
449
534
  listResolverEndpoints(listResolverEndpointsRequest: requests.ListResolverEndpointsRequest): Promise<responses.ListResolverEndpointsResponse>;
450
535
  /**
536
+ * NOTE: This function is deprecated in favor of listResolverEndpointsRecordIterator function.
451
537
  * Creates a new async iterator which will iterate over the models.ResolverEndpointSummary objects
452
538
  * contained in responses from the listResolverEndpoints operation. This iterator will fetch more data from the
453
539
  * server as needed.
@@ -456,12 +542,28 @@ export declare class DnsClient {
456
542
  */
457
543
  listAllResolverEndpoints(request: requests.ListResolverEndpointsRequest): AsyncIterableIterator<model.ResolverEndpointSummary>;
458
544
  /**
545
+ * NOTE: This function is deprecated in favor of listResolverEndpointsResponseIterator function.
459
546
  * Creates a new async iterator which will iterate over the responses received from the listResolverEndpoints operation. This iterator
460
547
  * will fetch more data from the server as needed.
461
548
  *
462
549
  * @param request a request which can be sent to the service operation
463
550
  */
464
551
  listAllResolverEndpointsResponses(request: requests.ListResolverEndpointsRequest): AsyncIterableIterator<responses.ListResolverEndpointsResponse>;
552
+ /**
553
+ * Creates a new async iterator which will iterate over the models.ResolverEndpointSummary objects
554
+ * contained in responses from the listResolverEndpoints operation. This iterator will fetch more data from the
555
+ * server as needed.
556
+ *
557
+ * @param request a request which can be sent to the service operation
558
+ */
559
+ listResolverEndpointsRecordIterator(request: requests.ListResolverEndpointsRequest): AsyncIterableIterator<model.ResolverEndpointSummary>;
560
+ /**
561
+ * Creates a new async iterator which will iterate over the responses received from the listResolverEndpoints operation. This iterator
562
+ * will fetch more data from the server as needed.
563
+ *
564
+ * @param request a request which can be sent to the service operation
565
+ */
566
+ listResolverEndpointsResponseIterator(request: requests.ListResolverEndpointsRequest): AsyncIterableIterator<responses.ListResolverEndpointsResponse>;
465
567
  /**
466
568
  * Gets a list of all resolvers within a compartment. The collection can
467
569
  * be filtered by display name, id, or lifecycle state. It can be sorted
@@ -470,13 +572,15 @@ export declare class DnsClient {
470
572
  * does not include resolvers in the DELETED lifecycleState to be consistent
471
573
  * with other operations of the API. Requires a `PRIVATE` scope query parameter.
472
574
  *
575
+ * This operation does not retry by default if the user has not defined a retry configuration.
473
576
  * @param ListResolversRequest
474
577
  * @return ListResolversResponse
475
578
  * @throws OciError when an error occurs
476
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
579
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
477
580
  */
478
581
  listResolvers(listResolversRequest: requests.ListResolversRequest): Promise<responses.ListResolversResponse>;
479
582
  /**
583
+ * NOTE: This function is deprecated in favor of listResolversRecordIterator function.
480
584
  * Creates a new async iterator which will iterate over the models.ResolverSummary objects
481
585
  * contained in responses from the listResolvers operation. This iterator will fetch more data from the
482
586
  * server as needed.
@@ -485,22 +589,40 @@ export declare class DnsClient {
485
589
  */
486
590
  listAllResolvers(request: requests.ListResolversRequest): AsyncIterableIterator<model.ResolverSummary>;
487
591
  /**
592
+ * NOTE: This function is deprecated in favor of listResolversResponseIterator function.
488
593
  * Creates a new async iterator which will iterate over the responses received from the listResolvers operation. This iterator
489
594
  * will fetch more data from the server as needed.
490
595
  *
491
596
  * @param request a request which can be sent to the service operation
492
597
  */
493
598
  listAllResolversResponses(request: requests.ListResolversRequest): AsyncIterableIterator<responses.ListResolversResponse>;
599
+ /**
600
+ * Creates a new async iterator which will iterate over the models.ResolverSummary objects
601
+ * contained in responses from the listResolvers operation. This iterator will fetch more data from the
602
+ * server as needed.
603
+ *
604
+ * @param request a request which can be sent to the service operation
605
+ */
606
+ listResolversRecordIterator(request: requests.ListResolversRequest): AsyncIterableIterator<model.ResolverSummary>;
607
+ /**
608
+ * Creates a new async iterator which will iterate over the responses received from the listResolvers operation. This iterator
609
+ * will fetch more data from the server as needed.
610
+ *
611
+ * @param request a request which can be sent to the service operation
612
+ */
613
+ listResolversResponseIterator(request: requests.ListResolversRequest): AsyncIterableIterator<responses.ListResolversResponse>;
494
614
  /**
495
615
  * Gets a list of all steering policies in the specified compartment.
496
616
  *
617
+ * This operation does not retry by default if the user has not defined a retry configuration.
497
618
  * @param ListSteeringPoliciesRequest
498
619
  * @return ListSteeringPoliciesResponse
499
620
  * @throws OciError when an error occurs
500
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
621
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
501
622
  */
502
623
  listSteeringPolicies(listSteeringPoliciesRequest: requests.ListSteeringPoliciesRequest): Promise<responses.ListSteeringPoliciesResponse>;
503
624
  /**
625
+ * NOTE: This function is deprecated in favor of listSteeringPoliciesRecordIterator function.
504
626
  * Creates a new async iterator which will iterate over the models.SteeringPolicySummary objects
505
627
  * contained in responses from the listSteeringPolicies operation. This iterator will fetch more data from the
506
628
  * server as needed.
@@ -509,22 +631,40 @@ export declare class DnsClient {
509
631
  */
510
632
  listAllSteeringPolicies(request: requests.ListSteeringPoliciesRequest): AsyncIterableIterator<model.SteeringPolicySummary>;
511
633
  /**
634
+ * NOTE: This function is deprecated in favor of listSteeringPoliciesResponseIterator function.
512
635
  * Creates a new async iterator which will iterate over the responses received from the listSteeringPolicies operation. This iterator
513
636
  * will fetch more data from the server as needed.
514
637
  *
515
638
  * @param request a request which can be sent to the service operation
516
639
  */
517
640
  listAllSteeringPoliciesResponses(request: requests.ListSteeringPoliciesRequest): AsyncIterableIterator<responses.ListSteeringPoliciesResponse>;
641
+ /**
642
+ * Creates a new async iterator which will iterate over the models.SteeringPolicySummary objects
643
+ * contained in responses from the listSteeringPolicies operation. This iterator will fetch more data from the
644
+ * server as needed.
645
+ *
646
+ * @param request a request which can be sent to the service operation
647
+ */
648
+ listSteeringPoliciesRecordIterator(request: requests.ListSteeringPoliciesRequest): AsyncIterableIterator<model.SteeringPolicySummary>;
649
+ /**
650
+ * Creates a new async iterator which will iterate over the responses received from the listSteeringPolicies operation. This iterator
651
+ * will fetch more data from the server as needed.
652
+ *
653
+ * @param request a request which can be sent to the service operation
654
+ */
655
+ listSteeringPoliciesResponseIterator(request: requests.ListSteeringPoliciesRequest): AsyncIterableIterator<responses.ListSteeringPoliciesResponse>;
518
656
  /**
519
657
  * Lists the steering policy attachments in the specified compartment.
520
658
  *
659
+ * This operation does not retry by default if the user has not defined a retry configuration.
521
660
  * @param ListSteeringPolicyAttachmentsRequest
522
661
  * @return ListSteeringPolicyAttachmentsResponse
523
662
  * @throws OciError when an error occurs
524
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
663
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
525
664
  */
526
665
  listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest: requests.ListSteeringPolicyAttachmentsRequest): Promise<responses.ListSteeringPolicyAttachmentsResponse>;
527
666
  /**
667
+ * NOTE: This function is deprecated in favor of listSteeringPolicyAttachmentsRecordIterator function.
528
668
  * Creates a new async iterator which will iterate over the models.SteeringPolicyAttachmentSummary objects
529
669
  * contained in responses from the listSteeringPolicyAttachments operation. This iterator will fetch more data from the
530
670
  * server as needed.
@@ -533,22 +673,40 @@ export declare class DnsClient {
533
673
  */
534
674
  listAllSteeringPolicyAttachments(request: requests.ListSteeringPolicyAttachmentsRequest): AsyncIterableIterator<model.SteeringPolicyAttachmentSummary>;
535
675
  /**
676
+ * NOTE: This function is deprecated in favor of listSteeringPolicyAttachmentsResponseIterator function.
536
677
  * Creates a new async iterator which will iterate over the responses received from the listSteeringPolicyAttachments operation. This iterator
537
678
  * will fetch more data from the server as needed.
538
679
  *
539
680
  * @param request a request which can be sent to the service operation
540
681
  */
541
682
  listAllSteeringPolicyAttachmentsResponses(request: requests.ListSteeringPolicyAttachmentsRequest): AsyncIterableIterator<responses.ListSteeringPolicyAttachmentsResponse>;
683
+ /**
684
+ * Creates a new async iterator which will iterate over the models.SteeringPolicyAttachmentSummary objects
685
+ * contained in responses from the listSteeringPolicyAttachments operation. This iterator will fetch more data from the
686
+ * server as needed.
687
+ *
688
+ * @param request a request which can be sent to the service operation
689
+ */
690
+ listSteeringPolicyAttachmentsRecordIterator(request: requests.ListSteeringPolicyAttachmentsRequest): AsyncIterableIterator<model.SteeringPolicyAttachmentSummary>;
691
+ /**
692
+ * Creates a new async iterator which will iterate over the responses received from the listSteeringPolicyAttachments operation. This iterator
693
+ * will fetch more data from the server as needed.
694
+ *
695
+ * @param request a request which can be sent to the service operation
696
+ */
697
+ listSteeringPolicyAttachmentsResponseIterator(request: requests.ListSteeringPolicyAttachmentsRequest): AsyncIterableIterator<responses.ListSteeringPolicyAttachmentsResponse>;
542
698
  /**
543
699
  * Gets a list of all TSIG keys in the specified compartment.
544
700
  *
701
+ * This operation does not retry by default if the user has not defined a retry configuration.
545
702
  * @param ListTsigKeysRequest
546
703
  * @return ListTsigKeysResponse
547
704
  * @throws OciError when an error occurs
548
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
705
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
549
706
  */
550
707
  listTsigKeys(listTsigKeysRequest: requests.ListTsigKeysRequest): Promise<responses.ListTsigKeysResponse>;
551
708
  /**
709
+ * NOTE: This function is deprecated in favor of listTsigKeysRecordIterator function.
552
710
  * Creates a new async iterator which will iterate over the models.TsigKeySummary objects
553
711
  * contained in responses from the listTsigKeys operation. This iterator will fetch more data from the
554
712
  * server as needed.
@@ -557,12 +715,28 @@ export declare class DnsClient {
557
715
  */
558
716
  listAllTsigKeys(request: requests.ListTsigKeysRequest): AsyncIterableIterator<model.TsigKeySummary>;
559
717
  /**
718
+ * NOTE: This function is deprecated in favor of listTsigKeysResponseIterator function.
560
719
  * Creates a new async iterator which will iterate over the responses received from the listTsigKeys operation. This iterator
561
720
  * will fetch more data from the server as needed.
562
721
  *
563
722
  * @param request a request which can be sent to the service operation
564
723
  */
565
724
  listAllTsigKeysResponses(request: requests.ListTsigKeysRequest): AsyncIterableIterator<responses.ListTsigKeysResponse>;
725
+ /**
726
+ * Creates a new async iterator which will iterate over the models.TsigKeySummary objects
727
+ * contained in responses from the listTsigKeys operation. This iterator will fetch more data from the
728
+ * server as needed.
729
+ *
730
+ * @param request a request which can be sent to the service operation
731
+ */
732
+ listTsigKeysRecordIterator(request: requests.ListTsigKeysRequest): AsyncIterableIterator<model.TsigKeySummary>;
733
+ /**
734
+ * Creates a new async iterator which will iterate over the responses received from the listTsigKeys operation. This iterator
735
+ * will fetch more data from the server as needed.
736
+ *
737
+ * @param request a request which can be sent to the service operation
738
+ */
739
+ listTsigKeysResponseIterator(request: requests.ListTsigKeysRequest): AsyncIterableIterator<responses.ListTsigKeysResponse>;
566
740
  /**
567
741
  * Gets a list of all views within a compartment. The collection can
568
742
  * be filtered by display name, id, or lifecycle state. It can be sorted
@@ -571,13 +745,15 @@ export declare class DnsClient {
571
745
  * does not include views in the DELETED lifecycleState to be consistent
572
746
  * with other operations of the API. Requires a `PRIVATE` scope query parameter.
573
747
  *
748
+ * This operation does not retry by default if the user has not defined a retry configuration.
574
749
  * @param ListViewsRequest
575
750
  * @return ListViewsResponse
576
751
  * @throws OciError when an error occurs
577
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
752
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
578
753
  */
579
754
  listViews(listViewsRequest: requests.ListViewsRequest): Promise<responses.ListViewsResponse>;
580
755
  /**
756
+ * NOTE: This function is deprecated in favor of listViewsRecordIterator function.
581
757
  * Creates a new async iterator which will iterate over the models.ViewSummary objects
582
758
  * contained in responses from the listViews operation. This iterator will fetch more data from the
583
759
  * server as needed.
@@ -586,24 +762,42 @@ export declare class DnsClient {
586
762
  */
587
763
  listAllViews(request: requests.ListViewsRequest): AsyncIterableIterator<model.ViewSummary>;
588
764
  /**
765
+ * NOTE: This function is deprecated in favor of listViewsResponseIterator function.
589
766
  * Creates a new async iterator which will iterate over the responses received from the listViews operation. This iterator
590
767
  * will fetch more data from the server as needed.
591
768
  *
592
769
  * @param request a request which can be sent to the service operation
593
770
  */
594
771
  listAllViewsResponses(request: requests.ListViewsRequest): AsyncIterableIterator<responses.ListViewsResponse>;
772
+ /**
773
+ * Creates a new async iterator which will iterate over the models.ViewSummary objects
774
+ * contained in responses from the listViews operation. This iterator will fetch more data from the
775
+ * server as needed.
776
+ *
777
+ * @param request a request which can be sent to the service operation
778
+ */
779
+ listViewsRecordIterator(request: requests.ListViewsRequest): AsyncIterableIterator<model.ViewSummary>;
780
+ /**
781
+ * Creates a new async iterator which will iterate over the responses received from the listViews operation. This iterator
782
+ * will fetch more data from the server as needed.
783
+ *
784
+ * @param request a request which can be sent to the service operation
785
+ */
786
+ listViewsResponseIterator(request: requests.ListViewsRequest): AsyncIterableIterator<responses.ListViewsResponse>;
595
787
  /**
596
788
  * Gets a list of IP addresses of OCI nameservers for inbound and outbound transfer of zones in the specified
597
789
  * compartment (which must be the root compartment of a tenancy) that transfer zone data with external master or
598
790
  * downstream nameservers.
599
791
  *
792
+ * This operation does not retry by default if the user has not defined a retry configuration.
600
793
  * @param ListZoneTransferServersRequest
601
794
  * @return ListZoneTransferServersResponse
602
795
  * @throws OciError when an error occurs
603
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
796
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
604
797
  */
605
798
  listZoneTransferServers(listZoneTransferServersRequest: requests.ListZoneTransferServersRequest): Promise<responses.ListZoneTransferServersResponse>;
606
799
  /**
800
+ * NOTE: This function is deprecated in favor of listZoneTransferServersRecordIterator function.
607
801
  * Creates a new async iterator which will iterate over the models.ZoneTransferServer objects
608
802
  * contained in responses from the listZoneTransferServers operation. This iterator will fetch more data from the
609
803
  * server as needed.
@@ -612,23 +806,41 @@ export declare class DnsClient {
612
806
  */
613
807
  listAllZoneTransferServers(request: requests.ListZoneTransferServersRequest): AsyncIterableIterator<model.ZoneTransferServer>;
614
808
  /**
809
+ * NOTE: This function is deprecated in favor of listZoneTransferServersResponseIterator function.
615
810
  * Creates a new async iterator which will iterate over the responses received from the listZoneTransferServers operation. This iterator
616
811
  * will fetch more data from the server as needed.
617
812
  *
618
813
  * @param request a request which can be sent to the service operation
619
814
  */
620
815
  listAllZoneTransferServersResponses(request: requests.ListZoneTransferServersRequest): AsyncIterableIterator<responses.ListZoneTransferServersResponse>;
816
+ /**
817
+ * Creates a new async iterator which will iterate over the models.ZoneTransferServer objects
818
+ * contained in responses from the listZoneTransferServers operation. This iterator will fetch more data from the
819
+ * server as needed.
820
+ *
821
+ * @param request a request which can be sent to the service operation
822
+ */
823
+ listZoneTransferServersRecordIterator(request: requests.ListZoneTransferServersRequest): AsyncIterableIterator<model.ZoneTransferServer>;
824
+ /**
825
+ * Creates a new async iterator which will iterate over the responses received from the listZoneTransferServers operation. This iterator
826
+ * will fetch more data from the server as needed.
827
+ *
828
+ * @param request a request which can be sent to the service operation
829
+ */
830
+ listZoneTransferServersResponseIterator(request: requests.ListZoneTransferServersRequest): AsyncIterableIterator<responses.ListZoneTransferServersResponse>;
621
831
  /**
622
832
  * Gets a list of all zones in the specified compartment. The collection can be filtered by name, time created,
623
833
  * scope, associated view, and zone type. Filtering by view is only supported for private zones.
624
834
  *
835
+ * This operation does not retry by default if the user has not defined a retry configuration.
625
836
  * @param ListZonesRequest
626
837
  * @return ListZonesResponse
627
838
  * @throws OciError when an error occurs
628
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
839
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
629
840
  */
630
841
  listZones(listZonesRequest: requests.ListZonesRequest): Promise<responses.ListZonesResponse>;
631
842
  /**
843
+ * NOTE: This function is deprecated in favor of listZonesRecordIterator function.
632
844
  * Creates a new async iterator which will iterate over the models.ZoneSummary objects
633
845
  * contained in responses from the listZones operation. This iterator will fetch more data from the
634
846
  * server as needed.
@@ -637,12 +849,28 @@ export declare class DnsClient {
637
849
  */
638
850
  listAllZones(request: requests.ListZonesRequest): AsyncIterableIterator<model.ZoneSummary>;
639
851
  /**
852
+ * NOTE: This function is deprecated in favor of listZonesResponseIterator function.
640
853
  * Creates a new async iterator which will iterate over the responses received from the listZones operation. This iterator
641
854
  * will fetch more data from the server as needed.
642
855
  *
643
856
  * @param request a request which can be sent to the service operation
644
857
  */
645
858
  listAllZonesResponses(request: requests.ListZonesRequest): AsyncIterableIterator<responses.ListZonesResponse>;
859
+ /**
860
+ * Creates a new async iterator which will iterate over the models.ZoneSummary objects
861
+ * contained in responses from the listZones operation. This iterator will fetch more data from the
862
+ * server as needed.
863
+ *
864
+ * @param request a request which can be sent to the service operation
865
+ */
866
+ listZonesRecordIterator(request: requests.ListZonesRequest): AsyncIterableIterator<model.ZoneSummary>;
867
+ /**
868
+ * Creates a new async iterator which will iterate over the responses received from the listZones operation. This iterator
869
+ * will fetch more data from the server as needed.
870
+ *
871
+ * @param request a request which can be sent to the service operation
872
+ */
873
+ listZonesResponseIterator(request: requests.ListZonesRequest): AsyncIterableIterator<responses.ListZonesResponse>;
646
874
  /**
647
875
  * Updates records in the specified zone at a domain. You can update one record or all records for the specified
648
876
  * zone depending on the changes provided in the request body. You can also add or remove records using this
@@ -650,10 +878,11 @@ export declare class DnsClient {
650
878
  * name is provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId
651
879
  * query parameter is required.
652
880
  *
881
+ * This operation does not retry by default if the user has not defined a retry configuration.
653
882
  * @param PatchDomainRecordsRequest
654
883
  * @return PatchDomainRecordsResponse
655
884
  * @throws OciError when an error occurs
656
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
885
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
657
886
  */
658
887
  patchDomainRecords(patchDomainRecordsRequest: requests.PatchDomainRecordsRequest): Promise<responses.PatchDomainRecordsResponse>;
659
888
  /**
@@ -661,10 +890,11 @@ export declare class DnsClient {
661
890
  * of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query
662
891
  * parameter then the viewId query parameter is required.
663
892
  *
893
+ * This operation does not retry by default if the user has not defined a retry configuration.
664
894
  * @param PatchRRSetRequest
665
895
  * @return PatchRRSetResponse
666
896
  * @throws OciError when an error occurs
667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
897
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
668
898
  */
669
899
  patchRRSet(patchRRSetRequest: requests.PatchRRSetRequest): Promise<responses.PatchRRSetResponse>;
670
900
  /**
@@ -674,10 +904,11 @@ export declare class DnsClient {
674
904
  * the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter then the
675
905
  * viewId query parameter is required.
676
906
  *
907
+ * This operation does not retry by default if the user has not defined a retry configuration.
677
908
  * @param PatchZoneRecordsRequest
678
909
  * @return PatchZoneRecordsResponse
679
910
  * @throws OciError when an error occurs
680
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
911
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
681
912
  */
682
913
  patchZoneRecords(patchZoneRecordsRequest: requests.PatchZoneRecordsRequest): Promise<responses.PatchZoneRecordsResponse>;
683
914
  /**
@@ -688,10 +919,11 @@ export declare class DnsClient {
688
919
  * value of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used for the scope
689
920
  * query parameter then the viewId query parameter is required.
690
921
  *
922
+ * This operation does not retry by default if the user has not defined a retry configuration.
691
923
  * @param UpdateDomainRecordsRequest
692
924
  * @return UpdateDomainRecordsResponse
693
925
  * @throws OciError when an error occurs
694
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
926
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
695
927
  */
696
928
  updateDomainRecords(updateDomainRecordsRequest: requests.UpdateDomainRecordsRequest): Promise<responses.UpdateDomainRecordsResponse>;
697
929
  /**
@@ -699,64 +931,71 @@ export declare class DnsClient {
699
931
  * value of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used for the scope
700
932
  * query parameter then the viewId query parameter is required.
701
933
  *
934
+ * This operation does not retry by default if the user has not defined a retry configuration.
702
935
  * @param UpdateRRSetRequest
703
936
  * @return UpdateRRSetResponse
704
937
  * @throws OciError when an error occurs
705
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
938
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
706
939
  */
707
940
  updateRRSet(updateRRSetRequest: requests.UpdateRRSetRequest): Promise<responses.UpdateRRSetResponse>;
708
941
  /**
709
942
  * Updates the specified resolver with your new information. Requires a `PRIVATE` scope query parameter.
710
943
  *
944
+ * This operation does not retry by default if the user has not defined a retry configuration.
711
945
  * @param UpdateResolverRequest
712
946
  * @return UpdateResolverResponse
713
947
  * @throws OciError when an error occurs
714
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
948
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
715
949
  */
716
950
  updateResolver(updateResolverRequest: requests.UpdateResolverRequest): Promise<responses.UpdateResolverResponse>;
717
951
  /**
718
952
  * Updates the specified resolver endpoint with your new information. Requires a `PRIVATE` scope query parameter.
719
953
  *
954
+ * This operation does not retry by default if the user has not defined a retry configuration.
720
955
  * @param UpdateResolverEndpointRequest
721
956
  * @return UpdateResolverEndpointResponse
722
957
  * @throws OciError when an error occurs
723
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
958
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
724
959
  */
725
960
  updateResolverEndpoint(updateResolverEndpointRequest: requests.UpdateResolverEndpointRequest): Promise<responses.UpdateResolverEndpointResponse>;
726
961
  /**
727
962
  * Updates the configuration of the specified steering policy.
728
963
  *
964
+ * This operation does not retry by default if the user has not defined a retry configuration.
729
965
  * @param UpdateSteeringPolicyRequest
730
966
  * @return UpdateSteeringPolicyResponse
731
967
  * @throws OciError when an error occurs
732
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
968
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
733
969
  */
734
970
  updateSteeringPolicy(updateSteeringPolicyRequest: requests.UpdateSteeringPolicyRequest): Promise<responses.UpdateSteeringPolicyResponse>;
735
971
  /**
736
972
  * Updates the specified steering policy attachment with your new information.
737
973
  *
974
+ * This operation does not retry by default if the user has not defined a retry configuration.
738
975
  * @param UpdateSteeringPolicyAttachmentRequest
739
976
  * @return UpdateSteeringPolicyAttachmentResponse
740
977
  * @throws OciError when an error occurs
741
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
978
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
742
979
  */
743
980
  updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest: requests.UpdateSteeringPolicyAttachmentRequest): Promise<responses.UpdateSteeringPolicyAttachmentResponse>;
744
981
  /**
745
982
  * Updates the specified TSIG key.
746
983
  *
984
+ * This operation does not retry by default if the user has not defined a retry configuration.
747
985
  * @param UpdateTsigKeyRequest
748
986
  * @return UpdateTsigKeyResponse
749
987
  * @throws OciError when an error occurs
750
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
988
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
751
989
  */
752
990
  updateTsigKey(updateTsigKeyRequest: requests.UpdateTsigKeyRequest): Promise<responses.UpdateTsigKeyResponse>;
753
991
  /**
754
992
  * Updates the specified view with your new information. Requires a `PRIVATE` scope query parameter.
755
993
  *
994
+ * This operation does not retry by default if the user has not defined a retry configuration.
756
995
  * @param UpdateViewRequest
757
996
  * @return UpdateViewResponse
758
997
  * @throws OciError when an error occurs
759
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
998
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
760
999
  */
761
1000
  updateView(updateViewRequest: requests.UpdateViewRequest): Promise<responses.UpdateViewResponse>;
762
1001
  /**
@@ -766,10 +1005,11 @@ export declare class DnsClient {
766
1005
  * provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
767
1006
  * parameter is required.
768
1007
  *
1008
+ * This operation does not retry by default if the user has not defined a retry configuration.
769
1009
  * @param UpdateZoneRequest
770
1010
  * @return UpdateZoneResponse
771
1011
  * @throws OciError when an error occurs
772
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
1012
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
773
1013
  */
774
1014
  updateZone(updateZoneRequest: requests.UpdateZoneRequest): Promise<responses.UpdateZoneResponse>;
775
1015
  /**
@@ -780,10 +1020,11 @@ export declare class DnsClient {
780
1020
  * When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter then
781
1021
  * the viewId query parameter is required.
782
1022
  *
1023
+ * This operation does not retry by default if the user has not defined a retry configuration.
783
1024
  * @param UpdateZoneRecordsRequest
784
1025
  * @return UpdateZoneRecordsResponse
785
1026
  * @throws OciError when an error occurs
786
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
1027
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
787
1028
  */
788
1029
  updateZoneRecords(updateZoneRecordsRequest: requests.UpdateZoneRecordsRequest): Promise<responses.UpdateZoneRecordsResponse>;
789
1030
  }