openapi

package
v0.0.0-...-0d6f578 Latest Latest
Warning

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

Go to latest
Published: May 20, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BigQueryDataset

type BigQueryDataset struct {
	Type     string                `json:"type"`
	BqConfig BigQueryDatasetConfig `json:"bq_config"`
}

BigQueryDataset struct for BigQueryDataset

func NewBigQueryDataset

func NewBigQueryDataset(type_ string, bqConfig BigQueryDatasetConfig) *BigQueryDataset

NewBigQueryDataset instantiates a new BigQueryDataset 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 NewBigQueryDatasetWithDefaults

func NewBigQueryDatasetWithDefaults() *BigQueryDataset

NewBigQueryDatasetWithDefaults instantiates a new BigQueryDataset 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 (*BigQueryDataset) GetBqConfig

func (o *BigQueryDataset) GetBqConfig() BigQueryDatasetConfig

GetBqConfig returns the BqConfig field value

func (*BigQueryDataset) GetBqConfigOk

func (o *BigQueryDataset) GetBqConfigOk() (*BigQueryDatasetConfig, bool)

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

func (*BigQueryDataset) GetType

func (o *BigQueryDataset) GetType() string

GetType returns the Type field value

func (*BigQueryDataset) GetTypeOk

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

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

func (BigQueryDataset) MarshalJSON

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

func (*BigQueryDataset) SetBqConfig

func (o *BigQueryDataset) SetBqConfig(v BigQueryDatasetConfig)

SetBqConfig sets field value

func (*BigQueryDataset) SetType

func (o *BigQueryDataset) SetType(v string)

SetType sets field value

type BigQueryDatasetConfig

type BigQueryDatasetConfig struct {
	Table    *string           `json:"table,omitempty"`
	Features []string          `json:"features,omitempty"`
	Query    *string           `json:"query,omitempty"`
	Options  map[string]string `json:"options,omitempty"`
}

BigQueryDatasetConfig struct for BigQueryDatasetConfig

func NewBigQueryDatasetConfig

func NewBigQueryDatasetConfig() *BigQueryDatasetConfig

NewBigQueryDatasetConfig instantiates a new BigQueryDatasetConfig 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 NewBigQueryDatasetConfigWithDefaults

func NewBigQueryDatasetConfigWithDefaults() *BigQueryDatasetConfig

NewBigQueryDatasetConfigWithDefaults instantiates a new BigQueryDatasetConfig 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 (*BigQueryDatasetConfig) GetFeatures

func (o *BigQueryDatasetConfig) GetFeatures() []string

GetFeatures returns the Features field value if set, zero value otherwise (both if not set or set to explicit null).

func (*BigQueryDatasetConfig) GetFeaturesOk

func (o *BigQueryDatasetConfig) GetFeaturesOk() (*[]string, bool)

GetFeaturesOk returns a tuple with the Features field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BigQueryDatasetConfig) GetOptions

func (o *BigQueryDatasetConfig) GetOptions() map[string]string

GetOptions returns the Options field value if set, zero value otherwise (both if not set or set to explicit null).

func (*BigQueryDatasetConfig) GetOptionsOk

func (o *BigQueryDatasetConfig) GetOptionsOk() (*map[string]string, bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BigQueryDatasetConfig) GetQuery

func (o *BigQueryDatasetConfig) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*BigQueryDatasetConfig) GetQueryOk

func (o *BigQueryDatasetConfig) GetQueryOk() (*string, bool)

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

func (*BigQueryDatasetConfig) GetTable

func (o *BigQueryDatasetConfig) GetTable() string

GetTable returns the Table field value if set, zero value otherwise.

func (*BigQueryDatasetConfig) GetTableOk

func (o *BigQueryDatasetConfig) GetTableOk() (*string, bool)

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

func (*BigQueryDatasetConfig) HasFeatures

func (o *BigQueryDatasetConfig) HasFeatures() bool

HasFeatures returns a boolean if a field has been set.

func (*BigQueryDatasetConfig) HasOptions

func (o *BigQueryDatasetConfig) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*BigQueryDatasetConfig) HasQuery

func (o *BigQueryDatasetConfig) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*BigQueryDatasetConfig) HasTable

func (o *BigQueryDatasetConfig) HasTable() bool

HasTable returns a boolean if a field has been set.

func (BigQueryDatasetConfig) MarshalJSON

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

func (*BigQueryDatasetConfig) SetFeatures

func (o *BigQueryDatasetConfig) SetFeatures(v []string)

SetFeatures gets a reference to the given []string and assigns it to the Features field.

func (*BigQueryDatasetConfig) SetOptions

func (o *BigQueryDatasetConfig) SetOptions(v map[string]string)

SetOptions gets a reference to the given map[string]string and assigns it to the Options field.

func (*BigQueryDatasetConfig) SetQuery

func (o *BigQueryDatasetConfig) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*BigQueryDatasetConfig) SetTable

func (o *BigQueryDatasetConfig) SetTable(v string)

SetTable gets a reference to the given string and assigns it to the Table field.

type BigQuerySink

type BigQuerySink struct {
	Type     string             `json:"type"`
	Columns  []string           `json:"columns,omitempty"`
	SaveMode SaveMode           `json:"save_mode"`
	BqConfig BigQuerySinkConfig `json:"bq_config"`
}

BigQuerySink struct for BigQuerySink

func NewBigQuerySink

func NewBigQuerySink(type_ string, saveMode SaveMode, bqConfig BigQuerySinkConfig) *BigQuerySink

NewBigQuerySink instantiates a new BigQuerySink 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 NewBigQuerySinkWithDefaults

func NewBigQuerySinkWithDefaults() *BigQuerySink

NewBigQuerySinkWithDefaults instantiates a new BigQuerySink 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 (*BigQuerySink) GetBqConfig

func (o *BigQuerySink) GetBqConfig() BigQuerySinkConfig

GetBqConfig returns the BqConfig field value

func (*BigQuerySink) GetBqConfigOk

func (o *BigQuerySink) GetBqConfigOk() (*BigQuerySinkConfig, bool)

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

func (*BigQuerySink) GetColumns

func (o *BigQuerySink) GetColumns() []string

GetColumns returns the Columns field value if set, zero value otherwise (both if not set or set to explicit null).

func (*BigQuerySink) GetColumnsOk

func (o *BigQuerySink) GetColumnsOk() (*[]string, bool)

GetColumnsOk returns a tuple with the Columns field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BigQuerySink) GetSaveMode

func (o *BigQuerySink) GetSaveMode() SaveMode

GetSaveMode returns the SaveMode field value

func (*BigQuerySink) GetSaveModeOk

func (o *BigQuerySink) GetSaveModeOk() (*SaveMode, bool)

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

