@alicloud/emr-serverless-spark20230808 1.16.1 → 1.17.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/dist/client.d.ts +132 -0
- package/dist/client.js +357 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CancelKyuubiSparkApplicationRequest.d.ts +18 -0
- package/dist/models/CancelKyuubiSparkApplicationRequest.js +58 -0
- package/dist/models/CancelKyuubiSparkApplicationRequest.js.map +1 -0
- package/dist/models/CancelKyuubiSparkApplicationResponse.d.ts +19 -0
- package/dist/models/CancelKyuubiSparkApplicationResponse.js +69 -0
- package/dist/models/CancelKyuubiSparkApplicationResponse.js.map +1 -0
- package/dist/models/CancelKyuubiSparkApplicationResponseBody.d.ts +37 -0
- package/dist/models/CancelKyuubiSparkApplicationResponseBody.js +84 -0
- package/dist/models/CancelKyuubiSparkApplicationResponseBody.js.map +1 -0
- package/dist/models/CreateKyuubiServiceRequest.d.ts +58 -0
- package/dist/models/CreateKyuubiServiceRequest.js +74 -0
- package/dist/models/CreateKyuubiServiceRequest.js.map +1 -0
- package/dist/models/CreateKyuubiServiceResponse.d.ts +19 -0
- package/dist/models/CreateKyuubiServiceResponse.js +69 -0
- package/dist/models/CreateKyuubiServiceResponse.js.map +1 -0
- package/dist/models/CreateKyuubiServiceResponseBody.d.ts +39 -0
- package/dist/models/CreateKyuubiServiceResponseBody.js +82 -0
- package/dist/models/CreateKyuubiServiceResponseBody.js.map +1 -0
- package/dist/models/DeleteKyuubiServiceResponse.d.ts +19 -0
- package/dist/models/DeleteKyuubiServiceResponse.js +69 -0
- package/dist/models/DeleteKyuubiServiceResponse.js.map +1 -0
- package/dist/models/DeleteKyuubiServiceResponseBody.d.ts +23 -0
- package/dist/models/DeleteKyuubiServiceResponseBody.js +60 -0
- package/dist/models/DeleteKyuubiServiceResponseBody.js.map +1 -0
- package/dist/models/GenerateTaskCodesRequest.d.ts +34 -0
- package/dist/models/GenerateTaskCodesRequest.js +62 -0
- package/dist/models/GenerateTaskCodesRequest.js.map +1 -0
- package/dist/models/GenerateTaskCodesResponse.d.ts +19 -0
- package/dist/models/GenerateTaskCodesResponse.js +69 -0
- package/dist/models/GenerateTaskCodesResponse.js.map +1 -0
- package/dist/models/GenerateTaskCodesResponseBody.d.ts +44 -0
- package/dist/models/GenerateTaskCodesResponseBody.js +73 -0
- package/dist/models/GenerateTaskCodesResponseBody.js.map +1 -0
- package/dist/models/GetKyuubiServiceResponse.d.ts +19 -0
- package/dist/models/GetKyuubiServiceResponse.js +69 -0
- package/dist/models/GetKyuubiServiceResponse.js.map +1 -0
- package/dist/models/GetKyuubiServiceResponseBody.d.ts +114 -0
- package/dist/models/GetKyuubiServiceResponseBody.js +112 -0
- package/dist/models/GetKyuubiServiceResponseBody.js.map +1 -0
- package/dist/models/StartKyuubiServiceResponse.d.ts +19 -0
- package/dist/models/StartKyuubiServiceResponse.js +69 -0
- package/dist/models/StartKyuubiServiceResponse.js.map +1 -0
- package/dist/models/StartKyuubiServiceResponseBody.d.ts +23 -0
- package/dist/models/StartKyuubiServiceResponseBody.js +60 -0
- package/dist/models/StartKyuubiServiceResponseBody.js.map +1 -0
- package/dist/models/StopKyuubiServiceResponse.d.ts +19 -0
- package/dist/models/StopKyuubiServiceResponse.js +69 -0
- package/dist/models/StopKyuubiServiceResponse.js.map +1 -0
- package/dist/models/StopKyuubiServiceResponseBody.d.ts +23 -0
- package/dist/models/StopKyuubiServiceResponseBody.js +60 -0
- package/dist/models/StopKyuubiServiceResponseBody.js.map +1 -0
- package/dist/models/UpdateKyuubiServiceRequest.d.ts +63 -0
- package/dist/models/UpdateKyuubiServiceRequest.js +76 -0
- package/dist/models/UpdateKyuubiServiceRequest.js.map +1 -0
- package/dist/models/UpdateKyuubiServiceResponse.d.ts +19 -0
- package/dist/models/UpdateKyuubiServiceResponse.js +69 -0
- package/dist/models/UpdateKyuubiServiceResponse.js.map +1 -0
- package/dist/models/UpdateKyuubiServiceResponseBody.d.ts +23 -0
- package/dist/models/UpdateKyuubiServiceResponseBody.js +60 -0
- package/dist/models/UpdateKyuubiServiceResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +23 -0
- package/dist/models/model.js +52 -6
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +396 -0
- package/src/models/CancelKyuubiSparkApplicationRequest.ts +31 -0
- package/src/models/CancelKyuubiSparkApplicationResponse.ts +40 -0
- package/src/models/CancelKyuubiSparkApplicationResponseBody.ts +67 -0
- package/src/models/CreateKyuubiServiceRequest.ts +87 -0
- package/src/models/CreateKyuubiServiceResponse.ts +40 -0
- package/src/models/CreateKyuubiServiceResponseBody.ts +67 -0
- package/src/models/DeleteKyuubiServiceResponse.ts +40 -0
- package/src/models/DeleteKyuubiServiceResponseBody.ts +38 -0
- package/src/models/GenerateTaskCodesRequest.ts +51 -0
- package/src/models/GenerateTaskCodesResponse.ts +40 -0
- package/src/models/GenerateTaskCodesResponseBody.ts +72 -0
- package/src/models/GetKyuubiServiceResponse.ts +40 -0
- package/src/models/GetKyuubiServiceResponseBody.ts +172 -0
- package/src/models/StartKyuubiServiceResponse.ts +40 -0
- package/src/models/StartKyuubiServiceResponseBody.ts +38 -0
- package/src/models/StopKyuubiServiceResponse.ts +40 -0
- package/src/models/StopKyuubiServiceResponseBody.ts +38 -0
- package/src/models/UpdateKyuubiServiceRequest.ts +94 -0
- package/src/models/UpdateKyuubiServiceResponse.ts +40 -0
- package/src/models/UpdateKyuubiServiceResponseBody.ts +38 -0
- package/src/models/model.ts +23 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class StopKyuubiServiceResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* true
|
|
9
|
+
*/
|
|
10
|
+
data?: any;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* DD6B1B2A-5837-5237-ABE4-FF0C8944****
|
|
14
|
+
*/
|
|
15
|
+
requestId?: string;
|
|
16
|
+
static names(): { [key: string]: string } {
|
|
17
|
+
return {
|
|
18
|
+
data: 'data',
|
|
19
|
+
requestId: 'requestId',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
static types(): { [key: string]: any } {
|
|
24
|
+
return {
|
|
25
|
+
data: 'any',
|
|
26
|
+
requestId: 'string',
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
validate() {
|
|
31
|
+
super.validate();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
constructor(map?: { [key: string]: any }) {
|
|
35
|
+
super(map);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class UpdateKyuubiServiceRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 2c8g
|
|
9
|
+
*/
|
|
10
|
+
computeInstance?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* []
|
|
14
|
+
*/
|
|
15
|
+
kyuubiConfigs?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 1.9.2-0.0.2
|
|
19
|
+
*/
|
|
20
|
+
kyuubiReleaseVersion?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* dev_serverless_spark
|
|
24
|
+
*/
|
|
25
|
+
name?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* true
|
|
29
|
+
*/
|
|
30
|
+
publicEndpointEnabled?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* dev_queue
|
|
34
|
+
*/
|
|
35
|
+
queue?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* esr-4.6.0 (Spark 3.5.2, Scala 2.12)
|
|
39
|
+
*/
|
|
40
|
+
releaseVersion?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @example
|
|
43
|
+
* 0
|
|
44
|
+
*/
|
|
45
|
+
replica?: number;
|
|
46
|
+
/**
|
|
47
|
+
* @example
|
|
48
|
+
* false
|
|
49
|
+
*/
|
|
50
|
+
restart?: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* @example
|
|
53
|
+
* []
|
|
54
|
+
*/
|
|
55
|
+
sparkConfigs?: string;
|
|
56
|
+
static names(): { [key: string]: string } {
|
|
57
|
+
return {
|
|
58
|
+
computeInstance: 'computeInstance',
|
|
59
|
+
kyuubiConfigs: 'kyuubiConfigs',
|
|
60
|
+
kyuubiReleaseVersion: 'kyuubiReleaseVersion',
|
|
61
|
+
name: 'name',
|
|
62
|
+
publicEndpointEnabled: 'publicEndpointEnabled',
|
|
63
|
+
queue: 'queue',
|
|
64
|
+
releaseVersion: 'releaseVersion',
|
|
65
|
+
replica: 'replica',
|
|
66
|
+
restart: 'restart',
|
|
67
|
+
sparkConfigs: 'sparkConfigs',
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
static types(): { [key: string]: any } {
|
|
72
|
+
return {
|
|
73
|
+
computeInstance: 'string',
|
|
74
|
+
kyuubiConfigs: 'string',
|
|
75
|
+
kyuubiReleaseVersion: 'string',
|
|
76
|
+
name: 'string',
|
|
77
|
+
publicEndpointEnabled: 'boolean',
|
|
78
|
+
queue: 'string',
|
|
79
|
+
releaseVersion: 'string',
|
|
80
|
+
replica: 'number',
|
|
81
|
+
restart: 'boolean',
|
|
82
|
+
sparkConfigs: 'string',
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
validate() {
|
|
87
|
+
super.validate();
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
constructor(map?: { [key: string]: any }) {
|
|
91
|
+
super(map);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { UpdateKyuubiServiceResponseBody } from "./UpdateKyuubiServiceResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class UpdateKyuubiServiceResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: UpdateKyuubiServiceResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: UpdateKyuubiServiceResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class UpdateKyuubiServiceResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* true
|
|
9
|
+
*/
|
|
10
|
+
data?: any;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* DD6B1B2A-5837-5237-ABE4-FF0C8944****
|
|
14
|
+
*/
|
|
15
|
+
requestId?: string;
|
|
16
|
+
static names(): { [key: string]: string } {
|
|
17
|
+
return {
|
|
18
|
+
data: 'data',
|
|
19
|
+
requestId: 'requestId',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
static types(): { [key: string]: any } {
|
|
24
|
+
return {
|
|
25
|
+
data: 'any',
|
|
26
|
+
requestId: 'string',
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
validate() {
|
|
31
|
+
super.validate();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
constructor(map?: { [key: string]: any }) {
|
|
35
|
+
super(map);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -4,6 +4,8 @@ export { SqlOutputRows } from './SqlOutput';
|
|
|
4
4
|
export { SqlOutputSchemaFields } from './SqlOutput';
|
|
5
5
|
export { SqlOutputSchema } from './SqlOutput';
|
|
6
6
|
export { TaskCredential } from './Task';
|
|
7
|
+
export { CancelKyuubiSparkApplicationResponseBodyBody } from './CancelKyuubiSparkApplicationResponseBody';
|
|
8
|
+
export { CreateKyuubiServiceResponseBodyData } from './CreateKyuubiServiceResponseBody';
|
|
7
9
|
export { CreateKyuubiTokenRequestAutoExpireConfiguration } from './CreateKyuubiTokenRequest';
|
|
8
10
|
export { CreateKyuubiTokenResponseBodyData } from './CreateKyuubiTokenResponseBody';
|
|
9
11
|
export { CreateLivyComputeRequestAutoStartConfiguration } from './CreateLivyComputeRequest';
|
|
@@ -31,6 +33,7 @@ export { GetDoctorApplicationResponseBodyData } from './GetDoctorApplicationResp
|
|
|
31
33
|
export { GetJobRunResponseBodyJobRunConfigurationOverrides } from './GetJobRunResponseBody';
|
|
32
34
|
export { GetJobRunResponseBodyJobRunStateChangeReason } from './GetJobRunResponseBody';
|
|
33
35
|
export { GetJobRunResponseBodyJobRun } from './GetJobRunResponseBody';
|
|
36
|
+
export { GetKyuubiServiceResponseBodyData } from './GetKyuubiServiceResponseBody';
|
|
34
37
|
export { GetKyuubiTokenResponseBodyDataAutoExpireConfiguration } from './GetKyuubiTokenResponseBody';
|
|
35
38
|
export { GetKyuubiTokenResponseBodyData } from './GetKyuubiTokenResponseBody';
|
|
36
39
|
export { GetLivyComputeResponseBodyDataAutoStopConfiguration } from './GetLivyComputeResponseBody';
|
|
@@ -120,6 +123,12 @@ export { AddMembersResponse } from './AddMembersResponse';
|
|
|
120
123
|
export { CancelJobRunRequest } from './CancelJobRunRequest';
|
|
121
124
|
export { CancelJobRunResponseBody } from './CancelJobRunResponseBody';
|
|
122
125
|
export { CancelJobRunResponse } from './CancelJobRunResponse';
|
|
126
|
+
export { CancelKyuubiSparkApplicationRequest } from './CancelKyuubiSparkApplicationRequest';
|
|
127
|
+
export { CancelKyuubiSparkApplicationResponseBody } from './CancelKyuubiSparkApplicationResponseBody';
|
|
128
|
+
export { CancelKyuubiSparkApplicationResponse } from './CancelKyuubiSparkApplicationResponse';
|
|
129
|
+
export { CreateKyuubiServiceRequest } from './CreateKyuubiServiceRequest';
|
|
130
|
+
export { CreateKyuubiServiceResponseBody } from './CreateKyuubiServiceResponseBody';
|
|
131
|
+
export { CreateKyuubiServiceResponse } from './CreateKyuubiServiceResponse';
|
|
123
132
|
export { CreateKyuubiTokenRequest } from './CreateKyuubiTokenRequest';
|
|
124
133
|
export { CreateKyuubiTokenResponseBody } from './CreateKyuubiTokenResponseBody';
|
|
125
134
|
export { CreateKyuubiTokenResponse } from './CreateKyuubiTokenResponse';
|
|
@@ -142,6 +151,8 @@ export { CreateSqlStatementResponse } from './CreateSqlStatementResponse';
|
|
|
142
151
|
export { CreateWorkspaceRequest } from './CreateWorkspaceRequest';
|
|
143
152
|
export { CreateWorkspaceResponseBody } from './CreateWorkspaceResponseBody';
|
|
144
153
|
export { CreateWorkspaceResponse } from './CreateWorkspaceResponse';
|
|
154
|
+
export { DeleteKyuubiServiceResponseBody } from './DeleteKyuubiServiceResponseBody';
|
|
155
|
+
export { DeleteKyuubiServiceResponse } from './DeleteKyuubiServiceResponse';
|
|
145
156
|
export { DeleteKyuubiTokenRequest } from './DeleteKyuubiTokenRequest';
|
|
146
157
|
export { DeleteKyuubiTokenResponseBody } from './DeleteKyuubiTokenResponseBody';
|
|
147
158
|
export { DeleteKyuubiTokenResponse } from './DeleteKyuubiTokenResponse';
|
|
@@ -154,6 +165,9 @@ export { DeleteLivyComputeTokenResponse } from './DeleteLivyComputeTokenResponse
|
|
|
154
165
|
export { EditWorkspaceQueueRequest } from './EditWorkspaceQueueRequest';
|
|
155
166
|
export { EditWorkspaceQueueResponseBody } from './EditWorkspaceQueueResponseBody';
|
|
156
167
|
export { EditWorkspaceQueueResponse } from './EditWorkspaceQueueResponse';
|
|
168
|
+
export { GenerateTaskCodesRequest } from './GenerateTaskCodesRequest';
|
|
169
|
+
export { GenerateTaskCodesResponseBody } from './GenerateTaskCodesResponseBody';
|
|
170
|
+
export { GenerateTaskCodesResponse } from './GenerateTaskCodesResponse';
|
|
157
171
|
export { GetCuHoursRequest } from './GetCuHoursRequest';
|
|
158
172
|
export { GetCuHoursResponseBody } from './GetCuHoursResponseBody';
|
|
159
173
|
export { GetCuHoursResponse } from './GetCuHoursResponse';
|
|
@@ -163,6 +177,8 @@ export { GetDoctorApplicationResponse } from './GetDoctorApplicationResponse';
|
|
|
163
177
|
export { GetJobRunRequest } from './GetJobRunRequest';
|
|
164
178
|
export { GetJobRunResponseBody } from './GetJobRunResponseBody';
|
|
165
179
|
export { GetJobRunResponse } from './GetJobRunResponse';
|
|
180
|
+
export { GetKyuubiServiceResponseBody } from './GetKyuubiServiceResponseBody';
|
|
181
|
+
export { GetKyuubiServiceResponse } from './GetKyuubiServiceResponse';
|
|
166
182
|
export { GetKyuubiTokenRequest } from './GetKyuubiTokenRequest';
|
|
167
183
|
export { GetKyuubiTokenResponseBody } from './GetKyuubiTokenResponseBody';
|
|
168
184
|
export { GetKyuubiTokenResponse } from './GetKyuubiTokenResponse';
|
|
@@ -240,6 +256,8 @@ export { RefreshLivyComputeTokenResponse } from './RefreshLivyComputeTokenRespon
|
|
|
240
256
|
export { StartJobRunRequest } from './StartJobRunRequest';
|
|
241
257
|
export { StartJobRunResponseBody } from './StartJobRunResponseBody';
|
|
242
258
|
export { StartJobRunResponse } from './StartJobRunResponse';
|
|
259
|
+
export { StartKyuubiServiceResponseBody } from './StartKyuubiServiceResponseBody';
|
|
260
|
+
export { StartKyuubiServiceResponse } from './StartKyuubiServiceResponse';
|
|
243
261
|
export { StartLivyComputeRequest } from './StartLivyComputeRequest';
|
|
244
262
|
export { StartLivyComputeResponseBody } from './StartLivyComputeResponseBody';
|
|
245
263
|
export { StartLivyComputeResponse } from './StartLivyComputeResponse';
|
|
@@ -249,6 +267,8 @@ export { StartProcessInstanceResponse } from './StartProcessInstanceResponse';
|
|
|
249
267
|
export { StartSessionClusterRequest } from './StartSessionClusterRequest';
|
|
250
268
|
export { StartSessionClusterResponseBody } from './StartSessionClusterResponseBody';
|
|
251
269
|
export { StartSessionClusterResponse } from './StartSessionClusterResponse';
|
|
270
|
+
export { StopKyuubiServiceResponseBody } from './StopKyuubiServiceResponseBody';
|
|
271
|
+
export { StopKyuubiServiceResponse } from './StopKyuubiServiceResponse';
|
|
252
272
|
export { StopLivyComputeRequest } from './StopLivyComputeRequest';
|
|
253
273
|
export { StopLivyComputeResponseBody } from './StopLivyComputeResponseBody';
|
|
254
274
|
export { StopLivyComputeResponse } from './StopLivyComputeResponse';
|
|
@@ -258,6 +278,9 @@ export { StopSessionClusterResponse } from './StopSessionClusterResponse';
|
|
|
258
278
|
export { TerminateSqlStatementRequest } from './TerminateSqlStatementRequest';
|
|
259
279
|
export { TerminateSqlStatementResponseBody } from './TerminateSqlStatementResponseBody';
|
|
260
280
|
export { TerminateSqlStatementResponse } from './TerminateSqlStatementResponse';
|
|
281
|
+
export { UpdateKyuubiServiceRequest } from './UpdateKyuubiServiceRequest';
|
|
282
|
+
export { UpdateKyuubiServiceResponseBody } from './UpdateKyuubiServiceResponseBody';
|
|
283
|
+
export { UpdateKyuubiServiceResponse } from './UpdateKyuubiServiceResponse';
|
|
261
284
|
export { UpdateKyuubiTokenRequest } from './UpdateKyuubiTokenRequest';
|
|
262
285
|
export { UpdateKyuubiTokenResponseBody } from './UpdateKyuubiTokenResponseBody';
|
|
263
286
|
export { UpdateKyuubiTokenResponse } from './UpdateKyuubiTokenResponse';
|