oci-dataflow 2.76.1 → 2.77.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +49 -43
- package/lib/client.js +51 -42
- package/lib/client.js.map +1 -1
- package/lib/model/application-summary.d.ts +5 -5
- package/lib/model/application.d.ts +14 -14
- package/lib/model/create-application-details.d.ts +11 -11
- package/lib/model/create-pool-details.d.ts +2 -2
- package/lib/model/create-private-endpoint-details.d.ts +3 -3
- package/lib/model/create-run-details.d.ts +11 -11
- package/lib/model/create-sql-endpoint-details.d.ts +2 -2
- package/lib/model/create-statement-details.d.ts +1 -1
- package/lib/model/pool-summary.d.ts +5 -5
- package/lib/model/pool.d.ts +5 -5
- package/lib/model/private-endpoint-summary.d.ts +6 -6
- package/lib/model/private-endpoint.d.ts +6 -6
- package/lib/model/run-summary.d.ts +5 -5
- package/lib/model/run.d.ts +15 -15
- package/lib/model/sql-endpoint-summary.d.ts +3 -3
- package/lib/model/sql-endpoint.d.ts +3 -3
- package/lib/model/statement-summary.d.ts +2 -2
- package/lib/model/statement.d.ts +3 -3
- package/lib/model/update-application-details.d.ts +11 -11
- package/lib/model/update-pool-details.d.ts +3 -3
- package/lib/model/update-private-endpoint-details.d.ts +3 -3
- package/lib/model/update-run-details.d.ts +4 -4
- package/lib/model/update-sql-endpoint-details.d.ts +2 -2
- package/lib/request/change-application-compartment-request.d.ts +2 -2
- package/lib/request/change-pool-compartment-request.d.ts +2 -2
- package/lib/request/change-private-endpoint-compartment-request.d.ts +2 -2
- package/lib/request/change-run-compartment-request.d.ts +2 -2
- package/lib/request/change-sql-endpoint-compartment-request.d.ts +2 -2
- package/lib/request/create-application-request.d.ts +1 -1
- package/lib/request/create-pool-request.d.ts +1 -1
- package/lib/request/create-private-endpoint-request.d.ts +1 -1
- package/lib/request/create-run-request.d.ts +1 -1
- package/lib/request/create-sql-endpoint-request.d.ts +1 -1
- package/lib/request/create-statement-request.d.ts +1 -1
- package/lib/request/delete-application-request.d.ts +2 -2
- package/lib/request/delete-pool-request.d.ts +2 -2
- package/lib/request/delete-private-endpoint-request.d.ts +2 -2
- package/lib/request/delete-run-request.d.ts +2 -2
- package/lib/request/delete-sql-endpoint-request.d.ts +2 -2
- package/lib/request/delete-statement-request.d.ts +2 -2
- package/lib/request/get-application-request.d.ts +1 -1
- package/lib/request/get-pool-request.d.ts +1 -1
- package/lib/request/get-private-endpoint-request.d.ts +1 -1
- package/lib/request/get-run-log-request.d.ts +1 -1
- package/lib/request/get-run-request.d.ts +1 -1
- package/lib/request/get-sql-endpoint-request.d.ts +1 -1
- package/lib/request/get-statement-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-applications-request.d.ts +3 -3
- package/lib/request/list-pools-request.d.ts +3 -3
- package/lib/request/list-private-endpoints-request.d.ts +3 -3
- package/lib/request/list-run-logs-request.d.ts +2 -2
- package/lib/request/list-runs-request.d.ts +3 -3
- package/lib/request/list-sql-endpoints-request.d.ts +1 -1
- package/lib/request/list-statements-request.d.ts +3 -3
- package/lib/request/list-work-request-errors-request.d.ts +3 -3
- package/lib/request/list-work-request-logs-request.d.ts +3 -3
- package/lib/request/list-work-requests-request.d.ts +3 -3
- package/lib/request/start-pool-request.d.ts +2 -2
- package/lib/request/stop-pool-request.d.ts +2 -2
- package/lib/request/update-application-request.d.ts +2 -2
- package/lib/request/update-pool-request.d.ts +2 -2
- package/lib/request/update-private-endpoint-request.d.ts +2 -2
- package/lib/request/update-run-request.d.ts +2 -2
- package/lib/request/update-sql-endpoint-request.d.ts +2 -2
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import * as requests from "./request";
|
|
|
16
16
|
import * as model from "./model";
|
|
17
17
|
import * as responses from "./response";
|
|
18
18
|
import { DataFlowWaiter } from "./dataflow-waiter";
|
|
19
|
+
declare const Breaker: any;
|
|
19
20
|
export declare enum DataFlowApiKeys {
|
|
20
21
|
}
|
|
21
22
|
/**
|
|
@@ -29,7 +30,7 @@ export declare class DataFlowClient {
|
|
|
29
30
|
protected "_defaultHeaders": any;
|
|
30
31
|
protected "_waiters": DataFlowWaiter;
|
|
31
32
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
32
|
-
protected _circuitBreaker: null;
|
|
33
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
33
34
|
protected _httpOptions: any;
|
|
34
35
|
protected _bodyDuplexMode: any;
|
|
35
36
|
targetService: string;
|
|
@@ -82,6 +83,10 @@ export declare class DataFlowClient {
|
|
|
82
83
|
* @return The service waiters.
|
|
83
84
|
*/
|
|
84
85
|
getWaiters(): DataFlowWaiter;
|
|
86
|
+
/**
|
|
87
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
88
|
+
*/
|
|
89
|
+
shutdownCircuitBreaker(): void;
|
|
85
90
|
/**
|
|
86
91
|
* Moves an application into a different compartment. When provided, If-Match is checked against ETag values of the resource.
|
|
87
92
|
* Associated resources, like runs, will not be automatically moved.
|
|
@@ -90,7 +95,7 @@ export declare class DataFlowClient {
|
|
|
90
95
|
* @param ChangeApplicationCompartmentRequest
|
|
91
96
|
* @return ChangeApplicationCompartmentResponse
|
|
92
97
|
* @throws OciError when an error occurs
|
|
93
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
98
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangeApplicationCompartment.ts.html |here} to see how to use ChangeApplicationCompartment API.
|
|
94
99
|
*/
|
|
95
100
|
changeApplicationCompartment(changeApplicationCompartmentRequest: requests.ChangeApplicationCompartmentRequest): Promise<responses.ChangeApplicationCompartmentResponse>;
|
|
96
101
|
/**
|
|
@@ -103,7 +108,7 @@ export declare class DataFlowClient {
|
|
|
103
108
|
* @param ChangePoolCompartmentRequest
|
|
104
109
|
* @return ChangePoolCompartmentResponse
|
|
105
110
|
* @throws OciError when an error occurs
|
|
106
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
111
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangePoolCompartment.ts.html |here} to see how to use ChangePoolCompartment API.
|
|
107
112
|
*/
|
|
108
113
|
changePoolCompartment(changePoolCompartmentRequest: requests.ChangePoolCompartmentRequest): Promise<responses.ChangePoolCompartmentResponse>;
|
|
109
114
|
/**
|
|
@@ -113,7 +118,7 @@ export declare class DataFlowClient {
|
|
|
113
118
|
* @param ChangePrivateEndpointCompartmentRequest
|
|
114
119
|
* @return ChangePrivateEndpointCompartmentResponse
|
|
115
120
|
* @throws OciError when an error occurs
|
|
116
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangePrivateEndpointCompartment.ts.html |here} to see how to use ChangePrivateEndpointCompartment API.
|
|
117
122
|
*/
|
|
118
123
|
changePrivateEndpointCompartment(changePrivateEndpointCompartmentRequest: requests.ChangePrivateEndpointCompartmentRequest): Promise<responses.ChangePrivateEndpointCompartmentResponse>;
|
|
119
124
|
/**
|
|
@@ -126,7 +131,7 @@ export declare class DataFlowClient {
|
|
|
126
131
|
* @param ChangeRunCompartmentRequest
|
|
127
132
|
* @return ChangeRunCompartmentResponse
|
|
128
133
|
* @throws OciError when an error occurs
|
|
129
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
134
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ChangeRunCompartment.ts.html |here} to see how to use ChangeRunCompartment API.
|
|
130
135
|
*/
|
|
131
136
|
changeRunCompartment(changeRunCompartmentRequest: requests.ChangeRunCompartmentRequest): Promise<responses.ChangeRunCompartmentResponse>;
|
|
132
137
|
/**
|
|
@@ -135,7 +140,7 @@ export declare class DataFlowClient {
|
|
|
135
140
|
* @param ChangeSqlEndpointCompartmentRequest
|
|
136
141
|
* @return ChangeSqlEndpointCompartmentResponse
|
|
137
142
|
* @throws OciError when an error occurs
|
|
138
|
-
* @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.77.1/dataflow/ChangeSqlEndpointCompartment.ts.html |here} to see how to use ChangeSqlEndpointCompartment API.
|
|
139
144
|
*/
|
|
140
145
|
changeSqlEndpointCompartment(changeSqlEndpointCompartmentRequest: requests.ChangeSqlEndpointCompartmentRequest): Promise<responses.ChangeSqlEndpointCompartmentResponse>;
|
|
141
146
|
/**
|
|
@@ -145,7 +150,7 @@ export declare class DataFlowClient {
|
|
|
145
150
|
* @param CreateApplicationRequest
|
|
146
151
|
* @return CreateApplicationResponse
|
|
147
152
|
* @throws OciError when an error occurs
|
|
148
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
153
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreateApplication.ts.html |here} to see how to use CreateApplication API.
|
|
149
154
|
*/
|
|
150
155
|
createApplication(createApplicationRequest: requests.CreateApplicationRequest): Promise<responses.CreateApplicationResponse>;
|
|
151
156
|
/**
|
|
@@ -155,7 +160,7 @@ export declare class DataFlowClient {
|
|
|
155
160
|
* @param CreatePoolRequest
|
|
156
161
|
* @return CreatePoolResponse
|
|
157
162
|
* @throws OciError when an error occurs
|
|
158
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
163
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreatePool.ts.html |here} to see how to use CreatePool API.
|
|
159
164
|
*/
|
|
160
165
|
createPool(createPoolRequest: requests.CreatePoolRequest): Promise<responses.CreatePoolResponse>;
|
|
161
166
|
/**
|
|
@@ -165,7 +170,7 @@ export declare class DataFlowClient {
|
|
|
165
170
|
* @param CreatePrivateEndpointRequest
|
|
166
171
|
* @return CreatePrivateEndpointResponse
|
|
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.77.1/dataflow/CreatePrivateEndpoint.ts.html |here} to see how to use CreatePrivateEndpoint API.
|
|
169
174
|
*/
|
|
170
175
|
createPrivateEndpoint(createPrivateEndpointRequest: requests.CreatePrivateEndpointRequest): Promise<responses.CreatePrivateEndpointResponse>;
|
|
171
176
|
/**
|
|
@@ -175,7 +180,7 @@ export declare class DataFlowClient {
|
|
|
175
180
|
* @param CreateRunRequest
|
|
176
181
|
* @return CreateRunResponse
|
|
177
182
|
* @throws OciError when an error occurs
|
|
178
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreateRun.ts.html |here} to see how to use CreateRun API.
|
|
179
184
|
*/
|
|
180
185
|
createRun(createRunRequest: requests.CreateRunRequest): Promise<responses.CreateRunResponse>;
|
|
181
186
|
/**
|
|
@@ -184,7 +189,7 @@ export declare class DataFlowClient {
|
|
|
184
189
|
* @param CreateSqlEndpointRequest
|
|
185
190
|
* @return CreateSqlEndpointResponse
|
|
186
191
|
* @throws OciError when an error occurs
|
|
187
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
192
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreateSqlEndpoint.ts.html |here} to see how to use CreateSqlEndpoint API.
|
|
188
193
|
*/
|
|
189
194
|
createSqlEndpoint(createSqlEndpointRequest: requests.CreateSqlEndpointRequest): Promise<responses.CreateSqlEndpointResponse>;
|
|
190
195
|
/**
|
|
@@ -194,7 +199,7 @@ export declare class DataFlowClient {
|
|
|
194
199
|
* @param CreateStatementRequest
|
|
195
200
|
* @return CreateStatementResponse
|
|
196
201
|
* @throws OciError when an error occurs
|
|
197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/CreateStatement.ts.html |here} to see how to use CreateStatement API.
|
|
198
203
|
*/
|
|
199
204
|
createStatement(createStatementRequest: requests.CreateStatementRequest): Promise<responses.CreateStatementResponse>;
|
|
200
205
|
/**
|
|
@@ -204,7 +209,7 @@ export declare class DataFlowClient {
|
|
|
204
209
|
* @param DeleteApplicationRequest
|
|
205
210
|
* @return DeleteApplicationResponse
|
|
206
211
|
* @throws OciError when an error occurs
|
|
207
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
212
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeleteApplication.ts.html |here} to see how to use DeleteApplication API.
|
|
208
213
|
*/
|
|
209
214
|
deleteApplication(deleteApplicationRequest: requests.DeleteApplicationRequest): Promise<responses.DeleteApplicationResponse>;
|
|
210
215
|
/**
|
|
@@ -214,7 +219,7 @@ export declare class DataFlowClient {
|
|
|
214
219
|
* @param DeletePoolRequest
|
|
215
220
|
* @return DeletePoolResponse
|
|
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.77.1/dataflow/DeletePool.ts.html |here} to see how to use DeletePool API.
|
|
218
223
|
*/
|
|
219
224
|
deletePool(deletePoolRequest: requests.DeletePoolRequest): Promise<responses.DeletePoolResponse>;
|
|
220
225
|
/**
|
|
@@ -224,7 +229,7 @@ export declare class DataFlowClient {
|
|
|
224
229
|
* @param DeletePrivateEndpointRequest
|
|
225
230
|
* @return DeletePrivateEndpointResponse
|
|
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.77.1/dataflow/DeletePrivateEndpoint.ts.html |here} to see how to use DeletePrivateEndpoint API.
|
|
228
233
|
*/
|
|
229
234
|
deletePrivateEndpoint(deletePrivateEndpointRequest: requests.DeletePrivateEndpointRequest): Promise<responses.DeletePrivateEndpointResponse>;
|
|
230
235
|
/**
|
|
@@ -235,7 +240,7 @@ export declare class DataFlowClient {
|
|
|
235
240
|
* @param DeleteRunRequest
|
|
236
241
|
* @return DeleteRunResponse
|
|
237
242
|
* @throws OciError when an error occurs
|
|
238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
243
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeleteRun.ts.html |here} to see how to use DeleteRun API.
|
|
239
244
|
*/
|
|
240
245
|
deleteRun(deleteRunRequest: requests.DeleteRunRequest): Promise<responses.DeleteRunResponse>;
|
|
241
246
|
/**
|
|
@@ -244,7 +249,7 @@ export declare class DataFlowClient {
|
|
|
244
249
|
* @param DeleteSqlEndpointRequest
|
|
245
250
|
* @return DeleteSqlEndpointResponse
|
|
246
251
|
* @throws OciError when an error occurs
|
|
247
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
252
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeleteSqlEndpoint.ts.html |here} to see how to use DeleteSqlEndpoint API.
|
|
248
253
|
*/
|
|
249
254
|
deleteSqlEndpoint(deleteSqlEndpointRequest: requests.DeleteSqlEndpointRequest): Promise<responses.DeleteSqlEndpointResponse>;
|
|
250
255
|
/**
|
|
@@ -254,7 +259,7 @@ export declare class DataFlowClient {
|
|
|
254
259
|
* @param DeleteStatementRequest
|
|
255
260
|
* @return DeleteStatementResponse
|
|
256
261
|
* @throws OciError when an error occurs
|
|
257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
262
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/DeleteStatement.ts.html |here} to see how to use DeleteStatement API.
|
|
258
263
|
*/
|
|
259
264
|
deleteStatement(deleteStatementRequest: requests.DeleteStatementRequest): Promise<responses.DeleteStatementResponse>;
|
|
260
265
|
/**
|
|
@@ -264,7 +269,7 @@ export declare class DataFlowClient {
|
|
|
264
269
|
* @param GetApplicationRequest
|
|
265
270
|
* @return GetApplicationResponse
|
|
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.77.1/dataflow/GetApplication.ts.html |here} to see how to use GetApplication API.
|
|
268
273
|
*/
|
|
269
274
|
getApplication(getApplicationRequest: requests.GetApplicationRequest): Promise<responses.GetApplicationResponse>;
|
|
270
275
|
/**
|
|
@@ -274,7 +279,7 @@ export declare class DataFlowClient {
|
|
|
274
279
|
* @param GetPoolRequest
|
|
275
280
|
* @return GetPoolResponse
|
|
276
281
|
* @throws OciError when an error occurs
|
|
277
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
282
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetPool.ts.html |here} to see how to use GetPool API.
|
|
278
283
|
*/
|
|
279
284
|
getPool(getPoolRequest: requests.GetPoolRequest): Promise<responses.GetPoolResponse>;
|
|
280
285
|
/**
|
|
@@ -284,7 +289,7 @@ export declare class DataFlowClient {
|
|
|
284
289
|
* @param GetPrivateEndpointRequest
|
|
285
290
|
* @return GetPrivateEndpointResponse
|
|
286
291
|
* @throws OciError when an error occurs
|
|
287
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
292
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetPrivateEndpoint.ts.html |here} to see how to use GetPrivateEndpoint API.
|
|
288
293
|
*/
|
|
289
294
|
getPrivateEndpoint(getPrivateEndpointRequest: requests.GetPrivateEndpointRequest): Promise<responses.GetPrivateEndpointResponse>;
|
|
290
295
|
/**
|
|
@@ -294,7 +299,7 @@ export declare class DataFlowClient {
|
|
|
294
299
|
* @param GetRunRequest
|
|
295
300
|
* @return GetRunResponse
|
|
296
301
|
* @throws OciError when an error occurs
|
|
297
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
302
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetRun.ts.html |here} to see how to use GetRun API.
|
|
298
303
|
*/
|
|
299
304
|
getRun(getRunRequest: requests.GetRunRequest): Promise<responses.GetRunResponse>;
|
|
300
305
|
/**
|
|
@@ -304,7 +309,7 @@ export declare class DataFlowClient {
|
|
|
304
309
|
* @param GetRunLogRequest
|
|
305
310
|
* @return GetRunLogResponse
|
|
306
311
|
* @throws OciError when an error occurs
|
|
307
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
312
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetRunLog.ts.html |here} to see how to use GetRunLog API.
|
|
308
313
|
*/
|
|
309
314
|
getRunLog(getRunLogRequest: requests.GetRunLogRequest): Promise<responses.GetRunLogResponse>;
|
|
310
315
|
/**
|
|
@@ -313,7 +318,7 @@ export declare class DataFlowClient {
|
|
|
313
318
|
* @param GetSqlEndpointRequest
|
|
314
319
|
* @return GetSqlEndpointResponse
|
|
315
320
|
* @throws OciError when an error occurs
|
|
316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetSqlEndpoint.ts.html |here} to see how to use GetSqlEndpoint API.
|
|
317
322
|
*/
|
|
318
323
|
getSqlEndpoint(getSqlEndpointRequest: requests.GetSqlEndpointRequest): Promise<responses.GetSqlEndpointResponse>;
|
|
319
324
|
/**
|
|
@@ -323,7 +328,7 @@ export declare class DataFlowClient {
|
|
|
323
328
|
* @param GetStatementRequest
|
|
324
329
|
* @return GetStatementResponse
|
|
325
330
|
* @throws OciError when an error occurs
|
|
326
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
331
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetStatement.ts.html |here} to see how to use GetStatement API.
|
|
327
332
|
*/
|
|
328
333
|
getStatement(getStatementRequest: requests.GetStatementRequest): Promise<responses.GetStatementResponse>;
|
|
329
334
|
/**
|
|
@@ -333,7 +338,7 @@ export declare class DataFlowClient {
|
|
|
333
338
|
* @param GetWorkRequestRequest
|
|
334
339
|
* @return GetWorkRequestResponse
|
|
335
340
|
* @throws OciError when an error occurs
|
|
336
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
341
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
337
342
|
*/
|
|
338
343
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
339
344
|
/**
|
|
@@ -343,7 +348,7 @@ export declare class DataFlowClient {
|
|
|
343
348
|
* @param ListApplicationsRequest
|
|
344
349
|
* @return ListApplicationsResponse
|
|
345
350
|
* @throws OciError when an error occurs
|
|
346
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
351
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListApplications.ts.html |here} to see how to use ListApplications API.
|
|
347
352
|
*/
|
|
348
353
|
listApplications(listApplicationsRequest: requests.ListApplicationsRequest): Promise<responses.ListApplicationsResponse>;
|
|
349
354
|
/**
|
|
@@ -385,7 +390,7 @@ export declare class DataFlowClient {
|
|
|
385
390
|
* @param ListPoolsRequest
|
|
386
391
|
* @return ListPoolsResponse
|
|
387
392
|
* @throws OciError when an error occurs
|
|
388
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
393
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListPools.ts.html |here} to see how to use ListPools API.
|
|
389
394
|
*/
|
|
390
395
|
listPools(listPoolsRequest: requests.ListPoolsRequest): Promise<responses.ListPoolsResponse>;
|
|
391
396
|
/**
|
|
@@ -395,7 +400,7 @@ export declare class DataFlowClient {
|
|
|
395
400
|
* @param ListPrivateEndpointsRequest
|
|
396
401
|
* @return ListPrivateEndpointsResponse
|
|
397
402
|
* @throws OciError when an error occurs
|
|
398
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
403
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListPrivateEndpoints.ts.html |here} to see how to use ListPrivateEndpoints API.
|
|
399
404
|
*/
|
|
400
405
|
listPrivateEndpoints(listPrivateEndpointsRequest: requests.ListPrivateEndpointsRequest): Promise<responses.ListPrivateEndpointsResponse>;
|
|
401
406
|
/**
|
|
@@ -405,7 +410,7 @@ export declare class DataFlowClient {
|
|
|
405
410
|
* @param ListRunLogsRequest
|
|
406
411
|
* @return ListRunLogsResponse
|
|
407
412
|
* @throws OciError when an error occurs
|
|
408
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
413
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListRunLogs.ts.html |here} to see how to use ListRunLogs API.
|
|
409
414
|
*/
|
|
410
415
|
listRunLogs(listRunLogsRequest: requests.ListRunLogsRequest): Promise<responses.ListRunLogsResponse>;
|
|
411
416
|
/**
|
|
@@ -447,7 +452,7 @@ export declare class DataFlowClient {
|
|
|
447
452
|
* @param ListRunsRequest
|
|
448
453
|
* @return ListRunsResponse
|
|
449
454
|
* @throws OciError when an error occurs
|
|
450
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListRuns.ts.html |here} to see how to use ListRuns API.
|
|
451
456
|
*/
|
|
452
457
|
listRuns(listRunsRequest: requests.ListRunsRequest): Promise<responses.ListRunsResponse>;
|
|
453
458
|
/**
|
|
@@ -491,7 +496,7 @@ export declare class DataFlowClient {
|
|
|
491
496
|
* @param ListSqlEndpointsRequest
|
|
492
497
|
* @return ListSqlEndpointsResponse
|
|
493
498
|
* @throws OciError when an error occurs
|
|
494
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
499
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListSqlEndpoints.ts.html |here} to see how to use ListSqlEndpoints API.
|
|
495
500
|
*/
|
|
496
501
|
listSqlEndpoints(listSqlEndpointsRequest: requests.ListSqlEndpointsRequest): Promise<responses.ListSqlEndpointsResponse>;
|
|
497
502
|
/**
|
|
@@ -501,7 +506,7 @@ export declare class DataFlowClient {
|
|
|
501
506
|
* @param ListStatementsRequest
|
|
502
507
|
* @return ListStatementsResponse
|
|
503
508
|
* @throws OciError when an error occurs
|
|
504
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
509
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListStatements.ts.html |here} to see how to use ListStatements API.
|
|
505
510
|
*/
|
|
506
511
|
listStatements(listStatementsRequest: requests.ListStatementsRequest): Promise<responses.ListStatementsResponse>;
|
|
507
512
|
/**
|
|
@@ -511,7 +516,7 @@ export declare class DataFlowClient {
|
|
|
511
516
|
* @param ListWorkRequestErrorsRequest
|
|
512
517
|
* @return ListWorkRequestErrorsResponse
|
|
513
518
|
* @throws OciError when an error occurs
|
|
514
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
519
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
515
520
|
*/
|
|
516
521
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
517
522
|
/**
|
|
@@ -521,7 +526,7 @@ export declare class DataFlowClient {
|
|
|
521
526
|
* @param ListWorkRequestLogsRequest
|
|
522
527
|
* @return ListWorkRequestLogsResponse
|
|
523
528
|
* @throws OciError when an error occurs
|
|
524
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
529
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
525
530
|
*/
|
|
526
531
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
527
532
|
/**
|
|
@@ -531,7 +536,7 @@ export declare class DataFlowClient {
|
|
|
531
536
|
* @param ListWorkRequestsRequest
|
|
532
537
|
* @return ListWorkRequestsResponse
|
|
533
538
|
* @throws OciError when an error occurs
|
|
534
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
539
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
535
540
|
*/
|
|
536
541
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
537
542
|
/**
|
|
@@ -541,7 +546,7 @@ export declare class DataFlowClient {
|
|
|
541
546
|
* @param StartPoolRequest
|
|
542
547
|
* @return StartPoolResponse
|
|
543
548
|
* @throws OciError when an error occurs
|
|
544
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
549
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/StartPool.ts.html |here} to see how to use StartPool API.
|
|
545
550
|
*/
|
|
546
551
|
startPool(startPoolRequest: requests.StartPoolRequest): Promise<responses.StartPoolResponse>;
|
|
547
552
|
/**
|
|
@@ -551,7 +556,7 @@ export declare class DataFlowClient {
|
|
|
551
556
|
* @param StopPoolRequest
|
|
552
557
|
* @return StopPoolResponse
|
|
553
558
|
* @throws OciError when an error occurs
|
|
554
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
559
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/StopPool.ts.html |here} to see how to use StopPool API.
|
|
555
560
|
*/
|
|
556
561
|
stopPool(stopPoolRequest: requests.StopPoolRequest): Promise<responses.StopPoolResponse>;
|
|
557
562
|
/**
|
|
@@ -561,7 +566,7 @@ export declare class DataFlowClient {
|
|
|
561
566
|
* @param UpdateApplicationRequest
|
|
562
567
|
* @return UpdateApplicationResponse
|
|
563
568
|
* @throws OciError when an error occurs
|
|
564
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
569
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdateApplication.ts.html |here} to see how to use UpdateApplication API.
|
|
565
570
|
*/
|
|
566
571
|
updateApplication(updateApplicationRequest: requests.UpdateApplicationRequest): Promise<responses.UpdateApplicationResponse>;
|
|
567
572
|
/**
|
|
@@ -573,7 +578,7 @@ export declare class DataFlowClient {
|
|
|
573
578
|
* @param UpdatePoolRequest
|
|
574
579
|
* @return UpdatePoolResponse
|
|
575
580
|
* @throws OciError when an error occurs
|
|
576
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
581
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdatePool.ts.html |here} to see how to use UpdatePool API.
|
|
577
582
|
*/
|
|
578
583
|
updatePool(updatePoolRequest: requests.UpdatePoolRequest): Promise<responses.UpdatePoolResponse>;
|
|
579
584
|
/**
|
|
@@ -585,7 +590,7 @@ export declare class DataFlowClient {
|
|
|
585
590
|
* @param UpdatePrivateEndpointRequest
|
|
586
591
|
* @return UpdatePrivateEndpointResponse
|
|
587
592
|
* @throws OciError when an error occurs
|
|
588
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
593
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdatePrivateEndpoint.ts.html |here} to see how to use UpdatePrivateEndpoint API.
|
|
589
594
|
*/
|
|
590
595
|
updatePrivateEndpoint(updatePrivateEndpointRequest: requests.UpdatePrivateEndpointRequest): Promise<responses.UpdatePrivateEndpointResponse>;
|
|
591
596
|
/**
|
|
@@ -595,7 +600,7 @@ export declare class DataFlowClient {
|
|
|
595
600
|
* @param UpdateRunRequest
|
|
596
601
|
* @return UpdateRunResponse
|
|
597
602
|
* @throws OciError when an error occurs
|
|
598
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
603
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdateRun.ts.html |here} to see how to use UpdateRun API.
|
|
599
604
|
*/
|
|
600
605
|
updateRun(updateRunRequest: requests.UpdateRunRequest): Promise<responses.UpdateRunResponse>;
|
|
601
606
|
/**
|
|
@@ -604,7 +609,8 @@ export declare class DataFlowClient {
|
|
|
604
609
|
* @param UpdateSqlEndpointRequest
|
|
605
610
|
* @return UpdateSqlEndpointResponse
|
|
606
611
|
* @throws OciError when an error occurs
|
|
607
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
612
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/dataflow/UpdateSqlEndpoint.ts.html |here} to see how to use UpdateSqlEndpoint API.
|
|
608
613
|
*/
|
|
609
614
|
updateSqlEndpoint(updateSqlEndpointRequest: requests.UpdateSqlEndpointRequest): Promise<responses.UpdateSqlEndpointResponse>;
|
|
610
615
|
}
|
|
616
|
+
export {};
|