Class: TencentCloud::Ioa::V20220601::DescribeSoftwareInformationRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ioa::V20220601::DescribeSoftwareInformationRequest
- Defined in:
- lib/v20220601/models.rb
Overview
DescribeSoftwareInformation请求参数结构体
Instance Attribute Summary collapse
-
#Condition ⇒ Object
<li>Name - String - 过滤支持:是 - 操作符:eq,like - 排序支持:是 。</li>.
-
#Mid ⇒ Object
<li>Name - String - 过滤支持:是 - 操作符:eq,like - 排序支持:是 。</li>.
-
#OsType ⇒ Object
<li>Name - String - 过滤支持:是 - 操作符:eq,like - 排序支持:是 。</li>.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mid = nil, condition = nil, ostype = nil) ⇒ DescribeSoftwareInformationRequest
constructor
A new instance of DescribeSoftwareInformationRequest.
Constructor Details
#initialize(mid = nil, condition = nil, ostype = nil) ⇒ DescribeSoftwareInformationRequest
Returns a new instance of DescribeSoftwareInformationRequest.
2745 2746 2747 2748 2749 |
# File 'lib/v20220601/models.rb', line 2745 def initialize(mid=nil, condition=nil, ostype=nil) @Mid = mid @Condition = condition @OsType = ostype end |
Instance Attribute Details
#Condition ⇒ Object
<li>Name - String - 过滤支持:是 - 操作符:eq,like - 排序支持:是 。</li>
2743 2744 2745 |
# File 'lib/v20220601/models.rb', line 2743 def Condition @Condition end |
#Mid ⇒ Object
<li>Name - String - 过滤支持:是 - 操作符:eq,like - 排序支持:是 。</li>
2743 2744 2745 |
# File 'lib/v20220601/models.rb', line 2743 def Mid @Mid end |
#OsType ⇒ Object
<li>Name - String - 过滤支持:是 - 操作符:eq,like - 排序支持:是 。</li>
2743 2744 2745 |
# File 'lib/v20220601/models.rb', line 2743 def OsType @OsType end |
Instance Method Details
#deserialize(params) ⇒ Object
2751 2752 2753 2754 2755 2756 2757 2758 |
# File 'lib/v20220601/models.rb', line 2751 def deserialize(params) @Mid = params['Mid'] unless params['Condition'].nil? @Condition = Condition.new @Condition.deserialize(params['Condition']) end @OsType = params['OsType'] end |