openapi

package module
v0.3.4 Latest Latest
Warning

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

Go to latest
Published: Dec 12, 2025 License: Apache-2.0 Imports: 20 Imported by: 10

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
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 AllowedArtifactTypeQueryParamEnumValues = []ArtifactTypeQueryParam{
	"model-artifact",
	"doc-artifact",
	"dataset-artifact",
	"metric",
	"parameter",
}

All allowed values of ArtifactTypeQueryParam enum

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

All allowed values of ExecutionState enum

View Source
var AllowedExperimentRunStateEnumValues = []ExperimentRunState{
	"LIVE",
	"ARCHIVED",
}

All allowed values of ExperimentRunState enum

View Source
var AllowedExperimentRunStatusEnumValues = []ExperimentRunStatus{
	"RUNNING",
	"SCHEDULED",
	"FINISHED",
	"FAILED",
	"KILLED",
}

All allowed values of ExperimentRunStatus enum

View Source
var AllowedExperimentStateEnumValues = []ExperimentState{
	"LIVE",
	"ARCHIVED",
}

All allowed values of ExperimentState 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 AllowedParameterTypeEnumValues = []ParameterType{
	"string",
	"number",
	"boolean",
	"object",
}

All allowed values of ParameterType 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 ApiCreateArtifactRequest

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

func (ApiCreateArtifactRequest) ArtifactCreate

func (r ApiCreateArtifactRequest) ArtifactCreate(artifactCreate ArtifactCreate) ApiCreateArtifactRequest

A new `Artifact` to be created.

func (ApiCreateArtifactRequest) Execute

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 ApiCreateExperimentExperimentRunRequest

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

func (ApiCreateExperimentExperimentRunRequest) Execute

func (ApiCreateExperimentExperimentRunRequest) ExperimentRun

A new `ExperimentRun` to be created.

type ApiCreateExperimentRequest

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

func (ApiCreateExperimentRequest) Execute

func (ApiCreateExperimentRequest) ExperimentCreate

func (r ApiCreateExperimentRequest) ExperimentCreate(experimentCreate ExperimentCreate) ApiCreateExperimentRequest

A new `Experiment` to be created.

type ApiCreateExperimentRunRequest

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

func (ApiCreateExperimentRunRequest) Execute

func (ApiCreateExperimentRunRequest) ExperimentRunCreate

func (r ApiCreateExperimentRunRequest) ExperimentRunCreate(experimentRunCreate ExperimentRunCreate) ApiCreateExperimentRunRequest

A new `ExperimentRun` 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 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 ApiFindArtifactRequest

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

func (ApiFindArtifactRequest) Execute

func (ApiFindArtifactRequest) ExternalId

func (r ApiFindArtifactRequest) ExternalId(externalId string) ApiFindArtifactRequest

External ID of entity to search.

func (ApiFindArtifactRequest) Name

Name of entity to search.

func (ApiFindArtifactRequest) ParentResourceId

func (r ApiFindArtifactRequest) ParentResourceId(parentResourceId string) ApiFindArtifactRequest

ID of the parent resource to use for search.

type ApiFindExperimentRequest

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

func (ApiFindExperimentRequest) Execute

func (ApiFindExperimentRequest) ExternalId

func (r ApiFindExperimentRequest) ExternalId(externalId string) ApiFindExperimentRequest

External ID of entity to search.

func (ApiFindExperimentRequest) Name

Name of entity to search.

type ApiFindExperimentRunRequest

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

func (ApiFindExperimentRunRequest) Execute

func (ApiFindExperimentRunRequest) ExternalId

External ID of entity to search.

func (ApiFindExperimentRunRequest) Name

Name of entity to search.

func (ApiFindExperimentRunRequest) ParentResourceId

func (r ApiFindExperimentRunRequest) ParentResourceId(parentResourceId string) ApiFindExperimentRunRequest

ID of the parent resource to use for search.

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 ApiGetArtifactRequest

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

func (ApiGetArtifactRequest) Execute

func (r ApiGetArtifactRequest) Execute() (*Artifact, *http.Response, error)

type ApiGetArtifactsRequest

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

func (ApiGetArtifactsRequest) ArtifactType

Specifies the artifact type for listing artifacts.

func (ApiGetArtifactsRequest) Execute

func (ApiGetArtifactsRequest) FilterQuery

func (r ApiGetArtifactsRequest) FilterQuery(filterQuery string) ApiGetArtifactsRequest

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

func (ApiGetArtifactsRequest) NextPageToken

func (r ApiGetArtifactsRequest) NextPageToken(nextPageToken string) ApiGetArtifactsRequest

Token to use to retrieve next page of results.

func (ApiGetArtifactsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetArtifactsRequest) PageSize

Number of entities in each page.

func (ApiGetArtifactsRequest) SortOrder

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

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) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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 ApiGetExperimentExperimentRunsRequest

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

func (ApiGetExperimentExperimentRunsRequest) Execute

func (ApiGetExperimentExperimentRunsRequest) ExternalId

External ID of entity to search.

func (ApiGetExperimentExperimentRunsRequest) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

func (ApiGetExperimentExperimentRunsRequest) Name

Name of entity to search.

func (ApiGetExperimentExperimentRunsRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetExperimentExperimentRunsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetExperimentExperimentRunsRequest) PageSize

Number of entities in each page.

func (ApiGetExperimentExperimentRunsRequest) SortOrder

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

type ApiGetExperimentRequest

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

func (ApiGetExperimentRequest) Execute

type ApiGetExperimentRunArtifactsRequest

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

func (ApiGetExperimentRunArtifactsRequest) ArtifactType

Specifies the artifact type for listing artifacts.

func (ApiGetExperimentRunArtifactsRequest) Execute

func (ApiGetExperimentRunArtifactsRequest) ExternalId

External ID of entity to search.

func (ApiGetExperimentRunArtifactsRequest) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

func (ApiGetExperimentRunArtifactsRequest) Name

Name of entity to search.

func (ApiGetExperimentRunArtifactsRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetExperimentRunArtifactsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetExperimentRunArtifactsRequest) PageSize

Number of entities in each page.

func (ApiGetExperimentRunArtifactsRequest) SortOrder

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

type ApiGetExperimentRunMetricHistoryRequest

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

func (ApiGetExperimentRunMetricHistoryRequest) Execute

func (ApiGetExperimentRunMetricHistoryRequest) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

func (ApiGetExperimentRunMetricHistoryRequest) Name

Name of entity to search.

func (ApiGetExperimentRunMetricHistoryRequest) NextPageToken

Token to use to retrieve next page of results.

func (ApiGetExperimentRunMetricHistoryRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetExperimentRunMetricHistoryRequest) PageSize

Number of entities in each page.

func (ApiGetExperimentRunMetricHistoryRequest) SortOrder

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

func (ApiGetExperimentRunMetricHistoryRequest) StepIds

Comma-separated list of step IDs to filter metrics by.

type ApiGetExperimentRunRequest

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

func (ApiGetExperimentRunRequest) Execute

type ApiGetExperimentRunsMetricHistoryRequest added in v0.3.1

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

func (ApiGetExperimentRunsMetricHistoryRequest) Execute added in v0.3.1

func (ApiGetExperimentRunsMetricHistoryRequest) FilterQuery added in v0.3.1

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

func (ApiGetExperimentRunsMetricHistoryRequest) Name added in v0.3.1

Name of entity to search.

func (ApiGetExperimentRunsMetricHistoryRequest) NextPageToken added in v0.3.1

Token to use to retrieve next page of results.

func (ApiGetExperimentRunsMetricHistoryRequest) OrderBy added in v0.3.1

Specifies the order by criteria for listing entities.

func (ApiGetExperimentRunsMetricHistoryRequest) PageSize added in v0.3.1

Number of entities in each page.

func (ApiGetExperimentRunsMetricHistoryRequest) SortOrder added in v0.3.1

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

func (ApiGetExperimentRunsMetricHistoryRequest) StepIds added in v0.3.1

Comma-separated list of step IDs to filter metrics by.

type ApiGetExperimentRunsRequest

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

func (ApiGetExperimentRunsRequest) Execute

func (ApiGetExperimentRunsRequest) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

func (ApiGetExperimentRunsRequest) NextPageToken

func (r ApiGetExperimentRunsRequest) NextPageToken(nextPageToken string) ApiGetExperimentRunsRequest

Token to use to retrieve next page of results.

func (ApiGetExperimentRunsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetExperimentRunsRequest) PageSize

Number of entities in each page.

func (ApiGetExperimentRunsRequest) SortOrder

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

type ApiGetExperimentsRequest

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

func (ApiGetExperimentsRequest) Execute

func (ApiGetExperimentsRequest) FilterQuery

func (r ApiGetExperimentsRequest) FilterQuery(filterQuery string) ApiGetExperimentsRequest

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

func (ApiGetExperimentsRequest) NextPageToken

func (r ApiGetExperimentsRequest) NextPageToken(nextPageToken string) ApiGetExperimentsRequest

Token to use to retrieve next page of results.

func (ApiGetExperimentsRequest) OrderBy

Specifies the order by criteria for listing entities.

func (ApiGetExperimentsRequest) PageSize

Number of entities in each page.

func (ApiGetExperimentsRequest) 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) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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) ArtifactType

Specifies the artifact type for listing artifacts.

func (ApiGetModelVersionArtifactsRequest) Execute

func (ApiGetModelVersionArtifactsRequest) ExternalId

External ID of entity to search.

func (ApiGetModelVersionArtifactsRequest) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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) FilterQuery

A SQL-like query string to filter the list of entities. The query supports rich filtering capabilities with automatic type inference. **Supported Operators:** - Comparison: `=`, `!=`, `<>`, `>`, `<`, `>=`, `<=` - Pattern matching: `LIKE`, `ILIKE` (case-insensitive) - Set membership: `IN` - Logical: `AND`, `OR` - Grouping: `()` for complex expressions **Data Types:** - Strings: `\"value\"` or `'value'` - Numbers: `42`, `3.14`, `1e-5` - Booleans: `true`, `false` (case-insensitive) **Property Access:** - Standard properties: `name`, `id`, `state`, `createTimeSinceEpoch` - Custom properties: Any user-defined property name - Escaped properties: Use backticks for special characters: `` `custom-property` `` - Type-specific access: `property.string_value`, `property.double_value`, `property.int_value`, `property.bool_value` **Examples:** - Basic: `name = \"my-model\"` - Comparison: `accuracy > 0.95` - Pattern: `name LIKE \"%tensorflow%\"` - Complex: `(name = \"model-a\" OR name = \"model-b\") AND state = \"LIVE\"` - Custom property: `framework.string_value = \"pytorch\"` - Escaped property: `` `mlflow.source.type` = \"notebook\" ``

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 ApiUpdateArtifactRequest

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

func (ApiUpdateArtifactRequest) ArtifactUpdate

func (r ApiUpdateArtifactRequest) ArtifactUpdate(artifactUpdate ArtifactUpdate) ApiUpdateArtifactRequest

Updated `Artifact` information.

func (ApiUpdateArtifactRequest) Execute

type ApiUpdateExperimentRequest

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

func (ApiUpdateExperimentRequest) Execute

func (ApiUpdateExperimentRequest) ExperimentUpdate

func (r ApiUpdateExperimentRequest) ExperimentUpdate(experimentUpdate ExperimentUpdate) ApiUpdateExperimentRequest

Updated `Experiment` information.

type ApiUpdateExperimentRunRequest

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

func (ApiUpdateExperimentRunRequest) Execute

func (ApiUpdateExperimentRunRequest) ExperimentRunUpdate

func (r ApiUpdateExperimentRunRequest) ExperimentRunUpdate(experimentRunUpdate ExperimentRunUpdate) ApiUpdateExperimentRunRequest

Updated `ExperimentRun` information.

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 ApiUpsertExperimentRunArtifactRequest

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

func (ApiUpsertExperimentRunArtifactRequest) Artifact

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

func (ApiUpsertExperimentRunArtifactRequest) Execute

type ApiUpsertModelVersionArtifactRequest

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

func (ApiUpsertModelVersionArtifactRequest) Artifact

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

func (ApiUpsertModelVersionArtifactRequest) Execute

type Artifact

type Artifact struct {
	DataSet       *DataSet
	DocArtifact   *DocArtifact
	Metric        *Metric
	ModelArtifact *ModelArtifact
	Parameter     *Parameter
}

Artifact - A metadata Artifact Entity.

func DataSetAsArtifact

func DataSetAsArtifact(v *DataSet) Artifact

DataSetAsArtifact is a convenience function that returns DataSet wrapped in Artifact

func DocArtifactAsArtifact

func DocArtifactAsArtifact(v *DocArtifact) Artifact

DocArtifactAsArtifact is a convenience function that returns DocArtifact wrapped in Artifact

func MetricAsArtifact

func MetricAsArtifact(v *Metric) Artifact

MetricAsArtifact is a convenience function that returns Metric wrapped in Artifact

func ModelArtifactAsArtifact

func ModelArtifactAsArtifact(v *ModelArtifact) Artifact

ModelArtifactAsArtifact is a convenience function that returns ModelArtifact wrapped in Artifact

func NewArtifactWithDefaults

func NewArtifactWithDefaults() *Artifact

func ParameterAsArtifact

func ParameterAsArtifact(v *Parameter) Artifact

ParameterAsArtifact is a convenience function that returns Parameter wrapped in Artifact

func (*Artifact) GetActualInstance

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

Get the actual instance

func (Artifact) GetActualInstanceValue added in v0.3.3

func (obj Artifact) GetActualInstanceValue() interface{}

Get the actual instance value

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 ArtifactCreate

type ArtifactCreate struct {
	DataSetCreate       *DataSetCreate
	DocArtifactCreate   *DocArtifactCreate
	MetricCreate        *MetricCreate
	ModelArtifactCreate *ModelArtifactCreate
	ParameterCreate     *ParameterCreate
}

ArtifactCreate - An Artifact to be created.

func DataSetCreateAsArtifactCreate

func DataSetCreateAsArtifactCreate(v *DataSetCreate) ArtifactCreate

DataSetCreateAsArtifactCreate is a convenience function that returns DataSetCreate wrapped in ArtifactCreate

func DocArtifactCreateAsArtifactCreate

func DocArtifactCreateAsArtifactCreate(v *DocArtifactCreate) ArtifactCreate

DocArtifactCreateAsArtifactCreate is a convenience function that returns DocArtifactCreate wrapped in ArtifactCreate

func MetricCreateAsArtifactCreate

func MetricCreateAsArtifactCreate(v *MetricCreate) ArtifactCreate

MetricCreateAsArtifactCreate is a convenience function that returns MetricCreate wrapped in ArtifactCreate

func ModelArtifactCreateAsArtifactCreate

func ModelArtifactCreateAsArtifactCreate(v *ModelArtifactCreate) ArtifactCreate

ModelArtifactCreateAsArtifactCreate is a convenience function that returns ModelArtifactCreate wrapped in ArtifactCreate

func NewArtifactCreateWithDefaults

func NewArtifactCreateWithDefaults() *ArtifactCreate

func ParameterCreateAsArtifactCreate

func ParameterCreateAsArtifactCreate(v *ParameterCreate) ArtifactCreate

ParameterCreateAsArtifactCreate is a convenience function that returns ParameterCreate wrapped in ArtifactCreate

func (*ArtifactCreate) GetActualInstance

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

Get the actual instance

func (ArtifactCreate) GetActualInstanceValue added in v0.3.3

func (obj ArtifactCreate) GetActualInstanceValue() interface{}

Get the actual instance value

func (ArtifactCreate) MarshalJSON

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

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

func (*ArtifactCreate) UnmarshalJSON

func (dst *ArtifactCreate) 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"`
}

ArtifactList A list of Artifact entities.

func NewArtifactList

func NewArtifactList(nextPageToken string, pageSize int32, size int32, items []Artifact) *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

func (*ArtifactList) GetItemsOk

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

GetItemsOk returns a tuple with the Items field value 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) MarshalJSON

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

func (*ArtifactList) SetItems

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

SetItems sets field value

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 ArtifactTypeQueryParam

type ArtifactTypeQueryParam string

ArtifactTypeQueryParam Supported artifact types for querying.

const (
	ARTIFACTTYPEQUERYPARAM_MODEL_ARTIFACT   ArtifactTypeQueryParam = "model-artifact"
	ARTIFACTTYPEQUERYPARAM_DOC_ARTIFACT     ArtifactTypeQueryParam = "doc-artifact"
	ARTIFACTTYPEQUERYPARAM_DATASET_ARTIFACT ArtifactTypeQueryParam = "dataset-artifact"
	ARTIFACTTYPEQUERYPARAM_METRIC           ArtifactTypeQueryParam = "metric"
	ARTIFACTTYPEQUERYPARAM_PARAMETER        ArtifactTypeQueryParam = "parameter"
)

List of ArtifactTypeQueryParam

func NewArtifactTypeQueryParamFromValue

func NewArtifactTypeQueryParamFromValue(v string) (*ArtifactTypeQueryParam, error)

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

func (ArtifactTypeQueryParam) IsValid

func (v ArtifactTypeQueryParam) IsValid() bool

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

func (ArtifactTypeQueryParam) Ptr

Ptr returns reference to ArtifactTypeQueryParam value

func (*ArtifactTypeQueryParam) UnmarshalJSON

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

type ArtifactUpdate

type ArtifactUpdate struct {
	DataSetUpdate       *DataSetUpdate
	DocArtifactUpdate   *DocArtifactUpdate
	MetricUpdate        *MetricUpdate
	ModelArtifactUpdate *ModelArtifactUpdate
	ParameterUpdate     *ParameterUpdate
}

ArtifactUpdate - An Artifact to be updated.

func DataSetUpdateAsArtifactUpdate

func DataSetUpdateAsArtifactUpdate(v *DataSetUpdate) ArtifactUpdate

DataSetUpdateAsArtifactUpdate is a convenience function that returns DataSetUpdate wrapped in ArtifactUpdate

func DocArtifactUpdateAsArtifactUpdate

func DocArtifactUpdateAsArtifactUpdate(v *DocArtifactUpdate) ArtifactUpdate

DocArtifactUpdateAsArtifactUpdate is a convenience function that returns DocArtifactUpdate wrapped in ArtifactUpdate

func MetricUpdateAsArtifactUpdate

func MetricUpdateAsArtifactUpdate(v *MetricUpdate) ArtifactUpdate

MetricUpdateAsArtifactUpdate is a convenience function that returns MetricUpdate wrapped in ArtifactUpdate

func ModelArtifactUpdateAsArtifactUpdate

func ModelArtifactUpdateAsArtifactUpdate(v *ModelArtifactUpdate) ArtifactUpdate

ModelArtifactUpdateAsArtifactUpdate is a convenience function that returns ModelArtifactUpdate wrapped in ArtifactUpdate

func NewArtifactUpdateWithDefaults

func NewArtifactUpdateWithDefaults() *ArtifactUpdate

func ParameterUpdateAsArtifactUpdate

func ParameterUpdateAsArtifactUpdate(v *ParameterUpdate) ArtifactUpdate

ParameterUpdateAsArtifactUpdate is a convenience function that returns ParameterUpdate wrapped in ArtifactUpdate

func (*ArtifactUpdate) GetActualInstance

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

Get the actual instance

func (ArtifactUpdate) GetActualInstanceValue added in v0.3.3

func (obj ArtifactUpdate) GetActualInstanceValue() interface{}

Get the actual instance value

func (ArtifactUpdate) MarshalJSON

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

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

func (*ArtifactUpdate) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

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 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"`
	// 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"`
	// Optional id of the experiment that produced this artifact.
	ExperimentId *string `json:"experimentId,omitempty"`
	// Optional id of the experiment run that produced this artifact.
	ExperimentRunId *string `json:"experimentRunId,omitempty"`
}

BaseArtifact Base schema for all artifact types with common server generated properties.

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) GetExperimentId

func (o *BaseArtifact) GetExperimentId() string

GetExperimentId returns the ExperimentId field value if set, zero value otherwise.

func (*BaseArtifact) GetExperimentIdOk

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

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

func (*BaseArtifact) GetExperimentRunId

func (o *BaseArtifact) GetExperimentRunId() string

GetExperimentRunId returns the ExperimentRunId field value if set, zero value otherwise.

func (*BaseArtifact) GetExperimentRunIdOk

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

GetExperimentRunIdOk returns a tuple with the ExperimentRunId 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) 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) HasExperimentId

func (o *BaseArtifact) HasExperimentId() bool

HasExperimentId returns a boolean if a field has been set.

func (*BaseArtifact) HasExperimentRunId

func (o *BaseArtifact) HasExperimentRunId() bool

HasExperimentRunId 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) 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) SetExperimentId

func (o *BaseArtifact) SetExperimentId(v string)

SetExperimentId gets a reference to the given string and assigns it to the ExperimentId field.

func (*BaseArtifact) SetExperimentRunId

func (o *BaseArtifact) SetExperimentRunId(v string)

SetExperimentRunId gets a reference to the given string and assigns it to the ExperimentRunId 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) ToMap

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

type BaseModel

type BaseModel struct {
	// Human-readable description of the model.
	Description *string `json:"description,omitempty"`
	// Model documentation in Markdown.
	Readme *string `json:"readme,omitempty"`
	// Maturity level of the model.
	Maturity *string `json:"maturity,omitempty"`
	// List of supported languages (https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes).
	Language []string `json:"language,omitempty"`
	// List of tasks the model is designed for.
	Tasks []string `json:"tasks,omitempty"`
	// Name of the organization or entity that provides the model.
	Provider *string `json:"provider,omitempty"`
	Logo *string `json:"logo,omitempty"`
	// Short name of the model's license.
	License *string `json:"license,omitempty"`
	// URL to the license text.
	LicenseLink *string `json:"licenseLink,omitempty"`
	LibraryName *string `json:"libraryName,omitempty"`
	// User provided custom properties which are not defined by its type.
	CustomProperties map[string]MetadataValue `json:"customProperties,omitempty"`
}

BaseModel struct for BaseModel

func NewBaseModel

func NewBaseModel() *BaseModel

NewBaseModel instantiates a new BaseModel 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 NewBaseModelWithDefaults

func NewBaseModelWithDefaults() *BaseModel

NewBaseModelWithDefaults instantiates a new BaseModel 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 (*BaseModel) GetCustomProperties

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

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

func (*BaseModel) GetCustomPropertiesOk

func (o *BaseModel) 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 (*BaseModel) GetDescription

func (o *BaseModel) GetDescription() string

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

func (*BaseModel) GetDescriptionOk

func (o *BaseModel) 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 (*BaseModel) GetLanguage

func (o *BaseModel) GetLanguage() []string

GetLanguage returns the Language field value if set, zero value otherwise.

func (*BaseModel) GetLanguageOk

func (o *BaseModel) GetLanguageOk() ([]string, bool)

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

func (*BaseModel) GetLibraryName

func (o *BaseModel) GetLibraryName() string

GetLibraryName returns the LibraryName field value if set, zero value otherwise.

func (*BaseModel) GetLibraryNameOk

func (o *BaseModel) GetLibraryNameOk() (*string, bool)

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

func (*BaseModel) GetLicense

func (o *BaseModel) GetLicense() string

GetLicense returns the License field value if set, zero value otherwise.

func (o *BaseModel) GetLicenseLink() string

GetLicenseLink returns the LicenseLink field value if set, zero value otherwise.

func (*BaseModel) GetLicenseLinkOk

func (o *BaseModel) GetLicenseLinkOk() (*string, bool)

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

func (*BaseModel) GetLicenseOk

