openapi

package
v0.2.0-alpha Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 26, 2024 License: Apache-2.0 Imports: 20 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedArtifactStateEnumValues = []ArtifactState{
	"UNKNOWN",
	"PENDING",
	"LIVE",
	"MARKED_FOR_DELETION",
	"DELETED",
	"ABANDONED",
	"REFERENCE",
}

All allowed values of ArtifactState enum

View Source
var AllowedExecutionStateEnumValues = []ExecutionState{
	"UNKNOWN",
	"NEW",
	"RUNNING",
	"COMPLETE",
	"FAILED",
	"CACHED",
	"CANCELED",
}

All allowed values of ExecutionState enum

View Source
var AllowedInferenceServiceStateEnumValues = []InferenceServiceState{
	"DEPLOYED",
	"UNDEPLOYED",
}

All allowed values of InferenceServiceState enum

View Source
var AllowedModelVersionStateEnumValues = []ModelVersionState{
	"LIVE",
	"ARCHIVED",
}

All allowed values of ModelVersionState enum

View Source
var AllowedOrderByFieldEnumValues = []OrderByField{
	"CREATE_TIME",
	"LAST_UPDATE_TIME",
	"Id",
}

All allowed values of OrderByField enum

View Source
var AllowedRegisteredModelStateEnumValues = []RegisteredModelState{
	"LIVE",
	"ARCHIVED",
}

All allowed values of RegisteredModelState enum

View Source
var AllowedSortOrderEnumValues = []SortOrder{
	"ASC",
	"DESC",
}

All allowed values of SortOrder enum

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	ModelRegistryServiceAPI *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Model Registry REST API API vv1alpha3 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiCreateEnvironmentInferenceServiceRequest

type ApiCreateEnvironmentInferenceServiceRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEnvironmentInferenceServiceRequest) Execute

func (ApiCreateEnvironmentInferenceServiceRequest) InferenceServiceCreate

A new `InferenceService` to be created.

type ApiCreateInferenceServiceRequest

type ApiCreateInferenceServiceRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateInferenceServiceRequest) Execute

func (ApiCreateInferenceServiceRequest) InferenceServiceCreate

func (r ApiCreateInferenceServiceRequest) InferenceServiceCreate(inferenceServiceCreate InferenceServiceCreate) ApiCreateInferenceServiceRequest

A new `InferenceService` to be created.

type ApiCreateInferenceServiceServeRequest

type ApiCreateInferenceServiceServeRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateInferenceServiceServeRequest) Execute

func (ApiCreateInferenceServiceServeRequest) ServeModelCreate

A new `ServeModel` to be associated with the `InferenceService`.

type ApiCreateModelArtifactRequest

type ApiCreateModelArtifactRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateModelArtifactRequest) Execute

func (ApiCreateModelArtifactRequest) ModelArtifactCreate

func (r ApiCreateModelArtifactRequest) ModelArtifactCreate(modelArtifactCreate ModelArtifactCreate) ApiCreateModelArtifactRequest

A new `ModelArtifact` to be created.

type ApiCreateModelVersionArtifactRequest

type ApiCreateModelVersionArtifactRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateModelVersionArtifactRequest) Artifact

A new or existing `Artifact` to be associated with the `ModelVersion`.

func (ApiCreateModelVersionArtifactRequest) Execute

type ApiCreateModelVersionRequest

type ApiCreateModelVersionRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateModelVersionRequest) Execute

func (ApiCreateModelVersionRequest) ModelVersionCreate

func (r ApiCreateModelVersionRequest) ModelVersionCreate(modelVersionCreate ModelVersionCreate) ApiCreateModelVersionRequest

A new `ModelVersion` to be created.

type ApiCreateRegisteredModelRequest

type ApiCreateRegisteredModelRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRegisteredModelRequest) Execute

func (ApiCreateRegisteredModelRequest) RegisteredModelCreate

func (r ApiCreateRegisteredModelRequest) RegisteredModelCreate(registeredModelCreate RegisteredModelCreate) ApiCreateRegisteredModelRequest

A new `RegisteredModel` to be created.

type ApiCreateRegisteredModelVersionRequest

type ApiCreateRegisteredModelVersionRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRegisteredModelVersionRequest) Execute

func (ApiCreateRegisteredModelVersionRequest) ModelVersion

A new `ModelVersion` to be created.

type ApiCreateServingEnvironmentRequest

type ApiCreateServingEnvironmentRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateServingEnvironmentRequest) Execute

func (ApiCreateServingEnvironmentRequest) ServingEnvironmentCreate

func (r ApiCreateServingEnvironmentRequest) ServingEnvironmentCreate(servingEnvironmentCreate ServingEnvironmentCreate) ApiCreateServingEnvironmentRequest

A new `ServingEnvironment` to be created.

type ApiFindInferenceServiceRequest

type ApiFindInferenceServiceRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiFindInferenceServiceRequest) Execute

func (ApiFindInferenceServiceRequest) ExternalId

External ID of entity to search.

func (ApiFindInferenceServiceRequest) Name

Name of entity to search.

func (ApiFindInferenceServiceRequest) ParentResourceId

func (r ApiFindInferenceServiceRequest) ParentResourceId(parentResourceId string) ApiFindInferenceServiceRequest

ID of the parent resource to use for search.

type ApiFindModelArtifactRequest

type ApiFindModelArtifactRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiFindModelArtifactRequest) Execute

func (ApiFindModelArtifactRequest) ExternalId

External ID of entity to search.

func (ApiFindModelArtifactRequest) Name

Name of entity to search.

func (ApiFindModelArtifactRequest) ParentResourceId

func (r ApiFindModelArtifactRequest) ParentResourceId(parentResourceId string) ApiFindModelArtifactRequest

ID of the parent resource to use for search.

type ApiFindModelVersionRequest

type ApiFindModelVersionRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiFindModelVersionRequest) Execute

func (ApiFindModelVersionRequest) ExternalId

External ID of entity to search.

func (ApiFindModelVersionRequest) Name

Name of entity to search.

func (ApiFindModelVersionRequest) ParentResourceId

func (r ApiFindModelVersionRequest) ParentResourceId(parentResourceId string) ApiFindModelVersionRequest

ID of the parent resource to use for search.

type ApiFindRegisteredModelRequest

type ApiFindRegisteredModelRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiFindRegisteredModelRequest) Execute

func (ApiFindRegisteredModelRequest) ExternalId

External ID of entity to search.

func (ApiFindRegisteredModelRequest) Name

Name of entity to search.

type ApiFindServingEnvironmentRequest

type ApiFindServingEnvironmentRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiFindServingEnvironmentRequest) Execute

func (ApiFindServingEnvironmentRequest) ExternalId

External ID of entity to search.

func (ApiFindServingEnvironmentRequest) Name

Name of entity to search.

type ApiGetEnvironmentInferenceServicesRequest

type ApiGetEnvironmentInferenceServicesRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetEnvironmentInferenceServicesRequest) Execute

func (ApiGetEnvironmentInferenceServicesRequest) ExternalId

External ID of entity to search.

func (ApiGetEnvironmentInferenceServicesRequest) Name

Name of entity to search.

func (ApiGetEnvironmentInferenceServicesRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetEnvironmentInferenceServicesRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetEnvironmentInferenceServicesRequest) PageSize

Number of entities in each page.

func (ApiGetEnvironmentInferenceServicesRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiGetInferenceServiceModelRequest

type ApiGetInferenceServiceModelRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetInferenceServiceModelRequest) Execute

type ApiGetInferenceServiceRequest

type ApiGetInferenceServiceRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetInferenceServiceRequest) Execute

type ApiGetInferenceServiceServesRequest

type ApiGetInferenceServiceServesRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetInferenceServiceServesRequest) Execute

func (ApiGetInferenceServiceServesRequest) ExternalId

External ID of entity to search.

func (ApiGetInferenceServiceServesRequest) Name

Name of entity to search.

func (ApiGetInferenceServiceServesRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetInferenceServiceServesRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetInferenceServiceServesRequest) PageSize

Number of entities in each page.

func (ApiGetInferenceServiceServesRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiGetInferenceServiceVersionRequest

type ApiGetInferenceServiceVersionRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetInferenceServiceVersionRequest) Execute

type ApiGetInferenceServicesRequest

type ApiGetInferenceServicesRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetInferenceServicesRequest) Execute

func (ApiGetInferenceServicesRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetInferenceServicesRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetInferenceServicesRequest) PageSize

Number of entities in each page.

func (ApiGetInferenceServicesRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiGetModelArtifactRequest

type ApiGetModelArtifactRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetModelArtifactRequest) Execute

type ApiGetModelArtifactsRequest

type ApiGetModelArtifactsRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetModelArtifactsRequest) Execute

func (ApiGetModelArtifactsRequest) NextPageToken

func (r ApiGetModelArtifactsRequest) NextPageToken(nextPageToken string) ApiGetModelArtifactsRequest

Token to use to retrieve next page of results.

func (ApiGetModelArtifactsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetModelArtifactsRequest) PageSize

Number of entities in each page.

func (ApiGetModelArtifactsRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiGetModelVersionArtifactsRequest

type ApiGetModelVersionArtifactsRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetModelVersionArtifactsRequest) Execute

func (ApiGetModelVersionArtifactsRequest) ExternalId

External ID of entity to search.

func (ApiGetModelVersionArtifactsRequest) Name

Name of entity to search.

func (ApiGetModelVersionArtifactsRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetModelVersionArtifactsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetModelVersionArtifactsRequest) PageSize

Number of entities in each page.

func (ApiGetModelVersionArtifactsRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiGetModelVersionRequest

type ApiGetModelVersionRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetModelVersionRequest) Execute

type ApiGetModelVersionsRequest

type ApiGetModelVersionsRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetModelVersionsRequest) Execute

func (ApiGetModelVersionsRequest) NextPageToken

func (r ApiGetModelVersionsRequest) NextPageToken(nextPageToken string) ApiGetModelVersionsRequest

Token to use to retrieve next page of results.

func (ApiGetModelVersionsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetModelVersionsRequest) PageSize

Number of entities in each page.

func (ApiGetModelVersionsRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiGetRegisteredModelRequest

type ApiGetRegisteredModelRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetRegisteredModelRequest) Execute

type ApiGetRegisteredModelVersionsRequest

type ApiGetRegisteredModelVersionsRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetRegisteredModelVersionsRequest) Execute

func (ApiGetRegisteredModelVersionsRequest) ExternalId

External ID of entity to search.

func (ApiGetRegisteredModelVersionsRequest) Name

Name of entity to search.

func (ApiGetRegisteredModelVersionsRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetRegisteredModelVersionsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetRegisteredModelVersionsRequest) PageSize

Number of entities in each page.

func (ApiGetRegisteredModelVersionsRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiGetRegisteredModelsRequest

type ApiGetRegisteredModelsRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetRegisteredModelsRequest) Execute

func (ApiGetRegisteredModelsRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetRegisteredModelsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetRegisteredModelsRequest) PageSize

Number of entities in each page.

func (ApiGetRegisteredModelsRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiGetServingEnvironmentRequest

type ApiGetServingEnvironmentRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetServingEnvironmentRequest) Execute

type ApiGetServingEnvironmentsRequest

type ApiGetServingEnvironmentsRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiGetServingEnvironmentsRequest) Execute

func (ApiGetServingEnvironmentsRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetServingEnvironmentsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetServingEnvironmentsRequest) PageSize

Number of entities in each page.

func (ApiGetServingEnvironmentsRequest) SortOrder

Specifies the sort order for listing entities, defaults to ASC.

type ApiUpdateInferenceServiceRequest

type ApiUpdateInferenceServiceRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateInferenceServiceRequest) Execute

func (ApiUpdateInferenceServiceRequest) InferenceServiceUpdate

func (r ApiUpdateInferenceServiceRequest) InferenceServiceUpdate(inferenceServiceUpdate InferenceServiceUpdate) ApiUpdateInferenceServiceRequest

Updated `InferenceService` information.

type ApiUpdateModelArtifactRequest

type ApiUpdateModelArtifactRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateModelArtifactRequest) Execute

func (ApiUpdateModelArtifactRequest) ModelArtifactUpdate

func (r ApiUpdateModelArtifactRequest) ModelArtifactUpdate(modelArtifactUpdate ModelArtifactUpdate) ApiUpdateModelArtifactRequest

Updated `ModelArtifact` information.

type ApiUpdateModelVersionRequest

type ApiUpdateModelVersionRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateModelVersionRequest) Execute

func (ApiUpdateModelVersionRequest) ModelVersionUpdate

func (r ApiUpdateModelVersionRequest) ModelVersionUpdate(modelVersionUpdate ModelVersionUpdate) ApiUpdateModelVersionRequest

Updated `ModelVersion` information.

type ApiUpdateRegisteredModelRequest

type ApiUpdateRegisteredModelRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateRegisteredModelRequest) Execute

func (ApiUpdateRegisteredModelRequest) RegisteredModelUpdate

func (r ApiUpdateRegisteredModelRequest) RegisteredModelUpdate(registeredModelUpdate RegisteredModelUpdate) ApiUpdateRegisteredModelRequest

Updated `RegisteredModel` information.

type ApiUpdateServingEnvironmentRequest

type ApiUpdateServingEnvironmentRequest struct {
	ApiService *ModelRegistryServiceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateServingEnvironmentRequest) Execute

func (ApiUpdateServingEnvironmentRequest) ServingEnvironmentUpdate

func (r ApiUpdateServingEnvironmentRequest) ServingEnvironmentUpdate(servingEnvironmentUpdate ServingEnvironmentUpdate) ApiUpdateServingEnvironmentRequest

Updated `ServingEnvironment` information.

type Artifact

type Artifact struct {
	DocArtifact   *DocArtifact
	ModelArtifact *ModelArtifact
}

Artifact - A metadata Artifact Entity.

func DocArtifactAsArtifact

func DocArtifactAsArtifact(v *DocArtifact) Artifact

DocArtifactAsArtifact is a convenience function that returns DocArtifact wrapped in Artifact

func ModelArtifactAsArtifact

func ModelArtifactAsArtifact(v *ModelArtifact) Artifact

ModelArtifactAsArtifact is a convenience function that returns ModelArtifact wrapped in Artifact

func (*Artifact) GetActualInstance

func (obj *Artifact) GetActualInstance() interface{}

Get the actual instance

func (Artifact) MarshalJSON

func (src Artifact) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Artifact) UnmarshalJSON

func (dst *Artifact) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ArtifactList

type ArtifactList struct {
	// Token to use to retrieve next page of results.
	NextPageToken string `json:"nextPageToken"`
	// Maximum number of resources to return in the result.
	PageSize int32 `json:"pageSize"`
	// Number of items in result list.
	Size int32 `json:"size"`
	// Array of `Artifact` entities.
	Items []Artifact `json:"items,omitempty"`
}

ArtifactList A list of Artifact entities.

func NewArtifactList

func NewArtifactList(nextPageToken string, pageSize int32, size int32) *ArtifactList

NewArtifactList instantiates a new ArtifactList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewArtifactListWithDefaults

func NewArtifactListWithDefaults() *ArtifactList

NewArtifactListWithDefaults instantiates a new ArtifactList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ArtifactList) GetItems

func (o *ArtifactList) GetItems() []Artifact

GetItems returns the Items field value if set, zero value otherwise.

func (*ArtifactList) GetItemsOk

func (o *ArtifactList) GetItemsOk() ([]Artifact, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ArtifactList) GetNextPageToken

func (o *ArtifactList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*ArtifactList) GetNextPageTokenOk

func (o *ArtifactList) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*ArtifactList) GetPageSize

func (o *ArtifactList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*ArtifactList) GetPageSizeOk

func (o *ArtifactList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*ArtifactList) GetSize

func (o *ArtifactList) GetSize() int32

GetSize returns the Size field value

func (*ArtifactList) GetSizeOk

func (o *ArtifactList) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*ArtifactList) HasItems

func (o *ArtifactList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ArtifactList) MarshalJSON

func (o ArtifactList) MarshalJSON() ([]byte, error)

func (*ArtifactList) SetItems

func (o *ArtifactList) SetItems(v []Artifact)

SetItems gets a reference to the given []Artifact and assigns it to the Items field.

func (*ArtifactList) SetNextPageToken

func (o *ArtifactList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*ArtifactList) SetPageSize

func (o *ArtifactList) SetPageSize(v int32)

SetPageSize sets field value

func (*ArtifactList) SetSize

func (o *ArtifactList) SetSize(v int32)

SetSize sets field value

func (ArtifactList) ToMap

func (o ArtifactList) ToMap() (map[string]interface{}, error)

type ArtifactState

type ArtifactState string

ArtifactState - PENDING: A state indicating that the artifact may exist. - LIVE: A state indicating that the artifact should exist, unless something external to the system deletes it. - MARKED_FOR_DELETION: A state indicating that the artifact should be deleted. - DELETED: A state indicating that the artifact has been deleted. - ABANDONED: A state indicating that the artifact has been abandoned, which may be due to a failed or cancelled execution. - REFERENCE: A state indicating that the artifact is a reference artifact. At execution start time, the orchestrator produces an output artifact for each output key with state PENDING. However, for an intermediate artifact, this first artifact's state will be REFERENCE. Intermediate artifacts emitted during a component's execution will copy the REFERENCE artifact's attributes. At the end of an execution, the artifact state should remain REFERENCE instead of being changed to LIVE. See also: ml-metadata Artifact.State

const (
	ARTIFACTSTATE_UNKNOWN             ArtifactState = "UNKNOWN"
	ARTIFACTSTATE_PENDING             ArtifactState = "PENDING"
	ARTIFACTSTATE_LIVE                ArtifactState = "LIVE"
	ARTIFACTSTATE_MARKED_FOR_DELETION ArtifactState = "MARKED_FOR_DELETION"
	ARTIFACTSTATE_DELETED             ArtifactState = "DELETED"
	ARTIFACTSTATE_ABANDONED           ArtifactState = "ABANDONED"
	ARTIFACTSTATE_REFERENCE           ArtifactState = "REFERENCE"
)

List of ArtifactState

func NewArtifactStateFromValue

func NewArtifactStateFromValue(v string) (*ArtifactState, error)

NewArtifactStateFromValue returns a pointer to a valid ArtifactState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ArtifactState) IsValid

func (v ArtifactState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ArtifactState) Ptr

func (v ArtifactState) Ptr() *ArtifactState

Ptr returns reference to ArtifactState value

func (*ArtifactState) UnmarshalJSON

func (v *ArtifactState) UnmarshalJSON(src []byte) error

type BaseArtifact

type BaseArtifact struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The uniform resource identifier of the physical artifact. May be empty if there is no physical artifact.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
}

BaseArtifact struct for BaseArtifact

func NewBaseArtifact

func NewBaseArtifact() *BaseArtifact

NewBaseArtifact instantiates a new BaseArtifact object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseArtifactWithDefaults

func NewBaseArtifactWithDefaults() *BaseArtifact

NewBaseArtifactWithDefaults instantiates a new BaseArtifact object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseArtifact) GetCreateTimeSinceEpoch

func (o *BaseArtifact) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*BaseArtifact) GetCreateTimeSinceEpochOk

func (o *BaseArtifact) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) GetCustomProperties

func (o *BaseArtifact) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseArtifact) GetCustomPropertiesOk

func (o *BaseArtifact) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) GetDescription

func (o *BaseArtifact) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseArtifact) GetDescriptionOk

func (o *BaseArtifact) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) GetExternalId

func (o *BaseArtifact) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseArtifact) GetExternalIdOk

func (o *BaseArtifact) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) GetId

func (o *BaseArtifact) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*BaseArtifact) GetIdOk

func (o *BaseArtifact) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) GetLastUpdateTimeSinceEpoch

func (o *BaseArtifact) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*BaseArtifact) GetLastUpdateTimeSinceEpochOk

func (o *BaseArtifact) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) GetName

func (o *BaseArtifact) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*BaseArtifact) GetNameOk

func (o *BaseArtifact) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) GetState

func (o *BaseArtifact) GetState() ArtifactState

GetState returns the State field value if set, zero value otherwise.

func (*BaseArtifact) GetStateOk

func (o *BaseArtifact) GetStateOk() (*ArtifactState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) GetUri

func (o *BaseArtifact) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*BaseArtifact) GetUriOk

func (o *BaseArtifact) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifact) HasCreateTimeSinceEpoch

func (o *BaseArtifact) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*BaseArtifact) HasCustomProperties

func (o *BaseArtifact) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseArtifact) HasDescription

func (o *BaseArtifact) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseArtifact) HasExternalId

func (o *BaseArtifact) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*BaseArtifact) HasId

func (o *BaseArtifact) HasId() bool

HasId returns a boolean if a field has been set.

func (*BaseArtifact) HasLastUpdateTimeSinceEpoch

func (o *BaseArtifact) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*BaseArtifact) HasName

func (o *BaseArtifact) HasName() bool

HasName returns a boolean if a field has been set.

func (*BaseArtifact) HasState

func (o *BaseArtifact) HasState() bool

HasState returns a boolean if a field has been set.

func (*BaseArtifact) HasUri

func (o *BaseArtifact) HasUri() bool

HasUri returns a boolean if a field has been set.

func (BaseArtifact) MarshalJSON

func (o BaseArtifact) MarshalJSON() ([]byte, error)

func (*BaseArtifact) SetCreateTimeSinceEpoch

func (o *BaseArtifact) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*BaseArtifact) SetCustomProperties

func (o *BaseArtifact) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseArtifact) SetDescription

func (o *BaseArtifact) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseArtifact) SetExternalId

func (o *BaseArtifact) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*BaseArtifact) SetId

func (o *BaseArtifact) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*BaseArtifact) SetLastUpdateTimeSinceEpoch

func (o *BaseArtifact) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*BaseArtifact) SetName

func (o *BaseArtifact) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*BaseArtifact) SetState

func (o *BaseArtifact) SetState(v ArtifactState)

SetState gets a reference to the given ArtifactState and assigns it to the State field.

func (*BaseArtifact) SetUri

func (o *BaseArtifact) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (BaseArtifact) ToMap

func (o BaseArtifact) ToMap() (map[string]interface{}, error)

type BaseArtifactCreate

type BaseArtifactCreate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The uniform resource identifier of the physical artifact. May be empty if there is no physical artifact.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
}

BaseArtifactCreate struct for BaseArtifactCreate

func NewBaseArtifactCreate

func NewBaseArtifactCreate() *BaseArtifactCreate

NewBaseArtifactCreate instantiates a new BaseArtifactCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseArtifactCreateWithDefaults

func NewBaseArtifactCreateWithDefaults() *BaseArtifactCreate

NewBaseArtifactCreateWithDefaults instantiates a new BaseArtifactCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseArtifactCreate) GetCustomProperties

func (o *BaseArtifactCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseArtifactCreate) GetCustomPropertiesOk

func (o *BaseArtifactCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactCreate) GetDescription

func (o *BaseArtifactCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseArtifactCreate) GetDescriptionOk

func (o *BaseArtifactCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactCreate) GetExternalId

func (o *BaseArtifactCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseArtifactCreate) GetExternalIdOk

func (o *BaseArtifactCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactCreate) GetName

func (o *BaseArtifactCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*BaseArtifactCreate) GetNameOk

func (o *BaseArtifactCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactCreate) GetState

func (o *BaseArtifactCreate) GetState() ArtifactState

GetState returns the State field value if set, zero value otherwise.

func (*BaseArtifactCreate) GetStateOk

func (o *BaseArtifactCreate) GetStateOk() (*ArtifactState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactCreate) GetUri

func (o *BaseArtifactCreate) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*BaseArtifactCreate) GetUriOk

func (o *BaseArtifactCreate) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactCreate) HasCustomProperties

func (o *BaseArtifactCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseArtifactCreate) HasDescription

func (o *BaseArtifactCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseArtifactCreate) HasExternalId

func (o *BaseArtifactCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*BaseArtifactCreate) HasName

func (o *BaseArtifactCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*BaseArtifactCreate) HasState

func (o *BaseArtifactCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (*BaseArtifactCreate) HasUri

func (o *BaseArtifactCreate) HasUri() bool

HasUri returns a boolean if a field has been set.

func (BaseArtifactCreate) MarshalJSON

func (o BaseArtifactCreate) MarshalJSON() ([]byte, error)

func (*BaseArtifactCreate) SetCustomProperties

func (o *BaseArtifactCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseArtifactCreate) SetDescription

func (o *BaseArtifactCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseArtifactCreate) SetExternalId

func (o *BaseArtifactCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*BaseArtifactCreate) SetName

func (o *BaseArtifactCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*BaseArtifactCreate) SetState

func (o *BaseArtifactCreate) SetState(v ArtifactState)

SetState gets a reference to the given ArtifactState and assigns it to the State field.

func (*BaseArtifactCreate) SetUri

func (o *BaseArtifactCreate) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (BaseArtifactCreate) ToMap

func (o BaseArtifactCreate) ToMap() (map[string]interface{}, error)

type BaseArtifactUpdate

type BaseArtifactUpdate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The uniform resource identifier of the physical artifact. May be empty if there is no physical artifact.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
}

BaseArtifactUpdate struct for BaseArtifactUpdate

func NewBaseArtifactUpdate

func NewBaseArtifactUpdate() *BaseArtifactUpdate

NewBaseArtifactUpdate instantiates a new BaseArtifactUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseArtifactUpdateWithDefaults

func NewBaseArtifactUpdateWithDefaults() *BaseArtifactUpdate

NewBaseArtifactUpdateWithDefaults instantiates a new BaseArtifactUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseArtifactUpdate) GetCustomProperties

func (o *BaseArtifactUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseArtifactUpdate) GetCustomPropertiesOk

func (o *BaseArtifactUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactUpdate) GetDescription

func (o *BaseArtifactUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseArtifactUpdate) GetDescriptionOk

func (o *BaseArtifactUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactUpdate) GetExternalId

func (o *BaseArtifactUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseArtifactUpdate) GetExternalIdOk

func (o *BaseArtifactUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactUpdate) GetState

func (o *BaseArtifactUpdate) GetState() ArtifactState

GetState returns the State field value if set, zero value otherwise.

func (*BaseArtifactUpdate) GetStateOk

func (o *BaseArtifactUpdate) GetStateOk() (*ArtifactState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactUpdate) GetUri

func (o *BaseArtifactUpdate) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*BaseArtifactUpdate) GetUriOk

func (o *BaseArtifactUpdate) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseArtifactUpdate) HasCustomProperties

