tencentcloud-sdk-tcb 3.0.1131 → 3.0.1182

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 92dfb78249551db94cf60330a4c13a89aeccd7db
4
- data.tar.gz: b0b4ce04b5dfe6c4f0de0cc6eab1ff3ca14bbe72
3
+ metadata.gz: 73150352b523358c8c1308186d348937d05f2ce5
4
+ data.tar.gz: 1d98965b33886a70b992a02dbd962de23fa84a78
5
5
  SHA512:
6
- metadata.gz: 088eb82c78471b960fd270d291b8e89feea72c87431f27e2df9a9cd6d23abe8ef8d0fe877fbe5534b75cdda8fa9af89f388a27473622e2f13f49a8c4f4e9b1b8
7
- data.tar.gz: 3c69d7bd8051b06787115c8c876a3fa22cd02f7c01796ac370851d772caac981c5da82de8e0048ec2ca7f03f238b3badc928c12f73446896ba4692344270718a
6
+ metadata.gz: 451a27313245e6b8ee8e2163d074a1848fd26ccdaa3a5572f7446e0427ab8ae5d4ebd23dfb2e79d194a6d4c7e756a9e9c966efd7b1c6c32de7c3bf74a4db2f13
7
+ data.tar.gz: f5bf25831755bad04ced516f9faf20f8d1dc2d587a8294a2a11442f50e8d892c86c64fb537f86c90658faf9a8fa43fadf72e14fd79f384b063f6d00278f58171
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1131
1
+ 3.0.1182
@@ -245,30 +245,6 @@ module TencentCloud
245
245
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
246
246
  end
247
247
 
248
- # 本接口(CreateStandaloneGateway)用于创建独立网关。
249
-
250
- # @param request: Request instance for CreateStandaloneGateway.
251
- # @type request: :class:`Tencentcloud::tcb::V20180608::CreateStandaloneGatewayRequest`
252
- # @rtype: :class:`Tencentcloud::tcb::V20180608::CreateStandaloneGatewayResponse`
253
- def CreateStandaloneGateway(request)
254
- body = send_request('CreateStandaloneGateway', request.serialize)
255
- response = JSON.parse(body)
256
- if response['Response'].key?('Error') == false
257
- model = CreateStandaloneGatewayResponse.new
258
- model.deserialize(response['Response'])
259
- model
260
- else
261
- code = response['Response']['Error']['Code']
262
- message = response['Response']['Error']['Message']
263
- reqid = response['Response']['RequestId']
264
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
265
- end
266
- rescue TencentCloud::Common::TencentCloudSDKException => e
267
- raise e
268
- rescue StandardError => e
269
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
270
- end
271
-
272
248
  # 创建静态托管资源,包括COS和CDN,异步任务创建,查看创建结果需要根据DescribeStaticStore接口来查看
273
249
 
274
250
  # @param request: Request instance for CreateStaticStore.
@@ -389,30 +365,6 @@ module TencentCloud
389
365
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
390
366
  end
391
367
 
392
- # 删除终端用户
393
-
394
- # @param request: Request instance for DeleteEndUser.
395
- # @type request: :class:`Tencentcloud::tcb::V20180608::DeleteEndUserRequest`
396
- # @rtype: :class:`Tencentcloud::tcb::V20180608::DeleteEndUserResponse`
397
- def DeleteEndUser(request)
398
- body = send_request('DeleteEndUser', request.serialize)
399
- response = JSON.parse(body)
400
- if response['Response'].key?('Error') == false
401
- model = DeleteEndUserResponse.new
402
- model.deserialize(response['Response'])
403
- model
404
- else
405
- code = response['Response']['Error']['Code']
406
- message = response['Response']['Error']['Message']
407
- reqid = response['Response']['RequestId']
408
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
409
- end
410
- rescue TencentCloud::Common::TencentCloudSDKException => e
411
- raise e
412
- rescue StandardError => e
413
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
414
- end
415
-
416
368
  # 删除网关某版本
417
369
 
418
370
  # @param request: Request instance for DeleteGatewayVersion.
@@ -1037,78 +989,6 @@ module TencentCloud
1037
989
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1038
990
  end
1039
991
 
1040
- # 获取环境终端用户新增与登录信息
1041
-
1042
- # @param request: Request instance for DescribeEndUserLoginStatistic.
1043
- # @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEndUserLoginStatisticRequest`
1044
- # @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEndUserLoginStatisticResponse`
1045
- def DescribeEndUserLoginStatistic(request)
1046
- body = send_request('DescribeEndUserLoginStatistic', request.serialize)
1047
- response = JSON.parse(body)
1048
- if response['Response'].key?('Error') == false
1049
- model = DescribeEndUserLoginStatisticResponse.new
1050
- model.deserialize(response['Response'])
1051
- model
1052
- else
1053
- code = response['Response']['Error']['Code']
1054
- message = response['Response']['Error']['Message']
1055
- reqid = response['Response']['RequestId']
1056
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1057
- end
1058
- rescue TencentCloud::Common::TencentCloudSDKException => e
1059
- raise e
1060
- rescue StandardError => e
1061
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1062
- end
1063
-
1064
- # 获取终端用户总量与平台分布情况
1065
-
1066
- # @param request: Request instance for DescribeEndUserStatistic.
1067
- # @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEndUserStatisticRequest`
1068
- # @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEndUserStatisticResponse`
1069
- def DescribeEndUserStatistic(request)
1070
- body = send_request('DescribeEndUserStatistic', request.serialize)
1071
- response = JSON.parse(body)
1072
- if response['Response'].key?('Error') == false
1073
- model = DescribeEndUserStatisticResponse.new
1074
- model.deserialize(response['Response'])
1075
- model
1076
- else
1077
- code = response['Response']['Error']['Code']
1078
- message = response['Response']['Error']['Message']
1079
- reqid = response['Response']['RequestId']
1080
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1081
- end
1082
- rescue TencentCloud::Common::TencentCloudSDKException => e
1083
- raise e
1084
- rescue StandardError => e
1085
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1086
- end
1087
-
1088
- # 获取终端用户列表
1089
-
1090
- # @param request: Request instance for DescribeEndUsers.
1091
- # @type request: :class:`Tencentcloud::tcb::V20180608::DescribeEndUsersRequest`
1092
- # @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeEndUsersResponse`
1093
- def DescribeEndUsers(request)
1094
- body = send_request('DescribeEndUsers', request.serialize)
1095
- response = JSON.parse(body)
1096
- if response['Response'].key?('Error') == false
1097
- model = DescribeEndUsersResponse.new
1098
- model.deserialize(response['Response'])
1099
- model
1100
- else
1101
- code = response['Response']['Error']['Code']
1102
- message = response['Response']['Error']['Message']
1103
- reqid = response['Response']['RequestId']
1104
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1105
- end
1106
- rescue TencentCloud::Common::TencentCloudSDKException => e
1107
- raise e
1108
- rescue StandardError => e
1109
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1110
- end
1111
-
1112
992
  # 获取环境下单地域
1113
993
 
1114
994
  # @param request: Request instance for DescribeEnvDealRegion.
@@ -1497,54 +1377,6 @@ module TencentCloud
1497
1377
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1498
1378
  end
1499
1379
 
1500
- # 本接口(DescribeStandaloneGateway)查询小租户网关套餐信息。
1501
-
1502
- # @param request: Request instance for DescribeStandaloneGateway.
1503
- # @type request: :class:`Tencentcloud::tcb::V20180608::DescribeStandaloneGatewayRequest`
1504
- # @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeStandaloneGatewayResponse`
1505
- def DescribeStandaloneGateway(request)
1506
- body = send_request('DescribeStandaloneGateway', request.serialize)
1507
- response = JSON.parse(body)
1508
- if response['Response'].key?('Error') == false
1509
- model = DescribeStandaloneGatewayResponse.new
1510
- model.deserialize(response['Response'])
1511
- model
1512
- else
1513
- code = response['Response']['Error']['Code']
1514
- message = response['Response']['Error']['Message']
1515
- reqid = response['Response']['RequestId']
1516
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1517
- end
1518
- rescue TencentCloud::Common::TencentCloudSDKException => e
1519
- raise e
1520
- rescue StandardError => e
1521
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1522
- end
1523
-
1524
- # 本接口(DescribeStandaloneGatewayPackage)用于查询小租户网关套餐信息。
1525
-
1526
- # @param request: Request instance for DescribeStandaloneGatewayPackage.
1527
- # @type request: :class:`Tencentcloud::tcb::V20180608::DescribeStandaloneGatewayPackageRequest`
1528
- # @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeStandaloneGatewayPackageResponse`
1529
- def DescribeStandaloneGatewayPackage(request)
1530
- body = send_request('DescribeStandaloneGatewayPackage', request.serialize)
1531
- response = JSON.parse(body)
1532
- if response['Response'].key?('Error') == false
1533
- model = DescribeStandaloneGatewayPackageResponse.new
1534
- model.deserialize(response['Response'])
1535
- model
1536
- else
1537
- code = response['Response']['Error']['Code']
1538
- message = response['Response']['Error']['Message']
1539
- reqid = response['Response']['RequestId']
1540
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1541
- end
1542
- rescue TencentCloud::Common::TencentCloudSDKException => e
1543
- raise e
1544
- rescue StandardError => e
1545
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1546
- end
1547
-
1548
1380
  # 查询用户活动信息
1549
1381
 
1550
1382
  # @param request: Request instance for DescribeUserActivityInfo.
@@ -1689,30 +1521,6 @@ module TencentCloud
1689
1521
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1690
1522
  end
1691
1523
 
1692
- # 本接口(DestroyStandaloneGateway)用于销毁小租户网关。
1693
-
1694
- # @param request: Request instance for DestroyStandaloneGateway.
1695
- # @type request: :class:`Tencentcloud::tcb::V20180608::DestroyStandaloneGatewayRequest`
1696
- # @rtype: :class:`Tencentcloud::tcb::V20180608::DestroyStandaloneGatewayResponse`
1697
- def DestroyStandaloneGateway(request)
1698
- body = send_request('DestroyStandaloneGateway', request.serialize)
1699
- response = JSON.parse(body)
1700
- if response['Response'].key?('Error') == false
1701
- model = DestroyStandaloneGatewayResponse.new
1702
- model.deserialize(response['Response'])
1703
- model
1704
- else
1705
- code = response['Response']['Error']['Code']
1706
- message = response['Response']['Error']['Message']
1707
- reqid = response['Response']['RequestId']
1708
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1709
- end
1710
- rescue TencentCloud::Common::TencentCloudSDKException => e
1711
- raise e
1712
- rescue StandardError => e
1713
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1714
- end
1715
-
1716
1524
  # 销毁静态托管资源,该接口创建异步销毁任务,资源最终状态可从DestroyStaticStore接口查看
1717
1525
 
1718
1526
  # @param request: Request instance for DestroyStaticStore.
@@ -1929,30 +1737,6 @@ module TencentCloud
1929
1737
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1930
1738
  end
1931
1739
 
1932
- # 管理终端用户
1933
-
1934
- # @param request: Request instance for ModifyEndUser.
1935
- # @type request: :class:`Tencentcloud::tcb::V20180608::ModifyEndUserRequest`
1936
- # @rtype: :class:`Tencentcloud::tcb::V20180608::ModifyEndUserResponse`
1937
- def ModifyEndUser(request)
1938
- body = send_request('ModifyEndUser', request.serialize)
1939
- response = JSON.parse(body)
1940
- if response['Response'].key?('Error') == false
1941
- model = ModifyEndUserResponse.new
1942
- model.deserialize(response['Response'])
1943
- model
1944
- else
1945
- code = response['Response']['Error']['Code']
1946
- message = response['Response']['Error']['Message']
1947
- reqid = response['Response']['RequestId']
1948
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1949
- end
1950
- rescue TencentCloud::Common::TencentCloudSDKException => e
1951
- raise e
1952
- rescue StandardError => e
1953
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1954
- end
1955
-
1956
1740
  # 更新环境信息
1957
1741
 
1958
1742
  # @param request: Request instance for ModifyEnv.
@@ -2097,54 +1881,6 @@ module TencentCloud
2097
1881
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2098
1882
  end
2099
1883
 
2100
- # 本接口(TurnOffStandaloneGateway)用于关闭小租户网关。
2101
-
2102
- # @param request: Request instance for TurnOffStandaloneGateway.
2103
- # @type request: :class:`Tencentcloud::tcb::V20180608::TurnOffStandaloneGatewayRequest`
2104
- # @rtype: :class:`Tencentcloud::tcb::V20180608::TurnOffStandaloneGatewayResponse`
2105
- def TurnOffStandaloneGateway(request)
2106
- body = send_request('TurnOffStandaloneGateway', request.serialize)
2107
- response = JSON.parse(body)
2108
- if response['Response'].key?('Error') == false
2109
- model = TurnOffStandaloneGatewayResponse.new
2110
- model.deserialize(response['Response'])
2111
- model
2112
- else
2113
- code = response['Response']['Error']['Code']
2114
- message = response['Response']['Error']['Message']
2115
- reqid = response['Response']['RequestId']
2116
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2117
- end
2118
- rescue TencentCloud::Common::TencentCloudSDKException => e
2119
- raise e
2120
- rescue StandardError => e
2121
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2122
- end
2123
-
2124
- # 本接口(TurnOnStandaloneGateway)用于开启小租户网关。
2125
-
2126
- # @param request: Request instance for TurnOnStandaloneGateway.
2127
- # @type request: :class:`Tencentcloud::tcb::V20180608::TurnOnStandaloneGatewayRequest`
2128
- # @rtype: :class:`Tencentcloud::tcb::V20180608::TurnOnStandaloneGatewayResponse`
2129
- def TurnOnStandaloneGateway(request)
2130
- body = send_request('TurnOnStandaloneGateway', request.serialize)
2131
- response = JSON.parse(body)
2132
- if response['Response'].key?('Error') == false
2133
- model = TurnOnStandaloneGatewayResponse.new
2134
- model.deserialize(response['Response'])
2135
- model
2136
- else
2137
- code = response['Response']['Error']['Code']
2138
- message = response['Response']['Error']['Message']
2139
- reqid = response['Response']['RequestId']
2140
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2141
- end
2142
- rescue TencentCloud::Common::TencentCloudSDKException => e
2143
- raise e
2144
- rescue StandardError => e
2145
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2146
- end
2147
-
2148
1884
  # 批量解冻服务
2149
1885
 
2150
1886
  # @param request: Request instance for UnfreezeCloudBaseRunServers.
@@ -144,26 +144,6 @@ module TencentCloud
144
144
  end
145
145
  end
146
146
 
147
- # 网关服务信息
148
- class BackendServiceInfo < TencentCloud::Common::AbstractModel
149
- # @param ServiceName: 服务名称
150
- # @type ServiceName: String
151
- # @param Status: 服务状态
152
- # @type Status: String
153
-
154
- attr_accessor :ServiceName, :Status
155
-
156
- def initialize(servicename=nil, status=nil)
157
- @ServiceName = servicename
158
- @Status = status
159
- end
160
-
161
- def deserialize(params)
162
- @ServiceName = params['ServiceName']
163
- @Status = params['Status']
164
- end
165
- end
166
-
167
147
  # 封禁配置
168
148
  class BanConfig < TencentCloud::Common::AbstractModel
169
149
  # @param IpWhiteList: ip白名单,支持ipv4、ipv6,支持CIDR
@@ -2022,62 +2002,6 @@ module TencentCloud
2022
2002
  end
2023
2003
  end
2024
2004
 
2025
- # CreateStandaloneGateway请求参数结构体
2026
- class CreateStandaloneGatewayRequest < TencentCloud::Common::AbstractModel
2027
- # @param EnvId: 环境ID
2028
- # @type EnvId: String
2029
- # @param GatewayAlias: 网关名
2030
- # @type GatewayAlias: String
2031
- # @param VpcId: 私有网络ID
2032
- # @type VpcId: String
2033
- # @param SubnetIds: 子网ID
2034
- # @type SubnetIds: Array
2035
- # @param GatewayDesc: 网关描述
2036
- # @type GatewayDesc: String
2037
- # @param PackageVersion: 网关套餐版本
2038
- # @type PackageVersion: String
2039
-
2040
- attr_accessor :EnvId, :GatewayAlias, :VpcId, :SubnetIds, :GatewayDesc, :PackageVersion
2041
-
2042
- def initialize(envid=nil, gatewayalias=nil, vpcid=nil, subnetids=nil, gatewaydesc=nil, packageversion=nil)
2043
- @EnvId = envid
2044
- @GatewayAlias = gatewayalias
2045
- @VpcId = vpcid
2046
- @SubnetIds = subnetids
2047
- @GatewayDesc = gatewaydesc
2048
- @PackageVersion = packageversion
2049
- end
2050
-
2051
- def deserialize(params)
2052
- @EnvId = params['EnvId']
2053
- @GatewayAlias = params['GatewayAlias']
2054
- @VpcId = params['VpcId']
2055
- @SubnetIds = params['SubnetIds']
2056
- @GatewayDesc = params['GatewayDesc']
2057
- @PackageVersion = params['PackageVersion']
2058
- end
2059
- end
2060
-
2061
- # CreateStandaloneGateway返回参数结构体
2062
- class CreateStandaloneGatewayResponse < TencentCloud::Common::AbstractModel
2063
- # @param GatewayName: 网关名称
2064
- # @type GatewayName: String
2065
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2066
- # @type RequestId: String
2067
-
2068
- attr_accessor :GatewayName, :RequestId
2069
-
2070
- def initialize(gatewayname=nil, requestid=nil)
2071
- @GatewayName = gatewayname
2072
- @RequestId = requestid
2073
- end
2074
-
2075
- def deserialize(params)
2076
- @GatewayName = params['GatewayName']
2077
- @RequestId = params['RequestId']
2078
- end
2079
- end
2080
-
2081
2005
  # CreateStaticStore请求参数结构体
2082
2006
  class CreateStaticStoreRequest < TencentCloud::Common::AbstractModel
2083
2007
  # @param EnvId: 环境ID
@@ -2458,42 +2382,6 @@ module TencentCloud
2458
2382
  end
2459
2383
  end
2460
2384
 
