alibabacloud-ice20201109 6.4.2__py3-none-any.whl → 6.4.3__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.
@@ -1 +1 @@
1
- __version__ = '6.4.2'
1
+ __version__ = '6.4.3'
@@ -2064,15 +2064,21 @@ class AppInfoDTO(TeaModel):
2064
2064
  self,
2065
2065
  app_name: str = None,
2066
2066
  app_type: int = None,
2067
+ creation_time: str = None,
2067
2068
  gmt_create: str = None,
2069
+ gmt_modified: str = None,
2068
2070
  item_id: str = None,
2071
+ modification_time: str = None,
2069
2072
  platforms: List[AppInfoDTOPlatforms] = None,
2070
2073
  user_id: int = None,
2071
2074
  ):
2072
2075
  self.app_name = app_name
2073
2076
  self.app_type = app_type
2077
+ self.creation_time = creation_time
2074
2078
  self.gmt_create = gmt_create
2079
+ self.gmt_modified = gmt_modified
2075
2080
  self.item_id = item_id
2081
+ self.modification_time = modification_time
2076
2082
  self.platforms = platforms
2077
2083
  self.user_id = user_id
2078
2084
 
@@ -2092,10 +2098,16 @@ class AppInfoDTO(TeaModel):
2092
2098
  result['AppName'] = self.app_name
2093
2099
  if self.app_type is not None:
2094
2100
  result['AppType'] = self.app_type
2101
+ if self.creation_time is not None:
2102
+ result['CreationTime'] = self.creation_time
2095
2103
  if self.gmt_create is not None:
2096
2104
  result['GmtCreate'] = self.gmt_create
2105
+ if self.gmt_modified is not None:
2106
+ result['GmtModified'] = self.gmt_modified
2097
2107
  if self.item_id is not None:
2098
2108
  result['ItemId'] = self.item_id
2109
+ if self.modification_time is not None:
2110
+ result['ModificationTime'] = self.modification_time
2099
2111
  result['Platforms'] = []
2100
2112
  if self.platforms is not None:
2101
2113
  for k in self.platforms:
@@ -2110,10 +2122,16 @@ class AppInfoDTO(TeaModel):
2110
2122
  self.app_name = m.get('AppName')
2111
2123
  if m.get('AppType') is not None:
2112
2124
  self.app_type = m.get('AppType')
2125
+ if m.get('CreationTime') is not None:
2126
+ self.creation_time = m.get('CreationTime')
2113
2127
  if m.get('GmtCreate') is not None:
2114
2128
  self.gmt_create = m.get('GmtCreate')
2129
+ if m.get('GmtModified') is not None:
2130
+ self.gmt_modified = m.get('GmtModified')
2115
2131
  if m.get('ItemId') is not None:
2116
2132
  self.item_id = m.get('ItemId')
2133
+ if m.get('ModificationTime') is not None:
2134
+ self.modification_time = m.get('ModificationTime')
2117
2135
  self.platforms = []
2118
2136
  if m.get('Platforms') is not None:
2119
2137
  for k in m.get('Platforms'):
@@ -38529,6 +38547,8 @@ class GetSmartHandleJobResponseBodySmartJobInfo(TeaModel):
38529
38547
  class GetSmartHandleJobResponseBody(TeaModel):
38530
38548
  def __init__(
38531
38549
  self,
38550
+ error_code: str = None,
38551
+ error_message: str = None,
38532
38552
  job_id: str = None,
38533
38553
  job_result: GetSmartHandleJobResponseBodyJobResult = None,
38534
38554
  output: str = None,
@@ -38537,6 +38557,8 @@ class GetSmartHandleJobResponseBody(TeaModel):
38537
38557
  state: str = None,
38538
38558
  user_data: str = None,
38539
38559
  ):
38560
+ self.error_code = error_code
38561
+ self.error_message = error_message
38540
38562
  # The job ID.
38541
38563
  self.job_id = job_id
38542
38564
  # The job results.
@@ -38571,6 +38593,10 @@ class GetSmartHandleJobResponseBody(TeaModel):
38571
38593
  return _map
38572
38594
 
38573
38595
  result = dict()
38596
+ if self.error_code is not None:
38597
+ result['ErrorCode'] = self.error_code
38598
+ if self.error_message is not None:
38599
+ result['ErrorMessage'] = self.error_message
38574
38600
  if self.job_id is not None:
38575
38601
  result['JobId'] = self.job_id
38576
38602
  if self.job_result is not None:
@@ -38589,6 +38615,10 @@ class GetSmartHandleJobResponseBody(TeaModel):
38589
38615
 
38590
38616
  def from_map(self, m: dict = None):
38591
38617
  m = m or dict()
38618
+ if m.get('ErrorCode') is not None:
38619
+ self.error_code = m.get('ErrorCode')
38620
+ if m.get('ErrorMessage') is not None:
38621
+ self.error_message = m.get('ErrorMessage')
38592
38622
  if m.get('JobId') is not None:
38593
38623
  self.job_id = m.get('JobId')
38594
38624
  if m.get('JobResult') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ice20201109
3
- Version: 6.4.2
3
+ Version: 6.4.3
4
4
  Summary: Alibaba Cloud ICE (20201109) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -0,0 +1,8 @@
1
+ alibabacloud_ice20201109/__init__.py,sha256=XE2TO48ts0WKNWHT0cgojtzW9aGnH_SK94gmNkDZ1_U,21
2
+ alibabacloud_ice20201109/client.py,sha256=mPQWMd7DKhxR6u85H9Im3wq-5qF1BIV2YI7kdQRVuvY,1705291
3
+ alibabacloud_ice20201109/models.py,sha256=HYoF2PB-pjouvLS8I1iyAroJd4qlHDezXBagLBTKWQQ,3497927
4
+ alibabacloud_ice20201109-6.4.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ alibabacloud_ice20201109-6.4.3.dist-info/METADATA,sha256=ER190Jyb5hqV9Yw_SCC4EdEW3liwFXPbqYY21u6eOOQ,2312
6
+ alibabacloud_ice20201109-6.4.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
+ alibabacloud_ice20201109-6.4.3.dist-info/top_level.txt,sha256=Tdq86hkGJfaKKyNwqChNx5I788aFI6e_iTUmQOYYPK8,25
8
+ alibabacloud_ice20201109-6.4.3.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- alibabacloud_ice20201109/__init__.py,sha256=ahEAErDAS3b2ieWs1Jl2dFcvqD16wg5P3cpcVKSSIAE,21
2
- alibabacloud_ice20201109/client.py,sha256=mPQWMd7DKhxR6u85H9Im3wq-5qF1BIV2YI7kdQRVuvY,1705291
3
- alibabacloud_ice20201109/models.py,sha256=T13sRInNEGnFZyi93XPQHr4zLaVa3k8vK56TYfrFVlk,3496537
4
- alibabacloud_ice20201109-6.4.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
- alibabacloud_ice20201109-6.4.2.dist-info/METADATA,sha256=4hJjdFLFi4zY1lltaH2iwtFekyk9gTFqhsO_VXZKSUM,2312
6
- alibabacloud_ice20201109-6.4.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
- alibabacloud_ice20201109-6.4.2.dist-info/top_level.txt,sha256=Tdq86hkGJfaKKyNwqChNx5I788aFI6e_iTUmQOYYPK8,25
8
- alibabacloud_ice20201109-6.4.2.dist-info/RECORD,,