tencentcloud-sdk-vod 3.0.949 → 3.0.950

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180717/models.rb +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: adda00dcf2dc58bdfe510b5d709dd20b170b0ffb
4
- data.tar.gz: 8df89de4ad6493474af580a86a66cef896bc7d26
3
+ metadata.gz: 3039167dc6ea9a02ca0c3a4d07f7a0ee6fdff03c
4
+ data.tar.gz: 590cc5a86cd2af7939266687a2d5de34599e2da6
5
5
  SHA512:
6
- metadata.gz: 96ec603ed938f20dec0b2d515c22c171912ee7a51f7480d021492d7b831bf401ef1065ae6aadc5aae20e7b56fb537289ee113e5a1237e934a6074ca516a62087
7
- data.tar.gz: dba2a450712918b52312c29d523ce39de1f8d910d58ae88137911f7f37cc027cf719b6d909734143c7f94f49f6d66f699172d452dc18022e4f1c176b3d73924b
6
+ metadata.gz: fb4e180639973f1e348c6dc072cf4df7d8c301d033f1cfef8628f8101775804911b1ab107a7e2351b99a778eda2d9664facc54c00bbcb691103e1aa4a97e4883
7
+ data.tar.gz: 1fed6777774077fcaf816982f64d428efc1e51a6d8f6df79b4371a8eeca3548fee8f20cc234ba6c2b1273ae5a4451ad1262cd8e973fa4c6f351f0ecf5d948e7b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.949
1
+ 3.0.950
@@ -8341,19 +8341,23 @@ module TencentCloud
8341
8341
  # <li>Global: 全球范围。</li>
8342
8342
  # 如果没有设置 AccelerateArea, 点播会根据用户在腾讯云设置的地域信息自动开通中国境内或者中国境外的 CDN 加速。开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
8343
8343
  # @type AccelerateArea: String
8344
+ # @param Type: 域名类型,取值有: <li>VOD:使用 VOD 产品分发的域名;</li> <li>EdgeOne:使用 EdgeOne 产品分发的域名。</li>不填默认取值为 VOD 。
8345
+ # @type Type: String
8344
8346
 
8345
- attr_accessor :Domain, :SubAppId, :AccelerateArea
8347
+ attr_accessor :Domain, :SubAppId, :AccelerateArea, :Type
8346
8348
 
8347
- def initialize(domain=nil, subappid=nil, acceleratearea=nil)
8349
+ def initialize(domain=nil, subappid=nil, acceleratearea=nil, type=nil)
8348
8350
  @Domain = domain
8349
8351
  @SubAppId = subappid
8350
8352
  @AccelerateArea = acceleratearea
8353
+ @Type = type
8351
8354
  end
8352
8355
 
8353
8356
  def deserialize(params)
8354
8357
  @Domain = params['Domain']
8355
8358
  @SubAppId = params['SubAppId']
8356
8359
  @AccelerateArea = params['AccelerateArea']
8360
+ @Type = params['Type']
8357
8361
  end
8358
8362
  end
8359
8363
 
@@ -13233,10 +13237,12 @@ module TencentCloud
13233
13237
  # @param IPFilterPolicy: IP 访问限制配置信息。
13234
13238
  # 注意:此字段可能返回 null,表示取不到有效值。
13235
13239
  # @type IPFilterPolicy: :class:`Tencentcloud::Vod.v20180717.models.IPFilterPolicy`
13240
+ # @param Type: 域名类型,取值有: <li>VOD:使用 VOD 产品分发的域名;</li> <li>EdgeOne:使用 EdgeOne 产品分发的域名。</li>
13241
+ # @type Type: String
13236
13242
 
13237
- attr_accessor :Domain, :AccelerateAreaInfos, :DeployStatus, :HTTPSConfig, :UrlSignatureAuthPolicy, :RefererAuthPolicy, :CreateTime, :QUICConfig, :IPFilterPolicy
13243
+ attr_accessor :Domain, :AccelerateAreaInfos, :DeployStatus, :HTTPSConfig, :UrlSignatureAuthPolicy, :RefererAuthPolicy, :CreateTime, :QUICConfig, :IPFilterPolicy, :Type
13238
13244
 
13239
- def initialize(domain=nil, accelerateareainfos=nil, deploystatus=nil, httpsconfig=nil, urlsignatureauthpolicy=nil, refererauthpolicy=nil, createtime=nil, quicconfig=nil, ipfilterpolicy=nil)
13245
+ def initialize(domain=nil, accelerateareainfos=nil, deploystatus=nil, httpsconfig=nil, urlsignatureauthpolicy=nil, refererauthpolicy=nil, createtime=nil, quicconfig=nil, ipfilterpolicy=nil, type=nil)
13240
13246
  @Domain = domain
13241
13247
  @AccelerateAreaInfos = accelerateareainfos
13242
13248
  @DeployStatus = deploystatus
@@ -13246,6 +13252,7 @@ module TencentCloud
13246
13252
  @CreateTime = createtime
13247
13253
  @QUICConfig = quicconfig
13248
13254
  @IPFilterPolicy = ipfilterpolicy
13255
+ @Type = type
13249
13256
  end
13250
13257
 
13251
13258
  def deserialize(params)
@@ -13280,6 +13287,7 @@ module TencentCloud
13280
13287
  @IPFilterPolicy = IPFilterPolicy.new
13281
13288
  @IPFilterPolicy.deserialize(params['IPFilterPolicy'])
13282
13289
  end
13290
+ @Type = params['Type']
13283
13291
  end
13284
13292
  end
13285
13293
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-vod
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.949
4
+ version: 3.0.950
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-26 00:00:00.000000000 Z
11
+ date: 2024-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common