oci-dns 2.22.0 → 2.26.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 +379 -353
- package/lib/client.js +433 -403
- package/lib/client.js.map +1 -1
- package/lib/model/record-details.d.ts +2 -1
- package/lib/model/record-details.js.map +1 -1
- package/lib/model/record-operation.d.ts +2 -1
- package/lib/model/record-operation.js.map +1 -1
- package/lib/model/record.d.ts +2 -1
- package/lib/model/record.js.map +1 -1
- package/lib/model/resolver-vnic-endpoint-summary.d.ts +2 -1
- package/lib/model/resolver-vnic-endpoint-summary.js.map +1 -1
- package/lib/model/resolver-vnic-endpoint.d.ts +2 -1
- package/lib/model/resolver-vnic-endpoint.js.map +1 -1
- package/lib/model/steering-policy-filter-rule-case.d.ts +1 -1
- package/lib/model/steering-policy-health-rule-case.d.ts +1 -1
- package/lib/model/steering-policy-limit-rule-case.d.ts +1 -1
- package/lib/model/steering-policy-priority-rule-case.d.ts +1 -1
- package/lib/model/steering-policy-weighted-rule-case.d.ts +1 -1
- package/lib/model/tsig-key.d.ts +1 -2
- package/lib/model/tsig-key.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-request.d.ts +6 -3
- package/lib/request/delete-domain-records-request.d.ts +6 -3
- package/lib/request/delete-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/delete-rrset-request.d.ts +6 -3
- 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 +6 -3
- package/lib/request/get-domain-records-request.d.ts +6 -3
- package/lib/request/get-domain-records-request.js.map +1 -1
- package/lib/request/get-resolver-endpoint-request.d.ts +1 -1
- package/lib/request/get-resolver-request.d.ts +1 -1
- package/lib/request/get-rrset-request.d.ts +6 -3
- package/lib/request/get-steering-policy-attachment-request.d.ts +1 -1
- package/lib/request/get-steering-policy-request.d.ts +1 -1
- package/lib/request/get-tsig-key-request.d.ts +1 -1
- package/lib/request/get-view-request.d.ts +1 -1
- package/lib/request/get-zone-content-request.d.ts +1 -1
- package/lib/request/get-zone-records-request.d.ts +6 -3
- package/lib/request/get-zone-records-request.js.map +1 -1
- package/lib/request/get-zone-request.d.ts +6 -3
- 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 +6 -3
- package/lib/request/patch-rrset-request.d.ts +6 -3
- package/lib/request/patch-zone-records-request.d.ts +6 -3
- package/lib/request/update-domain-records-request.d.ts +6 -3
- 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 +6 -3
- 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 +6 -3
- package/lib/request/update-zone-request.d.ts +6 -3
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export declare class DnsClient {
|
|
|
30
30
|
protected "_waiters": DnsWaiter;
|
|
31
31
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
32
32
|
protected _circuitBreaker: null;
|
|
33
|
+
protected _httpOptions: any;
|
|
33
34
|
protected _httpClient: common.HttpClient;
|
|
34
35
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
35
36
|
/**
|
|
@@ -71,80 +72,86 @@ export declare class DnsClient {
|
|
|
71
72
|
*/
|
|
72
73
|
getWaiters(): DnsWaiter;
|
|
73
74
|
/**
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
75
|
+
* Moves a resolver into a different compartment along with its protected default view and any endpoints.
|
|
76
|
+
* <p>
|
|
77
|
+
Zones in the default view are not moved. VCN-dedicated resolvers are initially created in the same compartment
|
|
78
|
+
* as their corresponding VCN, but can then be moved to a different compartment.
|
|
79
|
+
*
|
|
80
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
81
|
+
* @param ChangeResolverCompartmentRequest
|
|
82
|
+
* @return ChangeResolverCompartmentResponse
|
|
83
|
+
* @throws OciError when an error occurs
|
|
84
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ChangeResolverCompartment.ts.html |here} to see how to use ChangeResolverCompartment API.
|
|
85
|
+
*/
|
|
83
86
|
changeResolverCompartment(changeResolverCompartmentRequest: requests.ChangeResolverCompartmentRequest): Promise<responses.ChangeResolverCompartmentResponse>;
|
|
84
87
|
/**
|
|
85
88
|
* Moves a steering policy into a different compartment.
|
|
86
89
|
*
|
|
87
|
-
* This operation
|
|
90
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
88
91
|
* @param ChangeSteeringPolicyCompartmentRequest
|
|
89
92
|
* @return ChangeSteeringPolicyCompartmentResponse
|
|
90
93
|
* @throws OciError when an error occurs
|
|
91
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
94
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ChangeSteeringPolicyCompartment.ts.html |here} to see how to use ChangeSteeringPolicyCompartment API.
|
|
92
95
|
*/
|
|
93
96
|
changeSteeringPolicyCompartment(changeSteeringPolicyCompartmentRequest: requests.ChangeSteeringPolicyCompartmentRequest): Promise<responses.ChangeSteeringPolicyCompartmentResponse>;
|
|
94
97
|
/**
|
|
95
98
|
* Moves a TSIG key into a different compartment.
|
|
96
99
|
*
|
|
97
|
-
* This operation
|
|
100
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
98
101
|
* @param ChangeTsigKeyCompartmentRequest
|
|
99
102
|
* @return ChangeTsigKeyCompartmentResponse
|
|
100
103
|
* @throws OciError when an error occurs
|
|
101
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
104
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ChangeTsigKeyCompartment.ts.html |here} to see how to use ChangeTsigKeyCompartment API.
|
|
102
105
|
*/
|
|
103
106
|
changeTsigKeyCompartment(changeTsigKeyCompartmentRequest: requests.ChangeTsigKeyCompartmentRequest): Promise<responses.ChangeTsigKeyCompartmentResponse>;
|
|
104
107
|
/**
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
108
|
+
* Moves a view into a different compartment.
|
|
109
|
+
* <p>
|
|
110
|
+
To change the compartment of a protected view, change the compartment of its corresponding resolver.
|
|
111
|
+
*
|
|
112
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
113
|
+
* @param ChangeViewCompartmentRequest
|
|
114
|
+
* @return ChangeViewCompartmentResponse
|
|
115
|
+
* @throws OciError when an error occurs
|
|
116
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ChangeViewCompartment.ts.html |here} to see how to use ChangeViewCompartment API.
|
|
117
|
+
*/
|
|
114
118
|
changeViewCompartment(changeViewCompartmentRequest: requests.ChangeViewCompartmentRequest): Promise<responses.ChangeViewCompartmentResponse>;
|
|
115
119
|
/**
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
120
|
+
* Moves a zone into a different compartment.
|
|
121
|
+
* <p>
|
|
122
|
+
Protected zones cannot have their compartment changed. When the zone name is provided as a path
|
|
123
|
+
* parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is
|
|
124
|
+
* required.
|
|
125
|
+
* <p>
|
|
126
|
+
**Note:** All SteeringPolicyAttachment objects associated with this zone will also be moved into
|
|
127
|
+
* the provided compartment.
|
|
128
|
+
*
|
|
129
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
130
|
+
* @param ChangeZoneCompartmentRequest
|
|
131
|
+
* @return ChangeZoneCompartmentResponse
|
|
132
|
+
* @throws OciError when an error occurs
|
|
133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ChangeZoneCompartment.ts.html |here} to see how to use ChangeZoneCompartment API.
|
|
134
|
+
*/
|
|
128
135
|
changeZoneCompartment(changeZoneCompartmentRequest: requests.ChangeZoneCompartmentRequest): Promise<responses.ChangeZoneCompartmentResponse>;
|
|
129
136
|
/**
|
|
130
|
-
* Creates a new resolver endpoint
|
|
137
|
+
* Creates a new resolver endpoint in the same compartment as the resolver.
|
|
131
138
|
*
|
|
132
|
-
* This operation
|
|
139
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
133
140
|
* @param CreateResolverEndpointRequest
|
|
134
141
|
* @return CreateResolverEndpointResponse
|
|
135
142
|
* @throws OciError when an error occurs
|
|
136
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
143
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/CreateResolverEndpoint.ts.html |here} to see how to use CreateResolverEndpoint API.
|
|
137
144
|
*/
|
|
138
145
|
createResolverEndpoint(createResolverEndpointRequest: requests.CreateResolverEndpointRequest): Promise<responses.CreateResolverEndpointResponse>;
|
|
139
146
|
/**
|
|
140
147
|
* Creates a new steering policy in the specified compartment. For more information on
|
|
141
148
|
* creating policies with templates, see [Traffic Management API Guide](https://docs.cloud.oracle.com/iaas/Content/TrafficManagement/Concepts/trafficmanagementapi.htm).
|
|
142
149
|
*
|
|
143
|
-
* This operation
|
|
150
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
144
151
|
* @param CreateSteeringPolicyRequest
|
|
145
152
|
* @return CreateSteeringPolicyResponse
|
|
146
153
|
* @throws OciError when an error occurs
|
|
147
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
154
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/CreateSteeringPolicy.ts.html |here} to see how to use CreateSteeringPolicy API.
|
|
148
155
|
*/
|
|
149
156
|
createSteeringPolicy(createSteeringPolicyRequest: requests.CreateSteeringPolicyRequest): Promise<responses.CreateSteeringPolicyResponse>;
|
|
150
157
|
/**
|
|
@@ -155,159 +162,164 @@ export declare class DnsClient {
|
|
|
155
162
|
For the purposes of access control, the attachment is automatically placed
|
|
156
163
|
* into the same compartment as the domain's zone.
|
|
157
164
|
*
|
|
158
|
-
* This operation
|
|
165
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
159
166
|
* @param CreateSteeringPolicyAttachmentRequest
|
|
160
167
|
* @return CreateSteeringPolicyAttachmentResponse
|
|
161
168
|
* @throws OciError when an error occurs
|
|
162
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
169
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/CreateSteeringPolicyAttachment.ts.html |here} to see how to use CreateSteeringPolicyAttachment API.
|
|
163
170
|
*/
|
|
164
171
|
createSteeringPolicyAttachment(createSteeringPolicyAttachmentRequest: requests.CreateSteeringPolicyAttachmentRequest): Promise<responses.CreateSteeringPolicyAttachmentResponse>;
|
|
165
172
|
/**
|
|
166
173
|
* Creates a new TSIG key in the specified compartment. There is no
|
|
167
174
|
* `opc-retry-token` header since TSIG key names must be globally unique.
|
|
168
175
|
*
|
|
169
|
-
* This operation
|
|
176
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
170
177
|
* @param CreateTsigKeyRequest
|
|
171
178
|
* @return CreateTsigKeyResponse
|
|
172
179
|
* @throws OciError when an error occurs
|
|
173
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
180
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/CreateTsigKey.ts.html |here} to see how to use CreateTsigKey API.
|
|
174
181
|
*/
|
|
175
182
|
createTsigKey(createTsigKeyRequest: requests.CreateTsigKeyRequest): Promise<responses.CreateTsigKeyResponse>;
|
|
176
183
|
/**
|
|
177
|
-
* Creates a new view in the specified compartment.
|
|
184
|
+
* Creates a new view in the specified compartment.
|
|
178
185
|
*
|
|
179
|
-
* This operation
|
|
186
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
180
187
|
* @param CreateViewRequest
|
|
181
188
|
* @return CreateViewResponse
|
|
182
189
|
* @throws OciError when an error occurs
|
|
183
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
190
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/CreateView.ts.html |here} to see how to use CreateView API.
|
|
184
191
|
*/
|
|
185
192
|
createView(createViewRequest: requests.CreateViewRequest): Promise<responses.CreateViewResponse>;
|
|
186
193
|
/**
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
*/
|
|
194
|
+
* Creates a new zone in the specified compartment.
|
|
195
|
+
* <p>
|
|
196
|
+
Private zones must have a zone type of `PRIMARY`. Creating a private zone at or under `oraclevcn.com`
|
|
197
|
+
* within the default protected view of a VCN-dedicated resolver is not permitted.
|
|
198
|
+
*
|
|
199
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
200
|
+
* @param CreateZoneRequest
|
|
201
|
+
* @return CreateZoneResponse
|
|
202
|
+
* @throws OciError when an error occurs
|
|
203
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/CreateZone.ts.html |here} to see how to use CreateZone API.
|
|
204
|
+
*/
|
|
199
205
|
createZone(createZoneRequest: requests.CreateZoneRequest): Promise<responses.CreateZoneResponse>;
|
|
200
206
|
/**
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
207
|
+
* Deletes all records at the specified zone and domain.
|
|
208
|
+
* <p>
|
|
209
|
+
When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter
|
|
210
|
+
* then the viewId query parameter is required.
|
|
211
|
+
*
|
|
212
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
213
|
+
* @param DeleteDomainRecordsRequest
|
|
214
|
+
* @return DeleteDomainRecordsResponse
|
|
215
|
+
* @throws OciError when an error occurs
|
|
216
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/DeleteDomainRecords.ts.html |here} to see how to use DeleteDomainRecords API.
|
|
217
|
+
*/
|
|
211
218
|
deleteDomainRecords(deleteDomainRecordsRequest: requests.DeleteDomainRecordsRequest): Promise<responses.DeleteDomainRecordsResponse>;
|
|
212
219
|
/**
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
220
|
+
* Deletes all records in the specified RRSet.
|
|
221
|
+
* <p>
|
|
222
|
+
When the zone name is provided as a path parameter and `PRIVATE` is used for the scope
|
|
223
|
+
* query parameter then the viewId query parameter is required.
|
|
224
|
+
*
|
|
225
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
226
|
+
* @param DeleteRRSetRequest
|
|
227
|
+
* @return DeleteRRSetResponse
|
|
228
|
+
* @throws OciError when an error occurs
|
|
229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/DeleteRRSet.ts.html |here} to see how to use DeleteRRSet API.
|
|
230
|
+
*/
|
|
223
231
|
deleteRRSet(deleteRRSetRequest: requests.DeleteRRSetRequest): Promise<responses.DeleteRRSetResponse>;
|
|
224
232
|
/**
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
233
|
+
* Deletes the specified resolver endpoint.
|
|
234
|
+
* <p>
|
|
235
|
+
Note that attempting to delete a resolver endpoint in the DELETED lifecycle state will result in
|
|
236
|
+
* a `404` response to be consistent with other operations of the API. Resolver endpoints may not
|
|
237
|
+
* be deleted if they are referenced by a resolver rule.
|
|
238
|
+
*
|
|
239
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
240
|
+
* @param DeleteResolverEndpointRequest
|
|
241
|
+
* @return DeleteResolverEndpointResponse
|
|
242
|
+
* @throws OciError when an error occurs
|
|
243
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/DeleteResolverEndpoint.ts.html |here} to see how to use DeleteResolverEndpoint API.
|
|
244
|
+
*/
|
|
236
245
|
deleteResolverEndpoint(deleteResolverEndpointRequest: requests.DeleteResolverEndpointRequest): Promise<responses.DeleteResolverEndpointResponse>;
|
|
237
246
|
/**
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
247
|
+
* Deletes the specified steering policy.
|
|
248
|
+
* <p>
|
|
249
|
+
A `204` response indicates that the delete has been successful.
|
|
250
|
+
* Deletion will fail if the policy is attached to any zones. To detach a
|
|
251
|
+
* policy from a zone, see `DeleteSteeringPolicyAttachment`.
|
|
252
|
+
*
|
|
253
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
254
|
+
* @param DeleteSteeringPolicyRequest
|
|
255
|
+
* @return DeleteSteeringPolicyResponse
|
|
256
|
+
* @throws OciError when an error occurs
|
|
257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/DeleteSteeringPolicy.ts.html |here} to see how to use DeleteSteeringPolicy API.
|
|
258
|
+
*/
|
|
249
259
|
deleteSteeringPolicy(deleteSteeringPolicyRequest: requests.DeleteSteeringPolicyRequest): Promise<responses.DeleteSteeringPolicyResponse>;
|
|
250
260
|
/**
|
|
251
261
|
* Deletes the specified steering policy attachment.
|
|
252
262
|
* A `204` response indicates that the delete has been successful.
|
|
253
263
|
*
|
|
254
|
-
* This operation
|
|
264
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
255
265
|
* @param DeleteSteeringPolicyAttachmentRequest
|
|
256
266
|
* @return DeleteSteeringPolicyAttachmentResponse
|
|
257
267
|
* @throws OciError when an error occurs
|
|
258
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
268
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/DeleteSteeringPolicyAttachment.ts.html |here} to see how to use DeleteSteeringPolicyAttachment API.
|
|
259
269
|
*/
|
|
260
270
|
deleteSteeringPolicyAttachment(deleteSteeringPolicyAttachmentRequest: requests.DeleteSteeringPolicyAttachmentRequest): Promise<responses.DeleteSteeringPolicyAttachmentResponse>;
|
|
261
271
|
/**
|
|
262
272
|
* Deletes the specified TSIG key.
|
|
263
273
|
*
|
|
264
|
-
* This operation
|
|
274
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
265
275
|
* @param DeleteTsigKeyRequest
|
|
266
276
|
* @return DeleteTsigKeyResponse
|
|
267
277
|
* @throws OciError when an error occurs
|
|
268
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
278
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/DeleteTsigKey.ts.html |here} to see how to use DeleteTsigKey API.
|
|
269
279
|
*/
|
|
270
280
|
deleteTsigKey(deleteTsigKeyRequest: requests.DeleteTsigKeyRequest): Promise<responses.DeleteTsigKeyResponse>;
|
|
271
281
|
/**
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
282
|
+
* Deletes the specified view.
|
|
283
|
+
* <p>
|
|
284
|
+
Note that attempting to delete a view in the DELETED lifecycleState will result in a `404`
|
|
285
|
+
* response to be consistent with other operations of the API. Views cannot be
|
|
286
|
+
* deleted if they are referenced by non-deleted zones or resolvers.
|
|
287
|
+
* Protected views cannot be deleted.
|
|
288
|
+
*
|
|
289
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
290
|
+
* @param DeleteViewRequest
|
|
291
|
+
* @return DeleteViewResponse
|
|
292
|
+
* @throws OciError when an error occurs
|
|
293
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/DeleteView.ts.html |here} to see how to use DeleteView API.
|
|
294
|
+
*/
|
|
284
295
|
deleteView(deleteViewRequest: requests.DeleteViewRequest): Promise<responses.DeleteViewResponse>;
|
|
285
296
|
/**
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
+
* Deletes the specified zone and all its steering policy attachments.
|
|
298
|
+
* <p>
|
|
299
|
+
A `204` response indicates that the zone has been successfully deleted. Protected zones cannot be deleted.
|
|
300
|
+
* When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter
|
|
301
|
+
* then the viewId query parameter is required.
|
|
302
|
+
*
|
|
303
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
304
|
+
* @param DeleteZoneRequest
|
|
305
|
+
* @return DeleteZoneResponse
|
|
306
|
+
* @throws OciError when an error occurs
|
|
307
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/DeleteZone.ts.html |here} to see how to use DeleteZone API.
|
|
308
|
+
*/
|
|
297
309
|
deleteZone(deleteZoneRequest: requests.DeleteZoneRequest): Promise<responses.DeleteZoneResponse>;
|
|
298
310
|
/**
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
+
* Gets a list of all records at the specified zone and domain.
|
|
312
|
+
* <p>
|
|
313
|
+
The results are sorted by `rtype` in alphabetical order by default. You can optionally filter and/or sort
|
|
314
|
+
* the results using the listed parameters. When the zone name is provided as a path parameter and `PRIVATE`
|
|
315
|
+
* is used for the scope query parameter then the viewId query parameter is required.
|
|
316
|
+
*
|
|
317
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
318
|
+
* @param GetDomainRecordsRequest
|
|
319
|
+
* @return GetDomainRecordsResponse
|
|
320
|
+
* @throws OciError when an error occurs
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetDomainRecords.ts.html |here} to see how to use GetDomainRecords API.
|
|
322
|
+
*/
|
|
311
323
|
getDomainRecords(getDomainRecordsRequest: requests.GetDomainRecordsRequest): Promise<responses.GetDomainRecordsResponse>;
|
|
312
324
|
/**
|
|
313
325
|
* NOTE: This function is deprecated in favor of getDomainRecordsRecordIterator function.
|
|
@@ -342,17 +354,17 @@ export declare class DnsClient {
|
|
|
342
354
|
*/
|
|
343
355
|
getDomainRecordsResponseIterator(request: requests.GetDomainRecordsRequest): AsyncIterableIterator<responses.GetDomainRecordsResponse>;
|
|
344
356
|
/**
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
357
|
+
* Gets a list of all records in the specified RRSet.
|
|
358
|
+
* <p>
|
|
359
|
+
The results are sorted by `recordHash` by default. When the zone name is provided as a path parameter
|
|
360
|
+
* and `PRIVATE` is used for the scope query parameter then the viewId query parameter is required.
|
|
361
|
+
*
|
|
362
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
363
|
+
* @param GetRRSetRequest
|
|
364
|
+
* @return GetRRSetResponse
|
|
365
|
+
* @throws OciError when an error occurs
|
|
366
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetRRSet.ts.html |here} to see how to use GetRRSet API.
|
|
367
|
+
*/
|
|
356
368
|
getRRSet(getRRSetRequest: requests.GetRRSetRequest): Promise<responses.GetRRSetResponse>;
|
|
357
369
|
/**
|
|
358
370
|
* NOTE: This function is deprecated in favor of getRRSetRecordIterator function.
|
|
@@ -387,106 +399,112 @@ export declare class DnsClient {
|
|
|
387
399
|
*/
|
|
388
400
|
getRRSetResponseIterator(request: requests.GetRRSetRequest): AsyncIterableIterator<responses.GetRRSetResponse>;
|
|
389
401
|
/**
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
402
|
+
* Gets information about a specific resolver.
|
|
403
|
+
* <p>
|
|
404
|
+
Note that attempting to get a resolver in the DELETED lifecycleState will result in a `404`
|
|
405
|
+
* response to be consistent with other operations of the API.
|
|
406
|
+
*
|
|
407
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
408
|
+
* @param GetResolverRequest
|
|
409
|
+
* @return GetResolverResponse
|
|
410
|
+
* @throws OciError when an error occurs
|
|
411
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetResolver.ts.html |here} to see how to use GetResolver API.
|
|
412
|
+
*/
|
|
400
413
|
getResolver(getResolverRequest: requests.GetResolverRequest): Promise<responses.GetResolverResponse>;
|
|
401
414
|
/**
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
415
|
+
* Gets information about a specific resolver endpoint.
|
|
416
|
+
* <p>
|
|
417
|
+
Note that attempting to get a resolver endpoint in the DELETED lifecycle state will result
|
|
418
|
+
* in a `404` response to be consistent with other operations of the API.
|
|
419
|
+
*
|
|
420
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
421
|
+
* @param GetResolverEndpointRequest
|
|
422
|
+
* @return GetResolverEndpointResponse
|
|
423
|
+
* @throws OciError when an error occurs
|
|
424
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetResolverEndpoint.ts.html |here} to see how to use GetResolverEndpoint API.
|
|
425
|
+
*/
|
|
412
426
|
getResolverEndpoint(getResolverEndpointRequest: requests.GetResolverEndpointRequest): Promise<responses.GetResolverEndpointResponse>;
|
|
413
427
|
/**
|
|
414
428
|
* Gets information about the specified steering policy.
|
|
415
429
|
*
|
|
416
|
-
* This operation
|
|
430
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
417
431
|
* @param GetSteeringPolicyRequest
|
|
418
432
|
* @return GetSteeringPolicyResponse
|
|
419
433
|
* @throws OciError when an error occurs
|
|
420
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetSteeringPolicy.ts.html |here} to see how to use GetSteeringPolicy API.
|
|
421
435
|
*/
|
|
422
436
|
getSteeringPolicy(getSteeringPolicyRequest: requests.GetSteeringPolicyRequest): Promise<responses.GetSteeringPolicyResponse>;
|
|
423
437
|
/**
|
|
424
438
|
* Gets information about the specified steering policy attachment.
|
|
425
439
|
*
|
|
426
|
-
* This operation
|
|
440
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
427
441
|
* @param GetSteeringPolicyAttachmentRequest
|
|
428
442
|
* @return GetSteeringPolicyAttachmentResponse
|
|
429
443
|
* @throws OciError when an error occurs
|
|
430
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
444
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetSteeringPolicyAttachment.ts.html |here} to see how to use GetSteeringPolicyAttachment API.
|
|
431
445
|
*/
|
|
432
446
|
getSteeringPolicyAttachment(getSteeringPolicyAttachmentRequest: requests.GetSteeringPolicyAttachmentRequest): Promise<responses.GetSteeringPolicyAttachmentResponse>;
|
|
433
447
|
/**
|
|
434
448
|
* Gets information about the specified TSIG key.
|
|
435
449
|
*
|
|
436
|
-
* This operation
|
|
450
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
437
451
|
* @param GetTsigKeyRequest
|
|
438
452
|
* @return GetTsigKeyResponse
|
|
439
453
|
* @throws OciError when an error occurs
|
|
440
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
454
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetTsigKey.ts.html |here} to see how to use GetTsigKey API.
|
|
441
455
|
*/
|
|
442
456
|
getTsigKey(getTsigKeyRequest: requests.GetTsigKeyRequest): Promise<responses.GetTsigKeyResponse>;
|
|
443
457
|
/**
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
458
|
+
* Gets information about a specific view.
|
|
459
|
+
* <p>
|
|
460
|
+
Note that attempting to get a
|
|
461
|
+
* view in the DELETED lifecycleState will result in a `404` response to be
|
|
462
|
+
* consistent with other operations of the API.
|
|
463
|
+
*
|
|
464
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
465
|
+
* @param GetViewRequest
|
|
466
|
+
* @return GetViewResponse
|
|
467
|
+
* @throws OciError when an error occurs
|
|
468
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetView.ts.html |here} to see how to use GetView API.
|
|
469
|
+
*/
|
|
454
470
|
getView(getViewRequest: requests.GetViewRequest): Promise<responses.GetViewResponse>;
|
|
455
471
|
/**
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
472
|
+
* Gets information about the specified zone, including its creation date, zone type, and serial.
|
|
473
|
+
* <p>
|
|
474
|
+
When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query
|
|
475
|
+
* parameter then the viewId query parameter is required.
|
|
476
|
+
*
|
|
477
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
478
|
+
* @param GetZoneRequest
|
|
479
|
+
* @return GetZoneResponse
|
|
480
|
+
* @throws OciError when an error occurs
|
|
481
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetZone.ts.html |here} to see how to use GetZone API.
|
|
482
|
+
*/
|
|
466
483
|
getZone(getZoneRequest: requests.GetZoneRequest): Promise<responses.GetZoneResponse>;
|
|
467
484
|
/**
|
|
468
485
|
* Gets the requested zone's zone file.
|
|
469
486
|
*
|
|
470
|
-
* This operation
|
|
487
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
471
488
|
* @param GetZoneContentRequest
|
|
472
489
|
* @return GetZoneContentResponse
|
|
473
490
|
* @throws OciError when an error occurs
|
|
474
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
491
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetZoneContent.ts.html |here} to see how to use GetZoneContent API.
|
|
475
492
|
*/
|
|
476
493
|
getZoneContent(getZoneContentRequest: requests.GetZoneContentRequest): Promise<responses.GetZoneContentResponse>;
|
|
477
494
|
/**
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
495
|
+
* Gets all records in the specified zone.
|
|
496
|
+
* <p>
|
|
497
|
+
The results are sorted by `domain` in alphabetical order by default. For more information about records,
|
|
498
|
+
* see [Resource Record (RR) TYPEs](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4).
|
|
499
|
+
* When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter
|
|
500
|
+
* then the viewId query parameter is required.
|
|
501
|
+
*
|
|
502
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
503
|
+
* @param GetZoneRecordsRequest
|
|
504
|
+
* @return GetZoneRecordsResponse
|
|
505
|
+
* @throws OciError when an error occurs
|
|
506
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/GetZoneRecords.ts.html |here} to see how to use GetZoneRecords API.
|
|
507
|
+
*/
|
|
490
508
|
getZoneRecords(getZoneRecordsRequest: requests.GetZoneRecordsRequest): Promise<responses.GetZoneRecordsResponse>;
|
|
491
509
|
/**
|
|
492
510
|
* NOTE: This function is deprecated in favor of getZoneRecordsRecordIterator function.
|
|
@@ -524,13 +542,13 @@ export declare class DnsClient {
|
|
|
524
542
|
* Gets a list of all endpoints within a resolver. The collection can be filtered by name or lifecycle state.
|
|
525
543
|
* It can be sorted on creation time or name both in ASC or DESC order. Note that when no lifecycleState
|
|
526
544
|
* query parameter is provided, the collection does not include resolver endpoints in the DELETED
|
|
527
|
-
* lifecycle state to be consistent with other operations of the API.
|
|
545
|
+
* lifecycle state to be consistent with other operations of the API.
|
|
528
546
|
*
|
|
529
|
-
* This operation
|
|
547
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
530
548
|
* @param ListResolverEndpointsRequest
|
|
531
549
|
* @return ListResolverEndpointsResponse
|
|
532
550
|
* @throws OciError when an error occurs
|
|
533
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
551
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ListResolverEndpoints.ts.html |here} to see how to use ListResolverEndpoints API.
|
|
534
552
|
*/
|
|
535
553
|
listResolverEndpoints(listResolverEndpointsRequest: requests.ListResolverEndpointsRequest): Promise<responses.ListResolverEndpointsResponse>;
|
|
536
554
|
/**
|
|
@@ -566,19 +584,19 @@ export declare class DnsClient {
|
|
|
566
584
|
*/
|
|
567
585
|
listResolverEndpointsResponseIterator(request: requests.ListResolverEndpointsRequest): AsyncIterableIterator<responses.ListResolverEndpointsResponse>;
|
|
568
586
|
/**
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
587
|
+
* Gets a list of all resolvers within a compartment.
|
|
588
|
+
* <p>
|
|
589
|
+
The collection can be filtered by display name, id, or lifecycle state. It can be sorted
|
|
590
|
+
* on creation time or displayName both in ASC or DESC order. Note that when no lifecycleState
|
|
591
|
+
* query parameter is provided, the collection does not include resolvers in the DELETED
|
|
592
|
+
* lifecycleState to be consistent with other operations of the API.
|
|
593
|
+
*
|
|
594
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
595
|
+
* @param ListResolversRequest
|
|
596
|
+
* @return ListResolversResponse
|
|
597
|
+
* @throws OciError when an error occurs
|
|
598
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ListResolvers.ts.html |here} to see how to use ListResolvers API.
|
|
599
|
+
*/
|
|
582
600
|
listResolvers(listResolversRequest: requests.ListResolversRequest): Promise<responses.ListResolversResponse>;
|
|
583
601
|
/**
|
|
584
602
|
* NOTE: This function is deprecated in favor of listResolversRecordIterator function.
|
|
@@ -615,11 +633,11 @@ export declare class DnsClient {
|
|
|
615
633
|
/**
|
|
616
634
|
* Gets a list of all steering policies in the specified compartment.
|
|
617
635
|
*
|
|
618
|
-
* This operation
|
|
636
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
619
637
|
* @param ListSteeringPoliciesRequest
|
|
620
638
|
* @return ListSteeringPoliciesResponse
|
|
621
639
|
* @throws OciError when an error occurs
|
|
622
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
640
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ListSteeringPolicies.ts.html |here} to see how to use ListSteeringPolicies API.
|
|
623
641
|
*/
|
|
624
642
|
listSteeringPolicies(listSteeringPoliciesRequest: requests.ListSteeringPoliciesRequest): Promise<responses.ListSteeringPoliciesResponse>;
|
|
625
643
|
/**
|
|
@@ -657,11 +675,11 @@ export declare class DnsClient {
|
|
|
657
675
|
/**
|
|
658
676
|
* Lists the steering policy attachments in the specified compartment.
|
|
659
677
|
*
|
|
660
|
-
* This operation
|
|
678
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
661
679
|
* @param ListSteeringPolicyAttachmentsRequest
|
|
662
680
|
* @return ListSteeringPolicyAttachmentsResponse
|
|
663
681
|
* @throws OciError when an error occurs
|
|
664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
682
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ListSteeringPolicyAttachments.ts.html |here} to see how to use ListSteeringPolicyAttachments API.
|
|
665
683
|
*/
|
|
666
684
|
listSteeringPolicyAttachments(listSteeringPolicyAttachmentsRequest: requests.ListSteeringPolicyAttachmentsRequest): Promise<responses.ListSteeringPolicyAttachmentsResponse>;
|
|
667
685
|
/**
|
|
@@ -699,11 +717,11 @@ export declare class DnsClient {
|
|
|
699
717
|
/**
|
|
700
718
|
* Gets a list of all TSIG keys in the specified compartment.
|
|
701
719
|
*
|
|
702
|
-
* This operation
|
|
720
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
703
721
|
* @param ListTsigKeysRequest
|
|
704
722
|
* @return ListTsigKeysResponse
|
|
705
723
|
* @throws OciError when an error occurs
|
|
706
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
724
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ListTsigKeys.ts.html |here} to see how to use ListTsigKeys API.
|
|
707
725
|
*/
|
|
708
726
|
listTsigKeys(listTsigKeysRequest: requests.ListTsigKeysRequest): Promise<responses.ListTsigKeysResponse>;
|
|
709
727
|
/**
|
|
@@ -739,19 +757,19 @@ export declare class DnsClient {
|
|
|
739
757
|
*/
|
|
740
758
|
listTsigKeysResponseIterator(request: requests.ListTsigKeysRequest): AsyncIterableIterator<responses.ListTsigKeysResponse>;
|
|
741
759
|
/**
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
760
|
+
* Gets a list of all views within a compartment.
|
|
761
|
+
* <p>
|
|
762
|
+
The collection can be filtered by display name, id, or lifecycle state. It can be sorted
|
|
763
|
+
* on creation time or displayName both in ASC or DESC order. Note that when no lifecycleState
|
|
764
|
+
* query parameter is provided, the collection does not include views in the DELETED
|
|
765
|
+
* lifecycleState to be consistent with other operations of the API.
|
|
766
|
+
*
|
|
767
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
768
|
+
* @param ListViewsRequest
|
|
769
|
+
* @return ListViewsResponse
|
|
770
|
+
* @throws OciError when an error occurs
|
|
771
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ListViews.ts.html |here} to see how to use ListViews API.
|
|
772
|
+
*/
|
|
755
773
|
listViews(listViewsRequest: requests.ListViewsRequest): Promise<responses.ListViewsResponse>;
|
|
756
774
|
/**
|
|
757
775
|
* NOTE: This function is deprecated in favor of listViewsRecordIterator function.
|
|
@@ -790,11 +808,11 @@ export declare class DnsClient {
|
|
|
790
808
|
* compartment (which must be the root compartment of a tenancy) that transfer zone data with external master or
|
|
791
809
|
* downstream nameservers.
|
|
792
810
|
*
|
|
793
|
-
* This operation
|
|
811
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
794
812
|
* @param ListZoneTransferServersRequest
|
|
795
813
|
* @return ListZoneTransferServersResponse
|
|
796
814
|
* @throws OciError when an error occurs
|
|
797
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
815
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ListZoneTransferServers.ts.html |here} to see how to use ListZoneTransferServers API.
|
|
798
816
|
*/
|
|
799
817
|
listZoneTransferServers(listZoneTransferServersRequest: requests.ListZoneTransferServersRequest): Promise<responses.ListZoneTransferServersResponse>;
|
|
800
818
|
/**
|
|
@@ -830,15 +848,17 @@ export declare class DnsClient {
|
|
|
830
848
|
*/
|
|
831
849
|
listZoneTransferServersResponseIterator(request: requests.ListZoneTransferServersRequest): AsyncIterableIterator<responses.ListZoneTransferServersResponse>;
|
|
832
850
|
/**
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
851
|
+
* Gets a list of all zones in the specified compartment.
|
|
852
|
+
* <p>
|
|
853
|
+
The collection can be filtered by name, time created, scope, associated view, and zone type.
|
|
854
|
+
* Filtering by view is only supported for private zones.
|
|
855
|
+
*
|
|
856
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
857
|
+
* @param ListZonesRequest
|
|
858
|
+
* @return ListZonesResponse
|
|
859
|
+
* @throws OciError when an error occurs
|
|
860
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/ListZones.ts.html |here} to see how to use ListZones API.
|
|
861
|
+
*/
|
|
842
862
|
listZones(listZonesRequest: requests.ListZonesRequest): Promise<responses.ListZonesResponse>;
|
|
843
863
|
/**
|
|
844
864
|
* NOTE: This function is deprecated in favor of listZonesRecordIterator function.
|
|
@@ -873,159 +893,165 @@ export declare class DnsClient {
|
|
|
873
893
|
*/
|
|
874
894
|
listZonesResponseIterator(request: requests.ListZonesRequest): AsyncIterableIterator<responses.ListZonesResponse>;
|
|
875
895
|
/**
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
896
|
+
* Updates records in the specified zone at a domain.
|
|
897
|
+
* <p>
|
|
898
|
+
You can update one record or all records for the specified zone depending on the changes provided in the
|
|
899
|
+
* request body. You can also add or remove records using this function. When the zone name is provided as
|
|
900
|
+
* a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is
|
|
901
|
+
* required.
|
|
902
|
+
*
|
|
903
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
904
|
+
* @param PatchDomainRecordsRequest
|
|
905
|
+
* @return PatchDomainRecordsResponse
|
|
906
|
+
* @throws OciError when an error occurs
|
|
907
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/PatchDomainRecords.ts.html |here} to see how to use PatchDomainRecords API.
|
|
908
|
+
*/
|
|
888
909
|
patchDomainRecords(patchDomainRecordsRequest: requests.PatchDomainRecordsRequest): Promise<responses.PatchDomainRecordsResponse>;
|
|
889
910
|
/**
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
911
|
+
* Updates records in the specified RRSet.
|
|
912
|
+
* <p>
|
|
913
|
+
When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query
|
|
914
|
+
* parameter then the viewId query parameter is required.
|
|
915
|
+
*
|
|
916
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
917
|
+
* @param PatchRRSetRequest
|
|
918
|
+
* @return PatchRRSetResponse
|
|
919
|
+
* @throws OciError when an error occurs
|
|
920
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/PatchRRSet.ts.html |here} to see how to use PatchRRSet API.
|
|
921
|
+
*/
|
|
900
922
|
patchRRSet(patchRRSetRequest: requests.PatchRRSetRequest): Promise<responses.PatchRRSetResponse>;
|
|
901
923
|
/**
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
924
|
+
* Updates a collection of records in the specified zone.
|
|
925
|
+
* <p>
|
|
926
|
+
You can update one record or all records for the specified zone depending on the changes provided in the
|
|
927
|
+
* request body. You can also add or remove records using this function. When the zone name is provided as
|
|
928
|
+
* a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is
|
|
929
|
+
* required.
|
|
930
|
+
*
|
|
931
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
932
|
+
* @param PatchZoneRecordsRequest
|
|
933
|
+
* @return PatchZoneRecordsResponse
|
|
934
|
+
* @throws OciError when an error occurs
|
|
935
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/PatchZoneRecords.ts.html |here} to see how to use PatchZoneRecords API.
|
|
936
|
+
*/
|
|
914
937
|
patchZoneRecords(patchZoneRecordsRequest: requests.PatchZoneRecordsRequest): Promise<responses.PatchZoneRecordsResponse>;
|
|
915
938
|
/**
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
939
|
+
* Replaces records in the specified zone at a domain with the records specified in the request body.
|
|
940
|
+
* <p>
|
|
941
|
+
If a specified record does not exist, it will be created. If the record exists, then it will be updated to
|
|
942
|
+
* represent the record in the body of the request. If a record in the zone does not exist in the request body,
|
|
943
|
+
* the record will be removed from the zone. When the zone name is provided as a path parameter and `PRIVATE`
|
|
944
|
+
* is used for the scope query parameter then the viewId query parameter is required.
|
|
945
|
+
*
|
|
946
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
947
|
+
* @param UpdateDomainRecordsRequest
|
|
948
|
+
* @return UpdateDomainRecordsResponse
|
|
949
|
+
* @throws OciError when an error occurs
|
|
950
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateDomainRecords.ts.html |here} to see how to use UpdateDomainRecords API.
|
|
951
|
+
*/
|
|
929
952
|
updateDomainRecords(updateDomainRecordsRequest: requests.UpdateDomainRecordsRequest): Promise<responses.UpdateDomainRecordsResponse>;
|
|
930
953
|
/**
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
954
|
+
* Replaces records in the specified RRSet.
|
|
955
|
+
* <p>
|
|
956
|
+
When the zone name is provided as a path parameter and `PRIVATE` is used for the scope
|
|
957
|
+
* query parameter then the viewId query parameter is required.
|
|
958
|
+
*
|
|
959
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
960
|
+
* @param UpdateRRSetRequest
|
|
961
|
+
* @return UpdateRRSetResponse
|
|
962
|
+
* @throws OciError when an error occurs
|
|
963
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateRRSet.ts.html |here} to see how to use UpdateRRSet API.
|
|
964
|
+
*/
|
|
941
965
|
updateRRSet(updateRRSetRequest: requests.UpdateRRSetRequest): Promise<responses.UpdateRRSetResponse>;
|
|
942
966
|
/**
|
|
943
|
-
* Updates the specified resolver with your new information.
|
|
967
|
+
* Updates the specified resolver with your new information.
|
|
944
968
|
*
|
|
945
|
-
* This operation
|
|
969
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
946
970
|
* @param UpdateResolverRequest
|
|
947
971
|
* @return UpdateResolverResponse
|
|
948
972
|
* @throws OciError when an error occurs
|
|
949
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
973
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateResolver.ts.html |here} to see how to use UpdateResolver API.
|
|
950
974
|
*/
|
|
951
975
|
updateResolver(updateResolverRequest: requests.UpdateResolverRequest): Promise<responses.UpdateResolverResponse>;
|
|
952
976
|
/**
|
|
953
|
-
* Updates the specified resolver endpoint with your new information.
|
|
977
|
+
* Updates the specified resolver endpoint with your new information.
|
|
954
978
|
*
|
|
955
|
-
* This operation
|
|
979
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
956
980
|
* @param UpdateResolverEndpointRequest
|
|
957
981
|
* @return UpdateResolverEndpointResponse
|
|
958
982
|
* @throws OciError when an error occurs
|
|
959
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
983
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateResolverEndpoint.ts.html |here} to see how to use UpdateResolverEndpoint API.
|
|
960
984
|
*/
|
|
961
985
|
updateResolverEndpoint(updateResolverEndpointRequest: requests.UpdateResolverEndpointRequest): Promise<responses.UpdateResolverEndpointResponse>;
|
|
962
986
|
/**
|
|
963
987
|
* Updates the configuration of the specified steering policy.
|
|
964
988
|
*
|
|
965
|
-
* This operation
|
|
989
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
966
990
|
* @param UpdateSteeringPolicyRequest
|
|
967
991
|
* @return UpdateSteeringPolicyResponse
|
|
968
992
|
* @throws OciError when an error occurs
|
|
969
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
993
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateSteeringPolicy.ts.html |here} to see how to use UpdateSteeringPolicy API.
|
|
970
994
|
*/
|
|
971
995
|
updateSteeringPolicy(updateSteeringPolicyRequest: requests.UpdateSteeringPolicyRequest): Promise<responses.UpdateSteeringPolicyResponse>;
|
|
972
996
|
/**
|
|
973
997
|
* Updates the specified steering policy attachment with your new information.
|
|
974
998
|
*
|
|
975
|
-
* This operation
|
|
999
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
976
1000
|
* @param UpdateSteeringPolicyAttachmentRequest
|
|
977
1001
|
* @return UpdateSteeringPolicyAttachmentResponse
|
|
978
1002
|
* @throws OciError when an error occurs
|
|
979
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1003
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateSteeringPolicyAttachment.ts.html |here} to see how to use UpdateSteeringPolicyAttachment API.
|
|
980
1004
|
*/
|
|
981
1005
|
updateSteeringPolicyAttachment(updateSteeringPolicyAttachmentRequest: requests.UpdateSteeringPolicyAttachmentRequest): Promise<responses.UpdateSteeringPolicyAttachmentResponse>;
|
|
982
1006
|
/**
|
|
983
1007
|
* Updates the specified TSIG key.
|
|
984
1008
|
*
|
|
985
|
-
* This operation
|
|
1009
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
986
1010
|
* @param UpdateTsigKeyRequest
|
|
987
1011
|
* @return UpdateTsigKeyResponse
|
|
988
1012
|
* @throws OciError when an error occurs
|
|
989
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1013
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateTsigKey.ts.html |here} to see how to use UpdateTsigKey API.
|
|
990
1014
|
*/
|
|
991
1015
|
updateTsigKey(updateTsigKeyRequest: requests.UpdateTsigKeyRequest): Promise<responses.UpdateTsigKeyResponse>;
|
|
992
1016
|
/**
|
|
993
|
-
* Updates the specified view with your new information.
|
|
1017
|
+
* Updates the specified view with your new information.
|
|
994
1018
|
*
|
|
995
|
-
* This operation
|
|
1019
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
996
1020
|
* @param UpdateViewRequest
|
|
997
1021
|
* @return UpdateViewResponse
|
|
998
1022
|
* @throws OciError when an error occurs
|
|
999
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1023
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateView.ts.html |here} to see how to use UpdateView API.
|
|
1000
1024
|
*/
|
|
1001
1025
|
updateView(updateViewRequest: requests.UpdateViewRequest): Promise<responses.UpdateViewResponse>;
|
|
1002
1026
|
/**
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1027
|
+
* Updates the zone with the specified information.
|
|
1028
|
+
* <p>
|
|
1029
|
+
Global secondary zones may have their external masters updated. For more information about secondary
|
|
1030
|
+
* zones, see [Manage DNS Service Zone](https://docs.cloud.oracle.com/iaas/Content/DNS/Tasks/managingdnszones.htm). When the zone name
|
|
1031
|
+
* is provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId
|
|
1032
|
+
* query parameter is required.
|
|
1033
|
+
*
|
|
1034
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1035
|
+
* @param UpdateZoneRequest
|
|
1036
|
+
* @return UpdateZoneResponse
|
|
1037
|
+
* @throws OciError when an error occurs
|
|
1038
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateZone.ts.html |here} to see how to use UpdateZone API.
|
|
1039
|
+
*/
|
|
1015
1040
|
updateZone(updateZoneRequest: requests.UpdateZoneRequest): Promise<responses.UpdateZoneResponse>;
|
|
1016
1041
|
/**
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1042
|
+
* Replaces records in the specified zone with the records specified in the request body.
|
|
1043
|
+
* <p>
|
|
1044
|
+
If a specified record does not exist, it will be created. If the record exists, then it will be updated
|
|
1045
|
+
* to represent the record in the body of the request. If a record in the zone does not exist in the
|
|
1046
|
+
* request body, the record will be removed from the zone. When the zone name is provided as a path
|
|
1047
|
+
* parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is
|
|
1048
|
+
* required.
|
|
1049
|
+
*
|
|
1050
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1051
|
+
* @param UpdateZoneRecordsRequest
|
|
1052
|
+
* @return UpdateZoneRecordsResponse
|
|
1053
|
+
* @throws OciError when an error occurs
|
|
1054
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/dns/UpdateZoneRecords.ts.html |here} to see how to use UpdateZoneRecords API.
|
|
1055
|
+
*/
|
|
1030
1056
|
updateZoneRecords(updateZoneRecordsRequest: requests.UpdateZoneRecordsRequest): Promise<responses.UpdateZoneRecordsResponse>;
|
|
1031
1057
|
}
|