oci-dns 2.5.2 → 2.8.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 (55) hide show
  1. package/lib/client.d.ts +105 -51
  2. package/lib/client.js +214 -102
  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
@@ -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 uses {@link common.CircuitBreaker.DefaultConfiguration} for all the operations by default if no circuit breaker configuration is defined by the user.
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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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.5.2/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.8.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,10 +301,11 @@ 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.5.2/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.8.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
  /**
@@ -323,10 +346,11 @@ export declare class DnsClient {
323
346
  * provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
324
347
  * parameter is required.
325
348
  *
349
+ * This operation does not retry by default if the user has not defined a retry configuration.
326
350
  * @param GetRRSetRequest
327
351
  * @return GetRRSetResponse
328
352
  * @throws OciError when an error occurs
329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
330
354
  */
331
355
  getRRSet(getRRSetRequest: requests.GetRRSetRequest): Promise<responses.GetRRSetResponse>;
332
356
  /**
@@ -366,10 +390,11 @@ export declare class DnsClient {
366
390
  * resolver in the DELETED lifecycleState will result in a `404` response to be
367
391
  * consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
368
392
  *
393
+ * This operation does not retry by default if the user has not defined a retry configuration.
369
394
  * @param GetResolverRequest
370
395
  * @return GetResolverResponse
371
396
  * @throws OciError when an error occurs
372
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
373
398
  */
374
399
  getResolver(getResolverRequest: requests.GetResolverRequest): Promise<responses.GetResolverResponse>;
375
400
  /**
@@ -377,37 +402,41 @@ export declare class DnsClient {
377
402
  * in the DELETED lifecycle state will result in a `404` response to be consistent with other operations of the
378
403
  * API. Requires a `PRIVATE` scope query parameter.
379
404
  *
405
+ * This operation does not retry by default if the user has not defined a retry configuration.
380
406
  * @param GetResolverEndpointRequest
381
407
  * @return GetResolverEndpointResponse
382
408
  * @throws OciError when an error occurs
383
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
384
410
  */
385
411
  getResolverEndpoint(getResolverEndpointRequest: requests.GetResolverEndpointRequest): Promise<responses.GetResolverEndpointResponse>;
386
412
  /**
387
413
  * Gets information about the specified steering policy.
388
414
  *
415
+ * This operation does not retry by default if the user has not defined a retry configuration.
389
416
  * @param GetSteeringPolicyRequest
390
417
  * @return GetSteeringPolicyResponse
391
418
  * @throws OciError when an error occurs
392
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
393
420
  */
394
421
  getSteeringPolicy(getSteeringPolicyRequest: requests.GetSteeringPolicyRequest): Promise<responses.GetSteeringPolicyResponse>;
395
422
  /**
396
423
  * Gets information about the specified steering policy attachment.
397
424
  *
425
+ * This operation does not retry by default if the user has not defined a retry configuration.
398
426
  * @param GetSteeringPolicyAttachmentRequest
399
427
  * @return GetSteeringPolicyAttachmentResponse
400
428
  * @throws OciError when an error occurs
401
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
402
430
  */
403
431
  getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest: requests.GetSteeringPolicyAttachmentRequest): Promise<responses.GetSteeringPolicyAttachmentResponse>;
404
432
  /**
405
433
  * Gets information about the specified TSIG key.
406
434
  *
435
+ * This operation does not retry by default if the user has not defined a retry configuration.
407
436
  * @param GetTsigKeyRequest
408
437
  * @return GetTsigKeyResponse
409
438
  * @throws OciError when an error occurs
410
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
411
440
  */
412
441
  getTsigKey(getTsigKeyRequest: requests.GetTsigKeyRequest): Promise<responses.GetTsigKeyResponse>;
413
442
  /**
@@ -415,10 +444,11 @@ export declare class DnsClient {
415
444
  * view in the DELETED lifecycleState will result in a `404` response to be
416
445
  * consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
417
446
  *
447
+ * This operation does not retry by default if the user has not defined a retry configuration.
418
448
  * @param GetViewRequest
419
449
  * @return GetViewResponse
420
450
  * @throws OciError when an error occurs
421
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetView.ts.html |here} to see how to use GetView API.
422
452
  */
423
453
  getView(getViewRequest: requests.GetViewRequest): Promise<responses.GetViewResponse>;
424
454
  /**
@@ -426,19 +456,21 @@ export declare class DnsClient {
426
456
  * zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is provided as a
427
457
  * path parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is required.
428
458
  *
459
+ * This operation does not retry by default if the user has not defined a retry configuration.
429
460
  * @param GetZoneRequest
430
461
  * @return GetZoneResponse
431
462
  * @throws OciError when an error occurs
432
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
433
464
  */
