tencentcloud-sdk-nodejs-tse 4.1.288 → 4.1.290
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.
package/package.json
CHANGED
|
@@ -8687,94 +8687,76 @@ export interface CreateGovernanceNamespacesRequest {
|
|
|
8687
8687
|
*/
|
|
8688
8688
|
export interface ModifyCloudNativeAPIGatewayRouteRequest {
|
|
8689
8689
|
/**
|
|
8690
|
-
*
|
|
8690
|
+
* <p>网关ID</p>
|
|
8691
8691
|
*/
|
|
8692
8692
|
GatewayId: string;
|
|
8693
8693
|
/**
|
|
8694
|
-
*
|
|
8694
|
+
* <p>所属服务的ID</p>
|
|
8695
8695
|
*/
|
|
8696
8696
|
ServiceID: string;
|
|
8697
8697
|
/**
|
|
8698
|
-
*
|
|
8698
|
+
* <p>路由的ID,实例级别唯一</p>
|
|
8699
8699
|
*/
|
|
8700
8700
|
RouteID: string;
|
|
8701
8701
|
/**
|
|
8702
|
-
*
|
|
8702
|
+
* <p>路由的名字,实例级别唯一,可以不提供</p>
|
|
8703
8703
|
*/
|
|
8704
8704
|
RouteName?: string;
|
|
8705
8705
|
/**
|
|
8706
|
-
*
|
|
8707
|
-
- GET
|
|
8708
|
-
- POST
|
|
8709
|
-
- DELETE
|
|
8710
|
-
- PUT
|
|
8711
|
-
- OPTIONS
|
|
8712
|
-
- PATCH
|
|
8713
|
-
- HEAD
|
|
8714
|
-
- ANY
|
|
8715
|
-
- TRACE
|
|
8716
|
-
- COPY
|
|
8717
|
-
- MOVE
|
|
8718
|
-
- PROPFIND
|
|
8719
|
-
- PROPPATCH
|
|
8720
|
-
- MKCOL
|
|
8721
|
-
- LOCK
|
|
8722
|
-
- UNLOCK
|
|
8706
|
+
* <p>路由的方法,其中方法可选值:</p><ul><li>GET</li><li>POST</li><li>DELETE</li><li>PUT</li><li>OPTIONS</li><li>PATCH</li><li>HEAD</li><li>ANY</li><li>TRACE</li><li>COPY</li><li>MOVE</li><li>PROPFIND</li><li>PROPPATCH</li><li>MKCOL</li><li>LOCK</li><li>UNLOCK</li></ul>
|
|
8723
8707
|
*/
|
|
8724
8708
|
Methods?: Array<string>;
|
|
8725
8709
|
/**
|
|
8726
|
-
*
|
|
8710
|
+
* <p>路由的域名</p>
|
|
8727
8711
|
*/
|
|
8728
8712
|
Hosts?: Array<string>;
|
|
8729
8713
|
/**
|
|
8730
|
-
*
|
|
8714
|
+
* <p>路由的路径</p>
|
|
8731
8715
|
*/
|
|
8732
8716
|
Paths?: Array<string>;
|
|
8733
8717
|
/**
|
|
8734
|
-
*
|
|
8735
|
-
- https
|
|
8736
|
-
- http
|
|
8718
|
+
* <p>路由的协议,可选</p><ul><li>https</li><li>http</li></ul>
|
|
8737
8719
|
*/
|
|
8738
8720
|
Protocols?: Array<string>;
|
|
8739
8721
|
/**
|
|
8740
|
-
*
|
|
8722
|
+
* <p>转发到后端时是否保留Host</p>
|
|
8741
8723
|
*/
|
|
8742
8724
|
PreserveHost?: boolean;
|
|
8743
8725
|
/**
|
|
8744
|
-
* https
|
|
8726
|
+
* <p>https重定向状态码</p>
|
|
8745
8727
|
*/
|
|
8746
8728
|
HttpsRedirectStatusCode?: number;
|
|
8747
8729
|
/**
|
|
8748
|
-
*
|
|
8730
|
+
* <p>转发到后端时是否StripPath</p>
|
|
8749
8731
|
*/
|
|
8750
8732
|
StripPath?: boolean;
|
|
8751
8733
|
/**
|
|
8752
|
-
*
|
|
8734
|
+
* <p>是否开启强制HTTPS</p>
|
|
8753
8735
|
* @deprecated
|
|
8754
8736
|
*/
|
|
8755
8737
|
ForceHttps?: boolean;
|
|
8756
8738
|
/**
|
|
8757
|
-
*
|
|
8739
|
+
* <p>四层匹配的目的端口</p>
|
|
8758
8740
|
*/
|
|
8759
8741
|
DestinationPorts?: Array<number | bigint>;
|
|
8760
8742
|
/**
|
|
8761
|
-
*
|
|
8743
|
+
* <p>路由的Headers</p>
|
|
8762
8744
|
*/
|
|
8763
8745
|
Headers?: Array<KVMapping>;
|
|
8764
8746
|
/**
|
|
8765
|
-
*
|
|
8747
|
+
* <p>是否缓存请求body,默认true</p>
|
|
8766
8748
|
*/
|
|
8767
8749
|
RequestBuffering?: boolean;
|
|
8768
8750
|
/**
|
|
8769
|
-
*
|
|
8751
|
+
* <p>是否缓存响应body,默认true</p>
|
|
8770
8752
|
*/
|
|
8771
8753
|
ResponseBuffering?: boolean;
|
|
8772
8754
|
/**
|
|
8773
|
-
*
|
|
8755
|
+
* <p>增加优先级</p>
|
|
8774
8756
|
*/
|
|
8775
8757
|
RegexPriority?: number;
|
|
8776
8758
|
/**
|
|
8777
|
-
* querysring
|
|
8759
|
+
* <p>querysring参数</p>
|
|
8778
8760
|
*/
|
|
8779
8761
|
QueryStringParameters?: Array<KVMapping>;
|
|
8780
8762
|
}
|