func (*BigQuerySink) GetType

func (o *BigQuerySink) GetType() string

GetType returns the Type field value

func (*BigQuerySink) GetTypeOk

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

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

func (*BigQuerySink) HasColumns

func (o *BigQuerySink) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (BigQuerySink) MarshalJSON

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

func (*BigQuerySink) SetBqConfig

func (o *BigQuerySink) SetBqConfig(v BigQuerySinkConfig)

SetBqConfig sets field value

func (*BigQuerySink) SetColumns

func (o *BigQuerySink) SetColumns(v []string)

SetColumns gets a reference to the given []string and assigns it to the Columns field.

func (*BigQuerySink) SetSaveMode

func (o *BigQuerySink) SetSaveMode(v SaveMode)

SetSaveMode sets field value

func (*BigQuerySink) SetType

func (o *BigQuerySink) SetType(v string)

SetType sets field value

type BigQuerySinkConfig

type BigQuerySinkConfig struct {
	Table         string            `json:"table"`
	StagingBucket string            `json:"staging_bucket"`
	Options       map[string]string `json:"options,omitempty"`
}

BigQuerySinkConfig struct for BigQuerySinkConfig

func NewBigQuerySinkConfig

func NewBigQuerySinkConfig(table string, stagingBucket string) *BigQuerySinkConfig

NewBigQuerySinkConfig instantiates a new BigQuerySinkConfig 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 NewBigQuerySinkConfigWithDefaults

func NewBigQuerySinkConfigWithDefaults() *BigQuerySinkConfig

NewBigQuerySinkConfigWithDefaults instantiates a new BigQuerySinkConfig 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 (*BigQuerySinkConfig) GetOptions

func (o *BigQuerySinkConfig) GetOptions() map[string]string

GetOptions returns the Options field value if set, zero value otherwise (both if not set or set to explicit null).

func (*BigQuerySinkConfig) GetOptionsOk

func (o *BigQuerySinkConfig) GetOptionsOk() (*map[string]string, bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BigQuerySinkConfig) GetStagingBucket

func (o *BigQuerySinkConfig) GetStagingBucket() string

GetStagingBucket returns the StagingBucket field value

func (*BigQuerySinkConfig) GetStagingBucketOk

func (o *BigQuerySinkConfig) GetStagingBucketOk() (*string, bool)

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

func (*BigQuerySinkConfig) GetTable

func (o *BigQuerySinkConfig) GetTable() string

GetTable returns the Table field value

func (*BigQuerySinkConfig) GetTableOk

func (o *BigQuerySinkConfig) GetTableOk() (*string, bool)

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

func (*BigQuerySinkConfig) HasOptions

func (o *BigQuerySinkConfig) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (BigQuerySinkConfig) MarshalJSON

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

func (*BigQuerySinkConfig) SetOptions

func (o *BigQuerySinkConfig) SetOptions(v map[string]string)

SetOptions gets a reference to the given map[string]string and assigns it to the Options field.

func (*BigQuerySinkConfig) SetStagingBucket

func (o *BigQuerySinkConfig) SetStagingBucket(v string)

SetStagingBucket sets field value

func (*BigQuerySinkConfig) SetTable

func (o *BigQuerySinkConfig) SetTable(v string)

SetTable sets field value

type Dataset

type Dataset struct {
	BigQueryDataset *BigQueryDataset
}

Dataset - struct for Dataset

func BigQueryDatasetAsDataset

func BigQueryDatasetAsDataset(v *BigQueryDataset) Dataset

BigQueryDatasetAsDataset is a convenience function that returns BigQueryDataset wrapped in Dataset

func (*Dataset) GetActualInstance

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

Get the actual instance

func (Dataset) MarshalJSON

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

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

func (*Dataset) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type EnsemblerConfig

type EnsemblerConfig struct {
	Version  string              `json:"version"`
	Kind     EnsemblerConfigKind `json:"kind"`
	Metadata *EnsemblingJobMeta  `json:"metadata,omitempty"`
	Spec     EnsemblingJobSpec   `json:"spec"`
}

EnsemblerConfig struct for EnsemblerConfig

func NewEnsemblerConfig

func NewEnsemblerConfig(version string, kind EnsemblerConfigKind, spec EnsemblingJobSpec) *EnsemblerConfig

NewEnsemblerConfig instantiates a new EnsemblerConfig 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 NewEnsemblerConfigWithDefaults

func NewEnsemblerConfigWithDefaults() *EnsemblerConfig

NewEnsemblerConfigWithDefaults instantiates a new EnsemblerConfig 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 (*EnsemblerConfig) GetKind

func (o *EnsemblerConfig) GetKind() EnsemblerConfigKind

GetKind returns the Kind field value

func (*EnsemblerConfig) GetKindOk

func (o *EnsemblerConfig) GetKindOk() (*EnsemblerConfigKind, bool)

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

func (*EnsemblerConfig) GetMetadata

func (o *EnsemblerConfig) GetMetadata() EnsemblingJobMeta

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*EnsemblerConfig) GetMetadataOk

func (o *EnsemblerConfig) GetMetadataOk() (*EnsemblingJobMeta, bool)

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

func (*EnsemblerConfig) GetSpec

func (o *EnsemblerConfig) GetSpec() EnsemblingJobSpec

GetSpec returns the Spec field value

func (*EnsemblerConfig) GetSpecOk

func (o *EnsemblerConfig) GetSpecOk() (*EnsemblingJobSpec, bool)

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

func (*EnsemblerConfig) GetVersion

func (o *EnsemblerConfig) GetVersion() string

GetVersion returns the Version field value

func (*EnsemblerConfig) GetVersionOk

func (o *EnsemblerConfig) GetVersionOk() (*string, bool)

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

func (*EnsemblerConfig) HasMetadata

func (o *EnsemblerConfig) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (EnsemblerConfig) MarshalJSON

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

func (*EnsemblerConfig) SetKind

func (o *EnsemblerConfig) SetKind(v EnsemblerConfigKind)

SetKind sets field value

func (*EnsemblerConfig) SetMetadata

func (o *EnsemblerConfig) SetMetadata(v EnsemblingJobMeta)

SetMetadata gets a reference to the given EnsemblingJobMeta and assigns it to the Metadata field.

func (*EnsemblerConfig) SetSpec

func (o *EnsemblerConfig) SetSpec(v EnsemblingJobSpec)

SetSpec sets field value

func (*EnsemblerConfig) SetVersion

func (o *EnsemblerConfig) SetVersion(v string)

SetVersion sets field value

type EnsemblerConfigKind

type EnsemblerConfigKind string

EnsemblerConfigKind the model 'EnsemblerConfigKind'

