Skip to content

Commit cc9d70d

Browse files
committed
Update API DescribeNisInspectionReportCheckItems: add response parameters Body.CheckItemList.$.DescriptionCode.
1 parent a532798 commit cc9d70d

File tree

42 files changed

+1661
-1768
lines changed

Some content is hidden

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

42 files changed

+1661
-1768
lines changed

nis-20211216/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/nis20211216",
3-
"version": "2.2.2",
3+
"version": "2.2.3",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

nis-20211216/src/client.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,6 @@ export default class Client extends OpenApi {
692692
* @param runtime - runtime options for this request RuntimeOptions
693693
* @returns GetInternetTupleResponse
694694
*/
695-
// Deprecated
696695
async getInternetTupleWithOptions(tmpReq: $_model.GetInternetTupleRequest, runtime: $dara.RuntimeOptions): Promise<$_model.GetInternetTupleResponse> {
697696
tmpReq.validate();
698697
let request = new $_model.GetInternetTupleShrinkRequest({ });
@@ -834,7 +833,6 @@ export default class Client extends OpenApi {
834833
* @param runtime - runtime options for this request RuntimeOptions
835834
* @returns GetNatTopNResponse
836835
*/
837-
// Deprecated
838836
async getNatTopNWithOptions(request: $_model.GetNatTopNRequest, runtime: $dara.RuntimeOptions): Promise<$_model.GetNatTopNResponse> {
839837
request.validate();
840838
let query = { };
@@ -1138,7 +1136,6 @@ export default class Client extends OpenApi {
11381136
* @param runtime - runtime options for this request RuntimeOptions
11391137
* @returns GetTransitRouterFlowTopNResponse
11401138
*/
1141-
// Deprecated
11421139
async getTransitRouterFlowTopNWithOptions(tmpReq: $_model.GetTransitRouterFlowTopNRequest, runtime: $dara.RuntimeOptions): Promise<$_model.GetTransitRouterFlowTopNResponse> {
11431140
tmpReq.validate();
11441141
let request = new $_model.GetTransitRouterFlowTopNShrinkRequest({ });
@@ -1260,7 +1257,6 @@ export default class Client extends OpenApi {
12601257
* @param runtime - runtime options for this request RuntimeOptions
12611258
* @returns GetVbrFlowTopNResponse
12621259
*/
1263-
// Deprecated
12641260
async getVbrFlowTopNWithOptions(tmpReq: $_model.GetVbrFlowTopNRequest, runtime: $dara.RuntimeOptions): Promise<$_model.GetVbrFlowTopNResponse> {
12651261
tmpReq.validate();
12661262
let request = new $_model.GetVbrFlowTopNShrinkRequest({ });

nis-20211216/src/models/CreateNetworkPathRequest.ts

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,53 @@
11
// This file is auto-generated, don't edit it
22
import * as $dara from '@darabonba/typescript';
3-
import { CreateNetworkPathRequestTag } from "./CreateNetworkPathRequestTag";
43

54

5+
/**
6+
*/
7+
export class CreateNetworkPathRequestTag extends $dara.Model {
8+
/**
9+
* @remarks
10+
* The key of tag N to add to the resource. The tag key can be up to 128 characters in length and cannot contain `http://` or `https://`. The tag key cannot start with `acs:` or `aliyun`.
11+
*
12+
* You can add up to 20 tags in each call.
13+
*
14+
* @example
15+
* role
16+
*/
17+
key?: string;
18+
/**
19+
* @remarks
20+
* The value of tag N to add to the resource. You can specify up to 20 tag values. The tag value can be an empty string.
21+
*
22+
* The tag value can be up to 128 characters in length and cannot contain `http://` or `https://`. The tag value cannot start with `aliyun` or `acs:`.
23+
*
24+
* @example
25+
* ops
26+
*/
27+
value?: string;
28+
static names(): { [key: string]: string } {
29+
return {
30+
key: 'Key',
31+
value: 'Value',
32+
};
33+
}
34+
35+
static types(): { [key: string]: any } {
36+
return {
37+
key: 'string',
38+
value: 'string',
39+
};
40+
}
41+
42+
validate() {
43+
super.validate();
44+
}
45+
46+
constructor(map?: { [key: string]: any }) {
47+
super(map);
48+
}
49+
}
50+
651
export class CreateNetworkPathRequest extends $dara.Model {
752
/**
853
* @remarks

nis-20211216/src/models/CreateNetworkPathRequestTag.ts

Lines changed: 0 additions & 50 deletions
This file was deleted.

nis-20211216/src/models/CreateNetworkReachableAnalysisRequest.ts

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,51 @@
11
// This file is auto-generated, don't edit it
22
import * as $dara from '@darabonba/typescript';
3-
import { CreateNetworkReachableAnalysisRequestTag } from "./CreateNetworkReachableAnalysisRequestTag";
43

54

5+
export class CreateNetworkReachableAnalysisRequestTag extends $dara.Model {
6+
/**
7+
* @remarks
8+
* The key of the tag to add to the resource. The tag key can be up to 128 characters in length and cannot contain `http://` or `https://`. The tag key cannot start with `acs:` or `aliyun`.
9+
*
10+
* You can add up to 20 tags in each call.
11+
*
12+
* @example
13+
* Team
14+
*/
15+
key?: string;
16+
/**
17+
* @remarks
18+
* The value of the tag to add to the resource. The tag value can be up to 128 characters in length and cannot contain `http://` or `https://`. The tag value cannot start with `acs:` or `aliyun`. The tag value can be an empty string.
19+
*
20+
* You can add up to 20 tag values in each call.
21+
*
22+
* @example
23+
* ops
24+
*/
25+
value?: string;
26+
static names(): { [key: string]: string } {
27+
return {
28+
key: 'Key',
29+
value: 'Value',
30+
};
31+
}
32+
33+
static types(): { [key: string]: any } {
34+
return {
35+
key: 'string',
36+
value: 'string',
37+
};
38+
}
39+
40+
validate() {
41+
super.validate();
42+
}
43+
44+
constructor(map?: { [key: string]: any }) {
45+
super(map);
46+
}
47+
}
48+
649
export class CreateNetworkReachableAnalysisRequest extends $dara.Model {
750
/**
851
* @remarks

nis-20211216/src/models/CreateNetworkReachableAnalysisRequestTag.ts

Lines changed: 0 additions & 48 deletions
This file was deleted.

nis-20211216/src/models/DescribeNisInspectionRecommendationResourcesResponseBody.ts

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,44 @@
11
// This file is auto-generated, don't edit it
22
import * as $dara from '@darabonba/typescript';
3-
import { DescribeNisInspectionRecommendationResourcesResponseBodyResourceList } from "./DescribeNisInspectionRecommendationResourcesResponseBodyResourceList";
43

54

5+
export class DescribeNisInspectionRecommendationResourcesResponseBodyResourceList extends $dara.Model {
6+
/**
7+
* @example
8+
* {ResourceId: "ngw-p0wn04hi4****q2us6q7q"}
9+
*/
10+
analysisData?: string;
11+
/**
12+
* @example
13+
* ngw-p0wn04hi4****q2us6q7q
14+
*/
15+
resourceId?: string;
16+
resourceName?: string;
17+
static names(): { [key: string]: string } {
18+
return {
19+
analysisData: 'AnalysisData',
20+
resourceId: 'ResourceId',
21+
resourceName: 'ResourceName',
22+
};
23+
}
24+
25+
static types(): { [key: string]: any } {
26+
return {
27+
analysisData: 'string',
28+
resourceId: 'string',
29+
resourceName: 'string',
30+
};
31+
}
32+
33+
validate() {
34+
super.validate();
35+
}
36+
37+
constructor(map?: { [key: string]: any }) {
38+
super(map);
39+
}
40+
}
41+
642
export class DescribeNisInspectionRecommendationResourcesResponseBody extends $dara.Model {
743
/**
844
* @example

nis-20211216/src/models/DescribeNisInspectionRecommendationResourcesResponseBodyResourceList.ts

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)