tencentcloud-sdk-smh 3.0.1094 → 3.0.1126

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9788c595036a621afd30a32072696fff65b1c00b
4
- data.tar.gz: 8e9c28d5ba61ae6bcfe14e3d501248a3654cdf85
3
+ metadata.gz: 01c147b3f753a53b28183be1f623646a741fdd60
4
+ data.tar.gz: 4b96dee6eff8fe4345c1d057c386a64342b7decc
5
5
  SHA512:
6
- metadata.gz: 63a819a814232b36e5fffa473406325f40799d73305df05e457ef575da4a92bce6e707a6150aa829c3d0289bd1b89400e2d833c5259bcaa0746bfc010da43620
7
- data.tar.gz: 6f4107b7fe13971ccf63496b301750e95d4cf8c8b1391a9b251c46928e6811ab0b2f4c1ef1880375595a9ab82a37460c8d08bb980ceaf0dcfd1b8b5f375b1234
6
+ metadata.gz: 1bca18692f27650707f2c8e4a425490eeaf1292b1d094abc0ce0d9b8e09eb436068ce9c3f395e3c17f52a16a9c184f56f1b321cdc205ed66a332ea1ee0b3a86f
7
+ data.tar.gz: 97dcbd755bc30c56f59d537c93f158c89febb3c0d48cac453f3f0a3f6bce3fa58bb856b2958ad3b65c9b60e012166da8440cd0316d50dc0725d406e9a7087af2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1094
1
+ 3.0.1126
@@ -761,6 +761,8 @@ module TencentCloud
761
761
  # @type BucketName: String
762
762
  # @param BucketRegion: 媒体库绑定的 COS 存储桶所在的地域
763
763
  # @type BucketRegion: String
764
+ # @param AccessDomain: 该媒体库的业务 API 访问域名
765
+ # @type AccessDomain: String
764
766
  # @param CreationTime: 媒体库创建时间
765
767
  # @type CreationTime: String
766
768
  # @param LibraryExtension: 媒体库配置项
@@ -772,14 +774,15 @@ module TencentCloud
772
774
  # @param FileNum: 媒体库文件数,由于数字类型精度限制,该字段为 String 类型。
773
775
  # @type FileNum: String
774
776
 
775
- attr_accessor :LibraryId, :Name, :Remark, :BucketName, :BucketRegion, :CreationTime, :LibraryExtension, :Size, :DirNum, :FileNum
777
+ attr_accessor :LibraryId, :Name, :Remark, :BucketName, :BucketRegion, :AccessDomain, :CreationTime, :LibraryExtension, :Size, :DirNum, :FileNum
776
778
 
777
- def initialize(libraryid=nil, name=nil, remark=nil, bucketname=nil, bucketregion=nil, creationtime=nil, libraryextension=nil, size=nil, dirnum=nil, filenum=nil)
779
+ def initialize(libraryid=nil, name=nil, remark=nil, bucketname=nil, bucketregion=nil, accessdomain=nil, creationtime=nil, libraryextension=nil, size=nil, dirnum=nil, filenum=nil)
778
780
  @LibraryId = libraryid
779
781
  @Name = name
780
782
  @Remark = remark
781
783
  @BucketName = bucketname
782
784
  @BucketRegion = bucketregion
785
+ @AccessDomain = accessdomain
783
786
  @CreationTime = creationtime
784
787
  @LibraryExtension = libraryextension
785
788
  @Size = size
@@ -793,6 +796,7 @@ module TencentCloud
793
796
  @Remark = params['Remark']
794
797
  @BucketName = params['BucketName']
795
798
  @BucketRegion = params['BucketRegion']
799
+ @AccessDomain = params['AccessDomain']
796
800
  @CreationTime = params['CreationTime']
797
801
  unless params['LibraryExtension'].nil?
798
802
  @LibraryExtension = LibraryExtension.new
@@ -823,10 +827,10 @@ module TencentCloud
823
827
  # @type DenyOnQuotaLessThanUsage: Boolean
824
828
  # @param EnableFileHistory: 是否开启历史版本。默认为 false。
825
829
  # @type EnableFileHistory: Boolean
826
- # @param FileHistoryCount: 当开启历史版本时,指定单个文件保留的历史版本的数量上限,不能超过 999,指定为 0 则不限制,默认为 0。当未开启历史版本时,该属性为 null。
830
+ # @param FileHistoryCount: 当开启历史版本时,指定单个文件保留的历史版本的数量上限,取值范围为 1 999。当未开启历史版本时,该属性可能为 null。
827
831
  # 注意:此字段可能返回 null,表示取不到有效值。
828
832
  # @type FileHistoryCount: Integer
829
- # @param FileHistoryExpireDay: 当开启历史版本时,指定历史版本保留的最长天数,不能超过 999,指定为 0 则不限制,默认为 0。当未开启历史版本时,该属性为 null。
833
+ # @param FileHistoryExpireDay: 当开启历史版本时,指定历史版本保留的最长天数,取值范围为 0 到 999,当指定为 0 时代表永久保留。当未开启历史版本时,该属性可能为 null。
830
834
  # 注意:此字段可能返回 null,表示取不到有效值。
831
835
  # @type FileHistoryExpireDay: Integer
832
836
  # @param MaxDirFileNameLength: 目录或文件名的最长长度,不能超过 255,默认为 255。修改该参数不会影响存量目录或文件名,即如果将该字段的值改小,已经存在的长度超过目标值的目录或文件名不会发生变化。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-smh
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1094
4
+ version: 3.0.1126
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-05 00:00:00.000000000 Z
11
+ date: 2025-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common