Class: TencentCloud::Apigateway::V20180808::DescribeServiceEnvironmentReleaseHistoryRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180808/models.rb

Overview

DescribeServiceEnvironmentReleaseHistory请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(serviceid = nil, environmentname = nil, limit = nil, offset = nil) ⇒ DescribeServiceEnvironmentReleaseHistoryRequest

Returns a new instance of DescribeServiceEnvironmentReleaseHistoryRequest.



5069
5070
5071
5072
5073
5074
# File 'lib/v20180808/models.rb', line 5069

def initialize(serviceid=nil, environmentname=nil, limit=nil, offset=nil)
  @ServiceId = serviceid
  @EnvironmentName = environmentname
  @Limit = limit
  @Offset = offset
end

Instance Attribute Details

#EnvironmentNameObject

Parameters:

  • ServiceId:

    待查询的服务唯一 ID。

  • EnvironmentName:

    环境名称。

  • Limit:

    返回数量,默认为 20,最大值为 100。

  • Offset:

    偏移量,默认为 0。



5067
5068
5069
# File 'lib/v20180808/models.rb', line 5067

def EnvironmentName
  @EnvironmentName
end

#LimitObject

Parameters:

  • ServiceId:

    待查询的服务唯一 ID。

  • EnvironmentName:

    环境名称。

  • Limit:

    返回数量,默认为 20,最大值为 100。

  • Offset:

    偏移量,默认为 0。



5067
5068
5069
# File 'lib/v20180808/models.rb', line 5067

def Limit
  @Limit
end

#OffsetObject

Parameters:

  • ServiceId:

    待查询的服务唯一 ID。

  • EnvironmentName:

    环境名称。

  • Limit:

    返回数量,默认为 20,最大值为 100。

  • Offset:

    偏移量,默认为 0。



5067
5068
5069
# File 'lib/v20180808/models.rb', line 5067

def Offset
  @Offset
end

#ServiceIdObject

Parameters:

  • ServiceId:

    待查询的服务唯一 ID。

  • EnvironmentName:

    环境名称。

  • Limit:

    返回数量,默认为 20,最大值为 100。

  • Offset:

    偏移量,默认为 0。



5067
5068
5069
# File 'lib/v20180808/models.rb', line 5067

def ServiceId
  @ServiceId
end

Instance Method Details

#deserialize(params) ⇒ Object



5076
5077
5078
5079
5080
5081
# File 'lib/v20180808/models.rb', line 5076

def deserialize(params)
  @ServiceId = params['ServiceId']
  @EnvironmentName = params['EnvironmentName']
  @Limit = params['Limit']
  @Offset = params['Offset']
end