Class: TencentCloud::Ckafka::V20190819::ClickHouseSchema
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ckafka::V20190819::ClickHouseSchema
- Defined in:
- lib/v20190819/models.rb
Overview
ClickHouse的Schema
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(columnname = nil, jsonkey = nil, type = nil, allownull = nil) ⇒ ClickHouseSchema
constructor
A new instance of ClickHouseSchema.
Constructor Details
#initialize(columnname = nil, jsonkey = nil, type = nil, allownull = nil) ⇒ ClickHouseSchema
Returns a new instance of ClickHouseSchema.
935 936 937 938 939 940 |
# File 'lib/v20190819/models.rb', line 935 def initialize(columnname=nil, jsonkey=nil, type=nil, allownull=nil) @ColumnName = columnname @JsonKey = jsonkey @Type = type @AllowNull = allownull end |
Instance Attribute Details
#AllowNull ⇒ Object
933 934 935 |
# File 'lib/v20190819/models.rb', line 933 def AllowNull @AllowNull end |
#ColumnName ⇒ Object
933 934 935 |
# File 'lib/v20190819/models.rb', line 933 def ColumnName @ColumnName end |
#JsonKey ⇒ Object
933 934 935 |
# File 'lib/v20190819/models.rb', line 933 def JsonKey @JsonKey end |
#Type ⇒ Object
933 934 935 |
# File 'lib/v20190819/models.rb', line 933 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
942 943 944 945 946 947 |
# File 'lib/v20190819/models.rb', line 942 def deserialize(params) @ColumnName = params['ColumnName'] @JsonKey = params['JsonKey'] @Type = params['Type'] @AllowNull = params['AllowNull'] end |