@alicloud/apig20240327 7.2.0 → 7.2.2

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.
Files changed (104) hide show
  1. package/dist/client.d.ts +26 -32
  2. package/dist/client.js +63 -33
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CreateDomainRequest.d.ts +14 -22
  5. package/dist/models/CreateDomainRequest.js +2 -0
  6. package/dist/models/CreateDomainRequest.js.map +1 -1
  7. package/dist/models/CreateDomainResponseBody.d.ts +4 -4
  8. package/dist/models/DescribeRegionsResponseBody.d.ts +31 -0
  9. package/dist/models/DescribeRegionsResponseBody.js +49 -1
  10. package/dist/models/DescribeRegionsResponseBody.js.map +1 -1
  11. package/dist/models/DomainInfo.d.ts +8 -17
  12. package/dist/models/DomainInfo.js +2 -0
  13. package/dist/models/DomainInfo.js.map +1 -1
  14. package/dist/models/GatewayInfo.d.ts +9 -4
  15. package/dist/models/GatewayInfo.js +2 -0
  16. package/dist/models/GatewayInfo.js.map +1 -1
  17. package/dist/models/GetConsumerAuthorizationRuleResponseBody.d.ts +8 -6
  18. package/dist/models/GetConsumerAuthorizationRuleResponseBody.js.map +1 -1
  19. package/dist/models/GetDomainResponseBody.d.ts +28 -39
  20. package/dist/models/GetDomainResponseBody.js +2 -0
  21. package/dist/models/GetDomainResponseBody.js.map +1 -1
  22. package/dist/models/GetEnvironmentRequest.d.ts +2 -2
  23. package/dist/models/GetEnvironmentResponseBody.d.ts +16 -16
  24. package/dist/models/GetHttpApiRouteResponseBody.d.ts +2 -2
  25. package/dist/models/GetPluginAttachmentResponseBody.d.ts +12 -12
  26. package/dist/models/GetSourceResponseBody.d.ts +27 -17
  27. package/dist/models/GetSourceResponseBody.js +4 -0
  28. package/dist/models/GetSourceResponseBody.js.map +1 -1
  29. package/dist/models/HttpApiApiInfo.d.ts +5 -0
  30. package/dist/models/HttpApiApiInfo.js +2 -0
  31. package/dist/models/HttpApiApiInfo.js.map +1 -1
  32. package/dist/models/HttpRoute.d.ts +5 -0
  33. package/dist/models/HttpRoute.js +2 -0
  34. package/dist/models/HttpRoute.js.map +1 -1
  35. package/dist/models/ImportHttpApiRequest.d.ts +16 -17
  36. package/dist/models/ImportHttpApiRequest.js.map +1 -1
  37. package/dist/models/ImportHttpApiResponseBody.d.ts +17 -21
  38. package/dist/models/ImportHttpApiResponseBody.js.map +1 -1
  39. package/dist/models/ListConsumerAuthorizationRulesRequest.d.ts +2 -2
  40. package/dist/models/ListConsumerAuthorizationRulesResponseBody.d.ts +17 -17
  41. package/dist/models/ListDomainsRequest.d.ts +10 -5
  42. package/dist/models/ListDomainsRequest.js +2 -0
  43. package/dist/models/ListDomainsRequest.js.map +1 -1
  44. package/dist/models/ListDomainsResponseBody.d.ts +7 -7
  45. package/dist/models/ListEnvironmentsRequest.d.ts +8 -8
  46. package/dist/models/ListEnvironmentsResponseBody.d.ts +8 -8
  47. package/dist/models/ListHttpApiRoutesRequest.d.ts +11 -11
  48. package/dist/models/ListHttpApiRoutesResponseBody.d.ts +4 -4
  49. package/dist/models/ListSslCertsRequest.d.ts +2 -2
  50. package/dist/models/ListSslCertsResponseBody.d.ts +7 -7
  51. package/dist/models/QueryConsumerAuthorizationRulesRequest.d.ts +4 -4
  52. package/dist/models/QueryConsumerAuthorizationRulesResponseBody.d.ts +25 -25
  53. package/dist/models/TransportCertificateInfo.d.ts +24 -0
  54. package/dist/models/TransportCertificateInfo.js +84 -0
  55. package/dist/models/TransportCertificateInfo.js.map +1 -0
  56. package/dist/models/TransportEncryptionInfo.d.ts +19 -0
  57. package/dist/models/TransportEncryptionInfo.js +70 -0
  58. package/dist/models/TransportEncryptionInfo.js.map +1 -0
  59. package/dist/models/UpdateDomainRequest.d.ts +15 -18
  60. package/dist/models/UpdateDomainRequest.js +2 -0
  61. package/dist/models/UpdateDomainRequest.js.map +1 -1
  62. package/dist/models/UpdateDomainResponseBody.d.ts +5 -5
  63. package/dist/models/UpdateHttpApiOperationRequest.d.ts +1 -1
  64. package/dist/models/UpdateHttpApiOperationResponseBody.d.ts +2 -2
  65. package/dist/models/model.d.ts +4 -0
  66. package/dist/models/model.js +24 -16
  67. package/dist/models/model.js.map +1 -1
  68. package/package.json +1 -1
  69. package/src/client.ts +66 -33
  70. package/src/models/CreateDomainRequest.ts +16 -22
  71. package/src/models/CreateDomainResponseBody.ts +4 -4
  72. package/src/models/DescribeRegionsResponseBody.ts +61 -0
  73. package/src/models/DomainInfo.ts +10 -17
  74. package/src/models/GatewayInfo.ts +11 -4
  75. package/src/models/GetConsumerAuthorizationRuleResponseBody.ts +8 -6
  76. package/src/models/GetDomainResponseBody.ts +30 -39
  77. package/src/models/GetEnvironmentRequest.ts +2 -2
  78. package/src/models/GetEnvironmentResponseBody.ts +16 -16
  79. package/src/models/GetHttpApiRouteResponseBody.ts +2 -2
  80. package/src/models/GetPluginAttachmentResponseBody.ts +12 -12
  81. package/src/models/GetSourceResponseBody.ts +31 -17
  82. package/src/models/HttpApiApiInfo.ts +7 -0
  83. package/src/models/HttpRoute.ts +7 -0
  84. package/src/models/ImportHttpApiRequest.ts +16 -17
  85. package/src/models/ImportHttpApiResponseBody.ts +17 -21
  86. package/src/models/ListConsumerAuthorizationRulesRequest.ts +2 -2
  87. package/src/models/ListConsumerAuthorizationRulesResponseBody.ts +17 -17
  88. package/src/models/ListDomainsRequest.ts +12 -5
  89. package/src/models/ListDomainsResponseBody.ts +7 -7
  90. package/src/models/ListEnvironmentsRequest.ts +8 -8
  91. package/src/models/ListEnvironmentsResponseBody.ts +8 -8
  92. package/src/models/ListHttpApiRoutesRequest.ts +11 -11
  93. package/src/models/ListHttpApiRoutesResponseBody.ts +4 -4
  94. package/src/models/ListSslCertsRequest.ts +2 -2
  95. package/src/models/ListSslCertsResponseBody.ts +7 -7
  96. package/src/models/QueryConsumerAuthorizationRulesRequest.ts +4 -4
  97. package/src/models/QueryConsumerAuthorizationRulesResponseBody.ts +25 -25
  98. package/src/models/TransportCertificateInfo.ts +63 -0
  99. package/src/models/TransportEncryptionInfo.ts +43 -0
  100. package/src/models/UpdateDomainRequest.ts +17 -18
  101. package/src/models/UpdateDomainResponseBody.ts +5 -5
  102. package/src/models/UpdateHttpApiOperationRequest.ts +1 -1
  103. package/src/models/UpdateHttpApiOperationResponseBody.ts +2 -2
  104. package/src/models/model.ts +4 -0
