@alicloud/apig20240327 7.2.1 → 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 (94) hide show
  1. package/dist/client.d.ts +24 -30
  2. package/dist/client.js +61 -31
  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/DomainInfo.d.ts +8 -17
  9. package/dist/models/DomainInfo.js +2 -0
  10. package/dist/models/DomainInfo.js.map +1 -1
  11. package/dist/models/GatewayInfo.d.ts +9 -4
  12. package/dist/models/GatewayInfo.js +2 -0
  13. package/dist/models/GatewayInfo.js.map +1 -1
  14. package/dist/models/GetConsumerAuthorizationRuleResponseBody.d.ts +8 -6
  15. package/dist/models/GetConsumerAuthorizationRuleResponseBody.js.map +1 -1
  16. package/dist/models/GetDomainResponseBody.d.ts +28 -39
  17. package/dist/models/GetDomainResponseBody.js +2 -0
  18. package/dist/models/GetDomainResponseBody.js.map +1 -1
  19. package/dist/models/GetEnvironmentRequest.d.ts +2 -2
  20. package/dist/models/GetEnvironmentResponseBody.d.ts +16 -16
  21. package/dist/models/GetHttpApiRouteResponseBody.d.ts +2 -2
  22. package/dist/models/GetPluginAttachmentResponseBody.d.ts +12 -12
  23. package/dist/models/GetSourceResponseBody.d.ts +27 -17
  24. package/dist/models/GetSourceResponseBody.js +4 -0
  25. package/dist/models/GetSourceResponseBody.js.map +1 -1
  26. package/dist/models/HttpApiApiInfo.d.ts +5 -0
  27. package/dist/models/HttpApiApiInfo.js +2 -0
  28. package/dist/models/HttpApiApiInfo.js.map +1 -1
  29. package/dist/models/HttpRoute.d.ts +5 -0
  30. package/dist/models/HttpRoute.js +2 -0
  31. package/dist/models/HttpRoute.js.map +1 -1
  32. package/dist/models/ListConsumerAuthorizationRulesRequest.d.ts +2 -2
  33. package/dist/models/ListConsumerAuthorizationRulesResponseBody.d.ts +17 -17
  34. package/dist/models/ListDomainsRequest.d.ts +10 -5
  35. package/dist/models/ListDomainsRequest.js +2 -0
  36. package/dist/models/ListDomainsRequest.js.map +1 -1
  37. package/dist/models/ListDomainsResponseBody.d.ts +7 -7
  38. package/dist/models/ListEnvironmentsRequest.d.ts +8 -8
  39. package/dist/models/ListEnvironmentsResponseBody.d.ts +8 -8
  40. package/dist/models/ListHttpApiRoutesRequest.d.ts +11 -11
  41. package/dist/models/ListHttpApiRoutesResponseBody.d.ts +4 -4
  42. package/dist/models/ListSslCertsRequest.d.ts +2 -2
  43. package/dist/models/ListSslCertsResponseBody.d.ts +7 -7
  44. package/dist/models/QueryConsumerAuthorizationRulesRequest.d.ts +4 -4
  45. package/dist/models/QueryConsumerAuthorizationRulesResponseBody.d.ts +25 -25
  46. package/dist/models/TransportCertificateInfo.d.ts +24 -0
  47. package/dist/models/TransportCertificateInfo.js +84 -0
  48. package/dist/models/TransportCertificateInfo.js.map +1 -0
  49. package/dist/models/TransportEncryptionInfo.d.ts +19 -0
  50. package/dist/models/TransportEncryptionInfo.js +70 -0
  51. package/dist/models/TransportEncryptionInfo.js.map +1 -0
  52. package/dist/models/UpdateDomainRequest.d.ts +15 -18
  53. package/dist/models/UpdateDomainRequest.js +2 -0
  54. package/dist/models/UpdateDomainRequest.js.map +1 -1
  55. package/dist/models/UpdateDomainResponseBody.d.ts +5 -5
  56. package/dist/models/UpdateHttpApiOperationRequest.d.ts +1 -1
  57. package/dist/models/UpdateHttpApiOperationResponseBody.d.ts +2 -2
  58. package/dist/models/model.d.ts +2 -0
  59. package/dist/models/model.js +11 -7
  60. package/dist/models/model.js.map +1 -1
  61. package/package.json +1 -1
  62. package/src/client.ts +64 -31
  63. package/src/models/CreateDomainRequest.ts +16 -22
  64. package/src/models/CreateDomainResponseBody.ts +4 -4
  65. package/src/models/DomainInfo.ts +10 -17
  66. package/src/models/GatewayInfo.ts +11 -4
  67. package/src/models/GetConsumerAuthorizationRuleResponseBody.ts +8 -6
  68. package/src/models/GetDomainResponseBody.ts +30 -39
  69. package/src/models/GetEnvironmentRequest.ts +2 -2
  70. package/src/models/GetEnvironmentResponseBody.ts +16 -16
  71. package/src/models/GetHttpApiRouteResponseBody.ts +2 -2
  72. package/src/models/GetPluginAttachmentResponseBody.ts +12 -12
  73. package/src/models/GetSourceResponseBody.ts +31 -17
  74. package/src/models/HttpApiApiInfo.ts +7 -0
  75. package/src/models/HttpRoute.ts +7 -0
  76. package/src/models/ListConsumerAuthorizationRulesRequest.ts +2 -2
  77. package/src/models/ListConsumerAuthorizationRulesResponseBody.ts +17 -17
  78. package/src/models/ListDomainsRequest.ts +12 -5
  79. package/src/models/ListDomainsResponseBody.ts +7 -7
  80. package/src/models/ListEnvironmentsRequest.ts +8 -8
  81. package/src/models/ListEnvironmentsResponseBody.ts +8 -8
  82. package/src/models/ListHttpApiRoutesRequest.ts +11 -11
  83. package/src/models/ListHttpApiRoutesResponseBody.ts +4 -4
  84. package/src/models/ListSslCertsRequest.ts +2 -2
  85. package/src/models/ListSslCertsResponseBody.ts +7 -7
  86. package/src/models/QueryConsumerAuthorizationRulesRequest.ts +4 -4
  87. package/src/models/QueryConsumerAuthorizationRulesResponseBody.ts +25 -25
  88. package/src/models/TransportCertificateInfo.ts +63 -0
  89. package/src/models/TransportEncryptionInfo.ts +43 -0
  90. package/src/models/UpdateDomainRequest.ts +17 -18
  91. package/src/models/UpdateDomainResponseBody.ts +5 -5
  92. package/src/models/UpdateHttpApiOperationRequest.ts +1 -1
  93. package/src/models/UpdateHttpApiOperationResponseBody.ts +2 -2
  94. package/src/models/model.ts +2 -0
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class CreateDomainResponseBodyData extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The ID of the domain name.
8
+ * The domain name ID.
9
9
  *