const (
	ENSEMBLERCONFIGKIND_BATCH_ENSEMBLING_JOB EnsemblerConfigKind = "BatchEnsemblingJob"
)

List of EnsemblerConfigKind

func NewEnsemblerConfigKindFromValue

func NewEnsemblerConfigKindFromValue(v string) (*EnsemblerConfigKind, error)

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

func (EnsemblerConfigKind) IsValid

func (v EnsemblerConfigKind) IsValid() bool

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

func (EnsemblerConfigKind) Ptr

Ptr returns reference to EnsemblerConfigKind value

func (*EnsemblerConfigKind) UnmarshalJSON

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

type EnsemblerInfraConfig

type EnsemblerInfraConfig struct {
	ArtifactUri        *string                     `json:"artifact_uri,omitempty"`
	EnsemblerName      *string                     `json:"ensembler_name,omitempty"`
	ServiceAccountName *string                     `json:"service_account_name,omitempty" validate:"required"`
	Resources          NullableEnsemblingResources `json:"resources,omitempty"`
	RunId              *string                     `json:"run_id,omitempty"`
	Env                *[]EnvVar                   `json:"env,omitempty"`
}

EnsemblerInfraConfig struct for EnsemblerInfraConfig

func NewEnsemblerInfraConfig

func NewEnsemblerInfraConfig() *EnsemblerInfraConfig

NewEnsemblerInfraConfig instantiates a new EnsemblerInfraConfig 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 NewEnsemblerInfraConfigWithDefaults

func NewEnsemblerInfraConfigWithDefaults() *EnsemblerInfraConfig

NewEnsemblerInfraConfigWithDefaults instantiates a new EnsemblerInfraConfig 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 (*EnsemblerInfraConfig) GetArtifactUri

func (o *EnsemblerInfraConfig) GetArtifactUri() string

GetArtifactUri returns the ArtifactUri field value if set, zero value otherwise.

func (*EnsemblerInfraConfig) GetArtifactUriOk

func (o *EnsemblerInfraConfig) GetArtifactUriOk() (*string, bool)

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

func (*EnsemblerInfraConfig) GetEnsemblerName

func (o *EnsemblerInfraConfig) GetEnsemblerName() string

GetEnsemblerName returns the EnsemblerName field value if set, zero value otherwise.

func (*EnsemblerInfraConfig) GetEnsemblerNameOk

func (o *EnsemblerInfraConfig) GetEnsemblerNameOk() (*string, bool)

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

func (*EnsemblerInfraConfig) GetEnv

func (o *EnsemblerInfraConfig) GetEnv() []EnvVar

GetEnv returns the Env field value if set, zero value otherwise.

func (*EnsemblerInfraConfig) GetEnvOk

func (o *EnsemblerInfraConfig) GetEnvOk() (*[]EnvVar, bool)

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

func (*EnsemblerInfraConfig) GetResources

func (o *EnsemblerInfraConfig) GetResources() EnsemblingResources

GetResources returns the Resources field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EnsemblerInfraConfig) GetResourcesOk

func (o *EnsemblerInfraConfig) GetResourcesOk() (*EnsemblingResources, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EnsemblerInfraConfig) GetRunId

func (o *EnsemblerInfraConfig) GetRunId() string

GetRunId returns the RunId field value if set, zero value otherwise.

func (*EnsemblerInfraConfig) GetRunIdOk

func (o *EnsemblerInfraConfig) GetRunIdOk() (*string, bool)

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

func (*EnsemblerInfraConfig) GetServiceAccountName

func (o *EnsemblerInfraConfig) GetServiceAccountName() string

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

func (*EnsemblerInfraConfig) GetServiceAccountNameOk

func (o *EnsemblerInfraConfig) 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 (*EnsemblerInfraConfig) HasArtifactUri

func (o *EnsemblerInfraConfig) HasArtifactUri() bool

HasArtifactUri returns a boolean if a field has been set.

func (*EnsemblerInfraConfig) HasEnsemblerName

func (o *EnsemblerInfraConfig) HasEnsemblerName() bool

HasEnsemblerName returns a boolean if a field has been set.

func (*EnsemblerInfraConfig) HasEnv

func (o *EnsemblerInfraConfig) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*EnsemblerInfraConfig) HasResources

func (o *EnsemblerInfraConfig) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*EnsemblerInfraConfig) HasRunId

func (o *EnsemblerInfraConfig) HasRunId() bool

HasRunId returns a boolean if a field has been set.

func (*EnsemblerInfraConfig) HasServiceAccountName

func (o *EnsemblerInfraConfig) HasServiceAccountName() bool

HasServiceAccountName returns a boolean if a field has been set.

func (EnsemblerInfraConfig) MarshalJSON

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

func (*EnsemblerInfraConfig) SetArtifactUri

func (o *EnsemblerInfraConfig) SetArtifactUri(v string)

SetArtifactUri gets a reference to the given string and assigns it to the ArtifactUri field.

func (*EnsemblerInfraConfig) SetEnsemblerName

func (o *EnsemblerInfraConfig) SetEnsemblerName(v string)

SetEnsemblerName gets a reference to the given string and assigns it to the EnsemblerName field.

func (*EnsemblerInfraConfig) SetEnv

func (o *EnsemblerInfraConfig) SetEnv(v []EnvVar)

SetEnv gets a reference to the given []EnvVar and assigns it to the Env field.

func (*EnsemblerInfraConfig) SetResources

func (o *EnsemblerInfraConfig) SetResources(v EnsemblingResources)

SetResources gets a reference to the given NullableEnsemblingResources and assigns it to the Resources field.

func (*EnsemblerInfraConfig) SetResourcesNil

func (o *EnsemblerInfraConfig) SetResourcesNil()

SetResourcesNil sets the value for Resources to be an explicit nil

func (*EnsemblerInfraConfig) SetRunId

func (o *EnsemblerInfraConfig) SetRunId(v string)

SetRunId gets a reference to the given string and assigns it to the RunId field.

func (*EnsemblerInfraConfig) SetServiceAccountName

func (o *EnsemblerInfraConfig) SetServiceAccountName(v string)

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

func (*EnsemblerInfraConfig) UnsetResources

func (o *EnsemblerInfraConfig) UnsetResources()

UnsetResources ensures that no value is present for Resources, not even an explicit nil

type EnsemblingJobEnsemblerSpec

type EnsemblingJobEnsemblerSpec struct {
	Uri    string                           `json:"uri"`
	Result EnsemblingJobEnsemblerSpecResult `json:"result"`
}

EnsemblingJobEnsemblerSpec struct for EnsemblingJobEnsemblerSpec

func NewEnsemblingJobEnsemblerSpec

func NewEnsemblingJobEnsemblerSpec(uri string, result EnsemblingJobEnsemblerSpecResult) *EnsemblingJobEnsemblerSpec

