@@ -19,6 +19,8 @@ type iGetQuotaResponseBody interface {
1919 GetGmtCreatedTime () * string
2020 SetGmtModifiedTime (v string ) * GetQuotaResponseBody
2121 GetGmtModifiedTime () * string
22+ SetHyperZones (v []* string ) * GetQuotaResponseBody
23+ GetHyperZones () []* string
2224 SetLabels (v []* Label ) * GetQuotaResponseBody
2325 GetLabels () []* Label
2426 SetLatestOperationId (v string ) * GetQuotaResponseBody
@@ -51,6 +53,8 @@ type iGetQuotaResponseBody interface {
5153 GetStatus () * string
5254 SetSubQuotas (v []* QuotaIdName ) * GetQuotaResponseBody
5355 GetSubQuotas () []* QuotaIdName
56+ SetVersion (v string ) * GetQuotaResponseBody
57+ GetVersion () * string
5458 SetWorkspaces (v []* WorkspaceIdName ) * GetQuotaResponseBody
5559 GetWorkspaces () []* WorkspaceIdName
5660}
@@ -75,8 +79,9 @@ type GetQuotaResponseBody struct {
7579 // example:
7680 //
7781 // 2023-06-22T00:00:00Z
78- GmtModifiedTime * string `json:"GmtModifiedTime,omitempty" xml:"GmtModifiedTime,omitempty"`
79- Labels []* Label `json:"Labels,omitempty" xml:"Labels,omitempty" type:"Repeated"`
82+ GmtModifiedTime * string `json:"GmtModifiedTime,omitempty" xml:"GmtModifiedTime,omitempty"`
83+ HyperZones []* string `json:"HyperZones,omitempty" xml:"HyperZones,omitempty" type:"Repeated"`
84+ Labels []* Label `json:"Labels,omitempty" xml:"Labels,omitempty" type:"Repeated"`
8085 // example:
8186 //
8287 // operation1234
@@ -122,8 +127,12 @@ type GetQuotaResponseBody struct {
122127 // example:
123128 //
124129 // Ready
125- Status * string `json:"Status,omitempty" xml:"Status,omitempty"`
126- SubQuotas []* QuotaIdName `json:"SubQuotas,omitempty" xml:"SubQuotas,omitempty" type:"Repeated"`
130+ Status * string `json:"Status,omitempty" xml:"Status,omitempty"`
131+ SubQuotas []* QuotaIdName `json:"SubQuotas,omitempty" xml:"SubQuotas,omitempty" type:"Repeated"`
132+ // example:
133+ //
134+ // 1.0
135+ Version * string `json:"Version,omitempty" xml:"Version,omitempty"`
127136 Workspaces []* WorkspaceIdName `json:"Workspaces,omitempty" xml:"Workspaces,omitempty" type:"Repeated"`
128137}
129138
@@ -155,6 +164,10 @@ func (s *GetQuotaResponseBody) GetGmtModifiedTime() *string {
155164 return s .GmtModifiedTime
156165}
157166
167+ func (s * GetQuotaResponseBody ) GetHyperZones () []* string {
168+ return s .HyperZones
169+ }
170+
158171func (s * GetQuotaResponseBody ) GetLabels () []* Label {
159172 return s .Labels
160173}
@@ -219,6 +232,10 @@ func (s *GetQuotaResponseBody) GetSubQuotas() []*QuotaIdName {
219232 return s .SubQuotas
220233}
221234
235+ func (s * GetQuotaResponseBody ) GetVersion () * string {
236+ return s .Version
237+ }
238+
222239func (s * GetQuotaResponseBody ) GetWorkspaces () []* WorkspaceIdName {
223240 return s .Workspaces
224241}
@@ -248,6 +265,11 @@ func (s *GetQuotaResponseBody) SetGmtModifiedTime(v string) *GetQuotaResponseBod
248265 return s
249266}
250267
268+ func (s * GetQuotaResponseBody ) SetHyperZones (v []* string ) * GetQuotaResponseBody {
269+ s .HyperZones = v
270+ return s
271+ }
272+
251273func (s * GetQuotaResponseBody ) SetLabels (v []* Label ) * GetQuotaResponseBody {
252274 s .Labels = v
253275 return s
@@ -328,6 +350,11 @@ func (s *GetQuotaResponseBody) SetSubQuotas(v []*QuotaIdName) *GetQuotaResponseB
328350 return s
329351}
330352
353+ func (s * GetQuotaResponseBody ) SetVersion (v string ) * GetQuotaResponseBody {
354+ s .Version = & v
355+ return s
356+ }
357+
331358func (s * GetQuotaResponseBody ) SetWorkspaces (v []* WorkspaceIdName ) * GetQuotaResponseBody {
332359 s .Workspaces = v
333360 return s
0 commit comments