Class: TencentCloud::Lowcode::V20210108::DeployAppRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lowcode::V20210108::DeployAppRequest
- Defined in:
- lib/v20210108/models.rb
Overview
DeployApp请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(envid = nil, id = nil, mode = nil, buildtype = nil, subappids = nil) ⇒ DeployAppRequest
constructor
A new instance of DeployAppRequest.
Constructor Details
#initialize(envid = nil, id = nil, mode = nil, buildtype = nil, subappids = nil) ⇒ DeployAppRequest
590 591 592 593 594 595 596 |
# File 'lib/v20210108/models.rb', line 590 def initialize(envid=nil, id=nil, mode=nil, buildtype=nil, subappids=nil) @EnvId = envid @Id = id @Mode = mode @BuildType = buildtype @SubAppIds = subappids end |
Instance Attribute Details
#BuildType ⇒ Object
588 589 590 |
# File 'lib/v20210108/models.rb', line 588 def BuildType @BuildType end |
#EnvId ⇒ Object
588 589 590 |
# File 'lib/v20210108/models.rb', line 588 def EnvId @EnvId end |
#Id ⇒ Object
588 589 590 |
# File 'lib/v20210108/models.rb', line 588 def Id @Id end |
#Mode ⇒ Object
588 589 590 |
# File 'lib/v20210108/models.rb', line 588 def Mode @Mode end |
#SubAppIds ⇒ Object
588 589 590 |
# File 'lib/v20210108/models.rb', line 588 def SubAppIds @SubAppIds end |
Instance Method Details
#deserialize(params) ⇒ Object
598 599 600 601 602 603 604 |
# File 'lib/v20210108/models.rb', line 598 def deserialize(params) @EnvId = params['EnvId'] @Id = params['Id'] @Mode = params['Mode'] @BuildType = params['BuildType'] @SubAppIds = params['SubAppIds'] end |