Class: TencentCloud::Tic::V20201117::UpdateStackRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tic::V20201117::UpdateStackRequest
- Defined in:
- lib/v20201117/models.rb
Overview
UpdateStack请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(stackid = nil, stackname = nil, description = nil) ⇒ UpdateStackRequest
constructor
A new instance of UpdateStackRequest.
Constructor Details
#initialize(stackid = nil, stackname = nil, description = nil) ⇒ UpdateStackRequest
Returns a new instance of UpdateStackRequest.
686 687 688 689 690 |
# File 'lib/v20201117/models.rb', line 686 def initialize(stackid=nil, stackname=nil, description=nil) @StackId = stackid @StackName = stackname @Description = description end |
Instance Attribute Details
#Description ⇒ Object
684 685 686 |
# File 'lib/v20201117/models.rb', line 684 def Description @Description end |
#StackId ⇒ Object
684 685 686 |
# File 'lib/v20201117/models.rb', line 684 def StackId @StackId end |
#StackName ⇒ Object
684 685 686 |
# File 'lib/v20201117/models.rb', line 684 def StackName @StackName end |
Instance Method Details
#deserialize(params) ⇒ Object
692 693 694 695 696 |
# File 'lib/v20201117/models.rb', line 692 def deserialize(params) @StackId = params['StackId'] @StackName = params['StackName'] @Description = params['Description'] end |