Sha256: 6723729aac452e82fa806022652bd9e843dbb0571ec46151c06f08d50ad93e25
Contents?: true
Size: 627 Bytes
Versions: 9
Compression:
Stored size: 627 Bytes
Contents
module Fog module Compute class QingCloud class Real # {API Reference}[https://docs.qingcloud.com/api/router/describe_router_statics.html] def describe_router_statics(rt_id, rule_id = [], type = nil) args = {'action' => 'DescribeRouterStatics', 'static_type' => type, 'router' => rt_id} args.merge!(Fog::QingCloud.indexed_param('router_statics', [*rule_id])) request(args) end end class Mock def describe_router_statics(rt_id, rule_id = [], type = nil) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems