Class: TencentCloud::Iss::V20230517::UpdateGatewayRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::UpdateGatewayRequest
- Defined in:
- lib/v20230517/models.rb
Overview
UpdateGateway请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(gatewayid = nil, name = nil, description = nil) ⇒ UpdateGatewayRequest
constructor
A new instance of UpdateGatewayRequest.
Constructor Details
#initialize(gatewayid = nil, name = nil, description = nil) ⇒ UpdateGatewayRequest
Returns a new instance of UpdateGatewayRequest.
7383 7384 7385 7386 7387 |
# File 'lib/v20230517/models.rb', line 7383 def initialize(gatewayid=nil, name=nil, description=nil) @GatewayId = gatewayid @Name = name @Description = description end |
Instance Attribute Details
#Description ⇒ Object
7381 7382 7383 |
# File 'lib/v20230517/models.rb', line 7381 def Description @Description end |
#GatewayId ⇒ Object
7381 7382 7383 |
# File 'lib/v20230517/models.rb', line 7381 def GatewayId @GatewayId end |
#Name ⇒ Object
7381 7382 7383 |
# File 'lib/v20230517/models.rb', line 7381 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
7389 7390 7391 7392 7393 |
# File 'lib/v20230517/models.rb', line 7389 def deserialize(params) @GatewayId = params['GatewayId'] @Name = params['Name'] @Description = params['Description'] end |