2461
- # DeleteEndUser请求参数结构体
2462
- class DeleteEndUserRequest < TencentCloud::Common::AbstractModel
2463
- # @param EnvId: 环境ID
2464
- # @type EnvId: String
2465
- # @param UserList: 用户列表,每一项都是uuid
2466
- # @type UserList: Array
2467
-
2468
- attr_accessor :EnvId, :UserList
2469
-
2470
- def initialize(envid=nil, userlist=nil)
2471
- @EnvId = envid
2472
- @UserList = userlist
2473
- end
2474
-
2475
- def deserialize(params)
2476
- @EnvId = params['EnvId']
2477
- @UserList = params['UserList']
2478
- end
2479
- end
2480
-
2481
- # DeleteEndUser返回参数结构体
2482
- class DeleteEndUserResponse < TencentCloud::Common::AbstractModel
2483
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2484
- # @type RequestId: String
2485
-
2486
- attr_accessor :RequestId
2487
-
2488
- def initialize(requestid=nil)
2489
- @RequestId = requestid
2490
- end
2491
-
2492
- def deserialize(params)
2493
- @RequestId = params['RequestId']
2494
- end
2495
- end
2496
-
2497
2385
  # DeleteGatewayVersion请求参数结构体
2498
2386
  class DeleteGatewayVersionRequest < TencentCloud::Common::AbstractModel
2499
2387
  # @param EnvId: 环境id
@@ -4497,161 +4385,6 @@ module TencentCloud
4497
4385
  end
4498
4386
  end
4499
4387
 
4500
- # DescribeEndUserLoginStatistic请求参数结构体
4501
- class DescribeEndUserLoginStatisticRequest < TencentCloud::Common::AbstractModel
4502
- # @param EnvId: 环境id
4503
- # @type EnvId: String
4504
- # @param Source: 终端用户来源
4505
- # <li> qcloud </li>
4506
- # <li>miniapp</li>
4507
- # @type Source: String
4508
-
4509
- attr_accessor :EnvId, :Source
4510
-
4511
- def initialize(envid=nil, source=nil)
4512
- @EnvId = envid
4513
- @Source = source
4514
- end
4515
-
4516
- def deserialize(params)
4517
- @EnvId = params['EnvId']
4518
- @Source = params['Source']
4519
- end
4520
- end
4521
-
4522
- # DescribeEndUserLoginStatistic返回参数结构体
4523
- class DescribeEndUserLoginStatisticResponse < TencentCloud::Common::AbstractModel
4524
- # @param LoginStatistics: 环境终端用户新增与登录统计
4525
- # @type LoginStatistics: Array
4526
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4527
- # @type RequestId: String
4528
-
4529
- attr_accessor :LoginStatistics, :RequestId
4530
-
4531
- def initialize(loginstatistics=nil, requestid=nil)
4532
- @LoginStatistics = loginstatistics
4533
- @RequestId = requestid
4534
- end
4535
-
4536
- def deserialize(params)
4537
- unless params['LoginStatistics'].nil?
4538
- @LoginStatistics = []
4539
- params['LoginStatistics'].each do |i|
4540
- loginstatistic_tmp = LoginStatistic.new
4541
- loginstatistic_tmp.deserialize(i)
4542
- @LoginStatistics << loginstatistic_tmp
4543
- end
4544
- end
4545
- @RequestId = params['RequestId']
4546
- end
4547
- end
4548
-
4549
- # DescribeEndUserStatistic请求参数结构体
4550
- class DescribeEndUserStatisticRequest < TencentCloud::Common::AbstractModel
4551
- # @param EnvId: 环境id
4552
- # @type EnvId: String
4553
-
4554
- attr_accessor :EnvId
4555
-
4556
- def initialize(envid=nil)
4557
- @EnvId = envid
4558
- end
4559
-
4560
- def deserialize(params)
4561
- @EnvId = params['EnvId']
4562
- end
4563
- end
4564
-
4565
- # DescribeEndUserStatistic返回参数结构体
4566
- class DescribeEndUserStatisticResponse < TencentCloud::Common::AbstractModel
4567
- # @param PlatformStatistics: 终端用户各平台统计
4568
- # @type PlatformStatistics: Array
4569
- # @param TotalCount: 终端用户总数
4570
- # @type TotalCount: Integer
4571
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4572
- # @type RequestId: String
4573
-
4574
- attr_accessor :PlatformStatistics, :TotalCount, :RequestId
4575
-
4576
- def initialize(platformstatistics=nil, totalcount=nil, requestid=nil)
4577
- @PlatformStatistics = platformstatistics
4578
- @TotalCount = totalcount
4579
- @RequestId = requestid
4580
- end
4581
-
4582
- def deserialize(params)
4583
- unless params['PlatformStatistics'].nil?
4584
- @PlatformStatistics = []
4585
- params['PlatformStatistics'].each do |i|
4586
- platformstatistic_tmp = PlatformStatistic.new
4587
- platformstatistic_tmp.deserialize(i)
4588
- @PlatformStatistics << platformstatistic_tmp
4589
- end
4590
- end
4591
- @TotalCount = params['TotalCount']
4592
- @RequestId = params['RequestId']
4593
- end
4594
- end
4595
-
4596
- # DescribeEndUsers请求参数结构体
4597
- class DescribeEndUsersRequest < TencentCloud::Common::AbstractModel
4598
- # @param EnvId: 开发者的环境ID
4599
- # @type EnvId: String
4600
- # @param Offset: 可选参数,偏移量,默认 0
4601
- # @type Offset: Integer
4602
- # @param Limit: 可选参数,拉取数量,默认 20
4603
- # @type Limit: Integer
4604
- # @param UUIds: 按照 uuid 列表过滤,最大个数为100
4605
- # @type UUIds: Array
4606
-
4607
- attr_accessor :EnvId, :Offset, :Limit, :UUIds
4608
-
4609
- def initialize(envid=nil, offset=nil, limit=nil, uuids=nil)
4610
- @EnvId = envid
4611
- @Offset = offset
4612
- @Limit = limit
4613
- @UUIds = uuids
4614
- end
4615
-
4616
- def deserialize(params)
4617
- @EnvId = params['EnvId']
4618
- @Offset = params['Offset']
4619
- @Limit = params['Limit']
4620
- @UUIds = params['UUIds']
4621
- end
4622
- end
4623
-
4624
- # DescribeEndUsers返回参数结构体
4625
- class DescribeEndUsersResponse < TencentCloud::Common::AbstractModel
4626
- # @param Total: 用户总数
4627
- # @type Total: Integer
4628
- # @param Users: 用户列表
4629
- # @type Users: Array
4630
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4631
- # @type RequestId: String
4632
-
4633
- attr_accessor :Total, :Users, :RequestId
4634
-
4635
- def initialize(total=nil, users=nil, requestid=nil)
4636
- @Total = total
4637
- @Users = users
4638
- @RequestId = requestid
4639
- end
4640
-
4641
- def deserialize(params)
4642
- @Total = params['Total']
4643
- unless params['Users'].nil?
4644
- @Users = []
4645
- params['Users'].each do |i|
4646
- enduserinfo_tmp = EndUserInfo.new
4647
- enduserinfo_tmp.deserialize(i)
4648
- @Users << enduserinfo_tmp
4649
- end
4650
- end
4651
- @RequestId = params['RequestId']
4652
- end
4653
- end
4654
-
4655
4388
  # DescribeEnvDealRegion请求参数结构体
