Class: TencentCloud::Ams::V20201229::InputInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ams::V20201229::InputInfo
- Defined in:
- lib/v20201229/models.rb
Overview
输入信息详情
Instance Attribute Summary collapse
-
#BucketInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Type ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Url ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(type = nil, url = nil, bucketinfo = nil) ⇒ InputInfo
constructor
A new instance of InputInfo.
Constructor Details
#initialize(type = nil, url = nil, bucketinfo = nil) ⇒ InputInfo
Returns a new instance of InputInfo.
880 881 882 883 884 |
# File 'lib/v20201229/models.rb', line 880 def initialize(type=nil, url=nil, bucketinfo=nil) @Type = type @Url = url @BucketInfo = bucketinfo end |
Instance Attribute Details
#BucketInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
878 879 880 |
# File 'lib/v20201229/models.rb', line 878 def BucketInfo @BucketInfo end |
#Type ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
878 879 880 |
# File 'lib/v20201229/models.rb', line 878 def Type @Type end |
#Url ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
878 879 880 |
# File 'lib/v20201229/models.rb', line 878 def Url @Url end |
Instance Method Details
#deserialize(params) ⇒ Object
886 887 888 889 890 891 892 893 |
# File 'lib/v20201229/models.rb', line 886 def deserialize(params) @Type = params['Type'] @Url = params['Url'] unless params['BucketInfo'].nil? @BucketInfo = BucketInfo.new @BucketInfo.deserialize(params['BucketInfo']) end end |