@@ -98,6 +98,8 @@ import { GetPodPropertyRequest } from './types/index';
9898import { GetPodPropertyResponse } from './types/index' ;
9999import { GetProductResourceRequest } from './types/index' ;
100100import { GetProductResourceResponse } from './types/index' ;
101+ import { GetProxyRequest } from './types/index' ;
102+ import { GetProxyResponse } from './types/index' ;
101103import { GetTaskInfoRequest } from './types/index' ;
102104import { GetTaskInfoResponse } from './types/index' ;
103105import { InstallAppRequest } from './types/index' ;
@@ -112,20 +114,38 @@ import { ListAOSPImageRequest } from './types/index';
112114import { ListAOSPImageResponse } from './types/index' ;
113115import { ListAppRequest } from './types/index' ;
114116import { ListAppResponse } from './types/index' ;
117+ import { ListAppVersionDeployRequest } from './types/index' ;
118+ import { ListAppVersionDeployResponse } from './types/index' ;
115119import { ListBackupDataRequest } from './types/index' ;
116120import { ListBackupDataResponse } from './types/index' ;
117121import { ListConfigurationRequest } from './types/index' ;
118122import { ListConfigurationResponse } from './types/index' ;
119123import { ListCustomRouteRequest } from './types/index' ;
120124import { ListCustomRouteResponse } from './types/index' ;
125+ import { ListDNSRuleRequest } from './types/index' ;
126+ import { ListDNSRuleResponse } from './types/index' ;
121127import { ListDcRequest } from './types/index' ;
122128import { ListDcResponse } from './types/index' ;
129+ import { ListDisplayLayoutMiniRequest } from './types/index' ;
130+ import { ListDisplayLayoutMiniResponse } from './types/index' ;
131+ import { ListHostRequest } from './types/index' ;
132+ import { ListHostResponse } from './types/index' ;
123133import { ListImageResourceRequest } from './types/index' ;
124134import { ListImageResourceResponse } from './types/index' ;
125135import { ListPhoneTemplateRequest } from './types/index' ;
126136import { ListPhoneTemplateResponse } from './types/index' ;
127137import { ListPodRequest } from './types/index' ;
138+ import { ListPodResourceRequest } from './types/index' ;
139+ import { ListPodResourceResponse } from './types/index' ;
140+ import { ListPodResourceSetRequest } from './types/index' ;
141+ import { ListPodResourceSetResponse } from './types/index' ;
128142import { ListPodResponse } from './types/index' ;
143+ import { ListPortMappingRuleRequest } from './types/index' ;
144+ import { ListPortMappingRuleResponse } from './types/index' ;
145+ import { ListTagRequest } from './types/index' ;
146+ import { ListTagResponse } from './types/index' ;
147+ import { ListTaskRequest } from './types/index' ;
148+ import { ListTaskResponse } from './types/index' ;
129149import { MigratePodRequest } from './types/index' ;
130150import { MigratePodResponse } from './types/index' ;
131151import { PodAdbRequest } from './types/index' ;
@@ -252,20 +272,30 @@ export type GetPodAppListCommandOutput = CommandOutput<GetPodAppListResponse>;
252272export type GetPodMetricCommandOutput = CommandOutput < GetPodMetricResponse > ;
253273export type GetPodPropertyCommandOutput = CommandOutput < GetPodPropertyResponse > ;
254274export type GetProductResourceCommandOutput = CommandOutput < GetProductResourceResponse > ;
275+ export type GetProxyCommandOutput = CommandOutput < GetProxyResponse > ;
255276export type GetTaskInfoCommandOutput = CommandOutput < GetTaskInfoResponse > ;
256277export type InstallAppCommandOutput = CommandOutput < InstallAppResponse > ;
257278export type InstallAppsCommandOutput = CommandOutput < InstallAppsResponse > ;
258279export type LaunchAppCommandOutput = CommandOutput < LaunchAppResponse > ;
259280export type LaunchAppsCommandOutput = CommandOutput < LaunchAppsResponse > ;
260281export type ListAOSPImageCommandOutput = CommandOutput < ListAOSPImageResponse > ;
261282export type ListAppCommandOutput = CommandOutput < ListAppResponse > ;
283+ export type ListAppVersionDeployCommandOutput = CommandOutput < ListAppVersionDeployResponse > ;
262284export type ListBackupDataCommandOutput = CommandOutput < ListBackupDataResponse > ;
263285export type ListConfigurationCommandOutput = CommandOutput < ListConfigurationResponse > ;
264286export type ListCustomRouteCommandOutput = CommandOutput < ListCustomRouteResponse > ;
287+ export type ListDNSRuleCommandOutput = CommandOutput < ListDNSRuleResponse > ;
265288export type ListDcCommandOutput = CommandOutput < ListDcResponse > ;
289+ export type ListDisplayLayoutMiniCommandOutput = CommandOutput < ListDisplayLayoutMiniResponse > ;
290+ export type ListHostCommandOutput = CommandOutput < ListHostResponse > ;
266291export type ListImageResourceCommandOutput = CommandOutput < ListImageResourceResponse > ;
267292export type ListPhoneTemplateCommandOutput = CommandOutput < ListPhoneTemplateResponse > ;
268293export type ListPodCommandOutput = CommandOutput < ListPodResponse > ;
294+ export type ListPodResourceCommandOutput = CommandOutput < ListPodResourceResponse > ;
295+ export type ListPodResourceSetCommandOutput = CommandOutput < ListPodResourceSetResponse > ;
296+ export type ListPortMappingRuleCommandOutput = CommandOutput < ListPortMappingRuleResponse > ;
297+ export type ListTagCommandOutput = CommandOutput < ListTagResponse > ;
298+ export type ListTaskCommandOutput = CommandOutput < ListTaskResponse > ;
269299export type MigratePodCommandOutput = CommandOutput < MigratePodResponse > ;
270300export type PodAdbCommandOutput = CommandOutput < PodAdbResponse > ;
271301export type PodDataDeleteCommandOutput = CommandOutput < PodDataDeleteResponse > ;
@@ -950,6 +980,21 @@ export class GetProductResourceCommand extends Command<
950980 this . requestConfig = buildRequestConfigFromMetaPath ( GetProductResourceCommand . metaPath ) ;
951981 }
952982}
983+ /**
984+ * Command to GetProxy
985+ */
986+ export class GetProxyCommand extends Command <
987+ GetProxyRequest ,
988+ GetProxyCommandOutput ,
989+ 'GetProxyCommand'
990+ > {
991+ static readonly metaPath = '/GetProxy/2025-05-01/acep/post/application_json/' ;
992+
993+ constructor ( input : GetProxyRequest ) {
994+ super ( input ) ;
995+ this . requestConfig = buildRequestConfigFromMetaPath ( GetProxyCommand . metaPath ) ;
996+ }
997+ }
953998/**
954999 * Command to GetTaskInfo
9551000 */
@@ -1055,6 +1100,21 @@ export class ListAppCommand extends Command<
10551100 this . requestConfig = buildRequestConfigFromMetaPath ( ListAppCommand . metaPath ) ;
10561101 }
10571102}
1103+ /**
1104+ * Command to ListAppVersionDeploy
1105+ */
1106+ export class ListAppVersionDeployCommand extends Command <
1107+ ListAppVersionDeployRequest ,
1108+ ListAppVersionDeployCommandOutput ,
1109+ 'ListAppVersionDeployCommand'
1110+ > {
1111+ static readonly metaPath = '/ListAppVersionDeploy/2025-05-01/acep/post/application_json/' ;
1112+
1113+ constructor ( input : ListAppVersionDeployRequest ) {
1114+ super ( input ) ;
1115+ this . requestConfig = buildRequestConfigFromMetaPath ( ListAppVersionDeployCommand . metaPath ) ;
1116+ }
1117+ }
10581118/**
10591119 * Command to ListBackupData
10601120 */
@@ -1100,6 +1160,21 @@ export class ListCustomRouteCommand extends Command<
11001160 this . requestConfig = buildRequestConfigFromMetaPath ( ListCustomRouteCommand . metaPath ) ;
11011161 }
11021162}
1163+ /**
1164+ * Command to ListDNSRule
1165+ */
1166+ export class ListDNSRuleCommand extends Command <
1167+ ListDNSRuleRequest ,
1168+ ListDNSRuleCommandOutput ,
1169+ 'ListDNSRuleCommand'
1170+ > {
1171+ static readonly metaPath = '/ListDNSRule/2025-05-01/acep/post/application_json/' ;
1172+
1173+ constructor ( input : ListDNSRuleRequest ) {
1174+ super ( input ) ;
1175+ this . requestConfig = buildRequestConfigFromMetaPath ( ListDNSRuleCommand . metaPath ) ;
1176+ }
1177+ }
11031178/**
11041179 * Command to ListDc
11051180 */
@@ -1115,6 +1190,36 @@ export class ListDcCommand extends Command<
11151190 this . requestConfig = buildRequestConfigFromMetaPath ( ListDcCommand . metaPath ) ;
11161191 }
11171192}
1193+ /**
1194+ * Command to ListDisplayLayoutMini
1195+ */
1196+ export class ListDisplayLayoutMiniCommand extends Command <
1197+ ListDisplayLayoutMiniRequest ,
1198+ ListDisplayLayoutMiniCommandOutput ,
1199+ 'ListDisplayLayoutMiniCommand'
1200+ > {
1201+ static readonly metaPath = '/ListDisplayLayoutMini/2025-05-01/acep/post/application_json/' ;
1202+
1203+ constructor ( input : ListDisplayLayoutMiniRequest ) {
1204+ super ( input ) ;
1205+ this . requestConfig = buildRequestConfigFromMetaPath ( ListDisplayLayoutMiniCommand . metaPath ) ;
1206+ }
1207+ }
1208+ /**
1209+ * Command to ListHost
1210+ */
1211+ export class ListHostCommand extends Command <
1212+ ListHostRequest ,
1213+ ListHostCommandOutput ,
1214+ 'ListHostCommand'
1215+ > {
1216+ static readonly metaPath = '/ListHost/2025-05-01/acep/post/application_json/' ;
1217+
1218+ constructor ( input : ListHostRequest ) {
1219+ super ( input ) ;
1220+ this . requestConfig = buildRequestConfigFromMetaPath ( ListHostCommand . metaPath ) ;
1221+ }
1222+ }
11181223/**
11191224 * Command to ListImageResource
11201225 */
@@ -1160,6 +1265,81 @@ export class ListPodCommand extends Command<
11601265 this . requestConfig = buildRequestConfigFromMetaPath ( ListPodCommand . metaPath ) ;
11611266 }
11621267}
1268+ /**
1269+ * Command to ListPodResource
1270+ */
1271+ export class ListPodResourceCommand extends Command <
1272+ ListPodResourceRequest ,
1273+ ListPodResourceCommandOutput ,
1274+ 'ListPodResourceCommand'
1275+ > {
1276+ static readonly metaPath = '/ListPodResource/2025-05-01/acep/post/application_json/' ;
1277+
1278+ constructor ( input : ListPodResourceRequest ) {
1279+ super ( input ) ;
1280+ this . requestConfig = buildRequestConfigFromMetaPath ( ListPodResourceCommand . metaPath ) ;
1281+ }
1282+ }
1283+ /**
1284+ * Command to ListPodResourceSet
1285+ */
1286+ export class ListPodResourceSetCommand extends Command <
1287+ ListPodResourceSetRequest ,
1288+ ListPodResourceSetCommandOutput ,
1289+ 'ListPodResourceSetCommand'
1290+ > {
1291+ static readonly metaPath = '/ListPodResourceSet/2025-05-01/acep/post/application_json/' ;
1292+
1293+ constructor ( input : ListPodResourceSetRequest ) {
1294+ super ( input ) ;
1295+ this . requestConfig = buildRequestConfigFromMetaPath ( ListPodResourceSetCommand . metaPath ) ;
1296+ }
1297+ }
1298+ /**
1299+ * Command to ListPortMappingRule
1300+ */
1301+ export class ListPortMappingRuleCommand extends Command <
1302+ ListPortMappingRuleRequest ,
1303+ ListPortMappingRuleCommandOutput ,
1304+ 'ListPortMappingRuleCommand'
1305+ > {
1306+ static readonly metaPath = '/ListPortMappingRule/2025-05-01/acep/post/application_json/' ;
1307+
1308+ constructor ( input : ListPortMappingRuleRequest ) {
1309+ super ( input ) ;
1310+ this . requestConfig = buildRequestConfigFromMetaPath ( ListPortMappingRuleCommand . metaPath ) ;
1311+ }
1312+ }
1313+ /**
1314+ * Command to ListTag
1315+ */
1316+ export class ListTagCommand extends Command <
1317+ ListTagRequest ,
1318+ ListTagCommandOutput ,
1319+ 'ListTagCommand'
1320+ > {
1321+ static readonly metaPath = '/ListTag/2025-05-01/acep/post/application_json/' ;
1322+
1323+ constructor ( input : ListTagRequest ) {
1324+ super ( input ) ;
1325+ this . requestConfig = buildRequestConfigFromMetaPath ( ListTagCommand . metaPath ) ;
1326+ }
1327+ }
1328+ /**
1329+ * Command to ListTask
1330+ */
1331+ export class ListTaskCommand extends Command <
1332+ ListTaskRequest ,
1333+ ListTaskCommandOutput ,
1334+ 'ListTaskCommand'
1335+ > {
1336+ static readonly metaPath = '/ListTask/2025-05-01/acep/get/text_plain/' ;
1337+
1338+ constructor ( input : ListTaskRequest ) {
1339+ super ( input ) ;
1340+ this . requestConfig = buildRequestConfigFromMetaPath ( ListTaskCommand . metaPath ) ;
1341+ }
1342+ }
11631343/**
11641344 * Command to MigratePod
11651345 */
@@ -1805,20 +1985,30 @@ export default {
18051985 GetPodMetricCommand,
18061986 GetPodPropertyCommand,
18071987 GetProductResourceCommand,
1988+ GetProxyCommand,
18081989 GetTaskInfoCommand,
18091990 InstallAppCommand,
18101991 InstallAppsCommand,
18111992 LaunchAppCommand,
18121993 LaunchAppsCommand,
18131994 ListAOSPImageCommand,
18141995 ListAppCommand,
1996+ ListAppVersionDeployCommand,
18151997 ListBackupDataCommand,
18161998 ListConfigurationCommand,
18171999 ListCustomRouteCommand,
2000+ ListDNSRuleCommand,
18182001 ListDcCommand,
2002+ ListDisplayLayoutMiniCommand,
2003+ ListHostCommand,
18192004 ListImageResourceCommand,
18202005 ListPhoneTemplateCommand,
18212006 ListPodCommand,
2007+ ListPodResourceCommand,
2008+ ListPodResourceSetCommand,
2009+ ListPortMappingRuleCommand,
2010+ ListTagCommand,
2011+ ListTaskCommand,
18222012 MigratePodCommand,
18232013 PodAdbCommand,
18242014 PodDataDeleteCommand,
0 commit comments