4656
4389
  class DescribeEnvDealRegionRequest < TencentCloud::Common::AbstractModel
4657
4390
  # @param EnvId: 环境ID
@@ -5609,112 +5342,6 @@ module TencentCloud
5609
5342
  end
5610
5343
  end
5611
5344
 
5612
- # DescribeStandaloneGatewayPackage请求参数结构体
5613
- class DescribeStandaloneGatewayPackageRequest < TencentCloud::Common::AbstractModel
5614
- # @param EnvId: 环境ID
5615
- # @type EnvId: String
5616
- # @param PackageVersion: 套餐版本,包含starter、basic、advanced、enterprise
5617
- # @type PackageVersion: String
5618
-
5619
- attr_accessor :EnvId, :PackageVersion
5620
-
5621
- def initialize(envid=nil, packageversion=nil)
5622
- @EnvId = envid
5623
- @PackageVersion = packageversion
5624
- end
5625
-
5626
- def deserialize(params)
5627
- @EnvId = params['EnvId']
5628
- @PackageVersion = params['PackageVersion']
5629
- end
5630
- end
5631
-
5632
- # DescribeStandaloneGatewayPackage返回参数结构体
5633
- class DescribeStandaloneGatewayPackageResponse < TencentCloud::Common::AbstractModel
5634
- # @param Total: 总数
5635
- # @type Total: Integer
5636
- # @param StandaloneGatewayPackageList: 套餐详情
5637
- # @type StandaloneGatewayPackageList: Array
5638
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5639
- # @type RequestId: String
5640
-
5641
- attr_accessor :Total, :StandaloneGatewayPackageList, :RequestId
5642
-
5643
- def initialize(total=nil, standalonegatewaypackagelist=nil, requestid=nil)
5644
- @Total = total
5645
- @StandaloneGatewayPackageList = standalonegatewaypackagelist
5646
- @RequestId = requestid
5647
- end
5648
-
5649
- def deserialize(params)
5650
- @Total = params['Total']
5651
- unless params['StandaloneGatewayPackageList'].nil?
5652
- @StandaloneGatewayPackageList = []
5653
- params['StandaloneGatewayPackageList'].each do |i|
5654
- standalonegatewaypackageinfo_tmp = StandaloneGatewayPackageInfo.new
5655
- standalonegatewaypackageinfo_tmp.deserialize(i)
5656
- @StandaloneGatewayPackageList << standalonegatewaypackageinfo_tmp
5657
- end
5658
- end
5659
- @RequestId = params['RequestId']
5660
- end
5661
- end
5662
-
5663
- # DescribeStandaloneGateway请求参数结构体
5664
- class DescribeStandaloneGatewayRequest < TencentCloud::Common::AbstractModel
5665
- # @param EnvId: 环境ID
5666
- # @type EnvId: String
5667
- # @param GatewayName: 网关名称
5668
- # @type GatewayName: String
5669
- # @param GatewayAlias: 网关别名
5670
- # @type GatewayAlias: String
5671
-
5672
- attr_accessor :EnvId, :GatewayName, :GatewayAlias
5673
-
5674
- def initialize(envid=nil, gatewayname=nil, gatewayalias=nil)
5675
- @EnvId = envid
5676
- @GatewayName = gatewayname
5677
- @GatewayAlias = gatewayalias
5678
- end
5679
-
5680
- def deserialize(params)
5681
- @EnvId = params['EnvId']
5682
- @GatewayName = params['GatewayName']
5683
- @GatewayAlias = params['GatewayAlias']
5684
- end
5685
- end
5686
-
5687
- # DescribeStandaloneGateway返回参数结构体
5688
- class DescribeStandaloneGatewayResponse < TencentCloud::Common::AbstractModel
5689
- # @param StandaloneGatewayList: 独立网关信息列表
5690
- # @type StandaloneGatewayList: Array
5691
- # @param Total: 总数
5692
- # @type Total: Integer
5693
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5694
- # @type RequestId: String
5695
-
5696
- attr_accessor :StandaloneGatewayList, :Total, :RequestId
5697
-
5698
- def initialize(standalonegatewaylist=nil, total=nil, requestid=nil)
5699
- @StandaloneGatewayList = standalonegatewaylist
5700
- @Total = total
5701
- @RequestId = requestid
5702
- end
5703
-
5704
- def deserialize(params)
5705
- unless params['StandaloneGatewayList'].nil?
5706
- @StandaloneGatewayList = []
5707
- params['StandaloneGatewayList'].each do |i|
5708
- standalonegatewayinfo_tmp = StandaloneGatewayInfo.new
5709
- standalonegatewayinfo_tmp.deserialize(i)
5710
- @StandaloneGatewayList << standalonegatewayinfo_tmp
5711
- end
5712
- end
5713
- @Total = params['Total']
5714
- @RequestId = params['RequestId']
5715
- end
5716
- end
5717
-
5718
5345
  # DescribeUserActivityInfo请求参数结构体
5719
5346
  class DescribeUserActivityInfoRequest < TencentCloud::Common::AbstractModel
5720
5347
  # @param ActivityId: 活动id
