tencentcloud-sdk-python-tcbr 3.1.18__tar.gz → 3.1.58__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_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/setup.py +1 -1
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud/tcbr/v20220217/models.py +71 -54
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud_sdk_python_tcbr.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_tcbr-3.1.58/tencentcloud_sdk_python_tcbr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_tcbr-3.1.18/tencentcloud_sdk_python_tcbr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/README.rst +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/setup.cfg +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud/tcbr/__init__.py +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud/tcbr/v20220217/__init__.py +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud/tcbr/v20220217/errorcodes.py +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud/tcbr/v20220217/tcbr_client.py +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud/tcbr/v20220217/tcbr_client_async.py +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud_sdk_python_tcbr.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud_sdk_python_tcbr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_tcbr-3.1.18 → tencentcloud_sdk_python_tcbr-3.1.58}/tencentcloud_sdk_python_tcbr.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-tcbr
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.58
|
|
4
4
|
Summary: Tencent Cloud Tcbr 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.58
|
|
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-tcbr',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.58,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Tcbr SDK for Python',
|
|
@@ -1463,12 +1463,11 @@ class DescribeCloudRunEnvsRequest(AbstractModel):
|
|
|
1463
1463
|
|
|
1464
1464
|
def __init__(self):
|
|
1465
1465
|
r"""
|
|
1466
|
-
:param _EnvId:
|
|
1466
|
+
:param _EnvId: <p>环境ID,如果传了这个参数则只返回该环境的相关信息</p>
|
|
1467
1467
|
:type EnvId: str
|
|
1468
|
-
:param _IsVisible:
|
|
1469
|
-
如只想获取渠道A的环境 就填写IsVisible= true,Channels = ["A"], 过滤渠道A拉取其他渠道环境时填写IsVisible= false,Channels = ["A"]
|
|
1468
|
+
:param _IsVisible: <p>指定Channels字段为可见渠道列表或不可见渠道列表<br>如只想获取渠道A的环境 就填写IsVisible= true,Channels = ["A"], 过滤渠道A拉取其他渠道环境时填写IsVisible= false,Channels = ["A"]</p>
|
|
1470
1469
|
:type IsVisible: bool
|
|
1471
|
-
:param _Channels:
|
|
1470
|
+
:param _Channels: <p>渠道列表,代表可见或不可见渠道由IsVisible参数指定</p>
|
|
1472
1471
|
:type Channels: list of str
|
|
1473
1472
|
"""
|
|
1474
1473
|
self._EnvId = None
|
|
@@ -1477,7 +1476,7 @@ class DescribeCloudRunEnvsRequest(AbstractModel):
|
|
|
1477
1476
|
|
|
1478
1477
|
@property
|
|
1479
1478
|
def EnvId(self):
|
|
1480
|
-
r"""
|
|
1479
|
+
r"""<p>环境ID,如果传了这个参数则只返回该环境的相关信息</p>
|
|
1481
1480
|
:rtype: str
|
|
1482
1481
|
"""
|
|
1483
1482
|
return self._EnvId
|
|
@@ -1488,8 +1487,7 @@ class DescribeCloudRunEnvsRequest(AbstractModel):
|
|
|
1488
1487
|
|
|
1489
1488
|
@property
|
|
1490
1489
|
def IsVisible(self):
|
|
1491
|
-
r"""
|
|
1492
|
-
如只想获取渠道A的环境 就填写IsVisible= true,Channels = ["A"], 过滤渠道A拉取其他渠道环境时填写IsVisible= false,Channels = ["A"]
|
|
1490
|
+
r"""<p>指定Channels字段为可见渠道列表或不可见渠道列表<br>如只想获取渠道A的环境 就填写IsVisible= true,Channels = ["A"], 过滤渠道A拉取其他渠道环境时填写IsVisible= false,Channels = ["A"]</p>
|
|
1493
1491
|
:rtype: bool
|
|
1494
1492
|
"""
|
|
1495
1493
|
return self._IsVisible
|
|
@@ -1500,7 +1498,7 @@ class DescribeCloudRunEnvsRequest(AbstractModel):
|
|
|
1500
1498
|
|
|
1501
1499
|
@property
|
|
1502
1500
|
def Channels(self):
|
|
1503
|
-
r"""
|
|
1501
|
+
r"""<p>渠道列表,代表可见或不可见渠道由IsVisible参数指定</p>
|
|
1504
1502
|
:rtype: list of str
|
|
1505
1503
|
"""
|
|
1506
1504
|
return self._Channels
|
|
@@ -1531,7 +1529,7 @@ class DescribeCloudRunEnvsResponse(AbstractModel):
|
|
|
1531
1529
|
|
|
1532
1530
|
def __init__(self):
|
|
1533
1531
|
r"""
|
|
1534
|
-
:param _EnvList:
|
|
1532
|
+
:param _EnvList: <p>环境信息列表</p>
|
|
1535
1533
|
:type EnvList: list of EnvInfo
|
|
1536
1534
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1537
1535
|
:type RequestId: str
|
|
@@ -1541,7 +1539,7 @@ class DescribeCloudRunEnvsResponse(AbstractModel):
|
|
|
1541
1539
|
|
|
1542
1540
|
@property
|
|
1543
1541
|
def EnvList(self):
|
|
1544
|
-
r"""
|
|
1542
|
+
r"""<p>环境信息列表</p>
|
|
1545
1543
|
:rtype: list of EnvInfo
|
|
1546
1544
|
"""
|
|
1547
1545
|
return self._EnvList
|
|
@@ -2525,13 +2523,13 @@ class DescribeVersionDetailRequest(AbstractModel):
|
|
|
2525
2523
|
|
|
2526
2524
|
def __init__(self):
|
|
2527
2525
|
r"""
|
|
2528
|
-
:param _EnvId:
|
|
2526
|
+
:param _EnvId: <p>环境Id</p>
|
|
2529
2527
|
:type EnvId: str
|
|
2530
|
-
:param _ServerName:
|
|
2528
|
+
:param _ServerName: <p>服务名</p>
|
|
2531
2529
|
:type ServerName: str
|
|
2532
|
-
:param _VersionName:
|
|
2530
|
+
:param _VersionName: <p>版本名</p>
|
|
2533
2531
|
:type VersionName: str
|
|
2534
|
-
:param _Channel: channel
|
|
2532
|
+
:param _Channel: <p>channel</p>
|
|
2535
2533
|
:type Channel: str
|
|
2536
2534
|
"""
|
|
2537
2535
|
self._EnvId = None
|
|
@@ -2541,7 +2539,7 @@ class DescribeVersionDetailRequest(AbstractModel):
|
|
|
2541
2539
|
|
|
2542
2540
|
@property
|
|
2543
2541
|
def EnvId(self):
|
|
2544
|
-
r"""
|
|
2542
|
+
r"""<p>环境Id</p>
|
|
2545
2543
|
:rtype: str
|
|
2546
2544
|
"""
|
|
2547
2545
|
return self._EnvId
|
|
@@ -2552,7 +2550,7 @@ class DescribeVersionDetailRequest(AbstractModel):
|
|
|
2552
2550
|
|
|
2553
2551
|
@property
|
|
2554
2552
|
def ServerName(self):
|
|
2555
|
-
r"""
|
|
2553
|
+
r"""<p>服务名</p>
|
|
2556
2554
|
:rtype: str
|
|
2557
2555
|
"""
|
|
2558
2556
|
return self._ServerName
|
|
@@ -2563,7 +2561,7 @@ class DescribeVersionDetailRequest(AbstractModel):
|
|
|
2563
2561
|
|
|
2564
2562
|
@property
|
|
2565
2563
|
def VersionName(self):
|
|
2566
|
-
r"""
|
|
2564
|
+
r"""<p>版本名</p>
|
|
2567
2565
|
:rtype: str
|
|
2568
2566
|
"""
|
|
2569
2567
|
return self._VersionName
|
|
@@ -2574,7 +2572,7 @@ class DescribeVersionDetailRequest(AbstractModel):
|
|
|
2574
2572
|
|
|
2575
2573
|
@property
|
|
2576
2574
|
def Channel(self):
|
|
2577
|
-
r"""channel
|
|
2575
|
+
r"""<p>channel</p>
|
|
2578
2576
|
:rtype: str
|
|
2579
2577
|
"""
|
|
2580
2578
|
return self._Channel
|
|
@@ -2606,46 +2604,49 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2606
2604
|
|
|
2607
2605
|
def __init__(self):
|
|
2608
2606
|
r"""
|
|
2609
|
-
:param _Name:
|
|
2607
|
+
:param _Name: <p>版本名</p>
|
|
2610
2608
|
:type Name: str
|
|
2611
|
-
:param _Port:
|
|
2609
|
+
:param _Port: <p>端口号</p>
|
|
2612
2610
|
:type Port: int
|
|
2613
|
-
:param _Cpu: cpu
|
|
2611
|
+
:param _Cpu: <p>cpu 规格</p>
|
|
2614
2612
|
:type Cpu: float
|
|
2615
|
-
:param _Mem: mem
|
|
2613
|
+
:param _Mem: <p>mem 规格</p>
|
|
2616
2614
|
:type Mem: float
|
|
2617
|
-
:param _MinNum:
|
|
2615
|
+
:param _MinNum: <p>最小副本数</p>
|
|
2618
2616
|
:type MinNum: int
|
|
2619
|
-
:param _MaxNum:
|
|
2617
|
+
:param _MaxNum: <p>最大副本数</p>
|
|
2620
2618
|
:type MaxNum: int
|
|
2621
|
-
:param _PolicyDetails:
|
|
2619
|
+
:param _PolicyDetails: <p>扩缩容策略</p>
|
|
2622
2620
|
:type PolicyDetails: list of HpaPolicy
|
|
2623
|
-
:param _Dockerfile: Dockerfile path
|
|
2621
|
+
:param _Dockerfile: <p>Dockerfile path</p>
|
|
2624
2622
|
:type Dockerfile: str
|
|
2625
|
-
:param _BuildDir:
|
|
2623
|
+
:param _BuildDir: <p>目标目录</p>
|
|
2626
2624
|
:type BuildDir: str
|
|
2627
|
-
:param _EnvParams:
|
|
2625
|
+
:param _EnvParams: <p>环境变量</p>
|
|
2628
2626
|
:type EnvParams: str
|
|
2629
|
-
:param _Status:
|
|
2627
|
+
:param _Status: <p>状态</p>
|
|
2630
2628
|
:type Status: str
|
|
2631
|
-
:param _CreatedTime:
|
|
2629
|
+
:param _CreatedTime: <p>创建时间</p>
|
|
2632
2630
|
:type CreatedTime: str
|
|
2633
|
-
:param _UpdatedTime:
|
|
2631
|
+
:param _UpdatedTime: <p>更新时间</p>
|
|
2634
2632
|
:type UpdatedTime: str
|
|
2635
|
-
:param _LogPath:
|
|
2633
|
+
:param _LogPath: <p>日志采集路径</p>
|
|
2636
2634
|
:type LogPath: str
|
|
2637
|
-
:param _EntryPoint: entryPoint
|
|
2635
|
+
:param _EntryPoint: <p>entryPoint</p>
|
|
2638
2636
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2639
2637
|
:type EntryPoint: str
|
|
2640
|
-
:param _Cmd: Cmd
|
|
2638
|
+
:param _Cmd: <p>Cmd</p>
|
|
2641
2639
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2642
2640
|
:type Cmd: str
|
|
2643
|
-
:param _VpcConf: vpc conf
|
|
2641
|
+
:param _VpcConf: <p>vpc conf</p>
|
|
2644
2642
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2645
2643
|
:type VpcConf: :class:`tencentcloud.tcbr.v20220217.models.VpcConf`
|
|
2646
|
-
:param _VolumesConf: volume conf
|
|
2644
|
+
:param _VolumesConf: <p>volume conf</p>
|
|
2647
2645
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2648
2646
|
:type VolumesConf: list of VolumeConf
|
|
2647
|
+
:param _BuildPacks: <p>buildpack 信息</p>
|
|
2648
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2649
|
+
:type BuildPacks: :class:`tencentcloud.tcbr.v20220217.models.BuildPacksInfo`
|
|
2649
2650
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2650
2651
|
:type RequestId: str
|
|
2651
2652
|
"""
|
|
@@ -2667,11 +2668,12 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2667
2668
|
self._Cmd = None
|
|
2668
2669
|
self._VpcConf = None
|
|
2669
2670
|
self._VolumesConf = None
|
|
2671
|
+
self._BuildPacks = None
|
|
2670
2672
|
self._RequestId = None
|
|
2671
2673
|
|
|
2672
2674
|
@property
|
|
2673
2675
|
def Name(self):
|
|
2674
|
-
r"""
|
|
2676
|
+
r"""<p>版本名</p>
|
|
2675
2677
|
:rtype: str
|
|
2676
2678
|
"""
|
|
2677
2679
|
return self._Name
|
|
@@ -2682,7 +2684,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2682
2684
|
|
|
2683
2685
|
@property
|
|
2684
2686
|
def Port(self):
|
|
2685
|
-
r"""
|
|
2687
|
+
r"""<p>端口号</p>
|
|
2686
2688
|
:rtype: int
|
|
2687
2689
|
"""
|
|
2688
2690
|
return self._Port
|
|
@@ -2693,7 +2695,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2693
2695
|
|
|
2694
2696
|
@property
|
|
2695
2697
|
def Cpu(self):
|
|
2696
|
-
r"""cpu
|
|
2698
|
+
r"""<p>cpu 规格</p>
|
|
2697
2699
|
:rtype: float
|
|
2698
2700
|
"""
|
|
2699
2701
|
return self._Cpu
|
|
@@ -2704,7 +2706,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2704
2706
|
|
|
2705
2707
|
@property
|
|
2706
2708
|
def Mem(self):
|
|
2707
|
-
r"""mem
|
|
2709
|
+
r"""<p>mem 规格</p>
|
|
2708
2710
|
:rtype: float
|
|
2709
2711
|
"""
|
|
2710
2712
|
return self._Mem
|
|
@@ -2715,7 +2717,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2715
2717
|
|
|
2716
2718
|
@property
|
|
2717
2719
|
def MinNum(self):
|
|
2718
|
-
r"""
|
|
2720
|
+
r"""<p>最小副本数</p>
|
|
2719
2721
|
:rtype: int
|
|
2720
2722
|
"""
|
|
2721
2723
|
return self._MinNum
|
|
@@ -2726,7 +2728,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2726
2728
|
|
|
2727
2729
|
@property
|
|
2728
2730
|
def MaxNum(self):
|
|
2729
|
-
r"""
|
|
2731
|
+
r"""<p>最大副本数</p>
|
|
2730
2732
|
:rtype: int
|
|
2731
2733
|
"""
|
|
2732
2734
|
return self._MaxNum
|
|
@@ -2737,7 +2739,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2737
2739
|
|
|
2738
2740
|
@property
|
|
2739
2741
|
def PolicyDetails(self):
|
|
2740
|
-
r"""
|
|
2742
|
+
r"""<p>扩缩容策略</p>
|
|
2741
2743
|
:rtype: list of HpaPolicy
|
|
2742
2744
|
"""
|
|
2743
2745
|
return self._PolicyDetails
|
|
@@ -2748,7 +2750,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2748
2750
|
|
|
2749
2751
|
@property
|
|
2750
2752
|
def Dockerfile(self):
|
|
2751
|
-
r"""Dockerfile path
|
|
2753
|
+
r"""<p>Dockerfile path</p>
|
|
2752
2754
|
:rtype: str
|
|
2753
2755
|
"""
|
|
2754
2756
|
return self._Dockerfile
|
|
@@ -2759,7 +2761,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2759
2761
|
|
|
2760
2762
|
@property
|
|
2761
2763
|
def BuildDir(self):
|
|
2762
|
-
r"""
|
|
2764
|
+
r"""<p>目标目录</p>
|
|
2763
2765
|
:rtype: str
|
|
2764
2766
|
"""
|
|
2765
2767
|
return self._BuildDir
|
|
@@ -2770,7 +2772,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2770
2772
|
|
|
2771
2773
|
@property
|
|
2772
2774
|
def EnvParams(self):
|
|
2773
|
-
r"""
|
|
2775
|
+
r"""<p>环境变量</p>
|
|
2774
2776
|
:rtype: str
|
|
2775
2777
|
"""
|
|
2776
2778
|
return self._EnvParams
|
|
@@ -2781,7 +2783,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2781
2783
|
|
|
2782
2784
|
@property
|
|
2783
2785
|
def Status(self):
|
|
2784
|
-
r"""
|
|
2786
|
+
r"""<p>状态</p>
|
|
2785
2787
|
:rtype: str
|
|
2786
2788
|
"""
|
|
2787
2789
|
return self._Status
|
|
@@ -2792,7 +2794,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2792
2794
|
|
|
2793
2795
|
@property
|
|
2794
2796
|
def CreatedTime(self):
|
|
2795
|
-
r"""
|
|
2797
|
+
r"""<p>创建时间</p>
|
|
2796
2798
|
:rtype: str
|
|
2797
2799
|
"""
|
|
2798
2800
|
return self._CreatedTime
|
|
@@ -2803,7 +2805,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2803
2805
|
|
|
2804
2806
|
@property
|
|
2805
2807
|
def UpdatedTime(self):
|
|
2806
|
-
r"""
|
|
2808
|
+
r"""<p>更新时间</p>
|
|
2807
2809
|
:rtype: str
|
|
2808
2810
|
"""
|
|
2809
2811
|
return self._UpdatedTime
|
|
@@ -2814,7 +2816,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2814
2816
|
|
|
2815
2817
|
@property
|
|
2816
2818
|
def LogPath(self):
|
|
2817
|
-
r"""
|
|
2819
|
+
r"""<p>日志采集路径</p>
|
|
2818
2820
|
:rtype: str
|
|
2819
2821
|
"""
|
|
2820
2822
|
return self._LogPath
|
|
@@ -2825,7 +2827,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2825
2827
|
|
|
2826
2828
|
@property
|
|
2827
2829
|
def EntryPoint(self):
|
|
2828
|
-
r"""entryPoint
|
|
2830
|
+
r"""<p>entryPoint</p>
|
|
2829
2831
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2830
2832
|
:rtype: str
|
|
2831
2833
|
"""
|
|
@@ -2837,7 +2839,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2837
2839
|
|
|
2838
2840
|
@property
|
|
2839
2841
|
def Cmd(self):
|
|
2840
|
-
r"""Cmd
|
|
2842
|
+
r"""<p>Cmd</p>
|
|
2841
2843
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2842
2844
|
:rtype: str
|
|
2843
2845
|
"""
|
|
@@ -2849,7 +2851,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2849
2851
|
|
|
2850
2852
|
@property
|
|
2851
2853
|
def VpcConf(self):
|
|
2852
|
-
r"""vpc conf
|
|
2854
|
+
r"""<p>vpc conf</p>
|
|
2853
2855
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2854
2856
|
:rtype: :class:`tencentcloud.tcbr.v20220217.models.VpcConf`
|
|
2855
2857
|
"""
|
|
@@ -2861,7 +2863,7 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2861
2863
|
|
|
2862
2864
|
@property
|
|
2863
2865
|
def VolumesConf(self):
|
|
2864
|
-
r"""volume conf
|
|
2866
|
+
r"""<p>volume conf</p>
|
|
2865
2867
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2866
2868
|
:rtype: list of VolumeConf
|
|
2867
2869
|
"""
|
|
@@ -2871,6 +2873,18 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2871
2873
|
def VolumesConf(self, VolumesConf):
|
|
2872
2874
|
self._VolumesConf = VolumesConf
|
|
2873
2875
|
|
|
2876
|
+
@property
|
|
2877
|
+
def BuildPacks(self):
|
|
2878
|
+
r"""<p>buildpack 信息</p>
|
|
2879
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2880
|
+
:rtype: :class:`tencentcloud.tcbr.v20220217.models.BuildPacksInfo`
|
|
2881
|
+
"""
|
|
2882
|
+
return self._BuildPacks
|
|
2883
|
+
|
|
2884
|
+
@BuildPacks.setter
|
|
2885
|
+
def BuildPacks(self, BuildPacks):
|
|
2886
|
+
self._BuildPacks = BuildPacks
|
|
2887
|
+
|
|
2874
2888
|
@property
|
|
2875
2889
|
def RequestId(self):
|
|
2876
2890
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2914,6 +2928,9 @@ class DescribeVersionDetailResponse(AbstractModel):
|
|
|
2914
2928
|
obj = VolumeConf()
|
|
2915
2929
|
obj._deserialize(item)
|
|
2916
2930
|
self._VolumesConf.append(obj)
|
|
2931
|
+
if params.get("BuildPacks") is not None:
|
|
2932
|
+
self._BuildPacks = BuildPacksInfo()
|
|
2933
|
+
self._BuildPacks._deserialize(params.get("BuildPacks"))
|
|
2917
2934
|
self._RequestId = params.get("RequestId")
|
|
2918
2935
|
|
|
2919
2936
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-tcbr
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.58
|
|
4
4
|
Summary: Tencent Cloud Tcbr 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.58
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.58
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.18
|
|
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
|