NewEnsemblingJobEnsemblerSpec instantiates a new EnsemblingJobEnsemblerSpec 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 NewEnsemblingJobEnsemblerSpecWithDefaults

func NewEnsemblingJobEnsemblerSpecWithDefaults() *EnsemblingJobEnsemblerSpec

NewEnsemblingJobEnsemblerSpecWithDefaults instantiates a new EnsemblingJobEnsemblerSpec 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 (*EnsemblingJobEnsemblerSpec) GetResult

GetResult returns the Result field value

func (*EnsemblingJobEnsemblerSpec) GetResultOk

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

func (*EnsemblingJobEnsemblerSpec) GetUri

func (o *EnsemblingJobEnsemblerSpec) GetUri() string

GetUri returns the Uri field value

func (*EnsemblingJobEnsemblerSpec) GetUriOk

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

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

func (EnsemblingJobEnsemblerSpec) MarshalJSON

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

func (*EnsemblingJobEnsemblerSpec) SetResult

SetResult sets field value

func (*EnsemblingJobEnsemblerSpec) SetUri

func (o *EnsemblingJobEnsemblerSpec) SetUri(v string)

SetUri sets field value

type EnsemblingJobEnsemblerSpecResult

type EnsemblingJobEnsemblerSpecResult struct {
	Type       EnsemblingJobResultType  `json:"type"`
	ItemType   *EnsemblingJobResultType `json:"item_type,omitempty"`
	ColumnName string                   `json:"column_name"`
}

EnsemblingJobEnsemblerSpecResult struct for EnsemblingJobEnsemblerSpecResult

func NewEnsemblingJobEnsemblerSpecResult

func NewEnsemblingJobEnsemblerSpecResult(type_ EnsemblingJobResultType, columnName string) *EnsemblingJobEnsemblerSpecResult

NewEnsemblingJobEnsemblerSpecResult instantiates a new EnsemblingJobEnsemblerSpecResult 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 NewEnsemblingJobEnsemblerSpecResultWithDefaults

func NewEnsemblingJobEnsemblerSpecResultWithDefaults() *EnsemblingJobEnsemblerSpecResult

NewEnsemblingJobEnsemblerSpecResultWithDefaults instantiates a new EnsemblingJobEnsemblerSpecResult 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 (*EnsemblingJobEnsemblerSpecResult) GetColumnName

func (o *EnsemblingJobEnsemblerSpecResult) GetColumnName() string

GetColumnName returns the ColumnName field value

func (*EnsemblingJobEnsemblerSpecResult) GetColumnNameOk

func (o *EnsemblingJobEnsemblerSpecResult) GetColumnNameOk() (*string, bool)

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

func (*EnsemblingJobEnsemblerSpecResult) GetItemType

GetItemType returns the ItemType field value if set, zero value otherwise.

func (*EnsemblingJobEnsemblerSpecResult) GetItemTypeOk

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

func (*EnsemblingJobEnsemblerSpecResult) GetType

GetType returns the Type field value

func (*EnsemblingJobEnsemblerSpecResult) GetTypeOk

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

func (*EnsemblingJobEnsemblerSpecResult) HasItemType

func (o *EnsemblingJobEnsemblerSpecResult) HasItemType() bool

HasItemType returns a boolean if a field has been set.

func (EnsemblingJobEnsemblerSpecResult) MarshalJSON

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

func (*EnsemblingJobEnsemblerSpecResult) SetColumnName

func (o *EnsemblingJobEnsemblerSpecResult) SetColumnName(v string)

SetColumnName sets field value

func (*EnsemblingJobEnsemblerSpecResult) SetItemType

SetItemType gets a reference to the given EnsemblingJobResultType and assigns it to the ItemType field.

func (*EnsemblingJobEnsemblerSpecResult) SetType

SetType sets field value

type EnsemblingJobMeta

type EnsemblingJobMeta struct {
	Name        string            `json:"name"`
	Annotations map[string]string `json:"annotations,omitempty"`
}

EnsemblingJobMeta Ensembling job Metadata

func NewEnsemblingJobMeta

func NewEnsemblingJobMeta(name string) *EnsemblingJobMeta

NewEnsemblingJobMeta instantiates a new EnsemblingJobMeta 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 NewEnsemblingJobMetaWithDefaults

func NewEnsemblingJobMetaWithDefaults() *EnsemblingJobMeta

NewEnsemblingJobMetaWithDefaults instantiates a new EnsemblingJobMeta 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 (*EnsemblingJobMeta) GetAnnotations

func (o *EnsemblingJobMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EnsemblingJobMeta) GetAnnotationsOk

func (o *EnsemblingJobMeta) GetAnnotationsOk() (*map[string]string, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EnsemblingJobMeta) GetName

func (o *EnsemblingJobMeta) GetName() string

GetName returns the Name field value

func (*EnsemblingJobMeta) GetNameOk

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

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

func (*EnsemblingJobMeta) HasAnnotations

func (o *EnsemblingJobMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (EnsemblingJobMeta) MarshalJSON

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

func (*EnsemblingJobMeta) SetAnnotations

func (o *EnsemblingJobMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*EnsemblingJobMeta) SetName

func (o *EnsemblingJobMeta) SetName(v string)

SetName sets field value

type EnsemblingJobPredictionSource

type EnsemblingJobPredictionSource struct {
	Dataset Dataset  `json:"dataset"`
	JoinOn  []string `json:"join_on"`
	Columns []string `json:"columns,omitempty"`
}

EnsemblingJobPredictionSource struct for EnsemblingJobPredictionSource

func NewEnsemblingJobPredictionSource

func NewEnsemblingJobPredictionSource(dataset Dataset, joinOn []string) *EnsemblingJobPredictionSource

NewEnsemblingJobPredictionSource instantiates a new EnsemblingJobPredictionSource 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 NewEnsemblingJobPredictionSourceWithDefaults

func NewEnsemblingJobPredictionSourceWithDefaults() *EnsemblingJobPredictionSource

NewEnsemblingJobPredictionSourceWithDefaults instantiates a new EnsemblingJobPredictionSource 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 (*EnsemblingJobPredictionSource) GetColumns

func (o *EnsemblingJobPredictionSource) GetColumns() []string

GetColumns returns the Columns field value if set, zero value otherwise (both if not set or set to explicit null).

func (*EnsemblingJobPredictionSource) GetColumnsOk

func (o *EnsemblingJobPredictionSource) GetColumnsOk() (*[]string, bool)

GetColumnsOk returns a tuple with the Columns field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*EnsemblingJobPredictionSource) GetDataset

func (o *EnsemblingJobPredictionSource) GetDataset() Dataset

