diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go index cb821cfd..f757c55b 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestTi.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -80,9 +80,9 @@ func (r *TiIndicatorCollectionSubmitTiIndicatorsRequest) Paging(ctx context.Cont } var values []TiIndicator for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -95,6 +95,7 @@ func (r *TiIndicatorCollectionSubmitTiIndicatorsRequest) Paging(ctx context.Cont value []TiIndicator ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -166,9 +167,9 @@ func (r *TiIndicatorCollectionUpdateTiIndicatorsRequest) Paging(ctx context.Cont } var values []TiIndicator for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -181,6 +182,7 @@ func (r *TiIndicatorCollectionUpdateTiIndicatorsRequest) Paging(ctx context.Cont value []TiIndicator ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -252,9 +254,9 @@ func (r *TiIndicatorCollectionDeleteTiIndicatorsRequest) Paging(ctx context.Cont } var values []ResultInfo for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -267,6 +269,7 @@ func (r *TiIndicatorCollectionDeleteTiIndicatorsRequest) Paging(ctx context.Cont value []ResultInfo ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -338,9 +341,9 @@ func (r *TiIndicatorCollectionDeleteTiIndicatorsByExternalIDRequest) Paging(ctx } var values []ResultInfo for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -353,6 +356,7 @@ func (r *TiIndicatorCollectionDeleteTiIndicatorsByExternalIDRequest) Paging(ctx value []ResultInfo ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } |