tencentcloud-sdk-python-ags 3.1.45__tar.gz → 3.1.47__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.
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/setup.py +1 -1
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud/ags/v20250920/models.py +108 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud_sdk_python_ags.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ags-3.1.47/tencentcloud_sdk_python_ags.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ags-3.1.45/tencentcloud_sdk_python_ags.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/README.rst +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud/ags/__init__.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud/ags/v20250920/__init__.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud/ags/v20250920/ags_client.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/tencentcloud_sdk_python_ags.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ags-3.1.45 → tencentcloud_sdk_python_ags-3.1.47}/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.
|
|
3
|
+
Version: 3.1.47
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.47
|
|
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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.47,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ags SDK for Python',
|
|
@@ -208,6 +208,42 @@ class AcquireSandboxInstanceTokenResponse(AbstractModel):
|
|
|
208
208
|
self._RequestId = params.get("RequestId")
|
|
209
209
|
|
|
210
210
|
|
|
211
|
+
class CLSConfig(AbstractModel):
|
|
212
|
+
r"""沙箱工具日志推送CLS相关配置
|
|
213
|
+
|
|
214
|
+
"""
|
|
215
|
+
|
|
216
|
+
def __init__(self):
|
|
217
|
+
r"""
|
|
218
|
+
:param _TopicId: 沙箱工具日志推送所使用的CLS日志主题ID
|
|
219
|
+
:type TopicId: str
|
|
220
|
+
"""
|
|
221
|
+
self._TopicId = None
|
|
222
|
+
|
|
223
|
+
@property
|
|
224
|
+
def TopicId(self):
|
|
225
|
+
r"""沙箱工具日志推送所使用的CLS日志主题ID
|
|
226
|
+
:rtype: str
|
|
227
|
+
"""
|
|
228
|
+
return self._TopicId
|
|
229
|
+
|
|
230
|
+
@TopicId.setter
|
|
231
|
+
def TopicId(self, TopicId):
|
|
232
|
+
self._TopicId = TopicId
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
def _deserialize(self, params):
|
|
236
|
+
self._TopicId = params.get("TopicId")
|
|
237
|
+
memeber_set = set(params.keys())
|
|
238
|
+
for name, value in vars(self).items():
|
|
239
|
+
property_name = name[1:]
|
|
240
|
+
if property_name in memeber_set:
|
|
241
|
+
memeber_set.remove(property_name)
|
|
242
|
+
if len(memeber_set) > 0:
|
|
243
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
211
247
|
class CfsStorageSource(AbstractModel):
|
|
212
248
|
r"""文件存储配置
|
|
213
249
|
|
|
@@ -585,6 +621,8 @@ class CreateSandboxToolRequest(AbstractModel):
|
|
|
585
621
|
:type StorageMounts: list of StorageMount
|
|
586
622
|
:param _CustomConfiguration: 沙箱工具自定义配置
|
|
587
623
|
:type CustomConfiguration: :class:`tencentcloud.ags.v20250920.models.CustomConfiguration`
|
|
624
|
+
:param _LogConfiguration: 沙箱工具日志推送相关配置
|
|
625
|
+
:type LogConfiguration: :class:`tencentcloud.ags.v20250920.models.LogConfiguration`
|
|
588
626
|
"""
|
|
589
627
|
self._ToolName = None
|
|
590
628
|
self._ToolType = None
|
|
@@ -596,6 +634,7 @@ class CreateSandboxToolRequest(AbstractModel):
|
|
|
596
634
|
self._RoleArn = None
|
|
597
635
|
self._StorageMounts = None
|
|
598
636
|
self._CustomConfiguration = None
|
|
637
|
+
self._LogConfiguration = None
|
|
599
638
|
|
|
600
639
|
@property
|
|
601
640
|
def ToolName(self):
|
|
@@ -707,6 +746,17 @@ class CreateSandboxToolRequest(AbstractModel):
|
|
|
707
746
|
def CustomConfiguration(self, CustomConfiguration):
|
|
708
747
|
self._CustomConfiguration = CustomConfiguration
|
|
709
748
|
|
|
749
|
+
@property
|
|
750
|
+
def LogConfiguration(self):
|
|
751
|
+
r"""沙箱工具日志推送相关配置
|
|
752
|
+
:rtype: :class:`tencentcloud.ags.v20250920.models.LogConfiguration`
|
|
753
|
+
"""
|
|
754
|
+
return self._LogConfiguration
|
|
755
|
+
|
|
756
|
+
@LogConfiguration.setter
|
|
757
|
+
def LogConfiguration(self, LogConfiguration):
|
|
758
|
+
self._LogConfiguration = LogConfiguration
|
|
759
|
+
|
|
710
760
|
|
|
711
761
|
def _deserialize(self, params):
|
|
712
762
|
self._ToolName = params.get("ToolName")
|
|
@@ -733,6 +783,9 @@ class CreateSandboxToolRequest(AbstractModel):
|
|
|
733
783
|
if params.get("CustomConfiguration") is not None:
|
|
734
784
|
self._CustomConfiguration = CustomConfiguration()
|
|
735
785
|
self._CustomConfiguration._deserialize(params.get("CustomConfiguration"))
|
|
786
|
+
if params.get("LogConfiguration") is not None:
|
|
787
|
+
self._LogConfiguration = LogConfiguration()
|
|
788
|
+
self._LogConfiguration._deserialize(params.get("LogConfiguration"))
|
|
736
789
|
memeber_set = set(params.keys())
|
|
737
790
|
for name, value in vars(self).items():
|
|
738
791
|
property_name = name[1:]
|
|
@@ -2039,6 +2092,44 @@ class ImageStorageSource(AbstractModel):
|
|
|
2039
2092
|
|
|
2040
2093
|
|
|
2041
2094
|
|
|
2095
|
+
class LogConfiguration(AbstractModel):
|
|
2096
|
+
r"""沙箱工具日志采集相关配置
|
|
2097
|
+
|
|
2098
|
+
"""
|
|
2099
|
+
|
|
2100
|
+
def __init__(self):
|
|
2101
|
+
r"""
|
|
2102
|
+
:param _CLSConfig: 日志推送CLS的配置。
|
|
2103
|
+
:type CLSConfig: :class:`tencentcloud.ags.v20250920.models.CLSConfig`
|
|
2104
|
+
"""
|
|
2105
|
+
self._CLSConfig = None
|
|
2106
|
+
|
|
2107
|
+
@property
|
|
2108
|
+
def CLSConfig(self):
|
|
2109
|
+
r"""日志推送CLS的配置。
|
|
2110
|
+
:rtype: :class:`tencentcloud.ags.v20250920.models.CLSConfig`
|
|
2111
|
+
"""
|
|
2112
|
+
return self._CLSConfig
|
|
2113
|
+
|
|
2114
|
+
@CLSConfig.setter
|
|
2115
|
+
def CLSConfig(self, CLSConfig):
|
|
2116
|
+
self._CLSConfig = CLSConfig
|
|
2117
|
+
|
|
2118
|
+
|
|
2119
|
+
def _deserialize(self, params):
|
|
2120
|
+
if params.get("CLSConfig") is not None:
|
|
2121
|
+
self._CLSConfig = CLSConfig()
|
|
2122
|
+
self._CLSConfig._deserialize(params.get("CLSConfig"))
|
|
2123
|
+
memeber_set = set(params.keys())
|
|
2124
|
+
for name, value in vars(self).items():
|
|
2125
|
+
property_name = name[1:]
|
|
2126
|
+
if property_name in memeber_set:
|
|
2127
|
+
memeber_set.remove(property_name)
|
|
2128
|
+
if len(memeber_set) > 0:
|
|
2129
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2130
|
+
|
|
2131
|
+
|
|
2132
|
+
|
|
2042
2133
|
class MountOption(AbstractModel):
|
|
2043
2134
|
r"""沙箱实例存储挂载配置可选项,用于覆盖沙箱工具的存储配置的部分选项,并提供子路径挂载配置。
|
|
2044
2135
|
|
|
@@ -2757,6 +2848,8 @@ class SandboxTool(AbstractModel):
|
|
|
2757
2848
|
:type StorageMounts: list of StorageMount
|
|
2758
2849
|
:param _CustomConfiguration: 沙箱工具自定义配置
|
|
2759
2850
|
:type CustomConfiguration: :class:`tencentcloud.ags.v20250920.models.CustomConfigurationDetail`
|
|
2851
|
+
:param _LogConfiguration: 沙箱工具日志推送相关配置
|
|
2852
|
+
:type LogConfiguration: :class:`tencentcloud.ags.v20250920.models.LogConfiguration`
|
|
2760
2853
|
"""
|
|
2761
2854
|
self._ToolId = None
|
|
2762
2855
|
self._ToolName = None
|
|
@@ -2771,6 +2864,7 @@ class SandboxTool(AbstractModel):
|
|
|
2771
2864
|
self._RoleArn = None
|
|
2772
2865
|
self._StorageMounts = None
|
|
2773
2866
|
self._CustomConfiguration = None
|
|
2867
|
+
self._LogConfiguration = None
|
|
2774
2868
|
|
|
2775
2869
|
@property
|
|
2776
2870
|
def ToolId(self):
|
|
@@ -2915,6 +3009,17 @@ class SandboxTool(AbstractModel):
|
|
|
2915
3009
|
def CustomConfiguration(self, CustomConfiguration):
|
|
2916
3010
|
self._CustomConfiguration = CustomConfiguration
|
|
2917
3011
|
|
|
3012
|
+
@property
|
|
3013
|
+
def LogConfiguration(self):
|
|
3014
|
+
r"""沙箱工具日志推送相关配置
|
|
3015
|
+
:rtype: :class:`tencentcloud.ags.v20250920.models.LogConfiguration`
|
|
3016
|
+
"""
|
|
3017
|
+
return self._LogConfiguration
|
|
3018
|
+
|
|
3019
|
+
@LogConfiguration.setter
|
|
3020
|
+
def LogConfiguration(self, LogConfiguration):
|
|
3021
|
+
self._LogConfiguration = LogConfiguration
|
|
3022
|
+
|
|
2918
3023
|
|
|
2919
3024
|
def _deserialize(self, params):
|
|
2920
3025
|
self._ToolId = params.get("ToolId")
|
|
@@ -2944,6 +3049,9 @@ class SandboxTool(AbstractModel):
|
|
|
2944
3049
|
if params.get("CustomConfiguration") is not None:
|
|
2945
3050
|
self._CustomConfiguration = CustomConfigurationDetail()
|
|
2946
3051
|
self._CustomConfiguration._deserialize(params.get("CustomConfiguration"))
|
|
3052
|
+
if params.get("LogConfiguration") is not None:
|
|
3053
|
+
self._LogConfiguration = LogConfiguration()
|
|
3054
|
+
self._LogConfiguration._deserialize(params.get("LogConfiguration"))
|
|
2947
3055
|
memeber_set = set(params.keys())
|
|
2948
3056
|
for name, value in vars(self).items():
|
|
2949
3057
|
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.
|
|
3
|
+
Version: 3.1.47
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.47
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.47
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.45
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|