@alicloud/cloudapi20160714 4.0.2 → 4.1.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 +225 -0
- package/dist/client.js +408 -19
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +455 -0
package/dist/client.d.ts
CHANGED
|
@@ -609,6 +609,89 @@ export declare class CreateAppResponse extends $tea.Model {
|
|
|
609
609
|
[key: string]: any;
|
|
610
610
|
});
|
|
611
611
|
}
|
|
612
|
+
export declare class CreateAppCodeRequest extends $tea.Model {
|
|
613
|
+
appCode?: string;
|
|
614
|
+
appId?: string;
|
|
615
|
+
static names(): {
|
|
616
|
+
[key: string]: string;
|
|
617
|
+
};
|
|
618
|
+
static types(): {
|
|
619
|
+
[key: string]: any;
|
|
620
|
+
};
|
|
621
|
+
constructor(map?: {
|
|
622
|
+
[key: string]: any;
|
|
623
|
+
});
|
|
624
|
+
}
|
|
625
|
+
export declare class CreateAppCodeResponseBody extends $tea.Model {
|
|
626
|
+
requestId?: string;
|
|
627
|
+
static names(): {
|
|
628
|
+
[key: string]: string;
|
|
629
|
+
};
|
|
630
|
+
static types(): {
|
|
631
|
+
[key: string]: any;
|
|
632
|
+
};
|
|
633
|
+
constructor(map?: {
|
|
634
|
+
[key: string]: any;
|
|
635
|
+
});
|
|
636
|
+
}
|
|
637
|
+
export declare class CreateAppCodeResponse extends $tea.Model {
|
|
638
|
+
headers?: {
|
|
639
|
+
[key: string]: string;
|
|
640
|
+
};
|
|
641
|
+
statusCode?: number;
|
|
642
|
+
body?: CreateAppCodeResponseBody;
|
|
643
|
+
static names(): {
|
|
644
|
+
[key: string]: string;
|
|
645
|
+
};
|
|
646
|
+
static types(): {
|
|
647
|
+
[key: string]: any;
|
|
648
|
+
};
|
|
649
|
+
constructor(map?: {
|
|
650
|
+
[key: string]: any;
|
|
651
|
+
});
|
|
652
|
+
}
|
|
653
|
+
export declare class CreateAppKeyRequest extends $tea.Model {
|
|
654
|
+
appId?: string;
|
|
655
|
+
appKey?: string;
|
|
656
|
+
appSecret?: string;
|
|
657
|
+
static names(): {
|
|
658
|
+
[key: string]: string;
|
|
659
|
+
};
|
|
660
|
+
static types(): {
|
|
661
|
+
[key: string]: any;
|
|
662
|
+
};
|
|
663
|
+
constructor(map?: {
|
|
664
|
+
[key: string]: any;
|
|
665
|
+
});
|
|
666
|
+
}
|
|
667
|
+
export declare class CreateAppKeyResponseBody extends $tea.Model {
|
|
668
|
+
requestId?: string;
|
|
669
|
+
static names(): {
|
|
670
|
+
[key: string]: string;
|
|
671
|
+
};
|
|
672
|
+
static types(): {
|
|
673
|
+
[key: string]: any;
|
|
674
|
+
};
|
|
675
|
+
constructor(map?: {
|
|
676
|
+
[key: string]: any;
|
|
677
|
+
});
|
|
678
|
+
}
|
|
679
|
+
export declare class CreateAppKeyResponse extends $tea.Model {
|
|
680
|
+
headers?: {
|
|
681
|
+
[key: string]: string;
|
|
682
|
+
};
|
|
683
|
+
statusCode?: number;
|
|
684
|
+
body?: CreateAppKeyResponseBody;
|
|
685
|
+
static names(): {
|
|
686
|
+
[key: string]: string;
|
|
687
|
+
};
|
|
688
|
+
static types(): {
|
|
689
|
+
[key: string]: any;
|
|
690
|
+
};
|
|
691
|
+
constructor(map?: {
|
|
692
|
+
[key: string]: any;
|
|
693
|
+
});
|
|
694
|
+
}
|
|
612
695
|
export declare class CreateBackendRequest extends $tea.Model {
|
|
613
696
|
backendName?: string;
|
|
614
697
|
backendType?: string;
|
|
@@ -1504,6 +1587,88 @@ export declare class DeleteAppResponse extends $tea.Model {
|
|
|
1504
1587
|
[key: string]: any;
|
|
1505
1588
|
});
|
|
1506
1589
|
}
|
|
1590
|
+
export declare class DeleteAppCodeRequest extends $tea.Model {
|
|
1591
|
+
appCode?: string;
|
|
1592
|
+
appId?: string;
|
|
1593
|
+
static names(): {
|
|
1594
|
+
[key: string]: string;
|
|
1595
|
+
};
|
|
1596
|
+
static types(): {
|
|
1597
|
+
[key: string]: any;
|
|
1598
|
+
};
|
|
1599
|
+
constructor(map?: {
|
|
1600
|
+
[key: string]: any;
|
|
1601
|
+
});
|
|
1602
|
+
}
|
|
1603
|
+
export declare class DeleteAppCodeResponseBody extends $tea.Model {
|
|
1604
|
+
requestId?: string;
|
|
1605
|
+
static names(): {
|
|
1606
|
+
[key: string]: string;
|
|
1607
|
+
};
|
|
1608
|
+
static types(): {
|
|
1609
|
+
[key: string]: any;
|
|
1610
|
+
};
|
|
1611
|
+
constructor(map?: {
|
|
1612
|
+
[key: string]: any;
|
|
1613
|
+
});
|
|
1614
|
+
}
|
|
1615
|
+
export declare class DeleteAppCodeResponse extends $tea.Model {
|
|
1616
|
+
headers?: {
|
|
1617
|
+
[key: string]: string;
|
|
1618
|
+
};
|
|
1619
|
+
statusCode?: number;
|
|
1620
|
+
body?: DeleteAppCodeResponseBody;
|
|
1621
|
+
static names(): {
|
|
1622
|
+
[key: string]: string;
|
|
1623
|
+
};
|
|
1624
|
+
static types(): {
|
|
1625
|
+
[key: string]: any;
|
|
1626
|
+
};
|
|
1627
|
+
constructor(map?: {
|
|
1628
|
+
[key: string]: any;
|
|
1629
|
+
});
|
|
1630
|
+
}
|
|
1631
|
+
export declare class DeleteAppKeyRequest extends $tea.Model {
|
|
1632
|
+
appId?: string;
|
|
1633
|
+
appKey?: string;
|
|
1634
|
+
static names(): {
|
|
1635
|
+
[key: string]: string;
|
|
1636
|
+
};
|
|
1637
|
+
static types(): {
|
|
1638
|
+
[key: string]: any;
|
|
1639
|
+
};
|
|
1640
|
+
constructor(map?: {
|
|
1641
|
+
[key: string]: any;
|
|
1642
|
+
});
|
|
1643
|
+
}
|
|
1644
|
+
export declare class DeleteAppKeyResponseBody extends $tea.Model {
|
|
1645
|
+
requestId?: string;
|
|
1646
|
+
static names(): {
|
|
1647
|
+
[key: string]: string;
|
|
1648
|
+
};
|
|
1649
|
+
static types(): {
|
|
1650
|
+
[key: string]: any;
|
|
1651
|
+
};
|
|
1652
|
+
constructor(map?: {
|
|
1653
|
+
[key: string]: any;
|
|
1654
|
+
});
|
|
1655
|
+
}
|
|
1656
|
+
export declare class DeleteAppKeyResponse extends $tea.Model {
|
|
1657
|
+
headers?: {
|
|
1658
|
+
[key: string]: string;
|
|
1659
|
+
};
|
|
1660
|
+
statusCode?: number;
|
|
1661
|
+
body?: DeleteAppKeyResponseBody;
|
|
1662
|
+
static names(): {
|
|
1663
|
+
[key: string]: string;
|
|
1664
|
+
};
|
|
1665
|
+
static types(): {
|
|
1666
|
+
[key: string]: any;
|
|
1667
|
+
};
|
|
1668
|
+
constructor(map?: {
|
|
1669
|
+
[key: string]: any;
|
|
1670
|
+
});
|
|
1671
|
+
}
|
|
1507
1672
|
export declare class DeleteBackendRequest extends $tea.Model {
|
|
1508
1673
|
backendId?: string;
|
|
1509
1674
|
securityToken?: string;
|
|
@@ -14490,6 +14655,36 @@ export default class Client extends OpenApi {
|
|
|
14490
14655
|
* @return CreateAppResponse
|
|
14491
14656
|
*/
|
|
14492
14657
|
createApp(request: CreateAppRequest): Promise<CreateAppResponse>;
|
|
14658
|
+
/**
|
|
14659
|
+
* @summary 创建新的AppCode
|
|
14660
|
+
*
|
|
14661
|
+
* @param request CreateAppCodeRequest
|
|
14662
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14663
|
+
* @return CreateAppCodeResponse
|
|
14664
|
+
*/
|
|
14665
|
+
createAppCodeWithOptions(request: CreateAppCodeRequest, runtime: $Util.RuntimeOptions): Promise<CreateAppCodeResponse>;
|
|
14666
|
+
/**
|
|
14667
|
+
* @summary 创建新的AppCode
|
|
14668
|
+
*
|
|
14669
|
+
* @param request CreateAppCodeRequest
|
|
14670
|
+
* @return CreateAppCodeResponse
|
|
14671
|
+
*/
|
|
14672
|
+
createAppCode(request: CreateAppCodeRequest): Promise<CreateAppCodeResponse>;
|
|
14673
|
+
/**
|
|
14674
|
+
* @summary 创建新的AK、SK
|
|
14675
|
+
*
|
|
14676
|
+
* @param request CreateAppKeyRequest
|
|
14677
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14678
|
+
* @return CreateAppKeyResponse
|
|
14679
|
+
*/
|
|
14680
|
+
createAppKeyWithOptions(request: CreateAppKeyRequest, runtime: $Util.RuntimeOptions): Promise<CreateAppKeyResponse>;
|
|
14681
|
+
/**
|
|
14682
|
+
* @summary 创建新的AK、SK
|
|
14683
|
+
*
|
|
14684
|
+
* @param request CreateAppKeyRequest
|
|
14685
|
+
* @return CreateAppKeyResponse
|
|
14686
|
+
*/
|
|
14687
|
+
createAppKey(request: CreateAppKeyRequest): Promise<CreateAppKeyResponse>;
|
|
14493
14688
|
/**
|
|
14494
14689
|
* @summary 创建后端服务
|
|
14495
14690
|
*
|
|
@@ -14862,6 +15057,36 @@ export default class Client extends OpenApi {
|
|
|
14862
15057
|
* @return DeleteAppResponse
|
|
14863
15058
|
*/
|
|
14864
15059
|
deleteApp(request: DeleteAppRequest): Promise<DeleteAppResponse>;
|
|
15060
|
+
/**
|
|
15061
|
+
* @summary 删除新的AppCode
|
|
15062
|
+
*
|
|
15063
|
+
* @param request DeleteAppCodeRequest
|
|
15064
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15065
|
+
* @return DeleteAppCodeResponse
|
|
15066
|
+
*/
|
|
15067
|
+
deleteAppCodeWithOptions(request: DeleteAppCodeRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAppCodeResponse>;
|
|
15068
|
+
/**
|
|
15069
|
+
* @summary 删除新的AppCode
|
|
15070
|
+
*
|
|
15071
|
+
* @param request DeleteAppCodeRequest
|
|
15072
|
+
* @return DeleteAppCodeResponse
|
|
15073
|
+
*/
|
|
15074
|
+
deleteAppCode(request: DeleteAppCodeRequest): Promise<DeleteAppCodeResponse>;
|
|
15075
|
+
/**
|
|
15076
|
+
* @summary 删除新的AppKey
|
|
15077
|
+
*
|
|
15078
|
+
* @param request DeleteAppKeyRequest
|
|
15079
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
15080
|
+
* @return DeleteAppKeyResponse
|
|
15081
|
+
*/
|
|
15082
|
+
deleteAppKeyWithOptions(request: DeleteAppKeyRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAppKeyResponse>;
|
|
15083
|
+
/**
|
|
15084
|
+
* @summary 删除新的AppKey
|
|
15085
|
+
*
|
|
15086
|
+
* @param request DeleteAppKeyRequest
|
|
15087
|
+
* @return DeleteAppKeyResponse
|
|
15088
|
+
*/
|
|
15089
|
+
deleteAppKey(request: DeleteAppKeyRequest): Promise<DeleteAppKeyResponse>;
|
|
14865
15090
|
/**
|
|
14866
15091
|
* @summary Deletes a backend service.
|
|
14867
15092
|
*
|