Class: TencentCloud::Cam::V20190116::CreateOIDCConfigRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cam::V20190116::CreateOIDCConfigRequest
- Defined in:
- lib/v20190116/models.rb
Overview
CreateOIDCConfig请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(identityurl = nil, clientid = nil, name = nil, identitykey = nil, description = nil) ⇒ CreateOIDCConfigRequest
constructor
A new instance of CreateOIDCConfigRequest.
Constructor Details
#initialize(identityurl = nil, clientid = nil, name = nil, identitykey = nil, description = nil) ⇒ CreateOIDCConfigRequest
Returns a new instance of CreateOIDCConfigRequest.
822 823 824 825 826 827 828 |
# File 'lib/v20190116/models.rb', line 822 def initialize(identityurl=nil, clientid=nil, name=nil, identitykey=nil, description=nil) @IdentityUrl = identityurl @ClientId = clientid @Name = name @IdentityKey = identitykey @Description = description end |
Instance Attribute Details
#ClientId ⇒ Object
820 821 822 |
# File 'lib/v20190116/models.rb', line 820 def ClientId @ClientId end |
#Description ⇒ Object
820 821 822 |
# File 'lib/v20190116/models.rb', line 820 def Description @Description end |
#IdentityKey ⇒ Object
820 821 822 |
# File 'lib/v20190116/models.rb', line 820 def IdentityKey @IdentityKey end |
#IdentityUrl ⇒ Object
820 821 822 |
# File 'lib/v20190116/models.rb', line 820 def IdentityUrl @IdentityUrl end |
#Name ⇒ Object
820 821 822 |
# File 'lib/v20190116/models.rb', line 820 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
830 831 832 833 834 835 836 |
# File 'lib/v20190116/models.rb', line 830 def deserialize(params) @IdentityUrl = params['IdentityUrl'] @ClientId = params['ClientId'] @Name = params['Name'] @IdentityKey = params['IdentityKey'] @Description = params['Description'] end |