GetDataset returns the Dataset field value

func (*EnsemblingJobPredictionSource) GetDatasetOk

func (o *EnsemblingJobPredictionSource) GetDatasetOk() (*Dataset, bool)

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

func (*EnsemblingJobPredictionSource) GetJoinOn

func (o *EnsemblingJobPredictionSource) GetJoinOn() []string

GetJoinOn returns the JoinOn field value

func (*EnsemblingJobPredictionSource) GetJoinOnOk

func (o *EnsemblingJobPredictionSource) GetJoinOnOk() (*[]string, bool)

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

func (*EnsemblingJobPredictionSource) HasColumns

func (o *EnsemblingJobPredictionSource) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (EnsemblingJobPredictionSource) MarshalJSON

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

func (*EnsemblingJobPredictionSource) SetColumns

func (o *EnsemblingJobPredictionSource) SetColumns(v []string)

SetColumns gets a reference to the given []string and assigns it to the Columns field.

func (*EnsemblingJobPredictionSource) SetDataset

func (o *EnsemblingJobPredictionSource) SetDataset(v Dataset)

SetDataset sets field value

func (*EnsemblingJobPredictionSource) SetJoinOn

func (o *EnsemblingJobPredictionSource) SetJoinOn(v []string)

SetJoinOn sets field value

type EnsemblingJobResultType

type EnsemblingJobResultType string

EnsemblingJobResultType the model 'EnsemblingJobResultType'

const (
	ENSEMBLINGJOBRESULTTYPE_DOUBLE  EnsemblingJobResultType = "DOUBLE"
	ENSEMBLINGJOBRESULTTYPE_FLOAT   EnsemblingJobResultType = "FLOAT"
	ENSEMBLINGJOBRESULTTYPE_INTEGER EnsemblingJobResultType = "INTEGER"
	ENSEMBLINGJOBRESULTTYPE_LONG    EnsemblingJobResultType = "LONG"
	ENSEMBLINGJOBRESULTTYPE_STRING  EnsemblingJobResultType = "STRING"
	ENSEMBLINGJOBRESULTTYPE_ARRAY   EnsemblingJobResultType = "ARRAY"
)

List of EnsemblingJobResultType

func NewEnsemblingJobResultTypeFromValue

func NewEnsemblingJobResultTypeFromValue(v string) (*EnsemblingJobResultType, error)

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

func (EnsemblingJobResultType) IsValid

func (v EnsemblingJobResultType) IsValid() bool

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

func (EnsemblingJobResultType) Ptr

Ptr returns reference to EnsemblingJobResultType value

func (*EnsemblingJobResultType) UnmarshalJSON

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

type EnsemblingJobSink

type EnsemblingJobSink struct {
	BigQuerySink *BigQuerySink
}

EnsemblingJobSink - struct for EnsemblingJobSink

func BigQuerySinkAsEnsemblingJobSink

func BigQuerySinkAsEnsemblingJobSink(v *BigQuerySink) EnsemblingJobSink

BigQuerySinkAsEnsemblingJobSink is a convenience function that returns BigQuerySink wrapped in EnsemblingJobSink

func (*EnsemblingJobSink) GetActualInstance

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

Get the actual instance

func (EnsemblingJobSink) MarshalJSON

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

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

func (*EnsemblingJobSink) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type EnsemblingJobSource

type EnsemblingJobSource struct {
	Dataset Dataset  `json:"dataset"`
	JoinOn  []string `json:"join_on"`
}

EnsemblingJobSource struct for EnsemblingJobSource

func NewEnsemblingJobSource

func NewEnsemblingJobSource(dataset Dataset, joinOn []string) *EnsemblingJobSource

NewEnsemblingJobSource instantiates a new EnsemblingJobSource 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 NewEnsemblingJobSourceWithDefaults

func NewEnsemblingJobSourceWithDefaults() *EnsemblingJobSource

NewEnsemblingJobSourceWithDefaults instantiates a new EnsemblingJobSource 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 (*EnsemblingJobSource) GetDataset

func (o *EnsemblingJobSource) GetDataset() Dataset

GetDataset returns the Dataset field value

func (*EnsemblingJobSource) GetDatasetOk

func (o *EnsemblingJobSource) GetDatasetOk() (*Dataset, bool)

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

func (*EnsemblingJobSource) GetJoinOn

func (o *EnsemblingJobSource) GetJoinOn() []string

GetJoinOn returns the JoinOn field value

func (*EnsemblingJobSource) GetJoinOnOk

func (o *EnsemblingJobSource) GetJoinOnOk() (*[]string, bool)

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

func (EnsemblingJobSource) MarshalJSON

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

func (*EnsemblingJobSource) SetDataset

func (o *EnsemblingJobSource) SetDataset(v Dataset)

SetDataset sets field value

func (*EnsemblingJobSource) SetJoinOn

func (o *EnsemblingJobSource) SetJoinOn(v []string)

SetJoinOn sets field value

type EnsemblingJobSpec

type EnsemblingJobSpec struct {
	Source      EnsemblingJobSource                      `json:"source"`
	Predictions map[string]EnsemblingJobPredictionSource `json:"predictions"`
	Ensembler   EnsemblingJobEnsemblerSpec               `json:"ensembler"`
	Sink        EnsemblingJobSink                        `json:"sink"`
}

EnsemblingJobSpec Ensembling job Specification

func NewEnsemblingJobSpec

func NewEnsemblingJobSpec(source EnsemblingJobSource, predictions map[string]EnsemblingJobPredictionSource, ensembler EnsemblingJobEnsemblerSpec, sink EnsemblingJobSink) *EnsemblingJobSpec

NewEnsemblingJobSpec instantiates a new EnsemblingJobSpec 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 NewEnsemblingJobSpecWithDefaults

func NewEnsemblingJobSpecWithDefaults() *EnsemblingJobSpec

NewEnsemblingJobSpecWithDefaults instantiates a new EnsemblingJobSpec 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 (*EnsemblingJobSpec) GetEnsembler

GetEnsembler returns the Ensembler field value

func (*EnsemblingJobSpec) GetEnsemblerOk

func (o *EnsemblingJobSpec) GetEnsemblerOk() (*EnsemblingJobEnsemblerSpec, bool)

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

func (*EnsemblingJobSpec) GetPredictions

func (o *EnsemblingJobSpec) GetPredictions() map[string]EnsemblingJobPredictionSource

GetPredictions returns the Predictions field value

func (*EnsemblingJobSpec) GetPredictionsOk

func (o *EnsemblingJobSpec) GetPredictionsOk() (*map[string]EnsemblingJobPredictionSource, bool)

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

func (*EnsemblingJobSpec) GetSink

func (o *EnsemblingJobSpec) GetSink() EnsemblingJobSink

