tencentcloud-sdk-nodejs-teo 4.1.148 → 4.1.149
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
|
@@ -6676,6 +6676,23 @@ export interface CacheParameters {
|
|
|
6676
6676
|
*/
|
|
6677
6677
|
CustomTime?: CustomTime;
|
|
6678
6678
|
}
|
|
6679
|
+
/**
|
|
6680
|
+
* 回源鉴权请求属性。
|
|
6681
|
+
*/
|
|
6682
|
+
export interface OriginAuthenticationRequestProperties {
|
|
6683
|
+
/**
|
|
6684
|
+
* 设置回源鉴权参数类型,取值有:<li>QueryString:表示设置回源鉴权参数类型为查询字符串;</li><li>Header:表示设置回源鉴权参数类型为请求头。</li>
|
|
6685
|
+
*/
|
|
6686
|
+
Type: string;
|
|
6687
|
+
/**
|
|
6688
|
+
* 设置回源鉴权类型对应的参数名称。
|
|
6689
|
+
*/
|
|
6690
|
+
Name: string;
|
|
6691
|
+
/**
|
|
6692
|
+
* 设置回源鉴权类型对应的参数值。
|
|
6693
|
+
*/
|
|
6694
|
+
Value: string;
|
|
6695
|
+
}
|
|
6679
6696
|
/**
|
|
6680
6697
|
* 统计曲线数据项
|
|
6681
6698
|
*/
|
|
@@ -15599,6 +15616,15 @@ export interface CNAMEDetail {
|
|
|
15599
15616
|
*/
|
|
15600
15617
|
OwnershipVerification?: OwnershipVerification;
|
|
15601
15618
|
}
|
|
15619
|
+
/**
|
|
15620
|
+
* 回源鉴权参数。
|
|
15621
|
+
*/
|
|
15622
|
+
export interface OriginAuthenticationParameters {
|
|
15623
|
+
/**
|
|
15624
|
+
* 回源鉴权请求属性。
|
|
15625
|
+
*/
|
|
15626
|
+
RequestProperties: Array<OriginAuthenticationRequestProperties>;
|
|
15627
|
+
}
|
|
15602
15628
|
/**
|
|
15603
15629
|
* 规则引擎操作。
|
|
15604
15630
|
*/
|
|
@@ -15640,7 +15666,9 @@ export interface RuleEngineAction {
|
|
|
15640
15666
|
<li>ModifyRequestHeader:修改 HTTP 节点请求头;</li>
|
|
15641
15667
|
<li>ResponseSpeedLimit:单连接下载限速;</li>
|
|
15642
15668
|
<li>SetContentIdentifier:设置内容标识符;</li>
|
|
15643
|
-
<li>Vary:Vary
|
|
15669
|
+
<li>Vary:Vary 特性配置;</li>
|
|
15670
|
+
<li>ContentCompression:内容压缩配置;</li>
|
|
15671
|
+
<li>OriginAuthentication:回源鉴权配置。</li>
|
|
15644
15672
|
*/
|
|
15645
15673
|
Name: string;
|
|
15646
15674
|
/**
|
|
@@ -15827,6 +15855,10 @@ export interface RuleEngineAction {
|
|
|
15827
15855
|
* 内容压缩配置参数,当 Name 取值为 ContentCompression 时,该参数必填。该参数为白名单功能,如有需要,请联系腾讯云工程师处理。
|
|
15828
15856
|
*/
|
|
15829
15857
|
ContentCompressionParameters?: ContentCompressionParameters;
|
|
15858
|
+
/**
|
|
15859
|
+
* 回源鉴权配置参数,当 Name 取值为 OriginAuthentication 时,该参数必填。该参数为白名单功能,如有需要,请联系腾讯云工程师处理。
|
|
15860
|
+
*/
|
|
15861
|
+
OriginAuthenticationParameters?: OriginAuthenticationParameters;
|
|
15830
15862
|
}
|
|
15831
15863
|
/**
|
|
15832
15864
|
* 自定义名字服务器 IP 信息
|