Class: TencentCloud::Gaap::V20180529::CreateProxyGroupRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Gaap::V20180529::CreateProxyGroupRequest
- Defined in:
- lib/v20180529/models.rb
Overview
CreateProxyGroup请求参数结构体
Instance Attribute Summary collapse
- #AccessRegionSet ⇒ Object
- #GroupName ⇒ Object
- #Http3Supported ⇒ Object
- #IPAddressVersion ⇒ Object
- #PackageType ⇒ Object
- #ProjectId ⇒ Object
- #RealServerRegion ⇒ Object
- #TagSet ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(projectid = nil, groupname = nil, realserverregion = nil, tagset = nil, accessregionset = nil, ipaddressversion = nil, packagetype = nil, http3supported = nil) ⇒ CreateProxyGroupRequest
constructor
A new instance of CreateProxyGroupRequest.
Constructor Details
#initialize(projectid = nil, groupname = nil, realserverregion = nil, tagset = nil, accessregionset = nil, ipaddressversion = nil, packagetype = nil, http3supported = nil) ⇒ CreateProxyGroupRequest
Returns a new instance of CreateProxyGroupRequest.
1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 |
# File 'lib/v20180529/models.rb', line 1268 def initialize(projectid=nil, groupname=nil, realserverregion=nil, =nil, accessregionset=nil, ipaddressversion=nil, packagetype=nil, http3supported=nil) @ProjectId = projectid @GroupName = groupname @RealServerRegion = realserverregion @TagSet = @AccessRegionSet = accessregionset @IPAddressVersion = ipaddressversion @PackageType = packagetype @Http3Supported = http3supported end |
Instance Attribute Details
#AccessRegionSet ⇒ Object
1266 1267 1268 |
# File 'lib/v20180529/models.rb', line 1266 def AccessRegionSet @AccessRegionSet end |
#GroupName ⇒ Object
1266 1267 1268 |
# File 'lib/v20180529/models.rb', line 1266 def GroupName @GroupName end |
#Http3Supported ⇒ Object
1266 1267 1268 |
# File 'lib/v20180529/models.rb', line 1266 def Http3Supported @Http3Supported end |
#IPAddressVersion ⇒ Object
1266 1267 1268 |
# File 'lib/v20180529/models.rb', line 1266 def IPAddressVersion @IPAddressVersion end |
#PackageType ⇒ Object
1266 1267 1268 |
# File 'lib/v20180529/models.rb', line 1266 def PackageType @PackageType end |
#ProjectId ⇒ Object
1266 1267 1268 |
# File 'lib/v20180529/models.rb', line 1266 def ProjectId @ProjectId end |
#RealServerRegion ⇒ Object
1266 1267 1268 |
# File 'lib/v20180529/models.rb', line 1266 def RealServerRegion @RealServerRegion end |
#TagSet ⇒ Object
1266 1267 1268 |
# File 'lib/v20180529/models.rb', line 1266 def TagSet @TagSet end |
Instance Method Details
#deserialize(params) ⇒ Object
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 |
# File 'lib/v20180529/models.rb', line 1279 def deserialize(params) @ProjectId = params['ProjectId'] @GroupName = params['GroupName'] @RealServerRegion = params['RealServerRegion'] unless params['TagSet'].nil? @TagSet = [] params['TagSet'].each do |i| tagpair_tmp = TagPair.new tagpair_tmp.deserialize(i) @TagSet << tagpair_tmp end end unless params['AccessRegionSet'].nil? @AccessRegionSet = [] params['AccessRegionSet'].each do |i| accessconfiguration_tmp = AccessConfiguration.new accessconfiguration_tmp.deserialize(i) @AccessRegionSet << accessconfiguration_tmp end end @IPAddressVersion = params['IPAddressVersion'] @PackageType = params['PackageType'] @Http3Supported = params['Http3Supported'] end |