tencentcloud-sdk-python-ags 3.1.77__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.77 → tencentcloud_sdk_python_ags-3.1.80}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/setup.py +1 -1
  3. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/models.py +100 -0
  5. {tencentcloud_sdk_python_ags-3.1.77 → 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.77/tencentcloud_sdk_python_ags.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/README.rst +0 -0
  9. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/__init__.py +0 -0
  11. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/__init__.py +0 -0
  12. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/ags_client.py +0 -0
  13. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/ags_client_async.py +0 -0
  14. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud/ags/v20250920/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_ags-3.1.77 → tencentcloud_sdk_python_ags-3.1.80}/tencentcloud_sdk_python_ags.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_ags-3.1.77 → 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.77 → 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.77
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.77
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.77,<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.77'
17
+ __version__ = '3.1.80'
@@ -623,6 +623,8 @@ class CreateSandboxToolRequest(AbstractModel):
623
623
  :type CustomConfiguration: :class:`tencentcloud.ags.v20250920.models.CustomConfiguration`
624
624
  :param _LogConfiguration: <p>沙箱工具日志推送相关配置</p>
625
625
  :type LogConfiguration: :class:`tencentcloud.ags.v20250920.models.LogConfiguration`
626
+ :param _Persistent: <p>常驻沙箱标识</p>
627
+ :type Persistent: bool
626
628
  """
627
629
  self._ToolName = None
628
630
  self._ToolType = None
@@ -635,6 +637,7 @@ class CreateSandboxToolRequest(AbstractModel):
635
637
  self._StorageMounts = None
636
638
  self._CustomConfiguration = None
637
639
  self._LogConfiguration = None
640
+ self._Persistent = None
638
641
 
639
642
  @property
640
643
  def ToolName(self):
@@ -757,6 +760,17 @@ class CreateSandboxToolRequest(AbstractModel):
757
760
  def LogConfiguration(self, LogConfiguration):
758
761
  self._LogConfiguration = LogConfiguration
759
762
 
763
+ @property
764
+ def Persistent(self):
765
+ r"""<p>常驻沙箱标识</p>
766
+ :rtype: bool
767
+ """
768
+ return self._Persistent
769
+
770
+ @Persistent.setter
771
+ def Persistent(self, Persistent):
772
+ self._Persistent = Persistent
773
+
760
774
 
761
775
  def _deserialize(self, params):
762
776
  self._ToolName = params.get("ToolName")
@@ -786,6 +800,7 @@ class CreateSandboxToolRequest(AbstractModel):
786
800
  if params.get("LogConfiguration") is not None:
787
801
  self._LogConfiguration = LogConfiguration()
788
802
  self._LogConfiguration._deserialize(params.get("LogConfiguration"))
803
+ self._Persistent = params.get("Persistent")
789
804
  memeber_set = set(params.keys())
790
805
  for name, value in vars(self).items():
791
806
  property_name = name[1:]
@@ -2201,8 +2216,11 @@ class LogConfiguration(AbstractModel):
2201
2216
  r"""
2202
2217
  :param _CLSConfig: <p>日志推送CLS的配置。</p>
2203
2218
  :type CLSConfig: :class:`tencentcloud.ags.v20250920.models.CLSConfig`