func (o *BaseModel) GetLicenseOk() (*string, bool)

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

func (o *BaseModel) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*BaseModel) GetLogoOk

func (o *BaseModel) GetLogoOk() (*string, bool)

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

func (*BaseModel) GetMaturity

func (o *BaseModel) GetMaturity() string

GetMaturity returns the Maturity field value if set, zero value otherwise.

func (*BaseModel) GetMaturityOk

func (o *BaseModel) GetMaturityOk() (*string, bool)

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

func (*BaseModel) GetProvider

func (o *BaseModel) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*BaseModel) GetProviderOk

func (o *BaseModel) GetProviderOk() (*string, bool)

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

func (*BaseModel) GetReadme

func (o *BaseModel) GetReadme() string

GetReadme returns the Readme field value if set, zero value otherwise.

func (*BaseModel) GetReadmeOk

func (o *BaseModel) GetReadmeOk() (*string, bool)

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

func (*BaseModel) GetTasks

func (o *BaseModel) GetTasks() []string

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*BaseModel) GetTasksOk

func (o *BaseModel) GetTasksOk() ([]string, bool)

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

func (*BaseModel) HasCustomProperties

func (o *BaseModel) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*BaseModel) HasDescription

func (o *BaseModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*BaseModel) HasLanguage

func (o *BaseModel) HasLanguage() bool

HasLanguage returns a boolean if a field has been set.

func (*BaseModel) HasLibraryName

func (o *BaseModel) HasLibraryName() bool

HasLibraryName returns a boolean if a field has been set.

func (*BaseModel) HasLicense

func (o *BaseModel) HasLicense() bool

HasLicense returns a boolean if a field has been set.

func (o *BaseModel) HasLicenseLink() bool

HasLicenseLink returns a boolean if a field has been set.

func (o *BaseModel) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*BaseModel) HasMaturity

func (o *BaseModel) HasMaturity() bool

HasMaturity returns a boolean if a field has been set.

func (*BaseModel) HasProvider

func (o *BaseModel) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*BaseModel) HasReadme

func (o *BaseModel) HasReadme() bool

HasReadme returns a boolean if a field has been set.

func (*BaseModel) HasTasks

func (o *BaseModel) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (BaseModel) MarshalJSON

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

func (*BaseModel) SetCustomProperties

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

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

func (*BaseModel) SetDescription

func (o *BaseModel) SetDescription(v string)

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

func (*BaseModel) SetLanguage

func (o *BaseModel) SetLanguage(v []string)

SetLanguage gets a reference to the given []string and assigns it to the Language field.

func (*BaseModel) SetLibraryName

func (o *BaseModel) SetLibraryName(v string)

SetLibraryName gets a reference to the given string and assigns it to the LibraryName field.

func (*BaseModel) SetLicense

func (o *BaseModel) SetLicense(v string)

SetLicense gets a reference to the given string and assigns it to the License field.

func (o *BaseModel) SetLicenseLink(v string)

SetLicenseLink gets a reference to the given string and assigns it to the LicenseLink field.

func (o *BaseModel) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*BaseModel) SetMaturity

func (o *BaseModel) SetMaturity(v string)

SetMaturity gets a reference to the given string and assigns it to the Maturity field.

func (*BaseModel) SetProvider

func (o *BaseModel) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*BaseModel) SetReadme

func (o *BaseModel) SetReadme(v string)

SetReadme gets a reference to the given string and assigns it to the Readme field.

func (*BaseModel) SetTasks

func (o *BaseModel) SetTasks(v []string)

SetTasks gets a reference to the given []string and assigns it to the Tasks field.

func (BaseModel) ToMap

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

type BaseResource

type BaseResource struct {
	// 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"`
	// 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"`
	// The unique server generated id of the resource.
	Id *string `json:"id,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 BaseResourceDates

type BaseResourceDates struct {
	// 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"`
}

BaseResourceDates Common timestamp fields for resources

func NewBaseResourceDates

func NewBaseResourceDates() *BaseResourceDates

NewBaseResourceDates instantiates a new BaseResourceDates 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 NewBaseResourceDatesWithDefaults

func NewBaseResourceDatesWithDefaults() *BaseResourceDates

NewBaseResourceDatesWithDefaults instantiates a new BaseResourceDates 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 (*BaseResourceDates) GetCreateTimeSinceEpoch

func (o *BaseResourceDates) GetCreateTimeSinceEpoch() string

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

func (*BaseResourceDates) GetCreateTimeSinceEpochOk

func (o *BaseResourceDates) 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 (*BaseResourceDates) GetLastUpdateTimeSinceEpoch

func (o *BaseResourceDates) GetLastUpdateTimeSinceEpoch() string

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

func (*BaseResourceDates) GetLastUpdateTimeSinceEpochOk

func (o *BaseResourceDates) 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 (*BaseResourceDates) HasCreateTimeSinceEpoch

func (o *BaseResourceDates) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*BaseResourceDates) HasLastUpdateTimeSinceEpoch

func (o *BaseResourceDates) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (BaseResourceDates) MarshalJSON

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

func (*BaseResourceDates) SetCreateTimeSinceEpoch

func (o *BaseResourceDates) SetCreateTimeSinceEpoch(v string)

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

func (*BaseResourceDates) SetLastUpdateTimeSinceEpoch

func (o *BaseResourceDates) SetLastUpdateTimeSinceEpoch(v string)

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

func (BaseResourceDates) ToMap

func (o BaseResourceDates) 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 DataSet

type DataSet 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"`
	// 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"`
	// Optional id of the experiment that produced this artifact.
	ExperimentId *string `json:"experimentId,omitempty"`
	// Optional id of the experiment run that produced this artifact.
	ExperimentRunId *string `json:"experimentRunId,omitempty"`
	ArtifactType    *string `json:"artifactType,omitempty"`
	// A unique hash or identifier for the dataset content.
	Digest *string `json:"digest,omitempty"`
	// The type of data source (e.g., \"s3\", \"hdfs\", \"local\", \"database\").
	SourceType *string `json:"sourceType,omitempty"`
	// The location or connection string for the dataset source.
	Source *string `json:"source,omitempty"`
	// JSON schema or description of the dataset structure.
	Schema *string `json:"schema,omitempty"`
	// Statistical profile or summary of the dataset.
	Profile *string `json:"profile,omitempty"`
	// The uniform resource identifier of the physical dataset. May be empty if there is no physical dataset.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
}

DataSet A dataset artifact representing training or test data.

func NewDataSet

func NewDataSet() *DataSet

NewDataSet instantiates a new DataSet 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 NewDataSetWithDefaults

func NewDataSetWithDefaults() *DataSet

NewDataSetWithDefaults instantiates a new DataSet 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 (*DataSet) GetArtifactType

func (o *DataSet) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*DataSet) GetArtifactTypeOk

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

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

func (*DataSet) GetCreateTimeSinceEpoch

func (o *DataSet) GetCreateTimeSinceEpoch() string

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

func (*DataSet) GetCreateTimeSinceEpochOk

func (o *DataSet) 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 (*DataSet) GetCustomProperties

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

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

func (*DataSet) GetCustomPropertiesOk

func (o *DataSet) 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 (*DataSet) GetDescription

func (o *DataSet) GetDescription() string

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

func (*DataSet) GetDescriptionOk

func (o *DataSet) 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 (*DataSet) GetDigest

func (o *DataSet) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*DataSet) GetDigestOk

func (o *DataSet) GetDigestOk() (*string, bool)

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

func (*DataSet) GetExperimentId

func (o *DataSet) GetExperimentId() string

GetExperimentId returns the ExperimentId field value if set, zero value otherwise.

func (*DataSet) GetExperimentIdOk

func (o *DataSet) GetExperimentIdOk() (*string, bool)

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

func (*DataSet) GetExperimentRunId

func (o *DataSet) GetExperimentRunId() string

GetExperimentRunId returns the ExperimentRunId field value if set, zero value otherwise.

func (*DataSet) GetExperimentRunIdOk

func (o *DataSet) GetExperimentRunIdOk() (*string, bool)

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

func (*DataSet) GetExternalId

func (o *DataSet) GetExternalId() string

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

func (*DataSet) GetExternalIdOk

func (o *DataSet) 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 (*DataSet) GetId

func (o *DataSet) GetId() string

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

func (*DataSet) GetIdOk

func (o *DataSet) 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 (*DataSet) GetLastUpdateTimeSinceEpoch

func (o *DataSet) GetLastUpdateTimeSinceEpoch() string

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

func (*DataSet) GetLastUpdateTimeSinceEpochOk

func (o *DataSet) 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 (*DataSet) GetName

func (o *DataSet) GetName() string

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

func (*DataSet) GetNameOk

func (o *DataSet) 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 (*DataSet) GetProfile

func (o *DataSet) GetProfile() string

GetProfile returns the Profile field value if set, zero value otherwise.

func (*DataSet) GetProfileOk

func (o *DataSet) GetProfileOk() (*string, bool)

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

func (*DataSet) GetSchema

func (o *DataSet) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*DataSet) GetSchemaOk

func (o *DataSet) GetSchemaOk() (*string, bool)

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

func (*DataSet) GetSource

func (o *DataSet) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*DataSet) GetSourceOk

func (o *DataSet) GetSourceOk() (*string, bool)

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

func (*DataSet) GetSourceType

func (o *DataSet) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*DataSet) GetSourceTypeOk

func (o *DataSet) GetSourceTypeOk() (*string, bool)

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

func (*DataSet) GetState

func (o *DataSet) GetState() ArtifactState

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

func (*DataSet) GetStateOk

func (o *DataSet) 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 (*DataSet) GetUri

func (o *DataSet) GetUri() string

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

func (*DataSet) GetUriOk

func (o *DataSet) 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 (*DataSet) HasArtifactType

func (o *DataSet) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*DataSet) HasCreateTimeSinceEpoch

func (o *DataSet) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*DataSet) HasCustomProperties

func (o *DataSet) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*DataSet) HasDescription

func (o *DataSet) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DataSet) HasDigest

func (o *DataSet) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*DataSet) HasExperimentId

func (o *DataSet) HasExperimentId() bool

HasExperimentId returns a boolean if a field has been set.

func (*DataSet) HasExperimentRunId

func (o *DataSet) HasExperimentRunId() bool

HasExperimentRunId returns a boolean if a field has been set.

func (*DataSet) HasExternalId

func (o *DataSet) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*DataSet) HasId

func (o *DataSet) HasId() bool

HasId returns a boolean if a field has been set.

func (*DataSet) HasLastUpdateTimeSinceEpoch

func (o *DataSet) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*DataSet) HasName

func (o *DataSet) HasName() bool

HasName returns a boolean if a field has been set.

func (*DataSet) HasProfile

func (o *DataSet) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*DataSet) HasSchema

func (o *DataSet) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*DataSet) HasSource

func (o *DataSet) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*DataSet) HasSourceType

func (o *DataSet) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (*DataSet) HasState

func (o *DataSet) HasState() bool

HasState returns a boolean if a field has been set.

func (*DataSet) HasUri

func (o *DataSet) HasUri() bool

HasUri returns a boolean if a field has been set.

func (DataSet) MarshalJSON

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

func (*DataSet) SetArtifactType

func (o *DataSet) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*DataSet) SetCreateTimeSinceEpoch

func (o *DataSet) SetCreateTimeSinceEpoch(v string)

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

func (*DataSet) SetCustomProperties

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

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

func (*DataSet) SetDescription

func (o *DataSet) SetDescription(v string)

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

func (*DataSet) SetDigest

func (o *DataSet) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*DataSet) SetExperimentId

func (o *DataSet) SetExperimentId(v string)

SetExperimentId gets a reference to the given string and assigns it to the ExperimentId field.

func (*DataSet) SetExperimentRunId

func (o *DataSet) SetExperimentRunId(v string)

SetExperimentRunId gets a reference to the given string and assigns it to the ExperimentRunId field.

func (*DataSet) SetExternalId

func (o *DataSet) SetExternalId(v string)

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

func (*DataSet) SetId

func (o *DataSet) SetId(v string)

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

func (*DataSet) SetLastUpdateTimeSinceEpoch

func (o *DataSet) SetLastUpdateTimeSinceEpoch(v string)

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

func (*DataSet) SetName

func (o *DataSet) SetName(v string)

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

func (*DataSet) SetProfile

func (o *DataSet) SetProfile(v string)

SetProfile gets a reference to the given string and assigns it to the Profile field.

func (*DataSet) SetSchema

func (o *DataSet) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*DataSet) SetSource

func (o *DataSet) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*DataSet) SetSourceType

func (o *DataSet) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (*DataSet) SetState

func (o *DataSet) SetState(v ArtifactState)

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

func (*DataSet) SetUri

func (o *DataSet) SetUri(v string)

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

func (DataSet) ToMap

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

type DataSetCreate

type DataSetCreate 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"`
	ArtifactType *string `json:"artifactType,omitempty"`
	// A unique hash or identifier for the dataset content.
	Digest *string `json:"digest,omitempty"`
	// The type of data source (e.g., \"s3\", \"hdfs\", \"local\", \"database\").
	SourceType *string `json:"sourceType,omitempty"`
	// The location or connection string for the dataset source.
	Source *string `json:"source,omitempty"`
	// JSON schema or description of the dataset structure.
	Schema *string `json:"schema,omitempty"`
	// Statistical profile or summary of the dataset.
	Profile *string `json:"profile,omitempty"`
	// The uniform resource identifier of the physical dataset. May be empty if there is no physical dataset.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
}

DataSetCreate A dataset artifact to be created.

func NewDataSetCreate

func NewDataSetCreate() *DataSetCreate

NewDataSetCreate instantiates a new DataSetCreate 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 NewDataSetCreateWithDefaults

func NewDataSetCreateWithDefaults() *DataSetCreate

NewDataSetCreateWithDefaults instantiates a new DataSetCreate 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 (*DataSetCreate) GetArtifactType

func (o *DataSetCreate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*DataSetCreate) GetArtifactTypeOk

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

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

func (*DataSetCreate) GetCustomProperties

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

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

func (*DataSetCreate) GetCustomPropertiesOk

func (o *DataSetCreate) 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 (*DataSetCreate) GetDescription

func (o *DataSetCreate) GetDescription() string

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

func (*DataSetCreate) GetDescriptionOk

func (o *DataSetCreate) 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 (*DataSetCreate) GetDigest

func (o *DataSetCreate) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*DataSetCreate) GetDigestOk

func (o *DataSetCreate) GetDigestOk() (*string, bool)

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

func (*DataSetCreate) GetExternalId

func (o *DataSetCreate) GetExternalId() string

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

func (*DataSetCreate) GetExternalIdOk

func (o *DataSetCreate) 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 (*DataSetCreate) GetName

func (o *DataSetCreate) GetName() string

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

func (*DataSetCreate) GetNameOk

func (o *DataSetCreate) 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 (*DataSetCreate) GetProfile

func (o *DataSetCreate) GetProfile() string

GetProfile returns the Profile field value if set, zero value otherwise.

func (*DataSetCreate) GetProfileOk

func (o *DataSetCreate) GetProfileOk() (*string, bool)

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

func (*DataSetCreate) GetSchema

func (o *DataSetCreate) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*DataSetCreate) GetSchemaOk

func (o *DataSetCreate) GetSchemaOk() (*string, bool)

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

func (*DataSetCreate) GetSource

func (o *DataSetCreate) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*DataSetCreate) GetSourceOk

func (o *DataSetCreate) GetSourceOk() (*string, bool)

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

func (*DataSetCreate) GetSourceType

func (o *DataSetCreate) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*DataSetCreate) GetSourceTypeOk

func (o *DataSetCreate) GetSourceTypeOk() (*string, bool)

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

func (*DataSetCreate) GetState

func (o *DataSetCreate) GetState() ArtifactState

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

func (*DataSetCreate) GetStateOk

func (o *DataSetCreate) 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 (*DataSetCreate) GetUri

func (o *DataSetCreate) GetUri() string

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

func (*DataSetCreate) GetUriOk

func (o *DataSetCreate) 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 (*DataSetCreate) HasArtifactType

func (o *DataSetCreate) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*DataSetCreate) HasCustomProperties

func (o *DataSetCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*DataSetCreate) HasDescription

func (o *DataSetCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DataSetCreate) HasDigest

func (o *DataSetCreate) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*DataSetCreate) HasExternalId

func (o *DataSetCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*DataSetCreate) HasName

func (o *DataSetCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*DataSetCreate) HasProfile

func (o *DataSetCreate) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*DataSetCreate) HasSchema

func (o *DataSetCreate) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*DataSetCreate) HasSource

func (o *DataSetCreate) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*DataSetCreate) HasSourceType

func (o *DataSetCreate) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (*DataSetCreate) HasState

func (o *DataSetCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (*DataSetCreate) HasUri

func (o *DataSetCreate) HasUri() bool

HasUri returns a boolean if a field has been set.

func (DataSetCreate) MarshalJSON

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

func (*DataSetCreate) SetArtifactType

func (o *DataSetCreate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*DataSetCreate) SetCustomProperties

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

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

func (*DataSetCreate) SetDescription

func (o *DataSetCreate) SetDescription(v string)

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

func (*DataSetCreate) SetDigest

func (o *DataSetCreate) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*DataSetCreate) SetExternalId

func (o *DataSetCreate) SetExternalId(v string)

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

func (*DataSetCreate) SetName

func (o *DataSetCreate) SetName(v string)

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

func (*DataSetCreate) SetProfile

func (o *DataSetCreate) SetProfile(v string)

SetProfile gets a reference to the given string and assigns it to the Profile field.

func (*DataSetCreate) SetSchema

func (o *DataSetCreate) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*DataSetCreate) SetSource

func (o *DataSetCreate) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*DataSetCreate) SetSourceType

func (o *DataSetCreate) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (*DataSetCreate) SetState

func (o *DataSetCreate) SetState(v ArtifactState)

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

func (*DataSetCreate) SetUri

func (o *DataSetCreate) SetUri(v string)

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

func (DataSetCreate) ToMap

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

type DataSetList

type DataSetList 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 []DataSet `json:"items"`
}

DataSetList List of DataSets.

func NewDataSetList

func NewDataSetList(nextPageToken string, pageSize int32, size int32, items []DataSet) *DataSetList

NewDataSetList instantiates a new DataSetList 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 NewDataSetListWithDefaults

func NewDataSetListWithDefaults() *DataSetList

NewDataSetListWithDefaults instantiates a new DataSetList 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 (*DataSetList) GetItems

func (o *DataSetList) GetItems() []DataSet

GetItems returns the Items field value

func (*DataSetList) GetItemsOk

func (o *DataSetList) GetItemsOk() ([]DataSet, bool)

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

func (*DataSetList) GetNextPageToken

func (o *DataSetList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*DataSetList) GetNextPageTokenOk

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

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

func (*DataSetList) GetPageSize

func (o *DataSetList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*DataSetList) GetPageSizeOk

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

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

func (*DataSetList) GetSize

func (o *DataSetList) GetSize() int32

GetSize returns the Size field value

func (*DataSetList) GetSizeOk

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

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

func (DataSetList) MarshalJSON

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

func (*DataSetList) SetItems

func (o *DataSetList) SetItems(v []DataSet)

SetItems sets field value

func (*DataSetList) SetNextPageToken

func (o *DataSetList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*DataSetList) SetPageSize

func (o *DataSetList) SetPageSize(v int32)

SetPageSize sets field value

func (*DataSetList) SetSize

func (o *DataSetList) SetSize(v int32)

SetSize sets field value

func (DataSetList) ToMap

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

type DataSetUpdate

type DataSetUpdate 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"`
	ArtifactType *string `json:"artifactType,omitempty"`
	// A unique hash or identifier for the dataset content.
	Digest *string `json:"digest,omitempty"`
	// The type of data source (e.g., \"s3\", \"hdfs\", \"local\", \"database\").
	SourceType *string `json:"sourceType,omitempty"`
	// The location or connection string for the dataset source.
	Source *string `json:"source,omitempty"`
	// JSON schema or description of the dataset structure.
	Schema *string `json:"schema,omitempty"`
	// Statistical profile or summary of the dataset.
	Profile *string `json:"profile,omitempty"`
	// The uniform resource identifier of the physical dataset. May be empty if there is no physical dataset.
	Uri   *string        `json:"uri,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
}

DataSetUpdate A dataset artifact to be updated.

func NewDataSetUpdate

func NewDataSetUpdate() *DataSetUpdate

NewDataSetUpdate instantiates a new DataSetUpdate 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 NewDataSetUpdateWithDefaults

func NewDataSetUpdateWithDefaults() *DataSetUpdate

NewDataSetUpdateWithDefaults instantiates a new DataSetUpdate 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 (*DataSetUpdate) GetArtifactType

func (o *DataSetUpdate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*DataSetUpdate) GetArtifactTypeOk

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

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

func (*DataSetUpdate) GetCustomProperties

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

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

func (*DataSetUpdate) GetCustomPropertiesOk

func (o *DataSetUpdate) 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 (*DataSetUpdate) GetDescription

func (o *DataSetUpdate) GetDescription() string

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

func (*DataSetUpdate) GetDescriptionOk

func (o *DataSetUpdate) 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 (*DataSetUpdate) GetDigest

func (o *DataSetUpdate) GetDigest() string

GetDigest returns the Digest field value if set, zero value otherwise.

func (*DataSetUpdate) GetDigestOk

func (o *DataSetUpdate) GetDigestOk() (*string, bool)

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

func (*DataSetUpdate) GetExternalId

func (o *DataSetUpdate) GetExternalId() string

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

func (*DataSetUpdate) GetExternalIdOk

func (o *DataSetUpdate) 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 (*DataSetUpdate) GetProfile

func (o *DataSetUpdate) GetProfile() string

GetProfile returns the Profile field value if set, zero value otherwise.

func (*DataSetUpdate) GetProfileOk

func (o *DataSetUpdate) GetProfileOk() (*string, bool)

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

func (*DataSetUpdate) GetSchema

func (o *DataSetUpdate) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*DataSetUpdate) GetSchemaOk

func (o *DataSetUpdate) GetSchemaOk() (*string, bool)

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

func (*DataSetUpdate) GetSource

func (o *DataSetUpdate) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*DataSetUpdate) GetSourceOk

func (o *DataSetUpdate) GetSourceOk() (*string, bool)

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

func (*DataSetUpdate) GetSourceType

func (o *DataSetUpdate) GetSourceType() string

GetSourceType returns the SourceType field value if set, zero value otherwise.

func (*DataSetUpdate) GetSourceTypeOk

func (o *DataSetUpdate) GetSourceTypeOk() (*string, bool)

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

func (*DataSetUpdate) GetState

func (o *DataSetUpdate) GetState() ArtifactState

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

func (*DataSetUpdate) GetStateOk

func (o *DataSetUpdate) 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 (*DataSetUpdate) GetUri

func (o *DataSetUpdate) GetUri() string

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

func (*DataSetUpdate) GetUriOk

func (o *DataSetUpdate) 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 (*DataSetUpdate) HasArtifactType

func (o *DataSetUpdate) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*DataSetUpdate) HasCustomProperties

func (o *DataSetUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*DataSetUpdate) HasDescription

func (o *DataSetUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DataSetUpdate) HasDigest

func (o *DataSetUpdate) HasDigest() bool

HasDigest returns a boolean if a field has been set.

func (*DataSetUpdate) HasExternalId

func (o *DataSetUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*DataSetUpdate) HasProfile

func (o *DataSetUpdate) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*DataSetUpdate) HasSchema

func (o *DataSetUpdate) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*DataSetUpdate) HasSource

func (o *DataSetUpdate) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*DataSetUpdate) HasSourceType

func (o *DataSetUpdate) HasSourceType() bool

HasSourceType returns a boolean if a field has been set.

func (*DataSetUpdate) HasState

func (o *DataSetUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (*DataSetUpdate) HasUri

func (o *DataSetUpdate) HasUri() bool

HasUri returns a boolean if a field has been set.

func (DataSetUpdate) MarshalJSON

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

func (*DataSetUpdate) SetArtifactType

func (o *DataSetUpdate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*DataSetUpdate) SetCustomProperties

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

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

func (*DataSetUpdate) SetDescription

func (o *DataSetUpdate) SetDescription(v string)

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

func (*DataSetUpdate) SetDigest

func (o *DataSetUpdate) SetDigest(v string)

SetDigest gets a reference to the given string and assigns it to the Digest field.

func (*DataSetUpdate) SetExternalId

func (o *DataSetUpdate) SetExternalId(v string)

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

func (*DataSetUpdate) SetProfile

func (o *DataSetUpdate) SetProfile(v string)

SetProfile gets a reference to the given string and assigns it to the Profile field.

func (*DataSetUpdate) SetSchema

func (o *DataSetUpdate) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*DataSetUpdate) SetSource

func (o *DataSetUpdate) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*DataSetUpdate) SetSourceType

func (o *DataSetUpdate) SetSourceType(v string)

SetSourceType gets a reference to the given string and assigns it to the SourceType field.

func (*DataSetUpdate) SetState

func (o *DataSetUpdate) SetState(v ArtifactState)

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

func (*DataSetUpdate) SetUri

func (o *DataSetUpdate) SetUri(v string)

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

func (DataSetUpdate) ToMap

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

type DocArtifact

type DocArtifact 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"`
	// 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"`
	// Optional id of the experiment that produced this artifact.
	ExperimentId *string `json:"experimentId,omitempty"`
	// Optional id of the experiment run that produced this artifact.
	ExperimentRunId *string `json:"experimentRunId,omitempty"`
	ArtifactType    *string `json:"artifactType,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"`
}

