File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414# limitations under the License.
1515
1616
17- __version__ = '1.5.8.22 '
17+ __version__ = '1.5.8.23 '
Original file line number Diff line number Diff line change @@ -90,15 +90,25 @@ class ListProjectsRequest(AbstractModel):
9090
9191 def __init__ (self ):
9292 r"""查看工程列表
93+ :param ProjectName: 工程名称
94+ :type PathPrefix: String
95+ :param Description: 工程描述
96+ :type PathPrefix: String
9397 :param Page: 返回记录的页码,从0开始
9498 :type PathPrefix: Int
9599 :param Size: 每页返回最大条目,最大值500
96100 :type PathPrefix: Int
97101 """
102+ self .ProjectName = None
103+ self .Description = None
98104 self .Page = None
99105 self .Size = None
100106
101107 def _deserialize (self , params ):
108+ if params .get ("ProjectName" ):
109+ self .ProjectName = params .get ("ProjectName" )
110+ if params .get ("Description" ):
111+ self .Description = params .get ("Description" )
102112 if params .get ("Page" ):
103113 self .Page = params .get ("Page" )
104114 if params .get ("Size" ):
You can’t perform that action at this time.
0 commit comments