model_types tags fix
This commit is contained in:
parent
613fe39d8b
commit
d6af97ae0a
|
@ -138,10 +138,10 @@ type GetDownloadUriForModelVersionArtifactsResponse struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type SearchModelVersionsRequest struct {
|
type SearchModelVersionsRequest struct {
|
||||||
Filter string
|
Filter string `json:"filter,omitempty"`
|
||||||
MaxResults int64
|
MaxResults int64 `json:"max_results,omitempty"`
|
||||||
OrderBy []string
|
OrderBy []string `json:"order_by,omitempty"`
|
||||||
PageToken string
|
PageToken string `json:"page_token,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *SearchModelVersionsRequest) serialize() []byte {
|
func (e *SearchModelVersionsRequest) serialize() []byte {
|
||||||
|
@ -202,10 +202,10 @@ func (e *TransitionModelVersionStageRequest) serialize() []byte {
|
||||||
type TransitionModelVersionStageResponse GetModelVersionResponse
|
type TransitionModelVersionStageResponse GetModelVersionResponse
|
||||||
|
|
||||||
type SearchRegisteredModelsRequest struct {
|
type SearchRegisteredModelsRequest struct {
|
||||||
Filter string
|
Filter string `json:"filter,omitempty"`
|
||||||
MaxResults int64
|
MaxResults int64 `json:"max_results,omitempty"`
|
||||||
OrderBy []string
|
OrderBy []string `json:"order_by,omitempty"`
|
||||||
PageToken string
|
PageToken string `json:"page_token,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *SearchRegisteredModelsRequest) serialize() []byte {
|
func (e *SearchRegisteredModelsRequest) serialize() []byte {
|
||||||
|
|
Loading…
Reference in New Issue