DocArtifact A document.

func NewDocArtifact

func NewDocArtifact() *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 if set, zero value otherwise.

func (*DocArtifact) GetArtifactTypeOk

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

GetArtifactTypeOk returns a tuple with the ArtifactType field value if set, nil otherwise 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) GetExperimentId

func (o *DocArtifact) GetExperimentId() string

GetExperimentId returns the ExperimentId field value if set, zero value otherwise.

func (*DocArtifact) GetExperimentIdOk

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

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

func (*DocArtifact) GetExperimentRunId

func (o *DocArtifact) GetExperimentRunId() string

GetExperimentRunId returns the ExperimentRunId field value if set, zero value otherwise.

func (*DocArtifact) GetExperimentRunIdOk

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

GetExperimentRunIdOk returns a tuple with the ExperimentRunId 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) HasArtifactType

func (o *DocArtifact) HasArtifactType() bool

HasArtifactType returns a boolean if a field 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) HasExperimentId

func (o *DocArtifact) HasExperimentId() bool

HasExperimentId returns a boolean if a field has been set.

func (*DocArtifact) HasExperimentRunId

func (o *DocArtifact) HasExperimentRunId() bool

HasExperimentRunId 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 gets a reference to the given string and assigns it to the ArtifactType field.

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) SetExperimentId

func (o *DocArtifact) SetExperimentId(v string)

SetExperimentId gets a reference to the given string and assigns it to the ExperimentId field.

func (*DocArtifact) SetExperimentRunId

func (o *DocArtifact) SetExperimentRunId(v string)

SetExperimentRunId gets a reference to the given string and assigns it to the ExperimentRunId 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 DocArtifactCreate

type DocArtifactCreate 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"`
	ArtifactType *string `json:"artifactType,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"`
}

DocArtifactCreate A document artifact to be created.

func NewDocArtifactCreate

func NewDocArtifactCreate() *DocArtifactCreate

NewDocArtifactCreate instantiates a new DocArtifactCreate 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 NewDocArtifactCreateWithDefaults

func NewDocArtifactCreateWithDefaults() *DocArtifactCreate

NewDocArtifactCreateWithDefaults instantiates a new DocArtifactCreate 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 (*DocArtifactCreate) GetArtifactType

func (o *DocArtifactCreate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*DocArtifactCreate) GetArtifactTypeOk

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

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

func (*DocArtifactCreate) GetCustomProperties

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

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

func (*DocArtifactCreate) GetCustomPropertiesOk

func (o *DocArtifactCreate) 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 (*DocArtifactCreate) GetDescription

func (o *DocArtifactCreate) GetDescription() string

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

func (*DocArtifactCreate) GetDescriptionOk

func (o *DocArtifactCreate) 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 (*DocArtifactCreate) GetExternalId

func (o *DocArtifactCreate) GetExternalId() string

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

func (*DocArtifactCreate) GetExternalIdOk

func (o *DocArtifactCreate) 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 (*DocArtifactCreate) GetName

func (o *DocArtifactCreate) GetName() string

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

func (*DocArtifactCreate) GetNameOk

func (o *DocArtifactCreate) 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 (*DocArtifactCreate) GetState

func (o *DocArtifactCreate) GetState() ArtifactState

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

func (*DocArtifactCreate) GetStateOk

func (o *DocArtifactCreate) 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 (*DocArtifactCreate) GetUri

func (o *DocArtifactCreate) GetUri() string

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

func (*DocArtifactCreate) GetUriOk

func (o *DocArtifactCreate) 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 (*DocArtifactCreate) HasArtifactType

func (o *DocArtifactCreate) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*DocArtifactCreate) HasCustomProperties

func (o *DocArtifactCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*DocArtifactCreate) HasDescription

func (o *DocArtifactCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DocArtifactCreate) HasExternalId

func (o *DocArtifactCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*DocArtifactCreate) HasName

func (o *DocArtifactCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*DocArtifactCreate) HasState

func (o *DocArtifactCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (*DocArtifactCreate) HasUri

func (o *DocArtifactCreate) HasUri() bool

HasUri returns a boolean if a field has been set.

func (DocArtifactCreate) MarshalJSON

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

func (*DocArtifactCreate) SetArtifactType

func (o *DocArtifactCreate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*DocArtifactCreate) SetCustomProperties

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

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

func (*DocArtifactCreate) SetDescription

func (o *DocArtifactCreate) SetDescription(v string)

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

func (*DocArtifactCreate) SetExternalId

func (o *DocArtifactCreate) SetExternalId(v string)

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

func (*DocArtifactCreate) SetName

func (o *DocArtifactCreate) SetName(v string)

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

func (*DocArtifactCreate) SetState

func (o *DocArtifactCreate) SetState(v ArtifactState)

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

func (*DocArtifactCreate) SetUri

func (o *DocArtifactCreate) SetUri(v string)

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

func (DocArtifactCreate) ToMap

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

type DocArtifactUpdate

type DocArtifactUpdate 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"`
	ArtifactType *string `json:"artifactType,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"`
}

DocArtifactUpdate A document artifact to be updated.

func NewDocArtifactUpdate

func NewDocArtifactUpdate() *DocArtifactUpdate

NewDocArtifactUpdate instantiates a new DocArtifactUpdate 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 NewDocArtifactUpdateWithDefaults

func NewDocArtifactUpdateWithDefaults() *DocArtifactUpdate

NewDocArtifactUpdateWithDefaults instantiates a new DocArtifactUpdate 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 (*DocArtifactUpdate) GetArtifactType

func (o *DocArtifactUpdate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*DocArtifactUpdate) GetArtifactTypeOk

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

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

func (*DocArtifactUpdate) GetCustomProperties

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

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

func (*DocArtifactUpdate) GetCustomPropertiesOk

func (o *DocArtifactUpdate) 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 (*DocArtifactUpdate) GetDescription

func (o *DocArtifactUpdate) GetDescription() string

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

func (*DocArtifactUpdate) GetDescriptionOk

func (o *DocArtifactUpdate) 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 (*DocArtifactUpdate) GetExternalId

func (o *DocArtifactUpdate) GetExternalId() string

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

func (*DocArtifactUpdate) GetExternalIdOk

func (o *DocArtifactUpdate) 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 (*DocArtifactUpdate) GetState

func (o *DocArtifactUpdate) GetState() ArtifactState

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

func (*DocArtifactUpdate) GetStateOk

func (o *DocArtifactUpdate) 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 (*DocArtifactUpdate) GetUri

func (o *DocArtifactUpdate) GetUri() string

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

func (*DocArtifactUpdate) GetUriOk

func (o *DocArtifactUpdate) 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 (*DocArtifactUpdate) HasArtifactType

func (o *DocArtifactUpdate) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*DocArtifactUpdate) HasCustomProperties

func (o *DocArtifactUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*DocArtifactUpdate) HasDescription

func (o *DocArtifactUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DocArtifactUpdate) HasExternalId

func (o *DocArtifactUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*DocArtifactUpdate) HasState

func (o *DocArtifactUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (*DocArtifactUpdate) HasUri

func (o *DocArtifactUpdate) HasUri() bool

HasUri returns a boolean if a field has been set.

func (DocArtifactUpdate) MarshalJSON

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

func (*DocArtifactUpdate) SetArtifactType

func (o *DocArtifactUpdate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*DocArtifactUpdate) SetCustomProperties

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

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

func (*DocArtifactUpdate) SetDescription

func (o *DocArtifactUpdate) SetDescription(v string)

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

func (*DocArtifactUpdate) SetExternalId

func (o *DocArtifactUpdate) SetExternalId(v string)

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

func (*DocArtifactUpdate) SetState

func (o *DocArtifactUpdate) SetState(v ArtifactState)

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

func (*DocArtifactUpdate) SetUri

func (o *DocArtifactUpdate) SetUri(v string)

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

func (DocArtifactUpdate) ToMap

func (o DocArtifactUpdate) 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 Experiment

type Experiment 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 experiment. It must be unique among all the Experiments of the same type within a Model Registry instance and cannot be changed once set.
	Name string `json:"name"`
	// 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"`
	Owner                    *string          `json:"owner,omitempty"`
	State                    *ExperimentState `json:"state,omitempty"`
}

Experiment An experiment in model registry. An experiment has ExperimentRun children.

func NewExperiment

func NewExperiment(name string) *Experiment

NewExperiment instantiates a new Experiment 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 NewExperimentWithDefaults

func NewExperimentWithDefaults() *Experiment

NewExperimentWithDefaults instantiates a new Experiment 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 (*Experiment) GetCreateTimeSinceEpoch

func (o *Experiment) GetCreateTimeSinceEpoch() string

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

func (*Experiment) GetCreateTimeSinceEpochOk

func (o *Experiment) 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 (*Experiment) GetCustomProperties

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

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

func (*Experiment) GetCustomPropertiesOk

func (o *Experiment) 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 (*Experiment) GetDescription

func (o *Experiment) GetDescription() string

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

func (*Experiment) GetDescriptionOk

func (o *Experiment) 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 (*Experiment) GetExternalId

func (o *Experiment) GetExternalId() string

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

func (*Experiment) GetExternalIdOk

func (o *Experiment) 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 (*Experiment) GetId

func (o *Experiment) GetId() string

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

func (*Experiment) GetIdOk

func (o *Experiment) 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 (*Experiment) GetLastUpdateTimeSinceEpoch

func (o *Experiment) GetLastUpdateTimeSinceEpoch() string

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

func (*Experiment) GetLastUpdateTimeSinceEpochOk

func (o *Experiment) 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 (*Experiment) GetName

func (o *Experiment) GetName() string

GetName returns the Name field value

func (*Experiment) GetNameOk

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

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

func (*Experiment) GetOwner

func (o *Experiment) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*Experiment) GetOwnerOk

func (o *Experiment) GetOwnerOk() (*string, bool)

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

func (*Experiment) GetState

func (o *Experiment) GetState() ExperimentState

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

func (*Experiment) GetStateOk

func (o *Experiment) GetStateOk() (*ExperimentState, 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 (*Experiment) HasCreateTimeSinceEpoch

func (o *Experiment) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*Experiment) HasCustomProperties

func (o *Experiment) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*Experiment) HasDescription

func (o *Experiment) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Experiment) HasExternalId

func (o *Experiment) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*Experiment) HasId

func (o *Experiment) HasId() bool

HasId returns a boolean if a field has been set.

func (*Experiment) HasLastUpdateTimeSinceEpoch

func (o *Experiment) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*Experiment) HasOwner

func (o *Experiment) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Experiment) HasState

func (o *Experiment) HasState() bool

HasState returns a boolean if a field has been set.

func (Experiment) MarshalJSON

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

func (*Experiment) SetCreateTimeSinceEpoch

func (o *Experiment) SetCreateTimeSinceEpoch(v string)

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

func (*Experiment) SetCustomProperties

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

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

func (*Experiment) SetDescription

func (o *Experiment) SetDescription(v string)

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

func (*Experiment) SetExternalId

func (o *Experiment) SetExternalId(v string)

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

func (*Experiment) SetId

func (o *Experiment) SetId(v string)

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

func (*Experiment) SetLastUpdateTimeSinceEpoch

func (o *Experiment) SetLastUpdateTimeSinceEpoch(v string)

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

func (*Experiment) SetName

func (o *Experiment) SetName(v string)

SetName sets field value

func (*Experiment) SetOwner

func (o *Experiment) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*Experiment) SetState

func (o *Experiment) SetState(v ExperimentState)

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

func (Experiment) ToMap

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

type ExperimentCreate

type ExperimentCreate 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 experiment. It must be unique among all the Experiments of the same type within a Model Registry instance and cannot be changed once set.
	Name  string           `json:"name"`
	Owner *string          `json:"owner,omitempty"`
	State *ExperimentState `json:"state,omitempty"`
}

ExperimentCreate An experiment in model registry. An experiment has ExperimentRun children.

func NewExperimentCreate

func NewExperimentCreate(name string) *ExperimentCreate

NewExperimentCreate instantiates a new ExperimentCreate 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 NewExperimentCreateWithDefaults

func NewExperimentCreateWithDefaults() *ExperimentCreate

NewExperimentCreateWithDefaults instantiates a new ExperimentCreate 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 (*ExperimentCreate) GetCustomProperties

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

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

func (*ExperimentCreate) GetCustomPropertiesOk

func (o *ExperimentCreate) 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 (*ExperimentCreate) GetDescription

func (o *ExperimentCreate) GetDescription() string

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

func (*ExperimentCreate) GetDescriptionOk

func (o *ExperimentCreate) 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 (*ExperimentCreate) GetExternalId

func (o *ExperimentCreate) GetExternalId() string

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

func (*ExperimentCreate) GetExternalIdOk

func (o *ExperimentCreate) 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 (*ExperimentCreate) GetName

func (o *ExperimentCreate) GetName() string

GetName returns the Name field value

func (*ExperimentCreate) GetNameOk

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

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

func (*ExperimentCreate) GetOwner

func (o *ExperimentCreate) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ExperimentCreate) GetOwnerOk

func (o *ExperimentCreate) GetOwnerOk() (*string, bool)

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

func (*ExperimentCreate) GetState

func (o *ExperimentCreate) GetState() ExperimentState

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

func (*ExperimentCreate) GetStateOk

func (o *ExperimentCreate) GetStateOk() (*ExperimentState, 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 (*ExperimentCreate) HasCustomProperties

func (o *ExperimentCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ExperimentCreate) HasDescription

func (o *ExperimentCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ExperimentCreate) HasExternalId

func (o *ExperimentCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ExperimentCreate) HasOwner

func (o *ExperimentCreate) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ExperimentCreate) HasState

func (o *ExperimentCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (ExperimentCreate) MarshalJSON

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

func (*ExperimentCreate) SetCustomProperties

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

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

func (*ExperimentCreate) SetDescription

func (o *ExperimentCreate) SetDescription(v string)

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

func (*ExperimentCreate) SetExternalId

func (o *ExperimentCreate) SetExternalId(v string)

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

func (*ExperimentCreate) SetName

func (o *ExperimentCreate) SetName(v string)

SetName sets field value

func (*ExperimentCreate) SetOwner

func (o *ExperimentCreate) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ExperimentCreate) SetState

func (o *ExperimentCreate) SetState(v ExperimentState)

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

func (ExperimentCreate) ToMap

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

type ExperimentList

type ExperimentList 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 []Experiment `json:"items"`
}

ExperimentList List of Experiments.

func NewExperimentList

func NewExperimentList(nextPageToken string, pageSize int32, size int32, items []Experiment) *ExperimentList

NewExperimentList instantiates a new ExperimentList 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 NewExperimentListWithDefaults

func NewExperimentListWithDefaults() *ExperimentList

NewExperimentListWithDefaults instantiates a new ExperimentList 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 (*ExperimentList) GetItems

func (o *ExperimentList) GetItems() []Experiment

GetItems returns the Items field value

func (*ExperimentList) GetItemsOk

func (o *ExperimentList) GetItemsOk() ([]Experiment, bool)

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

func (*ExperimentList) GetNextPageToken

func (o *ExperimentList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*ExperimentList) GetNextPageTokenOk

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

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

func (*ExperimentList) GetPageSize

func (o *ExperimentList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*ExperimentList) GetPageSizeOk

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

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

func (*ExperimentList) GetSize

func (o *ExperimentList) GetSize() int32

GetSize returns the Size field value

func (*ExperimentList) GetSizeOk

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

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

func (ExperimentList) MarshalJSON

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

func (*ExperimentList) SetItems

func (o *ExperimentList) SetItems(v []Experiment)

SetItems sets field value

func (*ExperimentList) SetNextPageToken

func (o *ExperimentList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*ExperimentList) SetPageSize

func (o *ExperimentList) SetPageSize(v int32)

SetPageSize sets field value

func (*ExperimentList) SetSize

func (o *ExperimentList) SetSize(v int32)

SetSize sets field value

func (ExperimentList) ToMap

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

type ExperimentRun

type ExperimentRun 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"`
	// End time of the actual experiment run in milliseconds since epoch. Different from lastUpdateTimeSinceEpoch, which is registry resource update time.
	EndTimeSinceEpoch *string              `json:"endTimeSinceEpoch,omitempty"`
	Status            *ExperimentRunStatus `json:"status,omitempty"`
	State             *ExperimentRunState  `json:"state,omitempty"`
	// Experiment run owner id or name.
	Owner *string `json:"owner,omitempty"`
	// ID of the `Experiment` to which this experiment run belongs.
	ExperimentId string `json:"experimentId"`
	// Start time of the experiment run in milliseconds since epoch. Different from createTimeSinceEpoch, which is registry resource creation time.
	StartTimeSinceEpoch *string `json:"startTimeSinceEpoch,omitempty"`
	// 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"`
}

ExperimentRun Represents an ExperimentRun belonging to an Experiment.

func NewExperimentRun

func NewExperimentRun(experimentId string) *ExperimentRun

NewExperimentRun instantiates a new ExperimentRun 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 NewExperimentRunWithDefaults

func NewExperimentRunWithDefaults() *ExperimentRun

NewExperimentRunWithDefaults instantiates a new ExperimentRun 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 (*ExperimentRun) GetCreateTimeSinceEpoch

func (o *ExperimentRun) GetCreateTimeSinceEpoch() string

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

func (*ExperimentRun) GetCreateTimeSinceEpochOk

func (o *ExperimentRun) 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 (*ExperimentRun) GetCustomProperties

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

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

func (*ExperimentRun) GetCustomPropertiesOk

func (o *ExperimentRun) 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 (*ExperimentRun) GetDescription

func (o *ExperimentRun) GetDescription() string

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

func (*ExperimentRun) GetDescriptionOk

func (o *ExperimentRun) 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 (*ExperimentRun) GetEndTimeSinceEpoch

func (o *ExperimentRun) GetEndTimeSinceEpoch() string

GetEndTimeSinceEpoch returns the EndTimeSinceEpoch field value if set, zero value otherwise.

func (*ExperimentRun) GetEndTimeSinceEpochOk

func (o *ExperimentRun) GetEndTimeSinceEpochOk() (*string, bool)

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

func (*ExperimentRun) GetExperimentId

func (o *ExperimentRun) GetExperimentId() string

GetExperimentId returns the ExperimentId field value

func (*ExperimentRun) GetExperimentIdOk

func (o *ExperimentRun) GetExperimentIdOk() (*string, bool)

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

func (*ExperimentRun) GetExternalId

func (o *ExperimentRun) GetExternalId() string

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

func (*ExperimentRun) GetExternalIdOk

func (o *ExperimentRun) 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 (*ExperimentRun) GetId

func (o *ExperimentRun) GetId() string

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

func (*ExperimentRun) GetIdOk

func (o *ExperimentRun) 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 (*ExperimentRun) GetLastUpdateTimeSinceEpoch

func (o *ExperimentRun) GetLastUpdateTimeSinceEpoch() string

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

func (*ExperimentRun) GetLastUpdateTimeSinceEpochOk

func (o *ExperimentRun) 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 (*ExperimentRun) GetName

func (o *ExperimentRun) GetName() string

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

func (*ExperimentRun) GetNameOk

func (o *ExperimentRun) 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 (*ExperimentRun) GetOwner

func (o *ExperimentRun) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ExperimentRun) GetOwnerOk

func (o *ExperimentRun) GetOwnerOk() (*string, bool)

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

func (*ExperimentRun) GetStartTimeSinceEpoch

func (o *ExperimentRun) GetStartTimeSinceEpoch() string

GetStartTimeSinceEpoch returns the StartTimeSinceEpoch field value if set, zero value otherwise.

func (*ExperimentRun) GetStartTimeSinceEpochOk

func (o *ExperimentRun) GetStartTimeSinceEpochOk() (*string, bool)

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

func (*ExperimentRun) GetState

func (o *ExperimentRun) GetState() ExperimentRunState

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

func (*ExperimentRun) GetStateOk

func (o *ExperimentRun) GetStateOk() (*ExperimentRunState, 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 (*ExperimentRun) GetStatus

func (o *ExperimentRun) GetStatus() ExperimentRunStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ExperimentRun) GetStatusOk

func (o *ExperimentRun) GetStatusOk() (*ExperimentRunStatus, bool)

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

func (*ExperimentRun) HasCreateTimeSinceEpoch

func (o *ExperimentRun) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*ExperimentRun) HasCustomProperties

func (o *ExperimentRun) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ExperimentRun) HasDescription

func (o *ExperimentRun) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ExperimentRun) HasEndTimeSinceEpoch

func (o *ExperimentRun) HasEndTimeSinceEpoch() bool

HasEndTimeSinceEpoch returns a boolean if a field has been set.

func (*ExperimentRun) HasExternalId

func (o *ExperimentRun) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ExperimentRun) HasId

func (o *ExperimentRun) HasId() bool

HasId returns a boolean if a field has been set.

func (*ExperimentRun) HasLastUpdateTimeSinceEpoch

func (o *ExperimentRun) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*ExperimentRun) HasName

func (o *ExperimentRun) HasName() bool

HasName returns a boolean if a field has been set.

func (*ExperimentRun) HasOwner

func (o *ExperimentRun) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ExperimentRun) HasStartTimeSinceEpoch

func (o *ExperimentRun) HasStartTimeSinceEpoch() bool

HasStartTimeSinceEpoch returns a boolean if a field has been set.

func (*ExperimentRun) HasState

func (o *ExperimentRun) HasState() bool

HasState returns a boolean if a field has been set.