434
465
  getZone(getZoneRequest: requests.GetZoneRequest): Promise<responses.GetZoneResponse>;
435
466
  /**
436
467
  * Gets the requested zone's zone file.
437
468
  *
469
+ * This operation does not retry by default if the user has not defined a retry configuration.
438
470
  * @param GetZoneContentRequest
439
471
  * @return GetZoneContentResponse
440
472
  * @throws OciError when an error occurs
441
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
442
474
  */
443
475
  getZoneContent(getZoneContentRequest: requests.GetZoneContentRequest): Promise<responses.GetZoneContentResponse>;
444
476
  /**
@@ -448,10 +480,11 @@ export declare class DnsClient {
448
480
  * provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
449
481
  * parameter is required.
450
482
  *
483
+ * This operation does not retry by default if the user has not defined a retry configuration.
451
484
  * @param GetZoneRecordsRequest
452
485
  * @return GetZoneRecordsResponse
453
486
  * @throws OciError when an error occurs
454
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
455
488
  */
456
489
  getZoneRecords(getZoneRecordsRequest: requests.GetZoneRecordsRequest): Promise<responses.GetZoneRecordsResponse>;
457
490
  /**
@@ -492,10 +525,11 @@ export declare class DnsClient {
492
525
  * query parameter is provided, the collection does not include resolver endpoints in the DELETED
493
526
  * lifecycle state to be consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
494
527
  *
528
+ * This operation does not retry by default if the user has not defined a retry configuration.
495
529
  * @param ListResolverEndpointsRequest
496
530
  * @return ListResolverEndpointsResponse
497
531
  * @throws OciError when an error occurs
498
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
499
533
  */
500
534
  listResolverEndpoints(listResolverEndpointsRequest: requests.ListResolverEndpointsRequest): Promise<responses.ListResolverEndpointsResponse>;
501
535
  /**
@@ -538,10 +572,11 @@ export declare class DnsClient {
538
572
  * does not include resolvers in the DELETED lifecycleState to be consistent
539
573
  * with other operations of the API. Requires a `PRIVATE` scope query parameter.
540
574
  *
575
+ * This operation does not retry by default if the user has not defined a retry configuration.
541
576
  * @param ListResolversRequest
542
577
  * @return ListResolversResponse
543
578
  * @throws OciError when an error occurs
544
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
545
580
  */
546
581
  listResolvers(listResolversRequest: requests.ListResolversRequest): Promise<responses.ListResolversResponse>;
547
582
  /**
@@ -579,10 +614,11 @@ export declare class DnsClient {
579
614
  /**
580
615
  * Gets a list of all steering policies in the specified compartment.
581
616
  *
617
+ * This operation does not retry by default if the user has not defined a retry configuration.
582
618
  * @param ListSteeringPoliciesRequest
583
619
  * @return ListSteeringPoliciesResponse
584
620
  * @throws OciError when an error occurs
585
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
586
622
  */
587
623
  listSteeringPolicies(listSteeringPoliciesRequest: requests.ListSteeringPoliciesRequest): Promise<responses.ListSteeringPoliciesResponse>;
588
624
  /**
@@ -620,10 +656,11 @@ export declare class DnsClient {
620
656
  /**
621
657
  * Lists the steering policy attachments in the specified compartment.
622
658
  *
659
+ * This operation does not retry by default if the user has not defined a retry configuration.
623
660
  * @param ListSteeringPolicyAttachmentsRequest
624
661
  * @return ListSteeringPolicyAttachmentsResponse
625
662
  * @throws OciError when an error occurs
626
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
627
664
  */
628
665
  listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest: requests.ListSteeringPolicyAttachmentsRequest): Promise<responses.ListSteeringPolicyAttachmentsResponse>;
629
666
  /**
@@ -661,10 +698,11 @@ export declare class DnsClient {
661
698
  /**
662
699
  * Gets a list of all TSIG keys in the specified compartment.
663
700
  *
701
+ * This operation does not retry by default if the user has not defined a retry configuration.
664
702
  * @param ListTsigKeysRequest
665
703
  * @return ListTsigKeysResponse
666
704
  * @throws OciError when an error occurs
667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
668
706
  */
669
707
  listTsigKeys(listTsigKeysRequest: requests.ListTsigKeysRequest): Promise<responses.ListTsigKeysResponse>;
