Class: TencentCloud::Tcm::V20210413::ModifyAccessLogConfigRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcm::V20210413::ModifyAccessLogConfigRequest
- Defined in:
- lib/v20210413/models.rb
Overview
ModifyAccessLogConfig请求参数结构体
Instance Attribute Summary collapse
- #Address ⇒ Object
- #CLS ⇒ Object
- #Enable ⇒ Object
- #EnableServer ⇒ Object
- #EnableStdout ⇒ Object
- #Encoding ⇒ Object
- #Format ⇒ Object
- #MeshId ⇒ Object
- #SelectedRange ⇒ Object
- #Template ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(meshid = nil, selectedrange = nil, template = nil, enable = nil, cls = nil, encoding = nil, format = nil, enablestdout = nil, enableserver = nil, address = nil) ⇒ ModifyAccessLogConfigRequest
constructor
A new instance of ModifyAccessLogConfigRequest.
Constructor Details
#initialize(meshid = nil, selectedrange = nil, template = nil, enable = nil, cls = nil, encoding = nil, format = nil, enablestdout = nil, enableserver = nil, address = nil) ⇒ ModifyAccessLogConfigRequest
Returns a new instance of ModifyAccessLogConfigRequest.
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 |
# File 'lib/v20210413/models.rb', line 1568 def initialize(meshid=nil, selectedrange=nil, template=nil, enable=nil, cls=nil, encoding=nil, format=nil, enablestdout=nil, enableserver=nil, address=nil) @MeshId = meshid @SelectedRange = selectedrange @Template = template @Enable = enable @CLS = cls @Encoding = encoding @Format = format @EnableStdout = enablestdout @EnableServer = enableserver @Address = address end |
Instance Attribute Details
#Address ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def Address @Address end |
#CLS ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def CLS @CLS end |
#Enable ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def Enable @Enable end |
#EnableServer ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def EnableServer @EnableServer end |
#EnableStdout ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def EnableStdout @EnableStdout end |
#Encoding ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def Encoding @Encoding end |
#Format ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def Format @Format end |
#MeshId ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def MeshId @MeshId end |
#SelectedRange ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def SelectedRange @SelectedRange end |
#Template ⇒ Object
1566 1567 1568 |
# File 'lib/v20210413/models.rb', line 1566 def Template @Template end |
Instance Method Details
#deserialize(params) ⇒ Object
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 |
# File 'lib/v20210413/models.rb', line 1581 def deserialize(params) @MeshId = params['MeshId'] unless params['SelectedRange'].nil? @SelectedRange = SelectedRange.new @SelectedRange.deserialize(params['SelectedRange']) end @Template = params['Template'] @Enable = params['Enable'] unless params['CLS'].nil? @CLS = CLS.new @CLS.deserialize(params['CLS']) end @Encoding = params['Encoding'] @Format = params['Format'] @EnableStdout = params['EnableStdout'] @EnableServer = params['EnableServer'] @Address = params['Address'] end |