Class: TencentCloud::Tse::V20201207::NativeGatewayServiceSourceItem
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tse::V20201207::NativeGatewayServiceSourceItem
- Defined in:
- lib/v20201207/models.rb
Overview
网关数据来源单个描述
Instance Attribute Summary collapse
- #CreateTime ⇒ Object
- #GatewayID ⇒ Object
- #ModifyTime ⇒ Object
- #SourceID ⇒ Object
- #SourceInfo ⇒ Object
- #SourceName ⇒ Object
- #SourceType ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(gatewayid = nil, sourceid = nil, sourcename = nil, sourcetype = nil, sourceinfo = nil, createtime = nil, modifytime = nil) ⇒ NativeGatewayServiceSourceItem
constructor
A new instance of NativeGatewayServiceSourceItem.
Constructor Details
#initialize(gatewayid = nil, sourceid = nil, sourcename = nil, sourcetype = nil, sourceinfo = nil, createtime = nil, modifytime = nil) ⇒ NativeGatewayServiceSourceItem
Returns a new instance of NativeGatewayServiceSourceItem.
10836 10837 10838 10839 10840 10841 10842 10843 10844 |
# File 'lib/v20201207/models.rb', line 10836 def initialize(gatewayid=nil, sourceid=nil, sourcename=nil, sourcetype=nil, sourceinfo=nil, createtime=nil, modifytime=nil) @GatewayID = gatewayid @SourceID = sourceid @SourceName = sourcename @SourceType = sourcetype @SourceInfo = sourceinfo @CreateTime = createtime @ModifyTime = modifytime end |
Instance Attribute Details
#CreateTime ⇒ Object
10834 10835 10836 |
# File 'lib/v20201207/models.rb', line 10834 def CreateTime @CreateTime end |
#GatewayID ⇒ Object
10834 10835 10836 |
# File 'lib/v20201207/models.rb', line 10834 def GatewayID @GatewayID end |
#ModifyTime ⇒ Object
10834 10835 10836 |
# File 'lib/v20201207/models.rb', line 10834 def ModifyTime @ModifyTime end |
#SourceID ⇒ Object
10834 10835 10836 |
# File 'lib/v20201207/models.rb', line 10834 def SourceID @SourceID end |
#SourceInfo ⇒ Object
10834 10835 10836 |
# File 'lib/v20201207/models.rb', line 10834 def SourceInfo @SourceInfo end |
#SourceName ⇒ Object
10834 10835 10836 |
# File 'lib/v20201207/models.rb', line 10834 def SourceName @SourceName end |
#SourceType ⇒ Object
10834 10835 10836 |
# File 'lib/v20201207/models.rb', line 10834 def SourceType @SourceType end |
Instance Method Details
#deserialize(params) ⇒ Object
10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 |
# File 'lib/v20201207/models.rb', line 10846 def deserialize(params) @GatewayID = params['GatewayID'] @SourceID = params['SourceID'] @SourceName = params['SourceName'] @SourceType = params['SourceType'] unless params['SourceInfo'].nil? @SourceInfo = SourceInfo.new @SourceInfo.deserialize(params['SourceInfo']) end @CreateTime = params['CreateTime'] @ModifyTime = params['ModifyTime'] end |