tencentcloud-sdk-tcb 3.0.1182 → 3.0.1189
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180608/client.rb +0 -288
- data/lib/v20180608/models.rb +21 -953
- metadata +4 -4
data/lib/v20180608/models.rb
CHANGED
|
@@ -21,35 +21,47 @@ module TencentCloud
|
|
|
21
21
|
class ActivityRecordItem < TencentCloud::Common::AbstractModel
|
|
22
22
|
# @param Uin: 用户uin
|
|
23
23
|
# @type Uin: String
|
|
24
|
+
# @param EnvId: 环境ID
|
|
25
|
+
# @type EnvId: String
|
|
24
26
|
# @param ActivityId: 活动id
|
|
25
27
|
# @type ActivityId: Integer
|
|
28
|
+
# @param ActivityName: 活动名称(唯一英文标识)
|
|
29
|
+
# @type ActivityName: String
|
|
26
30
|
# @param Status: 自定义状态码
|
|
27
31
|
# @type Status: Integer
|
|
28
32
|
# @param SubStatus: 自定义子状态码
|
|
29
33
|
# @type SubStatus: String
|
|
30
34
|
# @param SubStatusInt: 整型子状态码
|
|
31
35
|
# @type SubStatusInt: Integer
|
|
32
|
-
# @param IsDeleted:
|
|
36
|
+
# @param IsDeleted: 是否已删除
|
|
33
37
|
# @type IsDeleted: Boolean
|
|
38
|
+
# @param CreateTime: 活动参与时间
|
|
39
|
+
# @type CreateTime: String
|
|
34
40
|
|
|
35
|
-
attr_accessor :Uin, :ActivityId, :Status, :SubStatus, :SubStatusInt, :IsDeleted
|
|
41
|
+
attr_accessor :Uin, :EnvId, :ActivityId, :ActivityName, :Status, :SubStatus, :SubStatusInt, :IsDeleted, :CreateTime
|
|
36
42
|
|
|
37
|
-
def initialize(uin=nil, activityid=nil, status=nil, substatus=nil, substatusint=nil, isdeleted=nil)
|
|
43
|
+
def initialize(uin=nil, envid=nil, activityid=nil, activityname=nil, status=nil, substatus=nil, substatusint=nil, isdeleted=nil, createtime=nil)
|
|
38
44
|
@Uin = uin
|
|
45
|
+
@EnvId = envid
|
|
39
46
|
@ActivityId = activityid
|
|
47
|
+
@ActivityName = activityname
|
|
40
48
|
@Status = status
|
|
41
49
|
@SubStatus = substatus
|
|
42
50
|
@SubStatusInt = substatusint
|
|
43
51
|
@IsDeleted = isdeleted
|
|
52
|
+
@CreateTime = createtime
|
|
44
53
|
end
|
|
45
54
|
|
|
46
55
|
def deserialize(params)
|
|
47
56
|
@Uin = params['Uin']
|
|
57
|
+
@EnvId = params['EnvId']
|
|
48
58
|
@ActivityId = params['ActivityId']
|
|
59
|
+
@ActivityName = params['ActivityName']
|
|
49
60
|
@Status = params['Status']
|
|
50
61
|
@SubStatus = params['SubStatus']
|
|
51
62
|
@SubStatusInt = params['SubStatusInt']
|
|
52
63
|
@IsDeleted = params['IsDeleted']
|
|
64
|
+
@CreateTime = params['CreateTime']
|
|
53
65
|
end
|
|
54
66
|
end
|
|
55
67
|
|
|
@@ -558,70 +570,6 @@ module TencentCloud
|
|
|
558
570
|
end
|
|
559
571
|
end
|
|
560
572
|
|
|
561
|
-
# 独立网关云托管服务配置信息
|
|
562
|
-
class CloudBaseRunForGatewayConf < TencentCloud::Common::AbstractModel
|
|
563
|
-
# @param IsZero: 是否缩容到0
|
|
564
|
-
# @type IsZero: Boolean
|
|
565
|
-
# @param Weight: 按百分比灰度的权重
|
|
566
|
-
# @type Weight: Integer
|
|
567
|
-
# @param GrayKey: 按请求/header参数的灰度Key
|
|
568
|
-
# @type GrayKey: String
|
|
569
|
-
# @param GrayValue: 按请求/header参数的灰度Value
|
|
570
|
-
# @type GrayValue: String
|
|
571
|
-
# @param IsDefault: 是否为默认版本(按请求/header参数)
|
|
572
|
-
# @type IsDefault: Boolean
|
|
573
|
-
# @param AccessType: 访问权限,对应二进制分多段,vpc内网|公网|oa
|
|
574
|
-
# @type AccessType: Integer
|
|
575
|
-
# @param URLs: 访问的URL(域名+路径)列表
|
|
576
|
-
# @type URLs: Array
|
|
577
|
-
# @param EnvId: 环境ID
|
|
578
|
-
# @type EnvId: String
|
|
579
|
-
# @param ServerName: 服务名称
|
|
580
|
-
# @type ServerName: String
|
|
581
|
-
# @param VersionName: 版本名称
|
|
582
|
-
# @type VersionName: String
|
|
583
|
-
# @param GrayType: 灰度类型:FLOW(权重), URL_PARAMS/HEAD_PARAMS
|
|
584
|
-
# @type GrayType: String
|
|
585
|
-
# @param LbAddr: CLB的IP:Port
|
|
586
|
-
# @type LbAddr: String
|
|
587
|
-
# @param ConfigType: 0:http访问服务配置信息, 1: 服务域名
|
|
588
|
-
# @type ConfigType: Integer
|
|
589
|
-
|
|
590
|
-
attr_accessor :IsZero, :Weight, :GrayKey, :GrayValue, :IsDefault, :AccessType, :URLs, :EnvId, :ServerName, :VersionName, :GrayType, :LbAddr, :ConfigType
|
|
591
|
-
|
|
592
|
-
def initialize(iszero=nil, weight=nil, graykey=nil, grayvalue=nil, isdefault=nil, accesstype=nil, urls=nil, envid=nil, servername=nil, versionname=nil, graytype=nil, lbaddr=nil, configtype=nil)
|
|
593
|
-
@IsZero = iszero
|
|
594
|
-
@Weight = weight
|
|
595
|
-
@GrayKey = graykey
|
|
596
|
-
@GrayValue = grayvalue
|
|
597
|
-
@IsDefault = isdefault
|
|
598
|
-
@AccessType = accesstype
|
|
599
|
-
@URLs = urls
|
|
600
|
-
@EnvId = envid
|
|
601
|
-
@ServerName = servername
|
|
602
|
-
@VersionName = versionname
|
|
603
|
-
@GrayType = graytype
|
|
604
|
-
@LbAddr = lbaddr
|
|
605
|
-
@ConfigType = configtype
|
|
606
|
-
end
|
|
607
|
-
|
|
608
|
-
def deserialize(params)
|
|
609
|
-
@IsZero = params['IsZero']
|
|
610
|
-
@Weight = params['Weight']
|
|
611
|
-
@GrayKey = params['GrayKey']
|
|
612
|
-
@GrayValue = params['GrayValue']
|
|
613
|
-
@IsDefault = params['IsDefault']
|
|
614
|
-
@AccessType = params['AccessType']
|
|
615
|
-
@URLs = params['URLs']
|
|
616
|
-
@EnvId = params['EnvId']
|
|
617
|
-
@ServerName = params['ServerName']
|
|
618
|
-
@VersionName = params['VersionName']
|
|
619
|
-
@GrayType = params['GrayType']
|
|
620
|
-
@LbAddr = params['LbAddr']
|
|
621
|
-
@ConfigType = params['ConfigType']
|
|
622
|
-
end
|
|
623
|
-
end
|
|
624
|
-
|
|
625
573
|
# CloudBaseRun 镜像信息
|
|
626
574
|
class CloudBaseRunImageInfo < TencentCloud::Common::AbstractModel
|
|
627
575
|
# @param RepositoryName: 镜像仓库名称
|
|
@@ -974,38 +922,6 @@ module TencentCloud
|
|
|
974
922
|
end
|
|
975
923
|
end
|
|
976
924
|
|
|
977
|
-
# pod信息
|
|
978
|
-
class CloudBaseRunVersionPod < TencentCloud::Common::AbstractModel
|
|
979
|
-
# @param Webshell: webshell链接
|
|
980
|
-
# @type Webshell: String
|
|
981
|
-
# @param PodId: pod name
|
|
982
|
-
# @type PodId: String
|
|
983
|
-
# @param PodIp: pod ip
|
|
984
|
-
# @type PodIp: String
|
|
985
|
-
# @param Status: 状态
|
|
986
|
-
# @type Status: String
|
|
987
|
-
# @param CreateTime: 创建时间
|
|
988
|
-
# @type CreateTime: String
|
|
989
|
-
|
|
990
|
-
attr_accessor :Webshell, :PodId, :PodIp, :Status, :CreateTime
|
|
991
|
-
|
|
992
|
-
def initialize(webshell=nil, podid=nil, podip=nil, status=nil, createtime=nil)
|
|
993
|
-
@Webshell = webshell
|
|
994
|
-
@PodId = podid
|
|
995
|
-
@PodIp = podip
|
|
996
|
-
@Status = status
|
|
997
|
-
@CreateTime = createtime
|
|
998
|
-
end
|
|
999
|
-
|
|
1000
|
-
def deserialize(params)
|
|
1001
|
-
@Webshell = params['Webshell']
|
|
1002
|
-
@PodId = params['PodId']
|
|
1003
|
-
@PodIp = params['PodIp']
|
|
1004
|
-
@Status = params['Status']
|
|
1005
|
-
@CreateTime = params['CreateTime']
|
|
1006
|
-
end
|
|
1007
|
-
end
|
|
1008
|
-
|
|
1009
925
|
# cfs挂载点
|
|
1010
926
|
class CloudBaseRunVolumeMount < TencentCloud::Common::AbstractModel
|
|
1011
927
|
# @param Name: 资源名
|
|
@@ -2042,130 +1958,6 @@ module TencentCloud
|
|
|
2042
1958
|
end
|
|
2043
1959
|
end
|
|
2044
1960
|
|
|
2045
|
-
# CreateWxCloudBaseRunEnv请求参数结构体
|
|
2046
|
-
class CreateWxCloudBaseRunEnvRequest < TencentCloud::Common::AbstractModel
|
|
2047
|
-
# @param WxAppId: wx应用Id
|
|
2048
|
-
# @type WxAppId: String
|
|
2049
|
-
# @param Alias: 环境别名,要以a-z开头,不能包含 a-z,0-9,- 以外的字符
|
|
2050
|
-
# @type Alias: String
|
|
2051
|
-
# @param FreeQuota: 用户享有的免费额度级别,目前只能为“basic”,不传该字段或该字段为空,标识不享受免费额度。
|
|
2052
|
-
# @type FreeQuota: String
|
|
2053
|
-
# @param Flag: 订单标记。建议使用方统一转大小写之后再判断。
|
|
2054
|
-
# QuickStart:快速启动来源
|
|
2055
|
-
# Activity:活动来源
|
|
2056
|
-
# @type Flag: String
|
|
2057
|
-
# @param VpcId: 私有网络Id
|
|
2058
|
-
# @type VpcId: String
|
|
2059
|
-
# @param SubNetIds: 子网列表
|
|
2060
|
-
# @type SubNetIds: Array
|
|
2061
|
-
# @param IsOpenCloudInvoke: 是否打开云调用
|
|
2062
|
-
# @type IsOpenCloudInvoke: Boolean
|
|
2063
|
-
# @param Source: 创建来源:wechat | cloud
|
|
2064
|
-
# @type Source: String
|
|
2065
|
-
# @param Channel: 渠道:wechat | cloud
|
|
2066
|
-
# @type Channel: String
|
|
2067
|
-
|
|
2068
|
-
attr_accessor :WxAppId, :Alias, :FreeQuota, :Flag, :VpcId, :SubNetIds, :IsOpenCloudInvoke, :Source, :Channel
|
|
2069
|
-
|
|
2070
|
-
def initialize(wxappid=nil, _alias=nil, freequota=nil, flag=nil, vpcid=nil, subnetids=nil, isopencloudinvoke=nil, source=nil, channel=nil)
|
|
2071
|
-
@WxAppId = wxappid
|
|
2072
|
-
@Alias = _alias
|
|
2073
|
-
@FreeQuota = freequota
|
|
2074
|
-
@Flag = flag
|
|
2075
|
-
@VpcId = vpcid
|
|
2076
|
-
@SubNetIds = subnetids
|
|
2077
|
-
@IsOpenCloudInvoke = isopencloudinvoke
|
|
2078
|
-
@Source = source
|
|
2079
|
-
@Channel = channel
|
|
2080
|
-
end
|
|
2081
|
-
|
|
2082
|
-
def deserialize(params)
|
|
2083
|
-
@WxAppId = params['WxAppId']
|
|
2084
|
-
@Alias = params['Alias']
|
|
2085
|
-
@FreeQuota = params['FreeQuota']
|
|
2086
|
-
@Flag = params['Flag']
|
|
2087
|
-
@VpcId = params['VpcId']
|
|
2088
|
-
@SubNetIds = params['SubNetIds']
|
|
2089
|
-
@IsOpenCloudInvoke = params['IsOpenCloudInvoke']
|
|
2090
|
-
@Source = params['Source']
|
|
2091
|
-
@Channel = params['Channel']
|
|
2092
|
-
end
|
|
2093
|
-
end
|
|
2094
|
-
|
|
2095
|
-
# CreateWxCloudBaseRunEnv返回参数结构体
|
|
2096
|
-
class CreateWxCloudBaseRunEnvResponse < TencentCloud::Common::AbstractModel
|
|
2097
|
-
# @param EnvId: 环境Id
|
|
2098
|
-
# @type EnvId: String
|
|
2099
|
-
# @param TranId: 后付费订单号
|
|
2100
|
-
# @type TranId: String
|
|
2101
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2102
|
-
# @type RequestId: String
|
|
2103
|
-
|
|
2104
|
-
attr_accessor :EnvId, :TranId, :RequestId
|
|
2105
|
-
|
|
2106
|
-
def initialize(envid=nil, tranid=nil, requestid=nil)
|
|
2107
|
-
@EnvId = envid
|
|
2108
|
-
@TranId = tranid
|
|
2109
|
-
@RequestId = requestid
|
|
2110
|
-
end
|
|
2111
|
-
|
|
2112
|
-
def deserialize(params)
|
|
2113
|
-
@EnvId = params['EnvId']
|
|
2114
|
-
@TranId = params['TranId']
|
|
2115
|
-
@RequestId = params['RequestId']
|
|
2116
|
-
end
|
|
2117
|
-
end
|
|
2118
|
-
|
|
2119
|
-
# CreateWxCloudBaseRunServerDBCluster请求参数结构体
|
|
2120
|
-
class CreateWxCloudBaseRunServerDBClusterRequest < TencentCloud::Common::AbstractModel
|
|
2121
|
-
# @param AccountPassword: 账户密码
|
|
2122
|
-
# @type AccountPassword: String
|
|
2123
|
-
# @param EnvId: 环境ID
|
|
2124
|
-
# @type EnvId: String
|
|
2125
|
-
# @param WxAppId: 微信appid
|
|
2126
|
-
# @type WxAppId: String
|
|
2127
|
-
# @param DbVersion: mysql内核版本,支持5.7,8.0
|
|
2128
|
-
# @type DbVersion: String
|
|
2129
|
-
# @param LowerCaseTableName: 0: 大小写敏感
|
|
2130
|
-
# 1: 非大小写敏感
|
|
2131
|
-
# 默认为0
|
|
2132
|
-
# @type LowerCaseTableName: String
|
|
2133
|
-
|
|
2134
|
-
attr_accessor :AccountPassword, :EnvId, :WxAppId, :DbVersion, :LowerCaseTableName
|
|
2135
|
-
|
|
2136
|
-
def initialize(accountpassword=nil, envid=nil, wxappid=nil, dbversion=nil, lowercasetablename=nil)
|
|
2137
|
-
@AccountPassword = accountpassword
|
|
2138
|
-
@EnvId = envid
|
|
2139
|
-
@WxAppId = wxappid
|
|
2140
|
-
@DbVersion = dbversion
|
|
2141
|
-
@LowerCaseTableName = lowercasetablename
|
|
2142
|
-
end
|
|
2143
|
-
|
|
2144
|
-
def deserialize(params)
|
|
2145
|
-
@AccountPassword = params['AccountPassword']
|
|
2146
|
-
@EnvId = params['EnvId']
|
|
2147
|
-
@WxAppId = params['WxAppId']
|
|
2148
|
-
@DbVersion = params['DbVersion']
|
|
2149
|
-
@LowerCaseTableName = params['LowerCaseTableName']
|
|
2150
|
-
end
|
|
2151
|
-
end
|
|
2152
|
-
|
|
2153
|
-
# CreateWxCloudBaseRunServerDBCluster返回参数结构体
|
|
2154
|
-
class CreateWxCloudBaseRunServerDBClusterResponse < TencentCloud::Common::AbstractModel
|
|
2155
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2156
|
-
# @type RequestId: String
|
|
2157
|
-
|
|
2158
|
-
attr_accessor :RequestId
|
|
2159
|
-
|
|
2160
|
-
def initialize(requestid=nil)
|
|
2161
|
-
@RequestId = requestid
|
|
2162
|
-
end
|
|
2163
|
-
|
|
2164
|
-
def deserialize(params)
|
|
2165
|
-
@RequestId = params['RequestId']
|
|
2166
|
-
end
|
|
2167
|
-
end
|
|
2168
|
-
|
|
2169
1961
|
# 安全网关自定义头部
|
|
2170
1962
|
class CustomHeader < TencentCloud::Common::AbstractModel
|
|
2171
1963
|
# @param RequestToAddList: 请求添加头部配置
|
|
@@ -3112,311 +2904,6 @@ module TencentCloud
|
|
|
3112
2904
|
end
|
|
3113
2905
|
end
|
|
3114
2906
|
|
|
3115
|
-
# DescribeCloudBaseRunAllVpcs请求参数结构体
|
|
3116
|
-
class DescribeCloudBaseRunAllVpcsRequest < TencentCloud::Common::AbstractModel
|
|
3117
|
-
# @param EnvId: 环境ID
|
|
3118
|
-
# @type EnvId: String
|
|
3119
|
-
|
|
3120
|
-
attr_accessor :EnvId
|
|
3121
|
-
|
|
3122
|
-
def initialize(envid=nil)
|
|
3123
|
-
@EnvId = envid
|
|
3124
|
-
end
|
|
3125
|
-
|
|
3126
|
-
def deserialize(params)
|
|
3127
|
-
@EnvId = params['EnvId']
|
|
3128
|
-
end
|
|
3129
|
-
end
|
|
3130
|
-
|
|
3131
|
-
# DescribeCloudBaseRunAllVpcs返回参数结构体
|
|
3132
|
-
class DescribeCloudBaseRunAllVpcsResponse < TencentCloud::Common::AbstractModel
|
|
3133
|
-
# @param Vpcs: 所有vpcid
|
|
3134
|
-
# @type Vpcs: Array
|
|
3135
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3136
|
-
# @type RequestId: String
|
|
3137
|
-
|
|
3138
|
-
attr_accessor :Vpcs, :RequestId
|
|
3139
|
-
|
|
3140
|
-
def initialize(vpcs=nil, requestid=nil)
|
|
3141
|
-
@Vpcs = vpcs
|
|
3142
|
-
@RequestId = requestid
|
|
3143
|
-
end
|
|
3144
|
-
|
|
3145
|
-
def deserialize(params)
|
|
3146
|
-
@Vpcs = params['Vpcs']
|
|
3147
|
-
@RequestId = params['RequestId']
|
|
3148
|
-
end
|
|
3149
|
-
end
|
|
3150
|
-
|
|
3151
|
-
# DescribeCloudBaseRunConfForGateWay请求参数结构体
|
|
3152
|
-
class DescribeCloudBaseRunConfForGateWayRequest < TencentCloud::Common::AbstractModel
|
|
3153
|
-
# @param EnvID: 环境ID
|
|
3154
|
-
# @type EnvID: String
|
|
3155
|
-
# @param VpcID: vpc信息
|
|
3156
|
-
# @type VpcID: String
|
|
3157
|
-
|
|
3158
|
-
attr_accessor :EnvID, :VpcID
|
|
3159
|
-
|
|
3160
|
-
def initialize(envid=nil, vpcid=nil)
|
|
3161
|
-
@EnvID = envid
|
|
3162
|
-
@VpcID = vpcid
|
|
3163
|
-
end
|
|
3164
|
-
|
|
3165
|
-
def deserialize(params)
|
|
3166
|
-
@EnvID = params['EnvID']
|
|
3167
|
-
@VpcID = params['VpcID']
|
|
3168
|
-
end
|
|
3169
|
-
end
|
|
3170
|
-
|
|
3171
|
-
# DescribeCloudBaseRunConfForGateWay返回参数结构体
|
|
3172
|
-
class DescribeCloudBaseRunConfForGateWayResponse < TencentCloud::Common::AbstractModel
|
|
3173
|
-
# @param LastUpTime: 最近更新时间
|
|
3174
|
-
# @type LastUpTime: String
|
|
3175
|
-
# @param Data: 配置信息
|
|
3176
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
3177
|
-
# @type Data: Array
|
|
3178
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3179
|
-
# @type RequestId: String
|
|
3180
|
-
|
|
3181
|
-
attr_accessor :LastUpTime, :Data, :RequestId
|
|
3182
|
-
|
|
3183
|
-
def initialize(lastuptime=nil, data=nil, requestid=nil)
|
|
3184
|
-
@LastUpTime = lastuptime
|
|
3185
|
-
@Data = data
|
|
3186
|
-
@RequestId = requestid
|
|
3187
|
-
end
|
|
3188
|
-
|
|
3189
|
-
def deserialize(params)
|
|
3190
|
-
@LastUpTime = params['LastUpTime']
|
|
3191
|
-
unless params['Data'].nil?
|
|
3192
|
-
@Data = []
|
|
3193
|
-
params['Data'].each do |i|
|
|
3194
|
-
cloudbaserunforgatewayconf_tmp = CloudBaseRunForGatewayConf.new
|
|
3195
|
-
cloudbaserunforgatewayconf_tmp.deserialize(i)
|
|
3196
|
-
@Data << cloudbaserunforgatewayconf_tmp
|
|
3197
|
-
end
|
|
3198
|
-
end
|
|
3199
|
-
@RequestId = params['RequestId']
|
|
3200
|
-
end
|
|
3201
|
-
end
|
|
3202
|
-
|
|
3203
|
-
# DescribeCloudBaseRunOneClickTaskExternal请求参数结构体
|
|
3204
|
-
class DescribeCloudBaseRunOneClickTaskExternalRequest < TencentCloud::Common::AbstractModel
|
|
3205
|
-
# @param ExternalId: 外部任务Id 最长64字节
|
|
3206
|
-
# @type ExternalId: String
|
|
3207
|
-
|
|
3208
|
-
attr_accessor :ExternalId
|
|
3209
|
-
|
|
3210
|
-
def initialize(externalid=nil)
|
|
3211
|
-
@ExternalId = externalid
|
|
3212
|
-
end
|
|
3213
|
-
|
|
3214
|
-
def deserialize(params)
|
|
3215
|
-
@ExternalId = params['ExternalId']
|
|
3216
|
-
end
|
|
3217
|
-
end
|
|
3218
|
-
|
|
3219
|
-
# DescribeCloudBaseRunOneClickTaskExternal返回参数结构体
|
|
3220
|
-
class DescribeCloudBaseRunOneClickTaskExternalResponse < TencentCloud::Common::AbstractModel
|
|
3221
|
-
# @param ExternalId: 外部任务Id
|
|
3222
|
-
# @type ExternalId: String
|
|
3223
|
-
# @param EnvId: 弃用
|
|
3224
|
-
# @type EnvId: String
|
|
3225
|
-
# @param UserUin: 用户uin
|
|
3226
|
-
# @type UserUin: String
|
|
3227
|
-
# @param ServerName: 服务名
|
|
3228
|
-
# @type ServerName: String
|
|
3229
|
-
# @param VersionName: 版本名
|
|
3230
|
-
# @type VersionName: String
|
|
3231
|
-
# @param CreateTime: 创建时间
|
|
3232
|
-
# @type CreateTime: String
|
|
3233
|
-
# @param Stage: 当前阶段
|
|
3234
|
-
# 微信云托管环境创建阶段:envStage
|
|
3235
|
-
# 存储资源创建阶段:storageStage
|
|
3236
|
-
# 服务创建阶段:serverStage
|
|
3237
|
-
# @type Stage: String
|
|
3238
|
-
# @param Status: 状态
|
|
3239
|
-
# running
|
|
3240
|
-
# stopped
|
|
3241
|
-
# failed
|
|
3242
|
-
# finished
|
|
3243
|
-
# @type Status: String
|
|
3244
|
-
# @param FailReason: 失败原因
|
|
3245
|
-
# @type FailReason: String
|
|
3246
|
-
# @param UserEnvId: 用户envId
|
|
3247
|
-
# @type UserEnvId: String
|
|
3248
|
-
# @param StartTime: 创建时间
|
|
3249
|
-
# @type StartTime: String
|
|
3250
|
-
# @param Steps: 步骤信息
|
|
3251
|
-
# @type Steps: Array
|
|
3252
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3253
|
-
# @type RequestId: String
|
|
3254
|
-
|
|
3255
|
-
attr_accessor :ExternalId, :EnvId, :UserUin, :ServerName, :VersionName, :CreateTime, :Stage, :Status, :FailReason, :UserEnvId, :StartTime, :Steps, :RequestId
|
|
3256
|
-
|
|
3257
|
-
def initialize(externalid=nil, envid=nil, useruin=nil, servername=nil, versionname=nil, createtime=nil, stage=nil, status=nil, failreason=nil, userenvid=nil, starttime=nil, steps=nil, requestid=nil)
|
|
3258
|
-
@ExternalId = externalid
|
|
3259
|
-
@EnvId = envid
|
|
3260
|
-
@UserUin = useruin
|
|
3261
|
-
@ServerName = servername
|
|
3262
|
-
@VersionName = versionname
|
|
3263
|
-
@CreateTime = createtime
|
|
3264
|
-
@Stage = stage
|
|
3265
|
-
@Status = status
|
|
3266
|
-
@FailReason = failreason
|
|
3267
|
-
@UserEnvId = userenvid
|
|
3268
|
-
@StartTime = starttime
|
|
3269
|
-
@Steps = steps
|
|
3270
|
-
@RequestId = requestid
|
|
3271
|
-
end
|
|
3272
|
-
|
|
3273
|
-
def deserialize(params)
|
|
3274
|
-
@ExternalId = params['ExternalId']
|
|
3275
|
-
@EnvId = params['EnvId']
|
|
3276
|
-
@UserUin = params['UserUin']
|
|
3277
|
-
@ServerName = params['ServerName']
|
|
3278
|
-
@VersionName = params['VersionName']
|
|
3279
|
-
@CreateTime = params['CreateTime']
|
|
3280
|
-
@Stage = params['Stage']
|
|
3281
|
-
@Status = params['Status']
|
|
3282
|
-
@FailReason = params['FailReason']
|
|
3283
|
-
@UserEnvId = params['UserEnvId']
|
|
3284
|
-
@StartTime = params['StartTime']
|
|
3285
|
-
unless params['Steps'].nil?
|
|
3286
|
-
@Steps = []
|
|
3287
|
-
params['Steps'].each do |i|
|
|
3288
|
-
oneclicktaskstepinfo_tmp = OneClickTaskStepInfo.new
|
|
3289
|
-
oneclicktaskstepinfo_tmp.deserialize(i)
|
|
3290
|
-
@Steps << oneclicktaskstepinfo_tmp
|
|
3291
|
-
end
|
|
3292
|
-
end
|
|
3293
|
-
@RequestId = params['RequestId']
|
|
3294
|
-
end
|
|
3295
|
-
end
|
|
3296
|
-
|
|
3297
|
-
# DescribeCloudBaseRunOperationTypes请求参数结构体
|
|
3298
|
-
class DescribeCloudBaseRunOperationTypesRequest < TencentCloud::Common::AbstractModel
|
|
3299
|
-
# @param EnvId: 环境ID
|
|
3300
|
-
# @type EnvId: String
|
|
3301
|
-
# @param ServerName: 服务名称,精确匹配
|
|
3302
|
-
# @type ServerName: String
|
|
3303
|
-
|
|
3304
|
-
attr_accessor :EnvId, :ServerName
|
|
3305
|
-
|
|
3306
|
-
def initialize(envid=nil, servername=nil)
|
|
3307
|
-
@EnvId = envid
|
|
3308
|
-
@ServerName = servername
|
|
3309
|
-
end
|
|
3310
|
-
|
|
3311
|
-
def deserialize(params)
|
|
3312
|
-
@EnvId = params['EnvId']
|
|
3313
|
-
@ServerName = params['ServerName']
|
|
3314
|
-
end
|
|
3315
|
-
end
|
|
3316
|
-
|
|
3317
|
-
# DescribeCloudBaseRunOperationTypes返回参数结构体
|
|
3318
|
-
class DescribeCloudBaseRunOperationTypesResponse < TencentCloud::Common::AbstractModel
|
|
3319
|
-
# @param Action: 操作类型
|
|
3320
|
-
# @type Action: Array
|
|
3321
|
-
# @param ServerName: 服务名列表
|
|
3322
|
-
# @type ServerName: Array
|
|
3323
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3324
|
-
# @type RequestId: String
|
|
3325
|
-
|
|
3326
|
-
attr_accessor :Action, :ServerName, :RequestId
|
|
3327
|
-
|
|
3328
|
-
def initialize(action=nil, servername=nil, requestid=nil)
|
|
3329
|
-
@Action = action
|
|
3330
|
-
@ServerName = servername
|
|
3331
|
-
@RequestId = requestid
|
|
3332
|
-
end
|
|
3333
|
-
|
|
3334
|
-
def deserialize(params)
|
|
3335
|
-
@Action = params['Action']
|
|
3336
|
-
@ServerName = params['ServerName']
|
|
3337
|
-
@RequestId = params['RequestId']
|
|
3338
|
-
end
|
|
3339
|
-
end
|
|
3340
|
-
|
|
3341
|
-
# DescribeCloudBaseRunPodList请求参数结构体
|
|
3342
|
-
class DescribeCloudBaseRunPodListRequest < TencentCloud::Common::AbstractModel
|
|
3343
|
-
# @param EnvId: 环境id
|
|
3344
|
-
# @type EnvId: String
|
|
3345
|
-
# @param ServerName: 服务名
|
|
3346
|
-
# @type ServerName: String
|
|
3347
|
-
# @param VersionName: 版本名
|
|
3348
|
-
# @type VersionName: String
|
|
3349
|
-
# @param Limit: 分页限制
|
|
3350
|
-
# @type Limit: Integer
|
|
3351
|
-
# @param Offset: 分页偏移量
|
|
3352
|
-
# @type Offset: Integer
|
|
3353
|
-
# @param Status: 容器状态
|
|
3354
|
-
# @type Status: String
|
|
3355
|
-
# @param PodName: 容器名
|
|
3356
|
-
# @type PodName: String
|
|
3357
|
-
|
|
3358
|
-
attr_accessor :EnvId, :ServerName, :VersionName, :Limit, :Offset, :Status, :PodName
|
|
3359
|
-
|
|
3360
|
-
def initialize(envid=nil, servername=nil, versionname=nil, limit=nil, offset=nil, status=nil, podname=nil)
|
|
3361
|
-
@EnvId = envid
|
|
3362
|
-
@ServerName = servername
|
|
3363
|
-
@VersionName = versionname
|
|
3364
|
-
@Limit = limit
|
|
3365
|
-
@Offset = offset
|
|
3366
|
-
@Status = status
|
|
3367
|
-
@PodName = podname
|
|
3368
|
-
end
|
|
3369
|
-
|
|
3370
|
-
def deserialize(params)
|
|
3371
|
-
@EnvId = params['EnvId']
|
|
3372
|
-
@ServerName = params['ServerName']
|
|
3373
|
-
@VersionName = params['VersionName']
|
|
3374
|
-
@Limit = params['Limit']
|
|
3375
|
-
@Offset = params['Offset']
|
|
3376
|
-
@Status = params['Status']
|
|
3377
|
-
@PodName = params['PodName']
|
|
3378
|
-
end
|
|
3379
|
-
end
|
|
3380
|
-
|
|
3381
|
-
# DescribeCloudBaseRunPodList返回参数结构体
|
|
3382
|
-
class DescribeCloudBaseRunPodListResponse < TencentCloud::Common::AbstractModel
|
|
3383
|
-
# @param Offset: 偏移量
|
|
3384
|
-
# @type Offset: Integer
|
|
3385
|
-
# @param Limit: 分页大小
|
|
3386
|
-
# @type Limit: Integer
|
|
3387
|
-
# @param TotalCount: 总数
|
|
3388
|
-
# @type TotalCount: Integer
|
|
3389
|
-
# @param PodList: 容器列表
|
|
3390
|
-
# @type PodList: Array
|
|
3391
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3392
|
-
# @type RequestId: String
|
|
3393
|
-
|
|
3394
|
-
attr_accessor :Offset, :Limit, :TotalCount, :PodList, :RequestId
|
|
3395
|
-
|
|
3396
|
-
def initialize(offset=nil, limit=nil, totalcount=nil, podlist=nil, requestid=nil)
|
|
3397
|
-
@Offset = offset
|
|
3398
|
-
@Limit = limit
|
|
3399
|
-
@TotalCount = totalcount
|
|
3400
|
-
@PodList = podlist
|
|
3401
|
-
@RequestId = requestid
|
|
3402
|
-
end
|
|
3403
|
-
|
|
3404
|
-
def deserialize(params)
|
|
3405
|
-
@Offset = params['Offset']
|
|
3406
|
-
@Limit = params['Limit']
|
|
3407
|
-
@TotalCount = params['TotalCount']
|
|
3408
|
-
unless params['PodList'].nil?
|
|
3409
|
-
@PodList = []
|
|
3410
|
-
params['PodList'].each do |i|
|
|
3411
|
-
cloudbaserunversionpod_tmp = CloudBaseRunVersionPod.new
|
|
3412
|
-
cloudbaserunversionpod_tmp.deserialize(i)
|
|
3413
|
-
@PodList << cloudbaserunversionpod_tmp
|
|
3414
|
-
end
|
|
3415
|
-
end
|
|
3416
|
-
@RequestId = params['RequestId']
|
|
3417
|
-
end
|
|
3418
|
-
end
|
|
3419
|
-
|
|
3420
2907
|
# DescribeCloudBaseRunResourceForExtend请求参数结构体
|
|
3421
2908
|
class DescribeCloudBaseRunResourceForExtendRequest < TencentCloud::Common::AbstractModel
|
|
3422
2909
|
# @param EnvId: 环境ID
|
|
@@ -3536,62 +3023,6 @@ module TencentCloud
|
|
|
3536
3023
|
end
|
|
3537
3024
|
end
|
|
3538
3025
|
|
|
3539
|
-
# DescribeCloudBaseRunServerDomainName请求参数结构体
|
|
3540
|
-
class DescribeCloudBaseRunServerDomainNameRequest < TencentCloud::Common::AbstractModel
|
|
3541
|
-
# @param ServerName: 服务名
|
|
3542
|
-
# @type ServerName: String
|
|
3543
|
-
# @param UserEnvId: 环境Id
|
|
3544
|
-
# @type UserEnvId: String
|
|
3545
|
-
# @param UserUin: 用户Uin
|
|
3546
|
-
# @type UserUin: String
|
|
3547
|
-
# @param ExternalId: 外部Id
|
|
3548
|
-
# @type ExternalId: String
|
|
3549
|
-
|
|
3550
|
-
attr_accessor :ServerName, :UserEnvId, :UserUin, :ExternalId
|
|
3551
|
-
|
|
3552
|
-
def initialize(servername=nil, userenvid=nil, useruin=nil, externalid=nil)
|
|
3553
|
-
@ServerName = servername
|
|
3554
|
-
@UserEnvId = userenvid
|
|
3555
|
-
@UserUin = useruin
|
|
3556
|
-
@ExternalId = externalid
|
|
3557
|
-
end
|
|
3558
|
-
|
|
3559
|
-
def deserialize(params)
|
|
3560
|
-
@ServerName = params['ServerName']
|
|
3561
|
-
@UserEnvId = params['UserEnvId']
|
|
3562
|
-
@UserUin = params['UserUin']
|
|
3563
|
-
@ExternalId = params['ExternalId']
|
|
3564
|
-
end
|
|
3565
|
-
end
|
|
3566
|
-
|
|
3567
|
-
# DescribeCloudBaseRunServerDomainName返回参数结构体
|
|
3568
|
-
class DescribeCloudBaseRunServerDomainNameResponse < TencentCloud::Common::AbstractModel
|
|
3569
|
-
# @param PublicDomain: 公网服务域名
|
|
3570
|
-
# @type PublicDomain: String
|
|
3571
|
-
# @param InternalDomain: 内部服务域名
|
|
3572
|
-
# @type InternalDomain: String
|
|
3573
|
-
# @param DomainName: 弃用
|
|
3574
|
-
# @type DomainName: String
|
|
3575
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3576
|
-
# @type RequestId: String
|
|
3577
|
-
|
|
3578
|
-
attr_accessor :PublicDomain, :InternalDomain, :DomainName, :RequestId
|
|
3579
|
-
|
|
3580
|
-
def initialize(publicdomain=nil, internaldomain=nil, domainname=nil, requestid=nil)
|
|
3581
|
-
@PublicDomain = publicdomain
|
|
3582
|
-
@InternalDomain = internaldomain
|
|
3583
|
-
@DomainName = domainname
|
|
3584
|
-
@RequestId = requestid
|
|
3585
|
-
end
|
|
3586
|
-
|
|
3587
|
-
def deserialize(params)
|
|
3588
|
-
@PublicDomain = params['PublicDomain']
|
|
3589
|
-
@InternalDomain = params['InternalDomain']
|
|
3590
|
-
@DomainName = params['DomainName']
|
|
3591
|
-
@RequestId = params['RequestId']
|
|
3592
|
-
end
|
|
3593
|
-
end
|
|
3594
|
-
|
|
3595
3026
|
# DescribeCloudBaseRunServer请求参数结构体
|
|
3596
3027
|
class DescribeCloudBaseRunServerRequest < TencentCloud::Common::AbstractModel
|
|
3597
3028
|
# @param EnvId: 环境ID
|
|
@@ -4057,52 +3488,12 @@ module TencentCloud
|
|
|
4057
3488
|
@PolicyDetail = []
|
|
4058
3489
|
params['PolicyDetail'].each do |i|
|
|
4059
3490
|
hpapolicy_tmp = HpaPolicy.new
|
|
4060
|
-
hpapolicy_tmp.deserialize(i)
|
|
4061
|
-
@PolicyDetail << hpapolicy_tmp
|
|
4062
|
-
end
|
|
4063
|
-
end
|
|
4064
|
-
@Cpu = params['Cpu']
|
|
4065
|
-
@Mem = params['Mem']
|
|
4066
|
-
@RequestId = params['RequestId']
|
|
4067
|
-
end
|
|
4068
|
-
end
|
|
4069
|
-
|
|
4070
|
-
# DescribeCloudBaseRunVersionRsByCondition请求参数结构体
|
|
4071
|
-
class DescribeCloudBaseRunVersionRsByConditionRequest < TencentCloud::Common::AbstractModel
|
|
4072
|
-
# @param EnvId: 环境ID;EnvId和ClusterId不能同时为空
|
|
4073
|
-
# @type EnvId: String
|
|
4074
|
-
# @param ClusterId: 集群ID;EnvId和ClusterId不能同时为空
|
|
4075
|
-
# @type ClusterId: String
|
|
4076
|
-
# @param FilterGwSwitch: 过滤网关服务开关
|
|
4077
|
-
# @type FilterGwSwitch: Boolean
|
|
4078
|
-
|
|
4079
|
-
attr_accessor :EnvId, :ClusterId, :FilterGwSwitch
|
|
4080
|
-
|
|
4081
|
-
def initialize(envid=nil, clusterid=nil, filtergwswitch=nil)
|
|
4082
|
-
@EnvId = envid
|
|
4083
|
-
@ClusterId = clusterid
|
|
4084
|
-
@FilterGwSwitch = filtergwswitch
|
|
4085
|
-
end
|
|
4086
|
-
|
|
4087
|
-
def deserialize(params)
|
|
4088
|
-
@EnvId = params['EnvId']
|
|
4089
|
-
@ClusterId = params['ClusterId']
|
|
4090
|
-
@FilterGwSwitch = params['FilterGwSwitch']
|
|
4091
|
-
end
|
|
4092
|
-
end
|
|
4093
|
-
|
|
4094
|
-
# DescribeCloudBaseRunVersionRsByCondition返回参数结构体
|
|
4095
|
-
class DescribeCloudBaseRunVersionRsByConditionResponse < TencentCloud::Common::AbstractModel
|
|
4096
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4097
|
-
# @type RequestId: String
|
|
4098
|
-
|
|
4099
|
-
attr_accessor :RequestId
|
|
4100
|
-
|
|
4101
|
-
def initialize(requestid=nil)
|
|
4102
|
-
@RequestId = requestid
|
|
4103
|
-
end
|
|
4104
|
-
|
|
4105
|
-
def deserialize(params)
|
|
3491
|
+
hpapolicy_tmp.deserialize(i)
|
|
3492
|
+
@PolicyDetail << hpapolicy_tmp
|
|
3493
|
+
end
|
|
3494
|
+
end
|
|
3495
|
+
@Cpu = params['Cpu']
|
|
3496
|
+
@Mem = params['Mem']
|
|
4106
3497
|
@RequestId = params['RequestId']
|
|
4107
3498
|
end
|
|
4108
3499
|
end
|
|
@@ -5406,93 +4797,6 @@ module TencentCloud
|
|
|
5406
4797
|
end
|
|
5407
4798
|
end
|
|
5408
4799
|
|
|
5409
|
-
# DescribeWxCloudBaseRunEnvs请求参数结构体
|
|
5410
|
-
class DescribeWxCloudBaseRunEnvsRequest < TencentCloud::Common::AbstractModel
|
|
5411
|
-
# @param WxAppId: wx应用Id
|
|
5412
|
-
# @type WxAppId: String
|
|
5413
|
-
# @param AllRegions: 是否查询全地域
|
|
5414
|
-
# @type AllRegions: Boolean
|
|
5415
|
-
|
|
5416
|
-
attr_accessor :WxAppId, :AllRegions
|
|
5417
|
-
|
|
5418
|
-
def initialize(wxappid=nil, allregions=nil)
|
|
5419
|
-
@WxAppId = wxappid
|
|
5420
|
-
@AllRegions = allregions
|
|
5421
|
-
end
|
|
5422
|
-
|
|
5423
|
-
def deserialize(params)
|
|
5424
|
-
@WxAppId = params['WxAppId']
|
|
5425
|
-
@AllRegions = params['AllRegions']
|
|
5426
|
-
end
|
|
5427
|
-
end
|
|
5428
|
-
|
|
5429
|
-
# DescribeWxCloudBaseRunEnvs返回参数结构体
|
|
5430
|
-
class DescribeWxCloudBaseRunEnvsResponse < TencentCloud::Common::AbstractModel
|
|
5431
|
-
# @param EnvList: env列表
|
|
5432
|
-
# @type EnvList: Array
|
|
5433
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5434
|
-
# @type RequestId: String
|
|
5435
|
-
|
|
5436
|
-
attr_accessor :EnvList, :RequestId
|
|
5437
|
-
|
|
5438
|
-
def initialize(envlist=nil, requestid=nil)
|
|
5439
|
-
@EnvList = envlist
|
|
5440
|
-
@RequestId = requestid
|
|
5441
|
-
end
|
|
5442
|
-
|
|
5443
|
-
def deserialize(params)
|
|
5444
|
-
unless params['EnvList'].nil?
|
|
5445
|
-
@EnvList = []
|
|
5446
|
-
params['EnvList'].each do |i|
|
|
5447
|
-
envinfo_tmp = EnvInfo.new
|
|
5448
|
-
envinfo_tmp.deserialize(i)
|
|
5449
|
-
@EnvList << envinfo_tmp
|
|
5450
|
-
end
|
|
5451
|
-
end
|
|
5452
|
-
@RequestId = params['RequestId']
|
|
5453
|
-
end
|
|
5454
|
-
end
|
|
5455
|
-
|
|
5456
|
-
# DescribeWxCloudBaseRunSubNets请求参数结构体
|
|
5457
|
-
class DescribeWxCloudBaseRunSubNetsRequest < TencentCloud::Common::AbstractModel
|
|
5458
|
-
# @param VpcId: VPC id
|
|
5459
|
-
# @type VpcId: String
|
|
5460
|
-
# @param Limit: 查询个数限制,不填或小于等于0,等于不限制
|
|
5461
|
-
# @type Limit: Integer
|
|
5462
|
-
|
|
5463
|
-
attr_accessor :VpcId, :Limit
|
|
5464
|
-
|
|
5465
|
-
def initialize(vpcid=nil, limit=nil)
|
|
5466
|
-
@VpcId = vpcid
|
|
5467
|
-
@Limit = limit
|
|
5468
|
-
end
|
|
5469
|
-
|
|
5470
|
-
def deserialize(params)
|
|
5471
|
-
@VpcId = params['VpcId']
|
|
5472
|
-
@Limit = params['Limit']
|
|
5473
|
-
end
|
|
5474
|
-
end
|
|
5475
|
-
|
|
5476
|
-
# DescribeWxCloudBaseRunSubNets返回参数结构体
|
|
5477
|
-
class DescribeWxCloudBaseRunSubNetsResponse < TencentCloud::Common::AbstractModel
|
|
5478
|
-
# @param SubNetIds: 子网Id列表
|
|
5479
|
-
# @type SubNetIds: Array
|
|
5480
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5481
|
-
# @type RequestId: String
|
|
5482
|
-
|
|
5483
|
-
attr_accessor :SubNetIds, :RequestId
|
|
5484
|
-
|
|
5485
|
-
def initialize(subnetids=nil, requestid=nil)
|
|
5486
|
-
@SubNetIds = subnetids
|
|
5487
|
-
@RequestId = requestid
|
|
5488
|
-
end
|
|
5489
|
-
|
|
5490
|
-
def deserialize(params)
|
|
5491
|
-
@SubNetIds = params['SubNetIds']
|
|
5492
|
-
@RequestId = params['RequestId']
|
|
5493
|
-
end
|
|
5494
|
-
end
|
|
5495
|
-
|
|
5496
4800
|
# DescribeWxGatewayRoutes请求参数结构体
|
|
5497
4801
|
class DescribeWxGatewayRoutesRequest < TencentCloud::Common::AbstractModel
|
|
5498
4802
|
# @param EnvId: 环境ID
|
|
@@ -6976,45 +6280,6 @@ module TencentCloud
|
|
|
6976
6280
|
end
|
|
6977
6281
|
end
|
|
6978
6282
|
|
|
6979
|
-
# 一键部署步骤信息
|
|
6980
|
-
class OneClickTaskStepInfo < TencentCloud::Common::AbstractModel
|
|
6981
|
-
# @param Status: 未启动:"todo"
|
|
6982
|
-
# 运行中:"running"
|
|
6983
|
-
# 失败:"failed"
|
|
6984
|
-
# 成功结束:"finished"
|
|
6985
|
-
# @type Status: String
|
|
6986
|
-
# @param StartTime: 开始时间
|
|
6987
|
-
# @type StartTime: String
|
|
6988
|
-
# @param EndTime: 结束时间
|
|
6989
|
-
# @type EndTime: String
|
|
6990
|
-
# @param CostTime: 耗时:秒
|
|
6991
|
-
# @type CostTime: Integer
|
|
6992
|
-
# @param FailReason: 失败原因
|
|
6993
|
-
# @type FailReason: String
|
|
6994
|
-
# @param Name: 步骤名
|
|
6995
|
-
# @type Name: String
|
|
6996
|
-
|
|
6997
|
-
attr_accessor :Status, :StartTime, :EndTime, :CostTime, :FailReason, :Name
|
|
6998
|
-
|
|
6999
|
-
def initialize(status=nil, starttime=nil, endtime=nil, costtime=nil, failreason=nil, name=nil)
|
|
7000
|
-
@Status = status
|
|
7001
|
-
@StartTime = starttime
|
|
7002
|
-
@EndTime = endtime
|
|
7003
|
-
@CostTime = costtime
|
|
7004
|
-
@FailReason = failreason
|
|
7005
|
-
@Name = name
|
|
7006
|
-
end
|
|
7007
|
-
|
|
7008
|
-
def deserialize(params)
|
|
7009
|
-
@Status = params['Status']
|
|
7010
|
-
@StartTime = params['StartTime']
|
|
7011
|
-
@EndTime = params['EndTime']
|
|
7012
|
-
@CostTime = params['CostTime']
|
|
7013
|
-
@FailReason = params['FailReason']
|
|
7014
|
-
@Name = params['Name']
|
|
7015
|
-
end
|
|
7016
|
-
end
|
|
7017
|
-
|
|
7018
6283
|
# 订单信息
|
|
7019
6284
|
class OrderInfo < TencentCloud::Common::AbstractModel
|
|
7020
6285
|
# @param TranId: 订单号
|
|
@@ -7280,203 +6545,6 @@ module TencentCloud
|
|
|
7280
6545
|
end
|
|
7281
6546
|
end
|
|
7282
6547
|
|
|
7283
|
-
# RollUpdateCloudBaseRunServerVersion请求参数结构体
|
|
7284
|
-
class RollUpdateCloudBaseRunServerVersionRequest < TencentCloud::Common::AbstractModel
|
|
7285
|
-
# @param EnvId: 环境ID
|
|
7286
|
-
# @type EnvId: String
|
|
7287
|
-
# @param VersionName: 要替换的版本名称,可以为latest
|
|
7288
|
-
# @type VersionName: String
|
|
7289
|
-
# @param UploadType: 枚举(package/repository/image)
|
|
7290
|
-
# @type UploadType: String
|
|
7291
|
-
# @param RepositoryType: repository的类型(coding/gitlab/github)
|
|
7292
|
-
# @type RepositoryType: String
|
|
7293
|
-
# @param FlowRatio: 流量占比
|
|
7294
|
-
# @type FlowRatio: Integer
|
|
7295
|
-
# @param DockerfilePath: dockerfile地址
|
|
7296
|
-
# @type DockerfilePath: String
|
|
7297
|
-
# @param BuildDir: 构建目录
|
|
7298
|
-
# @type BuildDir: String
|
|
7299
|
-
# @param Cpu: Cpu的大小,单位:核
|
|
7300
|
-
# @type Cpu: String
|
|
7301
|
-
# @param Mem: Mem的大小,单位:G
|
|
7302
|
-
# @type Mem: String
|
|
7303
|
-
# @param MinNum: 最小副本数,最小值:0
|
|
7304
|
-
# @type MinNum: String
|
|
7305
|
-
# @param MaxNum: 最大副本数
|
|
7306
|
-
# @type MaxNum: String
|
|
7307
|
-
# @param PolicyType: 策略类型
|
|
7308
|
-
# cpu/mem
|
|
7309
|
-
# @type PolicyType: String
|
|
7310
|
-
# @param PolicyThreshold: 策略阈值
|
|
7311
|
-
# @type PolicyThreshold: String
|
|
7312
|
-
# @param EnvParams: 环境变量
|
|
7313
|
-
# @type EnvParams: String
|
|
7314
|
-
# @param ContainerPort: 容器端口
|
|
7315
|
-
# @type ContainerPort: Integer
|
|
7316
|
-
# @param ServerName: 服务名称
|
|
7317
|
-
# @type ServerName: String
|
|
7318
|
-
# @param Repository: repository地址
|
|
7319
|
-
# @type Repository: String
|
|
7320
|
-
# @param Branch: 分支
|
|
7321
|
-
# @type Branch: String
|
|
7322
|
-
# @param VersionRemark: 版本备注
|
|
7323
|
-
# @type VersionRemark: String
|
|
7324
|
-
# @param PackageName: 代码包名字
|
|
7325
|
-
# @type PackageName: String
|
|
7326
|
-
# @param PackageVersion: 代码包版本
|
|
7327
|
-
# @type PackageVersion: String
|
|
7328
|
-
# @param ImageInfo: Image的详情
|
|
7329
|
-
# @type ImageInfo: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseRunImageInfo`
|
|
7330
|
-
# @param CodeDetail: Github等拉取代码的详情
|
|
7331
|
-
# @type CodeDetail: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseCodeRepoDetail`
|
|
7332
|
-
# @param IsRebuild: 是否回放流量
|
|
7333
|
-
# @type IsRebuild: Boolean
|
|
7334
|
-
# @param InitialDelaySeconds: 延迟多长时间开始健康检查(单位s)
|
|
7335
|
-
# @type InitialDelaySeconds: Integer
|
|
7336
|
-
# @param MountVolumeInfo: cfs挂载信息
|
|
7337
|
-
# @type MountVolumeInfo: Array
|
|
7338
|
-
# @param Rollback: 是否回滚
|
|
7339
|
-
# @type Rollback: Boolean
|
|
7340
|
-
# @param SnapshotName: 版本历史名
|
|
7341
|
-
# @type SnapshotName: String
|
|
7342
|
-
# @param CustomLogs: 自定义采集路径
|
|
7343
|
-
# @type CustomLogs: String
|
|
7344
|
-
# @param EnableUnion: 是否启用统一域名
|
|
7345
|
-
# @type EnableUnion: Boolean
|
|
7346
|
-
# @param OperatorRemark: 操作备注
|
|
7347
|
-
# @type OperatorRemark: String
|
|
7348
|
-
# @param ServerPath: 服务路径(只会第一次生效)
|
|
7349
|
-
# @type ServerPath: String
|
|
7350
|
-
# @param IsUpdateCls: 是否更新Cls
|
|
7351
|
-
# @type IsUpdateCls: Boolean
|
|
7352
|
-
# @param PolicyDetail: 自动扩缩容策略组
|
|
7353
|
-
# @type PolicyDetail: Array
|
|
7354
|
-
|
|
7355
|
-
attr_accessor :EnvId, :VersionName, :UploadType, :RepositoryType, :FlowRatio, :DockerfilePath, :BuildDir, :Cpu, :Mem, :MinNum, :MaxNum, :PolicyType, :PolicyThreshold, :EnvParams, :ContainerPort, :ServerName, :Repository, :Branch, :VersionRemark, :PackageName, :PackageVersion, :ImageInfo, :CodeDetail, :IsRebuild, :InitialDelaySeconds, :MountVolumeInfo, :Rollback, :SnapshotName, :CustomLogs, :EnableUnion, :OperatorRemark, :ServerPath, :IsUpdateCls, :PolicyDetail
|
|
7356
|
-
|
|
7357
|
-
def initialize(envid=nil, versionname=nil, uploadtype=nil, repositorytype=nil, flowratio=nil, dockerfilepath=nil, builddir=nil, cpu=nil, mem=nil, minnum=nil, maxnum=nil, policytype=nil, policythreshold=nil, envparams=nil, containerport=nil, servername=nil, repository=nil, branch=nil, versionremark=nil, packagename=nil, packageversion=nil, imageinfo=nil, codedetail=nil, isrebuild=nil, initialdelayseconds=nil, mountvolumeinfo=nil, rollback=nil, snapshotname=nil, customlogs=nil, enableunion=nil, operatorremark=nil, serverpath=nil, isupdatecls=nil, policydetail=nil)
|
|
7358
|
-
@EnvId = envid
|
|
7359
|
-
@VersionName = versionname
|
|
7360
|
-
@UploadType = uploadtype
|
|
7361
|
-
@RepositoryType = repositorytype
|
|
7362
|
-
@FlowRatio = flowratio
|
|
7363
|
-
@DockerfilePath = dockerfilepath
|
|
7364
|
-
@BuildDir = builddir
|
|
7365
|
-
@Cpu = cpu
|
|
7366
|
-
@Mem = mem
|
|
7367
|
-
@MinNum = minnum
|
|
7368
|
-
@MaxNum = maxnum
|
|
7369
|
-
@PolicyType = policytype
|
|
7370
|
-
@PolicyThreshold = policythreshold
|
|
7371
|
-
@EnvParams = envparams
|
|
7372
|
-
@ContainerPort = containerport
|
|
7373
|
-
@ServerName = servername
|
|
7374
|
-
@Repository = repository
|
|
7375
|
-
@Branch = branch
|
|
7376
|
-
@VersionRemark = versionremark
|
|
7377
|
-
@PackageName = packagename
|
|
7378
|
-
@PackageVersion = packageversion
|
|
7379
|
-
@ImageInfo = imageinfo
|
|
7380
|
-
@CodeDetail = codedetail
|
|
7381
|
-
@IsRebuild = isrebuild
|
|
7382
|
-
@InitialDelaySeconds = initialdelayseconds
|
|
7383
|
-
@MountVolumeInfo = mountvolumeinfo
|
|
7384
|
-
@Rollback = rollback
|
|
7385
|
-
@SnapshotName = snapshotname
|
|
7386
|
-
@CustomLogs = customlogs
|
|
7387
|
-
@EnableUnion = enableunion
|
|
7388
|
-
@OperatorRemark = operatorremark
|
|
7389
|
-
@ServerPath = serverpath
|
|
7390
|
-
@IsUpdateCls = isupdatecls
|
|
7391
|
-
@PolicyDetail = policydetail
|
|
7392
|
-
end
|
|
7393
|
-
|
|
7394
|
-
def deserialize(params)
|
|
7395
|
-
@EnvId = params['EnvId']
|
|
7396
|
-
@VersionName = params['VersionName']
|
|
7397
|
-
@UploadType = params['UploadType']
|
|
7398
|
-
@RepositoryType = params['RepositoryType']
|
|
7399
|
-
@FlowRatio = params['FlowRatio']
|
|
7400
|
-
@DockerfilePath = params['DockerfilePath']
|
|
7401
|
-
@BuildDir = params['BuildDir']
|
|
7402
|
-
@Cpu = params['Cpu']
|
|
7403
|
-
@Mem = params['Mem']
|
|
7404
|
-
@MinNum = params['MinNum']
|
|
7405
|
-
@MaxNum = params['MaxNum']
|
|
7406
|
-
@PolicyType = params['PolicyType']
|
|
7407
|
-
@PolicyThreshold = params['PolicyThreshold']
|
|
7408
|
-
@EnvParams = params['EnvParams']
|
|
7409
|
-
@ContainerPort = params['ContainerPort']
|
|
7410
|
-
@ServerName = params['ServerName']
|
|
7411
|
-
@Repository = params['Repository']
|
|
7412
|
-
@Branch = params['Branch']
|
|
7413
|
-
@VersionRemark = params['VersionRemark']
|
|
7414
|
-
@PackageName = params['PackageName']
|
|
7415
|
-
@PackageVersion = params['PackageVersion']
|
|
7416
|
-
unless params['ImageInfo'].nil?
|
|
7417
|
-
@ImageInfo = CloudBaseRunImageInfo.new
|
|
7418
|
-
@ImageInfo.deserialize(params['ImageInfo'])
|
|
7419
|
-
end
|
|
7420
|
-
unless params['CodeDetail'].nil?
|
|
7421
|
-
@CodeDetail = CloudBaseCodeRepoDetail.new
|
|
7422
|
-
@CodeDetail.deserialize(params['CodeDetail'])
|
|
7423
|
-
end
|
|
7424
|
-
@IsRebuild = params['IsRebuild']
|
|
7425
|
-
@InitialDelaySeconds = params['InitialDelaySeconds']
|
|
7426
|
-
unless params['MountVolumeInfo'].nil?
|
|
7427
|
-
@MountVolumeInfo = []
|
|
7428
|
-
params['MountVolumeInfo'].each do |i|
|
|
7429
|
-
cloudbaserunvolumemount_tmp = CloudBaseRunVolumeMount.new
|
|
7430
|
-
cloudbaserunvolumemount_tmp.deserialize(i)
|
|
7431
|
-
@MountVolumeInfo << cloudbaserunvolumemount_tmp
|
|
7432
|
-
end
|
|
7433
|
-
end
|
|
7434
|
-
@Rollback = params['Rollback']
|
|
7435
|
-
@SnapshotName = params['SnapshotName']
|
|
7436
|
-
@CustomLogs = params['CustomLogs']
|
|
7437
|
-
@EnableUnion = params['EnableUnion']
|
|
7438
|
-
@OperatorRemark = params['OperatorRemark']
|
|
7439
|
-
@ServerPath = params['ServerPath']
|
|
7440
|
-
@IsUpdateCls = params['IsUpdateCls']
|
|
7441
|
-
unless params['PolicyDetail'].nil?
|
|
7442
|
-
@PolicyDetail = []
|
|
7443
|
-
params['PolicyDetail'].each do |i|
|
|
7444
|
-
hpapolicy_tmp = HpaPolicy.new
|
|
7445
|
-
hpapolicy_tmp.deserialize(i)
|
|
7446
|
-
@PolicyDetail << hpapolicy_tmp
|
|
7447
|
-
end
|
|
7448
|
-
end
|
|
7449
|
-
end
|
|
7450
|
-
end
|
|
7451
|
-
|
|
7452
|
-
# RollUpdateCloudBaseRunServerVersion返回参数结构体
|
|
7453
|
-
class RollUpdateCloudBaseRunServerVersionResponse < TencentCloud::Common::AbstractModel
|
|
7454
|
-
# @param Result: succ为成功
|
|
7455
|
-
# @type Result: String
|
|
7456
|
-
# @param VersionName: 滚动更新的VersionName
|
|
7457
|
-
# @type VersionName: String
|
|
7458
|
-
# @param RunId: 操作记录id
|
|
7459
|
-
# @type RunId: String
|
|
7460
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7461
|
-
# @type RequestId: String
|
|
7462
|
-
|
|
7463
|
-
attr_accessor :Result, :VersionName, :RunId, :RequestId
|
|
7464
|
-
|
|
7465
|
-
def initialize(result=nil, versionname=nil, runid=nil, requestid=nil)
|
|
7466
|
-
@Result = result
|
|
7467
|
-
@VersionName = versionname
|
|
7468
|
-
@RunId = runid
|
|
7469
|
-
@RequestId = requestid
|
|
7470
|
-
end
|
|
7471
|
-
|
|
7472
|
-
def deserialize(params)
|
|
7473
|
-
@Result = params['Result']
|
|
7474
|
-
@VersionName = params['VersionName']
|
|
7475
|
-
@RunId = params['RunId']
|
|
7476
|
-
@RequestId = params['RequestId']
|
|
7477
|
-
end
|
|
7478
|
-
end
|
|
7479
|
-
|
|
7480
6548
|
# SearchClsLog请求参数结构体
|
|
7481
6549
|
class SearchClsLogRequest < TencentCloud::Common::AbstractModel
|
|
7482
6550
|
# @param EnvId: 环境唯一ID
|