670
708
  /**
@@ -707,10 +745,11 @@ export declare class DnsClient {
707
745
  * does not include views in the DELETED lifecycleState to be consistent
708
746
  * with other operations of the API. Requires a `PRIVATE` scope query parameter.
709
747
  *
748
+ * This operation does not retry by default if the user has not defined a retry configuration.
710
749
  * @param ListViewsRequest
711
750
  * @return ListViewsResponse
712
751
  * @throws OciError when an error occurs
713
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
714
753
  */
715
754
  listViews(listViewsRequest: requests.ListViewsRequest): Promise<responses.ListViewsResponse>;
716
755
  /**
@@ -750,10 +789,11 @@ export declare class DnsClient {
750
789
  * compartment (which must be the root compartment of a tenancy) that transfer zone data with external master or
751
790
  * downstream nameservers.
752
791
  *
792
+ * This operation does not retry by default if the user has not defined a retry configuration.
753
793
  * @param ListZoneTransferServersRequest
754
794
  * @return ListZoneTransferServersResponse
755
795
  * @throws OciError when an error occurs
756
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
757
797
  */
758
798
  listZoneTransferServers(listZoneTransferServersRequest: requests.ListZoneTransferServersRequest): Promise<responses.ListZoneTransferServersResponse>;
759
799
  /**
@@ -792,10 +832,11 @@ export declare class DnsClient {
792
832
  * Gets a list of all zones in the specified compartment. The collection can be filtered by name, time created,
793
833
  * scope, associated view, and zone type. Filtering by view is only supported for private zones.
794
834
  *
835
+ * This operation does not retry by default if the user has not defined a retry configuration.
795
836
  * @param ListZonesRequest
796
837
  * @return ListZonesResponse
797
838
  * @throws OciError when an error occurs
798
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
799
840
  */
800
841
  listZones(listZonesRequest: requests.ListZonesRequest): Promise<responses.ListZonesResponse>;
801
842
  /**
@@ -837,10 +878,11 @@ export declare class DnsClient {
837
878
  * name is provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId
838
879
  * query parameter is required.
839
880
  *
881
+ * This operation does not retry by default if the user has not defined a retry configuration.
840
882
  * @param PatchDomainRecordsRequest
841
883
  * @return PatchDomainRecordsResponse
842
884
  * @throws OciError when an error occurs
843
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
844
886
  */
845
887
  patchDomainRecords(patchDomainRecordsRequest: requests.PatchDomainRecordsRequest): Promise<responses.PatchDomainRecordsResponse>;
846
888
  /**
@@ -848,10 +890,11 @@ export declare class DnsClient {
848
890
  * of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query
849
891
  * parameter then the viewId query parameter is required.
850
892
  *
893
+ * This operation does not retry by default if the user has not defined a retry configuration.
851
894
  * @param PatchRRSetRequest
852
895
  * @return PatchRRSetResponse
853
896
  * @throws OciError when an error occurs
854
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
855
898
  */
856
899
  patchRRSet(patchRRSetRequest: requests.PatchRRSetRequest): Promise<responses.PatchRRSetResponse>;
857
900
  /**
@@ -861,10 +904,11 @@ export declare class DnsClient {
861
904
  * the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter then the
862
905
  * viewId query parameter is required.
863
906
  *
907
+ * This operation does not retry by default if the user has not defined a retry configuration.
864
908
  * @param PatchZoneRecordsRequest
865
909
  * @return PatchZoneRecordsResponse
866
910
  * @throws OciError when an error occurs
867
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
868
912
  */
869
913
  patchZoneRecords(patchZoneRecordsRequest: requests.PatchZoneRecordsRequest): Promise<responses.PatchZoneRecordsResponse>;
870
914
  /**
@@ -875,10 +919,11 @@ export declare class DnsClient {
875
919
  * value of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used for the scope
876
920
  * query parameter then the viewId query parameter is required.
877
921
  *
922
+ * This operation does not retry by default if the user has not defined a retry configuration.
878
923
  * @param UpdateDomainRecordsRequest
879
924
  * @return UpdateDomainRecordsResponse
880
925
  * @throws OciError when an error occurs
881
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
882
927
  */
883
928
  updateDomainRecords(updateDomainRecordsRequest: requests.UpdateDomainRecordsRequest): Promise<responses.UpdateDomainRecordsResponse>;
884
929
  /**
@@ -886,64 +931,71 @@ export declare class DnsClient {
886
931
  * value of `PRIVATE`. When the zone name is provided as a path parameter and `PRIVATE` is used for the scope
887
932
  * query parameter then the viewId query parameter is required.
888
933
  *
934
+ * This operation does not retry by default if the user has not defined a retry configuration.
889
935
  * @param UpdateRRSetRequest
890
936
  * @return UpdateRRSetResponse
891
937
  * @throws OciError when an error occurs
892
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
893
939
  */
