Class: TencentCloud::Cam::V20190116::ListSAMLProvidersResponse

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

Overview

ListSAMLProviders返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, samlproviderset = nil, requestid = nil) ⇒ ListSAMLProvidersResponse

Returns a new instance of ListSAMLProvidersResponse.



3863
3864
3865
3866
3867
# File 'lib/v20190116/models.rb', line 3863

def initialize(totalcount=nil, samlproviderset=nil, requestid=nil)
  @TotalCount = totalcount
  @SAMLProviderSet = samlproviderset
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • TotalCount:

    SAML身份提供商总数

  • SAMLProviderSet:

    SAML身份提供商列表

  • RequestId:

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



3861
3862
3863
# File 'lib/v20190116/models.rb', line 3861

def RequestId
  @RequestId
end

#SAMLProviderSetObject

Parameters:

  • TotalCount:

    SAML身份提供商总数

  • SAMLProviderSet:

    SAML身份提供商列表

  • RequestId:

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



3861
3862
3863
# File 'lib/v20190116/models.rb', line 3861

def SAMLProviderSet
  @SAMLProviderSet
end

#TotalCountObject

Parameters:

  • TotalCount:

    SAML身份提供商总数

  • SAMLProviderSet:

    SAML身份提供商列表

  • RequestId:

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



3861
3862
3863
# File 'lib/v20190116/models.rb', line 3861

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
# File 'lib/v20190116/models.rb', line 3869

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['SAMLProviderSet'].nil?
    @SAMLProviderSet = []
    params['SAMLProviderSet'].each do |i|
      samlproviderinfo_tmp = SAMLProviderInfo.new
      samlproviderinfo_tmp.deserialize(i)
      @SAMLProviderSet << samlproviderinfo_tmp
    end
  end
  @RequestId = params['RequestId']
end