oci-dns 2.77.0 → 2.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +64 -58
- package/lib/client.js +71 -62
- package/lib/client.js.map +1 -1
- package/lib/model/create-zone-base-details.d.ts +8 -2
- package/lib/model/create-zone-base-details.js.map +1 -1
- package/lib/request/change-resolver-compartment-request.d.ts +1 -1
- package/lib/request/change-steering-policy-compartment-request.d.ts +1 -1
- package/lib/request/change-tsig-key-compartment-request.d.ts +1 -1
- package/lib/request/change-view-compartment-request.d.ts +1 -1
- package/lib/request/change-zone-compartment-request.d.ts +1 -1
- package/lib/request/create-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/create-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/create-steering-policy-request.d.ts +1 -1
- package/lib/request/create-tsig-key-request.d.ts +1 -1
- package/lib/request/create-view-request.d.ts +1 -1
- package/lib/request/create-zone-from-zone-file-request.d.ts +1 -1
- package/lib/request/create-zone-request.d.ts +1 -1
- package/lib/request/delete-domain-records-request.d.ts +2 -2
- package/lib/request/delete-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/delete-rrset-request.d.ts +2 -2
- package/lib/request/delete-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/delete-steering-policy-request.d.ts +1 -1
- package/lib/request/delete-tsig-key-request.d.ts +1 -1
- package/lib/request/delete-view-request.d.ts +1 -1
- package/lib/request/delete-zone-request.d.ts +2 -2
- package/lib/request/get-domain-records-request.d.ts +2 -2
- package/lib/request/get-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/get-resolver-request.d.ts +1 -1
- package/lib/request/get-rrset-request.d.ts +2 -2
- package/lib/request/get-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/get-steering-policy-request.d.ts +1 -1
- package/lib/request/get-tsig-key-request.d.ts +1 -1
- package/lib/request/get-view-request.d.ts +1 -1
- package/lib/request/get-zone-content-request.d.ts +2 -2
- package/lib/request/get-zone-records-request.d.ts +2 -2
- package/lib/request/get-zone-request.d.ts +2 -2
- package/lib/request/list-resolver-endpoints-request.d.ts +1 -1
- package/lib/request/list-resolvers-request.d.ts +1 -1
- package/lib/request/list-steering-policies-request.d.ts +1 -1
- package/lib/request/list-steering-policy-attachments-request.d.ts +1 -1
- package/lib/request/list-tsig-keys-request.d.ts +1 -1
- package/lib/request/list-views-request.d.ts +1 -1
- package/lib/request/list-zone-transfer-servers-request.d.ts +1 -1
- package/lib/request/list-zones-request.d.ts +1 -1
- package/lib/request/patch-domain-records-request.d.ts +2 -2
- package/lib/request/patch-rrset-request.d.ts +2 -2
- package/lib/request/patch-zone-records-request.d.ts +2 -2
- package/lib/request/update-domain-records-request.d.ts +2 -2
- package/lib/request/update-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/update-resolver-request.d.ts +1 -1
- package/lib/request/update-rrset-request.d.ts +2 -2
- package/lib/request/update-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/update-steering-policy-request.d.ts +1 -1
- package/lib/request/update-tsig-key-request.d.ts +1 -1
- package/lib/request/update-view-request.d.ts +1 -1
- package/lib/request/update-zone-records-request.d.ts +2 -2
- package/lib/request/update-zone-request.d.ts +2 -2
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import * as model from "./model";
|
|
|
18
18
|
import * as responses from "./response";
|
|
19
19
|
import { WorkRequestClient } from "oci-workrequests";
|
|
20
20
|
import { DnsWaiter } from "./dns-waiter";
|
|
21
|
+
declare const Breaker: any;
|
|
21
22
|
export declare enum DnsApiKeys {
|
|
22
23
|
}
|
|
23
24
|
/**
|
|
@@ -31,7 +32,7 @@ export declare class DnsClient {
|
|
|
31
32
|
protected "_defaultHeaders": any;
|
|
32
33
|
protected "_waiters": DnsWaiter;
|
|
33
34
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
34
|
-
protected _circuitBreaker: null;
|
|
35
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
35
36
|
protected _httpOptions: any;
|
|
36
37
|
protected _bodyDuplexMode: any;
|
|
37
38
|
targetService: string;
|
|
@@ -85,6 +86,10 @@ export declare class DnsClient {
|
|
|
85
86
|
* @return The service waiters.
|
|
86
87
|
*/
|
|
87
88
|
getWaiters(): DnsWaiter;
|
|
89
|
+
/**
|
|
90
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
91
|
+
*/
|
|
92
|
+
shutdownCircuitBreaker(): void;
|
|
88
93
|
/**
|
|
89
94
|
* Moves a resolver into a different compartment along with its protected default view and any endpoints.
|
|
90
95
|
* <p>
|
|
@@ -95,7 +100,7 @@ export declare class DnsClient {
|
|
|
95
100
|
* @param ChangeResolverCompartmentRequest
|
|
96
101
|
* @return ChangeResolverCompartmentResponse
|
|
97
102
|
* @throws OciError when an error occurs
|
|
98
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
|
|
99
104
|
*/
|
|
100
105
|
changeResolverCompartment(changeResolverCompartmentRequest: requests.ChangeResolverCompartmentRequest): Promise<responses.ChangeResolverCompartmentResponse>;
|
|
101
106
|
/**
|
|
@@ -105,7 +110,7 @@ export declare class DnsClient {
|
|
|
105
110
|
* @param ChangeSteeringPolicyCompartmentRequest
|
|
106
111
|
* @return ChangeSteeringPolicyCompartmentResponse
|
|
107
112
|
* @throws OciError when an error occurs
|
|
108
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
113
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
|
|
109
114
|
*/
|
|
110
115
|
changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest: requests.ChangeSteeringPolicyCompartmentRequest): Promise<responses.ChangeSteeringPolicyCompartmentResponse>;
|
|
111
116
|
/**
|
|
@@ -115,7 +120,7 @@ export declare class DnsClient {
|
|
|
115
120
|
* @param ChangeTsigKeyCompartmentRequest
|
|
116
121
|
* @return ChangeTsigKeyCompartmentResponse
|
|
117
122
|
* @throws OciError when an error occurs
|
|
118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
123
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
|
|
119
124
|
*/
|
|
120
125
|
changeTsigKeyCompartment(changeTsigKeyCompartmentRequest: requests.ChangeTsigKeyCompartmentRequest): Promise<responses.ChangeTsigKeyCompartmentResponse>;
|
|
121
126
|
/**
|
|
@@ -127,7 +132,7 @@ export declare class DnsClient {
|
|
|
127
132
|
* @param ChangeViewCompartmentRequest
|
|
128
133
|
* @return ChangeViewCompartmentResponse
|
|
129
134
|
* @throws OciError when an error occurs
|
|
130
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
135
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
|
|
131
136
|
*/
|
|
132
137
|
changeViewCompartment(changeViewCompartmentRequest: requests.ChangeViewCompartmentRequest): Promise<responses.ChangeViewCompartmentResponse>;
|
|
133
138
|
/**
|
|
@@ -144,7 +149,7 @@ export declare class DnsClient {
|
|
|
144
149
|
* @param ChangeZoneCompartmentRequest
|
|
145
150
|
* @return ChangeZoneCompartmentResponse
|
|
146
151
|
* @throws OciError when an error occurs
|
|
147
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
152
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
|
|
148
153
|
*/
|
|
149
154
|
changeZoneCompartment(changeZoneCompartmentRequest: requests.ChangeZoneCompartmentRequest): Promise<responses.ChangeZoneCompartmentResponse>;
|
|
150
155
|
/**
|
|
@@ -154,7 +159,7 @@ export declare class DnsClient {
|
|
|
154
159
|
* @param CreateResolverEndpointRequest
|
|
155
160
|
* @return CreateResolverEndpointResponse
|
|
156
161
|
* @throws OciError when an error occurs
|
|
157
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
162
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
|
|
158
163
|
*/
|
|
159
164
|
createResolverEndpoint(createResolverEndpointRequest: requests.CreateResolverEndpointRequest): Promise<responses.CreateResolverEndpointResponse>;
|
|
160
165
|
/**
|
|
@@ -165,7 +170,7 @@ export declare class DnsClient {
|
|
|
165
170
|
* @param CreateSteeringPolicyRequest
|
|
166
171
|
* @return CreateSteeringPolicyResponse
|
|
167
172
|
* @throws OciError when an error occurs
|
|
168
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
173
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
|
|
169
174
|
*/
|
|
170
175
|
createSteeringPolicy(createSteeringPolicyRequest: requests.CreateSteeringPolicyRequest): Promise<responses.CreateSteeringPolicyResponse>;
|
|
171
176
|
/**
|
|
@@ -180,7 +185,7 @@ export declare class DnsClient {
|
|
|
180
185
|
* @param CreateSteeringPolicyAttachmentRequest
|
|
181
186
|
* @return CreateSteeringPolicyAttachmentResponse
|
|
182
187
|
* @throws OciError when an error occurs
|
|
183
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
188
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
|
|
184
189
|
*/
|
|
185
190
|
createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest: requests.CreateSteeringPolicyAttachmentRequest): Promise<responses.CreateSteeringPolicyAttachmentResponse>;
|
|
186
191
|
/**
|
|
@@ -191,7 +196,7 @@ export declare class DnsClient {
|
|
|
191
196
|
* @param CreateTsigKeyRequest
|
|
192
197
|
* @return CreateTsigKeyResponse
|
|
193
198
|
* @throws OciError when an error occurs
|
|
194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
199
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
|
|
195
200
|
*/
|
|
196
201
|
createTsigKey(createTsigKeyRequest: requests.CreateTsigKeyRequest): Promise<responses.CreateTsigKeyResponse>;
|
|
197
202
|
/**
|
|
@@ -201,7 +206,7 @@ export declare class DnsClient {
|
|
|
201
206
|
* @param CreateViewRequest
|
|
202
207
|
* @return CreateViewResponse
|
|
203
208
|
* @throws OciError when an error occurs
|
|
204
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
209
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
|
|
205
210
|
*/
|
|
206
211
|
createView(createViewRequest: requests.CreateViewRequest): Promise<responses.CreateViewResponse>;
|
|
207
212
|
/**
|
|
@@ -214,7 +219,7 @@ export declare class DnsClient {
|
|
|
214
219
|
* @param CreateZoneRequest
|
|
215
220
|
* @return CreateZoneResponse
|
|
216
221
|
* @throws OciError when an error occurs
|
|
217
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
|
|
218
223
|
*/
|
|
219
224
|
createZone(createZoneRequest: requests.CreateZoneRequest): Promise<responses.CreateZoneResponse>;
|
|
220
225
|
/**
|
|
@@ -224,7 +229,7 @@ export declare class DnsClient {
|
|
|
224
229
|
* @param CreateZoneFromZoneFileRequest
|
|
225
230
|
* @return CreateZoneFromZoneFileResponse
|
|
226
231
|
* @throws OciError when an error occurs
|
|
227
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
232
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/CreateZoneFromZoneFile.ts.html |here} to see how to use CreateZoneFromZoneFile API.
|
|
228
233
|
*/
|
|
229
234
|
createZoneFromZoneFile(createZoneFromZoneFileRequest: requests.CreateZoneFromZoneFileRequest): Promise<responses.CreateZoneFromZoneFileResponse>;
|
|
230
235
|
/**
|
|
@@ -237,7 +242,7 @@ export declare class DnsClient {
|
|
|
237
242
|
* @param DeleteDomainRecordsRequest
|
|
238
243
|
* @return DeleteDomainRecordsResponse
|
|
239
244
|
* @throws OciError when an error occurs
|
|
240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
245
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
|
|
241
246
|
*/
|
|
242
247
|
deleteDomainRecords(deleteDomainRecordsRequest: requests.DeleteDomainRecordsRequest): Promise<responses.DeleteDomainRecordsResponse>;
|
|
243
248
|
/**
|
|
@@ -250,7 +255,7 @@ export declare class DnsClient {
|
|
|
250
255
|
* @param DeleteRRSetRequest
|
|
251
256
|
* @return DeleteRRSetResponse
|
|
252
257
|
* @throws OciError when an error occurs
|
|
253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
258
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
|
|
254
259
|
*/
|
|
255
260
|
deleteRRSet(deleteRRSetRequest: requests.DeleteRRSetRequest): Promise<responses.DeleteRRSetResponse>;
|
|
256
261
|
/**
|
|
@@ -260,11 +265,11 @@ export declare class DnsClient {
|
|
|
260
265
|
* a `404` response to be consistent with other operations of the API. Resolver endpoints may not
|
|
261
266
|
* be deleted if they are referenced by a resolver rule.
|
|
262
267
|
*
|
|
263
|
-
* This operation
|
|
268
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
264
269
|
* @param DeleteResolverEndpointRequest
|
|
265
270
|
* @return DeleteResolverEndpointResponse
|
|
266
271
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
|
|
268
273
|
*/
|
|
269
274
|
deleteResolverEndpoint(deleteResolverEndpointRequest: requests.DeleteResolverEndpointRequest): Promise<responses.DeleteResolverEndpointResponse>;
|
|
270
275
|
/**
|
|
@@ -274,32 +279,32 @@ export declare class DnsClient {
|
|
|
274
279
|
* Deletion will fail if the policy is attached to any zones. To detach a
|
|
275
280
|
* policy from a zone, see `DeleteSteeringPolicyAttachment`.
|
|
276
281
|
*
|
|
277
|
-
* This operation
|
|
282
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
278
283
|
* @param DeleteSteeringPolicyRequest
|
|
279
284
|
* @return DeleteSteeringPolicyResponse
|
|
280
285
|
* @throws OciError when an error occurs
|
|
281
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
|
|
282
287
|
*/
|
|
283
288
|
deleteSteeringPolicy(deleteSteeringPolicyRequest: requests.DeleteSteeringPolicyRequest): Promise<responses.DeleteSteeringPolicyResponse>;
|
|
284
289
|
/**
|
|
285
290
|
* Deletes the specified steering policy attachment.
|
|
286
291
|
* A `204` response indicates that the delete has been successful.
|
|
287
292
|
*
|
|
288
|
-
* This operation
|
|
293
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
289
294
|
* @param DeleteSteeringPolicyAttachmentRequest
|
|
290
295
|
* @return DeleteSteeringPolicyAttachmentResponse
|
|
291
296
|
* @throws OciError when an error occurs
|
|
292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
297
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
|
|
293
298
|
*/
|
|
294
299
|
deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest: requests.DeleteSteeringPolicyAttachmentRequest): Promise<responses.DeleteSteeringPolicyAttachmentResponse>;
|
|
295
300
|
/**
|
|
296
301
|
* Deletes the specified TSIG key.
|
|
297
302
|
*
|
|
298
|
-
* This operation
|
|
303
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
299
304
|
* @param DeleteTsigKeyRequest
|
|
300
305
|
* @return DeleteTsigKeyResponse
|
|
301
306
|
* @throws OciError when an error occurs
|
|
302
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
307
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
|
|
303
308
|
*/
|
|
304
309
|
deleteTsigKey(deleteTsigKeyRequest: requests.DeleteTsigKeyRequest): Promise<responses.DeleteTsigKeyResponse>;
|
|
305
310
|
/**
|
|
@@ -310,11 +315,11 @@ export declare class DnsClient {
|
|
|
310
315
|
* deleted if they are referenced by non-deleted zones or resolvers.
|
|
311
316
|
* Protected views cannot be deleted.
|
|
312
317
|
*
|
|
313
|
-
* This operation
|
|
318
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
314
319
|
* @param DeleteViewRequest
|
|
315
320
|
* @return DeleteViewResponse
|
|
316
321
|
* @throws OciError when an error occurs
|
|
317
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
322
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
|
|
318
323
|
*/
|
|
319
324
|
deleteView(deleteViewRequest: requests.DeleteViewRequest): Promise<responses.DeleteViewResponse>;
|
|
320
325
|
/**
|
|
@@ -328,7 +333,7 @@ export declare class DnsClient {
|
|
|
328
333
|
* @param DeleteZoneRequest
|
|
329
334
|
* @return DeleteZoneResponse
|
|
330
335
|
* @throws OciError when an error occurs
|
|
331
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
336
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
|
|
332
337
|
*/
|
|
333
338
|
deleteZone(deleteZoneRequest: requests.DeleteZoneRequest): Promise<responses.DeleteZoneResponse>;
|
|
334
339
|
/**
|
|
@@ -342,7 +347,7 @@ export declare class DnsClient {
|
|
|
342
347
|
* @param GetDomainRecordsRequest
|
|
343
348
|
* @return GetDomainRecordsResponse
|
|
344
349
|
* @throws OciError when an error occurs
|
|
345
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
350
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
|
|
346
351
|
*/
|
|
347
352
|
getDomainRecords(getDomainRecordsRequest: requests.GetDomainRecordsRequest): Promise<responses.GetDomainRecordsResponse>;
|
|
348
353
|
/**
|
|
@@ -387,7 +392,7 @@ export declare class DnsClient {
|
|
|
387
392
|
* @param GetRRSetRequest
|
|
388
393
|
* @return GetRRSetResponse
|
|
389
394
|
* @throws OciError when an error occurs
|
|
390
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
395
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
|
|
391
396
|
*/
|
|
392
397
|
getRRSet(getRRSetRequest: requests.GetRRSetRequest): Promise<responses.GetRRSetResponse>;
|
|
393
398
|
/**
|
|
@@ -432,7 +437,7 @@ export declare class DnsClient {
|
|
|
432
437
|
* @param GetResolverRequest
|
|
433
438
|
* @return GetResolverResponse
|
|
434
439
|
* @throws OciError when an error occurs
|
|
435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
440
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
|
|
436
441
|
*/
|
|
437
442
|
getResolver(getResolverRequest: requests.GetResolverRequest): Promise<responses.GetResolverResponse>;
|
|
438
443
|
/**
|
|
@@ -445,7 +450,7 @@ export declare class DnsClient {
|
|
|
445
450
|
* @param GetResolverEndpointRequest
|
|
446
451
|
* @return GetResolverEndpointResponse
|
|
447
452
|
* @throws OciError when an error occurs
|
|
448
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
453
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
|
|
449
454
|
*/
|
|
450
455
|
getResolverEndpoint(getResolverEndpointRequest: requests.GetResolverEndpointRequest): Promise<responses.GetResolverEndpointResponse>;
|
|
451
456
|
/**
|
|
@@ -455,7 +460,7 @@ export declare class DnsClient {
|
|
|
455
460
|
* @param GetSteeringPolicyRequest
|
|
456
461
|
* @return GetSteeringPolicyResponse
|
|
457
462
|
* @throws OciError when an error occurs
|
|
458
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
463
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
|
|
459
464
|
*/
|
|
460
465
|
getSteeringPolicy(getSteeringPolicyRequest: requests.GetSteeringPolicyRequest): Promise<responses.GetSteeringPolicyResponse>;
|
|
461
466
|
/**
|
|
@@ -465,7 +470,7 @@ export declare class DnsClient {
|
|
|
465
470
|
* @param GetSteeringPolicyAttachmentRequest
|
|
466
471
|
* @return GetSteeringPolicyAttachmentResponse
|
|
467
472
|
* @throws OciError when an error occurs
|
|
468
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
473
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
|
|
469
474
|
*/
|
|
470
475
|
getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest: requests.GetSteeringPolicyAttachmentRequest): Promise<responses.GetSteeringPolicyAttachmentResponse>;
|
|
471
476
|
/**
|
|
@@ -475,7 +480,7 @@ export declare class DnsClient {
|
|
|
475
480
|
* @param GetTsigKeyRequest
|
|
476
481
|
* @return GetTsigKeyResponse
|
|
477
482
|
* @throws OciError when an error occurs
|
|
478
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
483
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
|
|
479
484
|
*/
|
|
480
485
|
getTsigKey(getTsigKeyRequest: requests.GetTsigKeyRequest): Promise<responses.GetTsigKeyResponse>;
|
|
481
486
|
/**
|
|
@@ -489,7 +494,7 @@ export declare class DnsClient {
|
|
|
489
494
|
* @param GetViewRequest
|
|
490
495
|
* @return GetViewResponse
|
|
491
496
|
* @throws OciError when an error occurs
|
|
492
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
497
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetView.ts.html |here} to see how to use GetView API.
|
|
493
498
|
*/
|
|
494
499
|
getView(getViewRequest: requests.GetViewRequest): Promise<responses.GetViewResponse>;
|
|
495
500
|
/**
|
|
@@ -502,7 +507,7 @@ export declare class DnsClient {
|
|
|
502
507
|
* @param GetZoneRequest
|
|
503
508
|
* @return GetZoneResponse
|
|
504
509
|
* @throws OciError when an error occurs
|
|
505
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
510
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
|
|
506
511
|
*/
|
|
507
512
|
getZone(getZoneRequest: requests.GetZoneRequest): Promise<responses.GetZoneResponse>;
|
|
508
513
|
/**
|
|
@@ -512,7 +517,7 @@ export declare class DnsClient {
|
|
|
512
517
|
* @param GetZoneContentRequest
|
|
513
518
|
* @return GetZoneContentResponse
|
|
514
519
|
* @throws OciError when an error occurs
|
|
515
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
520
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
|
|
516
521
|
*/
|
|
517
522
|
getZoneContent(getZoneContentRequest: requests.GetZoneContentRequest): Promise<responses.GetZoneContentResponse>;
|
|
518
523
|
/**
|
|
@@ -527,7 +532,7 @@ export declare class DnsClient {
|
|
|
527
532
|
* @param GetZoneRecordsRequest
|
|
528
533
|
* @return GetZoneRecordsResponse
|
|
529
534
|
* @throws OciError when an error occurs
|
|
530
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
535
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
|
|
531
536
|
*/
|
|
532
537
|
getZoneRecords(getZoneRecordsRequest: requests.GetZoneRecordsRequest): Promise<responses.GetZoneRecordsResponse>;
|
|
533
538
|
/**
|
|
@@ -572,7 +577,7 @@ export declare class DnsClient {
|
|
|
572
577
|
* @param ListResolverEndpointsRequest
|
|
573
578
|
* @return ListResolverEndpointsResponse
|
|
574
579
|
* @throws OciError when an error occurs
|
|
575
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
580
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
|
|
576
581
|
*/
|
|
577
582
|
listResolverEndpoints(listResolverEndpointsRequest: requests.ListResolverEndpointsRequest): Promise<responses.ListResolverEndpointsResponse>;
|
|
578
583
|
/**
|
|
@@ -619,7 +624,7 @@ export declare class DnsClient {
|
|
|
619
624
|
* @param ListResolversRequest
|
|
620
625
|
* @return ListResolversResponse
|
|
621
626
|
* @throws OciError when an error occurs
|
|
622
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
627
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
|
|
623
628
|
*/
|
|
624
629
|
listResolvers(listResolversRequest: requests.ListResolversRequest): Promise<responses.ListResolversResponse>;
|
|
625
630
|
/**
|
|
@@ -661,7 +666,7 @@ export declare class DnsClient {
|
|
|
661
666
|
* @param ListSteeringPoliciesRequest
|
|
662
667
|
* @return ListSteeringPoliciesResponse
|
|
663
668
|
* @throws OciError when an error occurs
|
|
664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
669
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
|
|
665
670
|
*/
|
|
666
671
|
listSteeringPolicies(listSteeringPoliciesRequest: requests.ListSteeringPoliciesRequest): Promise<responses.ListSteeringPoliciesResponse>;
|
|
667
672
|
/**
|
|
@@ -703,7 +708,7 @@ export declare class DnsClient {
|
|
|
703
708
|
* @param ListSteeringPolicyAttachmentsRequest
|
|
704
709
|
* @return ListSteeringPolicyAttachmentsResponse
|
|
705
710
|
* @throws OciError when an error occurs
|
|
706
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
711
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
|
|
707
712
|
*/
|
|
708
713
|
listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest: requests.ListSteeringPolicyAttachmentsRequest): Promise<responses.ListSteeringPolicyAttachmentsResponse>;
|
|
709
714
|
/**
|
|
@@ -745,7 +750,7 @@ export declare class DnsClient {
|
|
|
745
750
|
* @param ListTsigKeysRequest
|
|
746
751
|
* @return ListTsigKeysResponse
|
|
747
752
|
* @throws OciError when an error occurs
|
|
748
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
753
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
|
|
749
754
|
*/
|
|
750
755
|
listTsigKeys(listTsigKeysRequest: requests.ListTsigKeysRequest): Promise<responses.ListTsigKeysResponse>;
|
|
751
756
|
/**
|
|
@@ -792,7 +797,7 @@ export declare class DnsClient {
|
|
|
792
797
|
* @param ListViewsRequest
|
|
793
798
|
* @return ListViewsResponse
|
|
794
799
|
* @throws OciError when an error occurs
|
|
795
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
800
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
|
|
796
801
|
*/
|
|
797
802
|
listViews(listViewsRequest: requests.ListViewsRequest): Promise<responses.ListViewsResponse>;
|
|
798
803
|
/**
|
|
@@ -836,7 +841,7 @@ export declare class DnsClient {
|
|
|
836
841
|
* @param ListZoneTransferServersRequest
|
|
837
842
|
* @return ListZoneTransferServersResponse
|
|
838
843
|
* @throws OciError when an error occurs
|
|
839
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
844
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
|
|
840
845
|
*/
|
|
841
846
|
listZoneTransferServers(listZoneTransferServersRequest: requests.ListZoneTransferServersRequest): Promise<responses.ListZoneTransferServersResponse>;
|
|
842
847
|
/**
|
|
@@ -881,7 +886,7 @@ export declare class DnsClient {
|
|
|
881
886
|
* @param ListZonesRequest
|
|
882
887
|
* @return ListZonesResponse
|
|
883
888
|
* @throws OciError when an error occurs
|
|
884
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
889
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
|
|
885
890
|
*/
|
|
886
891
|
listZones(listZonesRequest: requests.ListZonesRequest): Promise<responses.ListZonesResponse>;
|
|
887
892
|
/**
|
|
@@ -928,7 +933,7 @@ export declare class DnsClient {
|
|
|
928
933
|
* @param PatchDomainRecordsRequest
|
|
929
934
|
* @return PatchDomainRecordsResponse
|
|
930
935
|
* @throws OciError when an error occurs
|
|
931
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
936
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
|
|
932
937
|
*/
|
|
933
938
|
patchDomainRecords(patchDomainRecordsRequest: requests.PatchDomainRecordsRequest): Promise<responses.PatchDomainRecordsResponse>;
|
|
934
939
|
/**
|
|
@@ -941,7 +946,7 @@ export declare class DnsClient {
|
|
|
941
946
|
* @param PatchRRSetRequest
|
|
942
947
|
* @return PatchRRSetResponse
|
|
943
948
|
* @throws OciError when an error occurs
|
|
944
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
949
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
|
|
945
950
|
*/
|
|
946
951
|
patchRRSet(patchRRSetRequest: requests.PatchRRSetRequest): Promise<responses.PatchRRSetResponse>;
|
|
947
952
|
/**
|
|
@@ -956,7 +961,7 @@ export declare class DnsClient {
|
|
|
956
961
|
* @param PatchZoneRecordsRequest
|
|
957
962
|
* @return PatchZoneRecordsResponse
|
|
958
963
|
* @throws OciError when an error occurs
|
|
959
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
964
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
|
|
960
965
|
*/
|
|
961
966
|
patchZoneRecords(patchZoneRecordsRequest: requests.PatchZoneRecordsRequest): Promise<responses.PatchZoneRecordsResponse>;
|
|
962
967
|
/**
|
|
@@ -971,7 +976,7 @@ export declare class DnsClient {
|
|
|
971
976
|
* @param UpdateDomainRecordsRequest
|
|
972
977
|
* @return UpdateDomainRecordsResponse
|
|
973
978
|
* @throws OciError when an error occurs
|
|
974
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
979
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
|
|
975
980
|
*/
|
|
976
981
|
updateDomainRecords(updateDomainRecordsRequest: requests.UpdateDomainRecordsRequest): Promise<responses.UpdateDomainRecordsResponse>;
|
|
977
982
|
/**
|
|
@@ -984,7 +989,7 @@ export declare class DnsClient {
|
|
|
984
989
|
* @param UpdateRRSetRequest
|
|
985
990
|
* @return UpdateRRSetResponse
|
|
986
991
|
* @throws OciError when an error occurs
|
|
987
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
992
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
|
|
988
993
|
*/
|
|
989
994
|
updateRRSet(updateRRSetRequest: requests.UpdateRRSetRequest): Promise<responses.UpdateRRSetResponse>;
|
|
990
995
|
/**
|
|
@@ -994,7 +999,7 @@ export declare class DnsClient {
|
|
|
994
999
|
* @param UpdateResolverRequest
|
|
995
1000
|
* @return UpdateResolverResponse
|
|
996
1001
|
* @throws OciError when an error occurs
|
|
997
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1002
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
|
|
998
1003
|
*/
|
|
999
1004
|
updateResolver(updateResolverRequest: requests.UpdateResolverRequest): Promise<responses.UpdateResolverResponse>;
|
|
1000
1005
|
/**
|
|
@@ -1004,7 +1009,7 @@ export declare class DnsClient {
|
|
|
1004
1009
|
* @param UpdateResolverEndpointRequest
|
|
1005
1010
|
* @return UpdateResolverEndpointResponse
|
|
1006
1011
|
* @throws OciError when an error occurs
|
|
1007
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1012
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
|
|
1008
1013
|
*/
|
|
1009
1014
|
updateResolverEndpoint(updateResolverEndpointRequest: requests.UpdateResolverEndpointRequest): Promise<responses.UpdateResolverEndpointResponse>;
|
|
1010
1015
|
/**
|
|
@@ -1014,7 +1019,7 @@ export declare class DnsClient {
|
|
|
1014
1019
|
* @param UpdateSteeringPolicyRequest
|
|
1015
1020
|
* @return UpdateSteeringPolicyResponse
|
|
1016
1021
|
* @throws OciError when an error occurs
|
|
1017
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1022
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
|
|
1018
1023
|
*/
|
|
1019
1024
|
updateSteeringPolicy(updateSteeringPolicyRequest: requests.UpdateSteeringPolicyRequest): Promise<responses.UpdateSteeringPolicyResponse>;
|
|
1020
1025
|
/**
|
|
@@ -1024,7 +1029,7 @@ export declare class DnsClient {
|
|
|
1024
1029
|
* @param UpdateSteeringPolicyAttachmentRequest
|
|
1025
1030
|
* @return UpdateSteeringPolicyAttachmentResponse
|
|
1026
1031
|
* @throws OciError when an error occurs
|
|
1027
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1032
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
|
|
1028
1033
|
*/
|
|
1029
1034
|
updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest: requests.UpdateSteeringPolicyAttachmentRequest): Promise<responses.UpdateSteeringPolicyAttachmentResponse>;
|
|
1030
1035
|
/**
|
|
@@ -1034,7 +1039,7 @@ export declare class DnsClient {
|
|
|
1034
1039
|
* @param UpdateTsigKeyRequest
|
|
1035
1040
|
* @return UpdateTsigKeyResponse
|
|
1036
1041
|
* @throws OciError when an error occurs
|
|
1037
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1042
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
|
|
1038
1043
|
*/
|
|
1039
1044
|
updateTsigKey(updateTsigKeyRequest: requests.UpdateTsigKeyRequest): Promise<responses.UpdateTsigKeyResponse>;
|
|
1040
1045
|
/**
|
|
@@ -1044,7 +1049,7 @@ export declare class DnsClient {
|
|
|
1044
1049
|
* @param UpdateViewRequest
|
|
1045
1050
|
* @return UpdateViewResponse
|
|
1046
1051
|
* @throws OciError when an error occurs
|
|
1047
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1052
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
|
|
1048
1053
|
*/
|
|
1049
1054
|
updateView(updateViewRequest: requests.UpdateViewRequest): Promise<responses.UpdateViewResponse>;
|
|
1050
1055
|
/**
|
|
@@ -1059,7 +1064,7 @@ export declare class DnsClient {
|
|
|
1059
1064
|
* @param UpdateZoneRequest
|
|
1060
1065
|
* @return UpdateZoneResponse
|
|
1061
1066
|
* @throws OciError when an error occurs
|
|
1062
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1067
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
|
|
1063
1068
|
*/
|
|
1064
1069
|
updateZone(updateZoneRequest: requests.UpdateZoneRequest): Promise<responses.UpdateZoneResponse>;
|
|
1065
1070
|
/**
|
|
@@ -1075,7 +1080,8 @@ export declare class DnsClient {
|
|
|
1075
1080
|
* @param UpdateZoneRecordsRequest
|
|
1076
1081
|
* @return UpdateZoneRecordsResponse
|
|
1077
1082
|
* @throws OciError when an error occurs
|
|
1078
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1083
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
|
|
1079
1084
|
*/
|
|
1080
1085
|
updateZoneRecords(updateZoneRecordsRequest: requests.UpdateZoneRecordsRequest): Promise<responses.UpdateZoneRecordsResponse>;
|
|
1081
1086
|
}
|
|
1087
|
+
export {};
|