Skip to content

Commit fa48ee2

Browse files
release 3.0.5-beta source code for nodejs
1 parent 2e56dd2 commit fa48ee2

File tree

468 files changed

+20492
-22
lines changed

Some content is hidden

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

468 files changed

+20492
-22
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "huaweicloud-sdk-nodejs-v3",
3-
"version": "3.0.4-beta",
3+
"version": "3.0.5-beta",
44
"description": "Core code for Huaweicloud SDK for Node.js",
55
"main": "index.js",
66
"scripts": {

services/devstar/v1/DevStarClient.ts

+21-21
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export class DevStarClient {
5454
}
5555

5656
/**
57-
* 下载模板产物
58-
* @summary 下载模板产物
57+
* 通过任务ID下载ZIP格式的代码工程。
58+
* @summary 下载代码工程
5959
* @param {string} jobId 任务id
6060
* @param {'zh-cn' | 'en-us'} [xLanguage] 语言类型 中文:zh-cn 英文:en-us
6161
* @param {*} [options] Override http request option.
@@ -317,13 +317,13 @@ export const ParamCreater = function () {
317317
return {
318318

319319
/**
320-
* 下载模板产物
320+
* 通过任务ID下载ZIP格式的代码工程。
321321
*/
322322
downloadApplicationCode(downloadApplicationCodeRequest?: DownloadApplicationCodeRequest) {
323323
const options = {
324324
method: "GET",
325-
url: "/v1/application-codes",
326-
contentType: "",
325+
url: "",
326+
contentType: "application/json",
327327
queryParams: {},
328328
pathParams: {},
329329
headers: {},
@@ -363,7 +363,7 @@ export const ParamCreater = function () {
363363
runCodehubTemplateJob(runCodehubTemplateJobRequest?: RunCodehubTemplateJobRequest) {
364364
const options = {
365365
method: "POST",
366-
url: "/v1/jobs/codehub",
366+
url: "",
367367
contentType: "application/json;charset=UTF-8",
368368
queryParams: {},
369369
pathParams: {},
@@ -402,7 +402,7 @@ export const ParamCreater = function () {
402402
runDevstarTemplateJob(runDevstarTemplateJobRequest?: RunDevstarTemplateJobRequest) {
403403
const options = {
404404
method: "POST",
405-
url: "/v1/jobs/template",
405+
url: "",
406406
contentType: "application/json;charset=UTF-8",
407407
queryParams: {},
408408
pathParams: {},
@@ -441,8 +441,8 @@ export const ParamCreater = function () {
441441
showJobDetail(showJobDetailRequest?: ShowJobDetailRequest) {
442442
const options = {
443443
method: "GET",
444-
url: "/v1/jobs/{job_id}",
445-
contentType: "",
444+
url: "",
445+
contentType: "application/json",
446446
queryParams: {},
447447
pathParams: {},
448448
headers: {},
@@ -478,8 +478,8 @@ export const ParamCreater = function () {
478478
showTemplateFile(showTemplateFileRequest?: ShowTemplateFileRequest) {
479479
const options = {
480480
method: "GET",
481-
url: "/v1/templates/{template_id}/files",
482-
contentType: "",
481+
url: "",
482+
contentType: "application/json",
483483
queryParams: {},
484484
pathParams: {},
485485
headers: {},
@@ -530,7 +530,7 @@ export const ParamCreater = function () {
530530
createTemplateViewHistories(createTemplateViewHistoriesRequest?: CreateTemplateViewHistoriesRequest) {
531531
const options = {
532532
method: "POST",
533-
url: "/v1/templates/view-histories",
533+
url: "",
534534
contentType: "application/json;charset=UTF-8",
535535
queryParams: {},
536536
pathParams: {},
@@ -569,8 +569,8 @@ export const ParamCreater = function () {
569569
listPublishedTemplates(listPublishedTemplatesRequest?: ListPublishedTemplatesRequest) {
570570
const options = {
571571
method: "GET",
572-
url: "/v1/templates",
573-
contentType: "",
572+
url: "",
573+
contentType: "application/json",
574574
queryParams: {},
575575
pathParams: {},
576576
headers: {},
@@ -617,8 +617,8 @@ export const ParamCreater = function () {
617617
listTemplateViewHistories(listTemplateViewHistoriesRequest?: ListTemplateViewHistoriesRequest) {
618618
const options = {
619619
method: "GET",
620-
url: "/v1/templates/view-histories",
621-
contentType: "",
620+
url: "",
621+
contentType: "application/json",
622622
queryParams: {},
623623
pathParams: {},
624624
headers: {},
@@ -658,7 +658,7 @@ export const ParamCreater = function () {
658658
listTemplatesV2(listTemplatesV2Request?: ListTemplatesV2Request) {
659659
const options = {
660660
method: "POST",
661-
url: "/v2/templates/action",
661+
url: "",
662662
contentType: "application/json;charset=UTF-8",
663663
queryParams: {},
664664
pathParams: {},
@@ -704,8 +704,8 @@ export const ParamCreater = function () {
704704
showTemplateV3(showTemplateV3Request?: ShowTemplateV3Request) {
705705
const options = {
706706
method: "GET",
707-
url: "/v3/templates/{template_id}",
708-
contentType: "",
707+
url: "",
708+
contentType: "application/json",
709709
queryParams: {},
710710
pathParams: {},
711711
headers: {},
@@ -741,8 +741,8 @@ export const ParamCreater = function () {
741741
showTemplateDetail(showTemplateDetailRequest?: ShowTemplateDetailRequest) {
742742
const options = {
743743
method: "GET",
744-
url: "/v1/templates/{template_id}",
745-
contentType: "",
744+
url: "",
745+
contentType: "application/json",
746746
queryParams: {},
747747
pathParams: {},
748748
headers: {},

services/iam/huaweicloud-sdk-iam.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './v3/public-api';

0 commit comments

Comments
 (0)