GetSink returns the Sink field value

func (*EnsemblingJobSpec) GetSinkOk

func (o *EnsemblingJobSpec) GetSinkOk() (*EnsemblingJobSink, bool)

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

func (*EnsemblingJobSpec) GetSource

func (o *EnsemblingJobSpec) GetSource() EnsemblingJobSource

GetSource returns the Source field value

func (*EnsemblingJobSpec) GetSourceOk

func (o *EnsemblingJobSpec) GetSourceOk() (*EnsemblingJobSource, bool)

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

func (EnsemblingJobSpec) MarshalJSON

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

func (*EnsemblingJobSpec) SetEnsembler

func (o *EnsemblingJobSpec) SetEnsembler(v EnsemblingJobEnsemblerSpec)

SetEnsembler sets field value

func (*EnsemblingJobSpec) SetPredictions

func (o *EnsemblingJobSpec) SetPredictions(v map[string]EnsemblingJobPredictionSource)

SetPredictions sets field value

func (*EnsemblingJobSpec) SetSink

func (o *EnsemblingJobSpec) SetSink(v EnsemblingJobSink)

SetSink sets field value

func (*EnsemblingJobSpec) SetSource

func (o *EnsemblingJobSpec) SetSource(v EnsemblingJobSource)

SetSource sets field value

type EnsemblingResources

type EnsemblingResources struct {
	DriverCpuRequest      *string `json:"driver_cpu_request,omitempty"`
	DriverMemoryRequest   *string `json:"driver_memory_request,omitempty"`
	ExecutorReplica       *int32  `json:"executor_replica,omitempty"`
	ExecutorCpuRequest    *string `json:"executor_cpu_request,omitempty"`
	ExecutorMemoryRequest *string `json:"executor_memory_request,omitempty"`
}

EnsemblingResources struct for EnsemblingResources

func NewEnsemblingResources

func NewEnsemblingResources() *EnsemblingResources

NewEnsemblingResources instantiates a new EnsemblingResources 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 NewEnsemblingResourcesWithDefaults

func NewEnsemblingResourcesWithDefaults() *EnsemblingResources

NewEnsemblingResourcesWithDefaults instantiates a new EnsemblingResources 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 (*EnsemblingResources) GetDriverCpuRequest

func (o *EnsemblingResources) GetDriverCpuRequest() string

GetDriverCpuRequest returns the DriverCpuRequest field value if set, zero value otherwise.

func (*EnsemblingResources) GetDriverCpuRequestOk

func (o *EnsemblingResources) GetDriverCpuRequestOk() (*string, bool)

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

func (*EnsemblingResources) GetDriverMemoryRequest

func (o *EnsemblingResources) GetDriverMemoryRequest() string

GetDriverMemoryRequest returns the DriverMemoryRequest field value if set, zero value otherwise.

func (*EnsemblingResources) GetDriverMemoryRequestOk

func (o *EnsemblingResources) GetDriverMemoryRequestOk() (*string, bool)

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

func (*EnsemblingResources) GetExecutorCpuRequest

func (o *EnsemblingResources) GetExecutorCpuRequest() string

GetExecutorCpuRequest returns the ExecutorCpuRequest field value if set, zero value otherwise.

func (*EnsemblingResources) GetExecutorCpuRequestOk

func (o *EnsemblingResources) GetExecutorCpuRequestOk() (*string, bool)

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

func (*EnsemblingResources) GetExecutorMemoryRequest

func (o *EnsemblingResources) GetExecutorMemoryRequest() string

GetExecutorMemoryRequest returns the ExecutorMemoryRequest field value if set, zero value otherwise.

func (*EnsemblingResources) GetExecutorMemoryRequestOk

func (o *EnsemblingResources) GetExecutorMemoryRequestOk() (*string, bool)

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

func (*EnsemblingResources) GetExecutorReplica

func (o *EnsemblingResources) GetExecutorReplica() int32

GetExecutorReplica returns the ExecutorReplica field value if set, zero value otherwise.

func (*EnsemblingResources) GetExecutorReplicaOk

func (o *EnsemblingResources) GetExecutorReplicaOk() (*int32, bool)

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

func (*EnsemblingResources) HasDriverCpuRequest

func (o *EnsemblingResources) HasDriverCpuRequest() bool

HasDriverCpuRequest returns a boolean if a field has been set.

func (*EnsemblingResources) HasDriverMemoryRequest

func (o *EnsemblingResources) HasDriverMemoryRequest() bool

HasDriverMemoryRequest returns a boolean if a field has been set.

func (*EnsemblingResources) HasExecutorCpuRequest

func (o *EnsemblingResources) HasExecutorCpuRequest() bool

HasExecutorCpuRequest returns a boolean if a field has been set.

func (*EnsemblingResources) HasExecutorMemoryRequest

func (o *EnsemblingResources) HasExecutorMemoryRequest() bool

HasExecutorMemoryRequest returns a boolean if a field has been set.

func (*EnsemblingResources) HasExecutorReplica

func (o *EnsemblingResources) HasExecutorReplica() bool

HasExecutorReplica returns a boolean if a field has been set.

func (EnsemblingResources) MarshalJSON

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

func (*EnsemblingResources) SetDriverCpuRequest

func (o *EnsemblingResources) SetDriverCpuRequest(v string)

SetDriverCpuRequest gets a reference to the given string and assigns it to the DriverCpuRequest field.

func (*EnsemblingResources) SetDriverMemoryRequest

func (o *EnsemblingResources) SetDriverMemoryRequest(v string)

SetDriverMemoryRequest gets a reference to the given string and assigns it to the DriverMemoryRequest field.

func (*EnsemblingResources) SetExecutorCpuRequest

func (o *EnsemblingResources) SetExecutorCpuRequest(v string)

SetExecutorCpuRequest gets a reference to the given string and assigns it to the ExecutorCpuRequest field.

func (*EnsemblingResources) SetExecutorMemoryRequest

func (o *EnsemblingResources) SetExecutorMemoryRequest(v string)

SetExecutorMemoryRequest gets a reference to the given string and assigns it to the ExecutorMemoryRequest field.

func (*EnsemblingResources) SetExecutorReplica

func (o *EnsemblingResources) SetExecutorReplica(v int32)

SetExecutorReplica gets a reference to the given int32 and assigns it to the ExecutorReplica field.

type EnvVar

type EnvVar struct {
	Name  string  `json:"name"`
	Value *string `json:"value,omitempty"`
}

EnvVar struct for EnvVar

func NewEnvVar

func NewEnvVar(name string) *EnvVar

NewEnvVar instantiates a new EnvVar 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 NewEnvVarWithDefaults

func NewEnvVarWithDefaults() *EnvVar