func (*ExperimentRun) HasStatus

func (o *ExperimentRun) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExperimentRun) MarshalJSON

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

func (*ExperimentRun) SetCreateTimeSinceEpoch

func (o *ExperimentRun) SetCreateTimeSinceEpoch(v string)

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

func (*ExperimentRun) SetCustomProperties

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

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

func (*ExperimentRun) SetDescription

func (o *ExperimentRun) SetDescription(v string)

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

func (*ExperimentRun) SetEndTimeSinceEpoch

func (o *ExperimentRun) SetEndTimeSinceEpoch(v string)

SetEndTimeSinceEpoch gets a reference to the given string and assigns it to the EndTimeSinceEpoch field.

func (*ExperimentRun) SetExperimentId

func (o *ExperimentRun) SetExperimentId(v string)

SetExperimentId sets field value

func (*ExperimentRun) SetExternalId

func (o *ExperimentRun) SetExternalId(v string)

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

func (*ExperimentRun) SetId

func (o *ExperimentRun) SetId(v string)

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

func (*ExperimentRun) SetLastUpdateTimeSinceEpoch

func (o *ExperimentRun) SetLastUpdateTimeSinceEpoch(v string)

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

func (*ExperimentRun) SetName

func (o *ExperimentRun) SetName(v string)

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

func (*ExperimentRun) SetOwner

func (o *ExperimentRun) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ExperimentRun) SetStartTimeSinceEpoch

func (o *ExperimentRun) SetStartTimeSinceEpoch(v string)

SetStartTimeSinceEpoch gets a reference to the given string and assigns it to the StartTimeSinceEpoch field.

func (*ExperimentRun) SetState

func (o *ExperimentRun) SetState(v ExperimentRunState)

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

func (*ExperimentRun) SetStatus

func (o *ExperimentRun) SetStatus(v ExperimentRunStatus)

SetStatus gets a reference to the given ExperimentRunStatus and assigns it to the Status field.

func (ExperimentRun) ToMap

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

type ExperimentRunCreate

type ExperimentRunCreate 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 experiment run. It must be unique among all the ExperimentRuns of the same type within a Model Registry instance and cannot be changed once set.
	Name *string `json:"name,omitempty"`
	// End time of the actual experiment run in milliseconds since epoch. Different from lastUpdateTimeSinceEpoch, which is registry resource update time.
	EndTimeSinceEpoch *string              `json:"endTimeSinceEpoch,omitempty"`
	Status            *ExperimentRunStatus `json:"status,omitempty"`
	State             *ExperimentRunState  `json:"state,omitempty"`
	// Experiment run owner id or name.
	Owner *string `json:"owner,omitempty"`
	// ID of the `Experiment` to which this experiment run belongs.
	ExperimentId string `json:"experimentId"`
	// Start time of the experiment run in milliseconds since epoch. Different from createTimeSinceEpoch, which is registry resource creation time.
	StartTimeSinceEpoch *string `json:"startTimeSinceEpoch,omitempty"`
}

ExperimentRunCreate Represents an ExperimentRun belonging to an Experiment.

func NewExperimentRunCreate

func NewExperimentRunCreate(experimentId string) *ExperimentRunCreate

NewExperimentRunCreate instantiates a new ExperimentRunCreate 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 NewExperimentRunCreateWithDefaults

func NewExperimentRunCreateWithDefaults() *ExperimentRunCreate

NewExperimentRunCreateWithDefaults instantiates a new ExperimentRunCreate 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 (*ExperimentRunCreate) GetCustomProperties

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

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

func (*ExperimentRunCreate) GetCustomPropertiesOk

func (o *ExperimentRunCreate) 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 (*ExperimentRunCreate) GetDescription

func (o *ExperimentRunCreate) GetDescription() string

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

func (*ExperimentRunCreate) GetDescriptionOk

func (o *ExperimentRunCreate) 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 (*ExperimentRunCreate) GetEndTimeSinceEpoch

func (o *ExperimentRunCreate) GetEndTimeSinceEpoch() string

GetEndTimeSinceEpoch returns the EndTimeSinceEpoch field value if set, zero value otherwise.

func (*ExperimentRunCreate) GetEndTimeSinceEpochOk

func (o *ExperimentRunCreate) GetEndTimeSinceEpochOk() (*string, bool)

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

func (*ExperimentRunCreate) GetExperimentId

func (o *ExperimentRunCreate) GetExperimentId() string

GetExperimentId returns the ExperimentId field value

func (*ExperimentRunCreate) GetExperimentIdOk

func (o *ExperimentRunCreate) GetExperimentIdOk() (*string, bool)

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

func (*ExperimentRunCreate) GetExternalId

func (o *ExperimentRunCreate) GetExternalId() string

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

func (*ExperimentRunCreate) GetExternalIdOk

func (o *ExperimentRunCreate) 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 (*ExperimentRunCreate) GetName

func (o *ExperimentRunCreate) GetName() string

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

func (*ExperimentRunCreate) GetNameOk

func (o *ExperimentRunCreate) 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 (*ExperimentRunCreate) GetOwner

func (o *ExperimentRunCreate) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ExperimentRunCreate) GetOwnerOk

func (o *ExperimentRunCreate) GetOwnerOk() (*string, bool)

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

func (*ExperimentRunCreate) GetStartTimeSinceEpoch

func (o *ExperimentRunCreate) GetStartTimeSinceEpoch() string

GetStartTimeSinceEpoch returns the StartTimeSinceEpoch field value if set, zero value otherwise.

func (*ExperimentRunCreate) GetStartTimeSinceEpochOk

func (o *ExperimentRunCreate) GetStartTimeSinceEpochOk() (*string, bool)

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

func (*ExperimentRunCreate) GetState

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

func (*ExperimentRunCreate) GetStateOk

func (o *ExperimentRunCreate) GetStateOk() (*ExperimentRunState, 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 (*ExperimentRunCreate) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ExperimentRunCreate) GetStatusOk

func (o *ExperimentRunCreate) GetStatusOk() (*ExperimentRunStatus, bool)

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

func (*ExperimentRunCreate) HasCustomProperties

func (o *ExperimentRunCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ExperimentRunCreate) HasDescription

func (o *ExperimentRunCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ExperimentRunCreate) HasEndTimeSinceEpoch

func (o *ExperimentRunCreate) HasEndTimeSinceEpoch() bool

HasEndTimeSinceEpoch returns a boolean if a field has been set.

func (*ExperimentRunCreate) HasExternalId

func (o *ExperimentRunCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ExperimentRunCreate) HasName

func (o *ExperimentRunCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*ExperimentRunCreate) HasOwner

func (o *ExperimentRunCreate) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ExperimentRunCreate) HasStartTimeSinceEpoch

func (o *ExperimentRunCreate) HasStartTimeSinceEpoch() bool

HasStartTimeSinceEpoch returns a boolean if a field has been set.

func (*ExperimentRunCreate) HasState

func (o *ExperimentRunCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (*ExperimentRunCreate) HasStatus

func (o *ExperimentRunCreate) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExperimentRunCreate) MarshalJSON

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

func (*ExperimentRunCreate) SetCustomProperties

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

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

func (*ExperimentRunCreate) SetDescription

func (o *ExperimentRunCreate) SetDescription(v string)

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

func (*ExperimentRunCreate) SetEndTimeSinceEpoch

func (o *ExperimentRunCreate) SetEndTimeSinceEpoch(v string)

SetEndTimeSinceEpoch gets a reference to the given string and assigns it to the EndTimeSinceEpoch field.

func (*ExperimentRunCreate) SetExperimentId

func (o *ExperimentRunCreate) SetExperimentId(v string)

SetExperimentId sets field value

func (*ExperimentRunCreate) SetExternalId

func (o *ExperimentRunCreate) SetExternalId(v string)

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

func (*ExperimentRunCreate) SetName

func (o *ExperimentRunCreate) SetName(v string)

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

func (*ExperimentRunCreate) SetOwner

func (o *ExperimentRunCreate) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ExperimentRunCreate) SetStartTimeSinceEpoch

func (o *ExperimentRunCreate) SetStartTimeSinceEpoch(v string)

SetStartTimeSinceEpoch gets a reference to the given string and assigns it to the StartTimeSinceEpoch field.

func (*ExperimentRunCreate) SetState

func (o *ExperimentRunCreate) SetState(v ExperimentRunState)

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

func (*ExperimentRunCreate) SetStatus

func (o *ExperimentRunCreate) SetStatus(v ExperimentRunStatus)

SetStatus gets a reference to the given ExperimentRunStatus and assigns it to the Status field.

func (ExperimentRunCreate) ToMap

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

type ExperimentRunList

type ExperimentRunList 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 `ExperimentRun` entities.
	Items []ExperimentRun `json:"items"`
}

ExperimentRunList List of ExperimentRun entities.

func NewExperimentRunList

func NewExperimentRunList(nextPageToken string, pageSize int32, size int32, items []ExperimentRun) *ExperimentRunList

NewExperimentRunList instantiates a new ExperimentRunList 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 NewExperimentRunListWithDefaults

func NewExperimentRunListWithDefaults() *ExperimentRunList

NewExperimentRunListWithDefaults instantiates a new ExperimentRunList 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 (*ExperimentRunList) GetItems

func (o *ExperimentRunList) GetItems() []ExperimentRun

GetItems returns the Items field value

func (*ExperimentRunList) GetItemsOk

func (o *ExperimentRunList) GetItemsOk() ([]ExperimentRun, bool)

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

func (*ExperimentRunList) GetNextPageToken

func (o *ExperimentRunList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*ExperimentRunList) GetNextPageTokenOk

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

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

func (*ExperimentRunList) GetPageSize

func (o *ExperimentRunList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*ExperimentRunList) GetPageSizeOk

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

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

func (*ExperimentRunList) GetSize

func (o *ExperimentRunList) GetSize() int32

GetSize returns the Size field value

func (*ExperimentRunList) GetSizeOk

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

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

func (ExperimentRunList) MarshalJSON

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

func (*ExperimentRunList) SetItems

func (o *ExperimentRunList) SetItems(v []ExperimentRun)

SetItems sets field value

func (*ExperimentRunList) SetNextPageToken

func (o *ExperimentRunList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*ExperimentRunList) SetPageSize

func (o *ExperimentRunList) SetPageSize(v int32)

SetPageSize sets field value

func (*ExperimentRunList) SetSize

func (o *ExperimentRunList) SetSize(v int32)

SetSize sets field value

func (ExperimentRunList) ToMap

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

type ExperimentRunState

type ExperimentRunState string

ExperimentRunState - LIVE: A state indicating that the `ExperimentRun` exists - ARCHIVED: A state indicating that the `ExperimentRun` has been archived.

const (
	EXPERIMENTRUNSTATE_LIVE     ExperimentRunState = "LIVE"
	EXPERIMENTRUNSTATE_ARCHIVED ExperimentRunState = "ARCHIVED"
)

List of ExperimentRunState

func NewExperimentRunStateFromValue

func NewExperimentRunStateFromValue(v string) (*ExperimentRunState, error)

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

func (ExperimentRunState) IsValid

func (v ExperimentRunState) IsValid() bool

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

func (ExperimentRunState) Ptr

Ptr returns reference to ExperimentRunState value

func (*ExperimentRunState) UnmarshalJSON

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

type ExperimentRunStatus

type ExperimentRunStatus string

ExperimentRunStatus The state of the Experiment Run. The state transitions are [SCHEDULED ->] RUNNING -> FINISHED | FAILED | KILLED RUNNING: Run has been initiated. SCHEDULED: Run is scheduled to run at a later time. FINISHED: Run has completed. FAILED: Run execution failed. KILLED: Run killed by user.

const (
	EXPERIMENTRUNSTATUS_RUNNING   ExperimentRunStatus = "RUNNING"
	EXPERIMENTRUNSTATUS_SCHEDULED ExperimentRunStatus = "SCHEDULED"
	EXPERIMENTRUNSTATUS_FINISHED  ExperimentRunStatus = "FINISHED"
	EXPERIMENTRUNSTATUS_FAILED    ExperimentRunStatus = "FAILED"
	EXPERIMENTRUNSTATUS_KILLED    ExperimentRunStatus = "KILLED"
)

List of ExperimentRunStatus

func NewExperimentRunStatusFromValue

func NewExperimentRunStatusFromValue(v string) (*ExperimentRunStatus, error)

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

func (ExperimentRunStatus) IsValid

func (v ExperimentRunStatus) IsValid() bool

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

func (ExperimentRunStatus) Ptr

Ptr returns reference to ExperimentRunStatus value

func (*ExperimentRunStatus) UnmarshalJSON

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

type ExperimentRunUpdate

type ExperimentRunUpdate 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"`
	// End time of the actual experiment run in milliseconds since epoch. Different from lastUpdateTimeSinceEpoch, which is registry resource update time.
	EndTimeSinceEpoch *string              `json:"endTimeSinceEpoch,omitempty"`
	Status            *ExperimentRunStatus `json:"status,omitempty"`
	State             *ExperimentRunState  `json:"state,omitempty"`
	// Experiment run owner id or name.
	Owner *string `json:"owner,omitempty"`
}

ExperimentRunUpdate Represents an ExperimentRun belonging to an Experiment.

func NewExperimentRunUpdate

func NewExperimentRunUpdate() *ExperimentRunUpdate

NewExperimentRunUpdate instantiates a new ExperimentRunUpdate 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 NewExperimentRunUpdateWithDefaults

func NewExperimentRunUpdateWithDefaults() *ExperimentRunUpdate

NewExperimentRunUpdateWithDefaults instantiates a new ExperimentRunUpdate 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 (*ExperimentRunUpdate) GetCustomProperties

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

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

func (*ExperimentRunUpdate) GetCustomPropertiesOk

func (o *ExperimentRunUpdate) 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 (*ExperimentRunUpdate) GetDescription

func (o *ExperimentRunUpdate) GetDescription() string

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

func (*ExperimentRunUpdate) GetDescriptionOk

func (o *ExperimentRunUpdate) 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 (*ExperimentRunUpdate) GetEndTimeSinceEpoch

func (o *ExperimentRunUpdate) GetEndTimeSinceEpoch() string

GetEndTimeSinceEpoch returns the EndTimeSinceEpoch field value if set, zero value otherwise.

func (*ExperimentRunUpdate) GetEndTimeSinceEpochOk

func (o *ExperimentRunUpdate) GetEndTimeSinceEpochOk() (*string, bool)

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

func (*ExperimentRunUpdate) GetExternalId

func (o *ExperimentRunUpdate) GetExternalId() string

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

func (*ExperimentRunUpdate) GetExternalIdOk

func (o *ExperimentRunUpdate) 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 (*ExperimentRunUpdate) GetOwner

func (o *ExperimentRunUpdate) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ExperimentRunUpdate) GetOwnerOk

func (o *ExperimentRunUpdate) GetOwnerOk() (*string, bool)

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

func (*ExperimentRunUpdate) GetState

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

func (*ExperimentRunUpdate) GetStateOk

func (o *ExperimentRunUpdate) GetStateOk() (*ExperimentRunState, 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 (*ExperimentRunUpdate) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ExperimentRunUpdate) GetStatusOk

func (o *ExperimentRunUpdate) GetStatusOk() (*ExperimentRunStatus, bool)

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

func (*ExperimentRunUpdate) HasCustomProperties

func (o *ExperimentRunUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ExperimentRunUpdate) HasDescription

func (o *ExperimentRunUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ExperimentRunUpdate) HasEndTimeSinceEpoch

func (o *ExperimentRunUpdate) HasEndTimeSinceEpoch() bool

HasEndTimeSinceEpoch returns a boolean if a field has been set.

func (*ExperimentRunUpdate) HasExternalId

func (o *ExperimentRunUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ExperimentRunUpdate) HasOwner

func (o *ExperimentRunUpdate) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ExperimentRunUpdate) HasState

func (o *ExperimentRunUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (*ExperimentRunUpdate) HasStatus

func (o *ExperimentRunUpdate) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExperimentRunUpdate) MarshalJSON

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

func (*ExperimentRunUpdate) SetCustomProperties

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

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

func (*ExperimentRunUpdate) SetDescription

func (o *ExperimentRunUpdate) SetDescription(v string)

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

func (*ExperimentRunUpdate) SetEndTimeSinceEpoch

func (o *ExperimentRunUpdate) SetEndTimeSinceEpoch(v string)

SetEndTimeSinceEpoch gets a reference to the given string and assigns it to the EndTimeSinceEpoch field.

func (*ExperimentRunUpdate) SetExternalId

func (o *ExperimentRunUpdate) SetExternalId(v string)

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

func (*ExperimentRunUpdate) SetOwner

func (o *ExperimentRunUpdate) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ExperimentRunUpdate) SetState

func (o *ExperimentRunUpdate) SetState(v ExperimentRunState)

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

func (*ExperimentRunUpdate) SetStatus

func (o *ExperimentRunUpdate) SetStatus(v ExperimentRunStatus)

SetStatus gets a reference to the given ExperimentRunStatus and assigns it to the Status field.

func (ExperimentRunUpdate) ToMap

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

type ExperimentState

type ExperimentState string

ExperimentState - LIVE: A state indicating that the `Experiment` exists - ARCHIVED: A state indicating that the `Experiment` has been archived.

const (
	EXPERIMENTSTATE_LIVE     ExperimentState = "LIVE"
	EXPERIMENTSTATE_ARCHIVED ExperimentState = "ARCHIVED"
)

List of ExperimentState

func NewExperimentStateFromValue

func NewExperimentStateFromValue(v string) (*ExperimentState, error)

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

func (ExperimentState) IsValid

func (v ExperimentState) IsValid() bool

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

func (ExperimentState) Ptr

Ptr returns reference to ExperimentState value

func (*ExperimentState) UnmarshalJSON

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

type ExperimentUpdate

type ExperimentUpdate 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"`
	Owner      *string          `json:"owner,omitempty"`
	State      *ExperimentState `json:"state,omitempty"`
}

ExperimentUpdate An experiment in model registry. An experiment has ExperimentRun children.

func NewExperimentUpdate

func NewExperimentUpdate() *ExperimentUpdate

NewExperimentUpdate instantiates a new ExperimentUpdate 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 NewExperimentUpdateWithDefaults

func NewExperimentUpdateWithDefaults() *ExperimentUpdate

NewExperimentUpdateWithDefaults instantiates a new ExperimentUpdate 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 (*ExperimentUpdate) GetCustomProperties

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

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

func (*ExperimentUpdate) GetCustomPropertiesOk

func (o *ExperimentUpdate) 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 (*ExperimentUpdate) GetDescription

func (o *ExperimentUpdate) GetDescription() string

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

func (*ExperimentUpdate) GetDescriptionOk

func (o *ExperimentUpdate) 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 (*ExperimentUpdate) GetExternalId

func (o *ExperimentUpdate) GetExternalId() string

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

func (*ExperimentUpdate) GetExternalIdOk

func (o *ExperimentUpdate) 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 (*ExperimentUpdate) GetOwner

func (o *ExperimentUpdate) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ExperimentUpdate) GetOwnerOk

func (o *ExperimentUpdate) GetOwnerOk() (*string, bool)

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

func (*ExperimentUpdate) GetState

func (o *ExperimentUpdate) GetState() ExperimentState

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

func (*ExperimentUpdate) GetStateOk

func (o *ExperimentUpdate) GetStateOk() (*ExperimentState, 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 (*ExperimentUpdate) HasCustomProperties

func (o *ExperimentUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ExperimentUpdate) HasDescription

func (o *ExperimentUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ExperimentUpdate) HasExternalId

func (o *ExperimentUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ExperimentUpdate) HasOwner

func (o *ExperimentUpdate) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ExperimentUpdate) HasState

func (o *ExperimentUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (ExperimentUpdate) MarshalJSON

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

func (*ExperimentUpdate) SetCustomProperties

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

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

func (*ExperimentUpdate) SetDescription

func (o *ExperimentUpdate) SetDescription(v string)

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

func (*ExperimentUpdate) SetExternalId

func (o *ExperimentUpdate) SetExternalId(v string)

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

func (*ExperimentUpdate) SetOwner

func (o *ExperimentUpdate) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ExperimentUpdate) SetState

func (o *ExperimentUpdate) SetState(v ExperimentState)

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

func (ExperimentUpdate) ToMap

func (o ExperimentUpdate) ToMap() (map[string]interface{}, 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"`
	// 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"`
}

InferenceServiceList List of InferenceServices.

func NewInferenceServiceList

func NewInferenceServiceList(nextPageToken string, pageSize int32, size int32, items []InferenceService) *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

func (*InferenceServiceList) GetItemsOk

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

GetItemsOk returns a tuple with the Items field value 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) MarshalJSON

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

func (*InferenceServiceList) SetItems

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

SetItems sets field value

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) GetActualInstanceValue added in v0.3.3

func (obj MetadataValue) GetActualInstanceValue() interface{}

Get the actual instance value

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 Metric

