tencentcloud-sdk-tcbr 3.0.1041 → 3.0.1043

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220217/models.rb +16 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5532eb5216185365a0f93fd1743b6b3653691049
4
- data.tar.gz: 013a78ad4303abf8b87aca4532602e356de323dd
3
+ metadata.gz: e0b3e39f1db87271ae1f5b4080035e7697205f8f
4
+ data.tar.gz: 1ad2f33f01a7deb9005aa2064e53eacf17ddc42d
5
5
  SHA512:
6
- metadata.gz: 39a71c53bdd63443b2c4f96e761ca95f65a11f9b6325886e65407cbbf031c2b4ff92e4241980cb9ea8a476066f22785adfd2a3a1226bfec35ef7ac2bd2ce9d51
7
- data.tar.gz: 978ad63aadee20fa8d2bda6e19b8f5565dd3762d38a1657864ef3cc27f192ac36fab214664c712b006b892fc4e2e126ecdae0c25d266b3ce1a4180cde65b8bb0
6
+ metadata.gz: 5a6d309ec95a5f7b9f904f4675356d1cd197b519bc8d77a2de4fd123d81f4c8192e783ba77d1dc8de9168030c864e8625339d57caf99bc2495806e514ba4ad42
7
+ data.tar.gz: f9b5d83faf049843085a01a4ec94be8354e33cf069f180a5be011a2b4bb541fde92deb4d934eaaff433fb6d68f741b4a249b22cd718298cd09dd7a4d23eeb49b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1041
1
+ 3.0.1043
@@ -1059,10 +1059,14 @@ module TencentCloud
1059
1059
  # @type LogParseType: String
1060
1060
  # @param Tag: 服务标签, function: 函数托管
1061
1061
  # @type Tag: String
1062
+ # @param InternalAccess: 内网访问开关 close | open
1063
+ # @type InternalAccess: String
1064
+ # @param InternalDomain: 内网域名
1065
+ # @type InternalDomain: String
1062
1066
 
1063
- attr_accessor :EnvId, :ServerName, :OpenAccessTypes, :Cpu, :Mem, :MinNum, :MaxNum, :PolicyDetails, :CustomLogs, :EnvParams, :InitialDelaySeconds, :CreateTime, :Port, :HasDockerfile, :Dockerfile, :BuildDir, :LogType, :LogSetId, :LogTopicId, :LogParseType, :Tag
1067
+ attr_accessor :EnvId, :ServerName, :OpenAccessTypes, :Cpu, :Mem, :MinNum, :MaxNum, :PolicyDetails, :CustomLogs, :EnvParams, :InitialDelaySeconds, :CreateTime, :Port, :HasDockerfile, :Dockerfile, :BuildDir, :LogType, :LogSetId, :LogTopicId, :LogParseType, :Tag, :InternalAccess, :InternalDomain
1064
1068
 
1065
- def initialize(envid=nil, servername=nil, openaccesstypes=nil, cpu=nil, mem=nil, minnum=nil, maxnum=nil, policydetails=nil, customlogs=nil, envparams=nil, initialdelayseconds=nil, createtime=nil, port=nil, hasdockerfile=nil, dockerfile=nil, builddir=nil, logtype=nil, logsetid=nil, logtopicid=nil, logparsetype=nil, tag=nil)
1069
+ def initialize(envid=nil, servername=nil, openaccesstypes=nil, cpu=nil, mem=nil, minnum=nil, maxnum=nil, policydetails=nil, customlogs=nil, envparams=nil, initialdelayseconds=nil, createtime=nil, port=nil, hasdockerfile=nil, dockerfile=nil, builddir=nil, logtype=nil, logsetid=nil, logtopicid=nil, logparsetype=nil, tag=nil, internalaccess=nil, internaldomain=nil)
1066
1070
  @EnvId = envid
1067
1071
  @ServerName = servername
1068
1072
  @OpenAccessTypes = openaccesstypes
@@ -1084,6 +1088,8 @@ module TencentCloud
1084
1088
  @LogTopicId = logtopicid
1085
1089
  @LogParseType = logparsetype
1086
1090
  @Tag = tag
1091
+ @InternalAccess = internalaccess
1092
+ @InternalDomain = internaldomain
1087
1093
  end
1088
1094
 
1089
1095
  def deserialize(params)
@@ -1115,6 +1121,8 @@ module TencentCloud
1115
1121
  @LogTopicId = params['LogTopicId']
1116
1122
  @LogParseType = params['LogParseType']
1117
1123
  @Tag = params['Tag']
1124
+ @InternalAccess = params['InternalAccess']
1125
+ @InternalDomain = params['InternalDomain']
1118
1126
  end
1119
1127
  end
1120
1128
 
@@ -1136,10 +1144,12 @@ module TencentCloud
1136
1144
  # @type CustomDomainNames: Array
1137
1145
  # @param ServerType: 服务类型: function 云函数2.0;container 容器服务
1138
1146
  # @type ServerType: String
1147
+ # @param TrafficType: 流量类型,目前只有 FLOW
1148
+ # @type TrafficType: String
1139
1149
 
1140
- attr_accessor :ServerName, :DefaultDomainName, :CustomDomainName, :Status, :UpdateTime, :AccessTypes, :CustomDomainNames, :ServerType
1150
+ attr_accessor :ServerName, :DefaultDomainName, :CustomDomainName, :Status, :UpdateTime, :AccessTypes, :CustomDomainNames, :ServerType, :TrafficType
1141
1151
 
1142
- def initialize(servername=nil, defaultdomainname=nil, customdomainname=nil, status=nil, updatetime=nil, accesstypes=nil, customdomainnames=nil, servertype=nil)
1152
+ def initialize(servername=nil, defaultdomainname=nil, customdomainname=nil, status=nil, updatetime=nil, accesstypes=nil, customdomainnames=nil, servertype=nil, traffictype=nil)
1143
1153
  @ServerName = servername
1144
1154
  @DefaultDomainName = defaultdomainname
1145
1155
  @CustomDomainName = customdomainname
@@ -1148,6 +1158,7 @@ module TencentCloud
1148
1158
  @AccessTypes = accesstypes
1149
1159
  @CustomDomainNames = customdomainnames
1150
1160
  @ServerType = servertype
1161
+ @TrafficType = traffictype
1151
1162
  end
1152
1163
 
1153
1164
  def deserialize(params)
@@ -1159,6 +1170,7 @@ module TencentCloud
1159
1170
  @AccessTypes = params['AccessTypes']
1160
1171
  @CustomDomainNames = params['CustomDomainNames']
1161
1172
  @ServerType = params['ServerType']
1173
+ @TrafficType = params['TrafficType']
1162
1174
  end
1163
1175
  end
1164
1176
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcbr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1041
4
+ version: 3.0.1043
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-04-16 00:00:00.000000000 Z
11
+ date: 2025-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common