Class: TencentCloud::Cam::V20190116::UpdateOIDCConfigRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cam::V20190116::UpdateOIDCConfigRequest
- Defined in:
- lib/v20190116/models.rb
Overview
UpdateOIDCConfig请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(identityurl = nil, clientid = nil, name = nil, identitykey = nil, description = nil) ⇒ UpdateOIDCConfigRequest
constructor
A new instance of UpdateOIDCConfigRequest.
Constructor Details
#initialize(identityurl = nil, clientid = nil, name = nil, identitykey = nil, description = nil) ⇒ UpdateOIDCConfigRequest
Returns a new instance of UpdateOIDCConfigRequest.
5026 5027 5028 5029 5030 5031 5032 |
# File 'lib/v20190116/models.rb', line 5026 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
5024 5025 5026 |
# File 'lib/v20190116/models.rb', line 5024 def ClientId @ClientId end |
#Description ⇒ Object
5024 5025 5026 |
# File 'lib/v20190116/models.rb', line 5024 def Description @Description end |
#IdentityKey ⇒ Object
5024 5025 5026 |
# File 'lib/v20190116/models.rb', line 5024 def IdentityKey @IdentityKey end |
#IdentityUrl ⇒ Object
5024 5025 5026 |
# File 'lib/v20190116/models.rb', line 5024 def IdentityUrl @IdentityUrl end |
#Name ⇒ Object
5024 5025 5026 |
# File 'lib/v20190116/models.rb', line 5024 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
5034 5035 5036 5037 5038 5039 5040 |
# File 'lib/v20190116/models.rb', line 5034 def deserialize(params) @IdentityUrl = params['IdentityUrl'] @ClientId = params['ClientId'] @Name = params['Name'] @IdentityKey = params['IdentityKey'] @Description = params['Description'] end |