NewEnvVarWithDefaults instantiates a new EnvVar 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 (*EnvVar) GetName

func (o *EnvVar) GetName() string

GetName returns the Name field value

func (*EnvVar) GetNameOk

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

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

func (*EnvVar) GetValue

func (o *EnvVar) GetValue() string

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

func (*EnvVar) GetValueOk

func (o *EnvVar) 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 (*EnvVar) HasValue

func (o *EnvVar) HasValue() bool

HasValue returns a boolean if a field has been set.

func (EnvVar) MarshalJSON

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

func (*EnvVar) SetName

func (o *EnvVar) SetName(v string)

SetName sets field value

func (*EnvVar) SetValue

func (o *EnvVar) SetValue(v string)

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

type NullableBigQueryDataset

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

func NewNullableBigQueryDataset

func NewNullableBigQueryDataset(val *BigQueryDataset) *NullableBigQueryDataset

func (NullableBigQueryDataset) Get

func (NullableBigQueryDataset) IsSet

func (v NullableBigQueryDataset) IsSet() bool

func (NullableBigQueryDataset) MarshalJSON

func (v NullableBigQueryDataset) MarshalJSON() ([]byte, error)

func (*NullableBigQueryDataset) Set

func (*NullableBigQueryDataset) UnmarshalJSON

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

func (*NullableBigQueryDataset) Unset

func (v *NullableBigQueryDataset) Unset()

type NullableBigQueryDatasetConfig

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

func (NullableBigQueryDatasetConfig) Get

func (NullableBigQueryDatasetConfig) IsSet

func (NullableBigQueryDatasetConfig) MarshalJSON

func (v NullableBigQueryDatasetConfig) MarshalJSON() ([]byte, error)

func (*NullableBigQueryDatasetConfig) Set

func (*NullableBigQueryDatasetConfig) UnmarshalJSON

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

func (*NullableBigQueryDatasetConfig) Unset

func (v *NullableBigQueryDatasetConfig) Unset()

type NullableBigQuerySink

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

func NewNullableBigQuerySink

func NewNullableBigQuerySink(val *BigQuerySink) *NullableBigQuerySink

func (NullableBigQuerySink) Get

func (NullableBigQuerySink) IsSet

func (v NullableBigQuerySink) IsSet() bool

func (NullableBigQuerySink) MarshalJSON

func (v NullableBigQuerySink) MarshalJSON() ([]byte, error)

func (*NullableBigQuerySink) Set

func (v *NullableBigQuerySink) Set(val *BigQuerySink)

func (*NullableBigQuerySink) UnmarshalJSON

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

func (*NullableBigQuerySink) Unset

func (v *NullableBigQuerySink) Unset()

type NullableBigQuerySinkConfig

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

func NewNullableBigQuerySinkConfig

func NewNullableBigQuerySinkConfig(val *BigQuerySinkConfig) *NullableBigQuerySinkConfig

func (NullableBigQuerySinkConfig) Get

func (NullableBigQuerySinkConfig) IsSet

func (v NullableBigQuerySinkConfig) IsSet() bool

func (NullableBigQuerySinkConfig) MarshalJSON

func (v NullableBigQuerySinkConfig) MarshalJSON() ([]byte, error)

func (*NullableBigQuerySinkConfig) Set

func (*NullableBigQuerySinkConfig) UnmarshalJSON

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

func (*NullableBigQuerySinkConfig) Unset

func (v *NullableBigQuerySinkConfig) 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 NullableEnsemblerConfig

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

func NewNullableEnsemblerConfig

func NewNullableEnsemblerConfig(val *EnsemblerConfig) *NullableEnsemblerConfig

func (NullableEnsemblerConfig) Get

func (NullableEnsemblerConfig) IsSet

func (v NullableEnsemblerConfig) IsSet() bool

func (NullableEnsemblerConfig) MarshalJSON

func (v NullableEnsemblerConfig) MarshalJSON() ([]byte, error)

func (*NullableEnsemblerConfig) Set

func (*NullableEnsemblerConfig) UnmarshalJSON

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

func (*NullableEnsemblerConfig) Unset

func (v *NullableEnsemblerConfig) Unset()

type NullableEnsemblerConfigKind

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

func NewNullableEnsemblerConfigKind

func NewNullableEnsemblerConfigKind(val *EnsemblerConfigKind) *NullableEnsemblerConfigKind

func (NullableEnsemblerConfigKind) Get

func (NullableEnsemblerConfigKind) IsSet

func (NullableEnsemblerConfigKind) MarshalJSON

func (v NullableEnsemblerConfigKind) MarshalJSON() ([]byte, error)

func (*NullableEnsemblerConfigKind) Set

func (*NullableEnsemblerConfigKind) UnmarshalJSON

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

func (*NullableEnsemblerConfigKind) Unset

func (v *NullableEnsemblerConfigKind) Unset()

type NullableEnsemblerInfraConfig

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

func NewNullableEnsemblerInfraConfig

func NewNullableEnsemblerInfraConfig(val *EnsemblerInfraConfig) *NullableEnsemblerInfraConfig

func (NullableEnsemblerInfraConfig) Get

func (NullableEnsemblerInfraConfig) IsSet

func (NullableEnsemblerInfraConfig) MarshalJSON

func (v NullableEnsemblerInfraConfig) MarshalJSON() ([]byte, error)

func (*NullableEnsemblerInfraConfig) Set

func (*NullableEnsemblerInfraConfig) UnmarshalJSON

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

func (*NullableEnsemblerInfraConfig) Unset

func (v *NullableEnsemblerInfraConfig) Unset()

type NullableEnsemblingJobEnsemblerSpec

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

func (NullableEnsemblingJobEnsemblerSpec) Get

func (NullableEnsemblingJobEnsemblerSpec) IsSet

func (NullableEnsemblingJobEnsemblerSpec) MarshalJSON

func (v NullableEnsemblingJobEnsemblerSpec) MarshalJSON() ([]byte, error)

func (*NullableEnsemblingJobEnsemblerSpec) Set

func (*NullableEnsemblingJobEnsemblerSpec) UnmarshalJSON

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

func (*NullableEnsemblingJobEnsemblerSpec) Unset

type NullableEnsemblingJobEnsemblerSpecResult

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

func (NullableEnsemblingJobEnsemblerSpecResult) Get

func (NullableEnsemblingJobEnsemblerSpecResult) IsSet

func (NullableEnsemblingJobEnsemblerSpecResult) MarshalJSON

func (*NullableEnsemblingJobEnsemblerSpecResult) Set

func (*NullableEnsemblingJobEnsemblerSpecResult) UnmarshalJSON

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

func (*NullableEnsemblingJobEnsemblerSpecResult) Unset

type NullableEnsemblingJobMeta

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

