@@ -11,6 +11,10 @@ type iGetProjectRequest interface {
1111 GoString () string
1212 SetVerbose (v bool ) * GetProjectRequest
1313 GetVerbose () * bool
14+ SetWithQuotaProductType (v bool ) * GetProjectRequest
15+ GetWithQuotaProductType () * bool
16+ SetWithStorageTierInfo (v bool ) * GetProjectRequest
17+ GetWithStorageTierInfo () * bool
1418}
1519
1620type GetProjectRequest struct {
@@ -20,6 +24,14 @@ type GetProjectRequest struct {
2024 //
2125 // true
2226 Verbose * bool `json:"verbose,omitempty" xml:"verbose,omitempty"`
27+ // example:
28+ //
29+ // true
30+ WithQuotaProductType * bool `json:"withQuotaProductType,omitempty" xml:"withQuotaProductType,omitempty"`
31+ // example:
32+ //
33+ // true
34+ WithStorageTierInfo * bool `json:"withStorageTierInfo,omitempty" xml:"withStorageTierInfo,omitempty"`
2335}
2436
2537func (s GetProjectRequest ) String () string {
@@ -34,11 +46,29 @@ func (s *GetProjectRequest) GetVerbose() *bool {
3446 return s .Verbose
3547}
3648
49+ func (s * GetProjectRequest ) GetWithQuotaProductType () * bool {
50+ return s .WithQuotaProductType
51+ }
52+
53+ func (s * GetProjectRequest ) GetWithStorageTierInfo () * bool {
54+ return s .WithStorageTierInfo
55+ }
56+
3757func (s * GetProjectRequest ) SetVerbose (v bool ) * GetProjectRequest {
3858 s .Verbose = & v
3959 return s
4060}
4161
62+ func (s * GetProjectRequest ) SetWithQuotaProductType (v bool ) * GetProjectRequest {
63+ s .WithQuotaProductType = & v
64+ return s
65+ }
66+
67+ func (s * GetProjectRequest ) SetWithStorageTierInfo (v bool ) * GetProjectRequest {
68+ s .WithStorageTierInfo = & v
69+ return s
70+ }
71+
4272func (s * GetProjectRequest ) Validate () error {
4373 return dara .Validate (s )
4474}
0 commit comments