@@ -6028,50 +5655,6 @@ module TencentCloud
6028
5655
  end
6029
5656
  end
6030
5657
 
6031
- # DestroyStandaloneGateway请求参数结构体
6032
- class DestroyStandaloneGatewayRequest < TencentCloud::Common::AbstractModel
6033
- # @param EnvId: 环境ID
6034
- # @type EnvId: String
6035
- # @param GatewayName: 网名名称
6036
- # @type GatewayName: String
6037
- # @param IsForce: 是否强制释放
6038
- # @type IsForce: Boolean
6039
-
6040
- attr_accessor :EnvId, :GatewayName, :IsForce
6041
-
6042
- def initialize(envid=nil, gatewayname=nil, isforce=nil)
6043
- @EnvId = envid
6044
- @GatewayName = gatewayname
6045
- @IsForce = isforce
6046
- end
6047
-
6048
- def deserialize(params)
6049
- @EnvId = params['EnvId']
6050
- @GatewayName = params['GatewayName']
6051
- @IsForce = params['IsForce']
6052
- end
6053
- end
6054
-
6055
- # DestroyStandaloneGateway返回参数结构体
6056
- class DestroyStandaloneGatewayResponse < TencentCloud::Common::AbstractModel
6057
- # @param Status: 删除独立网关状态
6058
- # @type Status: String
6059
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6060
- # @type RequestId: String
6061
-
6062
- attr_accessor :Status, :RequestId
6063
-
6064
- def initialize(status=nil, requestid=nil)
6065
- @Status = status
6066
- @RequestId = requestid
6067
- end
6068
-
6069
- def deserialize(params)
6070
- @Status = params['Status']
6071
- @RequestId = params['RequestId']
6072
- end
6073
- end
6074
-
6075
5658
  # DestroyStaticStore请求参数结构体
6076
5659
  class DestroyStaticStoreRequest < TencentCloud::Common::AbstractModel
6077
5660
  # @param EnvId: 环境ID
@@ -6156,74 +5739,6 @@ module TencentCloud
6156
5739
  end
6157
5740
  end
6158
5741
 
6159
- # 终端用户信息
6160
- class EndUserInfo < TencentCloud::Common::AbstractModel
6161
- # @param UUId: 用户唯一ID
6162
- # @type UUId: String
6163
- # @param WXOpenId: 微信ID
6164
- # @type WXOpenId: String
6165
- # @param QQOpenId: qq ID
6166
- # @type QQOpenId: String
6167
- # @param Phone: 手机号
6168
- # @type Phone: String
6169
- # @param Email: 邮箱
6170
- # @type Email: String
6171
- # @param NickName: 昵称
6172
- # @type NickName: String
6173
- # @param Gender: 性别
6174
- # @type Gender: String
6175
- # @param AvatarUrl: 头像地址
6176
- # @type AvatarUrl: String
6177
- # @param UpdateTime: 更新时间
6178
- # @type UpdateTime: String
6179
- # @param CreateTime: 创建时间
6180
- # @type CreateTime: String
6181
- # @param IsAnonymous: 是否为匿名用户
6182
- # @type IsAnonymous: Boolean
6183
- # @param IsDisabled: 是否禁用账户
6184
- # @type IsDisabled: Boolean
6185
- # @param HasPassword: 是否设置过密码
6186
- # @type HasPassword: Boolean
6187
- # @param UserName: 用户名
6188
- # @type UserName: String
6189
-
6190
- attr_accessor :UUId, :WXOpenId, :QQOpenId, :Phone, :Email, :NickName, :Gender, :AvatarUrl, :UpdateTime, :CreateTime, :IsAnonymous, :IsDisabled, :HasPassword, :UserName
6191
-
6192
- def initialize(uuid=nil, wxopenid=nil, qqopenid=nil, phone=nil, email=nil, nickname=nil, gender=nil, avatarurl=nil, updatetime=nil, createtime=nil, isanonymous=nil, isdisabled=nil, haspassword=nil, username=nil)
6193
- @UUId = uuid
6194
- @WXOpenId = wxopenid
6195
- @QQOpenId = qqopenid
6196
- @Phone = phone
6197
- @Email = email
6198
- @NickName = nickname
6199
- @Gender = gender
6200
- @AvatarUrl = avatarurl
6201
- @UpdateTime = updatetime
6202
- @CreateTime = createtime
6203
- @IsAnonymous = isanonymous
6204
- @IsDisabled = isdisabled
6205
- @HasPassword = haspassword
6206
- @UserName = username
6207
- end
6208
-
6209
- def deserialize(params)
6210
- @UUId = params['UUId']
6211
- @WXOpenId = params['WXOpenId']
6212
- @QQOpenId = params['QQOpenId']
6213
- @Phone = params['Phone']
6214
- @Email = params['Email']
6215
- @NickName = params['NickName']
6216
- @Gender = params['Gender']
6217
- @AvatarUrl = params['AvatarUrl']
6218
- @UpdateTime = params['UpdateTime']
6219
- @CreateTime = params['CreateTime']
6220
- @IsAnonymous = params['IsAnonymous']
6221
- @IsDisabled = params['IsDisabled']
6222
- @HasPassword = params['HasPassword']
6223
- @UserName = params['UserName']
6224
- end
6225
- end
6226
-
6227
5742
  # 环境计费信息
6228
5743
  class EnvBillingInfoItem < TencentCloud::Common::AbstractModel
6229
5744
  # @param EnvId: 环境ID
@@ -7139,34 +6654,6 @@ module TencentCloud
7139
6654
  end
7140
6655
  end
7141
6656
 
