Class: TencentCloud::Ie::V20200304::SaveInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ie::V20200304::SaveInfo
- Defined in:
- lib/v20200304/models.rb
Overview
任务存储信息
Instance Attribute Summary collapse
-
#CosInfo ⇒ Object
1:CosInfo。 ID只能包含字母、数字、下划线、中划线,长读不能超过128。.
-
#Id ⇒ Object
1:CosInfo。 ID只能包含字母、数字、下划线、中划线,长读不能超过128。.
-
#Type ⇒ Object
1:CosInfo。 ID只能包含字母、数字、下划线、中划线,长读不能超过128。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(type = nil, cosinfo = nil, id = nil) ⇒ SaveInfo
constructor
A new instance of SaveInfo.
Constructor Details
#initialize(type = nil, cosinfo = nil, id = nil) ⇒ SaveInfo
Returns a new instance of SaveInfo.
2696 2697 2698 2699 2700 |
# File 'lib/v20200304/models.rb', line 2696 def initialize(type=nil, cosinfo=nil, id=nil) @Type = type @CosInfo = cosinfo @Id = id end |
Instance Attribute Details
#CosInfo ⇒ Object
1:CosInfo。ID只能包含字母、数字、下划线、中划线,长读不能超过128。
2694 2695 2696 |
# File 'lib/v20200304/models.rb', line 2694 def CosInfo @CosInfo end |
#Id ⇒ Object
1:CosInfo。ID只能包含字母、数字、下划线、中划线,长读不能超过128。
2694 2695 2696 |
# File 'lib/v20200304/models.rb', line 2694 def Id @Id end |
#Type ⇒ Object
1:CosInfo。ID只能包含字母、数字、下划线、中划线,长读不能超过128。
2694 2695 2696 |
# File 'lib/v20200304/models.rb', line 2694 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
2702 2703 2704 2705 2706 2707 2708 2709 |
# File 'lib/v20200304/models.rb', line 2702 def deserialize(params) @Type = params['Type'] unless params['CosInfo'].nil? @CosInfo = CosInfo.new @CosInfo.deserialize(params['CosInfo']) end @Id = params['Id'] end |