File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
src/Models/DescribeApplicationAttributeResponseBody Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1+ 2025-11-14 Version: 6.1.5
2+ - Update API DescribeApplicationAttribute: add response parameters Body.Endpoints.$.PortDescription.
3+
4+
152025-11-06 Version: 6.1.4
26- Update API DescribeAIDBClusterAttribute: add response parameters Body.DBNodes.$.CreationTime.
37
Original file line number Diff line number Diff line change @@ -32,12 +32,18 @@ class endpoints extends Model
3232 * @var string
3333 */
3434 public $ port ;
35+
36+ /**
37+ * @var string
38+ */
39+ public $ portDescription ;
3540 protected $ _name = [
3641 'description ' => 'Description ' ,
3742 'endpointId ' => 'EndpointId ' ,
3843 'IP ' => 'IP ' ,
3944 'netType ' => 'NetType ' ,
4045 'port ' => 'Port ' ,
46+ 'portDescription ' => 'PortDescription ' ,
4147 ];
4248
4349 public function validate ()
@@ -68,6 +74,10 @@ public function toArray($noStream = false)
6874 $ res ['Port ' ] = $ this ->port ;
6975 }
7076
77+ if (null !== $ this ->portDescription ) {
78+ $ res ['PortDescription ' ] = $ this ->portDescription ;
79+ }
80+
7181 return $ res ;
7282 }
7383
@@ -99,6 +109,10 @@ public static function fromMap($map = [])
99109 $ model ->port = $ map ['Port ' ];
100110 }
101111
112+ if (isset ($ map ['PortDescription ' ])) {
113+ $ model ->portDescription = $ map ['PortDescription ' ];
114+ }
115+
102116 return $ model ;
103117 }
104118}
You can’t perform that action at this time.
0 commit comments