10
10
  * @example
11
11
  * d-cpu1aullhtgkidg7sa4g
@@ -35,7 +35,7 @@ export class CreateDomainResponseBodyData extends $dara.Model {
35
35
  export class CreateDomainResponseBody extends $dara.Model {
36
36
  /**
37
37
  * @remarks
38
- * The status code returned.
38
+ * The response code.
39
39
  *
40
40
  * @example
41
41
  * Ok
@@ -48,7 +48,7 @@ export class CreateDomainResponseBody extends $dara.Model {
48
48
  data?: CreateDomainResponseBodyData;
49
49
  /**
50
50
  * @remarks
51
- * The response message returned.
51
+ * The response message.
52
52
  *
53
53
  * @example
54
54
  * success
@@ -56,7 +56,7 @@ export class CreateDomainResponseBody extends $dara.Model {
56
56
  message?: string;
57
57
  /**
58
58
  * @remarks
59
- * The request ID, which is used to trace the API call link.
59
+ * The request ID, which is used to trace the API call chain.
60
60
  *
61
61
  * @example
62
62
  * 0C2D1C68-0D93-5561-8EE6-FDB7BF067A30
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class DomainInfo extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The certificate identifier.
8
+ * The China Security certificate identity.
9
9
  *
10
10
  * @example
11
11
  * 235556-cn-hangzhou
@@ -25,12 +25,7 @@ export class DomainInfo extends $dara.Model {
25
25
  clientCACert?: string;
26
26
  /**
27
27
  * @remarks
28
- * The creation source of the domain name.
29
- *
30
- * Valid values:
31
- *
32
- * * Console
33
- * * Ingress
28
+ * The source from which the domain name was created.
34
29
  *
35
30
  * @example
36
31
  * Console
@@ -52,9 +47,10 @@ export class DomainInfo extends $dara.Model {
52
47
  * d-cq1lthllhtgja4dk54eg
53
48
  */
54
49
  domainId?: string;
50
+ domainScope?: string;
55
51
  /**
56
52
  * @remarks
57
- * Specifies whether to enable forcible HTTPS redirection when HTTPS is used as the protocol.
53
+ * Specifies whether to enable forced HTTPS redirect when the HTTPS protocol type is configured.
58
54
  *
59
55
  * @example
60
56
  * false
@@ -62,7 +58,7 @@ export class DomainInfo extends $dara.Model {
62
58
  forceHttps?: boolean;
63
59
  /**
64
60
  * @remarks
65
- * Specifies whether to enable mutual authentication.
61
+ * Specifies whether to enable mTLS mutual authentication.
66
62
  *
67
63
  * @example
68
64
  * true
@@ -78,10 +74,10 @@ export class DomainInfo extends $dara.Model {
78
74
  name?: string;
79
75
  /**
80
76
  * @remarks
81
- * The supported protocol. Valid values:
77
+ * The protocol type supported by the domain name. Valid values:
82
78
  *
83
- * * HTTP
84
- * * HTTPS
79
+ * - HTTP: Only HTTP is supported.
80
+ * - HTTPS: Only HTTPS is supported.
85
81
  *
86
82
  * @example
87
83
  * HTTP
@@ -99,11 +95,6 @@ export class DomainInfo extends $dara.Model {
99
95
  * @remarks
100
96
  * The domain name status.
101
97
  *
102
- * Valid values:
103
- *
104
- * * UnPublished
105
- * * Published
106
- *
107
98
  * @example
108
99
  * Published
109
100
  */
@@ -123,6 +114,7 @@ export class DomainInfo extends $dara.Model {
123
114
  createFrom: 'createFrom',
124
115
  createTimestamp: 'createTimestamp',
125
116
  domainId: 'domainId',
117
+ domainScope: 'domainScope',
126
118
  forceHttps: 'forceHttps',
127
119
  mTLSEnabled: 'mTLSEnabled',
128
120
  name: 'name',
@@ -140,6 +132,7 @@ export class DomainInfo extends $dara.Model {
140
132
  createFrom: 'string',
141
133
  createTimestamp: 'number',
142
134
  domainId: 'string',
135
+ domainScope: 'string',
143
136
  forceHttps: 'boolean',
144
137
  mTLSEnabled: 'boolean',
145
138
  name: 'string',
@@ -45,15 +45,20 @@ export class GatewayInfoVpcInfo extends $dara.Model {
45
45
  export class GatewayInfo extends $dara.Model {
46
46
  /**
47
47
  * @remarks
48
- * The instance engine version.
48
+ * The gateway DPI engine database engine version.
49
49
  *
50
50
  * @example
51
51
  * 2.0.7
52
52
  */
53
53
  engineVersion?: string;
54
+ /**
55
+ * @example
56
+ * MultiTenantServerless
57
+ */
58
+ gatewayEdition?: string;
54
59
  /**
55
60
  * @remarks
56
- * The instance ID.
61
+ * The gateway ID.
57
62
  *
58
63
  * @example
59
64
  * gw-cq7og15lhtgi6qasrj60
@@ -61,7 +66,7 @@ export class GatewayInfo extends $dara.Model {
61
66
  gatewayId?: string;
62
67
  /**
63
68
  * @remarks
64
- * The instance name.
69
+ * The gateway name.
65
70
  *
66
71
  * @example
67
72
  * apitest-gw
@@ -69,12 +74,13 @@ export class GatewayInfo extends $dara.Model {
69
74
  name?: string;
70
75
  /**
71
76
  * @remarks
72
- * The virtual private cloud (VPC) information.
77
+ * The VPC information.
73
78
  */
74
79
  vpcInfo?: GatewayInfoVpcInfo;
75
80
  static names(): { [key: string]: string } {
76
81
  return {
77
82
  engineVersion: 'engineVersion',
83
+ gatewayEdition: 'gatewayEdition',
78
84
  gatewayId: 'gatewayId',
79
85
  name: 'name',
80
86
  vpcInfo: 'vpcInfo',
@@ -84,6 +90,7 @@ export class GatewayInfo extends $dara.Model {
84
90
  static types(): { [key: string]: any } {
85
91
  return {
86
92
  engineVersion: 'string',
93
+ gatewayEdition: 'string',
87
94
  gatewayId: 'string',
88
95
  name: 'string',
89
96
  vpcInfo: GatewayInfoVpcInfo,
@@ -13,7 +13,7 @@ export class GetConsumerAuthorizationRuleResponseBody extends $dara.Model {
13
13
  apiInfo?: HttpApiApiInfo;
14
14
  /**
15
15
  * @remarks
16
- * Filters the list of operations by a specific consumer authorization rule ID. Only authorized operations are returned in the response.
16
+ * The consumer authorization rule ID used to filter the API list. The API list in the response contains only authorized APIs.
17
17
  *
18
18
  * @example
19
19
  * car-ctgdn8em1hko5krqq03g
@@ -37,7 +37,7 @@ export class GetConsumerAuthorizationRuleResponseBody extends $dara.Model {
37
37
  createTimestamp?: number;
38
38
  /**
39
39
  * @remarks
40
- * The publishing status of the API in the current environment.
40
+ * The publish status of the API in the current environment.
41
41
  *
42
42
  * @example
43
43
  * ""
@@ -45,12 +45,14 @@ export class GetConsumerAuthorizationRuleResponseBody extends $dara.Model {
45
45
  deployStatus?: string;
46
46
  /**
47
47
  * @remarks
48
- * The environment information.
48
+ * The environment context.
49
49
  */
50
50
  environmentInfo?: EnvironmentInfo;
51
51
  /**
52
52
  * @remarks
53
- * The expiry mode. Valid values: LongTerm and ShortTerm.
53
+ * The expiration mode. Valid values:
54
+ * - LongTerm
55
+ * - ShortTerm.
54
56
  *
55
57
  * @example
56
58
  * LongTerm
@@ -58,7 +60,7 @@ export class GetConsumerAuthorizationRuleResponseBody extends $dara.Model {
58
60
  expireMode?: string;
59
61
  /**
60
62
  * @remarks
61
- * The rule status.
63
+ * The expiration status.
62
64
  *
63
65
  * @example
64
66
  * true
@@ -79,7 +81,7 @@ export class GetConsumerAuthorizationRuleResponseBody extends $dara.Model {
79
81
  gatewayInfo?: GatewayInfo;
80
82
  /**
81
83
  * @remarks
82
- * The request ID.
84
+ * Id of the request
83
85
  *
84
86
  * @example
85
87
  * 53102737-1E4E-5A8B-8E0A-4184B0959B84
@@ -12,7 +12,7 @@ export class GetDomainResponseBodyDataStatisticsInfo extends $dara.Model {
12
12
  resourceStatistics?: ResourceStatistic[];
13
13
  /**
14
14
  * @remarks
15
- * The total number of resources.
15
+ * The total count.
16
16
  *
17
17
  * @example
18
18
  * 30
@@ -47,7 +47,7 @@ export class GetDomainResponseBodyDataStatisticsInfo extends $dara.Model {
47
47
  export class GetDomainResponseBodyData extends $dara.Model {
48
48
  /**
49
49
  * @remarks
50
- * The encryption algorithm.
50
+ * The encryption algorithm name.
51
51
  *
52
52
  * @example
53
53
  * RSA
@@ -55,7 +55,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
55
55
  algorithm?: string;
56
56
  /**
57
57
  * @remarks
58
- * The CA certificate ID.
58
+ * The CA certificate identifier.
59
59
  *
60
60
  * @example
61
61
  * 8237***-cn-hangzhou
@@ -63,7 +63,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
63
63
  caCertIdentifier?: string;
64
64
  /**
65
65
  * @remarks
66
- * The certificate ID.
66
+ * The certificate identifier.
67
67
  *
68
68
  * @example
69
69
  * 2382***-cn-hangzhou
@@ -94,12 +94,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
94
94
  clientCACert?: string;
95
95
  /**
96
96
  * @remarks
97
- * The creation source.
98
- *
99
- * Valid values:
100
- *
101
- * * Console
102
- * * Ingress
97
+ * The source from which the domain name was created.
103
98
  *
104
99
  * @example
105
100
  * Console
@@ -115,7 +110,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
115
110
  createTimestamp?: number;
116
111
  /**
117
112
  * @remarks
118
- * Indicates whether the domain name is the default domain name.
113
+ * Indicates whether this is the default domain name.
119
114
  *
120
115
  * @example
121
116
  * false
@@ -123,15 +118,20 @@ export class GetDomainResponseBodyData extends $dara.Model {
123
118
  default?: boolean;
124
119
  /**
125
120
  * @remarks
126
- * The ID of the domain name.
121
+ * The domain name ID.
127
122
  *
128
123
  * @example
129
124
  * d-cq1m3utlhtgvgkv7sitg
130
125
  */
131
126
  domainId?: string;
127
+ /**
128
+ * @example
129
+ * Serverless
130
+ */
131
+ domainScope?: string;
132
132
  /**
133
133
  * @remarks
134
- * Indicates whether forcible HTTPS redirection is enabled.
134
+ * Specifies whether to enable forced HTTPS redirect when the HTTPS protocol type is configured.
135
135
  *
136
136
  * @example
137
137
  * false
@@ -139,13 +139,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
139
139
  forceHttps?: boolean;
140
140
  /**
141
141
  * @remarks
142
- * The HTTP/2 configuration.
143
- *
144
- * Valid values:
145
- *
146
- * * GlobalConfig
147
- * * Close
148
- * * Open
142
+ * The HTTP/2 setting.
149
143
  *
150
144
  * @example
151
145
  * Open
@@ -153,7 +147,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
153
147
  http2Option?: string;
154
148
  /**
155
149
  * @remarks
156
- * The certificate issuer.
150
+ * The certification authority.
157
151
  *
158
152
  * @example
159
153
  * Alibaba
@@ -161,12 +155,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
161
155
  issuer?: string;
162
156
  /**
163
157
  * @remarks
164
- * Indicates whether mutual authentication is enabled.
165
- *
166
- * Valid values:
167
- *
168
- * * false
169
- * * true
158
+ * Indicates whether mutual TLS (mTLS) authentication is enabled.
170
159
  *
171
160
  * @example
172
161
  * false
@@ -182,7 +171,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
182
171
  name?: string;
183
172
  /**
184
173
  * @remarks
185
- * The expiration time of the certificate.
174
+ * The certificate expiration time.
186
175
  *
187
176
  * @example
188
177
  * 1719386834548
@@ -190,7 +179,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
190
179
  notAfterTimstamp?: number;
191
180
  /**
192
181
  * @remarks
193
- * The time when the certificate started to take effect.
182
+ * The certificate effective period.
194
183
  *
195
184
  * @example
196
185
  * 1719386834548
@@ -198,10 +187,10 @@ export class GetDomainResponseBodyData extends $dara.Model {
198
187
  notBeforeTimestamp?: number;
199
188
  /**
200
189
  * @remarks
201
- * The supported protocol. Valid values:
190
+ * The protocol type supported by the domain name. Valid values:
202
191
  *
203
- * * HTTP: Only HTTP is supported.
204
- * * HTTPS: Only HTTPS is supported.
192
+ * - HTTP: only HTTP is supported.
193
+ * - HTTPS: only HTTPS is supported.
205
194
  *
206
195
  * @example
207
196
  * HTTP
@@ -217,7 +206,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
217
206
  resourceGroupId?: string;
218
207
  /**
219
208
  * @remarks
220
- * All domain names that are bound to the certificate.
209
+ * All domain names bound to the certificate.
221
210
  *
222
211
  * @example
223
212
  * aliyun.com
@@ -225,7 +214,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
225
214
  sans?: string;
226
215
  /**
227
216
  * @remarks
228
- * The information about online resources.
217
+ * The online resource information.
229
218
  */
230
219
  statisticsInfo?: GetDomainResponseBodyDataStatisticsInfo;
231
220
  /**
@@ -235,7 +224,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
235
224
  tlsCipherSuitesConfig?: TlsCipherSuitesConfig;
236
225
  /**
237
226
  * @remarks
238
- * The maximum version of the TLS protocol. Up to TLS 1.3 is supported.
227
+ * The maximum TLS protocol version. TLS 1.3 is the maximum supported version.
239
228
  *
240
229
  * @example
241
230
  * TLS 1.3
@@ -243,7 +232,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
243
232
  tlsMax?: string;
244
233
  /**
245
234
  * @remarks
246
- * The minimum version of the TLS protocol. Down to TLS 1.0 is supported.
235
+ * The minimum TLS protocol version. TLS 1.0 is the minimum supported version.
247
236
  *
248
237
  * @example
249
238
  * TLS 1.0
@@ -268,6 +257,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
268
257
  createTimestamp: 'createTimestamp',
269
258
  default: 'default',
270
259
  domainId: 'domainId',
260
+ domainScope: 'domainScope',
271
261
  forceHttps: 'forceHttps',
272
262
  http2Option: 'http2Option',
273
263
  issuer: 'issuer',
@@ -297,6 +287,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
297
287
  createTimestamp: 'number',
298
288
  default: 'boolean',
299
289
  domainId: 'string',
290
+ domainScope: 'string',
300
291
  forceHttps: 'boolean',
301
292
  http2Option: 'string',
302
293
  issuer: 'string',
@@ -333,7 +324,7 @@ export class GetDomainResponseBodyData extends $dara.Model {
333
324
  export class GetDomainResponseBody extends $dara.Model {
334
325
  /**
335
326
  * @remarks
336
- * The status code returned.
327
+ * The response code.
337
328
  *
338
329
  * @example
339
330
  * Ok
@@ -346,7 +337,7 @@ export class GetDomainResponseBody extends $dara.Model {
346
337
  data?: GetDomainResponseBodyData;
347
338
  /**
348
339
  * @remarks
349
- * The response message returned.
340
+ * The response message.
350
341
  *
351
342
  * @example
352
343
  * success
@@ -354,7 +345,7 @@ export class GetDomainResponseBody extends $dara.Model {
354
345
  message?: string;
355
346
  /**
356
347
  * @remarks
357
- * The request ID, which is used to trace the API call link.
348
+ * The request ID, which is used to trace the API call chain.
358
349
  *
359
350
  * @example
360
351
  * 3ACFC7A7-45A9-58CF-B2D5-765B60254695
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class GetEnvironmentRequest extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The request ID, which is used to trace the API call link.
8
+ * Specifies whether to return online resource information.
9
9
  *
10
10
  * @example
11
11
  * true
@@ -13,7 +13,7 @@ export class GetEnvironmentRequest extends $dara.Model {
13
13
  withStatistics?: boolean;
14
14
  /**
15
15
  * @remarks
16
- * Schema of Response
16
+ * Specifies whether to include VPC information.
17
17
  *
18
18
  * @example
19
19
  * true
@@ -8,7 +8,7 @@ import { ResourceStatistic } from "./ResourceStatistic";
8
8
  export class GetEnvironmentResponseBodyDataStatisticsInfo extends $dara.Model {
9
9
  /**
10
10
  * @remarks
11
- * 4
11
+ * The online resource count.
12
12
  */
13
13
  resourceStatistics?: ResourceStatistic[];
14
14
  /**
@@ -48,7 +48,7 @@ export class GetEnvironmentResponseBodyDataStatisticsInfo extends $dara.Model {
48
48
  export class GetEnvironmentResponseBodyData extends $dara.Model {
49
49
  /**
50
50
  * @remarks
51
- * Test environment
51
+ * The environment alias.
52
52
  *
53
53
  * @example
54
54
  * 测试环境
@@ -56,7 +56,7 @@ export class GetEnvironmentResponseBodyData extends $dara.Model {
56
56
  alias?: string;
57
57
  /**
58
58
  * @remarks
59
- * The update timestamp.
59
+ * The creation timestamp.
60
60
  *
61
61
  * @example
62
62
  * 1719386834548
@@ -64,7 +64,7 @@ export class GetEnvironmentResponseBodyData extends $dara.Model {
64
64
  createTimestamp?: number;
65
65
  /**
66
66
  * @remarks
67
- * The creation timestamp.
67
+ * Indicates whether this is the default environment.
68
68
  *
69
69
  * @example
70
70
  * true
@@ -72,7 +72,7 @@ export class GetEnvironmentResponseBodyData extends $dara.Model {
72
72
  default?: boolean;
73
73
  /**
74
74
  * @remarks
75
- * Testing environment for xx project of xxx
75
+ * The environment description.
76
76
  *
77
77
  * @example
78
78
  * 这是xxx的xx项目测试环境
@@ -80,7 +80,7 @@ export class GetEnvironmentResponseBodyData extends $dara.Model {
80
80
  description?: string;
81
81
  /**
82
82
  * @remarks
83
- * The environment name.
83
+ * The environment ID.
84
84
  *
85
85
  * @example
86
86
  * env-cq7l5s5lhtgi6qasrdc0
@@ -88,12 +88,12 @@ export class GetEnvironmentResponseBodyData extends $dara.Model {
88
88
  environmentId?: string;
89
89
  /**
90
90
  * @remarks
91
- * The subdomains.
91
+ * The gateway information.
92
92
  */
93
93
  gatewayInfo?: GatewayInfo;
94
94
  /**
95
95
  * @remarks
96
- * The environment alias.
96
+ * The environment name.
97
97
  *
98
98
  * @example
99
99
  * test
@@ -101,7 +101,7 @@ export class GetEnvironmentResponseBodyData extends $dara.Model {
101
101
  name?: string;
102
102
  /**
103
103
  * @remarks
104
- * rg-aekzzzntl5njbpi
104
+ * The resource group ID.
105
105
  *
106
106
  * @example
107
107
  * rg-aekz4us4iruleja
@@ -109,17 +109,17 @@ export class GetEnvironmentResponseBodyData extends $dara.Model {
109
109
  resourceGroupId?: string;
110
110
  /**
111
111
  * @remarks
112
- * The information about online resources.
112
+ * The online resource information.
113
113
  */
114
114
  statisticsInfo?: GetEnvironmentResponseBodyDataStatisticsInfo;
115
115
  /**
116
116
  * @remarks
117
- * The subdomain information.
117
+ * The list of subdomains.
118
118
  */
119
119
  subDomainInfos?: SubDomainInfo[];
120
120
  /**
121
121
  * @remarks
122
- * The resource group ID.
122
+ * The update timestamp.
123
123
  *
124
124
  * @example
125
125
  * 1719386834548
@@ -178,7 +178,7 @@ export class GetEnvironmentResponseBodyData extends $dara.Model {
178
178
  export class GetEnvironmentResponseBody extends $dara.Model {
179
179
  /**
180
180
  * @remarks
181
- * The response message returned.
181
+ * The response code.
182
182
  *
183
183
  * @example
184
184
  * Ok
@@ -186,12 +186,12 @@ export class GetEnvironmentResponseBody extends $dara.Model {
186
186
  code?: string;
187
187
  /**
188
188
  * @remarks
189
- * The environment ID.
189
+ * The response data.
190
190
  */
191
191
  data?: GetEnvironmentResponseBodyData;
192
192
  /**
193
193
  * @remarks
194
- * The response data.
194
+ * The response message.
195
195
  *
196
196
  * @example
197
197
  * success
@@ -199,7 +199,7 @@ export class GetEnvironmentResponseBody extends $dara.Model {
199
199
  message?: string;
200
200
  /**
201
201
  * @remarks
202
- * The status code returned.
202
+ * The request ID, which is used to trace the API call chain.
203
203
  *
204
204
  * @example
205
205
  * 3F8EE674-BB08-5E92-BE6F-E4756A748B0F
@@ -6,7 +6,7 @@ import { HttpRoute } from "./HttpRoute";
6
6
  export class GetHttpApiRouteResponseBody extends $dara.Model {
7
7
  /**
8
8
  * @remarks
9
- * The status code.
9
+ * The response status code.
10
10
  *
11
11
  * @example
12
12
  * Ok
@@ -19,7 +19,7 @@ export class GetHttpApiRouteResponseBody extends $dara.Model {
19
19
  data?: HttpRoute;
20
20
  /**
21
21
  * @remarks
22
- * The returned message.
22
+ * The response message.
23
23
  *
24
24
  * @example
25
25
  * success