@@ -16755,6 +16755,7 @@ def __init__(
1675516755 application_id: str = None,
1675616756 application_type: str = None,
1675716757 creation_time: str = None,
16758+ dbcluster_id: str = None,
1675816759 description: str = None,
1675916760 endpoints: DescribeApplicationsResponseBodyItemsApplicationsEndpoints = None,
1676016761 engine_version: str = None,
@@ -16769,6 +16770,7 @@ def __init__(
1676916770 self.application_id = application_id
1677016771 self.application_type = application_type
1677116772 self.creation_time = creation_time
16773+ self.dbcluster_id = dbcluster_id
1677216774 self.description = description
1677316775 self.endpoints = endpoints
1677416776 self.engine_version = engine_version
@@ -16796,6 +16798,8 @@ def to_map(self):
1679616798 result['ApplicationType'] = self.application_type
1679716799 if self.creation_time is not None:
1679816800 result['CreationTime'] = self.creation_time
16801+ if self.dbcluster_id is not None:
16802+ result['DBClusterId'] = self.dbcluster_id
1679916803 if self.description is not None:
1680016804 result['Description'] = self.description
1680116805 if self.endpoints is not None:
@@ -16826,6 +16830,8 @@ def from_map(self, m: dict = None):
1682616830 self.application_type = m.get('ApplicationType')
1682716831 if m.get('CreationTime') is not None:
1682816832 self.creation_time = m.get('CreationTime')
16833+ if m.get('DBClusterId') is not None:
16834+ self.dbcluster_id = m.get('DBClusterId')
1682916835 if m.get('Description') is not None:
1683016836 self.description = m.get('Description')
1683116837 if m.get('Endpoints') is not None:
0 commit comments