tencentcloud-sdk-python-intl-en 3.0.1104__py2.py3-none-any.whl → 3.0.1105__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cvm/v20170312/errorcodes.py +2 -2
- tencentcloud/cvm/v20170312/models.py +38 -0
- {tencentcloud_sdk_python_intl_en-3.0.1104.dist-info → tencentcloud_sdk_python_intl_en-3.0.1105.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1104.dist-info → tencentcloud_sdk_python_intl_en-3.0.1105.dist-info}/RECORD +7 -7
- {tencentcloud_sdk_python_intl_en-3.0.1104.dist-info → tencentcloud_sdk_python_intl_en-3.0.1105.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1104.dist-info → tencentcloud_sdk_python_intl_en-3.0.1105.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -269,7 +269,7 @@ INVALIDPARAMETER_INVALIDDEPENDENCE = 'InvalidParameter.InvalidDependence'
|
|
|
269
269
|
# Invalid VPC IP address format.
|
|
270
270
|
INVALIDPARAMETER_INVALIDIPFORMAT = 'InvalidParameter.InvalidIpFormat'
|
|
271
271
|
|
|
272
|
-
#
|
|
272
|
+
# The specified KMS key ID is invalid.
|
|
273
273
|
INVALIDPARAMETER_INVALIDKMSKEYID = 'InvalidParameter.InvalidKmsKeyId'
|
|
274
274
|
|
|
275
275
|
# `ImageIds` and `Filters` cannot be specified at the same time.
|
|
@@ -1070,7 +1070,7 @@ UNSUPPORTEDOPERATION_STOPPEDMODESTOPCHARGING = 'UnsupportedOperation.StoppedMode
|
|
|
1070
1070
|
# Configuration adjustment of the same type is not supported for instances with no charges when shut down.
|
|
1071
1071
|
UNSUPPORTEDOPERATION_STOPPEDMODESTOPCHARGINGSAMEFAMILY = 'UnsupportedOperation.StoppedModeStopChargingSameFamily'
|
|
1072
1072
|
|
|
1073
|
-
#
|
|
1073
|
+
# The specified image does not support synchronization to an encrypted custom image.
|
|
1074
1074
|
UNSUPPORTEDOPERATION_SYNCENCRYPTIMAGENOTSUPPORT = 'UnsupportedOperation.SyncEncryptImageNotSupport'
|
|
1075
1075
|
|
|
1076
1076
|
#
|
|
@@ -16218,12 +16218,22 @@ Default value: false.
|
|
|
16218
16218
|
|
|
16219
16219
|
Default value: false.
|
|
16220
16220
|
:type ImageSetRequired: bool
|
|
16221
|
+
:param _Encrypt: Whether to synchronize as an encrypted custom image.
|
|
16222
|
+
Default value is `false`.
|
|
16223
|
+
Synchronization to an encrypted custom image is only supported within the same region.
|
|
16224
|
+
:type Encrypt: bool
|
|
16225
|
+
:param _KmsKeyId: KMS key ID used when synchronizing to an encrypted custom image.
|
|
16226
|
+
This parameter is valid only synchronizing to an encrypted image.
|
|
16227
|
+
If KmsKeyId is not specified, the default CBS cloud product KMS key is used.
|
|
16228
|
+
:type KmsKeyId: str
|
|
16221
16229
|
"""
|
|
16222
16230
|
self._ImageIds = None
|
|
16223
16231
|
self._DestinationRegions = None
|
|
16224
16232
|
self._DryRun = None
|
|
16225
16233
|
self._ImageName = None
|
|
16226
16234
|
self._ImageSetRequired = None
|
|
16235
|
+
self._Encrypt = None
|
|
16236
|
+
self._KmsKeyId = None
|
|
16227
16237
|
|
|
16228
16238
|
@property
|
|
16229
16239
|
def ImageIds(self):
|
|
@@ -16284,6 +16294,32 @@ Default value: false.
|
|
|
16284
16294
|
def ImageSetRequired(self, ImageSetRequired):
|
|
16285
16295
|
self._ImageSetRequired = ImageSetRequired
|
|
16286
16296
|
|
|
16297
|
+
@property
|
|
16298
|
+
def Encrypt(self):
|
|
16299
|
+
"""Whether to synchronize as an encrypted custom image.
|
|
16300
|
+
Default value is `false`.
|
|
16301
|
+
Synchronization to an encrypted custom image is only supported within the same region.
|
|
16302
|
+
:rtype: bool
|
|
16303
|
+
"""
|
|
16304
|
+
return self._Encrypt
|
|
16305
|
+
|
|
16306
|
+
@Encrypt.setter
|
|
16307
|
+
def Encrypt(self, Encrypt):
|
|
16308
|
+
self._Encrypt = Encrypt
|
|
16309
|
+
|
|
16310
|
+
@property
|
|
16311
|
+
def KmsKeyId(self):
|
|
16312
|
+
"""KMS key ID used when synchronizing to an encrypted custom image.
|
|
16313
|
+
This parameter is valid only synchronizing to an encrypted image.
|
|
16314
|
+
If KmsKeyId is not specified, the default CBS cloud product KMS key is used.
|
|
16315
|
+
:rtype: str
|
|
16316
|
+
"""
|
|
16317
|
+
return self._KmsKeyId
|
|
16318
|
+
|
|
16319
|
+
@KmsKeyId.setter
|
|
16320
|
+
def KmsKeyId(self, KmsKeyId):
|
|
16321
|
+
self._KmsKeyId = KmsKeyId
|
|
16322
|
+
|
|
16287
16323
|
|
|
16288
16324
|
def _deserialize(self, params):
|
|
16289
16325
|
self._ImageIds = params.get("ImageIds")
|
|
@@ -16291,6 +16327,8 @@ Default value: false.
|
|
|
16291
16327
|
self._DryRun = params.get("DryRun")
|
|
16292
16328
|
self._ImageName = params.get("ImageName")
|
|
16293
16329
|
self._ImageSetRequired = params.get("ImageSetRequired")
|
|
16330
|
+
self._Encrypt = params.get("Encrypt")
|
|
16331
|
+
self._KmsKeyId = params.get("KmsKeyId")
|
|
16294
16332
|
memeber_set = set(params.keys())
|
|
16295
16333
|
for name, value in vars(self).items():
|
|
16296
16334
|
property_name = name[1:]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=UpWJ7jzwRDYR58ZjPAuyp49_WsdXuVv3xx2aHfzGuzk,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -175,8 +175,8 @@ tencentcloud/csip/v20221121/models.py,sha256=hAdedmdDrD4HWsZQb7SdqtymGVFHoXVZYqk
|
|
|
175
175
|
tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
176
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
177
|
tencentcloud/cvm/v20170312/cvm_client.py,sha256=I6g0W63L_O3AkgADmtruN_O0uyuP-BRV3_oMF-lxTxI,91118
|
|
178
|
-
tencentcloud/cvm/v20170312/errorcodes.py,sha256=
|
|
179
|
-
tencentcloud/cvm/v20170312/models.py,sha256=
|
|
178
|
+
tencentcloud/cvm/v20170312/errorcodes.py,sha256=YOQ62O6pbrK1Mv-0KpagJZmrYD2zxreMJI4_MGajKpI,52320
|
|
179
|
+
tencentcloud/cvm/v20170312/models.py,sha256=YPjGcuQ48k_a4xrj_xSI6b7IAZ8-GerAAmvLa3NHqI4,713165
|
|
180
180
|
tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
181
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
182
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=XlAOIbfCE2PH5kdpATOrUkuE7eZd74lqbvhm2UDECi0,444132
|
|
@@ -609,7 +609,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
609
609
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
610
610
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
611
611
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
612
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
613
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
614
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
615
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
612
|
+
tencentcloud_sdk_python_intl_en-3.0.1105.dist-info/METADATA,sha256=ujJW3E0G27998bDhvOwnShlkjaYXB503Op8IJ_17WqE,1628
|
|
613
|
+
tencentcloud_sdk_python_intl_en-3.0.1105.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
614
|
+
tencentcloud_sdk_python_intl_en-3.0.1105.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
615
|
+
tencentcloud_sdk_python_intl_en-3.0.1105.dist-info/RECORD,,
|
|
File without changes
|