@alicloud/oos20190601 3.6.0 → 3.7.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 +15 -0
- package/dist/client.js +54 -0
- package/dist/client.js.map +1 -1
- package/dist/models/ListGitAccountsRequest.d.ts +1 -0
- package/dist/models/ListGitAccountsRequest.js +2 -0
- package/dist/models/ListGitAccountsRequest.js.map +1 -1
- package/dist/models/ListGitOrganizationsRequest.d.ts +1 -0
- package/dist/models/ListGitOrganizationsRequest.js +2 -0
- package/dist/models/ListGitOrganizationsRequest.js.map +1 -1
- package/dist/models/StartDebugExecutionRequest.d.ts +33 -0
- package/dist/models/StartDebugExecutionRequest.js +64 -0
- package/dist/models/StartDebugExecutionRequest.js.map +1 -0
- package/dist/models/StartDebugExecutionResponse.d.ts +19 -0
- package/dist/models/StartDebugExecutionResponse.js +69 -0
- package/dist/models/StartDebugExecutionResponse.js.map +1 -0
- package/dist/models/StartDebugExecutionResponseBody.d.ts +23 -0
- package/dist/models/StartDebugExecutionResponseBody.js +60 -0
- package/dist/models/StartDebugExecutionResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +8 -2
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +62 -0
- package/src/models/ListGitAccountsRequest.ts +3 -0
- package/src/models/ListGitOrganizationsRequest.ts +3 -0
- package/src/models/StartDebugExecutionRequest.ts +52 -0
- package/src/models/StartDebugExecutionResponse.ts +40 -0
- package/src/models/StartDebugExecutionResponseBody.ts +38 -0
- package/src/models/model.ts +3 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class StartDebugExecutionRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* abcde3OARpx77No54nv6
|
|
9
|
+
*/
|
|
10
|
+
clientToken?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* {"Service": "ecs", "API": "DescribeRegions"}
|
|
14
|
+
*/
|
|
15
|
+
properties?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* cn-hangzhou
|
|
19
|
+
*/
|
|
20
|
+
regionId?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* ACS::ExecuteAPI
|
|
24
|
+
*/
|
|
25
|
+
taskType?: string;
|
|
26
|
+
static names(): { [key: string]: string } {
|
|
27
|
+
return {
|
|
28
|
+
clientToken: 'ClientToken',
|
|
29
|
+
properties: 'Properties',
|
|
30
|
+
regionId: 'RegionId',
|
|
31
|
+
taskType: 'TaskType',
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
static types(): { [key: string]: any } {
|
|
36
|
+
return {
|
|
37
|
+
clientToken: 'string',
|
|
38
|
+
properties: 'string',
|
|
39
|
+
regionId: 'string',
|
|
40
|
+
taskType: 'string',
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
validate() {
|
|
45
|
+
super.validate();
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
constructor(map?: { [key: string]: any }) {
|
|
49
|
+
super(map);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { StartDebugExecutionResponseBody } from "./StartDebugExecutionResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class StartDebugExecutionResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: StartDebugExecutionResponseBody;
|
|
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: StartDebugExecutionResponseBody,
|
|
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 StartDebugExecutionResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* exec-xxx
|
|
9
|
+
*/
|
|
10
|
+
executionId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* A5320F1D-92D9-44BB-A416-5FC525ED6D57
|
|
14
|
+
*/
|
|
15
|
+
requestId?: string;
|
|
16
|
+
static names(): { [key: string]: string } {
|
|
17
|
+
return {
|
|
18
|
+
executionId: 'ExecutionId',
|
|
19
|
+
requestId: 'RequestId',
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
static types(): { [key: string]: any } {
|
|
24
|
+
return {
|
|
25
|
+
executionId: 'string',
|
|
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
|
@@ -338,6 +338,9 @@ export { SearchInventoryResponse } from './SearchInventoryResponse';
|
|
|
338
338
|
export { SetServiceSettingsRequest } from './SetServiceSettingsRequest';
|
|
339
339
|
export { SetServiceSettingsResponseBody } from './SetServiceSettingsResponseBody';
|
|
340
340
|
export { SetServiceSettingsResponse } from './SetServiceSettingsResponse';
|
|
341
|
+
export { StartDebugExecutionRequest } from './StartDebugExecutionRequest';
|
|
342
|
+
export { StartDebugExecutionResponseBody } from './StartDebugExecutionResponseBody';
|
|
343
|
+
export { StartDebugExecutionResponse } from './StartDebugExecutionResponse';
|
|
341
344
|
export { StartExecutionRequest } from './StartExecutionRequest';
|
|
342
345
|
export { StartExecutionShrinkRequest } from './StartExecutionShrinkRequest';
|
|
343
346
|
export { StartExecutionResponseBody } from './StartExecutionResponseBody';
|