func NewNullableEnsemblingJobMeta

func NewNullableEnsemblingJobMeta(val *EnsemblingJobMeta) *NullableEnsemblingJobMeta

func (NullableEnsemblingJobMeta) Get

func (NullableEnsemblingJobMeta) IsSet

func (v NullableEnsemblingJobMeta) IsSet() bool

func (NullableEnsemblingJobMeta) MarshalJSON

func (v NullableEnsemblingJobMeta) MarshalJSON() ([]byte, error)

func (*NullableEnsemblingJobMeta) Set

func (*NullableEnsemblingJobMeta) UnmarshalJSON

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

func (*NullableEnsemblingJobMeta) Unset

func (v *NullableEnsemblingJobMeta) Unset()

type NullableEnsemblingJobPredictionSource

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

func (NullableEnsemblingJobPredictionSource) Get

func (NullableEnsemblingJobPredictionSource) IsSet

func (NullableEnsemblingJobPredictionSource) MarshalJSON

func (v NullableEnsemblingJobPredictionSource) MarshalJSON() ([]byte, error)

func (*NullableEnsemblingJobPredictionSource) Set

func (*NullableEnsemblingJobPredictionSource) UnmarshalJSON

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

func (*NullableEnsemblingJobPredictionSource) Unset

type NullableEnsemblingJobResultType

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

func (NullableEnsemblingJobResultType) Get

func (NullableEnsemblingJobResultType) IsSet

func (NullableEnsemblingJobResultType) MarshalJSON

func (v NullableEnsemblingJobResultType) MarshalJSON() ([]byte, error)

func (*NullableEnsemblingJobResultType) Set

func (*NullableEnsemblingJobResultType) UnmarshalJSON

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

func (*NullableEnsemblingJobResultType) Unset

type NullableEnsemblingJobSink

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

func NewNullableEnsemblingJobSink

func NewNullableEnsemblingJobSink(val *EnsemblingJobSink) *NullableEnsemblingJobSink

func (NullableEnsemblingJobSink) Get

func (NullableEnsemblingJobSink) IsSet

func (v NullableEnsemblingJobSink) IsSet() bool

func (NullableEnsemblingJobSink) MarshalJSON

func (v NullableEnsemblingJobSink) MarshalJSON() ([]byte, error)

func (*NullableEnsemblingJobSink) Set

func (*NullableEnsemblingJobSink) UnmarshalJSON

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

func (*NullableEnsemblingJobSink) Unset

func (v *NullableEnsemblingJobSink) Unset()

type NullableEnsemblingJobSource

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

func NewNullableEnsemblingJobSource

func NewNullableEnsemblingJobSource(val *EnsemblingJobSource) *NullableEnsemblingJobSource

func (NullableEnsemblingJobSource) Get

func (NullableEnsemblingJobSource) IsSet

func (NullableEnsemblingJobSource) MarshalJSON

func (v NullableEnsemblingJobSource) MarshalJSON() ([]byte, error)

func (*NullableEnsemblingJobSource) Set

func (*NullableEnsemblingJobSource) UnmarshalJSON

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

func (*NullableEnsemblingJobSource) Unset

func (v *NullableEnsemblingJobSource) Unset()

type NullableEnsemblingJobSpec

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

func NewNullableEnsemblingJobSpec

func NewNullableEnsemblingJobSpec(val *EnsemblingJobSpec) *NullableEnsemblingJobSpec

func (NullableEnsemblingJobSpec) Get

func (NullableEnsemblingJobSpec) IsSet

func (v NullableEnsemblingJobSpec) IsSet() bool

func (NullableEnsemblingJobSpec) MarshalJSON

func (v NullableEnsemblingJobSpec) MarshalJSON() ([]byte, error)

func (*NullableEnsemblingJobSpec) Set

func (*NullableEnsemblingJobSpec) UnmarshalJSON

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

func (*NullableEnsemblingJobSpec) Unset

func (v *NullableEnsemblingJobSpec) Unset()

type NullableEnsemblingResources

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

func NewNullableEnsemblingResources

func NewNullableEnsemblingResources(val *EnsemblingResources) *NullableEnsemblingResources

func (NullableEnsemblingResources) Get

func (NullableEnsemblingResources) IsSet

func (NullableEnsemblingResources) MarshalJSON

func (v NullableEnsemblingResources) MarshalJSON() ([]byte, error)

func (*NullableEnsemblingResources) Set

func (*NullableEnsemblingResources) UnmarshalJSON

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

func (*NullableEnsemblingResources) Unset

func (v *NullableEnsemblingResources) Unset()

type NullableEnvVar

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

func NewNullableEnvVar

func NewNullableEnvVar(val *EnvVar) *NullableEnvVar

func (NullableEnvVar) Get

func (v NullableEnvVar) Get() *EnvVar

func (NullableEnvVar) IsSet

func (v NullableEnvVar) IsSet() bool

func (NullableEnvVar) MarshalJSON

func (v NullableEnvVar) MarshalJSON() ([]byte, error)

func (*NullableEnvVar) Set

func (v *NullableEnvVar) Set(val *EnvVar)

func (*NullableEnvVar) UnmarshalJSON

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

func (*NullableEnvVar) Unset

func (v *NullableEnvVar) Unset()

type NullableSaveMode

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

func NewNullableSaveMode

func NewNullableSaveMode(val *SaveMode) *NullableSaveMode

func (NullableSaveMode) Get

func (v NullableSaveMode) Get() *SaveMode

func (NullableSaveMode) IsSet

func (v NullableSaveMode) IsSet() bool

func (NullableSaveMode) MarshalJSON

func (v NullableSaveMode) MarshalJSON() ([]byte, error)

func (*NullableSaveMode) Set

func (v *NullableSaveMode) Set(val *SaveMode)

func (*NullableSaveMode) UnmarshalJSON

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

func (*NullableSaveMode) Unset

func (v *NullableSaveMode) Unset()

type SaveMode

type SaveMode string

SaveMode the model 'SaveMode'

const (
	SAVEMODE_ERRORIFEXISTS SaveMode = "ERRORIFEXISTS"
	SAVEMODE_OVERWRITE     SaveMode = "OVERWRITE"
	SAVEMODE_APPEND        SaveMode = "APPEND"
	SAVEMODE_IGNORE        SaveMode = "IGNORE"
)

List of SaveMode

func NewSaveModeFromValue

func NewSaveModeFromValue(v string) (*SaveMode, error)

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

func (SaveMode) IsValid

func (v SaveMode) IsValid() bool

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

func (SaveMode) Ptr

func (v SaveMode) Ptr() *SaveMode

Ptr returns reference to SaveMode value

func (*SaveMode) UnmarshalJSON

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL