tencentcloud-sdk-python-ags 3.1.78__tar.gz → 3.1.80__tar.gz

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 (17) hide show
  1. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/models.py +55 -0
  5. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud_sdk_python_ags.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_ags-3.1.80/tencentcloud_sdk_python_ags.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_ags-3.1.78/tencentcloud_sdk_python_ags.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/ags_client.py +0 -0
  13. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud_sdk_python_ags.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_ags-3.1.78 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud_sdk_python_ags.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ags
3
- Version: 3.1.78
3
+ Version: 3.1.80
4
4
  Summary: Tencent Cloud Ags SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.78
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.80
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-ags',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.78,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.80,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Ags SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.78'
17
+ __version__ = '3.1.80'
@@ -2216,8 +2216,11 @@ class LogConfiguration(AbstractModel):
2216
2216
  r"""
2217
2217
  :param _CLSConfig: <p>日志推送CLS的配置。</p>
2218
2218
  :type CLSConfig: :class:`tencentcloud.ags.v20250920.models.CLSConfig`
2219
+ :param _LogSources: <p>日志源配置</p>
2220
+ :type LogSources: :class:`tencentcloud.ags.v20250920.models.LogSources`
2219
2221
  """
2220
2222
  self._CLSConfig = None
2223
+ self._LogSources = None
2221
2224
 
2222
2225
  @property
2223
2226
  def CLSConfig(self):
@@ -2230,11 +2233,63 @@ class LogConfiguration(AbstractModel):
2230
2233
  def CLSConfig(self, CLSConfig):
2231
2234
  self._CLSConfig = CLSConfig
2232
2235
 
2236
+ @property
2237
+ def LogSources(self):
2238
+ r"""<p>日志源配置</p>
2239
+ :rtype: :class:`tencentcloud.ags.v20250920.models.LogSources`
2240
+ """
2241
+ return self._LogSources
2242
+
2243
+ @LogSources.setter
2244
+ def LogSources(self, LogSources):
2245
+ self._LogSources = LogSources
2246
+
2233
2247
 
2234
2248
  def _deserialize(self, params):
2235
2249
  if params.get("CLSConfig") is not None:
2236
2250
  self._CLSConfig = CLSConfig()
2237
2251
  self._CLSConfig._deserialize(params.get("CLSConfig"))
2252
+ if params.get("LogSources") is not None:
2253
+ self._LogSources = LogSources()
2254
+ self._LogSources._deserialize(params.get("LogSources"))
2255
+ memeber_set = set(params.keys())
2256
+ for name, value in vars(self).items():
2257
+ property_name = name[1:]
2258
+ if property_name in memeber_set:
2259
+ memeber_set.remove(property_name)
2260
+ if len(memeber_set) > 0:
2261
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2262
+
2263
+
2264
+
2265
+ class LogSources(AbstractModel):
2266
+ r"""日志源配置
2267
+
2268
+ """
2269
+
2270
+ def __init__(self):
2271
+ r"""
2272
+ :param _Files: <p>需要采集的日志文件路径,必须是 /logs/ 目录下的文件,不支持子目录,最大支持 10 个文件。</p>
2273
+ 注意:此字段可能返回 null,表示取不到有效值。
2274
+ :type Files: list of str
2275
+ """
2276
+ self._Files = None
2277
+
2278
+ @property
2279
+ def Files(self):
2280
+ r"""<p>需要采集的日志文件路径,必须是 /logs/ 目录下的文件,不支持子目录,最大支持 10 个文件。</p>
2281
+ 注意:此字段可能返回 null,表示取不到有效值。
2282
+ :rtype: list of str
2283
+ """
2284
+ return self._Files
2285
+
2286
+ @Files.setter
2287
+ def Files(self, Files):
2288
+ self._Files = Files
2289
+
2290
+
2291
+ def _deserialize(self, params):
2292
+ self._Files = params.get("Files")
2238
2293
  memeber_set = set(params.keys())
2239
2294
  for name, value in vars(self).items():
2240
2295
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ags
3
- Version: 3.1.78
3
+ Version: 3.1.80
4
4
  Summary: Tencent Cloud Ags SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.78
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.80
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.80
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.78