func (o *BaseArtifactUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseArtifactUpdate) HasDescription

func (o *BaseArtifactUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseArtifactUpdate) HasExternalId

func (o *BaseArtifactUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*BaseArtifactUpdate) HasState

func (o *BaseArtifactUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (*BaseArtifactUpdate) HasUri

func (o *BaseArtifactUpdate) HasUri() bool

HasUri returns a boolean if a field has been set.

func (BaseArtifactUpdate) MarshalJSON

func (o BaseArtifactUpdate) MarshalJSON() ([]byte, error)

func (*BaseArtifactUpdate) SetCustomProperties

func (o *BaseArtifactUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseArtifactUpdate) SetDescription

func (o *BaseArtifactUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseArtifactUpdate) SetExternalId

func (o *BaseArtifactUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*BaseArtifactUpdate) SetState

func (o *BaseArtifactUpdate) SetState(v ArtifactState)

SetState gets a reference to the given ArtifactState and assigns it to the State field.

func (*BaseArtifactUpdate) SetUri

func (o *BaseArtifactUpdate) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (BaseArtifactUpdate) ToMap

func (o BaseArtifactUpdate) ToMap() (map[string]interface{}, error)

type BaseExecution

type BaseExecution struct {
	LastKnownState *ExecutionState `json:"lastKnownState,omitempty"`
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
}

BaseExecution struct for BaseExecution

func NewBaseExecution

func NewBaseExecution() *BaseExecution

NewBaseExecution instantiates a new BaseExecution object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseExecutionWithDefaults

func NewBaseExecutionWithDefaults() *BaseExecution

NewBaseExecutionWithDefaults instantiates a new BaseExecution object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseExecution) GetCreateTimeSinceEpoch

func (o *BaseExecution) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*BaseExecution) GetCreateTimeSinceEpochOk

func (o *BaseExecution) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecution) GetCustomProperties

func (o *BaseExecution) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseExecution) GetCustomPropertiesOk

func (o *BaseExecution) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecution) GetDescription

func (o *BaseExecution) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseExecution) GetDescriptionOk

func (o *BaseExecution) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecution) GetExternalId

func (o *BaseExecution) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseExecution) GetExternalIdOk

func (o *BaseExecution) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecution) GetId

func (o *BaseExecution) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*BaseExecution) GetIdOk

func (o *BaseExecution) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecution) GetLastKnownState

func (o *BaseExecution) GetLastKnownState() ExecutionState

GetLastKnownState returns the LastKnownState field value if set, zero value otherwise.

func (*BaseExecution) GetLastKnownStateOk

func (o *BaseExecution) GetLastKnownStateOk() (*ExecutionState, bool)

GetLastKnownStateOk returns a tuple with the LastKnownState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecution) GetLastUpdateTimeSinceEpoch

func (o *BaseExecution) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*BaseExecution) GetLastUpdateTimeSinceEpochOk

func (o *BaseExecution) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecution) GetName

func (o *BaseExecution) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*BaseExecution) GetNameOk

func (o *BaseExecution) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecution) HasCreateTimeSinceEpoch

func (o *BaseExecution) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*BaseExecution) HasCustomProperties

func (o *BaseExecution) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseExecution) HasDescription

func (o *BaseExecution) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseExecution) HasExternalId

func (o *BaseExecution) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*BaseExecution) HasId

func (o *BaseExecution) HasId() bool

HasId returns a boolean if a field has been set.

func (*BaseExecution) HasLastKnownState

func (o *BaseExecution) HasLastKnownState() bool

HasLastKnownState returns a boolean if a field has been set.

func (*BaseExecution) HasLastUpdateTimeSinceEpoch

func (o *BaseExecution) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*BaseExecution) HasName

func (o *BaseExecution) HasName() bool

HasName returns a boolean if a field has been set.

func (BaseExecution) MarshalJSON

func (o BaseExecution) MarshalJSON() ([]byte, error)

func (*BaseExecution) SetCreateTimeSinceEpoch

func (o *BaseExecution) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*BaseExecution) SetCustomProperties

func (o *BaseExecution) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseExecution) SetDescription

func (o *BaseExecution) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseExecution) SetExternalId

func (o *BaseExecution) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*BaseExecution) SetId

func (o *BaseExecution) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*BaseExecution) SetLastKnownState

func (o *BaseExecution) SetLastKnownState(v ExecutionState)

SetLastKnownState gets a reference to the given ExecutionState and assigns it to the LastKnownState field.

func (*BaseExecution) SetLastUpdateTimeSinceEpoch

func (o *BaseExecution) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*BaseExecution) SetName

func (o *BaseExecution) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (BaseExecution) ToMap

func (o BaseExecution) ToMap() (map[string]interface{}, error)

type BaseExecutionCreate

type BaseExecutionCreate struct {
	LastKnownState *ExecutionState `json:"lastKnownState,omitempty"`
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
}

BaseExecutionCreate struct for BaseExecutionCreate

func NewBaseExecutionCreate

func NewBaseExecutionCreate() *BaseExecutionCreate

NewBaseExecutionCreate instantiates a new BaseExecutionCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseExecutionCreateWithDefaults

func NewBaseExecutionCreateWithDefaults() *BaseExecutionCreate

NewBaseExecutionCreateWithDefaults instantiates a new BaseExecutionCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseExecutionCreate) GetCustomProperties

func (o *BaseExecutionCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseExecutionCreate) GetCustomPropertiesOk

func (o *BaseExecutionCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionCreate) GetDescription

func (o *BaseExecutionCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseExecutionCreate) GetDescriptionOk

func (o *BaseExecutionCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionCreate) GetExternalId

func (o *BaseExecutionCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseExecutionCreate) GetExternalIdOk

func (o *BaseExecutionCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionCreate) GetLastKnownState

func (o *BaseExecutionCreate) GetLastKnownState() ExecutionState

GetLastKnownState returns the LastKnownState field value if set, zero value otherwise.

func (*BaseExecutionCreate) GetLastKnownStateOk

func (o *BaseExecutionCreate) GetLastKnownStateOk() (*ExecutionState, bool)

GetLastKnownStateOk returns a tuple with the LastKnownState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionCreate) GetName

func (o *BaseExecutionCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*BaseExecutionCreate) GetNameOk

func (o *BaseExecutionCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionCreate) HasCustomProperties

func (o *BaseExecutionCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseExecutionCreate) HasDescription

func (o *BaseExecutionCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseExecutionCreate) HasExternalId

func (o *BaseExecutionCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*BaseExecutionCreate) HasLastKnownState

func (o *BaseExecutionCreate) HasLastKnownState() bool

HasLastKnownState returns a boolean if a field has been set.

func (*BaseExecutionCreate) HasName

func (o *BaseExecutionCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (BaseExecutionCreate) MarshalJSON

func (o BaseExecutionCreate) MarshalJSON() ([]byte, error)

func (*BaseExecutionCreate) SetCustomProperties

func (o *BaseExecutionCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseExecutionCreate) SetDescription

func (o *BaseExecutionCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseExecutionCreate) SetExternalId

func (o *BaseExecutionCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*BaseExecutionCreate) SetLastKnownState

func (o *BaseExecutionCreate) SetLastKnownState(v ExecutionState)

SetLastKnownState gets a reference to the given ExecutionState and assigns it to the LastKnownState field.

func (*BaseExecutionCreate) SetName

func (o *BaseExecutionCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (BaseExecutionCreate) ToMap

func (o BaseExecutionCreate) ToMap() (map[string]interface{}, error)

type BaseExecutionUpdate

type BaseExecutionUpdate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId     *string         `json:"externalId,omitempty"`
	LastKnownState *ExecutionState `json:"lastKnownState,omitempty"`
}

BaseExecutionUpdate struct for BaseExecutionUpdate

func NewBaseExecutionUpdate

func NewBaseExecutionUpdate() *BaseExecutionUpdate

NewBaseExecutionUpdate instantiates a new BaseExecutionUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseExecutionUpdateWithDefaults

func NewBaseExecutionUpdateWithDefaults() *BaseExecutionUpdate

NewBaseExecutionUpdateWithDefaults instantiates a new BaseExecutionUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseExecutionUpdate) GetCustomProperties

func (o *BaseExecutionUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseExecutionUpdate) GetCustomPropertiesOk

func (o *BaseExecutionUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionUpdate) GetDescription

func (o *BaseExecutionUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseExecutionUpdate) GetDescriptionOk

func (o *BaseExecutionUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionUpdate) GetExternalId

func (o *BaseExecutionUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseExecutionUpdate) GetExternalIdOk

func (o *BaseExecutionUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionUpdate) GetLastKnownState

func (o *BaseExecutionUpdate) GetLastKnownState() ExecutionState

GetLastKnownState returns the LastKnownState field value if set, zero value otherwise.

func (*BaseExecutionUpdate) GetLastKnownStateOk

func (o *BaseExecutionUpdate) GetLastKnownStateOk() (*ExecutionState, bool)

GetLastKnownStateOk returns a tuple with the LastKnownState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseExecutionUpdate) HasCustomProperties

func (o *BaseExecutionUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseExecutionUpdate) HasDescription

func (o *BaseExecutionUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseExecutionUpdate) HasExternalId

func (o *BaseExecutionUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*BaseExecutionUpdate) HasLastKnownState

func (o *BaseExecutionUpdate) HasLastKnownState() bool

HasLastKnownState returns a boolean if a field has been set.

func (BaseExecutionUpdate) MarshalJSON

func (o BaseExecutionUpdate) MarshalJSON() ([]byte, error)

func (*BaseExecutionUpdate) SetCustomProperties

func (o *BaseExecutionUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseExecutionUpdate) SetDescription

func (o *BaseExecutionUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseExecutionUpdate) SetExternalId

func (o *BaseExecutionUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*BaseExecutionUpdate) SetLastKnownState

func (o *BaseExecutionUpdate) SetLastKnownState(v ExecutionState)

SetLastKnownState gets a reference to the given ExecutionState and assigns it to the LastKnownState field.

func (BaseExecutionUpdate) ToMap

func (o BaseExecutionUpdate) ToMap() (map[string]interface{}, error)

type BaseResource

type BaseResource struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
}

BaseResource struct for BaseResource

func NewBaseResource

func NewBaseResource() *BaseResource

NewBaseResource instantiates a new BaseResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseResourceWithDefaults

func NewBaseResourceWithDefaults() *BaseResource

NewBaseResourceWithDefaults instantiates a new BaseResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseResource) GetCreateTimeSinceEpoch

func (o *BaseResource) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*BaseResource) GetCreateTimeSinceEpochOk

func (o *BaseResource) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResource) GetCustomProperties

func (o *BaseResource) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseResource) GetCustomPropertiesOk

func (o *BaseResource) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResource) GetDescription

func (o *BaseResource) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseResource) GetDescriptionOk

func (o *BaseResource) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResource) GetExternalId

func (o *BaseResource) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseResource) GetExternalIdOk

func (o *BaseResource) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResource) GetId

func (o *BaseResource) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*BaseResource) GetIdOk

func (o *BaseResource) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResource) GetLastUpdateTimeSinceEpoch

func (o *BaseResource) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*BaseResource) GetLastUpdateTimeSinceEpochOk

func (o *BaseResource) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResource) GetName

func (o *BaseResource) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*BaseResource) GetNameOk

func (o *BaseResource) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResource) HasCreateTimeSinceEpoch

func (o *BaseResource) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*BaseResource) HasCustomProperties

func (o *BaseResource) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseResource) HasDescription

func (o *BaseResource) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseResource) HasExternalId

func (o *BaseResource) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*BaseResource) HasId

func (o *BaseResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*BaseResource) HasLastUpdateTimeSinceEpoch

func (o *BaseResource) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*BaseResource) HasName

func (o *BaseResource) HasName() bool

HasName returns a boolean if a field has been set.

func (BaseResource) MarshalJSON

func (o BaseResource) MarshalJSON() ([]byte, error)

func (*BaseResource) SetCreateTimeSinceEpoch

func (o *BaseResource) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*BaseResource) SetCustomProperties

func (o *BaseResource) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseResource) SetDescription

func (o *BaseResource) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseResource) SetExternalId

func (o *BaseResource) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*BaseResource) SetId

func (o *BaseResource) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*BaseResource) SetLastUpdateTimeSinceEpoch

func (o *BaseResource) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*BaseResource) SetName

func (o *BaseResource) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (BaseResource) ToMap

func (o BaseResource) ToMap() (map[string]interface{}, error)

type BaseResourceCreate

type BaseResourceCreate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
}

BaseResourceCreate struct for BaseResourceCreate

func NewBaseResourceCreate

func NewBaseResourceCreate() *BaseResourceCreate

NewBaseResourceCreate instantiates a new BaseResourceCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseResourceCreateWithDefaults

func NewBaseResourceCreateWithDefaults() *BaseResourceCreate

NewBaseResourceCreateWithDefaults instantiates a new BaseResourceCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseResourceCreate) GetCustomProperties

func (o *BaseResourceCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseResourceCreate) GetCustomPropertiesOk

func (o *BaseResourceCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResourceCreate) GetDescription

func (o *BaseResourceCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseResourceCreate) GetDescriptionOk

func (o *BaseResourceCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResourceCreate) GetExternalId

func (o *BaseResourceCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseResourceCreate) GetExternalIdOk

func (o *BaseResourceCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResourceCreate) GetName

func (o *BaseResourceCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*BaseResourceCreate) GetNameOk

func (o *BaseResourceCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResourceCreate) HasCustomProperties

func (o *BaseResourceCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseResourceCreate) HasDescription

func (o *BaseResourceCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseResourceCreate) HasExternalId

func (o *BaseResourceCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*BaseResourceCreate) HasName

func (o *BaseResourceCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (BaseResourceCreate) MarshalJSON

func (o BaseResourceCreate) MarshalJSON() ([]byte, error)

func (*BaseResourceCreate) SetCustomProperties

func (o *BaseResourceCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseResourceCreate) SetDescription

func (o *BaseResourceCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseResourceCreate) SetExternalId

func (o *BaseResourceCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*BaseResourceCreate) SetName

func (o *BaseResourceCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (BaseResourceCreate) ToMap

func (o BaseResourceCreate) ToMap() (map[string]interface{}, error)

type BaseResourceList

type BaseResourceList struct {
	// Token to use to retrieve next page of results.
	NextPageToken string `json:"nextPageToken"`
	// Maximum number of resources to return in the result.
	PageSize int32 `json:"pageSize"`
	// Number of items in result list.
	Size int32 `json:"size"`
}

BaseResourceList struct for BaseResourceList

func NewBaseResourceList

func NewBaseResourceList(nextPageToken string, pageSize int32, size int32) *BaseResourceList

NewBaseResourceList instantiates a new BaseResourceList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseResourceListWithDefaults

func NewBaseResourceListWithDefaults() *BaseResourceList

NewBaseResourceListWithDefaults instantiates a new BaseResourceList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseResourceList) GetNextPageToken

func (o *BaseResourceList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*BaseResourceList) GetNextPageTokenOk

func (o *BaseResourceList) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*BaseResourceList) GetPageSize

func (o *BaseResourceList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*BaseResourceList) GetPageSizeOk

func (o *BaseResourceList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*BaseResourceList) GetSize

func (o *BaseResourceList) GetSize() int32

GetSize returns the Size field value

func (*BaseResourceList) GetSizeOk

func (o *BaseResourceList) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (BaseResourceList) MarshalJSON

func (o BaseResourceList) MarshalJSON() ([]byte, error)

func (*BaseResourceList) SetNextPageToken

func (o *BaseResourceList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*BaseResourceList) SetPageSize

func (o *BaseResourceList) SetPageSize(v int32)

SetPageSize sets field value

func (*BaseResourceList) SetSize

func (o *BaseResourceList) SetSize(v int32)

SetSize sets field value

func (BaseResourceList) ToMap

func (o BaseResourceList) ToMap() (map[string]interface{}, error)

type BaseResourceUpdate

type BaseResourceUpdate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
}

BaseResourceUpdate struct for BaseResourceUpdate

func NewBaseResourceUpdate

func NewBaseResourceUpdate() *BaseResourceUpdate

NewBaseResourceUpdate instantiates a new BaseResourceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseResourceUpdateWithDefaults

func NewBaseResourceUpdateWithDefaults() *BaseResourceUpdate

NewBaseResourceUpdateWithDefaults instantiates a new BaseResourceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseResourceUpdate) GetCustomProperties

func (o *BaseResourceUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*BaseResourceUpdate) GetCustomPropertiesOk

func (o *BaseResourceUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResourceUpdate) GetDescription

func (o *BaseResourceUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*BaseResourceUpdate) GetDescriptionOk

func (o *BaseResourceUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResourceUpdate) GetExternalId

func (o *BaseResourceUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*BaseResourceUpdate) GetExternalIdOk

func (o *BaseResourceUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseResourceUpdate) HasCustomProperties

func (o *BaseResourceUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseResourceUpdate) HasDescription

func (o *BaseResourceUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseResourceUpdate) HasExternalId

func (o *BaseResourceUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (BaseResourceUpdate) MarshalJSON

func (o BaseResourceUpdate) MarshalJSON() ([]byte, error)

func (*BaseResourceUpdate) SetCustomProperties

func (o *BaseResourceUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*BaseResourceUpdate) SetDescription

func (o *BaseResourceUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*BaseResourceUpdate) SetExternalId

func (o *BaseResourceUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (BaseResourceUpdate) ToMap

func (o BaseResourceUpdate) ToMap() (map[string]interface{}, error)

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type DocArtifact

type DocArtifact struct {
	ArtifactType string `json:"artifactType"`
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The uniform resource identifier of the physical artifact. May be empty if there is no physical artifact.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
}

DocArtifact A document.

func NewDocArtifact

func NewDocArtifact(artifactType string) *DocArtifact

NewDocArtifact instantiates a new DocArtifact object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDocArtifactWithDefaults

func NewDocArtifactWithDefaults() *DocArtifact

NewDocArtifactWithDefaults instantiates a new DocArtifact object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DocArtifact) GetArtifactType

func (o *DocArtifact) GetArtifactType() string

GetArtifactType returns the ArtifactType field value

func (*DocArtifact) GetArtifactTypeOk

func (o *DocArtifact) GetArtifactTypeOk() (*string, bool)

GetArtifactTypeOk returns a tuple with the ArtifactType field value and a boolean to check if the value has been set.

func (*DocArtifact) GetCreateTimeSinceEpoch

func (o *DocArtifact) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*DocArtifact) GetCreateTimeSinceEpochOk

func (o *DocArtifact) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) GetCustomProperties

func (o *DocArtifact) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*DocArtifact) GetCustomPropertiesOk

func (o *DocArtifact) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) GetDescription

func (o *DocArtifact) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DocArtifact) GetDescriptionOk

func (o *DocArtifact) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) GetExternalId

func (o *DocArtifact) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*DocArtifact) GetExternalIdOk

func (o *DocArtifact) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) GetId

func (o *DocArtifact) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*DocArtifact) GetIdOk

func (o *DocArtifact) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) GetLastUpdateTimeSinceEpoch

func (o *DocArtifact) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*DocArtifact) GetLastUpdateTimeSinceEpochOk

func (o *DocArtifact) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) GetName

func (o *DocArtifact) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*DocArtifact) GetNameOk

func (o *DocArtifact) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) GetState

func (o *DocArtifact) GetState() ArtifactState

GetState returns the State field value if set, zero value otherwise.

func (*DocArtifact) GetStateOk

func (o *DocArtifact) GetStateOk() (*ArtifactState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) GetUri

func (o *DocArtifact) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*DocArtifact) GetUriOk

func (o *DocArtifact) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DocArtifact) HasCreateTimeSinceEpoch

func (o *DocArtifact) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*DocArtifact) HasCustomProperties

func (o *DocArtifact) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*DocArtifact) HasDescription

func (o *DocArtifact) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DocArtifact) HasExternalId

func (o *DocArtifact) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*DocArtifact) HasId

func (o *DocArtifact) HasId() bool

HasId returns a boolean if a field has been set.

func (*DocArtifact) HasLastUpdateTimeSinceEpoch

func (o *DocArtifact) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*DocArtifact) HasName

func (o *DocArtifact) HasName() bool

HasName returns a boolean if a field has been set.

func (*DocArtifact) HasState

func (o *DocArtifact) HasState() bool

HasState returns a boolean if a field has been set.

func (*DocArtifact) HasUri

func (o *DocArtifact) HasUri() bool

HasUri returns a boolean if a field has been set.

func (DocArtifact) MarshalJSON

func (o DocArtifact) MarshalJSON() ([]byte, error)

func (*DocArtifact) SetArtifactType

func (o *DocArtifact) SetArtifactType(v string)

SetArtifactType sets field value

func (*DocArtifact) SetCreateTimeSinceEpoch

func (o *DocArtifact) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*DocArtifact) SetCustomProperties

func (o *DocArtifact) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*DocArtifact) SetDescription

func (o *DocArtifact) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DocArtifact) SetExternalId

func (o *DocArtifact) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*DocArtifact) SetId

func (o *DocArtifact) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*DocArtifact) SetLastUpdateTimeSinceEpoch

func (o *DocArtifact) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*DocArtifact) SetName

func (o *DocArtifact) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*DocArtifact) SetState

func (o *DocArtifact) SetState(v ArtifactState)

SetState gets a reference to the given ArtifactState and assigns it to the State field.

func (*DocArtifact) SetUri

func (o *DocArtifact) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (DocArtifact) ToMap

func (o DocArtifact) ToMap() (map[string]interface{}, error)

type Error

type Error struct {
	// Error code
	Code string `json:"code"`
	// Error message
	Message string `json:"message"`
}

Error Error code and message.

func NewError

func NewError(code string, message string) *Error

NewError instantiates a new Error object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Error) GetCode

func (o *Error) GetCode() string

GetCode returns the Code field value

func (*Error) GetCodeOk

func (o *Error) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value and a boolean to check if the value has been set.

func (*Error) GetMessage

func (o *Error) GetMessage() string

GetMessage returns the Message field value

func (*Error) GetMessageOk

func (o *Error) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (Error) MarshalJSON

func (o Error) MarshalJSON() ([]byte, error)

func (*Error) SetCode

func (o *Error) SetCode(v string)

SetCode sets field value

func (*Error) SetMessage

func (o *Error) SetMessage(v string)

SetMessage sets field value

func (Error) ToMap

func (o Error) ToMap() (map[string]interface{}, error)

type ExecutionState

type ExecutionState string

ExecutionState The state of the Execution. The state transitions are NEW -> RUNNING -> COMPLETE | CACHED | FAILED | CANCELED CACHED means the execution is skipped due to cached results. CANCELED means the execution is skipped due to precondition not met. It is different from CACHED in that a CANCELED execution will not have any event associated with it. It is different from FAILED in that there is no unexpected error happened and it is regarded as a normal state. See also: ml-metadata Execution.State

const (
	EXECUTIONSTATE_UNKNOWN  ExecutionState = "UNKNOWN"
	EXECUTIONSTATE_NEW      ExecutionState = "NEW"
	EXECUTIONSTATE_RUNNING  ExecutionState = "RUNNING"
	EXECUTIONSTATE_COMPLETE ExecutionState = "COMPLETE"
	EXECUTIONSTATE_FAILED   ExecutionState = "FAILED"
	EXECUTIONSTATE_CACHED   ExecutionState = "CACHED"
	EXECUTIONSTATE_CANCELED ExecutionState = "CANCELED"
)

List of ExecutionState

func NewExecutionStateFromValue

func NewExecutionStateFromValue(v string) (*ExecutionState, error)

NewExecutionStateFromValue returns a pointer to a valid ExecutionState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ExecutionState) IsValid

func (v ExecutionState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ExecutionState) Ptr

func (v ExecutionState) Ptr() *ExecutionState

Ptr returns reference to ExecutionState value

func (*ExecutionState) UnmarshalJSON

func (v *ExecutionState) UnmarshalJSON(src []byte) error

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type InferenceService

type InferenceService struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
	// ID of the `ModelVersion` to serve. If it's unspecified, then the latest `ModelVersion` by creation order will be served.
	ModelVersionId *string `json:"modelVersionId,omitempty"`
	// Model runtime.
	Runtime      *string                `json:"runtime,omitempty"`
	DesiredState *InferenceServiceState `json:"desiredState,omitempty"`
	// ID of the `RegisteredModel` to serve.
	RegisteredModelId string `json:"registeredModelId"`
	// ID of the parent `ServingEnvironment` for this `InferenceService` entity.
	ServingEnvironmentId string `json:"servingEnvironmentId"`
}

InferenceService An `InferenceService` entity in a `ServingEnvironment` represents a deployed `ModelVersion` from a `RegisteredModel` created by Model Serving.

func NewInferenceService

func NewInferenceService(registeredModelId string, servingEnvironmentId string) *InferenceService

NewInferenceService instantiates a new InferenceService object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInferenceServiceWithDefaults

func NewInferenceServiceWithDefaults() *InferenceService

NewInferenceServiceWithDefaults instantiates a new InferenceService object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InferenceService) GetCreateTimeSinceEpoch

func (o *InferenceService) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*InferenceService) GetCreateTimeSinceEpochOk

func (o *InferenceService) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetCustomProperties

func (o *InferenceService) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*InferenceService) GetCustomPropertiesOk

func (o *InferenceService) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetDescription

func (o *InferenceService) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*InferenceService) GetDescriptionOk

func (o *InferenceService) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetDesiredState

func (o *InferenceService) GetDesiredState() InferenceServiceState

GetDesiredState returns the DesiredState field value if set, zero value otherwise.

func (*InferenceService) GetDesiredStateOk

func (o *InferenceService) GetDesiredStateOk() (*InferenceServiceState, bool)

GetDesiredStateOk returns a tuple with the DesiredState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetExternalId

func (o *InferenceService) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*InferenceService) GetExternalIdOk

func (o *InferenceService) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetId

func (o *InferenceService) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*InferenceService) GetIdOk

func (o *InferenceService) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetLastUpdateTimeSinceEpoch

func (o *InferenceService) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*InferenceService) GetLastUpdateTimeSinceEpochOk

func (o *InferenceService) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetModelVersionId

func (o *InferenceService) GetModelVersionId() string

GetModelVersionId returns the ModelVersionId field value if set, zero value otherwise.

func (*InferenceService) GetModelVersionIdOk

func (o *InferenceService) GetModelVersionIdOk() (*string, bool)

GetModelVersionIdOk returns a tuple with the ModelVersionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetName

func (o *InferenceService) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*InferenceService) GetNameOk

func (o *InferenceService) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetRegisteredModelId

func (o *InferenceService) GetRegisteredModelId() string

GetRegisteredModelId returns the RegisteredModelId field value

func (*InferenceService) GetRegisteredModelIdOk

func (o *InferenceService) GetRegisteredModelIdOk() (*string, bool)

GetRegisteredModelIdOk returns a tuple with the RegisteredModelId field value and a boolean to check if the value has been set.

func (*InferenceService) GetRuntime

func (o *InferenceService) GetRuntime() string

GetRuntime returns the Runtime field value if set, zero value otherwise.

func (*InferenceService) GetRuntimeOk

func (o *InferenceService) GetRuntimeOk() (*string, bool)

GetRuntimeOk returns a tuple with the Runtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceService) GetServingEnvironmentId

func (o *InferenceService) GetServingEnvironmentId() string

GetServingEnvironmentId returns the ServingEnvironmentId field value

func (*InferenceService) GetServingEnvironmentIdOk

func (o *InferenceService) GetServingEnvironmentIdOk() (*string, bool)

GetServingEnvironmentIdOk returns a tuple with the ServingEnvironmentId field value and a boolean to check if the value has been set.

func (*InferenceService) HasCreateTimeSinceEpoch

func (o *InferenceService) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*InferenceService) HasCustomProperties

func (o *InferenceService) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*InferenceService) HasDescription

func (o *InferenceService) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*InferenceService) HasDesiredState

func (o *InferenceService) HasDesiredState() bool

HasDesiredState returns a boolean if a field has been set.

func (*InferenceService) HasExternalId

func (o *InferenceService) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*InferenceService) HasId

func (o *InferenceService) HasId() bool

HasId returns a boolean if a field has been set.

func (*InferenceService) HasLastUpdateTimeSinceEpoch

func (o *InferenceService) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*InferenceService) HasModelVersionId

func (o *InferenceService) HasModelVersionId() bool

HasModelVersionId returns a boolean if a field has been set.

func (*InferenceService) HasName

func (o *InferenceService) HasName() bool

HasName returns a boolean if a field has been set.

func (*InferenceService) HasRuntime

func (o *InferenceService) HasRuntime() bool

HasRuntime returns a boolean if a field has been set.

func (InferenceService) MarshalJSON

func (o InferenceService) MarshalJSON() ([]byte, error)

func (*InferenceService) SetCreateTimeSinceEpoch

func (o *InferenceService) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*InferenceService) SetCustomProperties

func (o *InferenceService) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*InferenceService) SetDescription

func (o *InferenceService) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*InferenceService) SetDesiredState

func (o *InferenceService) SetDesiredState(v InferenceServiceState)

SetDesiredState gets a reference to the given InferenceServiceState and assigns it to the DesiredState field.

func (*InferenceService) SetExternalId

func (o *InferenceService) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*InferenceService) SetId

func (o *InferenceService) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*InferenceService) SetLastUpdateTimeSinceEpoch

func (o *InferenceService) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*InferenceService) SetModelVersionId

func (o *InferenceService) SetModelVersionId(v string)

SetModelVersionId gets a reference to the given string and assigns it to the ModelVersionId field.

func (*InferenceService) SetName

func (o *InferenceService) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*InferenceService) SetRegisteredModelId

func (o *InferenceService) SetRegisteredModelId(v string)

SetRegisteredModelId sets field value

func (*InferenceService) SetRuntime

func (o *InferenceService) SetRuntime(v string)

SetRuntime gets a reference to the given string and assigns it to the Runtime field.

func (*InferenceService) SetServingEnvironmentId

func (o *InferenceService) SetServingEnvironmentId(v string)

SetServingEnvironmentId sets field value

func (InferenceService) ToMap

func (o InferenceService) ToMap() (map[string]interface{}, error)

type InferenceServiceCreate

type InferenceServiceCreate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// ID of the `ModelVersion` to serve. If it's unspecified, then the latest `ModelVersion` by creation order will be served.
	ModelVersionId *string `json:"modelVersionId,omitempty"`
	// Model runtime.
	Runtime      *string                `json:"runtime,omitempty"`
	DesiredState *InferenceServiceState `json:"desiredState,omitempty"`
	// ID of the `RegisteredModel` to serve.
	RegisteredModelId string `json:"registeredModelId"`
	// ID of the parent `ServingEnvironment` for this `InferenceService` entity.
	ServingEnvironmentId string `json:"servingEnvironmentId"`
}

InferenceServiceCreate An `InferenceService` entity in a `ServingEnvironment` represents a deployed `ModelVersion` from a `RegisteredModel` created by Model Serving.

func NewInferenceServiceCreate

func NewInferenceServiceCreate(registeredModelId string, servingEnvironmentId string) *InferenceServiceCreate

NewInferenceServiceCreate instantiates a new InferenceServiceCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInferenceServiceCreateWithDefaults

func NewInferenceServiceCreateWithDefaults() *InferenceServiceCreate

NewInferenceServiceCreateWithDefaults instantiates a new InferenceServiceCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InferenceServiceCreate) GetCustomProperties

func (o *InferenceServiceCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*InferenceServiceCreate) GetCustomPropertiesOk

func (o *InferenceServiceCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceCreate) GetDescription

func (o *InferenceServiceCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*InferenceServiceCreate) GetDescriptionOk

func (o *InferenceServiceCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceCreate) GetDesiredState

func (o *InferenceServiceCreate) GetDesiredState() InferenceServiceState

GetDesiredState returns the DesiredState field value if set, zero value otherwise.

func (*InferenceServiceCreate) GetDesiredStateOk

func (o *InferenceServiceCreate) GetDesiredStateOk() (*InferenceServiceState, bool)

GetDesiredStateOk returns a tuple with the DesiredState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceCreate) GetExternalId

func (o *InferenceServiceCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*InferenceServiceCreate) GetExternalIdOk

func (o *InferenceServiceCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceCreate) GetModelVersionId

func (o *InferenceServiceCreate) GetModelVersionId() string

GetModelVersionId returns the ModelVersionId field value if set, zero value otherwise.

func (*InferenceServiceCreate) GetModelVersionIdOk

func (o *InferenceServiceCreate) GetModelVersionIdOk() (*string, bool)

GetModelVersionIdOk returns a tuple with the ModelVersionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceCreate) GetName

func (o *InferenceServiceCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*InferenceServiceCreate) GetNameOk

func (o *InferenceServiceCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceCreate) GetRegisteredModelId

func (o *InferenceServiceCreate) GetRegisteredModelId() string

GetRegisteredModelId returns the RegisteredModelId field value

func (*InferenceServiceCreate) GetRegisteredModelIdOk

func (o *InferenceServiceCreate) GetRegisteredModelIdOk() (*string, bool)

GetRegisteredModelIdOk returns a tuple with the RegisteredModelId field value and a boolean to check if the value has been set.

func (*InferenceServiceCreate) GetRuntime

func (o *InferenceServiceCreate) GetRuntime() string

GetRuntime returns the Runtime field value if set, zero value otherwise.

func (*InferenceServiceCreate) GetRuntimeOk

func (o *InferenceServiceCreate) GetRuntimeOk() (*string, bool)

GetRuntimeOk returns a tuple with the Runtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceCreate) GetServingEnvironmentId

func (o *InferenceServiceCreate) GetServingEnvironmentId() string

GetServingEnvironmentId returns the ServingEnvironmentId field value

func (*InferenceServiceCreate) GetServingEnvironmentIdOk

func (o *InferenceServiceCreate) GetServingEnvironmentIdOk() (*string, bool)

GetServingEnvironmentIdOk returns a tuple with the ServingEnvironmentId field value and a boolean to check if the value has been set.

func (*InferenceServiceCreate) HasCustomProperties

func (o *InferenceServiceCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*InferenceServiceCreate) HasDescription

func (o *InferenceServiceCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*InferenceServiceCreate) HasDesiredState

func (o *InferenceServiceCreate) HasDesiredState() bool

HasDesiredState returns a boolean if a field has been set.

func (*InferenceServiceCreate) HasExternalId

func (o *InferenceServiceCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*InferenceServiceCreate) HasModelVersionId

func (o *InferenceServiceCreate) HasModelVersionId() bool

HasModelVersionId returns a boolean if a field has been set.

func (*InferenceServiceCreate) HasName

func (o *InferenceServiceCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*InferenceServiceCreate) HasRuntime

func (o *InferenceServiceCreate) HasRuntime() bool

HasRuntime returns a boolean if a field has been set.

func (InferenceServiceCreate) MarshalJSON

func (o InferenceServiceCreate) MarshalJSON() ([]byte, error)

func (*InferenceServiceCreate) SetCustomProperties

func (o *InferenceServiceCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*InferenceServiceCreate) SetDescription

func (o *InferenceServiceCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*InferenceServiceCreate) SetDesiredState

func (o *InferenceServiceCreate) SetDesiredState(v InferenceServiceState)

SetDesiredState gets a reference to the given InferenceServiceState and assigns it to the DesiredState field.

func (*InferenceServiceCreate) SetExternalId

func (o *InferenceServiceCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*InferenceServiceCreate) SetModelVersionId

func (o *InferenceServiceCreate) SetModelVersionId(v string)

SetModelVersionId gets a reference to the given string and assigns it to the ModelVersionId field.

func (*InferenceServiceCreate) SetName

func (o *InferenceServiceCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*InferenceServiceCreate) SetRegisteredModelId

func (o *InferenceServiceCreate) SetRegisteredModelId(v string)

SetRegisteredModelId sets field value

func (*InferenceServiceCreate) SetRuntime

func (o *InferenceServiceCreate) SetRuntime(v string)

SetRuntime gets a reference to the given string and assigns it to the Runtime field.

func (*InferenceServiceCreate) SetServingEnvironmentId

func (o *InferenceServiceCreate) SetServingEnvironmentId(v string)

SetServingEnvironmentId sets field value

func (InferenceServiceCreate) ToMap

func (o InferenceServiceCreate) ToMap() (map[string]interface{}, error)

type InferenceServiceList

type InferenceServiceList struct {
	// Token to use to retrieve next page of results.
	NextPageToken string `json:"nextPageToken"`
	// Maximum number of resources to return in the result.
	PageSize int32 `json:"pageSize"`
	// Number of items in result list.
	Size int32 `json:"size"`
	//
	Items []InferenceService `json:"items,omitempty"`
}

InferenceServiceList List of InferenceServices.

func NewInferenceServiceList

func NewInferenceServiceList(nextPageToken string, pageSize int32, size int32) *InferenceServiceList

NewInferenceServiceList instantiates a new InferenceServiceList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInferenceServiceListWithDefaults

func NewInferenceServiceListWithDefaults() *InferenceServiceList

NewInferenceServiceListWithDefaults instantiates a new InferenceServiceList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InferenceServiceList) GetItems

func (o *InferenceServiceList) GetItems() []InferenceService

GetItems returns the Items field value if set, zero value otherwise.

func (*InferenceServiceList) GetItemsOk

func (o *InferenceServiceList) GetItemsOk() ([]InferenceService, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceList) GetNextPageToken

func (o *InferenceServiceList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*InferenceServiceList) GetNextPageTokenOk

func (o *InferenceServiceList) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*InferenceServiceList) GetPageSize

func (o *InferenceServiceList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*InferenceServiceList) GetPageSizeOk

func (o *InferenceServiceList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*InferenceServiceList) GetSize

func (o *InferenceServiceList) GetSize() int32

GetSize returns the Size field value

func (*InferenceServiceList) GetSizeOk

func (o *InferenceServiceList) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*InferenceServiceList) HasItems

func (o *InferenceServiceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (InferenceServiceList) MarshalJSON

func (o InferenceServiceList) MarshalJSON() ([]byte, error)

func (*InferenceServiceList) SetItems

func (o *InferenceServiceList) SetItems(v []InferenceService)

SetItems gets a reference to the given []InferenceService and assigns it to the Items field.

func (*InferenceServiceList) SetNextPageToken

func (o *InferenceServiceList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*InferenceServiceList) SetPageSize

func (o *InferenceServiceList) SetPageSize(v int32)

SetPageSize sets field value

func (*InferenceServiceList) SetSize

func (o *InferenceServiceList) SetSize(v int32)

SetSize sets field value

func (InferenceServiceList) ToMap

func (o InferenceServiceList) ToMap() (map[string]interface{}, error)

type InferenceServiceState

type InferenceServiceState string

InferenceServiceState - DEPLOYED: A state indicating that the `InferenceService` should be deployed. - UNDEPLOYED: A state indicating that the `InferenceService` should be un-deployed. The state indicates the desired state of inference service. See the associated `ServeModel` for the actual status of service deployment action.

const (
	INFERENCESERVICESTATE_DEPLOYED   InferenceServiceState = "DEPLOYED"
	INFERENCESERVICESTATE_UNDEPLOYED InferenceServiceState = "UNDEPLOYED"
)

List of InferenceServiceState

func NewInferenceServiceStateFromValue

func NewInferenceServiceStateFromValue(v string) (*InferenceServiceState, error)

NewInferenceServiceStateFromValue returns a pointer to a valid InferenceServiceState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (InferenceServiceState) IsValid

func (v InferenceServiceState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (InferenceServiceState) Ptr

Ptr returns reference to InferenceServiceState value

func (*InferenceServiceState) UnmarshalJSON

func (v *InferenceServiceState) UnmarshalJSON(src []byte) error

type InferenceServiceUpdate

type InferenceServiceUpdate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// ID of the `ModelVersion` to serve. If it's unspecified, then the latest `ModelVersion` by creation order will be served.
	ModelVersionId *string `json:"modelVersionId,omitempty"`
	// Model runtime.
	Runtime      *string                `json:"runtime,omitempty"`
	DesiredState *InferenceServiceState `json:"desiredState,omitempty"`
}

InferenceServiceUpdate An `InferenceService` entity in a `ServingEnvironment` represents a deployed `ModelVersion` from a `RegisteredModel` created by Model Serving.

func NewInferenceServiceUpdate

func NewInferenceServiceUpdate() *InferenceServiceUpdate

NewInferenceServiceUpdate instantiates a new InferenceServiceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewInferenceServiceUpdateWithDefaults

func NewInferenceServiceUpdateWithDefaults() *InferenceServiceUpdate

NewInferenceServiceUpdateWithDefaults instantiates a new InferenceServiceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*InferenceServiceUpdate) GetCustomProperties

func (o *InferenceServiceUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*InferenceServiceUpdate) GetCustomPropertiesOk

func (o *InferenceServiceUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceUpdate) GetDescription

func (o *InferenceServiceUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*InferenceServiceUpdate) GetDescriptionOk

func (o *InferenceServiceUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceUpdate) GetDesiredState

func (o *InferenceServiceUpdate) GetDesiredState() InferenceServiceState

GetDesiredState returns the DesiredState field value if set, zero value otherwise.

func (*InferenceServiceUpdate) GetDesiredStateOk

func (o *InferenceServiceUpdate) GetDesiredStateOk() (*InferenceServiceState, bool)

GetDesiredStateOk returns a tuple with the DesiredState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceUpdate) GetExternalId

func (o *InferenceServiceUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*InferenceServiceUpdate) GetExternalIdOk

func (o *InferenceServiceUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceUpdate) GetModelVersionId

func (o *InferenceServiceUpdate) GetModelVersionId() string

GetModelVersionId returns the ModelVersionId field value if set, zero value otherwise.

func (*InferenceServiceUpdate) GetModelVersionIdOk

func (o *InferenceServiceUpdate) GetModelVersionIdOk() (*string, bool)

GetModelVersionIdOk returns a tuple with the ModelVersionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceUpdate) GetRuntime

func (o *InferenceServiceUpdate) GetRuntime() string

GetRuntime returns the Runtime field value if set, zero value otherwise.

func (*InferenceServiceUpdate) GetRuntimeOk

func (o *InferenceServiceUpdate) GetRuntimeOk() (*string, bool)

GetRuntimeOk returns a tuple with the Runtime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InferenceServiceUpdate) HasCustomProperties

func (o *InferenceServiceUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*InferenceServiceUpdate) HasDescription

func (o *InferenceServiceUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*InferenceServiceUpdate) HasDesiredState

func (o *InferenceServiceUpdate) HasDesiredState() bool

HasDesiredState returns a boolean if a field has been set.

func (*InferenceServiceUpdate) HasExternalId

func (o *InferenceServiceUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*InferenceServiceUpdate) HasModelVersionId

func (o *InferenceServiceUpdate) HasModelVersionId() bool

HasModelVersionId returns a boolean if a field has been set.

func (*InferenceServiceUpdate) HasRuntime

func (o *InferenceServiceUpdate) HasRuntime() bool

HasRuntime returns a boolean if a field has been set.

func (InferenceServiceUpdate) MarshalJSON

func (o InferenceServiceUpdate) MarshalJSON() ([]byte, error)

func (*InferenceServiceUpdate) SetCustomProperties

func (o *InferenceServiceUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*InferenceServiceUpdate) SetDescription

func (o *InferenceServiceUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*InferenceServiceUpdate) SetDesiredState

func (o *InferenceServiceUpdate) SetDesiredState(v InferenceServiceState)

SetDesiredState gets a reference to the given InferenceServiceState and assigns it to the DesiredState field.

func (*InferenceServiceUpdate) SetExternalId

func (o *InferenceServiceUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*InferenceServiceUpdate) SetModelVersionId

func (o *InferenceServiceUpdate) SetModelVersionId(v string)

SetModelVersionId gets a reference to the given string and assigns it to the ModelVersionId field.

func (*InferenceServiceUpdate) SetRuntime

func (o *InferenceServiceUpdate) SetRuntime(v string)

SetRuntime gets a reference to the given string and assigns it to the Runtime field.

func (InferenceServiceUpdate) ToMap

func (o InferenceServiceUpdate) ToMap() (map[string]interface{}, error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MetadataBoolValue

type MetadataBoolValue struct {
	BoolValue    bool   `json:"bool_value"`
	MetadataType string `json:"metadataType"`
}

MetadataBoolValue A bool property value.

func NewMetadataBoolValue

func NewMetadataBoolValue(boolValue bool, metadataType string) *MetadataBoolValue

NewMetadataBoolValue instantiates a new MetadataBoolValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetadataBoolValueWithDefaults

func NewMetadataBoolValueWithDefaults() *MetadataBoolValue

NewMetadataBoolValueWithDefaults instantiates a new MetadataBoolValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetadataBoolValue) GetBoolValue

func (o *MetadataBoolValue) GetBoolValue() bool

GetBoolValue returns the BoolValue field value

func (*MetadataBoolValue) GetBoolValueOk

func (o *MetadataBoolValue) GetBoolValueOk() (*bool, bool)

GetBoolValueOk returns a tuple with the BoolValue field value and a boolean to check if the value has been set.

func (*MetadataBoolValue) GetMetadataType

func (o *MetadataBoolValue) GetMetadataType() string

GetMetadataType returns the MetadataType field value

func (*MetadataBoolValue) GetMetadataTypeOk

func (o *MetadataBoolValue) GetMetadataTypeOk() (*string, bool)

GetMetadataTypeOk returns a tuple with the MetadataType field value and a boolean to check if the value has been set.

func (MetadataBoolValue) MarshalJSON

func (o MetadataBoolValue) MarshalJSON() ([]byte, error)

func (*MetadataBoolValue) SetBoolValue

func (o *MetadataBoolValue) SetBoolValue(v bool)

SetBoolValue sets field value

func (*MetadataBoolValue) SetMetadataType

func (o *MetadataBoolValue) SetMetadataType(v string)

SetMetadataType sets field value

func (MetadataBoolValue) ToMap

func (o MetadataBoolValue) ToMap() (map[string]interface{}, error)

type MetadataDoubleValue

type MetadataDoubleValue struct {
	DoubleValue  float64 `json:"double_value"`
	MetadataType string  `json:"metadataType"`
}

MetadataDoubleValue A double property value.

func NewMetadataDoubleValue

func NewMetadataDoubleValue(doubleValue float64, metadataType string) *MetadataDoubleValue

NewMetadataDoubleValue instantiates a new MetadataDoubleValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetadataDoubleValueWithDefaults

func NewMetadataDoubleValueWithDefaults() *MetadataDoubleValue

NewMetadataDoubleValueWithDefaults instantiates a new MetadataDoubleValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetadataDoubleValue) GetDoubleValue

func (o *MetadataDoubleValue) GetDoubleValue() float64

GetDoubleValue returns the DoubleValue field value

func (*MetadataDoubleValue) GetDoubleValueOk

func (o *MetadataDoubleValue) GetDoubleValueOk() (*float64, bool)

GetDoubleValueOk returns a tuple with the DoubleValue field value and a boolean to check if the value has been set.

func (*MetadataDoubleValue) GetMetadataType

func (o *MetadataDoubleValue) GetMetadataType() string

GetMetadataType returns the MetadataType field value

func (*MetadataDoubleValue) GetMetadataTypeOk

func (o *MetadataDoubleValue) GetMetadataTypeOk() (*string, bool)

GetMetadataTypeOk returns a tuple with the MetadataType field value and a boolean to check if the value has been set.

func (MetadataDoubleValue) MarshalJSON

func (o MetadataDoubleValue) MarshalJSON() ([]byte, error)

func (*MetadataDoubleValue) SetDoubleValue

func (o *MetadataDoubleValue) SetDoubleValue(v float64)

SetDoubleValue sets field value

func (*MetadataDoubleValue) SetMetadataType

func (o *MetadataDoubleValue) SetMetadataType(v string)

SetMetadataType sets field value

func (MetadataDoubleValue) ToMap

func (o MetadataDoubleValue) ToMap() (map[string]interface{}, error)

type MetadataIntValue

type MetadataIntValue struct {
	IntValue     string `json:"int_value"`
	MetadataType string `json:"metadataType"`
}

MetadataIntValue An integer (int64) property value.

func NewMetadataIntValue

func NewMetadataIntValue(intValue string, metadataType string) *MetadataIntValue

NewMetadataIntValue instantiates a new MetadataIntValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetadataIntValueWithDefaults

func NewMetadataIntValueWithDefaults() *MetadataIntValue

NewMetadataIntValueWithDefaults instantiates a new MetadataIntValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetadataIntValue) GetIntValue

func (o *MetadataIntValue) GetIntValue() string

GetIntValue returns the IntValue field value

func (*MetadataIntValue) GetIntValueOk

func (o *MetadataIntValue) GetIntValueOk() (*string, bool)

GetIntValueOk returns a tuple with the IntValue field value and a boolean to check if the value has been set.

func (*MetadataIntValue) GetMetadataType

func (o *MetadataIntValue) GetMetadataType() string

GetMetadataType returns the MetadataType field value

func (*MetadataIntValue) GetMetadataTypeOk

func (o *MetadataIntValue) GetMetadataTypeOk() (*string, bool)

GetMetadataTypeOk returns a tuple with the MetadataType field value and a boolean to check if the value has been set.

func (MetadataIntValue) MarshalJSON

func (o MetadataIntValue) MarshalJSON() ([]byte, error)

func (*MetadataIntValue) SetIntValue

func (o *MetadataIntValue) SetIntValue(v string)

SetIntValue sets field value

func (*MetadataIntValue) SetMetadataType

func (o *MetadataIntValue) SetMetadataType(v string)

SetMetadataType sets field value

func (MetadataIntValue) ToMap

func (o MetadataIntValue) ToMap() (map[string]interface{}, error)

type MetadataProtoValue

type MetadataProtoValue struct {
	// url describing proto value
	Type string `json:"type"`
	// Base64 encoded bytes for proto value
	ProtoValue   string `json:"proto_value"`
	MetadataType string `json:"metadataType"`
}

MetadataProtoValue A proto property value.

func NewMetadataProtoValue

func NewMetadataProtoValue(type_ string, protoValue string, metadataType string) *MetadataProtoValue

NewMetadataProtoValue instantiates a new MetadataProtoValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetadataProtoValueWithDefaults

func NewMetadataProtoValueWithDefaults() *MetadataProtoValue

NewMetadataProtoValueWithDefaults instantiates a new MetadataProtoValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetadataProtoValue) GetMetadataType

func (o *MetadataProtoValue) GetMetadataType() string

GetMetadataType returns the MetadataType field value

func (*MetadataProtoValue) GetMetadataTypeOk

func (o *MetadataProtoValue) GetMetadataTypeOk() (*string, bool)

GetMetadataTypeOk returns a tuple with the MetadataType field value and a boolean to check if the value has been set.

func (*MetadataProtoValue) GetProtoValue

func (o *MetadataProtoValue) GetProtoValue() string

GetProtoValue returns the ProtoValue field value

func (*MetadataProtoValue) GetProtoValueOk

func (o *MetadataProtoValue) GetProtoValueOk() (*string, bool)

GetProtoValueOk returns a tuple with the ProtoValue field value and a boolean to check if the value has been set.

func (*MetadataProtoValue) GetType

func (o *MetadataProtoValue) GetType() string

GetType returns the Type field value

func (*MetadataProtoValue) GetTypeOk

func (o *MetadataProtoValue) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (MetadataProtoValue) MarshalJSON

func (o MetadataProtoValue) MarshalJSON() ([]byte, error)

func (*MetadataProtoValue) SetMetadataType

func (o *MetadataProtoValue) SetMetadataType(v string)

SetMetadataType sets field value

func (*MetadataProtoValue) SetProtoValue

func (o *MetadataProtoValue) SetProtoValue(v string)

SetProtoValue sets field value

func (*MetadataProtoValue) SetType

func (o *MetadataProtoValue) SetType(v string)

SetType sets field value

func (MetadataProtoValue) ToMap

func (o MetadataProtoValue) ToMap() (map[string]interface{}, error)

type MetadataStringValue

type MetadataStringValue struct {
	StringValue  string `json:"string_value"`
	MetadataType string `json:"metadataType"`
}

MetadataStringValue A string property value.

func NewMetadataStringValue

func NewMetadataStringValue(stringValue string, metadataType string) *MetadataStringValue

NewMetadataStringValue instantiates a new MetadataStringValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetadataStringValueWithDefaults

func NewMetadataStringValueWithDefaults() *MetadataStringValue

NewMetadataStringValueWithDefaults instantiates a new MetadataStringValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetadataStringValue) GetMetadataType

func (o *MetadataStringValue) GetMetadataType() string

