tencentcloud-sdk-cam 3.0.847 → 3.0.848

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190116/models.rb +20 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c40554b898eb9a0c07cdf17564816dcb11e6401
4
- data.tar.gz: f3d305bc172b2061dbde371eabdfa6463cd1858c
3
+ metadata.gz: 49924941bbef71e734d2fa740ed1a7d5e3c4e864
4
+ data.tar.gz: a4d29992e19cebb0b4d9c45449da841dc0422fe5
5
5
  SHA512:
6
- metadata.gz: b8390787456c33264aa8a9d5d2a282ce0f77d2a352d5db056e5f2fb037085f9d29d12c11320e88d6202e197d5a8178e32b9ccc9ae2dcee9f23b1e695cba51536
7
- data.tar.gz: fbaebb52745718b3f0670cfab15f54fffd1ce5162da3411d64e1df4708021b4fe2e76d3e798118d6b45d9a47a48650560f518b9fed88f2d3fb8d4d437ac0e0e8
6
+ metadata.gz: 150e8481ec2c173c2f80ea99995303fcfad1e0c59dee8959f910ac06894940cd13fddf42a4d7556d43a43fa3b42162ffae92ee08b86a5a6157b1b961cf6921bc
7
+ data.tar.gz: b20ce2fbb7b27de71bb50580d3605ee4b232410b227a10d1b4ee1180a6ab07efcc877b744442db793812a713776c91ea5031b5ef904621329da9ce9cd1390b59
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.847
1
+ 3.0.848
@@ -25,19 +25,24 @@ module TencentCloud
25
25
  # @type Status: String
26
26
  # @param CreateTime: 创建时间
27
27
  # @type CreateTime: String
28
+ # @param Description: 密钥描述
29
+ # 注意:此字段可能返回 null,表示取不到有效值。
30
+ # @type Description: String
28
31
 
29
- attr_accessor :AccessKeyId, :Status, :CreateTime
32
+ attr_accessor :AccessKeyId, :Status, :CreateTime, :Description
30
33
 
31
- def initialize(accesskeyid=nil, status=nil, createtime=nil)
34
+ def initialize(accesskeyid=nil, status=nil, createtime=nil, description=nil)
32
35
  @AccessKeyId = accesskeyid
33
36
  @Status = status
34
37
  @CreateTime = createtime
38
+ @Description = description
35
39
  end
36
40
 
37
41
  def deserialize(params)
38
42
  @AccessKeyId = params['AccessKeyId']
39
43
  @Status = params['Status']
40
44
  @CreateTime = params['CreateTime']
45
+ @Description = params['Description']
41
46
  end
42
47
  end
43
48
 
@@ -51,14 +56,18 @@ module TencentCloud
51
56
  # @type Status: String
52
57
  # @param CreateTime: 创建时间
53
58
  # @type CreateTime: String
59
+ # @param Description: 描述
60
+ # 注意:此字段可能返回 null,表示取不到有效值。
61
+ # @type Description: String
54
62
 
55
- attr_accessor :AccessKeyId, :SecretAccessKey, :Status, :CreateTime
63
+ attr_accessor :AccessKeyId, :SecretAccessKey, :Status, :CreateTime, :Description
56
64
 
57
- def initialize(accesskeyid=nil, secretaccesskey=nil, status=nil, createtime=nil)
65
+ def initialize(accesskeyid=nil, secretaccesskey=nil, status=nil, createtime=nil, description=nil)
58
66
  @AccessKeyId = accesskeyid
59
67
  @SecretAccessKey = secretaccesskey
60
68
  @Status = status
61
69
  @CreateTime = createtime
70
+ @Description = description
62
71
  end
63
72
 
64
73
  def deserialize(params)
@@ -66,6 +75,7 @@ module TencentCloud
66
75
  @SecretAccessKey = params['SecretAccessKey']
67
76
  @Status = params['Status']
68
77
  @CreateTime = params['CreateTime']
78
+ @Description = params['Description']
69
79
  end
70
80
  end
71
81
 
@@ -666,15 +676,19 @@ module TencentCloud
666
676
  class CreateAccessKeyRequest < TencentCloud::Common::AbstractModel
667
677
  # @param TargetUin: 指定用户Uin,不填默认为当前用户创建访问密钥
668
678
  # @type TargetUin: Integer
679
+ # @param Description: 密钥描述,长度在1到1024之间,可包含大小写字符,数字以及特殊字符:=,.@:/-。 正则为:[\w+=,.@:/-]*。
680
+ # @type Description: String
669
681
 
670
- attr_accessor :TargetUin
682
+ attr_accessor :TargetUin, :Description
671
683
 
672
- def initialize(targetuin=nil)
684
+ def initialize(targetuin=nil, description=nil)
673
685
  @TargetUin = targetuin
686
+ @Description = description
674
687
  end
675
688
 
676
689
  def deserialize(params)
677
690
  @TargetUin = params['TargetUin']
691
+ @Description = params['Description']
678
692
  end
679
693
  end
680
694
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cam
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.847
4
+ version: 3.0.848
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-06-19 00:00:00.000000000 Z
11
+ date: 2024-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common