Class: TencentCloud::Organization::V20210331::ListSCIMCredentialsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210331/models.rb

Overview

ListSCIMCredentials返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#RequestIdObject

Parameters:

  • TotalCounts:

    SCIM密钥数量。

  • SCIMCredentials:

    SCIM 密钥信息。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



5293
5294
5295
# File 'lib/v20210331/models.rb', line 5293

def RequestId
  @RequestId
end

#SCIMCredentialsObject

Parameters:

  • TotalCounts:

    SCIM密钥数量。

  • SCIMCredentials:

    SCIM 密钥信息。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



5293
5294
5295
# File 'lib/v20210331/models.rb', line 5293

def SCIMCredentials
  @SCIMCredentials
end

#TotalCountsObject

Parameters:

  • TotalCounts:

    SCIM密钥数量。

  • SCIMCredentials:

    SCIM 密钥信息。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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