GetMetadataType returns the MetadataType field value

func (*MetadataStringValue) GetMetadataTypeOk

func (o *MetadataStringValue) GetMetadataTypeOk() (*string, bool)

GetMetadataTypeOk returns a tuple with the MetadataType field value and a boolean to check if the value has been set.

func (*MetadataStringValue) GetStringValue

func (o *MetadataStringValue) GetStringValue() string

GetStringValue returns the StringValue field value

func (*MetadataStringValue) GetStringValueOk

func (o *MetadataStringValue) GetStringValueOk() (*string, bool)

GetStringValueOk returns a tuple with the StringValue field value and a boolean to check if the value has been set.

func (MetadataStringValue) MarshalJSON

func (o MetadataStringValue) MarshalJSON() ([]byte, error)

func (*MetadataStringValue) SetMetadataType

func (o *MetadataStringValue) SetMetadataType(v string)

SetMetadataType sets field value

func (*MetadataStringValue) SetStringValue

func (o *MetadataStringValue) SetStringValue(v string)

SetStringValue sets field value

func (MetadataStringValue) ToMap

func (o MetadataStringValue) ToMap() (map[string]interface{}, error)

type MetadataStructValue

type MetadataStructValue struct {
	// Base64 encoded bytes for struct value
	StructValue  string `json:"struct_value"`
	MetadataType string `json:"metadataType"`
}

MetadataStructValue A struct property value.

func NewMetadataStructValue

func NewMetadataStructValue(structValue string, metadataType string) *MetadataStructValue

NewMetadataStructValue instantiates a new MetadataStructValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMetadataStructValueWithDefaults

func NewMetadataStructValueWithDefaults() *MetadataStructValue

NewMetadataStructValueWithDefaults instantiates a new MetadataStructValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MetadataStructValue) GetMetadataType

func (o *MetadataStructValue) GetMetadataType() string

GetMetadataType returns the MetadataType field value

func (*MetadataStructValue) GetMetadataTypeOk

func (o *MetadataStructValue) GetMetadataTypeOk() (*string, bool)

GetMetadataTypeOk returns a tuple with the MetadataType field value and a boolean to check if the value has been set.

func (*MetadataStructValue) GetStructValue

func (o *MetadataStructValue) GetStructValue() string

GetStructValue returns the StructValue field value

func (*MetadataStructValue) GetStructValueOk

func (o *MetadataStructValue) GetStructValueOk() (*string, bool)

GetStructValueOk returns a tuple with the StructValue field value and a boolean to check if the value has been set.

func (MetadataStructValue) MarshalJSON

func (o MetadataStructValue) MarshalJSON() ([]byte, error)

func (*MetadataStructValue) SetMetadataType

func (o *MetadataStructValue) SetMetadataType(v string)

SetMetadataType sets field value

func (*MetadataStructValue) SetStructValue

func (o *MetadataStructValue) SetStructValue(v string)

SetStructValue sets field value

func (MetadataStructValue) ToMap

func (o MetadataStructValue) ToMap() (map[string]interface{}, error)

type MetadataValue

type MetadataValue struct {
	MetadataBoolValue   *MetadataBoolValue
	MetadataDoubleValue *MetadataDoubleValue
	MetadataIntValue    *MetadataIntValue
	MetadataProtoValue  *MetadataProtoValue
	MetadataStringValue *MetadataStringValue
	MetadataStructValue *MetadataStructValue
}

MetadataValue - A value in properties.

func MetadataBoolValueAsMetadataValue

func MetadataBoolValueAsMetadataValue(v *MetadataBoolValue) MetadataValue

MetadataBoolValueAsMetadataValue is a convenience function that returns MetadataBoolValue wrapped in MetadataValue

func MetadataDoubleValueAsMetadataValue

func MetadataDoubleValueAsMetadataValue(v *MetadataDoubleValue) MetadataValue

MetadataDoubleValueAsMetadataValue is a convenience function that returns MetadataDoubleValue wrapped in MetadataValue

func MetadataIntValueAsMetadataValue

func MetadataIntValueAsMetadataValue(v *MetadataIntValue) MetadataValue

MetadataIntValueAsMetadataValue is a convenience function that returns MetadataIntValue wrapped in MetadataValue

func MetadataProtoValueAsMetadataValue

func MetadataProtoValueAsMetadataValue(v *MetadataProtoValue) MetadataValue

MetadataProtoValueAsMetadataValue is a convenience function that returns MetadataProtoValue wrapped in MetadataValue

func MetadataStringValueAsMetadataValue

func MetadataStringValueAsMetadataValue(v *MetadataStringValue) MetadataValue

MetadataStringValueAsMetadataValue is a convenience function that returns MetadataStringValue wrapped in MetadataValue

func MetadataStructValueAsMetadataValue

func MetadataStructValueAsMetadataValue(v *MetadataStructValue) MetadataValue

MetadataStructValueAsMetadataValue is a convenience function that returns MetadataStructValue wrapped in MetadataValue

func (*MetadataValue) GetActualInstance

func (obj *MetadataValue) GetActualInstance() interface{}

Get the actual instance

func (MetadataValue) MarshalJSON

func (src MetadataValue) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*MetadataValue) UnmarshalJSON

func (dst *MetadataValue) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ModelArtifact

type ModelArtifact struct {
	ArtifactType string `json:"artifactType"`
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The uniform resource identifier of the physical artifact. May be empty if there is no physical artifact.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
	// Name of the model format.
	ModelFormatName *string `json:"modelFormatName,omitempty"`
	// Storage secret name.
	StorageKey *string `json:"storageKey,omitempty"`
	// Path for model in storage provided by `storageKey`.
	StoragePath *string `json:"storagePath,omitempty"`
	// Version of the model format.
	ModelFormatVersion *string `json:"modelFormatVersion,omitempty"`
	// Name of the service account with storage secret.
	ServiceAccountName *string `json:"serviceAccountName,omitempty"`
}

ModelArtifact An ML model artifact.

func NewModelArtifact

func NewModelArtifact(artifactType string) *ModelArtifact

NewModelArtifact instantiates a new ModelArtifact object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModelArtifactWithDefaults

func NewModelArtifactWithDefaults() *ModelArtifact

NewModelArtifactWithDefaults instantiates a new ModelArtifact object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ModelArtifact) GetArtifactType

func (o *ModelArtifact) GetArtifactType() string

GetArtifactType returns the ArtifactType field value

func (*ModelArtifact) GetArtifactTypeOk

func (o *ModelArtifact) GetArtifactTypeOk() (*string, bool)

GetArtifactTypeOk returns a tuple with the ArtifactType field value and a boolean to check if the value has been set.

func (*ModelArtifact) GetCreateTimeSinceEpoch

func (o *ModelArtifact) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*ModelArtifact) GetCreateTimeSinceEpochOk

func (o *ModelArtifact) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetCustomProperties

func (o *ModelArtifact) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ModelArtifact) GetCustomPropertiesOk

func (o *ModelArtifact) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetDescription

func (o *ModelArtifact) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelArtifact) GetDescriptionOk

func (o *ModelArtifact) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetExternalId

func (o *ModelArtifact) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ModelArtifact) GetExternalIdOk

func (o *ModelArtifact) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetId

func (o *ModelArtifact) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ModelArtifact) GetIdOk

func (o *ModelArtifact) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetLastUpdateTimeSinceEpoch

func (o *ModelArtifact) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*ModelArtifact) GetLastUpdateTimeSinceEpochOk

func (o *ModelArtifact) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetModelFormatName

func (o *ModelArtifact) GetModelFormatName() string

GetModelFormatName returns the ModelFormatName field value if set, zero value otherwise.

func (*ModelArtifact) GetModelFormatNameOk

func (o *ModelArtifact) GetModelFormatNameOk() (*string, bool)

GetModelFormatNameOk returns a tuple with the ModelFormatName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetModelFormatVersion

func (o *ModelArtifact) GetModelFormatVersion() string

GetModelFormatVersion returns the ModelFormatVersion field value if set, zero value otherwise.

func (*ModelArtifact) GetModelFormatVersionOk

func (o *ModelArtifact) GetModelFormatVersionOk() (*string, bool)

GetModelFormatVersionOk returns a tuple with the ModelFormatVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetName

func (o *ModelArtifact) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ModelArtifact) GetNameOk

func (o *ModelArtifact) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetServiceAccountName

func (o *ModelArtifact) GetServiceAccountName() string

GetServiceAccountName returns the ServiceAccountName field value if set, zero value otherwise.

func (*ModelArtifact) GetServiceAccountNameOk

func (o *ModelArtifact) GetServiceAccountNameOk() (*string, bool)

GetServiceAccountNameOk returns a tuple with the ServiceAccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetState

func (o *ModelArtifact) GetState() ArtifactState

GetState returns the State field value if set, zero value otherwise.

func (*ModelArtifact) GetStateOk

func (o *ModelArtifact) GetStateOk() (*ArtifactState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetStorageKey

func (o *ModelArtifact) GetStorageKey() string

GetStorageKey returns the StorageKey field value if set, zero value otherwise.

func (*ModelArtifact) GetStorageKeyOk

func (o *ModelArtifact) GetStorageKeyOk() (*string, bool)

GetStorageKeyOk returns a tuple with the StorageKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetStoragePath

func (o *ModelArtifact) GetStoragePath() string

GetStoragePath returns the StoragePath field value if set, zero value otherwise.

func (*ModelArtifact) GetStoragePathOk

func (o *ModelArtifact) GetStoragePathOk() (*string, bool)

GetStoragePathOk returns a tuple with the StoragePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) GetUri

func (o *ModelArtifact) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*ModelArtifact) GetUriOk

func (o *ModelArtifact) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifact) HasCreateTimeSinceEpoch

func (o *ModelArtifact) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*ModelArtifact) HasCustomProperties

func (o *ModelArtifact) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ModelArtifact) HasDescription

func (o *ModelArtifact) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelArtifact) HasExternalId

func (o *ModelArtifact) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ModelArtifact) HasId

func (o *ModelArtifact) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelArtifact) HasLastUpdateTimeSinceEpoch

func (o *ModelArtifact) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*ModelArtifact) HasModelFormatName

func (o *ModelArtifact) HasModelFormatName() bool

HasModelFormatName returns a boolean if a field has been set.

func (*ModelArtifact) HasModelFormatVersion

func (o *ModelArtifact) HasModelFormatVersion() bool

HasModelFormatVersion returns a boolean if a field has been set.

func (*ModelArtifact) HasName

func (o *ModelArtifact) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModelArtifact) HasServiceAccountName

func (o *ModelArtifact) HasServiceAccountName() bool

HasServiceAccountName returns a boolean if a field has been set.

func (*ModelArtifact) HasState

func (o *ModelArtifact) HasState() bool

HasState returns a boolean if a field has been set.

func (*ModelArtifact) HasStorageKey

func (o *ModelArtifact) HasStorageKey() bool

HasStorageKey returns a boolean if a field has been set.

func (*ModelArtifact) HasStoragePath

func (o *ModelArtifact) HasStoragePath() bool

HasStoragePath returns a boolean if a field has been set.

func (*ModelArtifact) HasUri

func (o *ModelArtifact) HasUri() bool

HasUri returns a boolean if a field has been set.

func (ModelArtifact) MarshalJSON

func (o ModelArtifact) MarshalJSON() ([]byte, error)

func (*ModelArtifact) SetArtifactType

func (o *ModelArtifact) SetArtifactType(v string)

SetArtifactType sets field value

func (*ModelArtifact) SetCreateTimeSinceEpoch

func (o *ModelArtifact) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*ModelArtifact) SetCustomProperties

func (o *ModelArtifact) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ModelArtifact) SetDescription

func (o *ModelArtifact) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelArtifact) SetExternalId

func (o *ModelArtifact) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ModelArtifact) SetId

func (o *ModelArtifact) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ModelArtifact) SetLastUpdateTimeSinceEpoch

func (o *ModelArtifact) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*ModelArtifact) SetModelFormatName

func (o *ModelArtifact) SetModelFormatName(v string)

SetModelFormatName gets a reference to the given string and assigns it to the ModelFormatName field.

func (*ModelArtifact) SetModelFormatVersion

func (o *ModelArtifact) SetModelFormatVersion(v string)

SetModelFormatVersion gets a reference to the given string and assigns it to the ModelFormatVersion field.

func (*ModelArtifact) SetName

func (o *ModelArtifact) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelArtifact) SetServiceAccountName

func (o *ModelArtifact) SetServiceAccountName(v string)

SetServiceAccountName gets a reference to the given string and assigns it to the ServiceAccountName field.

func (*ModelArtifact) SetState

func (o *ModelArtifact) SetState(v ArtifactState)

SetState gets a reference to the given ArtifactState and assigns it to the State field.

func (*ModelArtifact) SetStorageKey

func (o *ModelArtifact) SetStorageKey(v string)

SetStorageKey gets a reference to the given string and assigns it to the StorageKey field.

func (*ModelArtifact) SetStoragePath

func (o *ModelArtifact) SetStoragePath(v string)

SetStoragePath gets a reference to the given string and assigns it to the StoragePath field.

func (*ModelArtifact) SetUri

func (o *ModelArtifact) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (ModelArtifact) ToMap

func (o ModelArtifact) ToMap() (map[string]interface{}, error)

type ModelArtifactCreate

type ModelArtifactCreate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The uniform resource identifier of the physical artifact. May be empty if there is no physical artifact.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Name of the model format.
	ModelFormatName *string `json:"modelFormatName,omitempty"`
	// Storage secret name.
	StorageKey *string `json:"storageKey,omitempty"`
	// Path for model in storage provided by `storageKey`.
	StoragePath *string `json:"storagePath,omitempty"`
	// Version of the model format.
	ModelFormatVersion *string `json:"modelFormatVersion,omitempty"`
	// Name of the service account with storage secret.
	ServiceAccountName *string `json:"serviceAccountName,omitempty"`
}

ModelArtifactCreate An ML model artifact.

func NewModelArtifactCreate

func NewModelArtifactCreate() *ModelArtifactCreate

NewModelArtifactCreate instantiates a new ModelArtifactCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModelArtifactCreateWithDefaults

func NewModelArtifactCreateWithDefaults() *ModelArtifactCreate

NewModelArtifactCreateWithDefaults instantiates a new ModelArtifactCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ModelArtifactCreate) GetCustomProperties