2219
+ :param _LogSources: <p>日志源配置</p>
2220
+ :type LogSources: :class:`tencentcloud.ags.v20250920.models.LogSources`
2204
2221
  """
2205
2222
  self._CLSConfig = None
2223
+ self._LogSources = None
2206
2224
 
2207
2225
  @property
2208
2226
  def CLSConfig(self):
@@ -2215,11 +2233,63 @@ class LogConfiguration(AbstractModel):
2215
2233
  def CLSConfig(self, CLSConfig):
2216
2234
  self._CLSConfig = CLSConfig
2217
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
+
2218
2247
 
2219
2248
  def _deserialize(self, params):
2220
2249
  if params.get("CLSConfig") is not None:
2221
2250
  self._CLSConfig = CLSConfig()
2222
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")
2223
2293
  memeber_set = set(params.keys())
2224
2294
  for name, value in vars(self).items():
2225
2295
  property_name = name[1:]
@@ -2788,6 +2858,8 @@ class SandboxInstance(AbstractModel):
2788
2858
  :type ToolName: str
2789
2859
  :param _Status: <p>实例状态:STARTING(启动中)、RUNNING(运行中)、STOPPING(停止中)、STOPPED(已停止)、STOP_FAILED(停止失败)、FAILED(失败状态)</p>
2790
2860
  :type Status: str
2861
+ :param _Persistent: <p>是否常驻实例</p>
2862
+ :type Persistent: bool
2791
2863
  :param _TimeoutSeconds: <p>超时时间(秒),null 表示无超时设置</p>
2792
2864
  :type TimeoutSeconds: int
2793
2865
  :param _ExpiresAt: <p>过期时间(ISO 8601 格式),null 表示无过期时间</p>
@@ -2811,6 +2883,7 @@ class SandboxInstance(AbstractModel):
2811
2883
  self._ToolId = None
2812
2884
  self._ToolName = None
2813
2885
  self._Status = None
2886
+ self._Persistent = None
2814
2887
  self._TimeoutSeconds = None
2815
2888
  self._ExpiresAt = None
2816
2889
  self._StopReason = None
@@ -2865,6 +2938,17 @@ class SandboxInstance(AbstractModel):
2865
2938
  def Status(self, Status):
2866
2939
  self._Status = Status
2867
2940
 
2941
+ @property
2942
+ def Persistent(self):
2943
+ r"""<p>是否常驻实例</p>
2944
+ :rtype: bool
2945
+ """
2946
+ return self._Persistent
2947
+
2948
+ @Persistent.setter
2949
+ def Persistent(self, Persistent):
2950
+ self._Persistent = Persistent
2951
+
2868
2952
  @property
2869
2953
  def TimeoutSeconds(self):
2870
2954
  r"""<p>超时时间(秒),null 表示无超时设置</p>
@@ -2970,6 +3054,7 @@ class SandboxInstance(AbstractModel):
2970
3054
  self._ToolId = params.get("ToolId")
2971
3055
  self._ToolName = params.get("ToolName")
2972
3056
  self._Status = params.get("Status")
3057
+ self._Persistent = params.get("Persistent")
2973
3058
  self._TimeoutSeconds = params.get("TimeoutSeconds")
2974
3059
  self._ExpiresAt = params.get("ExpiresAt")
2975
3060
  self._StopReason = params.get("StopReason")
@@ -3018,6 +3103,8 @@ class SandboxTool(AbstractModel):
3018
3103
  :type Status: str
3019
3104
  :param _Description: <p>沙箱工具描述信息,最大长度 200 字符</p>
3020
3105
  :type Description: str
3106
+ :param _Persistent: <p>是否常驻沙箱</p>
3107
+ :type Persistent: bool
3021
3108
  :param _DefaultTimeoutSeconds: <p>默认超时时间,支持格式:5m、300s、1h 等,不指定则使用系统默认值(5 分钟)。最大 24 小时</p>
3022
3109
  :type DefaultTimeoutSeconds: int
3023
3110
  :param _NetworkConfiguration: <p>网络配置</p>
@@ -3044,6 +3131,7 @@ class SandboxTool(AbstractModel):
3044
3131
  self._ToolType = None
3045
3132
  self._Status = None
3046
3133
  self._Description = None
3134
+ self._Persistent = None
3047
3135
  self._DefaultTimeoutSeconds = None
3048
3136
  self._NetworkConfiguration = None
3049
3137
  self._Tags = None
@@ -3110,6 +3198,17 @@ class SandboxTool(AbstractModel):
3110
3198
  def Description(self, Description):
3111
3199
  self._Description = Description
3112
3200
 
3201
+ @property
3202
+ def Persistent(self):
3203
+ r"""<p>是否常驻沙箱</p>
3204
+ :rtype: bool
3205
+ """
3206
+ return self._Persistent
3207
+
3208
+ @Persistent.setter
3209
+ def Persistent(self, Persistent):
3210
+ self._Persistent = Persistent
3211
+
3113
3212
  @property
3114
3213
  def DefaultTimeoutSeconds(self):
3115
3214
  r"""<p>默认超时时间,支持格式:5m、300s、1h 等,不指定则使用系统默认值(5 分钟)。最大 24 小时</p>
@@ -3227,6 +3326,7 @@ class SandboxTool(AbstractModel):
3227
3326
  self._ToolType = params.get("ToolType")
3228
3327
  self._Status = params.get("Status")
3229
3328
  self._Description = params.get("Description")
3329
+ self._Persistent = params.get("Persistent")
3230
3330
  self._DefaultTimeoutSeconds = params.get("DefaultTimeoutSeconds")
3231
3331
  if params.get("NetworkConfiguration") is not None:
3232
3332
  self._NetworkConfiguration = NetworkConfiguration()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-ags
3
- Version: 3.1.77
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.77
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.77