894
940
  updateRRSet(updateRRSetRequest: requests.UpdateRRSetRequest): Promise<responses.UpdateRRSetResponse>;
895
941
  /**
896
942
  * Updates the specified resolver with your new information. Requires a `PRIVATE` scope query parameter.
897
943
  *
944
+ * This operation does not retry by default if the user has not defined a retry configuration.
898
945
  * @param UpdateResolverRequest
899
946
  * @return UpdateResolverResponse
900
947
  * @throws OciError when an error occurs
901
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
902
949
  */
903
950
  updateResolver(updateResolverRequest: requests.UpdateResolverRequest): Promise<responses.UpdateResolverResponse>;
904
951
  /**
905
952
  * Updates the specified resolver endpoint with your new information. Requires a `PRIVATE` scope query parameter.
906
953
  *
954
+ * This operation does not retry by default if the user has not defined a retry configuration.
907
955
  * @param UpdateResolverEndpointRequest
908
956
  * @return UpdateResolverEndpointResponse
909
957
  * @throws OciError when an error occurs
910
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
911
959
  */
912
960
  updateResolverEndpoint(updateResolverEndpointRequest: requests.UpdateResolverEndpointRequest): Promise<responses.UpdateResolverEndpointResponse>;
913
961
  /**
914
962
  * Updates the configuration of the specified steering policy.
915
963
  *
964
+ * This operation does not retry by default if the user has not defined a retry configuration.
916
965
  * @param UpdateSteeringPolicyRequest
917
966
  * @return UpdateSteeringPolicyResponse
918
967
  * @throws OciError when an error occurs
919
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
920
969
  */
921
970
  updateSteeringPolicy(updateSteeringPolicyRequest: requests.UpdateSteeringPolicyRequest): Promise<responses.UpdateSteeringPolicyResponse>;
922
971
  /**
923
972
  * Updates the specified steering policy attachment with your new information.
924
973
  *
974
+ * This operation does not retry by default if the user has not defined a retry configuration.
925
975
  * @param UpdateSteeringPolicyAttachmentRequest
926
976
  * @return UpdateSteeringPolicyAttachmentResponse
927
977
  * @throws OciError when an error occurs
928
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
929
979
  */
930
980
  updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest: requests.UpdateSteeringPolicyAttachmentRequest): Promise<responses.UpdateSteeringPolicyAttachmentResponse>;
931
981
  /**
932
982
  * Updates the specified TSIG key.
933
983
  *
984
+ * This operation does not retry by default if the user has not defined a retry configuration.
934
985
  * @param UpdateTsigKeyRequest
935
986
  * @return UpdateTsigKeyResponse
936
987
  * @throws OciError when an error occurs
937
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
938
989
  */
939
990
  updateTsigKey(updateTsigKeyRequest: requests.UpdateTsigKeyRequest): Promise<responses.UpdateTsigKeyResponse>;
940
991
  /**
941
992
  * Updates the specified view with your new information. Requires a `PRIVATE` scope query parameter.
942
993
  *
994
+ * This operation does not retry by default if the user has not defined a retry configuration.
943
995
  * @param UpdateViewRequest
944
996
  * @return UpdateViewResponse
945
997
  * @throws OciError when an error occurs
946
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
947
999
  */
948
1000
  updateView(updateViewRequest: requests.UpdateViewRequest): Promise<responses.UpdateViewResponse>;
949
1001
  /**
@@ -953,10 +1005,11 @@ export declare class DnsClient {
953
1005
  * provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
954
1006
  * parameter is required.
955
1007
  *
1008
+ * This operation does not retry by default if the user has not defined a retry configuration.
956
1009
  * @param UpdateZoneRequest
957
1010
  * @return UpdateZoneResponse
958
1011
  * @throws OciError when an error occurs
959
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
960
1013
  */
961
1014
  updateZone(updateZoneRequest: requests.UpdateZoneRequest): Promise<responses.UpdateZoneResponse>;
962
1015
  /**
@@ -967,10 +1020,11 @@ export declare class DnsClient {
967
1020
  * When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter then
968
1021
  * the viewId query parameter is required.
969
1022
  *
1023
+ * This operation does not retry by default if the user has not defined a retry configuration.
970
1024
  * @param UpdateZoneRecordsRequest
971
1025
  * @return UpdateZoneRecordsResponse
972
1026
  * @throws OciError when an error occurs
973
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.8.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
974
1028
  */
975
1029
  updateZoneRecords(updateZoneRecordsRequest: requests.UpdateZoneRecordsRequest): Promise<responses.UpdateZoneRecordsResponse>;
976
1030
  }