tencentcloud-sdk-cam 3.0.846 → 3.0.848

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/v20190116/models.rb +20 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8719ed2666c64496ccb9e561c17a852f27ea4eb7
4
- data.tar.gz: d3ea192dca939782ab277a415ea007adf2fa42cc
3
+ metadata.gz: 49924941bbef71e734d2fa740ed1a7d5e3c4e864
4
+ data.tar.gz: a4d29992e19cebb0b4d9c45449da841dc0422fe5
5
5
  SHA512:
6
- metadata.gz: 4f21515405a490d211ae3a88d765f0cffeba25ff803d07a976b1a1d789b87109cb22481626a7a956e8df04bbe0f9b0560061237351b058ebe7bbeaf0b66d6281
7
- data.tar.gz: fac93710bf1d6d35c9c565de5be44542e23843e0efb321d68abe4cf010a101eef5a03835f72324ddec2e3b3438fa8701271c4cd7df837dfdc9e90d4a1ae24ca7
6
+ metadata.gz: 150e8481ec2c173c2f80ea99995303fcfad1e0c59dee8959f910ac06894940cd13fddf42a4d7556d43a43fa3b42162ffae92ee08b86a5a6157b1b961cf6921bc
7
+ data.tar.gz: b20ce2fbb7b27de71bb50580d3605ee4b232410b227a10d1b4ee1180a6ab07efcc877b744442db793812a713776c91ea5031b5ef904621329da9ce9cd1390b59
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.846
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.846
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