@@ -39,6 +39,12 @@ type iGetCacheRuleResponseBody interface {
3939 GetIncludeCookie () * string
4040 SetIncludeHeader (v string ) * GetCacheRuleResponseBody
4141 GetIncludeHeader () * string
42+ SetPostBodyCacheKey (v string ) * GetCacheRuleResponseBody
43+ GetPostBodyCacheKey () * string
44+ SetPostBodySizeLimit (v string ) * GetCacheRuleResponseBody
45+ GetPostBodySizeLimit () * string
46+ SetPostCache (v string ) * GetCacheRuleResponseBody
47+ GetPostCache () * string
4248 SetQueryString (v string ) * GetCacheRuleResponseBody
4349 GetQueryString () * string
4450 SetQueryStringMode (v string ) * GetCacheRuleResponseBody
@@ -188,6 +194,15 @@ type GetCacheRuleResponseBody struct {
188194 //
189195 // example
190196 IncludeHeader * string `json:"IncludeHeader,omitempty" xml:"IncludeHeader,omitempty"`
197+ // example:
198+ //
199+ // ignore
200+ PostBodyCacheKey * string `json:"PostBodyCacheKey,omitempty" xml:"PostBodyCacheKey,omitempty"`
201+ PostBodySizeLimit * string `json:"PostBodySizeLimit,omitempty" xml:"PostBodySizeLimit,omitempty"`
202+ // example:
203+ //
204+ // on
205+ PostCache * string `json:"PostCache,omitempty" xml:"PostCache,omitempty"`
191206 // The query strings to be retained or deleted, supporting multiple values separated by spaces.
192207 //
193208 // example:
@@ -372,6 +387,18 @@ func (s *GetCacheRuleResponseBody) GetIncludeHeader() *string {
372387 return s .IncludeHeader
373388}
374389
390+ func (s * GetCacheRuleResponseBody ) GetPostBodyCacheKey () * string {
391+ return s .PostBodyCacheKey
392+ }
393+
394+ func (s * GetCacheRuleResponseBody ) GetPostBodySizeLimit () * string {
395+ return s .PostBodySizeLimit
396+ }
397+
398+ func (s * GetCacheRuleResponseBody ) GetPostCache () * string {
399+ return s .PostCache
400+ }
401+
375402func (s * GetCacheRuleResponseBody ) GetQueryString () * string {
376403 return s .QueryString
377404}
@@ -499,6 +526,21 @@ func (s *GetCacheRuleResponseBody) SetIncludeHeader(v string) *GetCacheRuleRespo
499526 return s
500527}
501528
529+ func (s * GetCacheRuleResponseBody ) SetPostBodyCacheKey (v string ) * GetCacheRuleResponseBody {
530+ s .PostBodyCacheKey = & v
531+ return s
532+ }
533+
534+ func (s * GetCacheRuleResponseBody ) SetPostBodySizeLimit (v string ) * GetCacheRuleResponseBody {
535+ s .PostBodySizeLimit = & v
536+ return s
537+ }
538+
539+ func (s * GetCacheRuleResponseBody ) SetPostCache (v string ) * GetCacheRuleResponseBody {
540+ s .PostCache = & v
541+ return s
542+ }
543+
502544func (s * GetCacheRuleResponseBody ) SetQueryString (v string ) * GetCacheRuleResponseBody {
503545 s .QueryString = & v
504546 return s
0 commit comments