tencentcloud-sdk-cloudaudit 3.0.1108 → 3.0.1192
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190319/models.rb +22 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 819c5f37dd31fbd5b770ada71b40899a3f1ba126
|
|
4
|
+
data.tar.gz: 3b55eaac5d3f94a5a16ea5830fbf6d9b990b37dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9cc9f47f51439768d2634d1755c6548522a8c627576f159f76096ef67c6beba29e6812dcf67dc45b9f8c7a23d768ddf0a94d3233592a0653c9282bc7fec0072
|
|
7
|
+
data.tar.gz: ce1e13f98ebb901bc0a391611f4fe8ca07c75ef2851dcb4eed46de85da5666a88981086c36185d429d1d4775684df448b3a546fa5f6fd010444861a07faa1c55
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1192
|
data/lib/v20190319/models.rb
CHANGED
|
@@ -493,7 +493,20 @@ module TencentCloud
|
|
|
493
493
|
# @type NextToken: Integer
|
|
494
494
|
# @param MaxResults: 返回日志的最大条数(最大 50 条)
|
|
495
495
|
# @type MaxResults: Integer
|
|
496
|
-
# @param LookupAttributes:
|
|
496
|
+
# @param LookupAttributes: 检索条件(目前支持:
|
|
497
|
+
# RequestId:请求 ID
|
|
498
|
+
# EventName:事件名称
|
|
499
|
+
# ActionType:操作类型(Write:写;Read:读)
|
|
500
|
+
# PrincipalId:子账号、ResourceType:资源类型
|
|
501
|
+
# ResourceId:资源Id
|
|
502
|
+
# ResourceName:资源名称
|
|
503
|
+
# AccessKeyId:密钥 ID
|
|
504
|
+
# SensitiveAction:是否敏感操作
|
|
505
|
+
# ApiErrorCode:API 错误码
|
|
506
|
+
# CamErrorCode:CAM 错误码
|
|
507
|
+
# SourceIPAddress:请求IP
|
|
508
|
+
# Tags:标签(AttributeValue格式:[{"key":"*","value":"*"}])
|
|
509
|
+
# 备注:检索的各个条件间是与的关系,EventName传多个值内部是或的关系)
|
|
497
510
|
# @type LookupAttributes: Array
|
|
498
511
|
# @param IsReturnLocation: 是否返回 IP 归属地(1 返回,0 不返回)
|
|
499
512
|
# @type IsReturnLocation: Integer
|
|
@@ -1028,7 +1041,7 @@ module TencentCloud
|
|
|
1028
1041
|
|
|
1029
1042
|
# 检索条件
|
|
1030
1043
|
class LookupAttribute < TencentCloud::Common::AbstractModel
|
|
1031
|
-
# @param AttributeKey: AttributeKey的有效取值范围是:RequestId、EventName、
|
|
1044
|
+
# @param AttributeKey: AttributeKey的有效取值范围是:RequestId、EventName、ActionType、PrincipalId、ResourceId、ResourceName、AccessKeyId、SensitiveAction、ApiErrorCode、CamErrorCode、SourceIPAddress、Tags
|
|
1032
1045
|
# @type AttributeKey: String
|
|
1033
1046
|
# @param AttributeValue: AttributeValue的值
|
|
1034
1047
|
# @type AttributeValue: String
|
|
@@ -1297,16 +1310,20 @@ module TencentCloud
|
|
|
1297
1310
|
# @type StorageAccountId: String
|
|
1298
1311
|
# @param StorageAppId: 被指定存储用户appid
|
|
1299
1312
|
# @type StorageAppId: String
|
|
1313
|
+
# @param Compress: 是否压缩。
|
|
1314
|
+
# 1:压缩 2:不压缩
|
|
1315
|
+
# @type Compress: Integer
|
|
1300
1316
|
|
|
1301
|
-
attr_accessor :StorageType, :StorageRegion, :StorageName, :StoragePrefix, :StorageAccountId, :StorageAppId
|
|
1317
|
+
attr_accessor :StorageType, :StorageRegion, :StorageName, :StoragePrefix, :StorageAccountId, :StorageAppId, :Compress
|
|
1302
1318
|
|
|
1303
|
-
def initialize(storagetype=nil, storageregion=nil, storagename=nil, storageprefix=nil, storageaccountid=nil, storageappid=nil)
|
|
1319
|
+
def initialize(storagetype=nil, storageregion=nil, storagename=nil, storageprefix=nil, storageaccountid=nil, storageappid=nil, compress=nil)
|
|
1304
1320
|
@StorageType = storagetype
|
|
1305
1321
|
@StorageRegion = storageregion
|
|
1306
1322
|
@StorageName = storagename
|
|
1307
1323
|
@StoragePrefix = storageprefix
|
|
1308
1324
|
@StorageAccountId = storageaccountid
|
|
1309
1325
|
@StorageAppId = storageappid
|
|
1326
|
+
@Compress = compress
|
|
1310
1327
|
end
|
|
1311
1328
|
|
|
1312
1329
|
def deserialize(params)
|
|
@@ -1316,6 +1333,7 @@ module TencentCloud
|
|
|
1316
1333
|
@StoragePrefix = params['StoragePrefix']
|
|
1317
1334
|
@StorageAccountId = params['StorageAccountId']
|
|
1318
1335
|
@StorageAppId = params['StorageAppId']
|
|
1336
|
+
@Compress = params['Compress']
|
|
1319
1337
|
end
|
|
1320
1338
|
end
|
|
1321
1339
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cloudaudit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1192
|
|
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-
|
|
11
|
+
date: 2025-12-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- lib/tencentcloud-sdk-cloudaudit.rb
|
|
36
37
|
- lib/v20190319/client.rb
|
|
37
38
|
- lib/v20190319/models.rb
|
|
38
|
-
- lib/tencentcloud-sdk-cloudaudit.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|