tencentcloud-sdk-nodejs-tse 4.0.397 → 4.0.434
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/CHANGELOG.md +5639 -0
 - package/README.md +3 -3
 - package/SERVICE_CHANGELOG.md +3715 -47
 - package/package.json +1 -1
 - package/products.md +93 -93
 - package/src/services/tse/v20201207/tse_client.ts +17 -2
 - package/src/services/tse/v20201207/tse_models.ts +134 -17
 - package/tencentcloud/services/tse/v20201207/tse_client.d.ts +5 -1
 - package/tencentcloud/services/tse/v20201207/tse_client.js +6 -0
 - package/tencentcloud/services/tse/v20201207/tse_models.d.ts +116 -16
 
    
        package/README.md
    CHANGED
    
    | 
         @@ -114,7 +114,7 @@ async function main(){ 
     | 
|
| 
       114 
114 
     | 
    
         | 
| 
       115 
115 
     | 
    
         
             
            ## 代理
         
     | 
| 
       116 
116 
     | 
    
         | 
| 
       117 
     | 
    
         
            -
            如果是有代理的环境下,需要设置系统环境变量 ` 
     | 
| 
      
 117 
     | 
    
         
            +
            如果是有代理的环境下,需要设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
         
     | 
| 
       118 
118 
     | 
    
         | 
| 
       119 
119 
     | 
    
         
             
            # 旧版 SDK
         
     | 
| 
       120 
120 
     | 
    
         | 
| 
         @@ -142,8 +142,8 @@ async function main(){ 
     | 
|
| 
       142 
142 
     | 
    
         
             
              # windows powershell
         
     | 
| 
       143 
143 
     | 
    
         
             
              $env:NODE_DEBUG='http' ; node app.js
         
     | 
| 
       144 
144 
     | 
    
         
             
              ```
         
     | 
| 
       145 
     | 
    
         
            -
              如需要配置代理,请设置环境变量 ` 
     | 
| 
      
 145 
     | 
    
         
            +
              如需要配置代理,请设置环境变量 `http_proxy`,例如:
         
     | 
| 
       146 
146 
     | 
    
         
             
              ```sh
         
     | 
| 
       147 
147 
     | 
    
         
             
              # MacOS
         
     | 
| 
       148 
     | 
    
         
            -
               
     | 
| 
      
 148 
     | 
    
         
            +
              http_proxy=http://代理地址:代理端口 node app.js
         
     | 
| 
       149 
149 
     | 
    
         
             
              ```
         
     |