Class: TencentCloud::Postgres::V20170312::DescribeDBBackupsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Postgres::V20170312::DescribeDBBackupsRequest
- Defined in:
- lib/v20170312/models.rb
Overview
DescribeDBBackups请求参数结构体
Instance Attribute Summary collapse
- #DBInstanceId ⇒ Object
- #EndTime ⇒ Object
- #Limit ⇒ Object
- #Offset ⇒ Object
- #StartTime ⇒ Object
- #Type ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(dbinstanceid = nil, type = nil, starttime = nil, endtime = nil, limit = nil, offset = nil) ⇒ DescribeDBBackupsRequest
constructor
A new instance of DescribeDBBackupsRequest.
Constructor Details
#initialize(dbinstanceid = nil, type = nil, starttime = nil, endtime = nil, limit = nil, offset = nil) ⇒ DescribeDBBackupsRequest
2974 2975 2976 2977 2978 2979 2980 2981 |
# File 'lib/v20170312/models.rb', line 2974 def initialize(dbinstanceid=nil, type=nil, starttime=nil, endtime=nil, limit=nil, offset=nil) @DBInstanceId = dbinstanceid @Type = type @StartTime = starttime @EndTime = endtime @Limit = limit @Offset = offset end |
Instance Attribute Details
#DBInstanceId ⇒ Object
2972 2973 2974 |
# File 'lib/v20170312/models.rb', line 2972 def DBInstanceId @DBInstanceId end |
#EndTime ⇒ Object
2972 2973 2974 |
# File 'lib/v20170312/models.rb', line 2972 def EndTime @EndTime end |
#Limit ⇒ Object
2972 2973 2974 |
# File 'lib/v20170312/models.rb', line 2972 def Limit @Limit end |
#Offset ⇒ Object
2972 2973 2974 |
# File 'lib/v20170312/models.rb', line 2972 def Offset @Offset end |
#StartTime ⇒ Object
2972 2973 2974 |
# File 'lib/v20170312/models.rb', line 2972 def StartTime @StartTime end |
#Type ⇒ Object
2972 2973 2974 |
# File 'lib/v20170312/models.rb', line 2972 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
2983 2984 2985 2986 2987 2988 2989 2990 |
# File 'lib/v20170312/models.rb', line 2983 def deserialize(params) @DBInstanceId = params['DBInstanceId'] @Type = params['Type'] @StartTime = params['StartTime'] @EndTime = params['EndTime'] @Limit = params['Limit'] @Offset = params['Offset'] end |