type Metric 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 name/key of the metric (e.g., \"accuracy\", \"loss\", \"f1_score\").
	Name *string `json:"name,omitempty"`
	// 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"`
	// Optional id of the experiment that produced this artifact.
	ExperimentId *string `json:"experimentId,omitempty"`
	// Optional id of the experiment run that produced this artifact.
	ExperimentRunId *string `json:"experimentRunId,omitempty"`
	ArtifactType    *string `json:"artifactType,omitempty"`
	// The numeric value of the metric.
	Value *float64 `json:"value,omitempty"`
	// Unix timestamp in milliseconds when the metric was recorded.
	Timestamp *string `json:"timestamp,omitempty"`
	// The step number for multi-step metrics (e.g., training epochs).
	Step  *int64         `json:"step,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
}

Metric A metric representing a numerical measurement from model training or evaluation.

func NewMetric

func NewMetric() *Metric

NewMetric instantiates a new Metric 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 NewMetricWithDefaults

func NewMetricWithDefaults() *Metric

NewMetricWithDefaults instantiates a new Metric 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 (*Metric) GetArtifactType

func (o *Metric) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*Metric) GetArtifactTypeOk

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

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

func (*Metric) GetCreateTimeSinceEpoch

func (o *Metric) GetCreateTimeSinceEpoch() string

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

func (*Metric) GetCreateTimeSinceEpochOk

func (o *Metric) 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 (*Metric) GetCustomProperties

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

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

func (*Metric) GetCustomPropertiesOk

func (o *Metric) 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 (*Metric) GetDescription

func (o *Metric) GetDescription() string

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

func (*Metric) GetDescriptionOk

func (o *Metric) 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 (*Metric) GetExperimentId

func (o *Metric) GetExperimentId() string

GetExperimentId returns the ExperimentId field value if set, zero value otherwise.

func (*Metric) GetExperimentIdOk

func (o *Metric) GetExperimentIdOk() (*string, bool)

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

func (*Metric) GetExperimentRunId

func (o *Metric) GetExperimentRunId() string

GetExperimentRunId returns the ExperimentRunId field value if set, zero value otherwise.

func (*Metric) GetExperimentRunIdOk

func (o *Metric) GetExperimentRunIdOk() (*string, bool)

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

func (*Metric) GetExternalId

func (o *Metric) GetExternalId() string

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

func (*Metric) GetExternalIdOk

func (o *Metric) 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 (*Metric) GetId

func (o *Metric) GetId() string

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

func (*Metric) GetIdOk

func (o *Metric) 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 (*Metric) GetLastUpdateTimeSinceEpoch

func (o *Metric) GetLastUpdateTimeSinceEpoch() string

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

func (*Metric) GetLastUpdateTimeSinceEpochOk

func (o *Metric) 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 (*Metric) GetName

func (o *Metric) GetName() string

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

func (*Metric) GetNameOk

func (o *Metric) 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 (*Metric) GetState

func (o *Metric) GetState() ArtifactState

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

func (*Metric) GetStateOk

func (o *Metric) 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 (*Metric) GetStep

func (o *Metric) GetStep() int64

GetStep returns the Step field value if set, zero value otherwise.

func (*Metric) GetStepOk

func (o *Metric) GetStepOk() (*int64, bool)

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

func (*Metric) GetTimestamp

func (o *Metric) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Metric) GetTimestampOk

func (o *Metric) GetTimestampOk() (*string, bool)

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

func (*Metric) GetValue

func (o *Metric) GetValue() float64

GetValue returns the Value field value if set, zero value otherwise.

func (*Metric) GetValueOk

func (o *Metric) GetValueOk() (*float64, bool)

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

func (*Metric) HasArtifactType

func (o *Metric) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*Metric) HasCreateTimeSinceEpoch

func (o *Metric) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*Metric) HasCustomProperties

func (o *Metric) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*Metric) HasDescription

func (o *Metric) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Metric) HasExperimentId

func (o *Metric) HasExperimentId() bool

HasExperimentId returns a boolean if a field has been set.

func (*Metric) HasExperimentRunId

func (o *Metric) HasExperimentRunId() bool

HasExperimentRunId returns a boolean if a field has been set.

func (*Metric) HasExternalId

func (o *Metric) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*Metric) HasId

func (o *Metric) HasId() bool

HasId returns a boolean if a field has been set.

func (*Metric) HasLastUpdateTimeSinceEpoch

func (o *Metric) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*Metric) HasName

func (o *Metric) HasName() bool

HasName returns a boolean if a field has been set.

func (*Metric) HasState

func (o *Metric) HasState() bool

HasState returns a boolean if a field has been set.

func (*Metric) HasStep

func (o *Metric) HasStep() bool

HasStep returns a boolean if a field has been set.

func (*Metric) HasTimestamp

func (o *Metric) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*Metric) HasValue

func (o *Metric) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Metric) MarshalJSON

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

func (*Metric) SetArtifactType

func (o *Metric) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*Metric) SetCreateTimeSinceEpoch

func (o *Metric) SetCreateTimeSinceEpoch(v string)

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

func (*Metric) SetCustomProperties

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

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

func (*Metric) SetDescription

func (o *Metric) SetDescription(v string)

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

func (*Metric) SetExperimentId

func (o *Metric) SetExperimentId(v string)

SetExperimentId gets a reference to the given string and assigns it to the ExperimentId field.

func (*Metric) SetExperimentRunId

func (o *Metric) SetExperimentRunId(v string)

SetExperimentRunId gets a reference to the given string and assigns it to the ExperimentRunId field.

func (*Metric) SetExternalId

func (o *Metric) SetExternalId(v string)

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

func (*Metric) SetId

func (o *Metric) SetId(v string)

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

func (*Metric) SetLastUpdateTimeSinceEpoch

func (o *Metric) SetLastUpdateTimeSinceEpoch(v string)

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

func (*Metric) SetName

func (o *Metric) SetName(v string)

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

func (*Metric) SetState

func (o *Metric) SetState(v ArtifactState)

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

func (*Metric) SetStep

func (o *Metric) SetStep(v int64)

SetStep gets a reference to the given int64 and assigns it to the Step field.

func (*Metric) SetTimestamp

func (o *Metric) SetTimestamp(v string)

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (*Metric) SetValue

func (o *Metric) SetValue(v float64)

SetValue gets a reference to the given float64 and assigns it to the Value field.

func (Metric) ToMap

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

type MetricCreate

type MetricCreate 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 name/key of the metric (e.g., \"accuracy\", \"loss\", \"f1_score\").
	Name         *string `json:"name,omitempty"`
	ArtifactType *string `json:"artifactType,omitempty"`
	// The numeric value of the metric.
	Value *float64 `json:"value,omitempty"`
	// Unix timestamp in milliseconds when the metric was recorded.
	Timestamp *string `json:"timestamp,omitempty"`
	// The step number for multi-step metrics (e.g., training epochs).
	Step  *int64         `json:"step,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
}

MetricCreate A metric to be created.

func NewMetricCreate

func NewMetricCreate() *MetricCreate

NewMetricCreate instantiates a new MetricCreate 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 NewMetricCreateWithDefaults

func NewMetricCreateWithDefaults() *MetricCreate

NewMetricCreateWithDefaults instantiates a new MetricCreate 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 (*MetricCreate) GetArtifactType

func (o *MetricCreate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*MetricCreate) GetArtifactTypeOk

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

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

func (*MetricCreate) GetCustomProperties

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

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

func (*MetricCreate) GetCustomPropertiesOk

func (o *MetricCreate) 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 (*MetricCreate) GetDescription

func (o *MetricCreate) GetDescription() string

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

func (*MetricCreate) GetDescriptionOk

func (o *MetricCreate) 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 (*MetricCreate) GetExternalId

func (o *MetricCreate) GetExternalId() string

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

func (*MetricCreate) GetExternalIdOk

func (o *MetricCreate) 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 (*MetricCreate) GetName

func (o *MetricCreate) GetName() string

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

func (*MetricCreate) GetNameOk

func (o *MetricCreate) 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 (*MetricCreate) GetState

func (o *MetricCreate) GetState() ArtifactState

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

func (*MetricCreate) GetStateOk

func (o *MetricCreate) 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 (*MetricCreate) GetStep

func (o *MetricCreate) GetStep() int64

GetStep returns the Step field value if set, zero value otherwise.

func (*MetricCreate) GetStepOk

func (o *MetricCreate) GetStepOk() (*int64, bool)

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

func (*MetricCreate) GetTimestamp

func (o *MetricCreate) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*MetricCreate) GetTimestampOk

func (o *MetricCreate) GetTimestampOk() (*string, bool)

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

func (*MetricCreate) GetValue

func (o *MetricCreate) GetValue() float64

GetValue returns the Value field value if set, zero value otherwise.

func (*MetricCreate) GetValueOk

func (o *MetricCreate) GetValueOk() (*float64, bool)

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

func (*MetricCreate) HasArtifactType

func (o *MetricCreate) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*MetricCreate) HasCustomProperties

func (o *MetricCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*MetricCreate) HasDescription

func (o *MetricCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*MetricCreate) HasExternalId

func (o *MetricCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*MetricCreate) HasName

func (o *MetricCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*MetricCreate) HasState

func (o *MetricCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (*MetricCreate) HasStep

func (o *MetricCreate) HasStep() bool

HasStep returns a boolean if a field has been set.

func (*MetricCreate) HasTimestamp

func (o *MetricCreate) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*MetricCreate) HasValue

func (o *MetricCreate) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetricCreate) MarshalJSON

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

func (*MetricCreate) SetArtifactType

func (o *MetricCreate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*MetricCreate) SetCustomProperties

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

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

func (*MetricCreate) SetDescription

func (o *MetricCreate) SetDescription(v string)

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

func (*MetricCreate) SetExternalId

func (o *MetricCreate) SetExternalId(v string)

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

func (*MetricCreate) SetName

func (o *MetricCreate) SetName(v string)

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

func (*MetricCreate) SetState

func (o *MetricCreate) SetState(v ArtifactState)

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

func (*MetricCreate) SetStep

func (o *MetricCreate) SetStep(v int64)

SetStep gets a reference to the given int64 and assigns it to the Step field.

func (*MetricCreate) SetTimestamp

func (o *MetricCreate) SetTimestamp(v string)

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (*MetricCreate) SetValue

func (o *MetricCreate) SetValue(v float64)

SetValue gets a reference to the given float64 and assigns it to the Value field.

func (MetricCreate) ToMap

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

type MetricList

type MetricList 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 `Metric` entities.
	Items []Metric `json:"items"`
}

MetricList List of Metric entities.

func NewMetricList

func NewMetricList(nextPageToken string, pageSize int32, size int32, items []Metric) *MetricList

NewMetricList instantiates a new MetricList 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 NewMetricListWithDefaults

func NewMetricListWithDefaults() *MetricList

NewMetricListWithDefaults instantiates a new MetricList 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 (*MetricList) GetItems

func (o *MetricList) GetItems() []Metric

GetItems returns the Items field value

func (*MetricList) GetItemsOk

func (o *MetricList) GetItemsOk() ([]Metric, bool)

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

func (*MetricList) GetNextPageToken

func (o *MetricList) GetNextPageToken() string

GetNextPageToken returns the NextPageToken field value

func (*MetricList) GetNextPageTokenOk

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

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

func (*MetricList) GetPageSize

func (o *MetricList) GetPageSize() int32

GetPageSize returns the PageSize field value

func (*MetricList) GetPageSizeOk

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

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

func (*MetricList) GetSize

func (o *MetricList) GetSize() int32

GetSize returns the Size field value

func (*MetricList) GetSizeOk

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

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

func (MetricList) MarshalJSON

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

func (*MetricList) SetItems

func (o *MetricList) SetItems(v []Metric)

SetItems sets field value

func (*MetricList) SetNextPageToken

func (o *MetricList) SetNextPageToken(v string)

SetNextPageToken sets field value

func (*MetricList) SetPageSize

func (o *MetricList) SetPageSize(v int32)

SetPageSize sets field value

func (*MetricList) SetSize

func (o *MetricList) SetSize(v int32)

SetSize sets field value

func (MetricList) ToMap

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

type MetricUpdate

type MetricUpdate 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"`
	ArtifactType *string `json:"artifactType,omitempty"`
	// The numeric value of the metric.
	Value *float64 `json:"value,omitempty"`
	// Unix timestamp in milliseconds when the metric was recorded.
	Timestamp *string `json:"timestamp,omitempty"`
	// The step number for multi-step metrics (e.g., training epochs).
	Step  *int64         `json:"step,omitempty"`
	State *ArtifactState `json:"state,omitempty"`
}

MetricUpdate A metric to be updated.

func NewMetricUpdate

func NewMetricUpdate() *MetricUpdate

NewMetricUpdate instantiates a new MetricUpdate 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 NewMetricUpdateWithDefaults

func NewMetricUpdateWithDefaults() *MetricUpdate

NewMetricUpdateWithDefaults instantiates a new MetricUpdate 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 (*MetricUpdate) GetArtifactType

func (o *MetricUpdate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*MetricUpdate) GetArtifactTypeOk

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

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

func (*MetricUpdate) GetCustomProperties

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

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

func (*MetricUpdate) GetCustomPropertiesOk

func (o *MetricUpdate) 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 (*MetricUpdate) GetDescription

func (o *MetricUpdate) GetDescription() string

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

func (*MetricUpdate) GetDescriptionOk

func (o *MetricUpdate) 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 (*MetricUpdate) GetExternalId

func (o *MetricUpdate) GetExternalId() string

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

func (*MetricUpdate) GetExternalIdOk

func (o *MetricUpdate) 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 (*MetricUpdate) GetState

func (o *MetricUpdate) GetState() ArtifactState

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

func (*MetricUpdate) GetStateOk

func (o *MetricUpdate) 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 (*MetricUpdate) GetStep

func (o *MetricUpdate) GetStep() int64

GetStep returns the Step field value if set, zero value otherwise.

func (*MetricUpdate) GetStepOk

func (o *MetricUpdate) GetStepOk() (*int64, bool)

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

func (*MetricUpdate) GetTimestamp

func (o *MetricUpdate) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*MetricUpdate) GetTimestampOk

func (o *MetricUpdate) GetTimestampOk() (*string, bool)

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

func (*MetricUpdate) GetValue

func (o *MetricUpdate) GetValue() float64

GetValue returns the Value field value if set, zero value otherwise.

func (*MetricUpdate) GetValueOk

func (o *MetricUpdate) GetValueOk() (*float64, bool)

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

func (*MetricUpdate) HasArtifactType

func (o *MetricUpdate) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*MetricUpdate) HasCustomProperties

func (o *MetricUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*MetricUpdate) HasDescription

func (o *MetricUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*MetricUpdate) HasExternalId

func (o *MetricUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*MetricUpdate) HasState

func (o *MetricUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (*MetricUpdate) HasStep

func (o *MetricUpdate) HasStep() bool

HasStep returns a boolean if a field has been set.

func (*MetricUpdate) HasTimestamp

func (o *MetricUpdate) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*MetricUpdate) HasValue

func (o *MetricUpdate) HasValue() bool

HasValue returns a boolean if a field has been set.

func (MetricUpdate) MarshalJSON

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

func (*MetricUpdate) SetArtifactType

func (o *MetricUpdate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*MetricUpdate) SetCustomProperties

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

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

func (*MetricUpdate) SetDescription

func (o *MetricUpdate) SetDescription(v string)

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

func (*MetricUpdate) SetExternalId

func (o *MetricUpdate) SetExternalId(v string)

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

func (*MetricUpdate) SetState

func (o *MetricUpdate) SetState(v ArtifactState)

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

func (*MetricUpdate) SetStep

func (o *MetricUpdate) SetStep(v int64)

SetStep gets a reference to the given int64 and assigns it to the Step field.

func (*MetricUpdate) SetTimestamp

func (o *MetricUpdate) SetTimestamp(v string)

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (*MetricUpdate) SetValue

func (o *MetricUpdate) SetValue(v float64)

SetValue gets a reference to the given float64 and assigns it to the Value field.

func (MetricUpdate) ToMap

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

type ModelArtifact

type ModelArtifact 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"`
	// 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"`
	// Optional id of the experiment that produced this artifact.
	ExperimentId *string `json:"experimentId,omitempty"`
	// Optional id of the experiment run that produced this artifact.
	ExperimentRunId *string `json:"experimentRunId,omitempty"`
	ArtifactType    *string `json:"artifactType,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"`
	// A string identifier describing the source kind. It differentiates various sources of model artifacts. This identifier should be agreed upon by producers and consumers of source model metadata. It is not an enumeration to keep the source of model metadata open ended.  E.g. Kubeflow pipelines could use `pipelines` to identify models it produces.
	ModelSourceKind *string `json:"modelSourceKind,omitempty"`
	// A subgroup within the source kind. It is a specific sub-component or instance within the source kind. E.g. `pipelinerun` for a Kubeflow pipeline run.
	ModelSourceClass *string `json:"modelSourceClass,omitempty"`
	// Unique identifier for a source group for models from source class.  It maps to a physical group of source models.  E.g. a Kubernetes namespace where the pipeline run was executed.
	ModelSourceGroup *string `json:"modelSourceGroup,omitempty"`
	// A unique identifier for a source model within kind, class, and group. It should be a url friendly string if source supports using URLs to locate source models. E.g. a pipeline run ID.
	ModelSourceId *string `json:"modelSourceId,omitempty"`
	// A human-readable name for the source model.  E.g. `my-project/1`, `ibm-granite/granite-3.1-8b-base:2.1.2`.
	ModelSourceName *string `json:"modelSourceName,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"`
}

ModelArtifact An ML model artifact.

func NewModelArtifact

func NewModelArtifact() *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 if set, zero value otherwise.

func (*ModelArtifact) GetArtifactTypeOk

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

GetArtifactTypeOk returns a tuple with the ArtifactType field value if set, nil otherwise 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) GetExperimentId

func (o *ModelArtifact) GetExperimentId() string

GetExperimentId returns the ExperimentId field value if set, zero value otherwise.

func (*ModelArtifact) GetExperimentIdOk

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

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

func (*ModelArtifact) GetExperimentRunId

func (o *ModelArtifact) GetExperimentRunId() string

GetExperimentRunId returns the ExperimentRunId field value if set, zero value otherwise.

func (*ModelArtifact) GetExperimentRunIdOk

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

GetExperimentRunIdOk returns a tuple with the ExperimentRunId 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) GetModelSourceClass

func (o *ModelArtifact) GetModelSourceClass() string

GetModelSourceClass returns the ModelSourceClass field value if set, zero value otherwise.

func (*ModelArtifact) GetModelSourceClassOk

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

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

func (*ModelArtifact) GetModelSourceGroup

func (o *ModelArtifact) GetModelSourceGroup() string

GetModelSourceGroup returns the ModelSourceGroup field value if set, zero value otherwise.

func (*ModelArtifact) GetModelSourceGroupOk

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

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

func (*ModelArtifact) GetModelSourceId

func (o *ModelArtifact) GetModelSourceId() string

GetModelSourceId returns the ModelSourceId field value if set, zero value otherwise.

func (*ModelArtifact) GetModelSourceIdOk

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

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

func (*ModelArtifact) GetModelSourceKind

func (o *ModelArtifact) GetModelSourceKind() string

GetModelSourceKind returns the ModelSourceKind field value if set, zero value otherwise.

func (*ModelArtifact) GetModelSourceKindOk

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

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

func (*ModelArtifact) GetModelSourceName

func (o *ModelArtifact) GetModelSourceName() string

GetModelSourceName returns the ModelSourceName field value if set, zero value otherwise.

func (*ModelArtifact) GetModelSourceNameOk

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

GetModelSourceNameOk returns a tuple with the ModelSourceName 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) HasArtifactType

func (o *ModelArtifact) HasArtifactType() bool

HasArtifactType returns a boolean if a field 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) HasExperimentId

func (o *ModelArtifact) HasExperimentId() bool

HasExperimentId returns a boolean if a field has been set.

func (*ModelArtifact) HasExperimentRunId

func (o *ModelArtifact) HasExperimentRunId() bool

HasExperimentRunId 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) HasModelSourceClass

func (o *ModelArtifact) HasModelSourceClass() bool

HasModelSourceClass returns a boolean if a field has been set.

func (*ModelArtifact) HasModelSourceGroup

func (o *ModelArtifact) HasModelSourceGroup() bool

HasModelSourceGroup returns a boolean if a field has been set.

func (*ModelArtifact) HasModelSourceId

func (o *ModelArtifact) HasModelSourceId() bool

HasModelSourceId returns a boolean if a field has been set.

func (*ModelArtifact) HasModelSourceKind

func (o *ModelArtifact) HasModelSourceKind() bool

HasModelSourceKind returns a boolean if a field has been set.

func (*ModelArtifact) HasModelSourceName

func (o *ModelArtifact) HasModelSourceName() bool

HasModelSourceName 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 gets a reference to the given string and assigns it to the ArtifactType field.

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) SetExperimentId

func (o *ModelArtifact) SetExperimentId(v string)

SetExperimentId gets a reference to the given string and assigns it to the ExperimentId field.

func (*ModelArtifact) SetExperimentRunId

func (o *ModelArtifact) SetExperimentRunId(v string)

SetExperimentRunId gets a reference to the given string and assigns it to the ExperimentRunId 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) SetModelSourceClass

func (o *ModelArtifact) SetModelSourceClass(v string)

SetModelSourceClass gets a reference to the given string and assigns it to the ModelSourceClass field.

func (*ModelArtifact) SetModelSourceGroup

func (o *ModelArtifact) SetModelSourceGroup(v string)

SetModelSourceGroup gets a reference to the given string and assigns it to the ModelSourceGroup field.

func (*ModelArtifact) SetModelSourceId

func (o *ModelArtifact) SetModelSourceId(v string)

SetModelSourceId gets a reference to the given string and assigns it to the ModelSourceId field.

func (*ModelArtifact) SetModelSourceKind

func (o *ModelArtifact) SetModelSourceKind(v string)

SetModelSourceKind gets a reference to the given string and assigns it to the ModelSourceKind field.

func (*ModelArtifact) SetModelSourceName

func (o *ModelArtifact) SetModelSourceName(v string)

SetModelSourceName gets a reference to the given string and assigns it to the ModelSourceName 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 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"`
	ArtifactType *string `json:"artifactType,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"`
	// A string identifier describing the source kind. It differentiates various sources of model artifacts. This identifier should be agreed upon by producers and consumers of source model metadata. It is not an enumeration to keep the source of model metadata open ended.  E.g. Kubeflow pipelines could use `pipelines` to identify models it produces.
	ModelSourceKind *string `json:"modelSourceKind,omitempty"`
	// A subgroup within the source kind. It is a specific sub-component or instance within the source kind. E.g. `pipelinerun` for a Kubeflow pipeline run.
	ModelSourceClass *string `json:"modelSourceClass,omitempty"`
	// Unique identifier for a source group for models from source class.  It maps to a physical group of source models.  E.g. a Kubernetes namespace where the pipeline run was executed.
	ModelSourceGroup *string `json:"modelSourceGroup,omitempty"`
	// A unique identifier for a source model within kind, class, and group. It should be a url friendly string if source supports using URLs to locate source models. E.g. a pipeline run ID.
	ModelSourceId *string `json:"modelSourceId,omitempty"`
	// A human-readable name for the source model.  E.g. `my-project/1`, `ibm-granite/granite-3.1-8b-base:2.1.2`.
	ModelSourceName *string `json:"modelSourceName,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"`
}

ModelArtifactCreate struct for ModelArtifactCreate

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) GetArtifactType

func (o *ModelArtifactCreate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetArtifactTypeOk

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

GetArtifactTypeOk returns a tuple with the ArtifactType field value if set, nil otherwise and a boolean to check if the value has been 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) GetModelSourceClass

func (o *ModelArtifactCreate) GetModelSourceClass() string

GetModelSourceClass returns the ModelSourceClass field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetModelSourceClassOk

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

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

func (*ModelArtifactCreate) GetModelSourceGroup

func (o *ModelArtifactCreate) GetModelSourceGroup() string

GetModelSourceGroup returns the ModelSourceGroup field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetModelSourceGroupOk

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

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

func (*ModelArtifactCreate) GetModelSourceId

func (o *ModelArtifactCreate) GetModelSourceId() string

GetModelSourceId returns the ModelSourceId field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetModelSourceIdOk

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

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

func (*ModelArtifactCreate) GetModelSourceKind

func (o *ModelArtifactCreate) GetModelSourceKind() string

GetModelSourceKind returns the ModelSourceKind field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetModelSourceKindOk

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

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

func (*ModelArtifactCreate) GetModelSourceName

func (o *ModelArtifactCreate) GetModelSourceName() string

GetModelSourceName returns the ModelSourceName field value if set, zero value otherwise.

func (*ModelArtifactCreate) GetModelSourceNameOk

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

GetModelSourceNameOk returns a tuple with the ModelSourceName 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) HasArtifactType

func (o *ModelArtifactCreate) HasArtifactType() bool

HasArtifactType returns a boolean if a field 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) HasModelSourceClass

func (o *ModelArtifactCreate) HasModelSourceClass() bool

HasModelSourceClass returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasModelSourceGroup

func (o *ModelArtifactCreate) HasModelSourceGroup() bool

HasModelSourceGroup returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasModelSourceId

func (o *ModelArtifactCreate) HasModelSourceId() bool

HasModelSourceId returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasModelSourceKind

func (o *ModelArtifactCreate) HasModelSourceKind() bool

HasModelSourceKind returns a boolean if a field has been set.

func (*ModelArtifactCreate) HasModelSourceName

func (o *ModelArtifactCreate) HasModelSourceName() bool

HasModelSourceName 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) SetArtifactType

func (o *ModelArtifactCreate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

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) SetModelSourceClass

func (o *ModelArtifactCreate) SetModelSourceClass(v string)

SetModelSourceClass gets a reference to the given string and assigns it to the ModelSourceClass field.

func (*ModelArtifactCreate) SetModelSourceGroup

func (o *ModelArtifactCreate) SetModelSourceGroup(v string)

