Class: TencentCloud::Cam::V20190116::ListSAMLProvidersResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cam::V20190116::ListSAMLProvidersResponse
- Defined in:
- lib/v20190116/models.rb
Overview
ListSAMLProviders返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, samlproviderset = nil, requestid = nil) ⇒ ListSAMLProvidersResponse
constructor
A new instance of ListSAMLProvidersResponse.
Constructor Details
#initialize(totalcount = nil, samlproviderset = nil, requestid = nil) ⇒ ListSAMLProvidersResponse
Returns a new instance of ListSAMLProvidersResponse.
3908 3909 3910 3911 3912 |
# File 'lib/v20190116/models.rb', line 3908 def initialize(totalcount=nil, samlproviderset=nil, requestid=nil) @TotalCount = totalcount @SAMLProviderSet = samlproviderset @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
3906 3907 3908 |
# File 'lib/v20190116/models.rb', line 3906 def RequestId @RequestId end |
#SAMLProviderSet ⇒ Object
3906 3907 3908 |
# File 'lib/v20190116/models.rb', line 3906 def SAMLProviderSet @SAMLProviderSet end |
#TotalCount ⇒ Object
3906 3907 3908 |
# File 'lib/v20190116/models.rb', line 3906 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 |
# File 'lib/v20190116/models.rb', line 3914 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 |