@alicloud/websitebuild20250429 2.18.2 → 2.19.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 +51 -0
- package/dist/client.js.map +1 -1
- package/dist/models/EditPluginConfigRequest.d.ts +38 -0
- package/dist/models/EditPluginConfigRequest.js +66 -0
- package/dist/models/EditPluginConfigRequest.js.map +1 -0
- package/dist/models/EditPluginConfigResponse.d.ts +19 -0
- package/dist/models/EditPluginConfigResponse.js +69 -0
- package/dist/models/EditPluginConfigResponse.js.map +1 -0
- package/dist/models/EditPluginConfigResponseBody.d.ts +67 -0
- package/dist/models/EditPluginConfigResponseBody.js +81 -0
- package/dist/models/EditPluginConfigResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +10 -4
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +58 -0
- package/src/models/EditPluginConfigRequest.ts +59 -0
- package/src/models/EditPluginConfigResponse.ts +40 -0
- package/src/models/EditPluginConfigResponseBody.ts +103 -0
- package/src/models/model.ts +3 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class EditPluginConfigResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* {}
|
|
9
|
+
*/
|
|
10
|
+
accessDeniedDetail?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* False
|
|
14
|
+
*/
|
|
15
|
+
allowRetry?: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* spring-cloud-b
|
|
19
|
+
*/
|
|
20
|
+
appName?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* ERROR-oo1
|
|
24
|
+
*/
|
|
25
|
+
dynamicCode?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* SYSTEM_ERROR
|
|
29
|
+
*/
|
|
30
|
+
dynamicMessage?: string;
|
|
31
|
+
errorArgs?: any[];
|
|
32
|
+
/**
|
|
33
|
+
* @example
|
|
34
|
+
* true
|
|
35
|
+
*/
|
|
36
|
+
module?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* @remarks
|
|
39
|
+
* Id of the request
|
|
40
|
+
*
|
|
41
|
+
* @example
|
|
42
|
+
* 6C6B99AC-39EC-5350-874C-204128C905E6
|
|
43
|
+
*/
|
|
44
|
+
requestId?: string;
|
|
45
|
+
/**
|
|
46
|
+
* @example
|
|
47
|
+
* SYSTEM.ERROR
|
|
48
|
+
*/
|
|
49
|
+
rootErrorCode?: string;
|
|
50
|
+
/**
|
|
51
|
+
* @example
|
|
52
|
+
* 系统异常
|
|
53
|
+
*/
|
|
54
|
+
rootErrorMsg?: string;
|
|
55
|
+
/**
|
|
56
|
+
* @example
|
|
57
|
+
* True
|
|
58
|
+
*/
|
|
59
|
+
synchro?: boolean;
|
|
60
|
+
static names(): { [key: string]: string } {
|
|
61
|
+
return {
|
|
62
|
+
accessDeniedDetail: 'AccessDeniedDetail',
|
|
63
|
+
allowRetry: 'AllowRetry',
|
|
64
|
+
appName: 'AppName',
|
|
65
|
+
dynamicCode: 'DynamicCode',
|
|
66
|
+
dynamicMessage: 'DynamicMessage',
|
|
67
|
+
errorArgs: 'ErrorArgs',
|
|
68
|
+
module: 'Module',
|
|
69
|
+
requestId: 'RequestId',
|
|
70
|
+
rootErrorCode: 'RootErrorCode',
|
|
71
|
+
rootErrorMsg: 'RootErrorMsg',
|
|
72
|
+
synchro: 'Synchro',
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
static types(): { [key: string]: any } {
|
|
77
|
+
return {
|
|
78
|
+
accessDeniedDetail: 'string',
|
|
79
|
+
allowRetry: 'boolean',
|
|
80
|
+
appName: 'string',
|
|
81
|
+
dynamicCode: 'string',
|
|
82
|
+
dynamicMessage: 'string',
|
|
83
|
+
errorArgs: { 'type': 'array', 'itemType': 'any' },
|
|
84
|
+
module: 'boolean',
|
|
85
|
+
requestId: 'string',
|
|
86
|
+
rootErrorCode: 'string',
|
|
87
|
+
rootErrorMsg: 'string',
|
|
88
|
+
synchro: 'boolean',
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
validate() {
|
|
93
|
+
if(Array.isArray(this.errorArgs)) {
|
|
94
|
+
$dara.Model.validateArray(this.errorArgs);
|
|
95
|
+
}
|
|
96
|
+
super.validate();
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
constructor(map?: { [key: string]: any }) {
|
|
100
|
+
super(map);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -177,6 +177,9 @@ export { DescribeAppDomainDnsRecordResponse } from './DescribeAppDomainDnsRecord
|
|
|
177
177
|
export { DispatchConsoleAPIForPartnerRequest } from './DispatchConsoleApiforPartnerRequest';
|
|
178
178
|
export { DispatchConsoleAPIForPartnerResponseBody } from './DispatchConsoleApiforPartnerResponseBody';
|
|
179
179
|
export { DispatchConsoleAPIForPartnerResponse } from './DispatchConsoleApiforPartnerResponse';
|
|
180
|
+
export { EditPluginConfigRequest } from './EditPluginConfigRequest';
|
|
181
|
+
export { EditPluginConfigResponseBody } from './EditPluginConfigResponseBody';
|
|
182
|
+
export { EditPluginConfigResponse } from './EditPluginConfigResponse';
|
|
180
183
|
export { ExportMaterialFileRequest } from './ExportMaterialFileRequest';
|
|
181
184
|
export { ExportMaterialFileShrinkRequest } from './ExportMaterialFileShrinkRequest';
|
|
182
185
|
export { ExportMaterialFileResponseBody } from './ExportMaterialFileResponseBody';
|