tencentcloud-sdk-cam 3.0.1190 → 3.0.1211
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/v20190116/models.rb +20 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b220c9c8b88081423759533e021241a8de5a978c
|
|
4
|
+
data.tar.gz: ef2a49235b94a5457c08c5722981fc878d203893
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1d1691af86b02e9fe811c3788e4c6c80183caf53731b4db7668e2d7dbb369156db27d9d0f66a21af7a5bbe6bbb0a130e1c47e8feb54302578f90b07a926c470
|
|
7
|
+
data.tar.gz: f5790a9f0c4291cb7ea8db7496315f1d4b0e5c490d729e8802a947f239277256e3679946317a1710e413b68ba40ee0eeff5e5e43a252102cc16a86a9f75296ce
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1211
|
data/lib/v20190116/models.rb
CHANGED
|
@@ -1173,10 +1173,12 @@ module TencentCloud
|
|
|
1173
1173
|
# @type Scope: Array
|
|
1174
1174
|
# @param Description: 描述信息。由用户自行定义。
|
|
1175
1175
|
# @type Description: String
|
|
1176
|
+
# @param AutoRotateKey: OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)如果不传的话会默认置0
|
|
1177
|
+
# @type AutoRotateKey: Integer
|
|
1176
1178
|
|
|
1177
|
-
attr_accessor :IdentityUrl, :ClientId, :AuthorizationEndpoint, :ResponseType, :ResponseMode, :MappingFiled, :IdentityKey, :Scope, :Description
|
|
1179
|
+
attr_accessor :IdentityUrl, :ClientId, :AuthorizationEndpoint, :ResponseType, :ResponseMode, :MappingFiled, :IdentityKey, :Scope, :Description, :AutoRotateKey
|
|
1178
1180
|
|
|
1179
|
-
def initialize(identityurl=nil, clientid=nil, authorizationendpoint=nil, responsetype=nil, responsemode=nil, mappingfiled=nil, identitykey=nil, scope=nil, description=nil)
|
|
1181
|
+
def initialize(identityurl=nil, clientid=nil, authorizationendpoint=nil, responsetype=nil, responsemode=nil, mappingfiled=nil, identitykey=nil, scope=nil, description=nil, autorotatekey=nil)
|
|
1180
1182
|
@IdentityUrl = identityurl
|
|
1181
1183
|
@ClientId = clientid
|
|
1182
1184
|
@AuthorizationEndpoint = authorizationendpoint
|
|
@@ -1186,6 +1188,7 @@ module TencentCloud
|
|
|
1186
1188
|
@IdentityKey = identitykey
|
|
1187
1189
|
@Scope = scope
|
|
1188
1190
|
@Description = description
|
|
1191
|
+
@AutoRotateKey = autorotatekey
|
|
1189
1192
|
end
|
|
1190
1193
|
|
|
1191
1194
|
def deserialize(params)
|
|
@@ -1198,6 +1201,7 @@ module TencentCloud
|
|
|
1198
1201
|
@IdentityKey = params['IdentityKey']
|
|
1199
1202
|
@Scope = params['Scope']
|
|
1200
1203
|
@Description = params['Description']
|
|
1204
|
+
@AutoRotateKey = params['AutoRotateKey']
|
|
1201
1205
|
end
|
|
1202
1206
|
end
|
|
1203
1207
|
|
|
@@ -2018,12 +2022,14 @@ module TencentCloud
|
|
|
2018
2022
|
# @type MappingFiled: String
|
|
2019
2023
|
# @param Description: 描述
|
|
2020
2024
|
# @type Description: String
|
|
2025
|
+
# @param AutoRotateKey: OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)
|
|
2026
|
+
# @type AutoRotateKey: Integer
|
|
2021
2027
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2022
2028
|
# @type RequestId: String
|
|
2023
2029
|
|
|
2024
|
-
attr_accessor :ProviderType, :IdentityUrl, :IdentityKey, :ClientId, :Status, :AuthorizationEndpoint, :Scope, :ResponseType, :ResponseMode, :MappingFiled, :Description, :RequestId
|
|
2030
|
+
attr_accessor :ProviderType, :IdentityUrl, :IdentityKey, :ClientId, :Status, :AuthorizationEndpoint, :Scope, :ResponseType, :ResponseMode, :MappingFiled, :Description, :AutoRotateKey, :RequestId
|
|
2025
2031
|
|
|
2026
|
-
def initialize(providertype=nil, identityurl=nil, identitykey=nil, clientid=nil, status=nil, authorizationendpoint=nil, scope=nil, responsetype=nil, responsemode=nil, mappingfiled=nil, description=nil, requestid=nil)
|
|
2032
|
+
def initialize(providertype=nil, identityurl=nil, identitykey=nil, clientid=nil, status=nil, authorizationendpoint=nil, scope=nil, responsetype=nil, responsemode=nil, mappingfiled=nil, description=nil, autorotatekey=nil, requestid=nil)
|
|
2027
2033
|
@ProviderType = providertype
|
|
2028
2034
|
@IdentityUrl = identityurl
|
|
2029
2035
|
@IdentityKey = identitykey
|
|
@@ -2035,6 +2041,7 @@ module TencentCloud
|
|
|
2035
2041
|
@ResponseMode = responsemode
|
|
2036
2042
|
@MappingFiled = mappingfiled
|
|
2037
2043
|
@Description = description
|
|
2044
|
+
@AutoRotateKey = autorotatekey
|
|
2038
2045
|
@RequestId = requestid
|
|
2039
2046
|
end
|
|
2040
2047
|
|
|
@@ -2050,6 +2057,7 @@ module TencentCloud
|
|
|
2050
2057
|
@ResponseMode = params['ResponseMode']
|
|
2051
2058
|
@MappingFiled = params['MappingFiled']
|
|
2052
2059
|
@Description = params['Description']
|
|
2060
|
+
@AutoRotateKey = params['AutoRotateKey']
|
|
2053
2061
|
@RequestId = params['RequestId']
|
|
2054
2062
|
end
|
|
2055
2063
|
end
|
|
@@ -2268,8 +2276,8 @@ module TencentCloud
|
|
|
2268
2276
|
|
|
2269
2277
|
attr_accessor :Policies, :Roles, :Idps, :User, :Group, :Member, :IdentityProviders, :RequestId
|
|
2270
2278
|
extend Gem::Deprecate
|
|
2271
|
-
deprecate :Idps, :none,
|
|
2272
|
-
deprecate :Idps=, :none,
|
|
2279
|
+
deprecate :Idps, :none, 2026, 1
|
|
2280
|
+
deprecate :Idps=, :none, 2026, 1
|
|
2273
2281
|
|
|
2274
2282
|
def initialize(policies=nil, roles=nil, idps=nil, user=nil, group=nil, member=nil, identityproviders=nil, requestid=nil)
|
|
2275
2283
|
@Policies = policies
|
|
@@ -5381,10 +5389,12 @@ module TencentCloud
|
|
|
5381
5389
|
# @type Scope: Array
|
|
5382
5390
|
# @param Description: 描述,长度为1~255个英文或中文字符,默认值为空。
|
|
5383
5391
|
# @type Description: String
|
|
5392
|
+
# @param AutoRotateKey: OIDC公钥自动轮转开关(默认为0代表关闭,1代表开启)如果不传的话,会默认置0
|
|
5393
|
+
# @type AutoRotateKey: Integer
|
|
5384
5394
|
|
|
5385
|
-
attr_accessor :IdentityUrl, :ClientId, :AuthorizationEndpoint, :ResponseType, :ResponseMode, :MappingFiled, :IdentityKey, :Scope, :Description
|
|
5395
|
+
attr_accessor :IdentityUrl, :ClientId, :AuthorizationEndpoint, :ResponseType, :ResponseMode, :MappingFiled, :IdentityKey, :Scope, :Description, :AutoRotateKey
|
|
5386
5396
|
|
|
5387
|
-
def initialize(identityurl=nil, clientid=nil, authorizationendpoint=nil, responsetype=nil, responsemode=nil, mappingfiled=nil, identitykey=nil, scope=nil, description=nil)
|
|
5397
|
+
def initialize(identityurl=nil, clientid=nil, authorizationendpoint=nil, responsetype=nil, responsemode=nil, mappingfiled=nil, identitykey=nil, scope=nil, description=nil, autorotatekey=nil)
|
|
5388
5398
|
@IdentityUrl = identityurl
|
|
5389
5399
|
@ClientId = clientid
|
|
5390
5400
|
@AuthorizationEndpoint = authorizationendpoint
|
|
@@ -5394,6 +5404,7 @@ module TencentCloud
|
|
|
5394
5404
|
@IdentityKey = identitykey
|
|
5395
5405
|
@Scope = scope
|
|
5396
5406
|
@Description = description
|
|
5407
|
+
@AutoRotateKey = autorotatekey
|
|
5397
5408
|
end
|
|
5398
5409
|
|
|
5399
5410
|
def deserialize(params)
|
|
@@ -5406,6 +5417,7 @@ module TencentCloud
|
|
|
5406
5417
|
@IdentityKey = params['IdentityKey']
|
|
5407
5418
|
@Scope = params['Scope']
|
|
5408
5419
|
@Description = params['Description']
|
|
5420
|
+
@AutoRotateKey = params['AutoRotateKey']
|
|
5409
5421
|
end
|
|
5410
5422
|
end
|
|
5411
5423
|
|
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.
|
|
4
|
+
version: 3.0.1211
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|