SetModelSourceGroup gets a reference to the given string and assigns it to the ModelSourceGroup field.

func (*ModelArtifactCreate) SetModelSourceId

func (o *ModelArtifactCreate) SetModelSourceId(v string)

SetModelSourceId gets a reference to the given string and assigns it to the ModelSourceId field.

func (*ModelArtifactCreate) SetModelSourceKind

func (o *ModelArtifactCreate) SetModelSourceKind(v string)

SetModelSourceKind gets a reference to the given string and assigns it to the ModelSourceKind field.

func (*ModelArtifactCreate) SetModelSourceName

func (o *ModelArtifactCreate) SetModelSourceName(v string)

SetModelSourceName gets a reference to the given string and assigns it to the ModelSourceName 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"`
}

ModelArtifactList List of ModelArtifact entities.

func NewModelArtifactList

func NewModelArtifactList(nextPageToken string, pageSize int32, size int32, items []ModelArtifact) *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

func (*ModelArtifactList) GetItemsOk

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

GetItemsOk returns a tuple with the Items field value 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) MarshalJSON

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

func (*ModelArtifactList) SetItems

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

SetItems sets field value

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"`
	ArtifactType *string `json:"artifactType,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"`
	// A string identifier describing the source kind. It differentiates various sources of model artifacts. This identifier should be agreed upon by producers and consumers of source model metadata. It is not an enumeration to keep the source of model metadata open ended.  E.g. Kubeflow pipelines could use `pipelines` to identify models it produces.
	ModelSourceKind *string `json:"modelSourceKind,omitempty"`
	// A subgroup within the source kind. It is a specific sub-component or instance within the source kind. E.g. `pipelinerun` for a Kubeflow pipeline run.
	ModelSourceClass *string `json:"modelSourceClass,omitempty"`
	// Unique identifier for a source group for models from source class.  It maps to a physical group of source models.  E.g. a Kubernetes namespace where the pipeline run was executed.
	ModelSourceGroup *string `json:"modelSourceGroup,omitempty"`
	// A unique identifier for a source model within kind, class, and group. It should be a url friendly string if source supports using URLs to locate source models. E.g. a pipeline run ID.
	ModelSourceId *string `json:"modelSourceId,omitempty"`
	// A human-readable name for the source model.  E.g. `my-project/1`, `ibm-granite/granite-3.1-8b-base:2.1.2`.
	ModelSourceName *string `json:"modelSourceName,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"`
}

ModelArtifactUpdate An ML model artifact to be updated.

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) GetArtifactType

func (o *ModelArtifactUpdate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetArtifactTypeOk

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

GetArtifactTypeOk returns a tuple with the ArtifactType field value if set, nil otherwise and a boolean to check if the value has been 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) GetModelSourceClass

func (o *ModelArtifactUpdate) GetModelSourceClass() string

GetModelSourceClass returns the ModelSourceClass field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetModelSourceClassOk

func (o *ModelArtifactUpdate) GetModelSourceClassOk() (*string, bool)

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

func (*ModelArtifactUpdate) GetModelSourceGroup

func (o *ModelArtifactUpdate) GetModelSourceGroup() string

GetModelSourceGroup returns the ModelSourceGroup field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetModelSourceGroupOk

func (o *ModelArtifactUpdate) GetModelSourceGroupOk() (*string, bool)

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

func (*ModelArtifactUpdate) GetModelSourceId

func (o *ModelArtifactUpdate) GetModelSourceId() string

GetModelSourceId returns the ModelSourceId field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetModelSourceIdOk

func (o *ModelArtifactUpdate) GetModelSourceIdOk() (*string, bool)

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

func (*ModelArtifactUpdate) GetModelSourceKind

func (o *ModelArtifactUpdate) GetModelSourceKind() string

GetModelSourceKind returns the ModelSourceKind field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetModelSourceKindOk

func (o *ModelArtifactUpdate) GetModelSourceKindOk() (*string, bool)

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

func (*ModelArtifactUpdate) GetModelSourceName

func (o *ModelArtifactUpdate) GetModelSourceName() string

GetModelSourceName returns the ModelSourceName field value if set, zero value otherwise.

func (*ModelArtifactUpdate) GetModelSourceNameOk

func (o *ModelArtifactUpdate) GetModelSourceNameOk() (*string, bool)

GetModelSourceNameOk returns a tuple with the ModelSourceName 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) HasArtifactType

func (o *ModelArtifactUpdate) HasArtifactType() bool

HasArtifactType returns a boolean if a field 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) HasModelSourceClass

func (o *ModelArtifactUpdate) HasModelSourceClass() bool

HasModelSourceClass returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasModelSourceGroup

func (o *ModelArtifactUpdate) HasModelSourceGroup() bool

HasModelSourceGroup returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasModelSourceId

func (o *ModelArtifactUpdate) HasModelSourceId() bool

HasModelSourceId returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasModelSourceKind

func (o *ModelArtifactUpdate) HasModelSourceKind() bool

HasModelSourceKind returns a boolean if a field has been set.

func (*ModelArtifactUpdate) HasModelSourceName

func (o *ModelArtifactUpdate) HasModelSourceName() bool

HasModelSourceName 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) SetArtifactType

func (o *ModelArtifactUpdate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

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) SetModelSourceClass

func (o *ModelArtifactUpdate) SetModelSourceClass(v string)

SetModelSourceClass gets a reference to the given string and assigns it to the ModelSourceClass field.

func (*ModelArtifactUpdate) SetModelSourceGroup

func (o *ModelArtifactUpdate) SetModelSourceGroup(v string)

SetModelSourceGroup gets a reference to the given string and assigns it to the ModelSourceGroup field.

func (*ModelArtifactUpdate) SetModelSourceId

func (o *ModelArtifactUpdate) SetModelSourceId(v string)

SetModelSourceId gets a reference to the given string and assigns it to the ModelSourceId field.

func (*ModelArtifactUpdate) SetModelSourceKind

func (o *ModelArtifactUpdate) SetModelSourceKind(v string)

SetModelSourceKind gets a reference to the given string and assigns it to the ModelSourceKind field.

func (*ModelArtifactUpdate) SetModelSourceName

func (o *ModelArtifactUpdate) SetModelSourceName(v string)

SetModelSourceName gets a reference to the given string and assigns it to the ModelSourceName 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) CreateArtifact

CreateArtifact Create an Artifact

Creates a new instance of an `Artifact`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateArtifactRequest

func (*ModelRegistryServiceAPIService) CreateArtifactExecute

Execute executes the request

@return Artifact

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) CreateExperiment

CreateExperiment Create an Experiment

Creates a new instance of an `Experiment`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateExperimentRequest

func (*ModelRegistryServiceAPIService) CreateExperimentExecute

Execute executes the request

@return Experiment

func (*ModelRegistryServiceAPIService) CreateExperimentExperimentRun

func (a *ModelRegistryServiceAPIService) CreateExperimentExperimentRun(ctx context.Context, experimentId string) ApiCreateExperimentExperimentRunRequest

CreateExperimentExperimentRun Create an ExperimentRun in Experiment

Creates a new instance of an `ExperimentRun`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentId A unique identifier for an `Experiment`.
@return ApiCreateExperimentExperimentRunRequest

func (*ModelRegistryServiceAPIService) CreateExperimentExperimentRunExecute

Execute executes the request

@return ExperimentRun

func (*ModelRegistryServiceAPIService) CreateExperimentRun

CreateExperimentRun Create an ExperimentRun

Creates a new instance of an `ExperimentRun`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateExperimentRunRequest

func (*ModelRegistryServiceAPIService) CreateExperimentRunExecute

Execute executes the request

@return ExperimentRun

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) 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) FindArtifact

FindArtifact Get an Artifact that matches search parameters.

Gets the details of a single instance of an `Artifact` that matches search parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindArtifactRequest

func (*ModelRegistryServiceAPIService) FindArtifactExecute

Execute executes the request

@return Artifact

func (*ModelRegistryServiceAPIService) FindExperiment

FindExperiment Get an Experiment that matches search parameters.

Gets the details of a single instance of an `Experiment` that matches search parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindExperimentRequest

func (*ModelRegistryServiceAPIService) FindExperimentExecute

Execute executes the request

@return Experiment

func (*ModelRegistryServiceAPIService) FindExperimentRun

FindExperimentRun Get an ExperimentRun that matches search parameters.

Gets the details of a single instance of an `ExperimentRun` that matches search parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindExperimentRunRequest

func (*ModelRegistryServiceAPIService) FindExperimentRunExecute

Execute executes the request

@return ExperimentRun

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) GetArtifact

GetArtifact Get an Artifact

Gets the details of a single instance of an `Artifact`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id A unique identifier for an `Artifact`.
@return ApiGetArtifactRequest

func (*ModelRegistryServiceAPIService) GetArtifactExecute

Execute executes the request

@return Artifact

func (*ModelRegistryServiceAPIService) GetArtifacts

GetArtifacts List All Artifacts

Gets a list of all `Artifact` entities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetArtifactsRequest

func (*ModelRegistryServiceAPIService) GetArtifactsExecute

Execute executes the request

@return ArtifactList

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) GetExperiment

func (a *ModelRegistryServiceAPIService) GetExperiment(ctx context.Context, experimentId string) ApiGetExperimentRequest

GetExperiment Get an Experiment

Gets the details of a single instance of an `Experiment`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentId A unique identifier for an `Experiment`.
@return ApiGetExperimentRequest

func (*ModelRegistryServiceAPIService) GetExperimentExecute

Execute executes the request

@return Experiment

func (*ModelRegistryServiceAPIService) GetExperimentExperimentRuns

func (a *ModelRegistryServiceAPIService) GetExperimentExperimentRuns(ctx context.Context, experimentId string) ApiGetExperimentExperimentRunsRequest

GetExperimentExperimentRuns List All Experiment's ExperimentRuns

Gets a list of all `ExperimentRun` entities for the `Experiment`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentId A unique identifier for an `Experiment`.
@return ApiGetExperimentExperimentRunsRequest

func (*ModelRegistryServiceAPIService) GetExperimentExperimentRunsExecute

Execute executes the request

@return ExperimentRunList

func (*ModelRegistryServiceAPIService) GetExperimentRun

func (a *ModelRegistryServiceAPIService) GetExperimentRun(ctx context.Context, experimentrunId string) ApiGetExperimentRunRequest

GetExperimentRun Get an ExperimentRun

Gets the details of a single instance of an `ExperimentRun`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentrunId A unique identifier for an `ExperimentRun`.
@return ApiGetExperimentRunRequest

func (*ModelRegistryServiceAPIService) GetExperimentRunArtifacts

func (a *ModelRegistryServiceAPIService) GetExperimentRunArtifacts(ctx context.Context, experimentrunId string) ApiGetExperimentRunArtifactsRequest

GetExperimentRunArtifacts List all artifacts associated with the `ExperimentRun`

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentrunId A unique identifier for an `ExperimentRun`.
@return ApiGetExperimentRunArtifactsRequest

func (*ModelRegistryServiceAPIService) GetExperimentRunArtifactsExecute

Execute executes the request

@return ArtifactList

func (*ModelRegistryServiceAPIService) GetExperimentRunExecute

Execute executes the request

@return ExperimentRun

func (*ModelRegistryServiceAPIService) GetExperimentRunMetricHistory

func (a *ModelRegistryServiceAPIService) GetExperimentRunMetricHistory(ctx context.Context, experimentrunId string) ApiGetExperimentRunMetricHistoryRequest

GetExperimentRunMetricHistory Get metric history for an ExperimentRun

Gets the metric history for an `ExperimentRun` with optional filtering by metric name and step IDs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentrunId A unique identifier for an `ExperimentRun`.
@return ApiGetExperimentRunMetricHistoryRequest

func (*ModelRegistryServiceAPIService) GetExperimentRunMetricHistoryExecute

Execute executes the request

@return MetricList

func (*ModelRegistryServiceAPIService) GetExperimentRuns

GetExperimentRuns List All ExperimentRuns

Gets a list of all `ExperimentRun` entities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetExperimentRunsRequest

func (*ModelRegistryServiceAPIService) GetExperimentRunsExecute

Execute executes the request

@return ExperimentRunList

func (*ModelRegistryServiceAPIService) GetExperimentRunsMetricHistory added in v0.3.1

GetExperimentRunsMetricHistory Get metric history for multiple ExperimentRuns

Gets the metric history for multiple `ExperimentRun` entities with optional filtering by metric name, step IDs, and experiment run IDs.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetExperimentRunsMetricHistoryRequest

func (*ModelRegistryServiceAPIService) GetExperimentRunsMetricHistoryExecute added in v0.3.1

Execute executes the request

@return MetricList

func (*ModelRegistryServiceAPIService) GetExperiments

GetExperiments List All Experiments

Gets a list of all `Experiment` entities.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetExperimentsRequest

func (*ModelRegistryServiceAPIService) GetExperimentsExecute

Execute executes the request

@return ExperimentList

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) UpdateArtifact

UpdateArtifact Update an Artifact

Updates an existing `Artifact`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id A unique identifier for an `Artifact`.
@return ApiUpdateArtifactRequest

func (*ModelRegistryServiceAPIService) UpdateArtifactExecute

Execute executes the request

@return Artifact

func (*ModelRegistryServiceAPIService) UpdateExperiment

func (a *ModelRegistryServiceAPIService) UpdateExperiment(ctx context.Context, experimentId string) ApiUpdateExperimentRequest

UpdateExperiment Update an Experiment

Updates an existing `Experiment`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentId A unique identifier for an `Experiment`.
@return ApiUpdateExperimentRequest

func (*ModelRegistryServiceAPIService) UpdateExperimentExecute

Execute executes the request

@return Experiment

func (*ModelRegistryServiceAPIService) UpdateExperimentRun

func (a *ModelRegistryServiceAPIService) UpdateExperimentRun(ctx context.Context, experimentrunId string) ApiUpdateExperimentRunRequest

UpdateExperimentRun Update an ExperimentRun

Updates an existing `ExperimentRun`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentrunId A unique identifier for an `ExperimentRun`.
@return ApiUpdateExperimentRunRequest

func (*ModelRegistryServiceAPIService) UpdateExperimentRunExecute

Execute executes the request

@return ExperimentRun

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

func (*ModelRegistryServiceAPIService) UpsertExperimentRunArtifact

func (a *ModelRegistryServiceAPIService) UpsertExperimentRunArtifact(ctx context.Context, experimentrunId string) ApiUpsertExperimentRunArtifactRequest

UpsertExperimentRunArtifact Upsert an Artifact in an ExperimentRun

Creates a new instance of an Artifact if needed and associates it with `ExperimentRun`.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param experimentrunId A unique identifier for an `ExperimentRun`.
@return ApiUpsertExperimentRunArtifactRequest

func (*ModelRegistryServiceAPIService) UpsertExperimentRunArtifactExecute

Execute executes the request

@return Artifact

func (*ModelRegistryServiceAPIService) UpsertModelVersionArtifact

func (a *ModelRegistryServiceAPIService) UpsertModelVersionArtifact(ctx context.Context, modelversionId string) ApiUpsertModelVersionArtifactRequest

UpsertModelVersionArtifact Upsert 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 ApiUpsertModelVersionArtifactRequest

func (*ModelRegistryServiceAPIService) UpsertModelVersionArtifactExecute

Execute executes the request

@return Artifact

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"`
	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"`
	// 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(name string, 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

func (*ModelVersion) GetNameOk

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

GetNameOk returns a tuple with the Name field value 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) 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 sets field value

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 model's version. It must be unique among all the ModelVersions of the same type within a Model Registry instance and cannot be changed once set.
	Name  string             `json:"name"`
	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(name string, 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

func (*ModelVersionCreate) GetNameOk

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

GetNameOk returns a tuple with the Name field value 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) 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 sets field value

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"`
}

ModelVersionList List of ModelVersion entities.

func NewModelVersionList

func NewModelVersionList(nextPageToken string, pageSize int32, size int32, items []ModelVersion) *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

func (*ModelVersionList) GetItemsOk

func (o *ModelVersionList) GetItemsOk() ([]ModelVersion, bool)

GetItemsOk returns a tuple with the Items field value 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) MarshalJSON

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

func (*ModelVersionList) SetItems

func (o *ModelVersionList) SetItems(v []ModelVersion)

SetItems sets field value

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 NullableArtifactCreate

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

func NewNullableArtifactCreate

func NewNullableArtifactCreate(val *ArtifactCreate) *NullableArtifactCreate

func (NullableArtifactCreate) Get

func (NullableArtifactCreate) IsSet

func (v NullableArtifactCreate) IsSet() bool

func (NullableArtifactCreate) MarshalJSON

func (v NullableArtifactCreate) MarshalJSON() ([]byte, error)

func (*NullableArtifactCreate) Set

func (*NullableArtifactCreate) UnmarshalJSON

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

func (*NullableArtifactCreate) Unset

func (v *NullableArtifactCreate) 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 NullableArtifactTypeQueryParam

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

func (NullableArtifactTypeQueryParam) Get

func (NullableArtifactTypeQueryParam) IsSet

func (NullableArtifactTypeQueryParam) MarshalJSON

func (v NullableArtifactTypeQueryParam) MarshalJSON() ([]byte, error)

func (*NullableArtifactTypeQueryParam) Set

func (*NullableArtifactTypeQueryParam) UnmarshalJSON

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

func (*NullableArtifactTypeQueryParam) Unset

func (v *NullableArtifactTypeQueryParam) Unset()

type NullableArtifactUpdate

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

func NewNullableArtifactUpdate

func NewNullableArtifactUpdate(val *ArtifactUpdate) *NullableArtifactUpdate

func (NullableArtifactUpdate) Get

func (NullableArtifactUpdate) IsSet

func (v NullableArtifactUpdate) IsSet() bool

func (NullableArtifactUpdate) MarshalJSON

func (v NullableArtifactUpdate) MarshalJSON() ([]byte, error)

func (*NullableArtifactUpdate) Set

func (*NullableArtifactUpdate) UnmarshalJSON

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

func (*NullableArtifactUpdate) Unset

func (v *NullableArtifactUpdate) 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 NullableBaseModel

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

func NewNullableBaseModel

func NewNullableBaseModel(val *BaseModel) *NullableBaseModel

func (NullableBaseModel) Get

func (v NullableBaseModel) Get() *BaseModel

func (NullableBaseModel) IsSet

func (v NullableBaseModel) IsSet() bool

func (NullableBaseModel) MarshalJSON

func (v NullableBaseModel) MarshalJSON() ([]byte, error)

func (*NullableBaseModel) Set

func (v *NullableBaseModel) Set(val *BaseModel)

func (*NullableBaseModel) UnmarshalJSON

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

func (*NullableBaseModel) Unset

func (v *NullableBaseModel) 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 NullableBaseResourceDates

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

func NewNullableBaseResourceDates

func NewNullableBaseResourceDates(val *BaseResourceDates) *NullableBaseResourceDates

func (NullableBaseResourceDates) Get

func (NullableBaseResourceDates) IsSet

func (v NullableBaseResourceDates) IsSet() bool

func (NullableBaseResourceDates) MarshalJSON

func (v NullableBaseResourceDates) MarshalJSON() ([]byte, error)

func (*NullableBaseResourceDates) Set

func (*NullableBaseResourceDates) UnmarshalJSON

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

func (*NullableBaseResourceDates) Unset

func (v *NullableBaseResourceDates) 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 NullableDataSet

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

func NewNullableDataSet

func NewNullableDataSet(val *DataSet) *NullableDataSet

func (NullableDataSet) Get

func (v NullableDataSet) Get() *DataSet

func (NullableDataSet) IsSet

func (v NullableDataSet) IsSet() bool

func (NullableDataSet) MarshalJSON

func (v NullableDataSet) MarshalJSON() ([]byte, error)

func (*NullableDataSet) Set

func (v *NullableDataSet) Set(val *DataSet)

func (*NullableDataSet) UnmarshalJSON

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

func (*NullableDataSet) Unset

func (v *NullableDataSet) Unset()

type NullableDataSetCreate

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

func NewNullableDataSetCreate

func NewNullableDataSetCreate(val *DataSetCreate) *NullableDataSetCreate

func (NullableDataSetCreate) Get

func (NullableDataSetCreate) IsSet

func (v NullableDataSetCreate) IsSet() bool

func (NullableDataSetCreate) MarshalJSON

func (v NullableDataSetCreate) MarshalJSON() ([]byte, error)

func (*NullableDataSetCreate) Set

func (v *NullableDataSetCreate) Set(val *DataSetCreate)

func (*NullableDataSetCreate) UnmarshalJSON

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

func (*NullableDataSetCreate) Unset

func (v *NullableDataSetCreate) Unset()

type NullableDataSetList

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

func NewNullableDataSetList

func NewNullableDataSetList(val *DataSetList) *NullableDataSetList

func (NullableDataSetList) Get

func (NullableDataSetList) IsSet

func (v NullableDataSetList) IsSet() bool

func (NullableDataSetList) MarshalJSON

func (v NullableDataSetList) MarshalJSON() ([]byte, error)

func (*NullableDataSetList) Set

func (v *NullableDataSetList) Set(val *DataSetList)

func (*NullableDataSetList) UnmarshalJSON

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

func (*NullableDataSetList) Unset

func (v *NullableDataSetList) Unset()

type NullableDataSetUpdate

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

func NewNullableDataSetUpdate

func NewNullableDataSetUpdate(val *DataSetUpdate) *NullableDataSetUpdate

func (NullableDataSetUpdate) Get

func (NullableDataSetUpdate) IsSet

func (v NullableDataSetUpdate) IsSet() bool

func (NullableDataSetUpdate) MarshalJSON

func (v NullableDataSetUpdate) MarshalJSON() ([]byte, error)

func (*NullableDataSetUpdate) Set

func (v *NullableDataSetUpdate) Set(val *DataSetUpdate)

func (*NullableDataSetUpdate) UnmarshalJSON

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

func (*NullableDataSetUpdate) Unset

func (v *NullableDataSetUpdate) 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 NullableDocArtifactCreate

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

func NewNullableDocArtifactCreate

func NewNullableDocArtifactCreate(val *DocArtifactCreate) *NullableDocArtifactCreate

func (NullableDocArtifactCreate) Get

func (NullableDocArtifactCreate) IsSet

func (v NullableDocArtifactCreate) IsSet() bool

func (NullableDocArtifactCreate) MarshalJSON

func (v NullableDocArtifactCreate) MarshalJSON() ([]byte, error)

func (*NullableDocArtifactCreate) Set

func (*NullableDocArtifactCreate) UnmarshalJSON

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

func (*NullableDocArtifactCreate) Unset

func (v *NullableDocArtifactCreate) Unset()

type NullableDocArtifactUpdate

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

func NewNullableDocArtifactUpdate

func NewNullableDocArtifactUpdate(val *DocArtifactUpdate) *NullableDocArtifactUpdate

func (NullableDocArtifactUpdate) Get

func (NullableDocArtifactUpdate) IsSet

func (v NullableDocArtifactUpdate) IsSet() bool

func (NullableDocArtifactUpdate) MarshalJSON

func (v NullableDocArtifactUpdate) MarshalJSON() ([]byte, error)

func (*NullableDocArtifactUpdate) Set

func (*NullableDocArtifactUpdate) UnmarshalJSON

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

func (*NullableDocArtifactUpdate) Unset

func (v *NullableDocArtifactUpdate) 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 NullableExperiment

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

func NewNullableExperiment

func NewNullableExperiment(val *Experiment) *NullableExperiment

func (NullableExperiment) Get