@@ -8,12 +8,12 @@ import { GatewayInfo } from "./GatewayInfo";
8
8
  export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.Model {
9
9
  /**
10
10
  * @remarks
11
- * The API information.
11
+ * API信息。
12
12
  */
13
13
  apiInfo?: HttpApiApiInfo;
14
14
  /**
15
15
  * @remarks
16
- * The ID of the consumer authorization rule.
16
+ * 消费者授权规则ID
17
17
  *
18
18
  * @example
19
19
  * car-csgeka5lhtggrjcprok0
@@ -21,7 +21,7 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
21
21
  consumerAuthorizationRuleId?: string;
22
22
  /**
23
23
  * @remarks
24
- * The consumer ID.
24
+ * 消费者ID
25
25
  *
26
26
  * @example
27
27
  * cs-csheiftlhtgmp0j0hp4g
@@ -29,7 +29,7 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
29
29
  consumerId?: string;
30
30
  /**
31
31
  * @remarks
32
- * The creation timestamp.
32
+ * 创建时间戳。
33
33
  *
34
34
  * @example
35
35
  * 1719386834548
@@ -37,7 +37,7 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
37
37
  createTimestamp?: number;
38
38
  /**
39
39
  * @remarks
40
- * The deployment status of the API in the current environment.
40
+ * API在当前环境的发布状态
41
41
  *
42
42
  * @example
43
43
  * {}
@@ -45,12 +45,12 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
45
45
  deployStatus?: string;
46
46
  /**
47
47
  * @remarks
48
- * The environment information.
48
+ * 环境信息。
49
49
  */
50
50
  environmentInfo?: EnvironmentInfo;
51
51
  /**
52
52
  * @remarks
53
- * The expiry mode. Valid values: LongTerm and ShortTerm.
53
+ * 失效模式。LongTermShortTerm,二选一。
54
54
  *
55
55
  * @example
56
56
  * ShortTerm
@@ -58,7 +58,7 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
58
58
  expireMode?: string;
59
59
  /**
60
60
  * @remarks
61
- * The rule status.
61
+ * 失效状态。
62
62
  *
63
63
  * @example
64
64
  * InEffect
@@ -66,7 +66,7 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
66
66
  expireStatus?: string;
67
67
  /**
68
68
  * @remarks
69
- * The time when the rule expires.
69
+ * 到期时间。
70
70
  *
71
71
  * @example
72
72
  * 172086834548
@@ -74,12 +74,12 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
74
74
  expireTimestamp?: number;
75
75
  /**
76
76
  * @remarks
77
- * The gateway information.
77
+ * 网关信息。
78
78
  */
79
79
  gatewayInfo?: GatewayInfo;
80
80
  /**
81
81
  * @remarks
82
- * The resource ID.
82
+ * 资源ID
83
83
  *
84
84
  * @example
85
85
  * 2351944
@@ -87,7 +87,7 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
87
87
  resourceId?: string;
88
88
  /**
89
89
  * @remarks
90
- * The resource type.
90
+ * 资源类型。
91
91
  *
92
92
  * @example
93
93
  * HttpApiRoute
@@ -95,7 +95,7 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
95
95
  resourceType?: string;
96
96
  /**
97
97
  * @remarks
98
- * The update timestamp. Unit: milliseconds.
98
+ * 更新时间戳。单位: 毫秒。
99
99
  *
100
100
  * @example
101
101
  * 1721116090326
@@ -158,7 +158,7 @@ export class ListConsumerAuthorizationRulesResponseBodyDataItems extends $dara.M
158
158
  export class ListConsumerAuthorizationRulesResponseBodyData extends $dara.Model {
159
159
  /**
160
160
  * @remarks
161
- * The list of consumer authorization information.
161
+ * 消费者授权信息列表。
162
162
  */
163
163
  items?: ListConsumerAuthorizationRulesResponseBodyDataItems[];
164
164
  /**
@@ -171,7 +171,7 @@ export class ListConsumerAuthorizationRulesResponseBodyData extends $dara.Model
171
171
  pageNumber?: number;
172
172
  /**
173
173
  * @remarks
174
- * The number of entries per page.
174
+ * The page size.
175
175
  *
176
176
  * @example
177
177
  * 10
@@ -179,7 +179,7 @@ export class ListConsumerAuthorizationRulesResponseBodyData extends $dara.Model
179
179
  pageSize?: number;
180
180
  /**
181
181
  * @remarks
182
- * The total number.
182
+ * The total number of entries.
183
183
  *
184
184
  * @example
185
185
  * 9
@@ -218,7 +218,7 @@ export class ListConsumerAuthorizationRulesResponseBodyData extends $dara.Model
218
218
  export class ListConsumerAuthorizationRulesResponseBody extends $dara.Model {
219
219
  /**
220
220
  * @remarks
221
- * The status code.
221
+ * The response status code.
222
222
  *
223
223
  * @example
224
224
  * Ok
@@ -3,9 +3,14 @@ import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
5
  export class ListDomainsRequest extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * Serverless
9
+ */
10
+ domainScope?: string;
6
11
  /**
7
12
  * @remarks
8
- * The instance ID.
13
+ * The gateway ID.
9
14
  *
10
15
  * @example
11
16
  * gw-xxxxxx
@@ -13,7 +18,7 @@ export class ListDomainsRequest extends $dara.Model {
13
18
  gatewayId?: string;
14
19
  /**
15
20
  * @remarks
16
- * The gateway type to filter. Valid values: **AI** and **API**.
21
+ * The gateway type used for filtering. Valid values: **AI** and **API**.
17
22
  *
18
23
  * @example
19
24
  * API
@@ -21,7 +26,7 @@ export class ListDomainsRequest extends $dara.Model {
21
26
  gatewayType?: string;
22
27
  /**
23
28
  * @remarks
24
- * The domain name keyword for fuzzy search.
29
+ * The domain name. Fuzzy match is supported.
25
30
  *
26
31
  * @example
27
32
  * test
@@ -29,7 +34,7 @@ export class ListDomainsRequest extends $dara.Model {
29
34
  nameLike?: string;
30
35
  /**
31
36
  * @remarks
32
- * The page number of the page to return. Default value: 1.
37
+ * The page number. Default value: 1.
33
38
  *
34
39
  * @example
35
40
  * 1
@@ -45,7 +50,7 @@ export class ListDomainsRequest extends $dara.Model {
45
50
  pageSize?: number;
46
51
  /**
47
52
  * @remarks
48
- * The ID of the resource group.
53
+ * The resource group ID.
49
54
  *
50
55
  * @example
51
56
  * rg-aek27lpqyiie6qy
@@ -53,6 +58,7 @@ export class ListDomainsRequest extends $dara.Model {
53
58
  resourceGroupId?: string;
54
59
  static names(): { [key: string]: string } {
55
60
  return {
61
+ domainScope: 'domainScope',
56
62
  gatewayId: 'gatewayId',
57
63
  gatewayType: 'gatewayType',
58
64
  nameLike: 'nameLike',
@@ -64,6 +70,7 @@ export class ListDomainsRequest extends $dara.Model {
64
70
 
65
71
  static types(): { [key: string]: any } {
66
72
  return {
73
+ domainScope: 'string',
67
74
  gatewayId: 'string',
68
75
  gatewayType: 'string',
69
76
  nameLike: 'string',
@@ -6,12 +6,12 @@ import { DomainInfo } from "./DomainInfo";
6
6
  export class ListDomainsResponseBodyData extends $dara.Model {
7
7
  /**
8
8
  * @remarks
9
- * The list of domain information.
9
+ * 域名信息列表。
10
10
  */
11
11
  items?: DomainInfo[];
12
12
  /**
13
13
  * @remarks
14
- * The page number of the returned page.
14
+ * The page number.
15
15
  *
16
16
  * @example
17
17
  * 1
@@ -27,7 +27,7 @@ export class ListDomainsResponseBodyData extends $dara.Model {
27
27
  pageSize?: number;
28
28
  /**
29
29
  * @remarks
30
- * The total number of entries returned.
30
+ * The total number of entries.
31
31
  *
32
32
  * @example
33
33
  * 9
@@ -66,7 +66,7 @@ export class ListDomainsResponseBodyData extends $dara.Model {
66
66
  export class ListDomainsResponseBody extends $dara.Model {
67
67
  /**
68
68
  * @remarks
69
- * The status code returned.
69
+ * The response code.
70
70
  *
71
71
  * @example
72
72
  * Ok
@@ -74,12 +74,12 @@ export class ListDomainsResponseBody extends $dara.Model {
74
74
  code?: string;
75
75
  /**
76
76
  * @remarks
77
- * Response parameters.
77
+ * The response data.
78
78
  */
79
79
  data?: ListDomainsResponseBodyData;
80
80
  /**
81
81
  * @remarks
82
- * The message returned.
82
+ * The response description.
83
83
  *
84
84
  * @example
85
85
  * success
@@ -87,7 +87,7 @@ export class ListDomainsResponseBody extends $dara.Model {
87
87
  message?: string;
88
88
  /**
89
89
  * @remarks
90
- * The request ID, which is used to trace the API call link.
90
+ * The request ID, which is used to trace the API call chain.
91
91
  *
92
92
  * @example
93
93
  * C61E30D3-579A-5B43-994E-31E02EDC9129
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class ListEnvironmentsRequest extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * Environment alias, fuzzy search.
8
+ * The environment alias. Fuzzy match is supported.
9
9
  *
10
10
  * @example
11
11
  * 测试
@@ -13,7 +13,7 @@ export class ListEnvironmentsRequest extends $dara.Model {
13
13
  aliasLike?: string;
14
14
  /**
15
15
  * @remarks
16
- * Gateway ID, exact search.
16
+ * The gateway ID. Exact match is supported.
17
17
  *
18
18
  * @example
19
19
  * gw-cptv6ktlhtgnqr73h8d1
@@ -21,7 +21,7 @@ export class ListEnvironmentsRequest extends $dara.Model {
21
21
  gatewayId?: string;
22
22
  /**
23
23
  * @remarks
24
- * Gateway name, fuzzy search.
24
+ * The gateway name. Fuzzy match is supported.
25
25
  *
26
26
  * @example
27
27
  * test-gw
@@ -29,7 +29,7 @@ export class ListEnvironmentsRequest extends $dara.Model {
29
29
  gatewayNameLike?: string;
30
30
  /**
31
31
  * @remarks
32
- * The gateway type
32
+ * The gateway type.
33
33
  *
34
34
  * @example
35
35
  * APIGateway
@@ -37,7 +37,7 @@ export class ListEnvironmentsRequest extends $dara.Model {
37
37
  gatewayType?: string;
38
38
  /**
39
39
  * @remarks
40
- * Environment name, fuzzy search.
40
+ * The environment name. Fuzzy match is supported.
41
41
  *
42
42
  * @example
43
43
  * test
@@ -45,7 +45,7 @@ export class ListEnvironmentsRequest extends $dara.Model {
45
45
  nameLike?: string;
46
46
  /**
47
47
  * @remarks
48
- * Page number, default is 1.
48
+ * The page number. Default value: 1.
49
49
  *
50
50
  * @example
51
51
  * 1
@@ -53,7 +53,7 @@ export class ListEnvironmentsRequest extends $dara.Model {
53
53
  pageNumber?: number;
54
54
  /**
55
55
  * @remarks
56
- * Page size, default is 10.
56
+ * The number of entries per page. Default value: 10.
57
57
  *
58
58
  * @example
59
59
  * 10
@@ -61,7 +61,7 @@ export class ListEnvironmentsRequest extends $dara.Model {
61
61
  pageSize?: number;
62
62
  /**
63
63
  * @remarks
64
- * Resource group ID.
64
+ * The resource group ID.
65
65
  *
66
66
  * @example
67
67
  * rg-aek2nqpppkzplmq
@@ -6,12 +6,12 @@ import { EnvironmentInfo } from "./EnvironmentInfo";
6
6
  export class ListEnvironmentsResponseBodyData extends $dara.Model {
7
7
  /**
8
8
  * @remarks
9
- * List of environment information.
9
+ * 环境信息列表。
10
10
  */
11
11
  items?: EnvironmentInfo[];
12
12
  /**
13
13
  * @remarks
14
- * Page number.
14
+ * The page number.
15
15
  *
16
16
  * @example
17
17
  * 1
@@ -19,7 +19,7 @@ export class ListEnvironmentsResponseBodyData extends $dara.Model {
19
19
  pageNumber?: number;
20
20
  /**
21
21
  * @remarks
22
- * Number of items per page.
22
+ * The number of entries per page.
23
23
  *
24
24
  * @example
25
25
  * 10
@@ -27,7 +27,7 @@ export class ListEnvironmentsResponseBodyData extends $dara.Model {
27
27
  pageSize?: number;
28
28
  /**
29
29
  * @remarks
30
- * Total number of items.
30
+ * The total number of entries.
31
31
  *
32
32
  * @example
33
33
  * 25
@@ -66,7 +66,7 @@ export class ListEnvironmentsResponseBodyData extends $dara.Model {
66
66
  export class ListEnvironmentsResponseBody extends $dara.Model {
67
67
  /**
68
68
  * @remarks
69
- * Response code.
69
+ * The response code.
70
70
  *
71
71
  * @example
72
72
  * Ok
@@ -74,12 +74,12 @@ export class ListEnvironmentsResponseBody extends $dara.Model {
74
74
  code?: string;
75
75
  /**
76
76
  * @remarks
77
- * Paged query environment list response.
77
+ * The paged query response for the environment list.
78
78
  */
79
79
  data?: ListEnvironmentsResponseBodyData;
80
80
  /**
81
81
  * @remarks
82
- * Response message.
82
+ * The response message.
83
83
  *
84
84
  * @example
85
85
  * success
@@ -87,7 +87,7 @@ export class ListEnvironmentsResponseBody extends $dara.Model {
87
87
  message?: string;
88
88
  /**
89
89
  * @remarks
90
- * Request ID, used for tracing the call chain.
90
+ * The request ID, which is used to trace the call chain.
91
91
  *
92
92
  * @example
93
93
  * CE857A85-251D-5018-8103-A38957D71E20
@@ -10,7 +10,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
10
10
  backendServiceName?: string;
11
11
  /**
12
12
  * @remarks
13
- * Filters the results, returning only routes authorized by the specified consumer authorization rule.
13
+ * The consumer authorization rule ID. If specified, the response includes only routes that are authorized by the specified rule.
14
14
  *
15
15
  * @example
16
16
  * cas-xxx
@@ -26,7 +26,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
26
26
  deployStatuses?: string;
27
27
  /**
28
28
  * @remarks
29
- * Filters routes by the specified domain ID.
29
+ * The domain name ID used to filter routes.
30
30
  *
31
31
  * @example
32
32
  * d-xxx
@@ -42,7 +42,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
42
42
  environmentId?: string;
43
43
  /**
44
44
  * @remarks
45
- * Set to `true` if the query is for a deployment scenario.
45
+ * Specifies whether the query is for a deployment scenario.
46
46
  *
47
47
  * @example
48
48
  * true
@@ -58,7 +58,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
58
58
  gatewayId?: string;
59
59
  /**
60
60
  * @remarks
61
- * The route name. This parameter requires an exact match.
61
+ * The route name.
62
62
  *
63
63
  * @example
64
64
  * itemcenter-gateway
@@ -66,7 +66,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
66
66
  name?: string;
67
67
  /**
68
68
  * @remarks
69
- * Filters the results by route name using a fuzzy search.
69
+ * The route name for fuzzy match.
70
70
  *
71
71
  * @example
72
72
  * item
@@ -74,7 +74,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
74
74
  nameLike?: string;
75
75
  /**
76
76
  * @remarks
77
- * The page number, starting from 1. Defaults to 1 if unspecified.
77
+ * The page number. Pages start from 1. Default value: 1.
78
78
  *
79
79
  * @example
80
80
  * 1
@@ -82,7 +82,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
82
82
  pageNumber?: number;
83
83
  /**
84
84
  * @remarks
85
- * The page size. Valid values are 1 to 100. Defaults to 10 if unspecified.
85
+ * The number of entries per page. Valid values: 1 to 100. Default value: 10.
86
86
  *
87
87
  * @example
88
88
  * 10
@@ -90,7 +90,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
90
90
  pageSize?: number;
91
91
  /**
92
92
  * @remarks
93
- * Filters the results by route path using a fuzzy search.
93
+ * The route path for fuzzy match.
94
94
  *
95
95
  * @example
96
96
  * /v1
@@ -98,7 +98,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
98
98
  pathLike?: string;
99
99
  /**
100
100
  * @remarks
101
- * Set to `true` to include the consumer authorization policy in the response.
101
+ * Specifies whether to include consumer authorization information in the response.
102
102
  *
103
103
  * @example
104
104
  * true
@@ -106,7 +106,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
106
106
  withAuthPolicyInfo?: boolean;
107
107
  /**
108
108
  * @remarks
109
- * The consumer ID. If specified, the response includes the consumer\\"s associated authorization rules for each route.
109
+ * The consumer ID. If specified, the response includes the authorization rule list for the specified consumer in each route.
110
110
  *
111
111
  * @example
112
112
  * cs-xxx
@@ -114,7 +114,7 @@ export class ListHttpApiRoutesRequest extends $dara.Model {
114
114
  withConsumerInfoById?: string;
115
115
  /**
116
116
  * @remarks
117
- * The plugin ID. If specified, the response includes the attachment information for this plugin for each route.
117
+ * The plug-in ID. If specified, the response includes the attachment information of the specified plug-in for each route.
118
118
  *
119
119
  * @example
120
120
  * pl-xxx
@@ -6,12 +6,12 @@ import { HttpRoute } from "./HttpRoute";
6
6
  export class ListHttpApiRoutesResponseBodyData extends $dara.Model {
7
7
  /**
8
8
  * @remarks
9
- * An array of route objects.
9
+ * 路由列表。
10
10
  */
11
11
  items?: HttpRoute[];
12
12
  /**
13
13
  * @remarks
14
- * The current page number.
14
+ * The page number.
15
15
  *
16
16
  * @example
17
17
  * 1
@@ -19,7 +19,7 @@ export class ListHttpApiRoutesResponseBodyData extends $dara.Model {
19
19
  pageNumber?: number;
20
20
  /**
21
21
  * @remarks
22
- * The number of entries returned per page.
22
+ * The number of entries per page.
23
23
  *
24
24
  * @example
25
25
  * 20
@@ -27,7 +27,7 @@ export class ListHttpApiRoutesResponseBodyData extends $dara.Model {
27
27
  pageSize?: number;
28
28
  /**
29
29
  * @remarks
30
- * The total number of available entries.
30
+ * The total number of entries.
31
31
  *
32
32
  * @example
33
33
  * 9
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class ListSslCertsRequest extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The name keyword for matching.
8
+ * The keyword for fuzzy match of the certificate name.
9
9
  *
10
10
  * @example
11
11
  * ali
@@ -21,7 +21,7 @@ export class ListSslCertsRequest extends $dara.Model {
21
21
  domainName?: string;
22
22
  /**
23
23
  * @remarks
24
- * The page number of the page to return. Default value: 1.
24
+ * The page number. Default value: 1.
25
25
  *
26
26
  * @example
27
27
  * 1
@@ -6,12 +6,12 @@ import { SslCertMetaInfo } from "./SslCertMetaInfo";
6
6
  export class ListSslCertsResponseBodyData extends $dara.Model {
7
7
  /**
8
8
  * @remarks
9
- * The list of certificate information.
9
+ * 证书信息列表。
10
10
  */
11
11
  items?: SslCertMetaInfo[];
12
12
  /**
13
13
  * @remarks
14
- * The page number of the returned page.
14
+ * The page number.
15
15
  *
16
16
  * @example
17
17
  * 1
@@ -19,7 +19,7 @@ export class ListSslCertsResponseBodyData extends $dara.Model {
19
19
  pageNumber?: number;
20
20
  /**
21
21
  * @remarks
22
- * The number of entries per page.
22
+ * The page size.
23
23
  *
24
24
  * @example
25
25
  * 10
@@ -27,7 +27,7 @@ export class ListSslCertsResponseBodyData extends $dara.Model {
27
27
  pageSize?: number;
28
28
  /**
29
29
  * @remarks
30
- * The total number of entries returned.
30
+ * The total number of entries.
31
31
  *
32
32
  * @example
33
33
  * 2
@@ -66,7 +66,7 @@ export class ListSslCertsResponseBodyData extends $dara.Model {
66
66
  export class ListSslCertsResponseBody extends $dara.Model {
67
67
  /**
68
68
  * @remarks
69
- * The status code.
69
+ * The response status code.
70
70
  *
71
71
  * @example
72
72
  * Ok
@@ -74,12 +74,12 @@ export class ListSslCertsResponseBody extends $dara.Model {
74
74
  code?: string;
75
75
  /**
76
76
  * @remarks
77
- * The data returned.
77
+ * The returned data.
78
78
  */
79
79
  data?: ListSslCertsResponseBodyData;
80
80
  /**
81
81
  * @remarks
82
- * The response message returned.
82
+ * The response message.
83
83
  *
84
84
  * @example
85
85
  * success
@@ -37,7 +37,7 @@ export class QueryConsumerAuthorizationRulesRequest extends $dara.Model {
37
37
  environmentId?: string;
38
38
  /**
39
39
  * @remarks
40
- * Specifies whether to group the results by API.
40
+ * Specifies whether to group results by API.
41
41
  *
42
42
  * @example
43
43
  * true
@@ -45,7 +45,7 @@ export class QueryConsumerAuthorizationRulesRequest extends $dara.Model {
45
45
  groupByApi?: boolean;
46
46
  /**
47
47
  * @remarks
48
- * The number of the page to return.
48
+ * The page number.
49
49
  *
50
50
  * @example
51
51
  * 1
@@ -53,7 +53,7 @@ export class QueryConsumerAuthorizationRulesRequest extends $dara.Model {
53
53
  pageNumber?: number;
54
54
  /**
55
55
  * @remarks
56
- * The number of entries per page.
56
+ * The page size.
57
57
  *
58
58
  * @example
59
59
  * 10
@@ -85,7 +85,7 @@ export class QueryConsumerAuthorizationRulesRequest extends $dara.Model {
85
85
  resourceType?: string;
86
86
  /**
87
87
  * @remarks
88
- * The resource types.
88
+ * The service source type.
89
89
  *
90
90
  * @example
91
91
  * K8S