Class: TencentCloud::Tic::V20201117::UpdateStackRequest

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

Overview

UpdateStack请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#DescriptionObject

Parameters:

  • StackId:

    待更新的资源栈ID

  • StackName:

    资源栈名称,不得超过60个字符

  • Description:

    资源栈描述,不得超过200个字符



684
685
686
# File 'lib/v20201117/models.rb', line 684

def Description
  @Description
end

#StackIdObject

Parameters:

  • StackId:

    待更新的资源栈ID

  • StackName:

    资源栈名称,不得超过60个字符

  • Description:

    资源栈描述,不得超过200个字符



684
685
686
# File 'lib/v20201117/models.rb', line 684

def StackId
  @StackId
end

#StackNameObject

Parameters:

  • StackId:

    待更新的资源栈ID

  • StackName:

    资源栈名称,不得超过60个字符

  • Description:

    资源栈描述,不得超过200个字符



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