func (v NullableExperiment) Get() *Experiment

func (NullableExperiment) IsSet

func (v NullableExperiment) IsSet() bool

func (NullableExperiment) MarshalJSON

func (v NullableExperiment) MarshalJSON() ([]byte, error)

func (*NullableExperiment) Set

func (v *NullableExperiment) Set(val *Experiment)

func (*NullableExperiment) UnmarshalJSON

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

func (*NullableExperiment) Unset

func (v *NullableExperiment) Unset()

type NullableExperimentCreate

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

func NewNullableExperimentCreate

func NewNullableExperimentCreate(val *ExperimentCreate) *NullableExperimentCreate

func (NullableExperimentCreate) Get

func (NullableExperimentCreate) IsSet

func (v NullableExperimentCreate) IsSet() bool

func (NullableExperimentCreate) MarshalJSON

func (v NullableExperimentCreate) MarshalJSON() ([]byte, error)

func (*NullableExperimentCreate) Set

func (*NullableExperimentCreate) UnmarshalJSON

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

func (*NullableExperimentCreate) Unset

func (v *NullableExperimentCreate) Unset()

type NullableExperimentList

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

func NewNullableExperimentList

func NewNullableExperimentList(val *ExperimentList) *NullableExperimentList

func (NullableExperimentList) Get

func (NullableExperimentList) IsSet

func (v NullableExperimentList) IsSet() bool

func (NullableExperimentList) MarshalJSON

func (v NullableExperimentList) MarshalJSON() ([]byte, error)

func (*NullableExperimentList) Set

func (*NullableExperimentList) UnmarshalJSON

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

func (*NullableExperimentList) Unset

func (v *NullableExperimentList) Unset()

type NullableExperimentRun

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

func NewNullableExperimentRun

func NewNullableExperimentRun(val *ExperimentRun) *NullableExperimentRun

func (NullableExperimentRun) Get

func (NullableExperimentRun) IsSet

func (v NullableExperimentRun) IsSet() bool

func (NullableExperimentRun) MarshalJSON

func (v NullableExperimentRun) MarshalJSON() ([]byte, error)

func (*NullableExperimentRun) Set

func (v *NullableExperimentRun) Set(val *ExperimentRun)

func (*NullableExperimentRun) UnmarshalJSON

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

func (*NullableExperimentRun) Unset

func (v *NullableExperimentRun) Unset()

type NullableExperimentRunCreate

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

func NewNullableExperimentRunCreate

func NewNullableExperimentRunCreate(val *ExperimentRunCreate) *NullableExperimentRunCreate

func (NullableExperimentRunCreate) Get

func (NullableExperimentRunCreate) IsSet

func (NullableExperimentRunCreate) MarshalJSON

func (v NullableExperimentRunCreate) MarshalJSON() ([]byte, error)

func (*NullableExperimentRunCreate) Set

func (*NullableExperimentRunCreate) UnmarshalJSON

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

func (*NullableExperimentRunCreate) Unset

func (v *NullableExperimentRunCreate) Unset()

type NullableExperimentRunList

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

func NewNullableExperimentRunList

func NewNullableExperimentRunList(val *ExperimentRunList) *NullableExperimentRunList

func (NullableExperimentRunList) Get

func (NullableExperimentRunList) IsSet

func (v NullableExperimentRunList) IsSet() bool

func (NullableExperimentRunList) MarshalJSON

func (v NullableExperimentRunList) MarshalJSON() ([]byte, error)

func (*NullableExperimentRunList) Set

func (*NullableExperimentRunList) UnmarshalJSON

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

func (*NullableExperimentRunList) Unset

func (v *NullableExperimentRunList) Unset()

type NullableExperimentRunState

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

func NewNullableExperimentRunState

func NewNullableExperimentRunState(val *ExperimentRunState) *NullableExperimentRunState

func (NullableExperimentRunState) Get

func (NullableExperimentRunState) IsSet

func (v NullableExperimentRunState) IsSet() bool

func (NullableExperimentRunState) MarshalJSON

func (v NullableExperimentRunState) MarshalJSON() ([]byte, error)

func (*NullableExperimentRunState) Set

func (*NullableExperimentRunState) UnmarshalJSON

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

func (*NullableExperimentRunState) Unset

func (v *NullableExperimentRunState) Unset()

type NullableExperimentRunStatus

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

func NewNullableExperimentRunStatus

func NewNullableExperimentRunStatus(val *ExperimentRunStatus) *NullableExperimentRunStatus

func (NullableExperimentRunStatus) Get

func (NullableExperimentRunStatus) IsSet

func (NullableExperimentRunStatus) MarshalJSON

func (v NullableExperimentRunStatus) MarshalJSON() ([]byte, error)

func (*NullableExperimentRunStatus) Set

func (*NullableExperimentRunStatus) UnmarshalJSON

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

func (*NullableExperimentRunStatus) Unset

func (v *NullableExperimentRunStatus) Unset()

type NullableExperimentRunUpdate

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

func NewNullableExperimentRunUpdate

func NewNullableExperimentRunUpdate(val *ExperimentRunUpdate) *NullableExperimentRunUpdate

func (NullableExperimentRunUpdate) Get

func (NullableExperimentRunUpdate) IsSet

func (NullableExperimentRunUpdate) MarshalJSON

func (v NullableExperimentRunUpdate) MarshalJSON() ([]byte, error)

func (*NullableExperimentRunUpdate) Set

func (*NullableExperimentRunUpdate) UnmarshalJSON

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

func (*NullableExperimentRunUpdate) Unset

func (v *NullableExperimentRunUpdate) Unset()

type NullableExperimentState

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

func NewNullableExperimentState

func NewNullableExperimentState(val *ExperimentState) *NullableExperimentState

func (NullableExperimentState) Get

func (NullableExperimentState) IsSet

func (v NullableExperimentState) IsSet() bool

func (NullableExperimentState) MarshalJSON

func (v NullableExperimentState) MarshalJSON() ([]byte, error)

func (*NullableExperimentState) Set

func (*NullableExperimentState) UnmarshalJSON

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

func (*NullableExperimentState) Unset

func (v *NullableExperimentState) Unset()

type NullableExperimentUpdate

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

func NewNullableExperimentUpdate

func NewNullableExperimentUpdate(val *ExperimentUpdate) *NullableExperimentUpdate

func (NullableExperimentUpdate) Get

func (NullableExperimentUpdate) IsSet

func (v NullableExperimentUpdate) IsSet() bool

func (NullableExperimentUpdate) MarshalJSON

func (v NullableExperimentUpdate) MarshalJSON() ([]byte, error)

func (*NullableExperimentUpdate) Set

func (*NullableExperimentUpdate) UnmarshalJSON

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

func (*NullableExperimentUpdate) Unset

func (v *NullableExperimentUpdate) 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 NullableMetric

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

func NewNullableMetric

func NewNullableMetric(val *Metric) *NullableMetric

func (NullableMetric) Get

func (v NullableMetric) Get() *Metric

func (NullableMetric) IsSet

func (v NullableMetric) IsSet() bool

func (NullableMetric) MarshalJSON

func (v NullableMetric) MarshalJSON() ([]byte, error)

func (*NullableMetric) Set

func (v *NullableMetric) Set(val *Metric)

func (*NullableMetric) UnmarshalJSON

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

func (*NullableMetric) Unset

func (v *NullableMetric) Unset()

type NullableMetricCreate

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

func NewNullableMetricCreate

func NewNullableMetricCreate(val *MetricCreate) *NullableMetricCreate

func (NullableMetricCreate) Get

func (NullableMetricCreate) IsSet

func (v NullableMetricCreate) IsSet() bool

func (NullableMetricCreate) MarshalJSON

func (v NullableMetricCreate) MarshalJSON() ([]byte, error)

func (*NullableMetricCreate) Set

func (v *NullableMetricCreate) Set(val *MetricCreate)

func (*NullableMetricCreate) UnmarshalJSON

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

func (*NullableMetricCreate) Unset

func (v *NullableMetricCreate) Unset()

type NullableMetricList

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

func NewNullableMetricList

func NewNullableMetricList(val *MetricList) *NullableMetricList

func (NullableMetricList) Get

func (v NullableMetricList) Get() *MetricList

func (NullableMetricList) IsSet

func (v NullableMetricList) IsSet() bool

func (NullableMetricList) MarshalJSON

func (v NullableMetricList) MarshalJSON() ([]byte, error)

func (*NullableMetricList) Set

func (v *NullableMetricList) Set(val *MetricList)

func (*NullableMetricList) UnmarshalJSON

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

func (*NullableMetricList) Unset

func (v *NullableMetricList) Unset()

type NullableMetricUpdate

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

func NewNullableMetricUpdate

func NewNullableMetricUpdate(val *MetricUpdate) *NullableMetricUpdate

func (NullableMetricUpdate) Get

func (NullableMetricUpdate) IsSet

func (v NullableMetricUpdate) IsSet() bool

func (NullableMetricUpdate) MarshalJSON

func (v NullableMetricUpdate) MarshalJSON() ([]byte, error)

func (*NullableMetricUpdate) Set

func (v *NullableMetricUpdate) Set(val *MetricUpdate)

func (*NullableMetricUpdate) UnmarshalJSON

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

func (*NullableMetricUpdate) Unset

func (v *NullableMetricUpdate) 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 NullableParameter

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

func NewNullableParameter

func NewNullableParameter(val *Parameter) *NullableParameter

func (NullableParameter) Get

func (v NullableParameter) Get() *Parameter

func (NullableParameter) IsSet

func (v NullableParameter) IsSet() bool

func (NullableParameter) MarshalJSON

func (v NullableParameter) MarshalJSON() ([]byte, error)

func (*NullableParameter) Set

func (v *NullableParameter) Set(val *Parameter)

func (*NullableParameter) UnmarshalJSON

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

func (*NullableParameter) Unset

func (v *NullableParameter) Unset()

type NullableParameterCreate

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

func NewNullableParameterCreate

func NewNullableParameterCreate(val *ParameterCreate) *NullableParameterCreate

func (NullableParameterCreate) Get

func (NullableParameterCreate) IsSet

func (v NullableParameterCreate) IsSet() bool

func (NullableParameterCreate) MarshalJSON

func (v NullableParameterCreate) MarshalJSON() ([]byte, error)

func (*NullableParameterCreate) Set

func (*NullableParameterCreate) UnmarshalJSON

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

func (*NullableParameterCreate) Unset

func (v *NullableParameterCreate) Unset()

type NullableParameterType

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

func NewNullableParameterType

func NewNullableParameterType(val *ParameterType) *NullableParameterType

func (NullableParameterType) Get

func (NullableParameterType) IsSet

func (v NullableParameterType) IsSet() bool

func (NullableParameterType) MarshalJSON

func (v NullableParameterType) MarshalJSON() ([]byte, error)

func (*NullableParameterType) Set

func (v *NullableParameterType) Set(val *ParameterType)

func (*NullableParameterType) UnmarshalJSON

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

func (*NullableParameterType) Unset

func (v *NullableParameterType) Unset()

type NullableParameterUpdate

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

func NewNullableParameterUpdate

func NewNullableParameterUpdate(val *ParameterUpdate) *NullableParameterUpdate

func (NullableParameterUpdate) Get

func (NullableParameterUpdate) IsSet

func (v NullableParameterUpdate) IsSet() bool

func (NullableParameterUpdate) MarshalJSON

func (v NullableParameterUpdate) MarshalJSON() ([]byte, error)

func (*NullableParameterUpdate) Set

func (*NullableParameterUpdate) UnmarshalJSON

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

func (*NullableParameterUpdate) Unset

func (v *NullableParameterUpdate) 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 Parameter

type Parameter 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 name/key of the parameter (e.g., \"learning_rate\", \"batch_size\", \"epochs\").
	Name *string `json:"name,omitempty"`
	// 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"`
	// Optional id of the experiment that produced this artifact.
	ExperimentId *string `json:"experimentId,omitempty"`
	// Optional id of the experiment run that produced this artifact.
	ExperimentRunId *string `json:"experimentRunId,omitempty"`
	ArtifactType    *string `json:"artifactType,omitempty"`
	// The value of the parameter.
	Value         *string        `json:"value,omitempty"`
	ParameterType *ParameterType `json:"parameterType,omitempty"`
	State         *ArtifactState `json:"state,omitempty"`
}

Parameter A parameter representing a configuration parameter used in model training or execution.

func NewParameter

func NewParameter() *Parameter

NewParameter instantiates a new Parameter 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 NewParameterWithDefaults

func NewParameterWithDefaults() *Parameter

NewParameterWithDefaults instantiates a new Parameter 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 (*Parameter) GetArtifactType

func (o *Parameter) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*Parameter) GetArtifactTypeOk

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

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

func (*Parameter) GetCreateTimeSinceEpoch

func (o *Parameter) GetCreateTimeSinceEpoch() string

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

func (*Parameter) GetCreateTimeSinceEpochOk

func (o *Parameter) 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 (*Parameter) GetCustomProperties

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

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

func (*Parameter) GetCustomPropertiesOk

func (o *Parameter) 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 (*Parameter) GetDescription

func (o *Parameter) GetDescription() string

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

func (*Parameter) GetDescriptionOk

func (o *Parameter) 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 (*Parameter) GetExperimentId

func (o *Parameter) GetExperimentId() string

GetExperimentId returns the ExperimentId field value if set, zero value otherwise.

func (*Parameter) GetExperimentIdOk

func (o *Parameter) GetExperimentIdOk() (*string, bool)

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

func (*Parameter) GetExperimentRunId

func (o *Parameter) GetExperimentRunId() string

GetExperimentRunId returns the ExperimentRunId field value if set, zero value otherwise.

func (*Parameter) GetExperimentRunIdOk

func (o *Parameter) GetExperimentRunIdOk() (*string, bool)

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

func (*Parameter) GetExternalId

func (o *Parameter) GetExternalId() string

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

func (*Parameter) GetExternalIdOk

func (o *Parameter) 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 (*Parameter) GetId

func (o *Parameter) GetId() string

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

func (*Parameter) GetIdOk

func (o *Parameter) 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 (*Parameter) GetLastUpdateTimeSinceEpoch

func (o *Parameter) GetLastUpdateTimeSinceEpoch() string

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

func (*Parameter) GetLastUpdateTimeSinceEpochOk

func (o *Parameter) 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 (*Parameter) GetName

func (o *Parameter) GetName() string

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

func (*Parameter) GetNameOk

func (o *Parameter) 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 (*Parameter) GetParameterType

func (o *Parameter) GetParameterType() ParameterType

GetParameterType returns the ParameterType field value if set, zero value otherwise.

func (*Parameter) GetParameterTypeOk

func (o *Parameter) GetParameterTypeOk() (*ParameterType, bool)

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

func (*Parameter) GetState

func (o *Parameter) GetState() ArtifactState

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

func (*Parameter) GetStateOk

func (o *Parameter) 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 (*Parameter) GetValue

func (o *Parameter) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Parameter) GetValueOk

func (o *Parameter) GetValueOk() (*string, bool)

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

func (*Parameter) HasArtifactType

func (o *Parameter) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*Parameter) HasCreateTimeSinceEpoch

func (o *Parameter) HasCreateTimeSinceEpoch() bool

HasCreateTimeSinceEpoch returns a boolean if a field has been set.

func (*Parameter) HasCustomProperties

func (o *Parameter) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*Parameter) HasDescription

func (o *Parameter) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Parameter) HasExperimentId

func (o *Parameter) HasExperimentId() bool

HasExperimentId returns a boolean if a field has been set.

func (*Parameter) HasExperimentRunId

func (o *Parameter) HasExperimentRunId() bool

HasExperimentRunId returns a boolean if a field has been set.

func (*Parameter) HasExternalId

func (o *Parameter) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*Parameter) HasId

func (o *Parameter) HasId() bool

HasId returns a boolean if a field has been set.

func (*Parameter) HasLastUpdateTimeSinceEpoch

func (o *Parameter) HasLastUpdateTimeSinceEpoch() bool

HasLastUpdateTimeSinceEpoch returns a boolean if a field has been set.

func (*Parameter) HasName

func (o *Parameter) HasName() bool

HasName returns a boolean if a field has been set.

func (*Parameter) HasParameterType

func (o *Parameter) HasParameterType() bool

HasParameterType returns a boolean if a field has been set.

func (*Parameter) HasState

func (o *Parameter) HasState() bool

HasState returns a boolean if a field has been set.

func (*Parameter) HasValue

func (o *Parameter) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Parameter) MarshalJSON

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

func (*Parameter) SetArtifactType

func (o *Parameter) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*Parameter) SetCreateTimeSinceEpoch

func (o *Parameter) SetCreateTimeSinceEpoch(v string)

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

func (*Parameter) SetCustomProperties

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

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

func (*Parameter) SetDescription

func (o *Parameter) SetDescription(v string)

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

func (*Parameter) SetExperimentId

func (o *Parameter) SetExperimentId(v string)

SetExperimentId gets a reference to the given string and assigns it to the ExperimentId field.

func (*Parameter) SetExperimentRunId

func (o *Parameter) SetExperimentRunId(v string)

SetExperimentRunId gets a reference to the given string and assigns it to the ExperimentRunId field.

func (*Parameter) SetExternalId

func (o *Parameter) SetExternalId(v string)

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

func (*Parameter) SetId

func (o *Parameter) SetId(v string)

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

func (*Parameter) SetLastUpdateTimeSinceEpoch

func (o *Parameter) SetLastUpdateTimeSinceEpoch(v string)

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

func (*Parameter) SetName

func (o *Parameter) SetName(v string)

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

func (*Parameter) SetParameterType

func (o *Parameter) SetParameterType(v ParameterType)

SetParameterType gets a reference to the given ParameterType and assigns it to the ParameterType field.

func (*Parameter) SetState

func (o *Parameter) SetState(v ArtifactState)

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

func (*Parameter) SetValue

func (o *Parameter) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (Parameter) ToMap

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

type ParameterCreate

type ParameterCreate 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 name/key of the parameter (e.g., \"learning_rate\", \"batch_size\", \"epochs\").
	Name         *string `json:"name,omitempty"`
	ArtifactType *string `json:"artifactType,omitempty"`
	// The value of the parameter.
	Value         *string        `json:"value,omitempty"`
	ParameterType *ParameterType `json:"parameterType,omitempty"`
	State         *ArtifactState `json:"state,omitempty"`
}

ParameterCreate A parameter to be created.

func NewParameterCreate

func NewParameterCreate() *ParameterCreate

NewParameterCreate instantiates a new ParameterCreate 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 NewParameterCreateWithDefaults

func NewParameterCreateWithDefaults() *ParameterCreate

NewParameterCreateWithDefaults instantiates a new ParameterCreate 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 (*ParameterCreate) GetArtifactType

func (o *ParameterCreate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*ParameterCreate) GetArtifactTypeOk

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

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

func (*ParameterCreate) GetCustomProperties

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

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

func (*ParameterCreate) GetCustomPropertiesOk

func (o *ParameterCreate) 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 (*ParameterCreate) GetDescription

func (o *ParameterCreate) GetDescription() string

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

func (*ParameterCreate) GetDescriptionOk

func (o *ParameterCreate) 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 (*ParameterCreate) GetExternalId

func (o *ParameterCreate) GetExternalId() string

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

func (*ParameterCreate) GetExternalIdOk

func (o *ParameterCreate) 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 (*ParameterCreate) GetName

func (o *ParameterCreate) GetName() string

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

func (*ParameterCreate) GetNameOk

func (o *ParameterCreate) 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 (*ParameterCreate) GetParameterType

func (o *ParameterCreate) GetParameterType() ParameterType

GetParameterType returns the ParameterType field value if set, zero value otherwise.

func (*ParameterCreate) GetParameterTypeOk

func (o *ParameterCreate) GetParameterTypeOk() (*ParameterType, bool)

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

func (*ParameterCreate) GetState

func (o *ParameterCreate) GetState() ArtifactState

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

func (*ParameterCreate) GetStateOk

func (o *ParameterCreate) 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 (*ParameterCreate) GetValue

func (o *ParameterCreate) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ParameterCreate) GetValueOk

func (o *ParameterCreate) GetValueOk() (*string, bool)

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

func (*ParameterCreate) HasArtifactType

func (o *ParameterCreate) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*ParameterCreate) HasCustomProperties

func (o *ParameterCreate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ParameterCreate) HasDescription

func (o *ParameterCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ParameterCreate) HasExternalId

func (o *ParameterCreate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ParameterCreate) HasName

func (o *ParameterCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*ParameterCreate) HasParameterType

func (o *ParameterCreate) HasParameterType() bool

HasParameterType returns a boolean if a field has been set.

func (*ParameterCreate) HasState

func (o *ParameterCreate) HasState() bool

HasState returns a boolean if a field has been set.

func (*ParameterCreate) HasValue

func (o *ParameterCreate) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ParameterCreate) MarshalJSON

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

func (*ParameterCreate) SetArtifactType

func (o *ParameterCreate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*ParameterCreate) SetCustomProperties

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

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

func (*ParameterCreate) SetDescription

func (o *ParameterCreate) SetDescription(v string)

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

func (*ParameterCreate) SetExternalId

func (o *ParameterCreate) SetExternalId(v string)

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

func (*ParameterCreate) SetName

func (o *ParameterCreate) SetName(v string)

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

func (*ParameterCreate) SetParameterType

func (o *ParameterCreate) SetParameterType(v ParameterType)

SetParameterType gets a reference to the given ParameterType and assigns it to the ParameterType field.

func (*ParameterCreate) SetState

func (o *ParameterCreate) SetState(v ArtifactState)

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

func (*ParameterCreate) SetValue

func (o *ParameterCreate) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ParameterCreate) ToMap

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

type ParameterType

type ParameterType string

ParameterType The data type of the parameter (e.g., \"string\", \"number\", \"boolean\", \"object\").

const (
	PARAMETERTYPE_STRING  ParameterType = "string"
	PARAMETERTYPE_NUMBER  ParameterType = "number"
	PARAMETERTYPE_BOOLEAN ParameterType = "boolean"
	PARAMETERTYPE_OBJECT  ParameterType = "object"
)

List of ParameterType

func NewParameterTypeFromValue

func NewParameterTypeFromValue(v string) (*ParameterType, error)

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

func (ParameterType) IsValid

func (v ParameterType) IsValid() bool

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

func (ParameterType) Ptr

func (v ParameterType) Ptr() *ParameterType

Ptr returns reference to ParameterType value

func (*ParameterType) UnmarshalJSON

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

type ParameterUpdate

type ParameterUpdate 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"`
	ArtifactType *string `json:"artifactType,omitempty"`
	// The value of the parameter.
	Value         *string        `json:"value,omitempty"`
	ParameterType *ParameterType `json:"parameterType,omitempty"`
	State         *ArtifactState `json:"state,omitempty"`
}

ParameterUpdate A parameter to be updated.

func NewParameterUpdate

func NewParameterUpdate() *ParameterUpdate

NewParameterUpdate instantiates a new ParameterUpdate 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 NewParameterUpdateWithDefaults

func NewParameterUpdateWithDefaults() *ParameterUpdate

NewParameterUpdateWithDefaults instantiates a new ParameterUpdate 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 (*ParameterUpdate) GetArtifactType

func (o *ParameterUpdate) GetArtifactType() string

GetArtifactType returns the ArtifactType field value if set, zero value otherwise.

func (*ParameterUpdate) GetArtifactTypeOk

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

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

func (*ParameterUpdate) GetCustomProperties

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

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

func (*ParameterUpdate) GetCustomPropertiesOk