7142
- # 终端用户登录新增统计
7143
- class LoginStatistic < TencentCloud::Common::AbstractModel
7144
- # @param StatisticalType: 统计类型 新增NEWUSER 和登录 LOGIN
7145
- # @type StatisticalType: String
7146
- # @param StatisticalCycle: 统计周期:日DAY,周WEEK,月MONTH
7147
- # @type StatisticalCycle: String
7148
- # @param Count: 统计总量
7149
- # @type Count: Integer
7150
- # @param UpdateTime: 更新时间
7151
- # @type UpdateTime: String
7152
-
7153
- attr_accessor :StatisticalType, :StatisticalCycle, :Count, :UpdateTime
7154
-
7155
- def initialize(statisticaltype=nil, statisticalcycle=nil, count=nil, updatetime=nil)
7156
- @StatisticalType = statisticaltype
7157
- @StatisticalCycle = statisticalcycle
7158
- @Count = count
7159
- @UpdateTime = updatetime
7160
- end
7161
-
7162
- def deserialize(params)
7163
- @StatisticalType = params['StatisticalType']
7164
- @StatisticalCycle = params['StatisticalCycle']
7165
- @Count = params['Count']
7166
- @UpdateTime = params['UpdateTime']
7167
- end
7168
- end
7169
-
7170
6657
  # ModifyCloudBaseRunServerFlowConf请求参数结构体
7171
6658
  class ModifyCloudBaseRunServerFlowConfRequest < TencentCloud::Common::AbstractModel
7172
6659
  # @param EnvId: 环境ID
@@ -7386,48 +6873,6 @@ module TencentCloud
7386
6873
  end
7387
6874
  end
7388
6875
 
7389
- # ModifyEndUser请求参数结构体
7390
- class ModifyEndUserRequest < TencentCloud::Common::AbstractModel
7391
- # @param EnvId: 环境ID
7392
- # @type EnvId: String
7393
- # @param UUId: C端用户端的唯一ID
7394
- # @type UUId: String
7395
- # @param Status: 账号的状态
7396
- # <li>ENABLE</li>
7397
- # <li>DISABLE</li>
7398
- # @type Status: String
7399
-
7400
- attr_accessor :EnvId, :UUId, :Status
7401
-
7402
- def initialize(envid=nil, uuid=nil, status=nil)
7403
- @EnvId = envid
7404
- @UUId = uuid
7405
- @Status = status
7406
- end
7407
-
7408
- def deserialize(params)
7409
- @EnvId = params['EnvId']
7410
- @UUId = params['UUId']
7411
- @Status = params['Status']
7412
- end
7413
- end
7414
-
7415
- # ModifyEndUser返回参数结构体
7416
- class ModifyEndUserResponse < TencentCloud::Common::AbstractModel
7417
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7418
- # @type RequestId: String
7419
-
7420
- attr_accessor :RequestId
7421
-
7422
- def initialize(requestid=nil)
7423
- @RequestId = requestid
7424
- end
7425
-
7426
- def deserialize(params)
7427
- @RequestId = params['RequestId']
7428
- end
7429
- end
7430
-
7431
6876
  # ModifyEnv请求参数结构体
7432
6877
  class ModifyEnvRequest < TencentCloud::Common::AbstractModel
7433
6878
  # @param EnvId: 环境ID
@@ -7685,30 +7130,6 @@ module TencentCloud
7685
7130
  end
7686
7131
  end
7687
7132
 
7688
- # 终端用户平台统计信息
7689
- class PlatformStatistic < TencentCloud::Common::AbstractModel
7690
- # @param Platform: 终端用户从属平台
7691
- # @type Platform: String
7692
- # @param Count: 平台终端用户数
7693
- # @type Count: Integer
7694
- # @param UpdateTime: 更新时间
7695
- # @type UpdateTime: String
7696
-
7697
- attr_accessor :Platform, :Count, :UpdateTime
7698
-
7699
- def initialize(platform=nil, count=nil, updatetime=nil)
7700
- @Platform = platform
7701
- @Count = count
7702
- @UpdateTime = updatetime
7703
- end
7704
-
7705
- def deserialize(params)
7706
- @Platform = params['Platform']
7707
- @Count = params['Count']
7708
- @UpdateTime = params['UpdateTime']
7709
- end
7710
- end
7711
-
7712
7133
  # 后付费计费详情
7713
7134
  class PostPaidEnvDeductInfo < TencentCloud::Common::AbstractModel
7714
7135
  # @param ResourceType: 资源方
@@ -8183,93 +7604,6 @@ module TencentCloud
8183
7604
  end
8184
7605
  end
8185
7606
 
8186
- # 独立网关信息
8187
- class StandaloneGatewayInfo < TencentCloud::Common::AbstractModel
8188
- # @param GatewayName: 独立网关名称
8189
- # @type GatewayName: String
8190
- # @param CPU: CPU核心数
8191
- # @type CPU: Float
8192
- # @param Mem: 内存大小,单位MB
8193
- # @type Mem: Integer
8194
- # @param PackageVersion: 套餐包版本名称
8195
- # @type PackageVersion: String
8196
- # @param GatewayAlias: 网关别名
8197
- # @type GatewayAlias: String
8198
- # @param VpcId: 私有网络ID
8199
- # @type VpcId: String
8200
- # @param SubnetIds: 子网ID列表
8201
- # @type SubnetIds: Array
8202
- # @param GatewayDesc: 网关描述
8203
- # @type GatewayDesc: String
8204
- # @param GateWayStatus: 网关状态
8205
- # @type GateWayStatus: String
8206
- # @param ServiceInfo: 服务信息
8207
- # @type ServiceInfo: :class:`Tencentcloud::Tcb.v20180608.models.BackendServiceInfo`
8208
- # @param PublicClbIp: 公网CLBIP
8209
- # @type PublicClbIp: String
8210
- # @param InternalClbIp: 内网CLBIP
8211
- # @type InternalClbIp: String
8212
-
8213
- attr_accessor :GatewayName, :CPU, :Mem, :PackageVersion, :GatewayAlias, :VpcId, :SubnetIds, :GatewayDesc, :GateWayStatus, :ServiceInfo, :PublicClbIp, :InternalClbIp
8214
-
8215
- def initialize(gatewayname=nil, cpu=nil, mem=nil, packageversion=nil, gatewayalias=nil, vpcid=nil, subnetids=nil, gatewaydesc=nil, gatewaystatus=nil, serviceinfo=nil, publicclbip=nil, internalclbip=nil)
8216
- @GatewayName = gatewayname
8217
- @CPU = cpu
8218
- @Mem = mem
8219
- @PackageVersion = packageversion
8220
- @GatewayAlias = gatewayalias
8221
- @VpcId = vpcid
8222
- @SubnetIds = subnetids
8223
- @GatewayDesc = gatewaydesc
8224
- @GateWayStatus = gatewaystatus
8225
- @ServiceInfo = serviceinfo
8226
- @PublicClbIp = publicclbip
8227
- @InternalClbIp = internalclbip
8228
- end
8229
-
8230
- def deserialize(params)
8231
- @GatewayName = params['GatewayName']
8232
- @CPU = params['CPU']
8233
- @Mem = params['Mem']
8234
- @PackageVersion = params['PackageVersion']
8235
- @GatewayAlias = params['GatewayAlias']
8236
- @VpcId = params['VpcId']
8237
- @SubnetIds = params['SubnetIds']
8238
- @GatewayDesc = params['GatewayDesc']
8239
- @GateWayStatus = params['GateWayStatus']
8240
- unless params['ServiceInfo'].nil?
8241
- @ServiceInfo = BackendServiceInfo.new
8242
- @ServiceInfo.deserialize(params['ServiceInfo'])
8243
- end
8244
- @PublicClbIp = params['PublicClbIp']
8245
- @InternalClbIp = params['InternalClbIp']
8246
- end
8247
- end
8248
-
8249
- # 小租户网关套餐配置
8250
- class StandaloneGatewayPackageInfo < TencentCloud::Common::AbstractModel
8251
- # @param CPU: CPU核心数
8252
- # @type CPU: Float
8253
- # @param Mem: 内存大小,单位MB
8254
- # @type Mem: Integer
8255
- # @param PackageVersion: 套餐包版本名称
8256
- # @type PackageVersion: String
8257
-
8258
- attr_accessor :CPU, :Mem, :PackageVersion
8259
-
8260
- def initialize(cpu=nil, mem=nil, packageversion=nil)
8261
- @CPU = cpu
8262
- @Mem = mem
8263
- @PackageVersion = packageversion
8264
- end
8265
-
8266
- def deserialize(params)
8267
- @CPU = params['CPU']
8268
- @Mem = params['Mem']
8269
- @PackageVersion = params['PackageVersion']
8270
- end
8271
- end
8272
-
8273
7607
  # 静态CDN资源信息
