@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
@@ -11,12 +11,12 @@ import { HttpRoute } from "./HttpRoute";
11
11
  export class QueryConsumerAuthorizationRulesResponseBodyDataItemsResourceInfo extends $dara.Model {
12
12
  /**
13
13
  * @remarks
14
- * The operation information.
14
+ * 接口信息。
15
15
  */
16
16
  operationInfo?: HttpApiOperationInfo;
17
17
  /**
18
18
  * @remarks
19
- * The route.
19
+ * 路由规则。
20
20
  */
21
21
  route?: HttpRoute;
22
22
  static names(): { [key: string]: string } {
@@ -51,12 +51,12 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItemsResourceInfo ex
51
51
  export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.Model {
52
52
  /**
53
53
  * @remarks
54
- * The API details.
54
+ * API信息详情。
55
55
  */
56
56
  apiInfo?: HttpApiApiInfo;
57
57
  /**
58
58
  * @remarks
59
- * The rule ID.
59
+ * 消费者授权规则ID
60
60
  *
61
61
  * @example
62
62
  * car-csgeka5lhtggrjcprok0
@@ -64,7 +64,7 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
64
64
  consumerAuthorizationRuleId?: string;
65
65
  /**
66
66
  * @remarks
67
- * The consumer ID.
67
+ * 消费者ID
68
68
  *
69
69
  * @example
70
70
  * cs-csheiftlhtgmp0j0hp4g
@@ -72,12 +72,12 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
72
72
  consumerId?: string;
73
73
  /**
74
74
  * @remarks
75
- * The consumer information.
75
+ * 消费者信息详情。
76
76
  */
77
77
  consumerInfo?: ConsumerInfo;
78
78
  /**
79
79
  * @remarks
80
- * The creation timestamp. Unit: milliseconds.
80
+ * 创建时间戳。单位: 毫秒。
81
81
  *
82
82
  * @example
83
83
  * 1719386834548
@@ -85,7 +85,7 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
85
85
  createTimestamp?: number;
86
86
  /**
87
87
  * @remarks
88
- * The deployment status of the API in the current environment.
88
+ * API在当前环境的发布状态
89
89
  *
90
90
  * @example
91
91
  * {}
@@ -93,12 +93,12 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
93
93
  deployStatus?: string;
94
94
  /**
95
95
  * @remarks
96
- * The environment information.
96
+ * 环境信息。
97
97
  */
98
98
  environmentInfo?: EnvironmentInfo;
99
99
  /**
100
100
  * @remarks
101
- * The expiry mode. Valid values: LongTerm and ShortTerm.
101
+ * 失效模式。LongTermShortTerm,二选一。
102
102
  *
103
103
  * @example
104
104
  * ShortTerm
@@ -106,7 +106,7 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
106
106
  expireMode?: string;
107
107
  /**
108
108
  * @remarks
109
- * The rule status.
109
+ * 失效状态。
110
110
  *
111
111
  * @example
112
112
  * InEffect
@@ -114,7 +114,7 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
114
114
  expireStatus?: string;
115
115
  /**
116
116
  * @remarks
117
- * The time when the rule expires.
117
+ * 到期时间。
118
118
  *
119
119
  * @example
120
120
  * 172086834548
@@ -122,12 +122,12 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
122
122
  expireTimestamp?: number;
123
123
  /**
124
124
  * @remarks
125
- * The instance information.
125
+ * 网关信息。
126
126
  */
127
127
  gatewayInfo?: GatewayInfo;
128
128
  /**
129
129
  * @remarks
130
- * The resource IDs.
130
+ * 资源ID。
131
131
  *
132
132
  * @example
133
133
  * 2351944
@@ -135,12 +135,12 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
135
135
  resourceId?: string;
136
136
  /**
137
137
  * @remarks
138
- * The resource information.
138
+ * 资源信息详情。
139
139
  */
140
140
  resourceInfo?: QueryConsumerAuthorizationRulesResponseBodyDataItemsResourceInfo;
141
141
  /**
142
142
  * @remarks
143
- * The resource type.
143
+ * 资源类型。
144
144
  *
145
145
  * @example
146
146
  * HttpApiRoute
@@ -148,7 +148,7 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
148
148
  resourceType?: string;
149
149
  /**
150
150
  * @remarks
151
- * The update timestamp. Unit: milliseconds.
151
+ * 更新时间戳。单位: 毫秒。
152
152
  *
153
153
  * @example
154
154
  * 1719386834548
@@ -221,12 +221,12 @@ export class QueryConsumerAuthorizationRulesResponseBodyDataItems extends $dara.
221
221
  export class QueryConsumerAuthorizationRulesResponseBodyData extends $dara.Model {
222
222
  /**
223
223
  * @remarks
224
- * The rules.
224
+ * 消费者规则列表。
225
225
  */
226
226
  items?: QueryConsumerAuthorizationRulesResponseBodyDataItems[];
227
227
  /**
228
228
  * @remarks
229
- * The page number of the returned page.
229
+ * The page number.
230
230
  *
231
231
  * @example
232
232
  * 1
@@ -234,7 +234,7 @@ export class QueryConsumerAuthorizationRulesResponseBodyData extends $dara.Model
234
234
  pageNumber?: number;
235
235
  /**
236
236
  * @remarks
237
- * The number of entries per page.
237
+ * The page size.
238
238
  *
239
239
  * @example
240
240
  * 10
@@ -242,7 +242,7 @@ export class QueryConsumerAuthorizationRulesResponseBodyData extends $dara.Model
242
242
  pageSize?: number;
243
243
  /**
244
244
  * @remarks
245
- * The total number of entries returned.
245
+ * The total number of entries.
246
246
  *
247
247
  * @example
248
248
  * 6
@@ -281,7 +281,7 @@ export class QueryConsumerAuthorizationRulesResponseBodyData extends $dara.Model
281
281
  export class QueryConsumerAuthorizationRulesResponseBody extends $dara.Model {
282
282
  /**
283
283
  * @remarks
284
- * The status code.
284
+ * The response status code.
285
285
  *
286
286
  * @example
287
287
  * Ok
@@ -289,12 +289,12 @@ export class QueryConsumerAuthorizationRulesResponseBody extends $dara.Model {
289
289
  code?: string;
290
290
  /**
291
291
  * @remarks
292
- * The response payload.
292
+ * The response data.
293
293
  */
294
294
  data?: QueryConsumerAuthorizationRulesResponseBodyData;
295
295
  /**
296
296
  * @remarks
297
- * The returned message.
297
+ * The response message.
298
298
  *
299
299
  * @example
300
300
  * success
@@ -302,7 +302,7 @@ export class QueryConsumerAuthorizationRulesResponseBody extends $dara.Model {
302
302
  message?: string;
303
303
  /**
304
304
  * @remarks
305
- * The request ID.
305
+ * Id of the request
306
306
  *
307
307
  * @example
308
308
  * A60EE5CA-1294-532A-9775-8D2FD1C6EFBF
@@ -0,0 +1,63 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class TransportCertificateInfo extends $dara.Model {
6
+ algorithm?: string;
7
+ certIdentifier?: string;
8
+ certName?: string;
9
+ certificateMatchStatus?: string;
10
+ commonName?: string;
11
+ coveredDomains?: string[];
12
+ issuer?: string;
13
+ matchedDomains?: string[];
14
+ notAfterTimestamp?: number;
15
+ notBeforeTimestamp?: number;
16
+ sans?: string;
17
+ static names(): { [key: string]: string } {
18
+ return {
19
+ algorithm: 'algorithm',
20
+ certIdentifier: 'certIdentifier',
21
+ certName: 'certName',
22
+ certificateMatchStatus: 'certificateMatchStatus',
23
+ commonName: 'commonName',
24
+ coveredDomains: 'coveredDomains',
25
+ issuer: 'issuer',
26
+ matchedDomains: 'matchedDomains',
27
+ notAfterTimestamp: 'notAfterTimestamp',
28
+ notBeforeTimestamp: 'notBeforeTimestamp',
29
+ sans: 'sans',
30
+ };
31
+ }
32
+
33
+ static types(): { [key: string]: any } {
34
+ return {
35
+ algorithm: 'string',
36
+ certIdentifier: 'string',
37
+ certName: 'string',
38
+ certificateMatchStatus: 'string',
39
+ commonName: 'string',
40
+ coveredDomains: { 'type': 'array', 'itemType': 'string' },
41
+ issuer: 'string',
42
+ matchedDomains: { 'type': 'array', 'itemType': 'string' },
43
+ notAfterTimestamp: 'number',
44
+ notBeforeTimestamp: 'number',
45
+ sans: 'string',
46
+ };
47
+ }
48
+
49
+ validate() {
50
+ if(Array.isArray(this.coveredDomains)) {
51
+ $dara.Model.validateArray(this.coveredDomains);
52
+ }
53
+ if(Array.isArray(this.matchedDomains)) {
54
+ $dara.Model.validateArray(this.matchedDomains);
55
+ }
56
+ super.validate();
57
+ }
58
+
59
+ constructor(map?: { [key: string]: any }) {
60
+ super(map);
61
+ }
62
+ }
63
+
@@ -0,0 +1,43 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { TransportCertificateInfo } from "./TransportCertificateInfo";
4
+
5
+
6
+ export class TransportEncryptionInfo extends $dara.Model {
7
+ certificates?: TransportCertificateInfo[];
8
+ deployError?: string;
9
+ deployStatus?: string;
10
+ http2Enabled?: boolean;
11
+ tlsPolicy?: string;
12
+ static names(): { [key: string]: string } {
13
+ return {
14
+ certificates: 'certificates',
15
+ deployError: 'deployError',
16
+ deployStatus: 'deployStatus',
17
+ http2Enabled: 'http2Enabled',
18
+ tlsPolicy: 'tlsPolicy',
19
+ };
20
+ }
21
+
22
+ static types(): { [key: string]: any } {
23
+ return {
24
+ certificates: { 'type': 'array', 'itemType': TransportCertificateInfo },
25
+ deployError: 'string',
26
+ deployStatus: 'string',
27
+ http2Enabled: 'boolean',
28
+ tlsPolicy: 'string',
29
+ };
30
+ }
31
+
32
+ validate() {
33
+ if(Array.isArray(this.certificates)) {
34
+ $dara.Model.validateArray(this.certificates);
35
+ }
36
+ super.validate();
37
+ }
38
+
39
+ constructor(map?: { [key: string]: any }) {
40
+ super(map);
41
+ }
42
+ }
43
+
@@ -6,7 +6,7 @@ import { TlsCipherSuitesConfig } from "./TlsCipherSuitesConfig";
6
6
  export class UpdateDomainRequest extends $dara.Model {
7
7
  /**
8
8
  * @remarks
9
- * The CA certificate ID.
9
+ * The CA certificate identifier.
10
10
  *
11
11
  * @example
12
12
  * 1ef1da5f-38ed-69b3-****-037781890265
@@ -14,7 +14,7 @@ export class UpdateDomainRequest extends $dara.Model {
14
14
  caCertIdentifier?: string;
15
15
  /**
16
16
  * @remarks
17
- * The certificate ID.
17
+ * The certificate identifier.
18
18
  *
19
19
  * @example
20
20
  * 1ef1da5f-38ed-69b3-****-037781890265
@@ -32,9 +32,14 @@ export class UpdateDomainRequest extends $dara.Model {
32
32
  * -----END CERTIFICATE-----
33
33
  */
34
34
  clientCACert?: string;
35
+ /**
36
+ * @example
37
+ * Serverless
38
+ */
39
+ domainScope?: string;
35
40
  /**
36
41
  * @remarks
37
- * Specifies whether to enable forcible HTTPS redirection. If protocol is set to HTTPS, forceHttps is required.
42
+ * Specifies whether to enable forced HTTPS redirect when the protocol type is set to HTTPS. This parameter is required when the protocol is HTTPS.
38
43
  *
39
44
  * @example
40
45
  * false
@@ -42,13 +47,7 @@ export class UpdateDomainRequest extends $dara.Model {
42
47
  forceHttps?: boolean;
43
48
  /**
44
49
  * @remarks
45
- * The HTTP/2 configuration.
46
- *
47
- * Enumerated values:
48
- *
49
- * * GlobalConfig
50
- * * Close
51
- * * Open
50
+ * The HTTP/2 settings.
52
51
  *
53
52
  * @example
54
53
  * Open
@@ -56,17 +55,15 @@ export class UpdateDomainRequest extends $dara.Model {
56
55
  http2Option?: string;
57
56
  /**
58
57
  * @remarks
59
- * Specifies whether to enable mutual TLS (mTLS) authentication.
58
+ * Specifies whether to enable mTLS mutual authentication.
60
59
  */
61
60
  mTLSEnabled?: boolean;
62
61
  /**
63
62
  * @remarks
64
- * The protocol type to be supported by the domain name. Valid values:
65
- *
66
- * * HTTP
67
- * * HTTPS
63
+ * The protocol type supported by the domain name.
68
64
  *
69
- * This parameter is required.
65
+ * - HTTP: Only HTTP is supported.
66
+ * - HTTPS: Only HTTPS is supported.
70
67
  *
71
68
  * @example
72
69
  * HTTP
@@ -79,7 +76,7 @@ export class UpdateDomainRequest extends $dara.Model {
79
76
  tlsCipherSuitesConfig?: TlsCipherSuitesConfig;
80
77
  /**
81
78
  * @remarks
82
- * The maximum TLS version. Up to TLS 1.3 is supported.
79
+ * The maximum TLS protocol version. TLS 1.3 is the maximum supported version.
83
80
  *
84
81
  * @example
85
82
  * TLS 1.3
@@ -87,7 +84,7 @@ export class UpdateDomainRequest extends $dara.Model {
87
84
  tlsMax?: string;
88
85
  /**
89
86
  * @remarks
90
- * The minimum TLS version. Down to TLS 1.0 is supported.
87
+ * The minimum TLS protocol version. TLS 1.0 is the minimum supported version.
91
88
  *
92
89
  * @example
93
90
  * TLS 1.0
@@ -98,6 +95,7 @@ export class UpdateDomainRequest extends $dara.Model {
98
95
  caCertIdentifier: 'caCertIdentifier',
99
96
  certIdentifier: 'certIdentifier',
100
97
  clientCACert: 'clientCACert',
98
+ domainScope: 'domainScope',
101
99
  forceHttps: 'forceHttps',
102
100
  http2Option: 'http2Option',
103
101
  mTLSEnabled: 'mTLSEnabled',
@@ -113,6 +111,7 @@ export class UpdateDomainRequest extends $dara.Model {
113
111
  caCertIdentifier: 'string',
114
112
  certIdentifier: 'string',
115
113
  clientCACert: 'string',
114
+ domainScope: 'string',
116
115
  forceHttps: 'boolean',
117
116
  http2Option: 'string',
118
117
  mTLSEnabled: 'boolean',
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class UpdateDomainResponseBodyData extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The released version ID.
8
+ * The publish version ID.
9
9
  *
10
10
  * @example
11
11
  * apr-xxxxx
@@ -35,7 +35,7 @@ export class UpdateDomainResponseBodyData extends $dara.Model {
35
35
  export class UpdateDomainResponseBody extends $dara.Model {
36
36
  /**
37
37
  * @remarks
38
- * The status code.
38
+ * The response code.
39
39
  *
40
40
  * @example
41
41
  * Ok
@@ -43,12 +43,12 @@ export class UpdateDomainResponseBody extends $dara.Model {
43
43
  code?: string;
44
44
  /**
45
45
  * @remarks
46
- * The response parameters.
46
+ * The returned data.
47
47
  */
48
48
  data?: UpdateDomainResponseBodyData;
49
49
  /**
50
50
  * @remarks
51
- * The returned message.
51
+ * The response message.
52
52
  *
53
53
  * @example
54
54
  * success
@@ -56,7 +56,7 @@ export class UpdateDomainResponseBody extends $dara.Model {
56
56
  message?: string;
57
57
  /**
58
58
  * @remarks
59
- * The request ID. You can use this value to trace the API call.
59
+ * The request ID, which is used to trace the API call chain.
60
60
  *
61
61
  * @example
62
62
  * 4BACB05C-3FE2-588F-9148-700C5C026B74
@@ -6,7 +6,7 @@ import { HttpApiOperation } from "./HttpApiOperation";
6
6
  export class UpdateHttpApiOperationRequest extends $dara.Model {
7
7
  /**
8
8
  * @remarks
9
- * The operation definition.
9
+ * The API operation definition.
10
10
  */
11
11
  operation?: HttpApiOperation;
12
12
  static names(): { [key: string]: string } {
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class UpdateHttpApiOperationResponseBody extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The status code.
8
+ * The response status code.
9
9
  *
10
10
  * @example
11
11
  * Ok
@@ -13,7 +13,7 @@ export class UpdateHttpApiOperationResponseBody extends $dara.Model {
13
13
  code?: string;
14
14
  /**
15
15
  * @remarks
16
- * The response message returned.
16
+ * The response message.
17
17
  *
18
18
  * @example
19
19
  * success
@@ -147,6 +147,8 @@ export { DeployHttpApiRequestRestApiConfigEnvironment } from './DeployHttpApiReq
147
147
  export { DeployHttpApiRequestRestApiConfigOperationDeployments } from './DeployHttpApiRequest';
148
148
  export { DeployHttpApiRequestRestApiConfig } from './DeployHttpApiRequest';
149
149
  export { DeployHttpApiResponseBodyData } from './DeployHttpApiResponseBody';
150
+ export { DescribeRegionsResponseBodyDataRegions } from './DescribeRegionsResponseBody';
151
+ export { DescribeRegionsResponseBodyData } from './DescribeRegionsResponseBody';
150
152
  export { DescribeRegionsResponseBodyRegionsRegion } from './DescribeRegionsResponseBody';
151
153
  export { DescribeRegionsResponseBodyRegions } from './DescribeRegionsResponseBody';
152
154
  export { ExportHttpApiRequestExtensionConfig } from './ExportHttpApiRequest';
@@ -376,6 +378,8 @@ export { ServiceLinkedRole } from './ServiceLinkedRole';
376
378
  export { SslCertMetaInfo } from './SslCertMetaInfo';
377
379
  export { SubDomainInfo } from './SubDomainInfo';
378
380
  export { TlsCipherSuitesConfig } from './TlsCipherSuitesConfig';
381
+ export { TransportCertificateInfo } from './TransportCertificateInfo';
382
+ export { TransportEncryptionInfo } from './TransportEncryptionInfo';
379
383
  export { ValidationOptions } from './ValidationOptions';
380
384
  export { HttpApiApiInfoDeployCntMapValue } from './HttpApiApiInfoDeployCntMapValue';
381
385
  export { AddGatewayQuotaRuleRequest } from './AddGatewayQuotaRuleRequest';