@@ -20,6 +20,8 @@ import { BuyResourcePackageRequest } from './types/index';
2020import { BuyResourcePackageResponse } from './types/index' ;
2121import { ClearDeviceLongMemoryRequest } from './types/index' ;
2222import { ClearDeviceLongMemoryResponse } from './types/index' ;
23+ import { CreateDeviceWithoutApprovalRequest } from './types/index' ;
24+ import { CreateDeviceWithoutApprovalResponse } from './types/index' ;
2325import { GetAgentListRequest } from './types/index' ;
2426import { GetAgentListResponse } from './types/index' ;
2527import { GetDeviceBindTcOrderIDRequest } from './types/index' ;
@@ -43,6 +45,7 @@ import { TopActionDispatchResponse } from './types/index';
4345export type BuyPoolPackageCommandOutput = CommandOutput < BuyPoolPackageResponse > ;
4446export type BuyResourcePackageCommandOutput = CommandOutput < BuyResourcePackageResponse > ;
4547export type ClearDeviceLongMemoryCommandOutput = CommandOutput < ClearDeviceLongMemoryResponse > ;
48+ export type CreateDeviceWithoutApprovalCommandOutput = CommandOutput < CreateDeviceWithoutApprovalResponse > ;
4649export type GetAgentListCommandOutput = CommandOutput < GetAgentListResponse > ;
4750export type GetDeviceBindTcOrderIDCommandOutput = CommandOutput < GetDeviceBindTcOrderIDResponse > ;
4851export type GetPoolDetailListCommandOutput = CommandOutput < GetPoolDetailListResponse > ;
@@ -110,6 +113,21 @@ export class ClearDeviceLongMemoryCommand extends Command<
110113 this . requestConfig = buildRequestConfigFromMetaPath ( ClearDeviceLongMemoryCommand . metaPath ) ;
111114 }
112115}
116+ /**
117+ * Command to CreateDeviceWithoutApproval
118+ */
119+ export class CreateDeviceWithoutApprovalCommand extends Command <
120+ CreateDeviceWithoutApprovalRequest ,
121+ CreateDeviceWithoutApprovalCommandOutput ,
122+ 'CreateDeviceWithoutApprovalCommand'
123+ > {
124+ static readonly metaPath = '/CreateDeviceWithoutApproval/2024-07-31/tis/post/application_json/' ;
125+
126+ constructor ( input : CreateDeviceWithoutApprovalRequest ) {
127+ super ( input ) ;
128+ this . requestConfig = buildRequestConfigFromMetaPath ( CreateDeviceWithoutApprovalCommand . metaPath ) ;
129+ }
130+ }
113131/**
114132 * Command to GetAgentList
115133 */
@@ -236,6 +254,7 @@ export default {
236254 BuyPoolPackageCommand,
237255 BuyResourcePackageCommand,
238256 ClearDeviceLongMemoryCommand,
257+ CreateDeviceWithoutApprovalCommand,
239258 GetAgentListCommand,
240259 GetDeviceBindTcOrderIDCommand,
241260 GetPoolDetailListCommand,
0 commit comments