Skip to content
This repository was archived by the owner on Jul 8, 2024. It is now read-only.

Commit 179d2c9

Browse files
hyj1991JacksonTian
hyj1991
authored andcommitted
Add new sdks
1 parent a8a3a55 commit 179d2c9

File tree

2,163 files changed

+372433
-1585
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,163 files changed

+372433
-1585
lines changed

AMS-2016-02-01/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
example
3+
.DS_Store
4+
coverage
5+
.nyc_output
6+
output

AMS-2016-02-01/lib/client.js

+357
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,357 @@
1+
2+
'use strict';
3+
4+
const { RPCClient } = require('@alicloud/pop-core');
5+
6+
function hasOwnProperty(obj, key) {
7+
return Object.prototype.hasOwnProperty.call(obj, key);
8+
}
9+
10+
class Client extends RPCClient {
11+
constructor(config) {
12+
config.apiVersion = '2016-02-01';
13+
super(config);
14+
}
15+
16+
/**
17+
* @param {String} BizName - bizName. required.
18+
* @param {String} BizToken - bizToken. required.
19+
* @param {Long} ProductId - productId. optional.
20+
* @param {Integer} Type - type. optional. default: 0.
21+
* @param {String} Name - name. required.
22+
* @param {String} Description - description. optional.
23+
* @param {String} PackageName - packageName. optional.
24+
* @param {String} BundleId - bundleId. optional.
25+
*/
26+
createApp(params = {}, options = {}) {
27+
if (!hasOwnProperty(params, 'BizName')) {
28+
throw new TypeError('parameter "BizName" is required');
29+
}
30+
31+
if (!hasOwnProperty(params, 'BizToken')) {
32+
throw new TypeError('parameter "BizToken" is required');
33+
}
34+
35+
if (!hasOwnProperty(params, 'Name')) {
36+
throw new TypeError('parameter "Name" is required');
37+
}
38+
39+
options.method = 'POST';
40+
return this.request('CreateApp', params, options);
41+
}
42+
43+
/**
44+
* @param {Long} OwnerId - ownerId. required.
45+
* @param {String} AppName - appName. required.
46+
* @param {String} Description - description. optional.
47+
*/
48+
createCloudApp(params = {}, options = {}) {
49+
if (!hasOwnProperty(params, 'OwnerId')) {
50+
throw new TypeError('parameter "OwnerId" is required');
51+
}
52+
53+
if (!hasOwnProperty(params, 'AppName')) {
54+
throw new TypeError('parameter "AppName" is required');
55+
}
56+
57+
return this.request('CreateCloudApp', params, options);
58+
}
59+
60+
/**
61+
* @param {String} BizName - bizName. required.
62+
* @param {String} BizToken - bizToken. required.
63+
* @param {Long} UserId - userId. required.
64+
* @param {String} Name - name. required.
65+
* @param {String} Description - description. optional.
66+
* @param {Integer} IndustryId - industryId. optional.
67+
*/
68+
createProduct(params = {}, options = {}) {
69+
if (!hasOwnProperty(params, 'BizName')) {
70+
throw new TypeError('parameter "BizName" is required');
71+
}
72+
73+
if (!hasOwnProperty(params, 'BizToken')) {
74+
throw new TypeError('parameter "BizToken" is required');
75+
}
76+
77+
if (!hasOwnProperty(params, 'UserId')) {
78+
throw new TypeError('parameter "UserId" is required');
79+
}
80+
81+
if (!hasOwnProperty(params, 'Name')) {
82+
throw new TypeError('parameter "Name" is required');
83+
}
84+
85+
options.method = 'POST';
86+
return this.request('CreateProduct', params, options);
87+
}
88+
89+
/**
90+
* @param {String} BizName - bizName. required.
91+
* @param {String} BizToken - bizToken. required.
92+
*/
93+
deleteApp(params = {}, options = {}) {
94+
if (!hasOwnProperty(params, 'BizName')) {
95+
throw new TypeError('parameter "BizName" is required');
96+
}
97+
98+
if (!hasOwnProperty(params, 'BizToken')) {
99+
throw new TypeError('parameter "BizToken" is required');
100+
}
101+
102+
options.method = 'POST';
103+
return this.request('DeleteApp', params, options);
104+
}
105+
106+
/**
107+
* @param {Long} OwnerId - ownerId. required.
108+
* @param {Long} AppId - appId. required.
109+
*/
110+
deleteCloudApp(params = {}, options = {}) {
111+
if (!hasOwnProperty(params, 'OwnerId')) {
112+
throw new TypeError('parameter "OwnerId" is required');
113+
}
114+
115+
if (!hasOwnProperty(params, 'AppId')) {
116+
throw new TypeError('parameter "AppId" is required');
117+
}
118+
119+
return this.request('DeleteCloudApp', params, options);
120+
}
121+
122+
/**
123+
* @param {String} BizName - bizName. required.
124+
* @param {String} BizToken - bizToken. required.
125+
*/
126+
deleteProduct(params = {}, options = {}) {
127+
if (!hasOwnProperty(params, 'BizName')) {
128+
throw new TypeError('parameter "BizName" is required');
129+
}
130+
131+
if (!hasOwnProperty(params, 'BizToken')) {
132+
throw new TypeError('parameter "BizToken" is required');
133+
}
134+
135+
options.method = 'POST';
136+
return this.request('DeleteProduct', params, options);
137+
}
138+
139+
/**
140+
* @param {Long} OwnerId - ownerId. required.
141+
* @param {Long} AppId - appId. required.
142+
*/
143+
describeAppSecurity(params = {}, options = {}) {
144+
if (!hasOwnProperty(params, 'OwnerId')) {
145+
throw new TypeError('parameter "OwnerId" is required');
146+
}
147+
148+
if (!hasOwnProperty(params, 'AppId')) {
149+
throw new TypeError('parameter "AppId" is required');
150+
}
151+
152+
return this.request('DescribeAppSecurity', params, options);
153+
}
154+
155+
/**
156+
* @param {Long} OwnerId - ownerId. required.
157+
* @param {Long} AppId - appId. required.
158+
*/
159+
describeCloudApp(params = {}, options = {}) {
160+
if (!hasOwnProperty(params, 'OwnerId')) {
161+
throw new TypeError('parameter "OwnerId" is required');
162+
}
163+
164+
if (!hasOwnProperty(params, 'AppId')) {
165+
throw new TypeError('parameter "AppId" is required');
166+
}
167+
168+
return this.request('DescribeCloudApp', params, options);
169+
}
170+
171+
/**
172+
* @param {String} BizName - bizName. required.
173+
* @param {String} BizToken - bizToken. required.
174+
*/
175+
listApps(params = {}, options = {}) {
176+
if (!hasOwnProperty(params, 'BizName')) {
177+
throw new TypeError('parameter "BizName" is required');
178+
}
179+
180+
if (!hasOwnProperty(params, 'BizToken')) {
181+
throw new TypeError('parameter "BizToken" is required');
182+
}
183+
184+
return this.request('ListApps', params, options);
185+
}
186+
187+
/**
188+
* @param {String} BizName - bizName. required.
189+
* @param {String} BizToken - bizToken. required.
190+
*/
191+
listProducts(params = {}, options = {}) {
192+
if (!hasOwnProperty(params, 'BizName')) {
193+
throw new TypeError('parameter "BizName" is required');
194+
}
195+
196+
if (!hasOwnProperty(params, 'BizToken')) {
197+
throw new TypeError('parameter "BizToken" is required');
198+
}
199+
200+
return this.request('ListProducts', params, options);
201+
}
202+
203+
/**
204+
* @param {String} BizName - bizName. required.
205+
* @param {String} BizToken - bizToken. required.
206+
* @param {Long} AppKey - appKey. required.
207+
* @param {String} Name - name. optional.
208+
* @param {String} PackageName - packageName. optional.
209+
* @param {String} BundleId - bundleId. optional.
210+
*/
211+
modifyApp(params = {}, options = {}) {
212+
if (!hasOwnProperty(params, 'BizName')) {
213+
throw new TypeError('parameter "BizName" is required');
214+
}
215+
216+
if (!hasOwnProperty(params, 'BizToken')) {
217+
throw new TypeError('parameter "BizToken" is required');
218+
}
219+
220+
if (!hasOwnProperty(params, 'AppKey')) {
221+
throw new TypeError('parameter "AppKey" is required');
222+
}
223+
224+
options.method = 'POST';
225+
return this.request('ModifyApp', params, options);
226+
}
227+
228+
/**
229+
* @param {Long} OwnerId - ownerId. required.
230+
* @param {Long} AppId - appId. required.
231+
* @param {String} AppName - appName. optional.
232+
* @param {String} Description - description. optional.
233+
*/
234+
modifyCloudApp(params = {}, options = {}) {
235+
if (!hasOwnProperty(params, 'OwnerId')) {
236+
throw new TypeError('parameter "OwnerId" is required');
237+
}
238+
239+
if (!hasOwnProperty(params, 'AppId')) {
240+
throw new TypeError('parameter "AppId" is required');
241+
}
242+
243+
return this.request('ModifyCloudApp', params, options);
244+
}
245+
246+
/**
247+
* @param {String} BizName - bizName. required.
248+
* @param {String} BizToken - bizToken. required.
249+
* @param {Long} ProductId - productId. required.
250+
* @param {String} Name - name. optional.
251+
* @param {String} Description - description. optional.
252+
*/
253+
modifyProduct(params = {}, options = {}) {
254+
if (!hasOwnProperty(params, 'BizName')) {
255+
throw new TypeError('parameter "BizName" is required');
256+
}
257+
258+
if (!hasOwnProperty(params, 'BizToken')) {
259+
throw new TypeError('parameter "BizToken" is required');
260+
}
261+
262+
if (!hasOwnProperty(params, 'ProductId')) {
263+
throw new TypeError('parameter "ProductId" is required');
264+
}
265+
266+
options.method = 'POST';
267+
return this.request('ModifyProduct', params, options);
268+
}
269+
270+
/**
271+
* @param {String} BizName - bizName. required.
272+
* @param {String} BizToken - bizToken. required.
273+
*/
274+
queryAppInfo(params = {}, options = {}) {
275+
if (!hasOwnProperty(params, 'BizName')) {
276+
throw new TypeError('parameter "BizName" is required');
277+
}
278+
279+
if (!hasOwnProperty(params, 'BizToken')) {
280+
throw new TypeError('parameter "BizToken" is required');
281+
}
282+
283+
return this.request('QueryAppInfo', params, options);
284+
}
285+
286+
/**
287+
* @param {String} BizName - bizName. required.
288+
* @param {String} BizToken - bizToken. required.
289+
*/
290+
queryProductInfo(params = {}, options = {}) {
291+
if (!hasOwnProperty(params, 'BizName')) {
292+
throw new TypeError('parameter "BizName" is required');
293+
}
294+
295+
if (!hasOwnProperty(params, 'BizToken')) {
296+
throw new TypeError('parameter "BizToken" is required');
297+
}
298+
299+
return this.request('QueryProductInfo', params, options);
300+
}
301+
302+
/**
303+
* @param {Long} OwnerId - ownerId. required.
304+
* @param {String} AppKey - appKey. required.
305+
*/
306+
resetCloudAppSecret(params = {}, options = {}) {
307+
if (!hasOwnProperty(params, 'OwnerId')) {
308+
throw new TypeError('parameter "OwnerId" is required');
309+
}
310+
311+
if (!hasOwnProperty(params, 'AppKey')) {
312+
throw new TypeError('parameter "AppKey" is required');
313+
}
314+
315+
return this.request('ResetCloudAppSecret', params, options);
316+
}
317+
318+
/**
319+
* @param {String} BizName - bizName. required.
320+
* @param {String} BizToken - bizToken. required.
321+
* @param {Long} AppKey - appKey. required.
322+
* @param {String} CertMode - certMode. required.
323+
* @param {String} EncodedCert - encodedCert. required.
324+
* @param {String} Password - password. required.
325+
*/
326+
uploadAppCert(params = {}, options = {}) {
327+
if (!hasOwnProperty(params, 'BizName')) {
328+
throw new TypeError('parameter "BizName" is required');
329+
}
330+
331+
if (!hasOwnProperty(params, 'BizToken')) {
332+
throw new TypeError('parameter "BizToken" is required');
333+
}
334+
335+
if (!hasOwnProperty(params, 'AppKey')) {
336+
throw new TypeError('parameter "AppKey" is required');
337+
}
338+
339+
if (!hasOwnProperty(params, 'CertMode')) {
340+
throw new TypeError('parameter "CertMode" is required');
341+
}
342+
343+
if (!hasOwnProperty(params, 'EncodedCert')) {
344+
throw new TypeError('parameter "EncodedCert" is required');
345+
}
346+
347+
if (!hasOwnProperty(params, 'Password')) {
348+
throw new TypeError('parameter "Password" is required');
349+
}
350+
351+
options.method = 'POST';
352+
return this.request('UploadAppCert', params, options);
353+
}
354+
355+
}
356+
357+
module.exports = Client;

AMS-2016-02-01/package.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "@alicloud/ams-2016-02-01",
3+
"version": "1.0.0",
4+
"description": "AMS 2016-02-01 Node.js SDK",
5+
"main": "lib/client.js",
6+
"scripts": {},
7+
"author": "Jackson Tian",
8+
"license": "MIT",
9+
"dependencies": {
10+
"@alicloud/pop-core": "^1.7.1"
11+
}
12+
}

AMS-2018-02-12/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
example
3+
.DS_Store
4+
coverage
5+
.nyc_output
6+
output

0 commit comments

Comments
 (0)