8274
7608
  class StaticStorageInfo < TencentCloud::Common::AbstractModel
8275
7609
  # @param StaticDomain: 静态CDN域名
@@ -8375,94 +7709,6 @@ module TencentCloud
8375
7709
  end
8376
7710
  end
8377
7711
 
8378
- # TurnOffStandaloneGateway请求参数结构体
8379
- class TurnOffStandaloneGatewayRequest < TencentCloud::Common::AbstractModel
8380
- # @param EnvId: 环境ID
8381
- # @type EnvId: String
8382
- # @param GatewayName: 网关名称
8383
- # @type GatewayName: String
8384
- # @param ServiceNameList: 服务名称列表
8385
- # @type ServiceNameList: Array
8386
-
8387
- attr_accessor :EnvId, :GatewayName, :ServiceNameList
8388
-
8389
- def initialize(envid=nil, gatewayname=nil, servicenamelist=nil)
8390
- @EnvId = envid
8391
- @GatewayName = gatewayname
8392
- @ServiceNameList = servicenamelist
8393
- end
8394
-
8395
- def deserialize(params)
8396
- @EnvId = params['EnvId']
8397
- @GatewayName = params['GatewayName']
8398
- @ServiceNameList = params['ServiceNameList']
8399
- end
8400
- end
8401
-
8402
- # TurnOffStandaloneGateway返回参数结构体
8403
- class TurnOffStandaloneGatewayResponse < TencentCloud::Common::AbstractModel
8404
- # @param Status: 关闭独立网关状态
8405
- # @type Status: String
8406
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8407
- # @type RequestId: String
8408
-
8409
- attr_accessor :Status, :RequestId
8410
-
8411
- def initialize(status=nil, requestid=nil)
8412
- @Status = status
8413
- @RequestId = requestid
8414
- end
8415
-
8416
- def deserialize(params)
8417
- @Status = params['Status']
8418
- @RequestId = params['RequestId']
8419
- end
8420
- end
8421
-
8422
- # TurnOnStandaloneGateway请求参数结构体
8423
- class TurnOnStandaloneGatewayRequest < TencentCloud::Common::AbstractModel
8424
- # @param EnvId: 环境ID
8425
- # @type EnvId: String
8426
- # @param GatewayName: 网关名称
8427
- # @type GatewayName: String
8428
- # @param ServiceNameList: 服务名称列表
8429
- # @type ServiceNameList: Array
8430
-
8431
- attr_accessor :EnvId, :GatewayName, :ServiceNameList
8432
-
8433
- def initialize(envid=nil, gatewayname=nil, servicenamelist=nil)
8434
- @EnvId = envid
8435
- @GatewayName = gatewayname
8436
- @ServiceNameList = servicenamelist
8437
- end
8438
-
8439
- def deserialize(params)
8440
- @EnvId = params['EnvId']
8441
- @GatewayName = params['GatewayName']
8442
- @ServiceNameList = params['ServiceNameList']
8443
- end
8444
- end
8445
-
8446
- # TurnOnStandaloneGateway返回参数结构体
8447
- class TurnOnStandaloneGatewayResponse < TencentCloud::Common::AbstractModel
8448
- # @param Status: 小租户网关开启状态
8449
- # @type Status: String
8450
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8451
- # @type RequestId: String
8452
-
8453
- attr_accessor :Status, :RequestId
8454
-
8455
- def initialize(status=nil, requestid=nil)
8456
- @Status = status
8457
- @RequestId = requestid
8458
- end
8459
-
8460
- def deserialize(params)
8461
- @Status = params['Status']
8462
- @RequestId = params['RequestId']
8463
- end
8464
- end
8465
-
8466
7712
  # UnfreezeCloudBaseRunServers请求参数结构体
8467
7713
  class UnfreezeCloudBaseRunServersRequest < TencentCloud::Common::AbstractModel
8468
7714
  # @param EnvId: 环境ID
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1131
4
+ version: 3.0.1182
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-27 00:00:00.000000000 Z
11
+ date: 2025-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20180608/client.rb
37
- - lib/v20180608/models.rb
38
36
  - lib/tencentcloud-sdk-tcb.rb
37
+ - lib/v20180608/models.rb
38
+ - lib/v20180608/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: