Class: TencentCloud::Organization::V20210331::ListSCIMCredentialsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::ListSCIMCredentialsResponse
- Defined in:
- lib/v20210331/models.rb
Overview
ListSCIMCredentials返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcounts = nil, scimcredentials = nil, requestid = nil) ⇒ ListSCIMCredentialsResponse
constructor
A new instance of ListSCIMCredentialsResponse.
Constructor Details
#initialize(totalcounts = nil, scimcredentials = nil, requestid = nil) ⇒ ListSCIMCredentialsResponse
Returns a new instance of ListSCIMCredentialsResponse.
5295 5296 5297 5298 5299 |
# File 'lib/v20210331/models.rb', line 5295 def initialize(totalcounts=nil, scimcredentials=nil, requestid=nil) @TotalCounts = totalcounts @SCIMCredentials = scimcredentials @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
5293 5294 5295 |
# File 'lib/v20210331/models.rb', line 5293 def RequestId @RequestId end |
#SCIMCredentials ⇒ Object
5293 5294 5295 |
# File 'lib/v20210331/models.rb', line 5293 def SCIMCredentials @SCIMCredentials end |
#TotalCounts ⇒ Object
5293 5294 5295 |
# File 'lib/v20210331/models.rb', line 5293 def TotalCounts @TotalCounts end |
Instance Method Details
#deserialize(params) ⇒ Object
5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 |
# File 'lib/v20210331/models.rb', line 5301 def deserialize(params) @TotalCounts = params['TotalCounts'] unless params['SCIMCredentials'].nil? @SCIMCredentials = [] params['SCIMCredentials'].each do |i| scimcredential_tmp = SCIMCredential.new scimcredential_tmp.deserialize(i) @SCIMCredentials << scimcredential_tmp end end @RequestId = params['RequestId'] end |