func (o *ParameterUpdate) 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 (*ParameterUpdate) GetDescription

func (o *ParameterUpdate) GetDescription() string

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

func (*ParameterUpdate) GetDescriptionOk

func (o *ParameterUpdate) 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 (*ParameterUpdate) GetExternalId

func (o *ParameterUpdate) GetExternalId() string

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

func (*ParameterUpdate) GetExternalIdOk

func (o *ParameterUpdate) 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 (*ParameterUpdate) GetParameterType

func (o *ParameterUpdate) GetParameterType() ParameterType

GetParameterType returns the ParameterType field value if set, zero value otherwise.

func (*ParameterUpdate) GetParameterTypeOk

func (o *ParameterUpdate) GetParameterTypeOk() (*ParameterType, bool)

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

func (*ParameterUpdate) GetState

func (o *ParameterUpdate) GetState() ArtifactState

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

func (*ParameterUpdate) GetStateOk

func (o *ParameterUpdate) 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 (*ParameterUpdate) GetValue

func (o *ParameterUpdate) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ParameterUpdate) GetValueOk

func (o *ParameterUpdate) GetValueOk() (*string, bool)

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

func (*ParameterUpdate) HasArtifactType

func (o *ParameterUpdate) HasArtifactType() bool

HasArtifactType returns a boolean if a field has been set.

func (*ParameterUpdate) HasCustomProperties

func (o *ParameterUpdate) HasCustomProperties() bool

HasCustomProperties returns a boolean if a field has been set.

func (*ParameterUpdate) HasDescription

func (o *ParameterUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ParameterUpdate) HasExternalId

func (o *ParameterUpdate) HasExternalId() bool

HasExternalId returns a boolean if a field has been set.

func (*ParameterUpdate) HasParameterType

func (o *ParameterUpdate) HasParameterType() bool

HasParameterType returns a boolean if a field has been set.

func (*ParameterUpdate) HasState

func (o *ParameterUpdate) HasState() bool

HasState returns a boolean if a field has been set.

func (*ParameterUpdate) HasValue

func (o *ParameterUpdate) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ParameterUpdate) MarshalJSON

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

func (*ParameterUpdate) SetArtifactType

func (o *ParameterUpdate) SetArtifactType(v string)

SetArtifactType gets a reference to the given string and assigns it to the ArtifactType field.

func (*ParameterUpdate) SetCustomProperties

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

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

func (*ParameterUpdate) SetDescription

func (o *ParameterUpdate) SetDescription(v string)

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

func (*ParameterUpdate) SetExternalId

func (o *ParameterUpdate) SetExternalId(v string)

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

func (*ParameterUpdate) SetParameterType

func (o *ParameterUpdate) SetParameterType(v ParameterType)

SetParameterType gets a reference to the given ParameterType and assigns it to the ParameterType field.

func (*ParameterUpdate) SetState

func (o *ParameterUpdate) SetState(v ArtifactState)

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

func (*ParameterUpdate) SetValue

func (o *ParameterUpdate) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ParameterUpdate) ToMap

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

type RegisteredModel

type RegisteredModel struct {
	// User provided custom properties which are not defined by its type.
	CustomProperties map[string]MetadataValue `json:"customProperties,omitempty"`
	// Human-readable description of the model.
	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 model. It must be unique among all the RegisteredModels of the same type within a Model Registry instance and cannot be changed once set.
	Name string `json:"name"`
	// 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"`
	// Model documentation in Markdown.
	Readme *string `json:"readme,omitempty"`
	// Maturity level of the model.
	Maturity *string `json:"maturity,omitempty"`
	// List of supported languages (https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes).
	Language []string `json:"language,omitempty"`
	// List of tasks the model is designed for.
	Tasks []string `json:"tasks,omitempty"`
	// Name of the organization or entity that provides the model.
	Provider *string `json:"provider,omitempty"`
	Logo *string `json:"logo,omitempty"`
	// Short name of the model's license.
	License *string `json:"license,omitempty"`
	// URL to the license text.
	LicenseLink *string               `json:"licenseLink,omitempty"`
	LibraryName *string               `json:"libraryName,omitempty"`
	Owner       *string               `json:"owner,omitempty"`
	State       *RegisteredModelState `json:"state,omitempty"`
}

RegisteredModel A registered model in model registry. A registered model has ModelVersion children.

func NewRegisteredModel

func NewRegisteredModel(name string) *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) GetLanguage

func (o *RegisteredModel) GetLanguage() []string

GetLanguage returns the Language field value if set, zero value otherwise.

func (*RegisteredModel) GetLanguageOk

func (o *RegisteredModel) GetLanguageOk() ([]string, bool)

GetLanguageOk returns a tuple with the Language 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) GetLibraryName

func (o *RegisteredModel) GetLibraryName() string

GetLibraryName returns the LibraryName field value if set, zero value otherwise.

func (*RegisteredModel) GetLibraryNameOk

func (o *RegisteredModel) GetLibraryNameOk() (*string, bool)

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

func (*RegisteredModel) GetLicense

func (o *RegisteredModel) GetLicense() string

GetLicense returns the License field value if set, zero value otherwise.

func (o *RegisteredModel) GetLicenseLink() string

GetLicenseLink returns the LicenseLink field value if set, zero value otherwise.

func (*RegisteredModel) GetLicenseLinkOk

func (o *RegisteredModel) GetLicenseLinkOk() (*string, bool)

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

func (*RegisteredModel) GetLicenseOk

func (o *RegisteredModel) GetLicenseOk() (*string, bool)

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

func (o *RegisteredModel) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*RegisteredModel) GetLogoOk

func (o *RegisteredModel) GetLogoOk() (*string, bool)

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

func (*RegisteredModel) GetMaturity

func (o *RegisteredModel) GetMaturity() string

GetMaturity returns the Maturity field value if set, zero value otherwise.

func (*RegisteredModel) GetMaturityOk

func (o *RegisteredModel) GetMaturityOk() (*string, bool)

GetMaturityOk returns a tuple with the Maturity 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

func (*RegisteredModel) GetNameOk

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

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

func (*RegisteredModel) GetOwner

func (o *RegisteredModel) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*RegisteredModel) GetOwnerOk

func (o *RegisteredModel) GetOwnerOk() (*string, bool)

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

func (*RegisteredModel) GetProvider

func (o *RegisteredModel) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*RegisteredModel) GetProviderOk

func (o *RegisteredModel) GetProviderOk() (*string, bool)

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

func (*RegisteredModel) GetReadme

func (o *RegisteredModel) GetReadme() string

GetReadme returns the Readme field value if set, zero value otherwise.

func (*RegisteredModel) GetReadmeOk

func (o *RegisteredModel) GetReadmeOk() (*string, bool)

GetReadmeOk returns a tuple with the Readme 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) GetTasks

func (o *RegisteredModel) GetTasks() []string

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*RegisteredModel) GetTasksOk

func (o *RegisteredModel) GetTasksOk() ([]string, bool)

GetTasksOk returns a tuple with the Tasks 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) HasLanguage

func (o *RegisteredModel) HasLanguage() bool

HasLanguage 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) HasLibraryName

func (o *RegisteredModel) HasLibraryName() bool

HasLibraryName returns a boolean if a field has been set.

func (*RegisteredModel) HasLicense

func (o *RegisteredModel) HasLicense() bool

HasLicense returns a boolean if a field has been set.

func (o *RegisteredModel) HasLicenseLink() bool

HasLicenseLink returns a boolean if a field has been set.

func (o *RegisteredModel) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*RegisteredModel) HasMaturity

func (o *RegisteredModel) HasMaturity() bool

HasMaturity returns a boolean if a field has been set.

func (*RegisteredModel) HasOwner

func (o *RegisteredModel) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*RegisteredModel) HasProvider

func (o *RegisteredModel) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*RegisteredModel) HasReadme

func (o *RegisteredModel) HasReadme() bool

HasReadme 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) HasTasks

func (o *RegisteredModel) HasTasks() bool

HasTasks 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) SetLanguage

func (o *RegisteredModel) SetLanguage(v []string)

SetLanguage gets a reference to the given []string and assigns it to the Language 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) SetLibraryName

func (o *RegisteredModel) SetLibraryName(v string)

SetLibraryName gets a reference to the given string and assigns it to the LibraryName field.

func (*RegisteredModel) SetLicense

func (o *RegisteredModel) SetLicense(v string)

SetLicense gets a reference to the given string and assigns it to the License field.

func (o *RegisteredModel) SetLicenseLink(v string)

SetLicenseLink gets a reference to the given string and assigns it to the LicenseLink field.

func (o *RegisteredModel) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*RegisteredModel) SetMaturity

func (o *RegisteredModel) SetMaturity(v string)

SetMaturity gets a reference to the given string and assigns it to the Maturity field.

func (*RegisteredModel) SetName

func (o *RegisteredModel) SetName(v string)

SetName sets field value

func (*RegisteredModel) SetOwner

func (o *RegisteredModel) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*RegisteredModel) SetProvider

func (o *RegisteredModel) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*RegisteredModel) SetReadme

func (o *RegisteredModel) SetReadme(v string)

SetReadme gets a reference to the given string and assigns it to the Readme 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) SetTasks

func (o *RegisteredModel) SetTasks(v []string)

SetTasks gets a reference to the given []string and assigns it to the Tasks 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"`
	// Human-readable description of the model.
	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 model. It must be unique among all the RegisteredModels of the same type within a Model Registry instance and cannot be changed once set.
	Name string `json:"name"`
	// Model documentation in Markdown.
	Readme *string `json:"readme,omitempty"`
	// Maturity level of the model.
	Maturity *string `json:"maturity,omitempty"`
	// List of supported languages (https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes).
	Language []string `json:"language,omitempty"`
	// List of tasks the model is designed for.
	Tasks []string `json:"tasks,omitempty"`
	// Name of the organization or entity that provides the model.
	Provider *string `json:"provider,omitempty"`
	Logo *string `json:"logo,omitempty"`
	// Short name of the model's license.
	License *string `json:"license,omitempty"`
	// URL to the license text.
	LicenseLink *string               `json:"licenseLink,omitempty"`
	LibraryName *string               `json:"libraryName,omitempty"`
	Owner       *string               `json:"owner,omitempty"`
	State       *RegisteredModelState `json:"state,omitempty"`
}

RegisteredModelCreate A registered model in model registry. A registered model has ModelVersion children.

func NewRegisteredModelCreate

func NewRegisteredModelCreate(name string) *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) GetLanguage

func (o *RegisteredModelCreate) GetLanguage() []string

GetLanguage returns the Language field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetLanguageOk

func (o *RegisteredModelCreate) GetLanguageOk() ([]string, bool)

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

func (*RegisteredModelCreate) GetLibraryName

func (o *RegisteredModelCreate) GetLibraryName() string

GetLibraryName returns the LibraryName field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetLibraryNameOk

func (o *RegisteredModelCreate) GetLibraryNameOk() (*string, bool)

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

func (*RegisteredModelCreate) GetLicense

func (o *RegisteredModelCreate) GetLicense() string

GetLicense returns the License field value if set, zero value otherwise.

func (o *RegisteredModelCreate) GetLicenseLink() string

GetLicenseLink returns the LicenseLink field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetLicenseLinkOk

func (o *RegisteredModelCreate) GetLicenseLinkOk() (*string, bool)

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

func (*RegisteredModelCreate) GetLicenseOk

func (o *RegisteredModelCreate) GetLicenseOk() (*string, bool)

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

func (o *RegisteredModelCreate) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetLogoOk

func (o *RegisteredModelCreate) GetLogoOk() (*string, bool)

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

func (*RegisteredModelCreate) GetMaturity

func (o *RegisteredModelCreate) GetMaturity() string

GetMaturity returns the Maturity field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetMaturityOk

func (o *RegisteredModelCreate) GetMaturityOk() (*string, bool)

GetMaturityOk returns a tuple with the Maturity 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

func (*RegisteredModelCreate) GetNameOk

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

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

func (*RegisteredModelCreate) GetOwner

func (o *RegisteredModelCreate) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetOwnerOk

func (o *RegisteredModelCreate) GetOwnerOk() (*string, bool)

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

func (*RegisteredModelCreate) GetProvider

func (o *RegisteredModelCreate) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetProviderOk

func (o *RegisteredModelCreate) GetProviderOk() (*string, bool)

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

func (*RegisteredModelCreate) GetReadme

func (o *RegisteredModelCreate) GetReadme() string

GetReadme returns the Readme field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetReadmeOk

func (o *RegisteredModelCreate) GetReadmeOk() (*string, bool)

GetReadmeOk returns a tuple with the Readme 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) GetTasks

func (o *RegisteredModelCreate) GetTasks() []string

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*RegisteredModelCreate) GetTasksOk

func (o *RegisteredModelCreate) GetTasksOk() ([]string, bool)

GetTasksOk returns a tuple with the Tasks 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) HasLanguage

func (o *RegisteredModelCreate) HasLanguage() bool

HasLanguage returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasLibraryName

func (o *RegisteredModelCreate) HasLibraryName() bool

HasLibraryName returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasLicense

func (o *RegisteredModelCreate) HasLicense() bool

HasLicense returns a boolean if a field has been set.

func (o *RegisteredModelCreate) HasLicenseLink() bool

HasLicenseLink returns a boolean if a field has been set.

func (o *RegisteredModelCreate) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasMaturity

func (o *RegisteredModelCreate) HasMaturity() bool

HasMaturity returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasOwner

func (o *RegisteredModelCreate) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasProvider

func (o *RegisteredModelCreate) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*RegisteredModelCreate) HasReadme

func (o *RegisteredModelCreate) HasReadme() bool

HasReadme 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) HasTasks

func (o *RegisteredModelCreate) HasTasks() bool

HasTasks 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) SetLanguage

func (o *RegisteredModelCreate) SetLanguage(v []string)

SetLanguage gets a reference to the given []string and assigns it to the Language field.

func (*RegisteredModelCreate) SetLibraryName

func (o *RegisteredModelCreate) SetLibraryName(v string)

SetLibraryName gets a reference to the given string and assigns it to the LibraryName field.

func (*RegisteredModelCreate) SetLicense

func (o *RegisteredModelCreate) SetLicense(v string)

SetLicense gets a reference to the given string and assigns it to the License field.

func (o *RegisteredModelCreate) SetLicenseLink(v string)

SetLicenseLink gets a reference to the given string and assigns it to the LicenseLink field.

func (o *RegisteredModelCreate) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*RegisteredModelCreate) SetMaturity

func (o *RegisteredModelCreate) SetMaturity(v string)

SetMaturity gets a reference to the given string and assigns it to the Maturity field.

func (*RegisteredModelCreate) SetName

func (o *RegisteredModelCreate) SetName(v string)

SetName sets field value

func (*RegisteredModelCreate) SetOwner

func (o *RegisteredModelCreate) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*RegisteredModelCreate) SetProvider

func (o *RegisteredModelCreate) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*RegisteredModelCreate) SetReadme

func (o *RegisteredModelCreate) SetReadme(v string)

SetReadme gets a reference to the given string and assigns it to the Readme field.

func (*RegisteredModelCreate) SetState

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

func (*RegisteredModelCreate) SetTasks

func (o *RegisteredModelCreate) SetTasks(v []string)

SetTasks gets a reference to the given []string and assigns it to the Tasks 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"`
}

RegisteredModelList List of RegisteredModels.

func NewRegisteredModelList

func NewRegisteredModelList(nextPageToken string, pageSize int32, size int32, items []RegisteredModel) *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

func (*RegisteredModelList) GetItemsOk

func (o *RegisteredModelList) GetItemsOk() ([]RegisteredModel, bool)

GetItemsOk returns a tuple with the Items field value 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) MarshalJSON

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

func (*RegisteredModelList) SetItems

func (o *RegisteredModelList) SetItems(v []RegisteredModel)

SetItems sets field value

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"`
	// Human-readable description of the model.
	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"`
	// Model documentation in Markdown.
	Readme *string `json:"readme,omitempty"`
	// Maturity level of the model.
	Maturity *string `json:"maturity,omitempty"`
	// List of supported languages (https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes).
	Language []string `json:"language,omitempty"`
	// List of tasks the model is designed for.
	Tasks []string `json:"tasks,omitempty"`
	// Name of the organization or entity that provides the model.
	Provider *string `json:"provider,omitempty"`
	Logo *string `json:"logo,omitempty"`
	// Short name of the model's license.
	License *string `json:"license,omitempty"`
	// URL to the license text.
	LicenseLink *string               `json:"licenseLink,omitempty"`
	LibraryName *string               `json:"libraryName,omitempty"`
	Owner       *string               `json:"owner,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) GetLanguage

func (o *RegisteredModelUpdate) GetLanguage() []string

GetLanguage returns the Language field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetLanguageOk

func (o *RegisteredModelUpdate) GetLanguageOk() ([]string, bool)

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

func (*RegisteredModelUpdate) GetLibraryName

func (o *RegisteredModelUpdate) GetLibraryName() string

GetLibraryName returns the LibraryName field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetLibraryNameOk

func (o *RegisteredModelUpdate) GetLibraryNameOk() (*string, bool)

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

func (*RegisteredModelUpdate) GetLicense

func (o *RegisteredModelUpdate) GetLicense() string

GetLicense returns the License field value if set, zero value otherwise.

func (o *RegisteredModelUpdate) GetLicenseLink() string

GetLicenseLink returns the LicenseLink field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetLicenseLinkOk

func (o *RegisteredModelUpdate) GetLicenseLinkOk() (*string, bool)

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

func (*RegisteredModelUpdate) GetLicenseOk

func (o *RegisteredModelUpdate) GetLicenseOk() (*string, bool)

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

func (o *RegisteredModelUpdate) GetLogo() string

GetLogo returns the Logo field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetLogoOk

func (o *RegisteredModelUpdate) GetLogoOk() (*string, bool)

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

func (*RegisteredModelUpdate) GetMaturity

func (o *RegisteredModelUpdate) GetMaturity() string

GetMaturity returns the Maturity field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetMaturityOk

func (o *RegisteredModelUpdate) GetMaturityOk() (*string, bool)

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

func (*RegisteredModelUpdate) GetOwner

func (o *RegisteredModelUpdate) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetOwnerOk

func (o *RegisteredModelUpdate) GetOwnerOk() (*string, bool)

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

func (*RegisteredModelUpdate) GetProvider

func (o *RegisteredModelUpdate) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetProviderOk

func (o *RegisteredModelUpdate) GetProviderOk() (*string, bool)

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

func (*RegisteredModelUpdate) GetReadme

func (o *RegisteredModelUpdate) GetReadme() string

GetReadme returns the Readme field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetReadmeOk

func (o *RegisteredModelUpdate) GetReadmeOk() (*string, bool)

GetReadmeOk returns a tuple with the Readme 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) GetTasks

func (o *RegisteredModelUpdate) GetTasks() []string

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*RegisteredModelUpdate) GetTasksOk

func (o *RegisteredModelUpdate) GetTasksOk() ([]string, bool)

GetTasksOk returns a tuple with the Tasks 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) HasLanguage

func (o *RegisteredModelUpdate) HasLanguage() bool

HasLanguage returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasLibraryName

func (o *RegisteredModelUpdate) HasLibraryName() bool

HasLibraryName returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasLicense

func (o *RegisteredModelUpdate) HasLicense() bool

HasLicense returns a boolean if a field has been set.

func (o *RegisteredModelUpdate) HasLicenseLink() bool

HasLicenseLink returns a boolean if a field has been set.

func (o *RegisteredModelUpdate) HasLogo() bool

HasLogo returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasMaturity

func (o *RegisteredModelUpdate) HasMaturity() bool

HasMaturity returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasOwner

func (o *RegisteredModelUpdate) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasProvider

func (o *RegisteredModelUpdate) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*RegisteredModelUpdate) HasReadme

func (o *RegisteredModelUpdate) HasReadme() bool

HasReadme 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) HasTasks

func (o *RegisteredModelUpdate) HasTasks() bool

HasTasks 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) SetLanguage

func (o *RegisteredModelUpdate) SetLanguage(v []string)

SetLanguage gets a reference to the given []string and assigns it to the Language field.

func (*RegisteredModelUpdate) SetLibraryName

func (o *RegisteredModelUpdate) SetLibraryName(v string)

SetLibraryName gets a reference to the given string and assigns it to the LibraryName field.

func (*RegisteredModelUpdate) SetLicense

func (o *RegisteredModelUpdate) SetLicense(v string)

SetLicense gets a reference to the given string and assigns it to the License field.

func (o *RegisteredModelUpdate) SetLicenseLink(v string)

SetLicenseLink gets a reference to the given string and assigns it to the LicenseLink field.

func (o *RegisteredModelUpdate) SetLogo(v string)

SetLogo gets a reference to the given string and assigns it to the Logo field.

func (*RegisteredModelUpdate) SetMaturity

func (o *RegisteredModelUpdate) SetMaturity(v string)

SetMaturity gets a reference to the given string and assigns it to the Maturity field.

func (*RegisteredModelUpdate) SetOwner

func (o *RegisteredModelUpdate) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*RegisteredModelUpdate) SetProvider

func (o *RegisteredModelUpdate) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*RegisteredModelUpdate) SetReadme

func (o *RegisteredModelUpdate) SetReadme(v string)

SetReadme gets a reference to the given string and assigns it to the Readme field.

func (*RegisteredModelUpdate) SetState

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

func (*RegisteredModelUpdate) SetTasks

func (o *RegisteredModelUpdate) SetTasks(v []string)

SetTasks gets a reference to the given []string and assigns it to the Tasks field.

func (RegisteredModelUpdate) ToMap

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

type ServeModel

type ServeModel 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"`
	// 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"`
	LastKnownState           *ExecutionState `json:"lastKnownState,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 {
	// 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"`
	LastKnownState *ExecutionState `json:"lastKnownState,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"`
}

ServeModelList List of ServeModel entities.

func NewServeModelList

func NewServeModelList(nextPageToken string, pageSize int32, size int32, items []ServeModel) *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

func (*ServeModelList) GetItemsOk

func (o *ServeModelList) GetItemsOk() ([]ServeModel, bool)

GetItemsOk returns a tuple with the Items field value 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) MarshalJSON

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

func (*ServeModelList) SetItems

func (o *ServeModelList) SetItems(v []ServeModel)

SetItems sets field value

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 {
	// 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"`
}

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 name of the ServingEnvironment.
	Name string `json:"name"`
	// 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(name string) *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

func (*ServingEnvironment) GetNameOk

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

GetNameOk returns a tuple with the Name field value 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) 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 sets field value

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 name of the ServingEnvironment.
	Name string `json:"name"`
}

ServingEnvironmentCreate A Model Serving environment for serving `RegisteredModels`.

func NewServingEnvironmentCreate

func NewServingEnvironmentCreate(name string) *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

func (*ServingEnvironmentCreate) GetNameOk

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

GetNameOk returns a tuple with the Name field value 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) 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 sets field value

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"`
}

ServingEnvironmentList List of ServingEnvironments.

func NewServingEnvironmentList

func NewServingEnvironmentList(nextPageToken string, pageSize int32, size int32, items []ServingEnvironment) *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

func (*ServingEnvironmentList) GetItemsOk

func (o *ServingEnvironmentList) GetItemsOk() ([]ServingEnvironment, bool)

GetItemsOk returns a tuple with the Items field value 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) MarshalJSON

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

func (*ServingEnvironmentList) SetItems

func (o *ServingEnvironmentList) SetItems(v []ServingEnvironment)

SetItems sets field value

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