func (o *ModelArtifactCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetCustomPropertiesOk

func (o *ModelArtifactCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetDescription

func (o *ModelArtifactCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetDescriptionOk

func (o *ModelArtifactCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetExternalId

func (o *ModelArtifactCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetExternalIdOk

func (o *ModelArtifactCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetModelFormatName

func (o *ModelArtifactCreate) GetModelFormatName() string

GetModelFormatName returns the ModelFormatName field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetModelFormatNameOk

func (o *ModelArtifactCreate) GetModelFormatNameOk() (*string, bool)

GetModelFormatNameOk returns a tuple with the ModelFormatName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetModelFormatVersion

func (o *ModelArtifactCreate) GetModelFormatVersion() string

GetModelFormatVersion returns the ModelFormatVersion field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetModelFormatVersionOk

func (o *ModelArtifactCreate) GetModelFormatVersionOk() (*string, bool)

GetModelFormatVersionOk returns a tuple with the ModelFormatVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetName

func (o *ModelArtifactCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetNameOk

func (o *ModelArtifactCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetServiceAccountName

func (o *ModelArtifactCreate) GetServiceAccountName() string

GetServiceAccountName returns the ServiceAccountName field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetServiceAccountNameOk

func (o *ModelArtifactCreate) GetServiceAccountNameOk() (*string, bool)

GetServiceAccountNameOk returns a tuple with the ServiceAccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetState

func (o *ModelArtifactCreate) GetState() ArtifactState

GetState returns the State field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetStateOk

func (o *ModelArtifactCreate) GetStateOk() (*ArtifactState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetStorageKey

func (o *ModelArtifactCreate) GetStorageKey() string

GetStorageKey returns the StorageKey field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetStorageKeyOk

func (o *ModelArtifactCreate) GetStorageKeyOk() (*string, bool)

GetStorageKeyOk returns a tuple with the StorageKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetStoragePath

func (o *ModelArtifactCreate) GetStoragePath() string

GetStoragePath returns the StoragePath field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetStoragePathOk

func (o *ModelArtifactCreate) GetStoragePathOk() (*string, bool)

GetStoragePathOk returns a tuple with the StoragePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) GetUri

func (o *ModelArtifactCreate) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetUriOk

func (o *ModelArtifactCreate) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactCreate) HasCustomProperties

func (o *ModelArtifactCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasDescription

func (o *ModelArtifactCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasExternalId

func (o *ModelArtifactCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasModelFormatName

func (o *ModelArtifactCreate) HasModelFormatName() bool

HasModelFormatName returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasModelFormatVersion

func (o *ModelArtifactCreate) HasModelFormatVersion() bool

HasModelFormatVersion returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasName

func (o *ModelArtifactCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasServiceAccountName

func (o *ModelArtifactCreate) HasServiceAccountName() bool

HasServiceAccountName returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasState

func (o *ModelArtifactCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasStorageKey

func (o *ModelArtifactCreate) HasStorageKey() bool

HasStorageKey returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasStoragePath

func (o *ModelArtifactCreate) HasStoragePath() bool

HasStoragePath returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasUri

func (o *ModelArtifactCreate) HasUri() bool

HasUri returns a boolean if a field has been set.

func (ModelArtifactCreate) MarshalJSON

func (o ModelArtifactCreate) MarshalJSON() ([]byte, error)

func (*ModelArtifactCreate) SetCustomProperties

func (o *ModelArtifactCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ModelArtifactCreate) SetDescription

func (o *ModelArtifactCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelArtifactCreate) SetExternalId

func (o *ModelArtifactCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ModelArtifactCreate) SetModelFormatName

func (o *ModelArtifactCreate) SetModelFormatName(v string)

SetModelFormatName gets a reference to the given string and assigns it to the ModelFormatName field.

func (*ModelArtifactCreate) SetModelFormatVersion

func (o *ModelArtifactCreate) SetModelFormatVersion(v string)

SetModelFormatVersion gets a reference to the given string and assigns it to the ModelFormatVersion field.

func (*ModelArtifactCreate) SetName

func (o *ModelArtifactCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelArtifactCreate) SetServiceAccountName

func (o *ModelArtifactCreate) SetServiceAccountName(v string)

SetServiceAccountName gets a reference to the given string and assigns it to the ServiceAccountName field.

func (*ModelArtifactCreate) SetState

func (o *ModelArtifactCreate) SetState(v ArtifactState)

SetState gets a reference to the given ArtifactState and assigns it to the State field.

func (*ModelArtifactCreate) SetStorageKey

func (o *ModelArtifactCreate) SetStorageKey(v string)

SetStorageKey gets a reference to the given string and assigns it to the StorageKey field.

func (*ModelArtifactCreate) SetStoragePath

func (o *ModelArtifactCreate) SetStoragePath(v string)

SetStoragePath gets a reference to the given string and assigns it to the StoragePath field.

func (*ModelArtifactCreate) SetUri

func (o *ModelArtifactCreate) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (ModelArtifactCreate) ToMap

func (o ModelArtifactCreate) ToMap() (map[string]interface{}, error)

type ModelArtifactList

type ModelArtifactList struct {
	// Token to use to retrieve next page of results.
	NextPageToken string `json:"nextPageToken"`
	// Maximum number of resources to return in the result.
	PageSize int32 `json:"pageSize"`
	// Number of items in result list.
	Size int32 `json:"size"`
	// Array of `ModelArtifact` entities.
	Items []ModelArtifact `json:"items,omitempty"`
}

ModelArtifactList List of ModelArtifact entities.

func NewModelArtifactList

func NewModelArtifactList(nextPageToken string, pageSize int32, size int32) *ModelArtifactList

NewModelArtifactList instantiates a new ModelArtifactList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModelArtifactListWithDefaults

func NewModelArtifactListWithDefaults() *ModelArtifactList

NewModelArtifactListWithDefaults instantiates a new ModelArtifactList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ModelArtifactList) GetItems

func (o *ModelArtifactList) GetItems() []ModelArtifact

GetItems returns the Items field value if set, zero value otherwise.

func (*ModelArtifactList) GetItemsOk

func (o *ModelArtifactList) GetItemsOk() ([]ModelArtifact, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactList) GetNextPageToken

func (o *ModelArtifactList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*ModelArtifactList) GetNextPageTokenOk

func (o *ModelArtifactList) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*ModelArtifactList) GetPageSize

func (o *ModelArtifactList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*ModelArtifactList) GetPageSizeOk

func (o *ModelArtifactList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*ModelArtifactList) GetSize

func (o *ModelArtifactList) GetSize() int32

GetSize returns the Size field value

func (*ModelArtifactList) GetSizeOk

func (o *ModelArtifactList) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*ModelArtifactList) HasItems

func (o *ModelArtifactList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ModelArtifactList) MarshalJSON

func (o ModelArtifactList) MarshalJSON() ([]byte, error)

func (*ModelArtifactList) SetItems

func (o *ModelArtifactList) SetItems(v []ModelArtifact)

SetItems gets a reference to the given []ModelArtifact and assigns it to the Items field.

func (*ModelArtifactList) SetNextPageToken

func (o *ModelArtifactList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*ModelArtifactList) SetPageSize

func (o *ModelArtifactList) SetPageSize(v int32)

SetPageSize sets field value

func (*ModelArtifactList) SetSize

func (o *ModelArtifactList) SetSize(v int32)

SetSize sets field value

func (ModelArtifactList) ToMap

func (o ModelArtifactList) ToMap() (map[string]interface{}, error)

type ModelArtifactUpdate

type ModelArtifactUpdate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The uniform resource identifier of the physical artifact. May be empty if there is no physical artifact.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
	// Name of the model format.
	ModelFormatName *string `json:"modelFormatName,omitempty"`
	// Storage secret name.
	StorageKey *string `json:"storageKey,omitempty"`
	// Path for model in storage provided by `storageKey`.
	StoragePath *string `json:"storagePath,omitempty"`
	// Version of the model format.
	ModelFormatVersion *string `json:"modelFormatVersion,omitempty"`
	// Name of the service account with storage secret.
	ServiceAccountName *string `json:"serviceAccountName,omitempty"`
}

ModelArtifactUpdate An ML model artifact.

func NewModelArtifactUpdate

func NewModelArtifactUpdate() *ModelArtifactUpdate

NewModelArtifactUpdate instantiates a new ModelArtifactUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModelArtifactUpdateWithDefaults

func NewModelArtifactUpdateWithDefaults() *ModelArtifactUpdate

NewModelArtifactUpdateWithDefaults instantiates a new ModelArtifactUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ModelArtifactUpdate) GetCustomProperties

func (o *ModelArtifactUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetCustomPropertiesOk

func (o *ModelArtifactUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetDescription

func (o *ModelArtifactUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetDescriptionOk

func (o *ModelArtifactUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetExternalId

func (o *ModelArtifactUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetExternalIdOk

func (o *ModelArtifactUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetModelFormatName

func (o *ModelArtifactUpdate) GetModelFormatName() string

GetModelFormatName returns the ModelFormatName field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetModelFormatNameOk

func (o *ModelArtifactUpdate) GetModelFormatNameOk() (*string, bool)

GetModelFormatNameOk returns a tuple with the ModelFormatName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetModelFormatVersion

func (o *ModelArtifactUpdate) GetModelFormatVersion() string

GetModelFormatVersion returns the ModelFormatVersion field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetModelFormatVersionOk

func (o *ModelArtifactUpdate) GetModelFormatVersionOk() (*string, bool)

GetModelFormatVersionOk returns a tuple with the ModelFormatVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetServiceAccountName

func (o *ModelArtifactUpdate) GetServiceAccountName() string

GetServiceAccountName returns the ServiceAccountName field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetServiceAccountNameOk

func (o *ModelArtifactUpdate) GetServiceAccountNameOk() (*string, bool)

GetServiceAccountNameOk returns a tuple with the ServiceAccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetState

func (o *ModelArtifactUpdate) GetState() ArtifactState

GetState returns the State field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetStateOk

func (o *ModelArtifactUpdate) GetStateOk() (*ArtifactState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetStorageKey

func (o *ModelArtifactUpdate) GetStorageKey() string

GetStorageKey returns the StorageKey field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetStorageKeyOk

func (o *ModelArtifactUpdate) GetStorageKeyOk() (*string, bool)

GetStorageKeyOk returns a tuple with the StorageKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetStoragePath

func (o *ModelArtifactUpdate) GetStoragePath() string

GetStoragePath returns the StoragePath field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetStoragePathOk

func (o *ModelArtifactUpdate) GetStoragePathOk() (*string, bool)

GetStoragePathOk returns a tuple with the StoragePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) GetUri

func (o *ModelArtifactUpdate) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetUriOk

func (o *ModelArtifactUpdate) GetUriOk() (*string, bool)

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelArtifactUpdate) HasCustomProperties

func (o *ModelArtifactUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasDescription

func (o *ModelArtifactUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasExternalId

func (o *ModelArtifactUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasModelFormatName

func (o *ModelArtifactUpdate) HasModelFormatName() bool

HasModelFormatName returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasModelFormatVersion

func (o *ModelArtifactUpdate) HasModelFormatVersion() bool

HasModelFormatVersion returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasServiceAccountName

func (o *ModelArtifactUpdate) HasServiceAccountName() bool

HasServiceAccountName returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasState

func (o *ModelArtifactUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasStorageKey

func (o *ModelArtifactUpdate) HasStorageKey() bool

HasStorageKey returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasStoragePath

func (o *ModelArtifactUpdate) HasStoragePath() bool

HasStoragePath returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasUri

func (o *ModelArtifactUpdate) HasUri() bool

HasUri returns a boolean if a field has been set.

func (ModelArtifactUpdate) MarshalJSON

func (o ModelArtifactUpdate) MarshalJSON() ([]byte, error)

func (*ModelArtifactUpdate) SetCustomProperties

func (o *ModelArtifactUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ModelArtifactUpdate) SetDescription

func (o *ModelArtifactUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelArtifactUpdate) SetExternalId

func (o *ModelArtifactUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ModelArtifactUpdate) SetModelFormatName

func (o *ModelArtifactUpdate) SetModelFormatName(v string)

SetModelFormatName gets a reference to the given string and assigns it to the ModelFormatName field.

func (*ModelArtifactUpdate) SetModelFormatVersion

func (o *ModelArtifactUpdate) SetModelFormatVersion(v string)

SetModelFormatVersion gets a reference to the given string and assigns it to the ModelFormatVersion field.

func (*ModelArtifactUpdate) SetServiceAccountName

func (o *ModelArtifactUpdate) SetServiceAccountName(v string)

SetServiceAccountName gets a reference to the given string and assigns it to the ServiceAccountName field.

func (*ModelArtifactUpdate) SetState

func (o *ModelArtifactUpdate) SetState(v ArtifactState)

SetState gets a reference to the given ArtifactState and assigns it to the State field.

func (*ModelArtifactUpdate) SetStorageKey

func (o *ModelArtifactUpdate) SetStorageKey(v string)

SetStorageKey gets a reference to the given string and assigns it to the StorageKey field.

func (*ModelArtifactUpdate) SetStoragePath

func (o *ModelArtifactUpdate) SetStoragePath(v string)

SetStoragePath gets a reference to the given string and assigns it to the StoragePath field.

func (*ModelArtifactUpdate) SetUri

func (o *ModelArtifactUpdate) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (ModelArtifactUpdate) ToMap

func (o ModelArtifactUpdate) ToMap() (map[string]interface{}, error)

type ModelRegistryServiceAPIService

type ModelRegistryServiceAPIService service

ModelRegistryServiceAPIService ModelRegistryServiceAPI service

func (*ModelRegistryServiceAPIService) CreateEnvironmentInferenceService

func (a *ModelRegistryServiceAPIService) CreateEnvironmentInferenceService(ctx context.Context, servingenvironmentId string) ApiCreateEnvironmentInferenceServiceRequest

CreateEnvironmentInferenceService Create a InferenceService in ServingEnvironment

Creates a new instance of a `InferenceService`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param servingenvironmentId A unique identifier for a `ServingEnvironment`.
@return ApiCreateEnvironmentInferenceServiceRequest

func (*ModelRegistryServiceAPIService) CreateEnvironmentInferenceServiceExecute

Execute executes the request

@return InferenceService

func (*ModelRegistryServiceAPIService) CreateInferenceService

CreateInferenceService Create a InferenceService

Creates a new instance of a `InferenceService`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateInferenceServiceRequest

func (*ModelRegistryServiceAPIService) CreateInferenceServiceExecute

Execute executes the request

@return InferenceService

func (*ModelRegistryServiceAPIService) CreateInferenceServiceServe

func (a *ModelRegistryServiceAPIService) CreateInferenceServiceServe(ctx context.Context, inferenceserviceId string) ApiCreateInferenceServiceServeRequest

CreateInferenceServiceServe Create a ServeModel action in a InferenceService

Creates a new instance of a `ServeModel` associated with `InferenceService`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param inferenceserviceId A unique identifier for a `InferenceService`.
@return ApiCreateInferenceServiceServeRequest

func (*ModelRegistryServiceAPIService) CreateInferenceServiceServeExecute

Execute executes the request

@return ServeModel

func (*ModelRegistryServiceAPIService) CreateModelArtifact

CreateModelArtifact Create a ModelArtifact

Creates a new instance of a `ModelArtifact`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateModelArtifactRequest

func (*ModelRegistryServiceAPIService) CreateModelArtifactExecute

Execute executes the request

@return ModelArtifact

func (*ModelRegistryServiceAPIService) CreateModelVersion

CreateModelVersion Create a ModelVersion

Creates a new instance of a `ModelVersion`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateModelVersionRequest

func (*ModelRegistryServiceAPIService) CreateModelVersionArtifact

func (a *ModelRegistryServiceAPIService) CreateModelVersionArtifact(ctx context.Context, modelversionId string) ApiCreateModelVersionArtifactRequest

CreateModelVersionArtifact Create an Artifact in a ModelVersion

Creates a new instance of an Artifact if needed and associates it with `ModelVersion`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelversionId A unique identifier for a `ModelVersion`.
@return ApiCreateModelVersionArtifactRequest

func (*ModelRegistryServiceAPIService) CreateModelVersionArtifactExecute

Execute executes the request

@return Artifact

func (*ModelRegistryServiceAPIService) CreateModelVersionExecute

Execute executes the request

@return ModelVersion

func (*ModelRegistryServiceAPIService) CreateRegisteredModel

CreateRegisteredModel Create a RegisteredModel

Creates a new instance of a `RegisteredModel`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateRegisteredModelRequest

func (*ModelRegistryServiceAPIService) CreateRegisteredModelExecute

Execute executes the request

@return RegisteredModel

func (*ModelRegistryServiceAPIService) CreateRegisteredModelVersion

func (a *ModelRegistryServiceAPIService) CreateRegisteredModelVersion(ctx context.Context, registeredmodelId string) ApiCreateRegisteredModelVersionRequest

CreateRegisteredModelVersion Create a ModelVersion in RegisteredModel

Creates a new instance of a `ModelVersion`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param registeredmodelId A unique identifier for a `RegisteredModel`.
@return ApiCreateRegisteredModelVersionRequest

func (*ModelRegistryServiceAPIService) CreateRegisteredModelVersionExecute

Execute executes the request

@return ModelVersion

func (*ModelRegistryServiceAPIService) CreateServingEnvironment

CreateServingEnvironment Create a ServingEnvironment

Creates a new instance of a `ServingEnvironment`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateServingEnvironmentRequest

func (*ModelRegistryServiceAPIService) CreateServingEnvironmentExecute

Execute executes the request

@return ServingEnvironment

func (*ModelRegistryServiceAPIService) FindInferenceService

FindInferenceService Get an InferenceServices that matches search parameters.

Gets the details of a single instance of `InferenceService` that matches search parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindInferenceServiceRequest

func (*ModelRegistryServiceAPIService) FindInferenceServiceExecute

Execute executes the request

@return InferenceService

func (*ModelRegistryServiceAPIService) FindModelArtifact

FindModelArtifact Get a ModelArtifact that matches search parameters.

Gets the details of a single instance of a `ModelArtifact` that matches search parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindModelArtifactRequest

func (*ModelRegistryServiceAPIService) FindModelArtifactExecute

Execute executes the request

@return ModelArtifact

func (*ModelRegistryServiceAPIService) FindModelVersion

FindModelVersion Get a ModelVersion that matches search parameters.

Gets the details of a single instance of a `ModelVersion` that matches search parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindModelVersionRequest

func (*ModelRegistryServiceAPIService) FindModelVersionExecute

Execute executes the request

@return ModelVersion

func (*ModelRegistryServiceAPIService) FindRegisteredModel

FindRegisteredModel Get a RegisteredModel that matches search parameters.

Gets the details of a single instance of a `RegisteredModel` that matches search parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindRegisteredModelRequest

func (*ModelRegistryServiceAPIService) FindRegisteredModelExecute

Execute executes the request

@return RegisteredModel

func (*ModelRegistryServiceAPIService) FindServingEnvironment

FindServingEnvironment Find ServingEnvironment

Finds a `ServingEnvironment` entity that matches query parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindServingEnvironmentRequest

func (*ModelRegistryServiceAPIService) FindServingEnvironmentExecute

Execute executes the request

@return ServingEnvironment

func (*ModelRegistryServiceAPIService) GetEnvironmentInferenceServices

func (a *ModelRegistryServiceAPIService) GetEnvironmentInferenceServices(ctx context.Context, servingenvironmentId string) ApiGetEnvironmentInferenceServicesRequest

GetEnvironmentInferenceServices List All ServingEnvironment's InferenceServices

Gets a list of all `InferenceService` entities for the `ServingEnvironment`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param servingenvironmentId A unique identifier for a `ServingEnvironment`.
@return ApiGetEnvironmentInferenceServicesRequest

func (*ModelRegistryServiceAPIService) GetEnvironmentInferenceServicesExecute

Execute executes the request

@return InferenceServiceList

func (*ModelRegistryServiceAPIService) GetInferenceService

func (a *ModelRegistryServiceAPIService) GetInferenceService(ctx context.Context, inferenceserviceId string) ApiGetInferenceServiceRequest

GetInferenceService Get a InferenceService

Gets the details of a single instance of a `InferenceService`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param inferenceserviceId A unique identifier for a `InferenceService`.
@return ApiGetInferenceServiceRequest

func (*ModelRegistryServiceAPIService) GetInferenceServiceExecute

Execute executes the request

@return InferenceService

func (*ModelRegistryServiceAPIService) GetInferenceServiceModel

func (a *ModelRegistryServiceAPIService) GetInferenceServiceModel(ctx context.Context, inferenceserviceId string) ApiGetInferenceServiceModelRequest

GetInferenceServiceModel Get InferenceService's RegisteredModel

Gets the `RegisteredModel` entity for the `InferenceService`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param inferenceserviceId A unique identifier for a `InferenceService`.
@return ApiGetInferenceServiceModelRequest

func (*ModelRegistryServiceAPIService) GetInferenceServiceModelExecute

Execute executes the request

@return RegisteredModel

func (*ModelRegistryServiceAPIService) GetInferenceServiceServes

func (a *ModelRegistryServiceAPIService) GetInferenceServiceServes(ctx context.Context, inferenceserviceId string) ApiGetInferenceServiceServesRequest

GetInferenceServiceServes List All InferenceService's ServeModel actions

Gets a list of all `ServeModel` entities for the `InferenceService`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param inferenceserviceId A unique identifier for a `InferenceService`.
@return ApiGetInferenceServiceServesRequest

func (*ModelRegistryServiceAPIService) GetInferenceServiceServesExecute

Execute executes the request

@return ServeModelList

func (*ModelRegistryServiceAPIService) GetInferenceServiceVersion

func (a *ModelRegistryServiceAPIService) GetInferenceServiceVersion(ctx context.Context, inferenceserviceId string) ApiGetInferenceServiceVersionRequest

GetInferenceServiceVersion Get InferenceService's ModelVersion

Gets the `ModelVersion` entity for the `InferenceService`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param inferenceserviceId A unique identifier for a `InferenceService`.
@return ApiGetInferenceServiceVersionRequest

func (*ModelRegistryServiceAPIService) GetInferenceServiceVersionExecute

Execute executes the request

@return ModelVersion

func (*ModelRegistryServiceAPIService) GetInferenceServices

GetInferenceServices List All InferenceServices

Gets a list of all `InferenceService` entities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetInferenceServicesRequest

func (*ModelRegistryServiceAPIService) GetInferenceServicesExecute

Execute executes the request

@return InferenceServiceList

func (*ModelRegistryServiceAPIService) GetModelArtifact

func (a *ModelRegistryServiceAPIService) GetModelArtifact(ctx context.Context, modelartifactId string) ApiGetModelArtifactRequest

GetModelArtifact Get a ModelArtifact

Gets the details of a single instance of a `ModelArtifact`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelartifactId A unique identifier for a `ModelArtifact`.
@return ApiGetModelArtifactRequest

func (*ModelRegistryServiceAPIService) GetModelArtifactExecute

Execute executes the request

@return ModelArtifact

func (*ModelRegistryServiceAPIService) GetModelArtifacts

GetModelArtifacts List All ModelArtifacts

Gets a list of all `ModelArtifact` entities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetModelArtifactsRequest

func (*ModelRegistryServiceAPIService) GetModelArtifactsExecute

Execute executes the request

@return ModelArtifactList

func (*ModelRegistryServiceAPIService) GetModelVersion

func (a *ModelRegistryServiceAPIService) GetModelVersion(ctx context.Context, modelversionId string) ApiGetModelVersionRequest

GetModelVersion Get a ModelVersion

Gets the details of a single instance of a `ModelVersion`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelversionId A unique identifier for a `ModelVersion`.
@return ApiGetModelVersionRequest

func (*ModelRegistryServiceAPIService) GetModelVersionArtifacts

func (a *ModelRegistryServiceAPIService) GetModelVersionArtifacts(ctx context.Context, modelversionId string) ApiGetModelVersionArtifactsRequest

GetModelVersionArtifacts List all artifacts associated with the `ModelVersion`

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelversionId A unique identifier for a `ModelVersion`.
@return ApiGetModelVersionArtifactsRequest

func (*ModelRegistryServiceAPIService) GetModelVersionArtifactsExecute

Execute executes the request

@return ArtifactList

func (*ModelRegistryServiceAPIService) GetModelVersionExecute

Execute executes the request

@return ModelVersion

func (*ModelRegistryServiceAPIService) GetModelVersions

GetModelVersions List All ModelVersions

Gets a list of all `ModelVersion` entities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetModelVersionsRequest

func (*ModelRegistryServiceAPIService) GetModelVersionsExecute

Execute executes the request

@return ModelVersionList

func (*ModelRegistryServiceAPIService) GetRegisteredModel

func (a *ModelRegistryServiceAPIService) GetRegisteredModel(ctx context.Context, registeredmodelId string) ApiGetRegisteredModelRequest

GetRegisteredModel Get a RegisteredModel

Gets the details of a single instance of a `RegisteredModel`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param registeredmodelId A unique identifier for a `RegisteredModel`.
@return ApiGetRegisteredModelRequest

func (*ModelRegistryServiceAPIService) GetRegisteredModelExecute

Execute executes the request

@return RegisteredModel

func (*ModelRegistryServiceAPIService) GetRegisteredModelVersions

func (a *ModelRegistryServiceAPIService) GetRegisteredModelVersions(ctx context.Context, registeredmodelId string) ApiGetRegisteredModelVersionsRequest

GetRegisteredModelVersions List All RegisteredModel's ModelVersions

Gets a list of all `ModelVersion` entities for the `RegisteredModel`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param registeredmodelId A unique identifier for a `RegisteredModel`.
@return ApiGetRegisteredModelVersionsRequest

func (*ModelRegistryServiceAPIService) GetRegisteredModelVersionsExecute

Execute executes the request

@return ModelVersionList

func (*ModelRegistryServiceAPIService) GetRegisteredModels

GetRegisteredModels List All RegisteredModels

Gets a list of all `RegisteredModel` entities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetRegisteredModelsRequest

func (*ModelRegistryServiceAPIService) GetRegisteredModelsExecute

Execute executes the request

@return RegisteredModelList

func (*ModelRegistryServiceAPIService) GetServingEnvironment

func (a *ModelRegistryServiceAPIService) GetServingEnvironment(ctx context.Context, servingenvironmentId string) ApiGetServingEnvironmentRequest

GetServingEnvironment Get a ServingEnvironment

Gets the details of a single instance of a `ServingEnvironment`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param servingenvironmentId A unique identifier for a `ServingEnvironment`.
@return ApiGetServingEnvironmentRequest

func (*ModelRegistryServiceAPIService) GetServingEnvironmentExecute

Execute executes the request

@return ServingEnvironment

func (*ModelRegistryServiceAPIService) GetServingEnvironments

GetServingEnvironments List All ServingEnvironments

Gets a list of all `ServingEnvironment` entities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetServingEnvironmentsRequest

func (*ModelRegistryServiceAPIService) GetServingEnvironmentsExecute

Execute executes the request

@return ServingEnvironmentList

func (*ModelRegistryServiceAPIService) UpdateInferenceService

func (a *ModelRegistryServiceAPIService) UpdateInferenceService(ctx context.Context, inferenceserviceId string) ApiUpdateInferenceServiceRequest

UpdateInferenceService Update a InferenceService

Updates an existing `InferenceService`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param inferenceserviceId A unique identifier for a `InferenceService`.
@return ApiUpdateInferenceServiceRequest

func (*ModelRegistryServiceAPIService) UpdateInferenceServiceExecute

Execute executes the request

@return InferenceService

func (*ModelRegistryServiceAPIService) UpdateModelArtifact

func (a *ModelRegistryServiceAPIService) UpdateModelArtifact(ctx context.Context, modelartifactId string) ApiUpdateModelArtifactRequest

UpdateModelArtifact Update a ModelArtifact

Updates an existing `ModelArtifact`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelartifactId A unique identifier for a `ModelArtifact`.
@return ApiUpdateModelArtifactRequest

func (*ModelRegistryServiceAPIService) UpdateModelArtifactExecute

Execute executes the request

@return ModelArtifact

func (*ModelRegistryServiceAPIService) UpdateModelVersion

func (a *ModelRegistryServiceAPIService) UpdateModelVersion(ctx context.Context, modelversionId string) ApiUpdateModelVersionRequest

UpdateModelVersion Update a ModelVersion

Updates an existing `ModelVersion`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelversionId A unique identifier for a `ModelVersion`.
@return ApiUpdateModelVersionRequest

func (*ModelRegistryServiceAPIService) UpdateModelVersionExecute

Execute executes the request

@return ModelVersion

func (*ModelRegistryServiceAPIService) UpdateRegisteredModel

func (a *ModelRegistryServiceAPIService) UpdateRegisteredModel(ctx context.Context, registeredmodelId string) ApiUpdateRegisteredModelRequest

UpdateRegisteredModel Update a RegisteredModel

Updates an existing `RegisteredModel`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param registeredmodelId A unique identifier for a `RegisteredModel`.
@return ApiUpdateRegisteredModelRequest

func (*ModelRegistryServiceAPIService) UpdateRegisteredModelExecute

Execute executes the request

@return RegisteredModel

func (*ModelRegistryServiceAPIService) UpdateServingEnvironment

func (a *ModelRegistryServiceAPIService) UpdateServingEnvironment(ctx context.Context, servingenvironmentId string) ApiUpdateServingEnvironmentRequest

UpdateServingEnvironment Update a ServingEnvironment

Updates an existing `ServingEnvironment`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param servingenvironmentId A unique identifier for a `ServingEnvironment`.
@return ApiUpdateServingEnvironmentRequest

func (*ModelRegistryServiceAPIService) UpdateServingEnvironmentExecute

Execute executes the request

@return ServingEnvironment

type ModelVersion

type ModelVersion struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name  *string            `json:"name,omitempty"`
	State *ModelVersionState `json:"state,omitempty"`
	// Name of the author.
	Author *string `json:"author,omitempty"`
	// ID of the `RegisteredModel` to which this version belongs.
	RegisteredModelId string `json:"registeredModelId"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
}

ModelVersion Represents a ModelVersion belonging to a RegisteredModel.

func NewModelVersion

func NewModelVersion(registeredModelId string) *ModelVersion

NewModelVersion instantiates a new ModelVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModelVersionWithDefaults

func NewModelVersionWithDefaults() *ModelVersion

NewModelVersionWithDefaults instantiates a new ModelVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ModelVersion) GetAuthor

func (o *ModelVersion) GetAuthor() string

GetAuthor returns the Author field value if set, zero value otherwise.

func (*ModelVersion) GetAuthorOk

func (o *ModelVersion) GetAuthorOk() (*string, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetCreateTimeSinceEpoch

func (o *ModelVersion) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*ModelVersion) GetCreateTimeSinceEpochOk

func (o *ModelVersion) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetCustomProperties

func (o *ModelVersion) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ModelVersion) GetCustomPropertiesOk

func (o *ModelVersion) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetDescription

func (o *ModelVersion) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelVersion) GetDescriptionOk

func (o *ModelVersion) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetExternalId

func (o *ModelVersion) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ModelVersion) GetExternalIdOk

func (o *ModelVersion) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetId

func (o *ModelVersion) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ModelVersion) GetIdOk

func (o *ModelVersion) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetLastUpdateTimeSinceEpoch

func (o *ModelVersion) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*ModelVersion) GetLastUpdateTimeSinceEpochOk

func (o *ModelVersion) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetName

func (o *ModelVersion) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ModelVersion) GetNameOk

func (o *ModelVersion) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetRegisteredModelId

func (o *ModelVersion) GetRegisteredModelId() string

GetRegisteredModelId returns the RegisteredModelId field value

func (*ModelVersion) GetRegisteredModelIdOk

func (o *ModelVersion) GetRegisteredModelIdOk() (*string, bool)

GetRegisteredModelIdOk returns a tuple with the RegisteredModelId field value and a boolean to check if the value has been set.

func (*ModelVersion) GetState

func (o *ModelVersion) GetState() ModelVersionState

GetState returns the State field value if set, zero value otherwise.

func (*ModelVersion) GetStateOk

func (o *ModelVersion) GetStateOk() (*ModelVersionState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) HasAuthor

func (o *ModelVersion) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ModelVersion) HasCreateTimeSinceEpoch

func (o *ModelVersion) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*ModelVersion) HasCustomProperties

func (o *ModelVersion) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ModelVersion) HasDescription

func (o *ModelVersion) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelVersion) HasExternalId

func (o *ModelVersion) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ModelVersion) HasId

func (o *ModelVersion) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelVersion) HasLastUpdateTimeSinceEpoch

func (o *ModelVersion) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*ModelVersion) HasName

func (o *ModelVersion) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModelVersion) HasState

func (o *ModelVersion) HasState() bool

HasState returns a boolean if a field has been set.

func (ModelVersion) MarshalJSON

func (o ModelVersion) MarshalJSON() ([]byte, error)

func (*ModelVersion) SetAuthor

func (o *ModelVersion) SetAuthor(v string)

SetAuthor gets a reference to the given string and assigns it to the Author field.

func (*ModelVersion) SetCreateTimeSinceEpoch

func (o *ModelVersion) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*ModelVersion) SetCustomProperties

func (o *ModelVersion) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ModelVersion) SetDescription

func (o *ModelVersion) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelVersion) SetExternalId

func (o *ModelVersion) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ModelVersion) SetId

func (o *ModelVersion) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ModelVersion) SetLastUpdateTimeSinceEpoch

func (o *ModelVersion) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*ModelVersion) SetName

func (o *ModelVersion) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelVersion) SetRegisteredModelId

func (o *ModelVersion) SetRegisteredModelId(v string)

SetRegisteredModelId sets field value

func (*ModelVersion) SetState

func (o *ModelVersion) SetState(v ModelVersionState)

SetState gets a reference to the given ModelVersionState and assigns it to the State field.

func (ModelVersion) ToMap

func (o ModelVersion) ToMap() (map[string]interface{}, error)

type ModelVersionCreate

type ModelVersionCreate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name  *string            `json:"name,omitempty"`
	State *ModelVersionState `json:"state,omitempty"`
	// Name of the author.
	Author *string `json:"author,omitempty"`
	// ID of the `RegisteredModel` to which this version belongs.
	RegisteredModelId string `json:"registeredModelId"`
}

ModelVersionCreate Represents a ModelVersion belonging to a RegisteredModel.

func NewModelVersionCreate

func NewModelVersionCreate(registeredModelId string) *ModelVersionCreate

NewModelVersionCreate instantiates a new ModelVersionCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModelVersionCreateWithDefaults

func NewModelVersionCreateWithDefaults() *ModelVersionCreate

NewModelVersionCreateWithDefaults instantiates a new ModelVersionCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ModelVersionCreate) GetAuthor

func (o *ModelVersionCreate) GetAuthor() string

GetAuthor returns the Author field value if set, zero value otherwise.

func (*ModelVersionCreate) GetAuthorOk

func (o *ModelVersionCreate) GetAuthorOk() (*string, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionCreate) GetCustomProperties

func (o *ModelVersionCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ModelVersionCreate) GetCustomPropertiesOk

func (o *ModelVersionCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionCreate) GetDescription

func (o *ModelVersionCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelVersionCreate) GetDescriptionOk

func (o *ModelVersionCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionCreate) GetExternalId

func (o *ModelVersionCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ModelVersionCreate) GetExternalIdOk

func (o *ModelVersionCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionCreate) GetName

func (o *ModelVersionCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ModelVersionCreate) GetNameOk

func (o *ModelVersionCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionCreate) GetRegisteredModelId

func (o *ModelVersionCreate) GetRegisteredModelId() string

GetRegisteredModelId returns the RegisteredModelId field value

func (*ModelVersionCreate) GetRegisteredModelIdOk

func (o *ModelVersionCreate) GetRegisteredModelIdOk() (*string, bool)

GetRegisteredModelIdOk returns a tuple with the RegisteredModelId field value and a boolean to check if the value has been set.

func (*ModelVersionCreate) GetState

func (o *ModelVersionCreate) GetState() ModelVersionState

GetState returns the State field value if set, zero value otherwise.

func (*ModelVersionCreate) GetStateOk

func (o *ModelVersionCreate) GetStateOk() (*ModelVersionState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionCreate) HasAuthor

func (o *ModelVersionCreate) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ModelVersionCreate) HasCustomProperties

func (o *ModelVersionCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ModelVersionCreate) HasDescription

func (o *ModelVersionCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelVersionCreate) HasExternalId

func (o *ModelVersionCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ModelVersionCreate) HasName

func (o *ModelVersionCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModelVersionCreate) HasState

func (o *ModelVersionCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (ModelVersionCreate) MarshalJSON

func (o ModelVersionCreate) MarshalJSON() ([]byte, error)

func (*ModelVersionCreate) SetAuthor

func (o *ModelVersionCreate) SetAuthor(v string)

SetAuthor gets a reference to the given string and assigns it to the Author field.

func (*ModelVersionCreate) SetCustomProperties

func (o *ModelVersionCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ModelVersionCreate) SetDescription

func (o *ModelVersionCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelVersionCreate) SetExternalId

func (o *ModelVersionCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ModelVersionCreate) SetName

func (o *ModelVersionCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelVersionCreate) SetRegisteredModelId

func (o *ModelVersionCreate) SetRegisteredModelId(v string)

SetRegisteredModelId sets field value

func (*ModelVersionCreate) SetState

func (o *ModelVersionCreate) SetState(v ModelVersionState)

SetState gets a reference to the given ModelVersionState and assigns it to the State field.

func (ModelVersionCreate) ToMap

func (o ModelVersionCreate) ToMap() (map[string]interface{}, error)

type ModelVersionList

type ModelVersionList struct {
	// Token to use to retrieve next page of results.
	NextPageToken string `json:"nextPageToken"`
	// Maximum number of resources to return in the result.
	PageSize int32 `json:"pageSize"`
	// Number of items in result list.
	Size int32 `json:"size"`
	// Array of `ModelVersion` entities.
	Items []ModelVersion `json:"items,omitempty"`
}

ModelVersionList List of ModelVersion entities.

func NewModelVersionList

func NewModelVersionList(nextPageToken string, pageSize int32, size int32) *ModelVersionList

NewModelVersionList instantiates a new ModelVersionList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModelVersionListWithDefaults

func NewModelVersionListWithDefaults() *ModelVersionList

NewModelVersionListWithDefaults instantiates a new ModelVersionList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ModelVersionList) GetItems

func (o *ModelVersionList) GetItems() []ModelVersion

GetItems returns the Items field value if set, zero value otherwise.

func (*ModelVersionList) GetItemsOk

func (o *ModelVersionList) GetItemsOk() ([]ModelVersion, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionList) GetNextPageToken

func (o *ModelVersionList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*ModelVersionList) GetNextPageTokenOk

func (o *ModelVersionList) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*ModelVersionList) GetPageSize

func (o *ModelVersionList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*ModelVersionList) GetPageSizeOk

func (o *ModelVersionList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*ModelVersionList) GetSize

func (o *ModelVersionList) GetSize() int32

GetSize returns the Size field value

func (*ModelVersionList) GetSizeOk

func (o *ModelVersionList) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*ModelVersionList) HasItems

func (o *ModelVersionList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ModelVersionList) MarshalJSON

func (o ModelVersionList) MarshalJSON() ([]byte, error)

func (*ModelVersionList) SetItems

func (o *ModelVersionList) SetItems(v []ModelVersion)

SetItems gets a reference to the given []ModelVersion and assigns it to the Items field.

func (*ModelVersionList) SetNextPageToken

func (o *ModelVersionList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*ModelVersionList) SetPageSize

func (o *ModelVersionList) SetPageSize(v int32)

SetPageSize sets field value

func (*ModelVersionList) SetSize

func (o *ModelVersionList) SetSize(v int32)

SetSize sets field value

func (ModelVersionList) ToMap

func (o ModelVersionList) ToMap() (map[string]interface{}, error)

type ModelVersionState

type ModelVersionState string

ModelVersionState - LIVE: A state indicating that the `ModelVersion` exists - ARCHIVED: A state indicating that the `ModelVersion` has been archived.

const (
	MODELVERSIONSTATE_LIVE     ModelVersionState = "LIVE"
	MODELVERSIONSTATE_ARCHIVED ModelVersionState = "ARCHIVED"
)

List of ModelVersionState

func NewModelVersionStateFromValue

func NewModelVersionStateFromValue(v string) (*ModelVersionState, error)

NewModelVersionStateFromValue returns a pointer to a valid ModelVersionState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ModelVersionState) IsValid

func (v ModelVersionState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ModelVersionState) Ptr

Ptr returns reference to ModelVersionState value

func (*ModelVersionState) UnmarshalJSON

func (v *ModelVersionState) UnmarshalJSON(src []byte) error

type ModelVersionUpdate

type ModelVersionUpdate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string            `json:"externalId,omitempty"`
	State      *ModelVersionState `json:"state,omitempty"`
	// Name of the author.
	Author *string `json:"author,omitempty"`
}

ModelVersionUpdate Represents a ModelVersion belonging to a RegisteredModel.

func NewModelVersionUpdate

func NewModelVersionUpdate() *ModelVersionUpdate

NewModelVersionUpdate instantiates a new ModelVersionUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewModelVersionUpdateWithDefaults

func NewModelVersionUpdateWithDefaults() *ModelVersionUpdate

NewModelVersionUpdateWithDefaults instantiates a new ModelVersionUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ModelVersionUpdate) GetAuthor

func (o *ModelVersionUpdate) GetAuthor() string

GetAuthor returns the Author field value if set, zero value otherwise.

func (*ModelVersionUpdate) GetAuthorOk

func (o *ModelVersionUpdate) GetAuthorOk() (*string, bool)

GetAuthorOk returns a tuple with the Author field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionUpdate) GetCustomProperties

func (o *ModelVersionUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ModelVersionUpdate) GetCustomPropertiesOk

func (o *ModelVersionUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionUpdate) GetDescription

func (o *ModelVersionUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelVersionUpdate) GetDescriptionOk

func (o *ModelVersionUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionUpdate) GetExternalId

func (o *ModelVersionUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ModelVersionUpdate) GetExternalIdOk

func (o *ModelVersionUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionUpdate) GetState

func (o *ModelVersionUpdate) GetState() ModelVersionState

GetState returns the State field value if set, zero value otherwise.

func (*ModelVersionUpdate) GetStateOk

func (o *ModelVersionUpdate) GetStateOk() (*ModelVersionState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersionUpdate) HasAuthor

func (o *ModelVersionUpdate) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*ModelVersionUpdate) HasCustomProperties

func (o *ModelVersionUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ModelVersionUpdate) HasDescription

func (o *ModelVersionUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelVersionUpdate) HasExternalId

func (o *ModelVersionUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ModelVersionUpdate) HasState

func (o *ModelVersionUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (ModelVersionUpdate) MarshalJSON

func (o ModelVersionUpdate) MarshalJSON() ([]byte, error)

func (*ModelVersionUpdate) SetAuthor

func (o *ModelVersionUpdate) SetAuthor(v string)

SetAuthor gets a reference to the given string and assigns it to the Author field.

func (*ModelVersionUpdate) SetCustomProperties

func (o *ModelVersionUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ModelVersionUpdate) SetDescription

func (o *ModelVersionUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelVersionUpdate) SetExternalId

func (o *ModelVersionUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ModelVersionUpdate) SetState

func (o *ModelVersionUpdate) SetState(v ModelVersionState)

SetState gets a reference to the given ModelVersionState and assigns it to the State field.

func (ModelVersionUpdate) ToMap

func (o ModelVersionUpdate) ToMap() (map[string]interface{}, error)

type NullableArtifact

type NullableArtifact struct {
	// contains filtered or unexported fields
}

func NewNullableArtifact

func NewNullableArtifact(val *Artifact) *NullableArtifact

func (NullableArtifact) Get

func (v NullableArtifact) Get() *Artifact

func (NullableArtifact) IsSet

func (v NullableArtifact) IsSet() bool

func (NullableArtifact) MarshalJSON

func (v NullableArtifact) MarshalJSON() ([]byte, error)

func (*NullableArtifact) Set

func (v *NullableArtifact) Set(val *Artifact)

func (*NullableArtifact) UnmarshalJSON

func (v *NullableArtifact) UnmarshalJSON(src []byte) error

func (*NullableArtifact) Unset

func (v *NullableArtifact) Unset()

type NullableArtifactList

type NullableArtifactList struct {
	// contains filtered or unexported fields
}

func NewNullableArtifactList

func NewNullableArtifactList(val *ArtifactList) *NullableArtifactList

func (NullableArtifactList) Get

func (NullableArtifactList) IsSet

func (v NullableArtifactList) IsSet() bool

func (NullableArtifactList) MarshalJSON

func (v NullableArtifactList) MarshalJSON() ([]byte, error)

func (*NullableArtifactList) Set

func (v *NullableArtifactList) Set(val *ArtifactList)

func (*NullableArtifactList) UnmarshalJSON

func (v *NullableArtifactList) UnmarshalJSON(src []byte) error

func (*NullableArtifactList) Unset

func (v *NullableArtifactList) Unset()

type NullableArtifactState

type NullableArtifactState struct {
	// contains filtered or unexported fields
}

func NewNullableArtifactState

func NewNullableArtifactState(val *ArtifactState) *NullableArtifactState

func (NullableArtifactState) Get

func (NullableArtifactState) IsSet

func (v NullableArtifactState) IsSet() bool

func (NullableArtifactState) MarshalJSON

func (v NullableArtifactState) MarshalJSON() ([]byte, error)

func (*NullableArtifactState) Set

func (v *NullableArtifactState) Set(val *ArtifactState)

func (*NullableArtifactState) UnmarshalJSON

func (v *NullableArtifactState) UnmarshalJSON(src []byte) error

func (*NullableArtifactState) Unset

func (v *NullableArtifactState) Unset()

type NullableBaseArtifact

type NullableBaseArtifact struct {
	// contains filtered or unexported fields
}

func NewNullableBaseArtifact

func NewNullableBaseArtifact(val *BaseArtifact) *NullableBaseArtifact

func (NullableBaseArtifact) Get

func (NullableBaseArtifact) IsSet

func (v NullableBaseArtifact) IsSet() bool

func (NullableBaseArtifact) MarshalJSON

func (v NullableBaseArtifact) MarshalJSON() ([]byte, error)

func (*NullableBaseArtifact) Set

func (v *NullableBaseArtifact) Set(val *BaseArtifact)

func (*NullableBaseArtifact) UnmarshalJSON

func (v *NullableBaseArtifact) UnmarshalJSON(src []byte) error

func (*NullableBaseArtifact) Unset

func (v *NullableBaseArtifact) Unset()

type NullableBaseArtifactCreate

type NullableBaseArtifactCreate struct {
	// contains filtered or unexported fields
}

func NewNullableBaseArtifactCreate

func NewNullableBaseArtifactCreate(val *BaseArtifactCreate) *NullableBaseArtifactCreate

func (NullableBaseArtifactCreate) Get

func (NullableBaseArtifactCreate) IsSet

func (v NullableBaseArtifactCreate) IsSet() bool

func (NullableBaseArtifactCreate) MarshalJSON

func (v NullableBaseArtifactCreate) MarshalJSON() ([]byte, error)

func (*NullableBaseArtifactCreate) Set

func (*NullableBaseArtifactCreate) UnmarshalJSON

func (v *NullableBaseArtifactCreate) UnmarshalJSON(src []byte) error

func (*NullableBaseArtifactCreate) Unset

func (v *NullableBaseArtifactCreate) Unset()

type NullableBaseArtifactUpdate

type NullableBaseArtifactUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableBaseArtifactUpdate

func NewNullableBaseArtifactUpdate(val *BaseArtifactUpdate) *NullableBaseArtifactUpdate

func (NullableBaseArtifactUpdate) Get

func (NullableBaseArtifactUpdate) IsSet

func (v NullableBaseArtifactUpdate) IsSet() bool

func (NullableBaseArtifactUpdate) MarshalJSON

func (v NullableBaseArtifactUpdate) MarshalJSON() ([]byte, error)

func (*NullableBaseArtifactUpdate) Set

func (*NullableBaseArtifactUpdate) UnmarshalJSON

func (v *NullableBaseArtifactUpdate) UnmarshalJSON(src []byte) error

func (*NullableBaseArtifactUpdate) Unset

func (v *NullableBaseArtifactUpdate) Unset()

type NullableBaseExecution

type NullableBaseExecution struct {
	// contains filtered or unexported fields
}

func NewNullableBaseExecution

func NewNullableBaseExecution(val *BaseExecution) *NullableBaseExecution

func (NullableBaseExecution) Get

func (NullableBaseExecution) IsSet

func (v NullableBaseExecution) IsSet() bool

func (NullableBaseExecution) MarshalJSON

func (v NullableBaseExecution) MarshalJSON() ([]byte, error)

func (*NullableBaseExecution) Set

func (v *NullableBaseExecution) Set(val *BaseExecution)

func (*NullableBaseExecution) UnmarshalJSON

func (v *NullableBaseExecution) UnmarshalJSON(src []byte) error

func (*NullableBaseExecution) Unset

func (v *NullableBaseExecution) Unset()

type NullableBaseExecutionCreate

type NullableBaseExecutionCreate struct {
	// contains filtered or unexported fields
}

func NewNullableBaseExecutionCreate

func NewNullableBaseExecutionCreate(val *BaseExecutionCreate) *NullableBaseExecutionCreate

func (NullableBaseExecutionCreate) Get

func (NullableBaseExecutionCreate) IsSet

func (NullableBaseExecutionCreate) MarshalJSON

func (v NullableBaseExecutionCreate) MarshalJSON() ([]byte, error)

func (*NullableBaseExecutionCreate) Set

func (*NullableBaseExecutionCreate) UnmarshalJSON

func (v *NullableBaseExecutionCreate) UnmarshalJSON(src []byte) error

func (*NullableBaseExecutionCreate) Unset

func (v *NullableBaseExecutionCreate) Unset()

type NullableBaseExecutionUpdate

type NullableBaseExecutionUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableBaseExecutionUpdate

func NewNullableBaseExecutionUpdate(val *BaseExecutionUpdate) *NullableBaseExecutionUpdate

func (NullableBaseExecutionUpdate) Get

func (NullableBaseExecutionUpdate) IsSet

func (NullableBaseExecutionUpdate) MarshalJSON

func (v NullableBaseExecutionUpdate) MarshalJSON() ([]byte, error)

func (*NullableBaseExecutionUpdate) Set

func (*NullableBaseExecutionUpdate) UnmarshalJSON

func (v *NullableBaseExecutionUpdate) UnmarshalJSON(src []byte) error

func (*NullableBaseExecutionUpdate) Unset

func (v *NullableBaseExecutionUpdate) Unset()

type NullableBaseResource

type NullableBaseResource struct {
	// contains filtered or unexported fields
}

func NewNullableBaseResource

func NewNullableBaseResource(val *BaseResource) *NullableBaseResource

func (NullableBaseResource) Get

func (NullableBaseResource) IsSet

func (v NullableBaseResource) IsSet() bool

func (NullableBaseResource) MarshalJSON

func (v NullableBaseResource) MarshalJSON() ([]byte, error)

func (*NullableBaseResource) Set

func (v *NullableBaseResource) Set(val *BaseResource)

func (*NullableBaseResource) UnmarshalJSON

func (v *NullableBaseResource) UnmarshalJSON(src []byte) error

func (*NullableBaseResource) Unset

func (v *NullableBaseResource) Unset()

type NullableBaseResourceCreate

type NullableBaseResourceCreate struct {
	// contains filtered or unexported fields
}

func NewNullableBaseResourceCreate

func NewNullableBaseResourceCreate(val *BaseResourceCreate) *NullableBaseResourceCreate

func (NullableBaseResourceCreate) Get

func (NullableBaseResourceCreate) IsSet

func (v NullableBaseResourceCreate) IsSet() bool

func (NullableBaseResourceCreate) MarshalJSON

func (v NullableBaseResourceCreate) MarshalJSON() ([]byte, error)

func (*NullableBaseResourceCreate) Set

func (*NullableBaseResourceCreate) UnmarshalJSON

func (v *NullableBaseResourceCreate) UnmarshalJSON(src []byte) error

func (*NullableBaseResourceCreate) Unset

func (v *NullableBaseResourceCreate) Unset()

type NullableBaseResourceList

type NullableBaseResourceList struct {
	// contains filtered or unexported fields
}

func NewNullableBaseResourceList

func NewNullableBaseResourceList(val *BaseResourceList) *NullableBaseResourceList

func (NullableBaseResourceList) Get

func (NullableBaseResourceList) IsSet

func (v NullableBaseResourceList) IsSet() bool

func (NullableBaseResourceList) MarshalJSON

func (v NullableBaseResourceList) MarshalJSON() ([]byte, error)

func (*NullableBaseResourceList) Set

func (*NullableBaseResourceList) UnmarshalJSON

func (v *NullableBaseResourceList) UnmarshalJSON(src []byte) error

func (*NullableBaseResourceList) Unset

func (v *NullableBaseResourceList) Unset()

type NullableBaseResourceUpdate

type NullableBaseResourceUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableBaseResourceUpdate

func NewNullableBaseResourceUpdate(val *BaseResourceUpdate) *NullableBaseResourceUpdate

func (NullableBaseResourceUpdate) Get

func (NullableBaseResourceUpdate) IsSet

func (v NullableBaseResourceUpdate) IsSet() bool

func (NullableBaseResourceUpdate) MarshalJSON

func (v NullableBaseResourceUpdate) MarshalJSON() ([]byte, error)

func (*NullableBaseResourceUpdate) Set

func (*NullableBaseResourceUpdate) UnmarshalJSON

func (v *NullableBaseResourceUpdate) UnmarshalJSON(src []byte) error

func (*NullableBaseResourceUpdate) Unset

func (v *NullableBaseResourceUpdate) Unset()

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableDocArtifact

type NullableDocArtifact struct {
	// contains filtered or unexported fields
}

func NewNullableDocArtifact

func NewNullableDocArtifact(val *DocArtifact) *NullableDocArtifact

func (NullableDocArtifact) Get

func (NullableDocArtifact) IsSet

func (v NullableDocArtifact) IsSet() bool

func (NullableDocArtifact) MarshalJSON

func (v NullableDocArtifact) MarshalJSON() ([]byte, error)

func (*NullableDocArtifact) Set

func (v *NullableDocArtifact) Set(val *DocArtifact)

func (*NullableDocArtifact) UnmarshalJSON

func (v *NullableDocArtifact) UnmarshalJSON(src []byte) error

func (*NullableDocArtifact) Unset

func (v *NullableDocArtifact) Unset()

type NullableError

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset

func (v *NullableError) Unset()

type NullableExecutionState

type NullableExecutionState struct {
	// contains filtered or unexported fields
}

func NewNullableExecutionState

func NewNullableExecutionState(val *ExecutionState) *NullableExecutionState

func (NullableExecutionState) Get

func (NullableExecutionState) IsSet

func (v NullableExecutionState) IsSet() bool

func (NullableExecutionState) MarshalJSON

func (v NullableExecutionState) MarshalJSON() ([]byte, error)

func (*NullableExecutionState) Set

func (*NullableExecutionState) UnmarshalJSON

func (v *NullableExecutionState) UnmarshalJSON(src []byte) error

func (*NullableExecutionState) Unset

func (v *NullableExecutionState) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInferenceService

type NullableInferenceService struct {
	// contains filtered or unexported fields
}

func NewNullableInferenceService

func NewNullableInferenceService(val *InferenceService) *NullableInferenceService

func (NullableInferenceService) Get

func (NullableInferenceService) IsSet

func (v NullableInferenceService) IsSet() bool

func (NullableInferenceService) MarshalJSON

func (v NullableInferenceService) MarshalJSON() ([]byte, error)

func (*NullableInferenceService) Set

func (*NullableInferenceService) UnmarshalJSON

func (v *NullableInferenceService) UnmarshalJSON(src []byte) error

func (*NullableInferenceService) Unset

func (v *NullableInferenceService) Unset()

type NullableInferenceServiceCreate

type NullableInferenceServiceCreate struct {
	// contains filtered or unexported fields
}

func (NullableInferenceServiceCreate) Get

func (NullableInferenceServiceCreate) IsSet

func (NullableInferenceServiceCreate) MarshalJSON

func (v NullableInferenceServiceCreate) MarshalJSON() ([]byte, error)

func (*NullableInferenceServiceCreate) Set

func (*NullableInferenceServiceCreate) UnmarshalJSON

func (v *NullableInferenceServiceCreate) UnmarshalJSON(src []byte) error

func (*NullableInferenceServiceCreate) Unset

func (v *NullableInferenceServiceCreate) Unset()

type NullableInferenceServiceList

type NullableInferenceServiceList struct {
	// contains filtered or unexported fields
}

func NewNullableInferenceServiceList

func NewNullableInferenceServiceList(val *InferenceServiceList) *NullableInferenceServiceList

func (NullableInferenceServiceList) Get

func (NullableInferenceServiceList) IsSet

func (NullableInferenceServiceList) MarshalJSON

func (v NullableInferenceServiceList) MarshalJSON() ([]byte, error)

func (*NullableInferenceServiceList) Set

func (*NullableInferenceServiceList) UnmarshalJSON

func (v *NullableInferenceServiceList) UnmarshalJSON(src []byte) error

func (*NullableInferenceServiceList) Unset

func (v *NullableInferenceServiceList) Unset()

type NullableInferenceServiceState

type NullableInferenceServiceState struct {
	// contains filtered or unexported fields
}

func (NullableInferenceServiceState) Get

func (NullableInferenceServiceState) IsSet

func (NullableInferenceServiceState) MarshalJSON

func (v NullableInferenceServiceState) MarshalJSON() ([]byte, error)

func (*NullableInferenceServiceState) Set

func (*NullableInferenceServiceState) UnmarshalJSON

func (v *NullableInferenceServiceState) UnmarshalJSON(src []byte) error

func (*NullableInferenceServiceState) Unset

func (v *NullableInferenceServiceState) Unset()

type NullableInferenceServiceUpdate

type NullableInferenceServiceUpdate struct {
	// contains filtered or unexported fields
}

func (NullableInferenceServiceUpdate) Get

func (NullableInferenceServiceUpdate) IsSet

func (NullableInferenceServiceUpdate) MarshalJSON

func (v NullableInferenceServiceUpdate) MarshalJSON() ([]byte, error)

func (*NullableInferenceServiceUpdate) Set

func (*NullableInferenceServiceUpdate) UnmarshalJSON

func (v *NullableInferenceServiceUpdate) UnmarshalJSON(src []byte) error

func (*NullableInferenceServiceUpdate) Unset

func (v *NullableInferenceServiceUpdate) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableMetadataBoolValue

type NullableMetadataBoolValue struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataBoolValue

func NewNullableMetadataBoolValue(val *MetadataBoolValue) *NullableMetadataBoolValue

func (NullableMetadataBoolValue) Get

func (NullableMetadataBoolValue) IsSet

func (v NullableMetadataBoolValue) IsSet() bool

func (NullableMetadataBoolValue) MarshalJSON

func (v NullableMetadataBoolValue) MarshalJSON() ([]byte, error)

func (*NullableMetadataBoolValue) Set

func (*NullableMetadataBoolValue) UnmarshalJSON

func (v *NullableMetadataBoolValue) UnmarshalJSON(src []byte) error

func (*NullableMetadataBoolValue) Unset

func (v *NullableMetadataBoolValue) Unset()

type NullableMetadataDoubleValue

type NullableMetadataDoubleValue struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataDoubleValue

func NewNullableMetadataDoubleValue(val *MetadataDoubleValue) *NullableMetadataDoubleValue

func (NullableMetadataDoubleValue) Get

func (NullableMetadataDoubleValue) IsSet

func (NullableMetadataDoubleValue) MarshalJSON

func (v NullableMetadataDoubleValue) MarshalJSON() ([]byte, error)

func (*NullableMetadataDoubleValue) Set

func (*NullableMetadataDoubleValue) UnmarshalJSON

func (v *NullableMetadataDoubleValue) UnmarshalJSON(src []byte) error

func (*NullableMetadataDoubleValue) Unset

func (v *NullableMetadataDoubleValue) Unset()

type NullableMetadataIntValue

type NullableMetadataIntValue struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataIntValue

func NewNullableMetadataIntValue(val *MetadataIntValue) *NullableMetadataIntValue

func (NullableMetadataIntValue) Get

func (NullableMetadataIntValue) IsSet

func (v NullableMetadataIntValue) IsSet() bool

func (NullableMetadataIntValue) MarshalJSON

func (v NullableMetadataIntValue) MarshalJSON() ([]byte, error)

func (*NullableMetadataIntValue) Set

func (*NullableMetadataIntValue) UnmarshalJSON

func (v *NullableMetadataIntValue) UnmarshalJSON(src []byte) error

func (*NullableMetadataIntValue) Unset

func (v *NullableMetadataIntValue) Unset()

type NullableMetadataProtoValue

type NullableMetadataProtoValue struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataProtoValue

func NewNullableMetadataProtoValue(val *MetadataProtoValue) *NullableMetadataProtoValue

func (NullableMetadataProtoValue) Get

func (NullableMetadataProtoValue) IsSet

func (v NullableMetadataProtoValue) IsSet() bool

func (NullableMetadataProtoValue) MarshalJSON

func (v NullableMetadataProtoValue) MarshalJSON() ([]byte, error)

func (*NullableMetadataProtoValue) Set

func (*NullableMetadataProtoValue) UnmarshalJSON

func (v *NullableMetadataProtoValue) UnmarshalJSON(src []byte) error

func (*NullableMetadataProtoValue) Unset

func (v *NullableMetadataProtoValue) Unset()

type NullableMetadataStringValue

type NullableMetadataStringValue struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataStringValue

func NewNullableMetadataStringValue(val *MetadataStringValue) *NullableMetadataStringValue

func (NullableMetadataStringValue) Get

func (NullableMetadataStringValue) IsSet

func (NullableMetadataStringValue) MarshalJSON

func (v NullableMetadataStringValue) MarshalJSON() ([]byte, error)

func (*NullableMetadataStringValue) Set

func (*NullableMetadataStringValue) UnmarshalJSON

func (v *NullableMetadataStringValue) UnmarshalJSON(src []byte) error

func (*NullableMetadataStringValue) Unset

func (v *NullableMetadataStringValue) Unset()

type NullableMetadataStructValue

type NullableMetadataStructValue struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataStructValue

func NewNullableMetadataStructValue(val *MetadataStructValue) *NullableMetadataStructValue

func (NullableMetadataStructValue) Get

func (NullableMetadataStructValue) IsSet

func (NullableMetadataStructValue) MarshalJSON

func (v NullableMetadataStructValue) MarshalJSON() ([]byte, error)

func (*NullableMetadataStructValue) Set

func (*NullableMetadataStructValue) UnmarshalJSON

func (v *NullableMetadataStructValue) UnmarshalJSON(src []byte) error

func (*NullableMetadataStructValue) Unset

func (v *NullableMetadataStructValue) Unset()

type NullableMetadataValue

type NullableMetadataValue struct {
	// contains filtered or unexported fields
}

func NewNullableMetadataValue

func NewNullableMetadataValue(val *MetadataValue) *NullableMetadataValue

func (NullableMetadataValue) Get

func (NullableMetadataValue) IsSet

func (v NullableMetadataValue) IsSet() bool

func (NullableMetadataValue) MarshalJSON

func (v NullableMetadataValue) MarshalJSON() ([]byte, error)

func (*NullableMetadataValue) Set

func (v *NullableMetadataValue) Set(val *MetadataValue)

func (*NullableMetadataValue) UnmarshalJSON

func (v *NullableMetadataValue) UnmarshalJSON(src []byte) error

func (*NullableMetadataValue) Unset

func (v *NullableMetadataValue) Unset()

type NullableModelArtifact

type NullableModelArtifact struct {
	// contains filtered or unexported fields
}

func NewNullableModelArtifact

func NewNullableModelArtifact(val *ModelArtifact) *NullableModelArtifact

func (NullableModelArtifact) Get

func (NullableModelArtifact) IsSet

func (v NullableModelArtifact) IsSet() bool

func (NullableModelArtifact) MarshalJSON

func (v NullableModelArtifact) MarshalJSON() ([]byte, error)

func (*NullableModelArtifact) Set

func (v *NullableModelArtifact) Set(val *ModelArtifact)

func (*NullableModelArtifact) UnmarshalJSON

func (v *NullableModelArtifact) UnmarshalJSON(src []byte) error

func (*NullableModelArtifact) Unset

func (v *NullableModelArtifact) Unset()

type NullableModelArtifactCreate

type NullableModelArtifactCreate struct {
	// contains filtered or unexported fields
}

func NewNullableModelArtifactCreate

func NewNullableModelArtifactCreate(val *ModelArtifactCreate) *NullableModelArtifactCreate

func (NullableModelArtifactCreate) Get

func (NullableModelArtifactCreate) IsSet

func (NullableModelArtifactCreate) MarshalJSON

func (v NullableModelArtifactCreate) MarshalJSON() ([]byte, error)

func (*NullableModelArtifactCreate) Set

func (*NullableModelArtifactCreate) UnmarshalJSON

func (v *NullableModelArtifactCreate) UnmarshalJSON(src []byte) error

func (*NullableModelArtifactCreate) Unset

func (v *NullableModelArtifactCreate) Unset()

type NullableModelArtifactList

type NullableModelArtifactList struct {
	// contains filtered or unexported fields
}

func NewNullableModelArtifactList

func NewNullableModelArtifactList(val *ModelArtifactList) *NullableModelArtifactList

func (NullableModelArtifactList) Get

func (NullableModelArtifactList) IsSet

func (v NullableModelArtifactList) IsSet() bool

func (NullableModelArtifactList) MarshalJSON

func (v NullableModelArtifactList) MarshalJSON() ([]byte, error)

func (*NullableModelArtifactList) Set

func (*NullableModelArtifactList) UnmarshalJSON

func (v *NullableModelArtifactList) UnmarshalJSON(src []byte) error

func (*NullableModelArtifactList) Unset

func (v *NullableModelArtifactList) Unset()

type NullableModelArtifactUpdate

type NullableModelArtifactUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableModelArtifactUpdate

func NewNullableModelArtifactUpdate(val *ModelArtifactUpdate) *NullableModelArtifactUpdate

func (NullableModelArtifactUpdate) Get

func (NullableModelArtifactUpdate) IsSet

func (NullableModelArtifactUpdate) MarshalJSON

func (v NullableModelArtifactUpdate) MarshalJSON() ([]byte, error)

func (*NullableModelArtifactUpdate) Set

func (*NullableModelArtifactUpdate) UnmarshalJSON

func (v *NullableModelArtifactUpdate) UnmarshalJSON(src []byte) error

func (*NullableModelArtifactUpdate) Unset

func (v *NullableModelArtifactUpdate) Unset()

type NullableModelVersion

type NullableModelVersion struct {
	// contains filtered or unexported fields
}

func NewNullableModelVersion

func NewNullableModelVersion(val *ModelVersion) *NullableModelVersion

func (NullableModelVersion) Get

func (NullableModelVersion) IsSet

func (v NullableModelVersion) IsSet() bool

func (NullableModelVersion) MarshalJSON

func (v NullableModelVersion) MarshalJSON() ([]byte, error)

func (*NullableModelVersion) Set

func (v *NullableModelVersion) Set(val *ModelVersion)

func (*NullableModelVersion) UnmarshalJSON

func (v *NullableModelVersion) UnmarshalJSON(src []byte) error

func (*NullableModelVersion) Unset

func (v *NullableModelVersion) Unset()

type NullableModelVersionCreate

type NullableModelVersionCreate struct {
	// contains filtered or unexported fields
}

func NewNullableModelVersionCreate

func NewNullableModelVersionCreate(val *ModelVersionCreate) *NullableModelVersionCreate

func (NullableModelVersionCreate) Get

func (NullableModelVersionCreate) IsSet

func (v NullableModelVersionCreate) IsSet() bool

func (NullableModelVersionCreate) MarshalJSON

func (v NullableModelVersionCreate) MarshalJSON() ([]byte, error)

func (*NullableModelVersionCreate) Set

func (*NullableModelVersionCreate) UnmarshalJSON

func (v *NullableModelVersionCreate) UnmarshalJSON(src []byte) error

func (*NullableModelVersionCreate) Unset

func (v *NullableModelVersionCreate) Unset()

type NullableModelVersionList

type NullableModelVersionList struct {
	// contains filtered or unexported fields
}

func NewNullableModelVersionList

func NewNullableModelVersionList(val *ModelVersionList) *NullableModelVersionList

func (NullableModelVersionList) Get

func (NullableModelVersionList) IsSet

func (v NullableModelVersionList) IsSet() bool

func (NullableModelVersionList) MarshalJSON

func (v NullableModelVersionList) MarshalJSON() ([]byte, error)

func (*NullableModelVersionList) Set

func (*NullableModelVersionList) UnmarshalJSON

func (v *NullableModelVersionList) UnmarshalJSON(src []byte) error

func (*NullableModelVersionList) Unset

func (v *NullableModelVersionList) Unset()

type NullableModelVersionState

type NullableModelVersionState struct {
	// contains filtered or unexported fields
}

func NewNullableModelVersionState

func NewNullableModelVersionState(val *ModelVersionState) *NullableModelVersionState

func (NullableModelVersionState) Get

func (NullableModelVersionState) IsSet

func (v NullableModelVersionState) IsSet() bool

func (NullableModelVersionState) MarshalJSON

func (v NullableModelVersionState) MarshalJSON() ([]byte, error)

func (*NullableModelVersionState) Set

func (*NullableModelVersionState) UnmarshalJSON

func (v *NullableModelVersionState) UnmarshalJSON(src []byte) error

func (*NullableModelVersionState) Unset

func (v *NullableModelVersionState) Unset()

type NullableModelVersionUpdate

type NullableModelVersionUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableModelVersionUpdate

func NewNullableModelVersionUpdate(val *ModelVersionUpdate) *NullableModelVersionUpdate

func (NullableModelVersionUpdate) Get

func (NullableModelVersionUpdate) IsSet

func (v NullableModelVersionUpdate) IsSet() bool

func (NullableModelVersionUpdate) MarshalJSON

func (v NullableModelVersionUpdate) MarshalJSON() ([]byte, error)

func (*NullableModelVersionUpdate) Set

func (*NullableModelVersionUpdate) UnmarshalJSON

func (v *NullableModelVersionUpdate) UnmarshalJSON(src []byte) error

func (*NullableModelVersionUpdate) Unset

func (v *NullableModelVersionUpdate) Unset()

type NullableOrderByField

type NullableOrderByField struct {
	// contains filtered or unexported fields
}

func NewNullableOrderByField

func NewNullableOrderByField(val *OrderByField) *NullableOrderByField

func (NullableOrderByField) Get

func (NullableOrderByField) IsSet

func (v NullableOrderByField) IsSet() bool

func (NullableOrderByField) MarshalJSON

func (v NullableOrderByField) MarshalJSON() ([]byte, error)

func (*NullableOrderByField) Set

func (v *NullableOrderByField) Set(val *OrderByField)

func (*NullableOrderByField) UnmarshalJSON

func (v *NullableOrderByField) UnmarshalJSON(src []byte) error

func (*NullableOrderByField) Unset

func (v *NullableOrderByField) Unset()

type NullableRegisteredModel

type NullableRegisteredModel struct {
	// contains filtered or unexported fields
}

func NewNullableRegisteredModel

func NewNullableRegisteredModel(val *RegisteredModel) *NullableRegisteredModel

func (NullableRegisteredModel) Get

func (NullableRegisteredModel) IsSet

func (v NullableRegisteredModel) IsSet() bool

func (NullableRegisteredModel) MarshalJSON

func (v NullableRegisteredModel) MarshalJSON() ([]byte, error)

func (*NullableRegisteredModel) Set

func (*NullableRegisteredModel) UnmarshalJSON

func (v *NullableRegisteredModel) UnmarshalJSON(src []byte) error

func (*NullableRegisteredModel) Unset

func (v *NullableRegisteredModel) Unset()

type NullableRegisteredModelCreate

type NullableRegisteredModelCreate struct {
	// contains filtered or unexported fields
}

func (NullableRegisteredModelCreate) Get

func (NullableRegisteredModelCreate) IsSet

func (NullableRegisteredModelCreate) MarshalJSON

func (v NullableRegisteredModelCreate) MarshalJSON() ([]byte, error)

func (*NullableRegisteredModelCreate) Set

func (*NullableRegisteredModelCreate) UnmarshalJSON

func (v *NullableRegisteredModelCreate) UnmarshalJSON(src []byte) error

func (*NullableRegisteredModelCreate) Unset

func (v *NullableRegisteredModelCreate) Unset()

type NullableRegisteredModelList

type NullableRegisteredModelList struct {
	// contains filtered or unexported fields
}

func NewNullableRegisteredModelList

func NewNullableRegisteredModelList(val *RegisteredModelList) *NullableRegisteredModelList

func (NullableRegisteredModelList) Get

func (NullableRegisteredModelList) IsSet

func (NullableRegisteredModelList) MarshalJSON

func (v NullableRegisteredModelList) MarshalJSON() ([]byte, error)

func (*NullableRegisteredModelList) Set

func (*NullableRegisteredModelList) UnmarshalJSON

func (v *NullableRegisteredModelList) UnmarshalJSON(src []byte) error

func (*NullableRegisteredModelList) Unset

func (v *NullableRegisteredModelList) Unset()

type NullableRegisteredModelState

type NullableRegisteredModelState struct {
	// contains filtered or unexported fields
}

func NewNullableRegisteredModelState

func NewNullableRegisteredModelState(val *RegisteredModelState) *NullableRegisteredModelState

func (NullableRegisteredModelState) Get

func (NullableRegisteredModelState) IsSet

func (NullableRegisteredModelState) MarshalJSON

func (v NullableRegisteredModelState) MarshalJSON() ([]byte, error)

func (*NullableRegisteredModelState) Set

func (*NullableRegisteredModelState) UnmarshalJSON

func (v *NullableRegisteredModelState) UnmarshalJSON(src []byte) error

func (*NullableRegisteredModelState) Unset

func (v *NullableRegisteredModelState) Unset()

type NullableRegisteredModelUpdate

type NullableRegisteredModelUpdate struct {
	// contains filtered or unexported fields
}

func (NullableRegisteredModelUpdate) Get

func (NullableRegisteredModelUpdate) IsSet

func (NullableRegisteredModelUpdate) MarshalJSON

func (v NullableRegisteredModelUpdate) MarshalJSON() ([]byte, error)

func (*NullableRegisteredModelUpdate) Set

func (*NullableRegisteredModelUpdate) UnmarshalJSON

func (v *NullableRegisteredModelUpdate) UnmarshalJSON(src []byte) error

func (*NullableRegisteredModelUpdate) Unset

func (v *NullableRegisteredModelUpdate) Unset()

type NullableServeModel

type NullableServeModel struct {
	// contains filtered or unexported fields
}

func NewNullableServeModel

func NewNullableServeModel(val *ServeModel) *NullableServeModel

func (NullableServeModel) Get

func (v NullableServeModel) Get() *ServeModel

func (NullableServeModel) IsSet

func (v NullableServeModel) IsSet() bool

func (NullableServeModel) MarshalJSON

func (v NullableServeModel) MarshalJSON() ([]byte, error)

func (*NullableServeModel) Set

func (v *NullableServeModel) Set(val *ServeModel)

func (*NullableServeModel) UnmarshalJSON

func (v *NullableServeModel) UnmarshalJSON(src []byte) error

func (*NullableServeModel) Unset

func (v *NullableServeModel) Unset()

type NullableServeModelCreate

type NullableServeModelCreate struct {
	// contains filtered or unexported fields
}

func NewNullableServeModelCreate

func NewNullableServeModelCreate(val *ServeModelCreate) *NullableServeModelCreate

func (NullableServeModelCreate) Get

func (NullableServeModelCreate) IsSet

func (v NullableServeModelCreate) IsSet() bool

func (NullableServeModelCreate) MarshalJSON

func (v NullableServeModelCreate) MarshalJSON() ([]byte, error)

func (*NullableServeModelCreate) Set

func (*NullableServeModelCreate) UnmarshalJSON

func (v *NullableServeModelCreate) UnmarshalJSON(src []byte) error

func (*NullableServeModelCreate) Unset

func (v *NullableServeModelCreate) Unset()

type NullableServeModelList

type NullableServeModelList struct {
	// contains filtered or unexported fields
}

func NewNullableServeModelList

func NewNullableServeModelList(val *ServeModelList) *NullableServeModelList

func (NullableServeModelList) Get

func (NullableServeModelList) IsSet

func (v NullableServeModelList) IsSet() bool

func (NullableServeModelList) MarshalJSON

func (v NullableServeModelList) MarshalJSON() ([]byte, error)

func (*NullableServeModelList) Set

func (*NullableServeModelList) UnmarshalJSON

func (v *NullableServeModelList) UnmarshalJSON(src []byte) error

func (*NullableServeModelList) Unset

func (v *NullableServeModelList) Unset()

type NullableServeModelUpdate

type NullableServeModelUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableServeModelUpdate

func NewNullableServeModelUpdate(val *ServeModelUpdate) *NullableServeModelUpdate

func (NullableServeModelUpdate) Get

func (NullableServeModelUpdate) IsSet

func (v NullableServeModelUpdate) IsSet() bool

func (NullableServeModelUpdate) MarshalJSON

func (v NullableServeModelUpdate) MarshalJSON() ([]byte, error)

func (*NullableServeModelUpdate) Set

func (*NullableServeModelUpdate) UnmarshalJSON

func (v *NullableServeModelUpdate) UnmarshalJSON(src []byte) error

func (*NullableServeModelUpdate) Unset

func (v *NullableServeModelUpdate) Unset()

type NullableServingEnvironment

type NullableServingEnvironment struct {
	// contains filtered or unexported fields
}

func NewNullableServingEnvironment

func NewNullableServingEnvironment(val *ServingEnvironment) *NullableServingEnvironment

func (NullableServingEnvironment) Get

func (NullableServingEnvironment) IsSet

func (v NullableServingEnvironment) IsSet() bool

func (NullableServingEnvironment) MarshalJSON

func (v NullableServingEnvironment) MarshalJSON() ([]byte, error)

func (*NullableServingEnvironment) Set

func (*NullableServingEnvironment) UnmarshalJSON

func (v *NullableServingEnvironment) UnmarshalJSON(src []byte) error

func (*NullableServingEnvironment) Unset

func (v *NullableServingEnvironment) Unset()

type NullableServingEnvironmentCreate

type NullableServingEnvironmentCreate struct {
	// contains filtered or unexported fields
}

func (NullableServingEnvironmentCreate) Get

func (NullableServingEnvironmentCreate) IsSet

func (NullableServingEnvironmentCreate) MarshalJSON

func (v NullableServingEnvironmentCreate) MarshalJSON() ([]byte, error)

func (*NullableServingEnvironmentCreate) Set

func (*NullableServingEnvironmentCreate) UnmarshalJSON

func (v *NullableServingEnvironmentCreate) UnmarshalJSON(src []byte) error

func (*NullableServingEnvironmentCreate) Unset

type NullableServingEnvironmentList

type NullableServingEnvironmentList struct {
	// contains filtered or unexported fields
}

func (NullableServingEnvironmentList) Get

func (NullableServingEnvironmentList) IsSet

func (NullableServingEnvironmentList) MarshalJSON

func (v NullableServingEnvironmentList) MarshalJSON() ([]byte, error)

func (*NullableServingEnvironmentList) Set

func (*NullableServingEnvironmentList) UnmarshalJSON

func (v *NullableServingEnvironmentList) UnmarshalJSON(src []byte) error

func (*NullableServingEnvironmentList) Unset

func (v *NullableServingEnvironmentList) Unset()

type NullableServingEnvironmentUpdate

type NullableServingEnvironmentUpdate struct {
	// contains filtered or unexported fields
}

func (NullableServingEnvironmentUpdate) Get

func (NullableServingEnvironmentUpdate) IsSet

func (NullableServingEnvironmentUpdate) MarshalJSON

func (v NullableServingEnvironmentUpdate) MarshalJSON() ([]byte, error)

func (*NullableServingEnvironmentUpdate) Set

func (*NullableServingEnvironmentUpdate) UnmarshalJSON

func (v *NullableServingEnvironmentUpdate) UnmarshalJSON(src []byte) error

func (*NullableServingEnvironmentUpdate) Unset

type NullableSortOrder

type NullableSortOrder struct {
	// contains filtered or unexported fields
}

func NewNullableSortOrder

func NewNullableSortOrder(val *SortOrder) *NullableSortOrder

func (NullableSortOrder) Get

func (v NullableSortOrder) Get() *SortOrder

func (NullableSortOrder) IsSet

func (v NullableSortOrder) IsSet() bool

func (NullableSortOrder) MarshalJSON

func (v NullableSortOrder) MarshalJSON() ([]byte, error)

func (*NullableSortOrder) Set

func (v *NullableSortOrder) Set(val *SortOrder)

func (*NullableSortOrder) UnmarshalJSON

func (v *NullableSortOrder) UnmarshalJSON(src []byte) error

func (*NullableSortOrder) Unset

func (v *NullableSortOrder) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type OrderByField

type OrderByField string

OrderByField Supported fields for ordering result entities.

const (
	ORDERBYFIELD_CREATE_TIME      OrderByField = "CREATE_TIME"
	ORDERBYFIELD_LAST_UPDATE_TIME OrderByField = "LAST_UPDATE_TIME"
	ORDERBYFIELD_ID               OrderByField = "Id"
)

List of OrderByField

func NewOrderByFieldFromValue

func NewOrderByFieldFromValue(v string) (*OrderByField, error)

NewOrderByFieldFromValue returns a pointer to a valid OrderByField for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OrderByField) IsValid

func (v OrderByField) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (OrderByField) Ptr

func (v OrderByField) Ptr() *OrderByField

Ptr returns reference to OrderByField value

func (*OrderByField) UnmarshalJSON

func (v *OrderByField) UnmarshalJSON(src []byte) error

type RegisteredModel

type RegisteredModel struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string               `json:"lastUpdateTimeSinceEpoch,omitempty"`
	State                    *RegisteredModelState `json:"state,omitempty"`
}

RegisteredModel A registered model in model registry. A registered model has ModelVersion children.

func NewRegisteredModel

func NewRegisteredModel() *RegisteredModel

NewRegisteredModel instantiates a new RegisteredModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegisteredModelWithDefaults

func NewRegisteredModelWithDefaults() *RegisteredModel

NewRegisteredModelWithDefaults instantiates a new RegisteredModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegisteredModel) GetCreateTimeSinceEpoch

func (o *RegisteredModel) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*RegisteredModel) GetCreateTimeSinceEpochOk

func (o *RegisteredModel) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModel) GetCustomProperties

func (o *RegisteredModel) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*RegisteredModel) GetCustomPropertiesOk

func (o *RegisteredModel) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModel) GetDescription

func (o *RegisteredModel) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RegisteredModel) GetDescriptionOk

func (o *RegisteredModel) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModel) GetExternalId

func (o *RegisteredModel) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*RegisteredModel) GetExternalIdOk

func (o *RegisteredModel) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModel) GetId

func (o *RegisteredModel) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RegisteredModel) GetIdOk

func (o *RegisteredModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModel) GetLastUpdateTimeSinceEpoch

func (o *RegisteredModel) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*RegisteredModel) GetLastUpdateTimeSinceEpochOk

func (o *RegisteredModel) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModel) GetName

func (o *RegisteredModel) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RegisteredModel) GetNameOk

func (o *RegisteredModel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModel) GetState

func (o *RegisteredModel) GetState() RegisteredModelState

GetState returns the State field value if set, zero value otherwise.

func (*RegisteredModel) GetStateOk

func (o *RegisteredModel) GetStateOk() (*RegisteredModelState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModel) HasCreateTimeSinceEpoch

func (o *RegisteredModel) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*RegisteredModel) HasCustomProperties

func (o *RegisteredModel) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*RegisteredModel) HasDescription

func (o *RegisteredModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RegisteredModel) HasExternalId

func (o *RegisteredModel) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*RegisteredModel) HasId

func (o *RegisteredModel) HasId() bool

HasId returns a boolean if a field has been set.

func (*RegisteredModel) HasLastUpdateTimeSinceEpoch

func (o *RegisteredModel) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*RegisteredModel) HasName

func (o *RegisteredModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*RegisteredModel) HasState

func (o *RegisteredModel) HasState() bool

HasState returns a boolean if a field has been set.

func (RegisteredModel) MarshalJSON

func (o RegisteredModel) MarshalJSON() ([]byte, error)

func (*RegisteredModel) SetCreateTimeSinceEpoch

func (o *RegisteredModel) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*RegisteredModel) SetCustomProperties

func (o *RegisteredModel) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*RegisteredModel) SetDescription

func (o *RegisteredModel) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RegisteredModel) SetExternalId

func (o *RegisteredModel) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*RegisteredModel) SetId

func (o *RegisteredModel) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RegisteredModel) SetLastUpdateTimeSinceEpoch

func (o *RegisteredModel) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*RegisteredModel) SetName

func (o *RegisteredModel) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RegisteredModel) SetState

func (o *RegisteredModel) SetState(v RegisteredModelState)

SetState gets a reference to the given RegisteredModelState and assigns it to the State field.

func (RegisteredModel) ToMap

func (o RegisteredModel) ToMap() (map[string]interface{}, error)

type RegisteredModelCreate

type RegisteredModelCreate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name  *string               `json:"name,omitempty"`
	State *RegisteredModelState `json:"state,omitempty"`
}

RegisteredModelCreate A registered model in model registry. A registered model has ModelVersion children.

func NewRegisteredModelCreate

func NewRegisteredModelCreate() *RegisteredModelCreate

NewRegisteredModelCreate instantiates a new RegisteredModelCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegisteredModelCreateWithDefaults

func NewRegisteredModelCreateWithDefaults() *RegisteredModelCreate

NewRegisteredModelCreateWithDefaults instantiates a new RegisteredModelCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegisteredModelCreate) GetCustomProperties

func (o *RegisteredModelCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetCustomPropertiesOk

func (o *RegisteredModelCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelCreate) GetDescription

func (o *RegisteredModelCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetDescriptionOk

func (o *RegisteredModelCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelCreate) GetExternalId

func (o *RegisteredModelCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetExternalIdOk

func (o *RegisteredModelCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelCreate) GetName

func (o *RegisteredModelCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetNameOk

func (o *RegisteredModelCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelCreate) GetState

GetState returns the State field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetStateOk

func (o *RegisteredModelCreate) GetStateOk() (*RegisteredModelState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelCreate) HasCustomProperties

func (o *RegisteredModelCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasDescription

func (o *RegisteredModelCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasExternalId

func (o *RegisteredModelCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasName

func (o *RegisteredModelCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasState

func (o *RegisteredModelCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (RegisteredModelCreate) MarshalJSON

func (o RegisteredModelCreate) MarshalJSON() ([]byte, error)

func (*RegisteredModelCreate) SetCustomProperties

func (o *RegisteredModelCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*RegisteredModelCreate) SetDescription

func (o *RegisteredModelCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RegisteredModelCreate) SetExternalId

func (o *RegisteredModelCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*RegisteredModelCreate) SetName

func (o *RegisteredModelCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RegisteredModelCreate) SetState

SetState gets a reference to the given RegisteredModelState and assigns it to the State field.

func (RegisteredModelCreate) ToMap

func (o RegisteredModelCreate) ToMap() (map[string]interface{}, error)

type RegisteredModelList

type RegisteredModelList struct {
	// Token to use to retrieve next page of results.
	NextPageToken string `json:"nextPageToken"`
	// Maximum number of resources to return in the result.
	PageSize int32 `json:"pageSize"`
	// Number of items in result list.
	Size int32 `json:"size"`
	//
	Items []RegisteredModel `json:"items,omitempty"`
}

RegisteredModelList List of RegisteredModels.

func NewRegisteredModelList

func NewRegisteredModelList(nextPageToken string, pageSize int32, size int32) *RegisteredModelList

NewRegisteredModelList instantiates a new RegisteredModelList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegisteredModelListWithDefaults

func NewRegisteredModelListWithDefaults() *RegisteredModelList

NewRegisteredModelListWithDefaults instantiates a new RegisteredModelList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegisteredModelList) GetItems

func (o *RegisteredModelList) GetItems() []RegisteredModel

GetItems returns the Items field value if set, zero value otherwise.

func (*RegisteredModelList) GetItemsOk

func (o *RegisteredModelList) GetItemsOk() ([]RegisteredModel, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelList) GetNextPageToken

func (o *RegisteredModelList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*RegisteredModelList) GetNextPageTokenOk

func (o *RegisteredModelList) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*RegisteredModelList) GetPageSize

func (o *RegisteredModelList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*RegisteredModelList) GetPageSizeOk

func (o *RegisteredModelList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*RegisteredModelList) GetSize

func (o *RegisteredModelList) GetSize() int32

GetSize returns the Size field value

func (*RegisteredModelList) GetSizeOk

func (o *RegisteredModelList) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*RegisteredModelList) HasItems

func (o *RegisteredModelList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (RegisteredModelList) MarshalJSON

func (o RegisteredModelList) MarshalJSON() ([]byte, error)

func (*RegisteredModelList) SetItems

func (o *RegisteredModelList) SetItems(v []RegisteredModel)

SetItems gets a reference to the given []RegisteredModel and assigns it to the Items field.

func (*RegisteredModelList) SetNextPageToken

func (o *RegisteredModelList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*RegisteredModelList) SetPageSize

func (o *RegisteredModelList) SetPageSize(v int32)

SetPageSize sets field value

func (*RegisteredModelList) SetSize

func (o *RegisteredModelList) SetSize(v int32)

SetSize sets field value

func (RegisteredModelList) ToMap

func (o RegisteredModelList) ToMap() (map[string]interface{}, error)

type RegisteredModelState

type RegisteredModelState string

RegisteredModelState - LIVE: A state indicating that the `RegisteredModel` exists - ARCHIVED: A state indicating that the `RegisteredModel` has been archived.

const (
	REGISTEREDMODELSTATE_LIVE     RegisteredModelState = "LIVE"
	REGISTEREDMODELSTATE_ARCHIVED RegisteredModelState = "ARCHIVED"
)

List of RegisteredModelState

func NewRegisteredModelStateFromValue

func NewRegisteredModelStateFromValue(v string) (*RegisteredModelState, error)

NewRegisteredModelStateFromValue returns a pointer to a valid RegisteredModelState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RegisteredModelState) IsValid

func (v RegisteredModelState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RegisteredModelState) Ptr

Ptr returns reference to RegisteredModelState value

func (*RegisteredModelState) UnmarshalJSON

func (v *RegisteredModelState) UnmarshalJSON(src []byte) error

type RegisteredModelUpdate

type RegisteredModelUpdate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string               `json:"externalId,omitempty"`
	State      *RegisteredModelState `json:"state,omitempty"`
}

RegisteredModelUpdate A registered model in model registry. A registered model has ModelVersion children.

func NewRegisteredModelUpdate

func NewRegisteredModelUpdate() *RegisteredModelUpdate

NewRegisteredModelUpdate instantiates a new RegisteredModelUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegisteredModelUpdateWithDefaults

func NewRegisteredModelUpdateWithDefaults() *RegisteredModelUpdate

NewRegisteredModelUpdateWithDefaults instantiates a new RegisteredModelUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegisteredModelUpdate) GetCustomProperties

func (o *RegisteredModelUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetCustomPropertiesOk

func (o *RegisteredModelUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelUpdate) GetDescription

func (o *RegisteredModelUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetDescriptionOk

func (o *RegisteredModelUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelUpdate) GetExternalId

func (o *RegisteredModelUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetExternalIdOk

func (o *RegisteredModelUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelUpdate) GetState

GetState returns the State field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetStateOk

func (o *RegisteredModelUpdate) GetStateOk() (*RegisteredModelState, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegisteredModelUpdate) HasCustomProperties

func (o *RegisteredModelUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasDescription

func (o *RegisteredModelUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasExternalId

func (o *RegisteredModelUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasState

func (o *RegisteredModelUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (RegisteredModelUpdate) MarshalJSON

func (o RegisteredModelUpdate) MarshalJSON() ([]byte, error)

func (*RegisteredModelUpdate) SetCustomProperties

func (o *RegisteredModelUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*RegisteredModelUpdate) SetDescription

func (o *RegisteredModelUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RegisteredModelUpdate) SetExternalId

func (o *RegisteredModelUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*RegisteredModelUpdate) SetState

SetState gets a reference to the given RegisteredModelState and assigns it to the State field.

func (RegisteredModelUpdate) ToMap

func (o RegisteredModelUpdate) ToMap() (map[string]interface{}, error)

type ServeModel

type ServeModel struct {
	LastKnownState *ExecutionState `json:"lastKnownState,omitempty"`
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
	// ID of the `ModelVersion` that was served in `InferenceService`.
	ModelVersionId string `json:"modelVersionId"`
}

ServeModel An ML model serving action.

func NewServeModel

func NewServeModel(modelVersionId string) *ServeModel

NewServeModel instantiates a new ServeModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServeModelWithDefaults

func NewServeModelWithDefaults() *ServeModel

NewServeModelWithDefaults instantiates a new ServeModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServeModel) GetCreateTimeSinceEpoch

func (o *ServeModel) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*ServeModel) GetCreateTimeSinceEpochOk

func (o *ServeModel) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModel) GetCustomProperties

func (o *ServeModel) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ServeModel) GetCustomPropertiesOk

func (o *ServeModel) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModel) GetDescription

func (o *ServeModel) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServeModel) GetDescriptionOk

func (o *ServeModel) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModel) GetExternalId

func (o *ServeModel) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ServeModel) GetExternalIdOk

func (o *ServeModel) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModel) GetId

func (o *ServeModel) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ServeModel) GetIdOk

func (o *ServeModel) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModel) GetLastKnownState

func (o *ServeModel) GetLastKnownState() ExecutionState

GetLastKnownState returns the LastKnownState field value if set, zero value otherwise.

func (*ServeModel) GetLastKnownStateOk

func (o *ServeModel) GetLastKnownStateOk() (*ExecutionState, bool)

GetLastKnownStateOk returns a tuple with the LastKnownState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModel) GetLastUpdateTimeSinceEpoch

func (o *ServeModel) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*ServeModel) GetLastUpdateTimeSinceEpochOk

func (o *ServeModel) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModel) GetModelVersionId

func (o *ServeModel) GetModelVersionId() string

GetModelVersionId returns the ModelVersionId field value

func (*ServeModel) GetModelVersionIdOk

func (o *ServeModel) GetModelVersionIdOk() (*string, bool)

GetModelVersionIdOk returns a tuple with the ModelVersionId field value and a boolean to check if the value has been set.

func (*ServeModel) GetName

func (o *ServeModel) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ServeModel) GetNameOk

func (o *ServeModel) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModel) HasCreateTimeSinceEpoch

func (o *ServeModel) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*ServeModel) HasCustomProperties

func (o *ServeModel) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ServeModel) HasDescription

func (o *ServeModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServeModel) HasExternalId

func (o *ServeModel) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ServeModel) HasId

func (o *ServeModel) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServeModel) HasLastKnownState

func (o *ServeModel) HasLastKnownState() bool

HasLastKnownState returns a boolean if a field has been set.

func (*ServeModel) HasLastUpdateTimeSinceEpoch

func (o *ServeModel) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*ServeModel) HasName

func (o *ServeModel) HasName() bool

HasName returns a boolean if a field has been set.

func (ServeModel) MarshalJSON

func (o ServeModel) MarshalJSON() ([]byte, error)

func (*ServeModel) SetCreateTimeSinceEpoch

func (o *ServeModel) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*ServeModel) SetCustomProperties

func (o *ServeModel) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ServeModel) SetDescription

func (o *ServeModel) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServeModel) SetExternalId

func (o *ServeModel) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ServeModel) SetId

func (o *ServeModel) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ServeModel) SetLastKnownState

func (o *ServeModel) SetLastKnownState(v ExecutionState)

SetLastKnownState gets a reference to the given ExecutionState and assigns it to the LastKnownState field.

func (*ServeModel) SetLastUpdateTimeSinceEpoch

func (o *ServeModel) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*ServeModel) SetModelVersionId

func (o *ServeModel) SetModelVersionId(v string)

SetModelVersionId sets field value

func (*ServeModel) SetName

func (o *ServeModel) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ServeModel) ToMap

func (o ServeModel) ToMap() (map[string]interface{}, error)

type ServeModelCreate

type ServeModelCreate struct {
	LastKnownState *ExecutionState `json:"lastKnownState,omitempty"`
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// ID of the `ModelVersion` that was served in `InferenceService`.
	ModelVersionId string `json:"modelVersionId"`
}

ServeModelCreate An ML model serving action.

func NewServeModelCreate

func NewServeModelCreate(modelVersionId string) *ServeModelCreate

NewServeModelCreate instantiates a new ServeModelCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServeModelCreateWithDefaults

func NewServeModelCreateWithDefaults() *ServeModelCreate

NewServeModelCreateWithDefaults instantiates a new ServeModelCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServeModelCreate) GetCustomProperties

func (o *ServeModelCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ServeModelCreate) GetCustomPropertiesOk

func (o *ServeModelCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelCreate) GetDescription

func (o *ServeModelCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServeModelCreate) GetDescriptionOk

func (o *ServeModelCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelCreate) GetExternalId

func (o *ServeModelCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ServeModelCreate) GetExternalIdOk

func (o *ServeModelCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelCreate) GetLastKnownState

func (o *ServeModelCreate) GetLastKnownState() ExecutionState

GetLastKnownState returns the LastKnownState field value if set, zero value otherwise.

func (*ServeModelCreate) GetLastKnownStateOk

func (o *ServeModelCreate) GetLastKnownStateOk() (*ExecutionState, bool)

GetLastKnownStateOk returns a tuple with the LastKnownState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelCreate) GetModelVersionId

func (o *ServeModelCreate) GetModelVersionId() string

GetModelVersionId returns the ModelVersionId field value

func (*ServeModelCreate) GetModelVersionIdOk

func (o *ServeModelCreate) GetModelVersionIdOk() (*string, bool)

GetModelVersionIdOk returns a tuple with the ModelVersionId field value and a boolean to check if the value has been set.

func (*ServeModelCreate) GetName

func (o *ServeModelCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ServeModelCreate) GetNameOk

func (o *ServeModelCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelCreate) HasCustomProperties

func (o *ServeModelCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ServeModelCreate) HasDescription

func (o *ServeModelCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServeModelCreate) HasExternalId

func (o *ServeModelCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ServeModelCreate) HasLastKnownState

func (o *ServeModelCreate) HasLastKnownState() bool

HasLastKnownState returns a boolean if a field has been set.

func (*ServeModelCreate) HasName

func (o *ServeModelCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (ServeModelCreate) MarshalJSON

func (o ServeModelCreate) MarshalJSON() ([]byte, error)

func (*ServeModelCreate) SetCustomProperties

func (o *ServeModelCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ServeModelCreate) SetDescription

func (o *ServeModelCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServeModelCreate) SetExternalId

func (o *ServeModelCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ServeModelCreate) SetLastKnownState

func (o *ServeModelCreate) SetLastKnownState(v ExecutionState)

SetLastKnownState gets a reference to the given ExecutionState and assigns it to the LastKnownState field.

func (*ServeModelCreate) SetModelVersionId

func (o *ServeModelCreate) SetModelVersionId(v string)

SetModelVersionId sets field value

func (*ServeModelCreate) SetName

func (o *ServeModelCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ServeModelCreate) ToMap

func (o ServeModelCreate) ToMap() (map[string]interface{}, error)

type ServeModelList

type ServeModelList struct {
	// Token to use to retrieve next page of results.
	NextPageToken string `json:"nextPageToken"`
	// Maximum number of resources to return in the result.
	PageSize int32 `json:"pageSize"`
	// Number of items in result list.
	Size int32 `json:"size"`
	// Array of `ModelArtifact` entities.
	Items []ServeModel `json:"items,omitempty"`
}

ServeModelList List of ServeModel entities.

func NewServeModelList

func NewServeModelList(nextPageToken string, pageSize int32, size int32) *ServeModelList

NewServeModelList instantiates a new ServeModelList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServeModelListWithDefaults

func NewServeModelListWithDefaults() *ServeModelList

NewServeModelListWithDefaults instantiates a new ServeModelList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServeModelList) GetItems

func (o *ServeModelList) GetItems() []ServeModel

GetItems returns the Items field value if set, zero value otherwise.

func (*ServeModelList) GetItemsOk

func (o *ServeModelList) GetItemsOk() ([]ServeModel, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelList) GetNextPageToken

func (o *ServeModelList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*ServeModelList) GetNextPageTokenOk

func (o *ServeModelList) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*ServeModelList) GetPageSize

func (o *ServeModelList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*ServeModelList) GetPageSizeOk

func (o *ServeModelList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*ServeModelList) GetSize

func (o *ServeModelList) GetSize() int32

GetSize returns the Size field value

func (*ServeModelList) GetSizeOk

func (o *ServeModelList) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*ServeModelList) HasItems

func (o *ServeModelList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ServeModelList) MarshalJSON

func (o ServeModelList) MarshalJSON() ([]byte, error)

func (*ServeModelList) SetItems

func (o *ServeModelList) SetItems(v []ServeModel)

SetItems gets a reference to the given []ServeModel and assigns it to the Items field.

func (*ServeModelList) SetNextPageToken

func (o *ServeModelList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*ServeModelList) SetPageSize

func (o *ServeModelList) SetPageSize(v int32)

SetPageSize sets field value

func (*ServeModelList) SetSize

func (o *ServeModelList) SetSize(v int32)

SetSize sets field value

func (ServeModelList) ToMap

func (o ServeModelList) ToMap() (map[string]interface{}, error)

type ServeModelUpdate

type ServeModelUpdate struct {
	LastKnownState *ExecutionState `json:"lastKnownState,omitempty"`
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
}

ServeModelUpdate An ML model serving action.

func NewServeModelUpdate

func NewServeModelUpdate() *ServeModelUpdate

NewServeModelUpdate instantiates a new ServeModelUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServeModelUpdateWithDefaults

func NewServeModelUpdateWithDefaults() *ServeModelUpdate

NewServeModelUpdateWithDefaults instantiates a new ServeModelUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServeModelUpdate) GetCustomProperties

func (o *ServeModelUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ServeModelUpdate) GetCustomPropertiesOk

func (o *ServeModelUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelUpdate) GetDescription

func (o *ServeModelUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServeModelUpdate) GetDescriptionOk

func (o *ServeModelUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelUpdate) GetExternalId

func (o *ServeModelUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ServeModelUpdate) GetExternalIdOk

func (o *ServeModelUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelUpdate) GetLastKnownState

func (o *ServeModelUpdate) GetLastKnownState() ExecutionState

GetLastKnownState returns the LastKnownState field value if set, zero value otherwise.

func (*ServeModelUpdate) GetLastKnownStateOk

func (o *ServeModelUpdate) GetLastKnownStateOk() (*ExecutionState, bool)

GetLastKnownStateOk returns a tuple with the LastKnownState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServeModelUpdate) HasCustomProperties

func (o *ServeModelUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ServeModelUpdate) HasDescription

func (o *ServeModelUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServeModelUpdate) HasExternalId

func (o *ServeModelUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ServeModelUpdate) HasLastKnownState

func (o *ServeModelUpdate) HasLastKnownState() bool

HasLastKnownState returns a boolean if a field has been set.

func (ServeModelUpdate) MarshalJSON

func (o ServeModelUpdate) MarshalJSON() ([]byte, error)

func (*ServeModelUpdate) SetCustomProperties

func (o *ServeModelUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ServeModelUpdate) SetDescription

func (o *ServeModelUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServeModelUpdate) SetExternalId

func (o *ServeModelUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ServeModelUpdate) SetLastKnownState

func (o *ServeModelUpdate) SetLastKnownState(v ExecutionState)

SetLastKnownState gets a reference to the given ExecutionState and assigns it to the LastKnownState field.

func (ServeModelUpdate) ToMap

func (o ServeModelUpdate) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServingEnvironment

type ServingEnvironment struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// Output only. The unique server generated id of the resource.
	Id *string `json:"id,omitempty"`
	// Output only. Create time of the resource in millisecond since epoch.
	CreateTimeSinceEpoch *string `json:"createTimeSinceEpoch,omitempty"`
	// Output only. Last update time of the resource since epoch in millisecond since epoch.
	LastUpdateTimeSinceEpoch *string `json:"lastUpdateTimeSinceEpoch,omitempty"`
}

ServingEnvironment A Model Serving environment for serving `RegisteredModels`.

func NewServingEnvironment

func NewServingEnvironment() *ServingEnvironment

NewServingEnvironment instantiates a new ServingEnvironment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServingEnvironmentWithDefaults

func NewServingEnvironmentWithDefaults() *ServingEnvironment

NewServingEnvironmentWithDefaults instantiates a new ServingEnvironment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServingEnvironment) GetCreateTimeSinceEpoch

func (o *ServingEnvironment) GetCreateTimeSinceEpoch() string

GetCreateTimeSinceEpoch returns the CreateTimeSinceEpoch field value if set, zero value otherwise.

func (*ServingEnvironment) GetCreateTimeSinceEpochOk

func (o *ServingEnvironment) GetCreateTimeSinceEpochOk() (*string, bool)

GetCreateTimeSinceEpochOk returns a tuple with the CreateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironment) GetCustomProperties

func (o *ServingEnvironment) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ServingEnvironment) GetCustomPropertiesOk

func (o *ServingEnvironment) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironment) GetDescription

func (o *ServingEnvironment) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServingEnvironment) GetDescriptionOk

func (o *ServingEnvironment) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironment) GetExternalId

func (o *ServingEnvironment) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ServingEnvironment) GetExternalIdOk

func (o *ServingEnvironment) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironment) GetId

func (o *ServingEnvironment) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ServingEnvironment) GetIdOk

func (o *ServingEnvironment) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironment) GetLastUpdateTimeSinceEpoch

func (o *ServingEnvironment) GetLastUpdateTimeSinceEpoch() string

GetLastUpdateTimeSinceEpoch returns the LastUpdateTimeSinceEpoch field value if set, zero value otherwise.

func (*ServingEnvironment) GetLastUpdateTimeSinceEpochOk

func (o *ServingEnvironment) GetLastUpdateTimeSinceEpochOk() (*string, bool)

GetLastUpdateTimeSinceEpochOk returns a tuple with the LastUpdateTimeSinceEpoch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironment) GetName

func (o *ServingEnvironment) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ServingEnvironment) GetNameOk

func (o *ServingEnvironment) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironment) HasCreateTimeSinceEpoch

func (o *ServingEnvironment) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*ServingEnvironment) HasCustomProperties

func (o *ServingEnvironment) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ServingEnvironment) HasDescription

func (o *ServingEnvironment) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServingEnvironment) HasExternalId

func (o *ServingEnvironment) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ServingEnvironment) HasId

func (o *ServingEnvironment) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServingEnvironment) HasLastUpdateTimeSinceEpoch

func (o *ServingEnvironment) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*ServingEnvironment) HasName

func (o *ServingEnvironment) HasName() bool

HasName returns a boolean if a field has been set.

func (ServingEnvironment) MarshalJSON

func (o ServingEnvironment) MarshalJSON() ([]byte, error)

func (*ServingEnvironment) SetCreateTimeSinceEpoch

func (o *ServingEnvironment) SetCreateTimeSinceEpoch(v string)

SetCreateTimeSinceEpoch gets a reference to the given string and assigns it to the CreateTimeSinceEpoch field.

func (*ServingEnvironment) SetCustomProperties

func (o *ServingEnvironment) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ServingEnvironment) SetDescription

func (o *ServingEnvironment) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServingEnvironment) SetExternalId

func (o *ServingEnvironment) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ServingEnvironment) SetId

func (o *ServingEnvironment) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ServingEnvironment) SetLastUpdateTimeSinceEpoch

func (o *ServingEnvironment) SetLastUpdateTimeSinceEpoch(v string)

SetLastUpdateTimeSinceEpoch gets a reference to the given string and assigns it to the LastUpdateTimeSinceEpoch field.

func (*ServingEnvironment) SetName

func (o *ServingEnvironment) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ServingEnvironment) ToMap

func (o ServingEnvironment) ToMap() (map[string]interface{}, error)

type ServingEnvironmentCreate

type ServingEnvironmentCreate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
	// The client provided name of the artifact. This field is optional. If set, it must be unique among all the artifacts of the same artifact type within a database instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
}

ServingEnvironmentCreate A Model Serving environment for serving `RegisteredModels`.

func NewServingEnvironmentCreate

func NewServingEnvironmentCreate() *ServingEnvironmentCreate

NewServingEnvironmentCreate instantiates a new ServingEnvironmentCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServingEnvironmentCreateWithDefaults

func NewServingEnvironmentCreateWithDefaults() *ServingEnvironmentCreate

NewServingEnvironmentCreateWithDefaults instantiates a new ServingEnvironmentCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServingEnvironmentCreate) GetCustomProperties

func (o *ServingEnvironmentCreate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ServingEnvironmentCreate) GetCustomPropertiesOk

func (o *ServingEnvironmentCreate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironmentCreate) GetDescription

func (o *ServingEnvironmentCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServingEnvironmentCreate) GetDescriptionOk

func (o *ServingEnvironmentCreate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironmentCreate) GetExternalId

func (o *ServingEnvironmentCreate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ServingEnvironmentCreate) GetExternalIdOk

func (o *ServingEnvironmentCreate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironmentCreate) GetName

func (o *ServingEnvironmentCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ServingEnvironmentCreate) GetNameOk

func (o *ServingEnvironmentCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironmentCreate) HasCustomProperties

func (o *ServingEnvironmentCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ServingEnvironmentCreate) HasDescription

func (o *ServingEnvironmentCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServingEnvironmentCreate) HasExternalId

func (o *ServingEnvironmentCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ServingEnvironmentCreate) HasName

func (o *ServingEnvironmentCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (ServingEnvironmentCreate) MarshalJSON

func (o ServingEnvironmentCreate) MarshalJSON() ([]byte, error)

func (*ServingEnvironmentCreate) SetCustomProperties

func (o *ServingEnvironmentCreate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ServingEnvironmentCreate) SetDescription

func (o *ServingEnvironmentCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServingEnvironmentCreate) SetExternalId

func (o *ServingEnvironmentCreate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (*ServingEnvironmentCreate) SetName

func (o *ServingEnvironmentCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ServingEnvironmentCreate) ToMap

func (o ServingEnvironmentCreate) ToMap() (map[string]interface{}, error)

type ServingEnvironmentList

type ServingEnvironmentList struct {
	// Token to use to retrieve next page of results.
	NextPageToken string `json:"nextPageToken"`
	// Maximum number of resources to return in the result.
	PageSize int32 `json:"pageSize"`
	// Number of items in result list.
	Size int32 `json:"size"`
	//
	Items []ServingEnvironment `json:"items,omitempty"`
}

ServingEnvironmentList List of ServingEnvironments.

func NewServingEnvironmentList

func NewServingEnvironmentList(nextPageToken string, pageSize int32, size int32) *ServingEnvironmentList

NewServingEnvironmentList instantiates a new ServingEnvironmentList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServingEnvironmentListWithDefaults

func NewServingEnvironmentListWithDefaults() *ServingEnvironmentList

NewServingEnvironmentListWithDefaults instantiates a new ServingEnvironmentList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServingEnvironmentList) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ServingEnvironmentList) GetItemsOk

func (o *ServingEnvironmentList) GetItemsOk() ([]ServingEnvironment, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironmentList) GetNextPageToken

func (o *ServingEnvironmentList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*ServingEnvironmentList) GetNextPageTokenOk

func (o *ServingEnvironmentList) GetNextPageTokenOk() (*string, bool)

GetNextPageTokenOk returns a tuple with the NextPageToken field value and a boolean to check if the value has been set.

func (*ServingEnvironmentList) GetPageSize

func (o *ServingEnvironmentList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*ServingEnvironmentList) GetPageSizeOk

func (o *ServingEnvironmentList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value and a boolean to check if the value has been set.

func (*ServingEnvironmentList) GetSize

func (o *ServingEnvironmentList) GetSize() int32

GetSize returns the Size field value

func (*ServingEnvironmentList) GetSizeOk

func (o *ServingEnvironmentList) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*ServingEnvironmentList) HasItems

func (o *ServingEnvironmentList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ServingEnvironmentList) MarshalJSON

func (o ServingEnvironmentList) MarshalJSON() ([]byte, error)

func (*ServingEnvironmentList) SetItems

func (o *ServingEnvironmentList) SetItems(v []ServingEnvironment)

SetItems gets a reference to the given []ServingEnvironment and assigns it to the Items field.

func (*ServingEnvironmentList) SetNextPageToken

func (o *ServingEnvironmentList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*ServingEnvironmentList) SetPageSize

func (o *ServingEnvironmentList) SetPageSize(v int32)

SetPageSize sets field value

func (*ServingEnvironmentList) SetSize

func (o *ServingEnvironmentList) SetSize(v int32)

SetSize sets field value

func (ServingEnvironmentList) ToMap

func (o ServingEnvironmentList) ToMap() (map[string]interface{}, error)

type ServingEnvironmentUpdate

type ServingEnvironmentUpdate struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties *map[string]MetadataValue `json:"customProperties,omitempty"`
	// An optional description about the resource.
	Description *string `json:"description,omitempty"`
	// The external id that come from the clients’ system. This field is optional. If set, it must be unique among all resources within a database instance.
	ExternalId *string `json:"externalId,omitempty"`
}

ServingEnvironmentUpdate A Model Serving environment for serving `RegisteredModels`.

func NewServingEnvironmentUpdate

func NewServingEnvironmentUpdate() *ServingEnvironmentUpdate

NewServingEnvironmentUpdate instantiates a new ServingEnvironmentUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewServingEnvironmentUpdateWithDefaults

func NewServingEnvironmentUpdateWithDefaults() *ServingEnvironmentUpdate

NewServingEnvironmentUpdateWithDefaults instantiates a new ServingEnvironmentUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ServingEnvironmentUpdate) GetCustomProperties

func (o *ServingEnvironmentUpdate) GetCustomProperties() map[string]MetadataValue

GetCustomProperties returns the CustomProperties field value if set, zero value otherwise.

func (*ServingEnvironmentUpdate) GetCustomPropertiesOk

func (o *ServingEnvironmentUpdate) GetCustomPropertiesOk() (*map[string]MetadataValue, bool)

GetCustomPropertiesOk returns a tuple with the CustomProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironmentUpdate) GetDescription

func (o *ServingEnvironmentUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ServingEnvironmentUpdate) GetDescriptionOk

func (o *ServingEnvironmentUpdate) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironmentUpdate) GetExternalId

func (o *ServingEnvironmentUpdate) GetExternalId() string

GetExternalId returns the ExternalId field value if set, zero value otherwise.

func (*ServingEnvironmentUpdate) GetExternalIdOk

func (o *ServingEnvironmentUpdate) GetExternalIdOk() (*string, bool)

GetExternalIdOk returns a tuple with the ExternalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServingEnvironmentUpdate) HasCustomProperties

func (o *ServingEnvironmentUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ServingEnvironmentUpdate) HasDescription

func (o *ServingEnvironmentUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServingEnvironmentUpdate) HasExternalId

func (o *ServingEnvironmentUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (ServingEnvironmentUpdate) MarshalJSON

func (o ServingEnvironmentUpdate) MarshalJSON() ([]byte, error)

func (*ServingEnvironmentUpdate) SetCustomProperties

func (o *ServingEnvironmentUpdate) SetCustomProperties(v map[string]MetadataValue)

SetCustomProperties gets a reference to the given map[string]MetadataValue and assigns it to the CustomProperties field.

func (*ServingEnvironmentUpdate) SetDescription

func (o *ServingEnvironmentUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ServingEnvironmentUpdate) SetExternalId

func (o *ServingEnvironmentUpdate) SetExternalId(v string)

SetExternalId gets a reference to the given string and assigns it to the ExternalId field.

func (ServingEnvironmentUpdate) ToMap

func (o ServingEnvironmentUpdate) ToMap() (map[string]interface{}, error)

type SortOrder

type SortOrder string

SortOrder Supported sort direction for ordering result entities.

const (
	SORTORDER_ASC  SortOrder = "ASC"
	SORTORDER_DESC SortOrder = "DESC"
)

List of SortOrder

func NewSortOrderFromValue

func NewSortOrderFromValue(v string) (*SortOrder, error)

NewSortOrderFromValue returns a pointer to a valid SortOrder for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SortOrder) IsValid

func (v SortOrder) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SortOrder) Ptr

func (v SortOrder) Ptr() *SortOrder

Ptr returns reference to SortOrder value

func (*SortOrder) UnmarshalJSON

func (v *SortOrder) UnmarshalJSON(src []byte) error

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL