@alicloud/sae20190506 2.0.5 → 2.1.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/dist/client.d.ts +18 -0
- package/dist/client.js +48 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeApplicationGroupsResponseBodyData.d.ts +1 -0
- package/dist/models/DescribeApplicationGroupsResponseBodyData.js +2 -0
- package/dist/models/DescribeApplicationGroupsResponseBodyData.js.map +1 -1
- package/dist/models/DescribeApplicationSlbsResponseBodyData.d.ts +3 -0
- package/dist/models/DescribeApplicationSlbsResponseBodyData.js +6 -0
- package/dist/models/DescribeApplicationSlbsResponseBodyData.js.map +1 -1
- package/dist/models/DescribeChangeOrderResponseBodyData.d.ts +2 -0
- package/dist/models/DescribeChangeOrderResponseBodyData.js +4 -0
- package/dist/models/DescribeChangeOrderResponseBodyData.js.map +1 -1
- package/dist/models/ListApplicationsForSwimmingLaneRequest.d.ts +31 -0
- package/dist/models/ListApplicationsForSwimmingLaneRequest.js +62 -0
- package/dist/models/ListApplicationsForSwimmingLaneRequest.js.map +1 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponse.d.ts +19 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponse.js +69 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponse.js.map +1 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBody.d.ts +36 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBody.js +72 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBody.js.map +1 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBodyData.d.ts +51 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBodyData.js +75 -0
- package/dist/models/ListApplicationsForSwimmingLaneResponseBodyData.js.map +1 -0
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +21 -13
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +53 -0
- package/src/models/DescribeApplicationGroupsResponseBodyData.ts +3 -0
- package/src/models/DescribeApplicationSlbsResponseBodyData.ts +9 -0
- package/src/models/DescribeChangeOrderResponseBodyData.ts +6 -0
- package/src/models/ListApplicationsForSwimmingLaneRequest.ts +48 -0
- package/src/models/ListApplicationsForSwimmingLaneResponse.ts +40 -0
- package/src/models/ListApplicationsForSwimmingLaneResponseBody.ts +62 -0
- package/src/models/ListApplicationsForSwimmingLaneResponseBodyData.ts +79 -0
- package/src/models/model.ts +4 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListApplicationsForSwimmingLaneResponseBodyData extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 0099b7be-5f5b-4512-a7fc-56049ef1****
|
|
9
|
+
*/
|
|
10
|
+
appId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* demo-app
|
|
14
|
+
*/
|
|
15
|
+
appName?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 8c573618-8d72-4407-baf4-f7b64b******
|
|
19
|
+
*/
|
|
20
|
+
baseAppId?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* demo
|
|
24
|
+
*/
|
|
25
|
+
baseAppName?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* mse-cn-hvm47******
|
|
29
|
+
*/
|
|
30
|
+
mseAppId?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* test
|
|
34
|
+
*/
|
|
35
|
+
mseAppName?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* sae-test
|
|
39
|
+
*/
|
|
40
|
+
mseNamespaceId?: string;
|
|
41
|
+
serviceTags?: { [key: string]: string };
|
|
42
|
+
static names(): { [key: string]: string } {
|
|
43
|
+
return {
|
|
44
|
+
appId: 'AppId',
|
|
45
|
+
appName: 'AppName',
|
|
46
|
+
baseAppId: 'BaseAppId',
|
|
47
|
+
baseAppName: 'BaseAppName',
|
|
48
|
+
mseAppId: 'MseAppId',
|
|
49
|
+
mseAppName: 'MseAppName',
|
|
50
|
+
mseNamespaceId: 'MseNamespaceId',
|
|
51
|
+
serviceTags: 'ServiceTags',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
static types(): { [key: string]: any } {
|
|
56
|
+
return {
|
|
57
|
+
appId: 'string',
|
|
58
|
+
appName: 'string',
|
|
59
|
+
baseAppId: 'string',
|
|
60
|
+
baseAppName: 'string',
|
|
61
|
+
mseAppId: 'string',
|
|
62
|
+
mseAppName: 'string',
|
|
63
|
+
mseNamespaceId: 'string',
|
|
64
|
+
serviceTags: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
validate() {
|
|
69
|
+
if(this.serviceTags) {
|
|
70
|
+
$dara.Model.validateMap(this.serviceTags);
|
|
71
|
+
}
|
|
72
|
+
super.validate();
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
constructor(map?: { [key: string]: any }) {
|
|
76
|
+
super(map);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -181,6 +181,7 @@ export { ListApplicationsResponseBodyDataApplicationsChildren } from './ListAppl
|
|
|
181
181
|
export { ListApplicationsResponseBodyDataApplicationsTags } from './ListApplicationsResponseBodyDataApplicationsTags';
|
|
182
182
|
export { ListApplicationsResponseBodyDataApplications } from './ListApplicationsResponseBodyDataApplications';
|
|
183
183
|
export { ListApplicationsResponseBodyData } from './ListApplicationsResponseBodyData';
|
|
184
|
+
export { ListApplicationsForSwimmingLaneResponseBodyData } from './ListApplicationsForSwimmingLaneResponseBodyData';
|
|
184
185
|
export { ListChangeOrdersResponseBodyDataChangeOrderList } from './ListChangeOrdersResponseBodyDataChangeOrderList';
|
|
185
186
|
export { ListChangeOrdersResponseBodyData } from './ListChangeOrdersResponseBodyData';
|
|
186
187
|
export { ListConsumedServicesResponseBodyData } from './ListConsumedServicesResponseBodyData';
|
|
@@ -625,6 +626,9 @@ export { ListAppVersionsResponse } from './ListAppVersionsResponse';
|
|
|
625
626
|
export { ListApplicationsRequest } from './ListApplicationsRequest';
|
|
626
627
|
export { ListApplicationsResponseBody } from './ListApplicationsResponseBody';
|
|
627
628
|
export { ListApplicationsResponse } from './ListApplicationsResponse';
|
|
629
|
+
export { ListApplicationsForSwimmingLaneRequest } from './ListApplicationsForSwimmingLaneRequest';
|
|
630
|
+
export { ListApplicationsForSwimmingLaneResponseBody } from './ListApplicationsForSwimmingLaneResponseBody';
|
|
631
|
+
export { ListApplicationsForSwimmingLaneResponse } from './ListApplicationsForSwimmingLaneResponse';
|
|
628
632
|
export { ListChangeOrdersRequest } from './ListChangeOrdersRequest';
|
|
629
633
|
export { ListChangeOrdersResponseBody } from './ListChangeOrdersResponseBody';
|
|
630
634
|
export { ListChangeOrdersResponse } from './ListChangeOrdersResponse';
|