Class: TencentCloud::Dayu::V20180709::HttpStatusMap
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dayu::V20180709::HttpStatusMap
- Defined in:
- lib/v20180709/models.rb
Overview
业务流量的http状态码聚合数据
Instance Attribute Summary collapse
- #Http2xx ⇒ Object
- #Http3xx ⇒ Object
- #Http404 ⇒ Object
- #Http4xx ⇒ Object
- #Http5xx ⇒ Object
- #SourceHttp2xx ⇒ Object
- #SourceHttp3xx ⇒ Object
- #SourceHttp404 ⇒ Object
- #SourceHttp4xx ⇒ Object
- #SourceHttp5xx ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(http2xx = nil, http3xx = nil, http404 = nil, http4xx = nil, http5xx = nil, sourcehttp2xx = nil, sourcehttp3xx = nil, sourcehttp404 = nil, sourcehttp4xx = nil, sourcehttp5xx = nil) ⇒ HttpStatusMap
constructor
A new instance of HttpStatusMap.
Constructor Details
#initialize(http2xx = nil, http3xx = nil, http404 = nil, http4xx = nil, http5xx = nil, sourcehttp2xx = nil, sourcehttp3xx = nil, sourcehttp404 = nil, sourcehttp4xx = nil, sourcehttp5xx = nil) ⇒ HttpStatusMap
Returns a new instance of HttpStatusMap.
6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 |
# File 'lib/v20180709/models.rb', line 6116 def initialize(http2xx=nil, http3xx=nil, http404=nil, http4xx=nil, http5xx=nil, sourcehttp2xx=nil, sourcehttp3xx=nil, sourcehttp404=nil, sourcehttp4xx=nil, sourcehttp5xx=nil) @Http2xx = http2xx @Http3xx = http3xx @Http404 = http404 @Http4xx = http4xx @Http5xx = http5xx @SourceHttp2xx = sourcehttp2xx @SourceHttp3xx = sourcehttp3xx @SourceHttp404 = sourcehttp404 @SourceHttp4xx = sourcehttp4xx @SourceHttp5xx = sourcehttp5xx end |
Instance Attribute Details
#Http2xx ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def Http2xx @Http2xx end |
#Http3xx ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def Http3xx @Http3xx end |
#Http404 ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def Http404 @Http404 end |
#Http4xx ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def Http4xx @Http4xx end |
#Http5xx ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def Http5xx @Http5xx end |
#SourceHttp2xx ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def SourceHttp2xx @SourceHttp2xx end |
#SourceHttp3xx ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def SourceHttp3xx @SourceHttp3xx end |
#SourceHttp404 ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def SourceHttp404 @SourceHttp404 end |
#SourceHttp4xx ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def SourceHttp4xx @SourceHttp4xx end |
#SourceHttp5xx ⇒ Object
6114 6115 6116 |
# File 'lib/v20180709/models.rb', line 6114 def SourceHttp5xx @SourceHttp5xx end |
Instance Method Details
#deserialize(params) ⇒ Object
6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 |
# File 'lib/v20180709/models.rb', line 6129 def deserialize(params) @Http2xx = params['Http2xx'] @Http3xx = params['Http3xx'] @Http404 = params['Http404'] @Http4xx = params['Http4xx'] @Http5xx = params['Http5xx'] @SourceHttp2xx = params['SourceHttp2xx'] @SourceHttp3xx = params['SourceHttp3xx'] @SourceHttp404 = params['SourceHttp404'] @SourceHttp4xx = params['SourceHttp4xx'] @SourceHttp5xx = params['SourceHttp5xx'] end |