sdk

package
v1.10.8 Latest Latest
Warning

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

Go to latest
Published: Jan 26, 2024 License: Apache-2.0 Imports: 21 Imported by: 1

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 (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// 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 AllowedEtlDagSchemasEnumsLanguageTypeEnumValues = []EtlDagSchemasEnumsLanguageType{
	"pyspark",
	"pandas",
	"java",
	"dask",
	"beam",
	"flink",
}

All allowed values of EtlDagSchemasEnumsLanguageType enum

View Source
var AllowedEtlDagVisitorsEnumsLanguageTypeEnumValues = []EtlDagVisitorsEnumsLanguageType{
	"pyspark",
	"pandas",
	"java",
	"dask",
	"beam",
	"flink",
}

All allowed values of EtlDagVisitorsEnumsLanguageType enum

View Source
var AllowedResourceTypeEnumValues = []ResourceType{
	"catalog",
	"database",
	"job",
	"project",
	"table",
	"user",
	"workflow",
}

All allowed values of ResourceType enum

View Source
var AllowedSaveModeEnumValues = []SaveMode{
	"overwrite",
	"append",
}

All allowed values of SaveMode enum

Functions ¶

func CacheExpires ¶

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

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

func IsNil ¶ added in v1.10.3

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 ANDConditionInner ¶ added in v1.10.3

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

ANDConditionInner struct for ANDConditionInner

func (*ANDConditionInner) MarshalJSON ¶ added in v1.10.3

func (src *ANDConditionInner) MarshalJSON() ([]byte, error)

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

func (*ANDConditionInner) UnmarshalJSON ¶ added in v1.10.3

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

Unmarshal JSON data into any of the pointers in the struct

type APIClient ¶

type APIClient struct {
	ActionAPI *ActionAPIService

	ActivityAPI *ActivityAPIService

	ApplicationAPI *ApplicationAPIService

	AssignmentAPI *AssignmentAPIService

	BridgeAPI *BridgeAPIService

	BucketAPI *BucketAPIService

	CatalogAPI *CatalogAPIService

	CodeAPI *CodeAPIService

	CostAPI *CostAPIService

	DataAPI *DataAPIService

	DatabaseAPI *DatabaseAPIService

	DatawarehouseAPI *DatawarehouseAPIService

	DeviceAPI *DeviceAPIService

	EndpointAPI *EndpointAPIService

	EnrollmentAPI *EnrollmentAPIService

	EnvAPI *EnvAPIService

	EstimationAPI *EstimationAPIService

	EventAPI *EventAPIService

	FieldAPI *FieldAPIService

	FirewallAPI *FirewallAPIService

	FirewallRulesAPI *FirewallRulesAPIService

	FollowAPI *FollowAPIService

	GraphAPI *GraphAPIService

	GroupAPI *GroupAPIService

	HistoryAPI *HistoryAPIService

	IdentityAPI *IdentityAPIService

	IdentityProviderAPI *IdentityProviderAPIService

	InfrastructureAPI *InfrastructureAPIService

	InstanceTypeAPI *InstanceTypeAPIService

	InvoiceAPI *InvoiceAPIService

	JobAPI *JobAPIService

	LayerAPI *LayerAPIService

	LibraryAPI *LibraryAPIService

	MarketplaceAPI *MarketplaceAPIService

	MessageAPI *MessageAPIService

	ModelAPI *ModelAPIService

	NotificationAPI *NotificationAPIService

	PaymentAPI *PaymentAPIService

	PaymentmethodAPI *PaymentmethodAPIService

	PermissionAPI *PermissionAPIService

	PriceAPI *PriceAPIService

	ProjectAPI *ProjectAPIService

	QuotaAPI *QuotaAPIService

	RoleAPI *RoleAPIService

	RunAPI *RunAPIService

	RuntimeAPI *RuntimeAPIService

	SearchAPI *SearchAPIService

	SecretAPI *SecretAPIService

	SessionsAPI *SessionsAPIService

	StreamAPI *StreamAPIService

	StripeAPI *StripeAPIService

	StyleAPI *StyleAPIService

	SubscriptionAPI *SubscriptionAPIService

	TableAPI *TableAPIService

	TenantAPI *TenantAPIService

	TicketAPI *TicketAPIService

	UsageAPI *UsageAPIService

	UserAPI *UserAPIService

	VerificationAPI *VerificationAPIService

	WorkflowAPI *WorkflowAPIService

	WorkspaceAPI *WorkspaceAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the Tenant API API v0.0.1 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 Action ¶

type Action struct {
	Comment  *string                           `json:"comment,omitempty"`
	Type     *string                           `json:"type,omitempty"`
	Metadata map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Action struct for Action

func NewAction ¶

func NewAction() *Action

NewAction instantiates a new Action 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 NewActionWithDefaults ¶

func NewActionWithDefaults() *Action

NewActionWithDefaults instantiates a new Action 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 (*Action) GetComment ¶

func (o *Action) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*Action) GetCommentOk ¶

func (o *Action) GetCommentOk() (*string, bool)

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

func (*Action) GetMetadata ¶

func (o *Action) GetMetadata() map[string]map[string]interface{}

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

func (*Action) GetMetadataOk ¶

func (o *Action) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Action) GetType ¶

func (o *Action) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Action) GetTypeOk ¶

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

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

func (*Action) HasComment ¶

func (o *Action) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*Action) HasMetadata ¶

func (o *Action) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Action) HasType ¶

func (o *Action) HasType() bool

HasType returns a boolean if a field has been set.

func (Action) MarshalJSON ¶

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

func (*Action) SetComment ¶

func (o *Action) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*Action) SetMetadata ¶

func (o *Action) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Action) SetType ¶

func (o *Action) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Action) ToMap ¶ added in v1.10.3

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

type Action1 ¶ added in v1.10.3

type Action1 struct {
	CodeAction     *CodeAction
	ValidityAction *ValidityAction
}

Action1 - Actions on the DAG.

func CodeActionAsAction1 ¶ added in v1.10.3

func CodeActionAsAction1(v *CodeAction) Action1

CodeActionAsAction1 is a convenience function that returns CodeAction wrapped in Action1

func ValidityActionAsAction1 ¶ added in v1.10.3

func ValidityActionAsAction1(v *ValidityAction) Action1

ValidityActionAsAction1 is a convenience function that returns ValidityAction wrapped in Action1

func (*Action1) GetActualInstance ¶ added in v1.10.3

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

Get the actual instance

func (Action1) MarshalJSON ¶ added in v1.10.3

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

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

func (*Action1) UnmarshalJSON ¶ added in v1.10.3

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

Unmarshal JSON data into one of the pointers in the struct

type ActionAPIService ¶ added in v1.10.3

type ActionAPIService service

ActionAPIService ActionAPI service

func (*ActionAPIService) ExecuteAction ¶ added in v1.10.3

ExecuteAction Execute an action

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExecuteActionRequest

func (*ActionAPIService) ExecuteActionExecute ¶ added in v1.10.3

func (a *ActionAPIService) ExecuteActionExecute(r ApiExecuteActionRequest) (*http.Response, error)

Execute executes the request

type Activity ¶ added in v1.10.3

type Activity struct {
	Data          map[string]interface{} `json:"data,omitempty"`
	Id            *string                `json:"id,omitempty"`
	Time          *time.Time             `json:"time,omitempty"`
	ReactionCount []Reaction             `json:"reaction_count,omitempty"`
}

Activity Object Activity.

func NewActivity ¶ added in v1.10.3

func NewActivity() *Activity

NewActivity instantiates a new Activity 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 NewActivityWithDefaults ¶ added in v1.10.3

func NewActivityWithDefaults() *Activity

NewActivityWithDefaults instantiates a new Activity 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 (*Activity) GetData ¶ added in v1.10.3

func (o *Activity) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*Activity) GetDataOk ¶ added in v1.10.3

func (o *Activity) GetDataOk() (map[string]interface{}, bool)

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

func (*Activity) GetId ¶ added in v1.10.3

func (o *Activity) GetId() string

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

func (*Activity) GetIdOk ¶ added in v1.10.3

func (o *Activity) 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 (*Activity) GetReactionCount ¶ added in v1.10.3

func (o *Activity) GetReactionCount() []Reaction

GetReactionCount returns the ReactionCount field value if set, zero value otherwise.

func (*Activity) GetReactionCountOk ¶ added in v1.10.3

func (o *Activity) GetReactionCountOk() ([]Reaction, bool)

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

func (*Activity) GetTime ¶ added in v1.10.3

func (o *Activity) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*Activity) GetTimeOk ¶ added in v1.10.3

func (o *Activity) GetTimeOk() (*time.Time, bool)

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

func (*Activity) HasData ¶ added in v1.10.3

func (o *Activity) HasData() bool

HasData returns a boolean if a field has been set.

func (*Activity) HasId ¶ added in v1.10.3

func (o *Activity) HasId() bool

HasId returns a boolean if a field has been set.

func (*Activity) HasReactionCount ¶ added in v1.10.3

func (o *Activity) HasReactionCount() bool

HasReactionCount returns a boolean if a field has been set.

func (*Activity) HasTime ¶ added in v1.10.3

func (o *Activity) HasTime() bool

HasTime returns a boolean if a field has been set.

func (Activity) MarshalJSON ¶ added in v1.10.3

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

func (*Activity) SetData ¶ added in v1.10.3

func (o *Activity) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*Activity) SetId ¶ added in v1.10.3

func (o *Activity) SetId(v string)

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

func (*Activity) SetReactionCount ¶ added in v1.10.3

func (o *Activity) SetReactionCount(v []Reaction)

SetReactionCount gets a reference to the given []Reaction and assigns it to the ReactionCount field.

func (*Activity) SetTime ¶ added in v1.10.3

func (o *Activity) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (Activity) ToMap ¶ added in v1.10.3

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

type ActivityAPIService ¶ added in v1.10.3

type ActivityAPIService service

ActivityAPIService ActivityAPI service

func (*ActivityAPIService) CreateActivity ¶ added in v1.10.3

CreateActivity Create a new activity

An user can create a new activity in the platform. Activities represent events or tasks that users can participate in. Each activity may have a name, description, date and time.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateActivityRequest

func (*ActivityAPIService) CreateActivityExecute ¶ added in v1.10.3

func (a *ActivityAPIService) CreateActivityExecute(r ApiCreateActivityRequest) (*Activity, *http.Response, error)

Execute executes the request

@return Activity

func (*ActivityAPIService) CreateCommentForActivity ¶ added in v1.10.3

func (a *ActivityAPIService) CreateCommentForActivity(ctx context.Context, activityId string) ApiCreateCommentForActivityRequest

CreateCommentForActivity Insert a user comment for a given activity

Create a new comment for an activity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param activityId
@return ApiCreateCommentForActivityRequest

func (*ActivityAPIService) CreateCommentForActivityExecute ¶ added in v1.10.3

func (a *ActivityAPIService) CreateCommentForActivityExecute(r ApiCreateCommentForActivityRequest) ([]CommentActivity, *http.Response, error)

Execute executes the request

@return []CommentActivity

func (*ActivityAPIService) CreateReactionForActivity ¶ added in v1.10.3

func (a *ActivityAPIService) CreateReactionForActivity(ctx context.Context, activityId string) ApiCreateReactionForActivityRequest

CreateReactionForActivity Insert the reaction of an user to a given activity

Insert a user's reaction to an activity. Each reaction increments the reaction counter and adds the user to the list of users who used that reaction.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param activityId
@return ApiCreateReactionForActivityRequest

func (*ActivityAPIService) CreateReactionForActivityExecute ¶ added in v1.10.3

func (a *ActivityAPIService) CreateReactionForActivityExecute(r ApiCreateReactionForActivityRequest) ([]ReactionCount, *http.Response, error)

Execute executes the request

@return []ReactionCount

func (*ActivityAPIService) DeleteCommentFromActivity ¶ added in v1.10.3

func (a *ActivityAPIService) DeleteCommentFromActivity(ctx context.Context, activityId string, commentId string) ApiDeleteCommentFromActivityRequest

DeleteCommentFromActivity Delete the comment of an user for a given activity

Delete an user's comment to an activity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param activityId
@param commentId
@return ApiDeleteCommentFromActivityRequest

func (*ActivityAPIService) DeleteCommentFromActivityExecute ¶ added in v1.10.3

func (a *ActivityAPIService) DeleteCommentFromActivityExecute(r ApiDeleteCommentFromActivityRequest) (*http.Response, error)

Execute executes the request

func (*ActivityAPIService) DeleteReactionFromActivity ¶ added in v1.10.3

func (a *ActivityAPIService) DeleteReactionFromActivity(ctx context.Context, activityId string, reactionId string) ApiDeleteReactionFromActivityRequest

DeleteReactionFromActivity Delete users' reactions for a given activity

Delete a user's reaction to an activity. Each reaction decrements (or deletes) the reaction counter and removes the user from the list of users who have used that reaction.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param activityId
@param reactionId
@return ApiDeleteReactionFromActivityRequest

func (*ActivityAPIService) DeleteReactionFromActivityExecute ¶ added in v1.10.3

func (a *ActivityAPIService) DeleteReactionFromActivityExecute(r ApiDeleteReactionFromActivityRequest) (*http.Response, error)

Execute executes the request

func (*ActivityAPIService) GetActivitiesFromTimeline ¶ added in v1.10.3

func (a *ActivityAPIService) GetActivitiesFromTimeline(ctx context.Context) ApiGetActivitiesFromTimelineRequest

GetActivitiesFromTimeline Get all activities from timeline

Return timeline for specific resources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetActivitiesFromTimelineRequest

func (*ActivityAPIService) GetActivitiesFromTimelineExecute ¶ added in v1.10.3

func (a *ActivityAPIService) GetActivitiesFromTimelineExecute(r ApiGetActivitiesFromTimelineRequest) ([]Activity, *http.Response, error)

Execute executes the request

@return []Activity

func (*ActivityAPIService) GetCommentsFromActivity ¶ added in v1.10.3

func (a *ActivityAPIService) GetCommentsFromActivity(ctx context.Context, activityId string) ApiGetCommentsFromActivityRequest

GetCommentsFromActivity Get all the comments for a given activity

For each activity (within a defined tenant), retrieve all the comment information. This information is made up of the comments of the activity with the users who wrote the comments.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param activityId
@return ApiGetCommentsFromActivityRequest

func (*ActivityAPIService) GetCommentsFromActivityExecute ¶ added in v1.10.3

func (a *ActivityAPIService) GetCommentsFromActivityExecute(r ApiGetCommentsFromActivityRequest) ([]CommentActivity, *http.Response, error)

Execute executes the request

@return []CommentActivity

func (*ActivityAPIService) GetReactionsFromActivity ¶ added in v1.10.3

func (a *ActivityAPIService) GetReactionsFromActivity(ctx context.Context, activityId string) ApiGetReactionsFromActivityRequest

GetReactionsFromActivity Get all user reactions for a given activity

For each activity (within a defined tenant), retrieve all the reaction information. This information is made up of the names of the reactions and the list of the users who have used the given reaction.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param activityId
@return ApiGetReactionsFromActivityRequest

func (*ActivityAPIService) GetReactionsFromActivityExecute ¶ added in v1.10.3

func (a *ActivityAPIService) GetReactionsFromActivityExecute(r ApiGetReactionsFromActivityRequest) ([]Reaction, *http.Response, error)

Execute executes the request

@return []Reaction

func (*ActivityAPIService) UpdateCommentForActivity ¶ added in v1.10.3

func (a *ActivityAPIService) UpdateCommentForActivity(ctx context.Context, activityId string, commentId string) ApiUpdateCommentForActivityRequest

UpdateCommentForActivity Update the comment of an user for a given activity

Update an user's comment to an activity.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param activityId
@param commentId
@return ApiUpdateCommentForActivityRequest

func (*ActivityAPIService) UpdateCommentForActivityExecute ¶ added in v1.10.3

func (a *ActivityAPIService) UpdateCommentForActivityExecute(r ApiUpdateCommentForActivityRequest) ([]CommentActivity, *http.Response, error)

Execute executes the request

@return []CommentActivity

type AdminTarget ¶

type AdminTarget struct {
	Target
	Type *string `json:"type,omitempty"`
}

AdminTarget struct for AdminTarget

func NewAdminTarget ¶

func NewAdminTarget() *AdminTarget

NewAdminTarget instantiates a new AdminTarget 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 NewAdminTargetWithDefaults ¶

func NewAdminTargetWithDefaults() *AdminTarget

NewAdminTargetWithDefaults instantiates a new AdminTarget 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 (*AdminTarget) GetType ¶

func (o *AdminTarget) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AdminTarget) GetTypeOk ¶

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

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

func (*AdminTarget) HasType ¶

func (o *AdminTarget) HasType() bool

HasType returns a boolean if a field has been set.

func (AdminTarget) MarshalJSON ¶

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

func (*AdminTarget) SetType ¶

func (o *AdminTarget) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (AdminTarget) ToMap ¶ added in v1.10.3

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

type AdminTargetAllOf ¶

type AdminTargetAllOf struct {
	Type *string `json:"type,omitempty"`
}

AdminTargetAllOf struct for AdminTargetAllOf

func NewAdminTargetAllOf ¶

func NewAdminTargetAllOf() *AdminTargetAllOf

NewAdminTargetAllOf instantiates a new AdminTargetAllOf 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 NewAdminTargetAllOfWithDefaults ¶

func NewAdminTargetAllOfWithDefaults() *AdminTargetAllOf

NewAdminTargetAllOfWithDefaults instantiates a new AdminTargetAllOf 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 (*AdminTargetAllOf) GetType ¶

func (o *AdminTargetAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AdminTargetAllOf) GetTypeOk ¶

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

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

func (*AdminTargetAllOf) HasType ¶

func (o *AdminTargetAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (AdminTargetAllOf) MarshalJSON ¶

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

func (*AdminTargetAllOf) SetType ¶

func (o *AdminTargetAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type AggParams ¶ added in v1.10.3

type AggParams struct {
	// Column(s) to use to group the dataset.
	GroupColumns []string `json:"group_columns"`
	// List of aggregations to compute.
	Aggregations []AggregationsInner `json:"aggregations"`
}

AggParams struct for AggParams

func NewAggParams ¶ added in v1.10.3

func NewAggParams(groupColumns []string, aggregations []AggregationsInner) *AggParams

NewAggParams instantiates a new AggParams 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 NewAggParamsWithDefaults ¶ added in v1.10.3

func NewAggParamsWithDefaults() *AggParams

NewAggParamsWithDefaults instantiates a new AggParams 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 (*AggParams) GetAggregations ¶ added in v1.10.3

func (o *AggParams) GetAggregations() []AggregationsInner

GetAggregations returns the Aggregations field value

func (*AggParams) GetAggregationsOk ¶ added in v1.10.3

func (o *AggParams) GetAggregationsOk() ([]AggregationsInner, bool)

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

func (*AggParams) GetGroupColumns ¶ added in v1.10.3

func (o *AggParams) GetGroupColumns() []string

GetGroupColumns returns the GroupColumns field value

func (*AggParams) GetGroupColumnsOk ¶ added in v1.10.3

func (o *AggParams) GetGroupColumnsOk() ([]string, bool)

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

func (AggParams) MarshalJSON ¶ added in v1.10.3

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

func (*AggParams) SetAggregations ¶ added in v1.10.3

func (o *AggParams) SetAggregations(v []AggregationsInner)

SetAggregations sets field value

func (*AggParams) SetGroupColumns ¶ added in v1.10.3

func (o *AggParams) SetGroupColumns(v []string)

SetGroupColumns sets field value

func (AggParams) ToMap ¶ added in v1.10.3

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

func (*AggParams) UnmarshalJSON ¶ added in v1.10.3

func (o *AggParams) UnmarshalJSON(bytes []byte) (err error)

type AggTask ¶ added in v1.10.3

type AggTask struct {
	// Identifier of the task.
	Id     string    `json:"id"`
	Params AggParams `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the aggregation task.
	Type *string `json:"type,omitempty"`
}

AggTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewAggTask ¶ added in v1.10.3

func NewAggTask(id string, params AggParams, dependency []string) *AggTask

NewAggTask instantiates a new AggTask 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 NewAggTaskWithDefaults ¶ added in v1.10.3

func NewAggTaskWithDefaults() *AggTask

NewAggTaskWithDefaults instantiates a new AggTask 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 (*AggTask) GetDependency ¶ added in v1.10.3

func (o *AggTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*AggTask) GetDependencyOk ¶ added in v1.10.3

func (o *AggTask) GetDependencyOk() ([]string, bool)

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

func (*AggTask) GetId ¶ added in v1.10.3

func (o *AggTask) GetId() string

GetId returns the Id field value

func (*AggTask) GetIdOk ¶ added in v1.10.3

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

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

func (*AggTask) GetParams ¶ added in v1.10.3

func (o *AggTask) GetParams() AggParams

GetParams returns the Params field value

func (*AggTask) GetParamsOk ¶ added in v1.10.3

func (o *AggTask) GetParamsOk() (*AggParams, bool)

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

func (*AggTask) GetType ¶ added in v1.10.3

func (o *AggTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AggTask) GetTypeOk ¶ added in v1.10.3

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

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

func (*AggTask) HasType ¶ added in v1.10.3

func (o *AggTask) HasType() bool

HasType returns a boolean if a field has been set.

func (AggTask) MarshalJSON ¶ added in v1.10.3

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

func (*AggTask) SetDependency ¶ added in v1.10.3

func (o *AggTask) SetDependency(v []string)

SetDependency sets field value

func (*AggTask) SetId ¶ added in v1.10.3

func (o *AggTask) SetId(v string)

SetId sets field value

func (*AggTask) SetParams ¶ added in v1.10.3

func (o *AggTask) SetParams(v AggParams)

SetParams sets field value

func (*AggTask) SetType ¶ added in v1.10.3

func (o *AggTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (AggTask) ToMap ¶ added in v1.10.3

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

func (*AggTask) UnmarshalJSON ¶ added in v1.10.3

func (o *AggTask) UnmarshalJSON(bytes []byte) (err error)

type AggregationsInner ¶ added in v1.10.3

type AggregationsInner struct {
	CountParams *CountParams
	MaxParams   *MaxParams
	MeanParams  *MeanParams
	MinParams   *MinParams
	SumParams   *SumParams
}

AggregationsInner struct for AggregationsInner

func (*AggregationsInner) MarshalJSON ¶ added in v1.10.3

func (src *AggregationsInner) MarshalJSON() ([]byte, error)

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

func (*AggregationsInner) UnmarshalJSON ¶ added in v1.10.3

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

Unmarshal JSON data into any of the pointers in the struct

type AirflowOptions ¶

type AirflowOptions struct {
	Options
	Type *string `json:"type,omitempty"`
}

AirflowOptions struct for AirflowOptions

func NewAirflowOptions ¶

func NewAirflowOptions() *AirflowOptions

NewAirflowOptions instantiates a new AirflowOptions 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 NewAirflowOptionsWithDefaults ¶

func NewAirflowOptionsWithDefaults() *AirflowOptions

NewAirflowOptionsWithDefaults instantiates a new AirflowOptions 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 (*AirflowOptions) GetType ¶

func (o *AirflowOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AirflowOptions) GetTypeOk ¶

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

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

func (*AirflowOptions) HasType ¶

func (o *AirflowOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (AirflowOptions) MarshalJSON ¶

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

func (*AirflowOptions) SetType ¶

func (o *AirflowOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (AirflowOptions) ToMap ¶ added in v1.10.3

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

type AirflowOptionsAllOf ¶

type AirflowOptionsAllOf struct {
	Type *string `json:"type,omitempty"`
}

AirflowOptionsAllOf struct for AirflowOptionsAllOf

func NewAirflowOptionsAllOf ¶

func NewAirflowOptionsAllOf() *AirflowOptionsAllOf

NewAirflowOptionsAllOf instantiates a new AirflowOptionsAllOf 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 NewAirflowOptionsAllOfWithDefaults ¶

func NewAirflowOptionsAllOfWithDefaults() *AirflowOptionsAllOf

NewAirflowOptionsAllOfWithDefaults instantiates a new AirflowOptionsAllOf 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 (*AirflowOptionsAllOf) GetType ¶

func (o *AirflowOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AirflowOptionsAllOf) GetTypeOk ¶

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

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

func (*AirflowOptionsAllOf) HasType ¶

func (o *AirflowOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (AirflowOptionsAllOf) MarshalJSON ¶

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

func (*AirflowOptionsAllOf) SetType ¶

func (o *AirflowOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type AndFilter ¶ added in v1.10.3

type AndFilter struct {
	// Operator for AND filter.
	Type *string `json:"type,omitempty"`
	// Condition for AND filter.
	Conditions []ANDConditionInner `json:"conditions"`
}

AndFilter Filter values that verify all conditions. Attributes ---------- type : RelationalOperatorType Type of the filter. conditions : union_filter Union of all relational filters.

func NewAndFilter ¶ added in v1.10.3

func NewAndFilter(conditions []ANDConditionInner) *AndFilter

NewAndFilter instantiates a new AndFilter 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 NewAndFilterWithDefaults ¶ added in v1.10.3

func NewAndFilterWithDefaults() *AndFilter

NewAndFilterWithDefaults instantiates a new AndFilter 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 (*AndFilter) GetConditions ¶ added in v1.10.3

func (o *AndFilter) GetConditions() []ANDConditionInner

GetConditions returns the Conditions field value

func (*AndFilter) GetConditionsOk ¶ added in v1.10.3

func (o *AndFilter) GetConditionsOk() ([]ANDConditionInner, bool)

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

func (*AndFilter) GetType ¶ added in v1.10.3

func (o *AndFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AndFilter) GetTypeOk ¶ added in v1.10.3

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

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

func (*AndFilter) HasType ¶ added in v1.10.3

func (o *AndFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (AndFilter) MarshalJSON ¶ added in v1.10.3

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

func (*AndFilter) SetConditions ¶ added in v1.10.3

func (o *AndFilter) SetConditions(v []ANDConditionInner)

SetConditions sets field value

func (*AndFilter) SetType ¶ added in v1.10.3

func (o *AndFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (AndFilter) ToMap ¶ added in v1.10.3

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

func (*AndFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *AndFilter) UnmarshalJSON(bytes []byte) (err error)

type ApiAddResourceHistoryForUserRequest ¶

type ApiAddResourceHistoryForUserRequest struct {
	ApiService *HistoryAPIService
	// contains filtered or unexported fields
}

func (ApiAddResourceHistoryForUserRequest) Execute ¶

func (ApiAddResourceHistoryForUserRequest) Id ¶

The id of resource

func (ApiAddResourceHistoryForUserRequest) Type_ ¶

The type of resource

func (ApiAddResourceHistoryForUserRequest) XTenant ¶

type ApiAddSearchHistoryForUserRequest ¶

type ApiAddSearchHistoryForUserRequest struct {
	ApiService *HistoryAPIService
	// contains filtered or unexported fields
}

func (ApiAddSearchHistoryForUserRequest) Execute ¶

func (ApiAddSearchHistoryForUserRequest) SearchHistory ¶

The search history to be created

func (ApiAddSearchHistoryForUserRequest) XTenant ¶

type ApiBuildRuntimeByIdRequest ¶

type ApiBuildRuntimeByIdRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiBuildRuntimeByIdRequest) Execute ¶

func (ApiBuildRuntimeByIdRequest) XTenant ¶

type ApiCallProxyInferRequest ¶ added in v1.10.3

type ApiCallProxyInferRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiCallProxyInferRequest) Body ¶ added in v1.10.3

func (r ApiCallProxyInferRequest) Body(body map[string]interface{}) ApiCallProxyInferRequest

func (ApiCallProxyInferRequest) Execute ¶ added in v1.10.3

func (r ApiCallProxyInferRequest) Execute() (*http.Response, error)

func (ApiCallProxyInferRequest) XTenant ¶ added in v1.10.3

type ApiCallProxyMetadataRequest ¶ added in v1.10.3

type ApiCallProxyMetadataRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiCallProxyMetadataRequest) Execute ¶ added in v1.10.3

func (ApiCallProxyMetadataRequest) XTenant ¶ added in v1.10.3

type ApiCheckAccessByIpRequest ¶

type ApiCheckAccessByIpRequest struct {
	ApiService *FirewallAPIService
	// contains filtered or unexported fields
}

func (ApiCheckAccessByIpRequest) Execute ¶

func (ApiCheckAccessByIpRequest) XTenant ¶

type ApiCreateActivityRequest ¶ added in v1.10.3

type ApiCreateActivityRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiCreateActivityRequest) Activity ¶ added in v1.10.3

func (ApiCreateActivityRequest) Execute ¶ added in v1.10.3

func (ApiCreateActivityRequest) XTenant ¶ added in v1.10.3

type ApiCreateApplicationRequest ¶

type ApiCreateApplicationRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiCreateApplicationRequest) Application ¶

The application to be created

func (ApiCreateApplicationRequest) Execute ¶

func (ApiCreateApplicationRequest) XTenant ¶

type ApiCreateBridgeRequest ¶

type ApiCreateBridgeRequest struct {
	ApiService *BridgeAPIService
	// contains filtered or unexported fields
}

func (ApiCreateBridgeRequest) Bridge ¶

The bridge to be created

func (ApiCreateBridgeRequest) Execute ¶

func (r ApiCreateBridgeRequest) Execute() (*Bridge, *http.Response, error)

func (ApiCreateBridgeRequest) XTenant ¶

type ApiCreateBucketRequest ¶

type ApiCreateBucketRequest struct {
	ApiService *BucketAPIService
	// contains filtered or unexported fields
}

func (ApiCreateBucketRequest) Bucket ¶

The bucket to be created

func (ApiCreateBucketRequest) Execute ¶

func (r ApiCreateBucketRequest) Execute() (*Bucket, *http.Response, error)

func (ApiCreateBucketRequest) XTenant ¶

type ApiCreateCatalogFollowerRequest ¶ added in v1.10.3

type ApiCreateCatalogFollowerRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCatalogFollowerRequest) Execute ¶ added in v1.10.3

func (ApiCreateCatalogFollowerRequest) XTenant ¶ added in v1.10.3

type ApiCreateCommentForActivityRequest ¶ added in v1.10.3

type ApiCreateCommentForActivityRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiCreateCommentForActivityRequest) Comment ¶ added in v1.10.3

func (ApiCreateCommentForActivityRequest) Execute ¶ added in v1.10.3

func (ApiCreateCommentForActivityRequest) XTenant ¶ added in v1.10.3

type ApiCreateDataWarehouseRequest ¶ added in v1.10.3

type ApiCreateDataWarehouseRequest struct {
	ApiService *DatawarehouseAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDataWarehouseRequest) DataWarehouse ¶ added in v1.10.3

The datawarehouse to be created

func (ApiCreateDataWarehouseRequest) Execute ¶ added in v1.10.3

func (ApiCreateDataWarehouseRequest) XTenant ¶ added in v1.10.3

type ApiCreateDatabaseFollowerRequest ¶ added in v1.10.3

type ApiCreateDatabaseFollowerRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDatabaseFollowerRequest) Execute ¶ added in v1.10.3

func (ApiCreateDatabaseFollowerRequest) XTenant ¶ added in v1.10.3

type ApiCreateDatabaseRequest ¶ added in v1.10.3

type ApiCreateDatabaseRequest struct {
	ApiService *DatabaseAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDatabaseRequest) Database ¶ added in v1.10.3

The database to be created

func (ApiCreateDatabaseRequest) Execute ¶ added in v1.10.3

func (ApiCreateDatabaseRequest) XTenant ¶ added in v1.10.3

type ApiCreateDeviceRequest ¶ added in v1.10.3

type ApiCreateDeviceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateDeviceRequest) Execute ¶ added in v1.10.3

func (r ApiCreateDeviceRequest) Execute() (*Device, *http.Response, error)

func (ApiCreateDeviceRequest) Filename ¶ added in v1.10.3

func (r ApiCreateDeviceRequest) Filename(filename []*os.File) ApiCreateDeviceRequest

func (ApiCreateDeviceRequest) XTenant ¶ added in v1.10.3

type ApiCreateEndpointForProjectRequest ¶ added in v1.10.3

type ApiCreateEndpointForProjectRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEndpointForProjectRequest) Endpoint ¶ added in v1.10.3

The endpoint to be created

func (ApiCreateEndpointForProjectRequest) Execute ¶ added in v1.10.3

func (ApiCreateEndpointForProjectRequest) XTenant ¶ added in v1.10.3

type ApiCreateEnrollmentRequest ¶ added in v1.10.3

type ApiCreateEnrollmentRequest struct {
	ApiService *EnrollmentAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEnrollmentRequest) Enrollment ¶ added in v1.10.3

The enrollment to be created

func (ApiCreateEnrollmentRequest) Execute ¶ added in v1.10.3

func (ApiCreateEnrollmentRequest) XTenant ¶ added in v1.10.3

type ApiCreateEstimationRequest ¶ added in v1.10.3

type ApiCreateEstimationRequest struct {
	ApiService *EstimationAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEstimationRequest) Estimation ¶ added in v1.10.3

The estimation to be calculated

func (ApiCreateEstimationRequest) Execute ¶ added in v1.10.3

func (ApiCreateEstimationRequest) XTenant ¶ added in v1.10.3

type ApiCreateEventForJobAndRunRequest ¶

type ApiCreateEventForJobAndRunRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEventForJobAndRunRequest) Event ¶

The event to be created

func (ApiCreateEventForJobAndRunRequest) Execute ¶

func (ApiCreateEventForJobAndRunRequest) XTenant ¶

type ApiCreateEventForWorkflowAndRunRequest ¶

type ApiCreateEventForWorkflowAndRunRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEventForWorkflowAndRunRequest) Event ¶

The event to be created

func (ApiCreateEventForWorkflowAndRunRequest) Execute ¶

func (ApiCreateEventForWorkflowAndRunRequest) XTenant ¶

type ApiCreateFieldRequest ¶ added in v1.10.3

type ApiCreateFieldRequest struct {
	ApiService *FieldAPIService
	// contains filtered or unexported fields
}

func (ApiCreateFieldRequest) Execute ¶ added in v1.10.3

func (r ApiCreateFieldRequest) Execute() (*Field, *http.Response, error)

func (ApiCreateFieldRequest) Field ¶ added in v1.10.3

The field to be created

func (ApiCreateFieldRequest) XTenant ¶ added in v1.10.3

type ApiCreateFirewallRuleRequest ¶

type ApiCreateFirewallRuleRequest struct {
	ApiService *FirewallRulesAPIService
	// contains filtered or unexported fields
}

func (ApiCreateFirewallRuleRequest) Execute ¶

func (ApiCreateFirewallRuleRequest) FirewallRule ¶

The firewall rule to be created

func (ApiCreateFirewallRuleRequest) XTenant ¶

type ApiCreateGraphRequest ¶ added in v1.10.3

type ApiCreateGraphRequest struct {
	ApiService *GraphAPIService
	// contains filtered or unexported fields
}

func (ApiCreateGraphRequest) Execute ¶ added in v1.10.3

func (r ApiCreateGraphRequest) Execute() (*Graph, *http.Response, error)

func (ApiCreateGraphRequest) Graph ¶ added in v1.10.3

The graph to be created

func (ApiCreateGraphRequest) XTenant ¶ added in v1.10.3

type ApiCreateGroupRequest ¶

type ApiCreateGroupRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (ApiCreateGroupRequest) Execute ¶

func (r ApiCreateGroupRequest) Execute() (*Group, *http.Response, error)

func (ApiCreateGroupRequest) Group ¶

The identity to be created

func (ApiCreateGroupRequest) XTenant ¶

type ApiCreateIdentityProviderRequest ¶ added in v1.10.3

type ApiCreateIdentityProviderRequest struct {
	ApiService *IdentityProviderAPIService
	// contains filtered or unexported fields
}

func (ApiCreateIdentityProviderRequest) Execute ¶ added in v1.10.3

func (ApiCreateIdentityProviderRequest) IdentityProvider ¶ added in v1.10.3

The user to be created

func (ApiCreateIdentityProviderRequest) XTenant ¶ added in v1.10.3

type ApiCreateIdentityRequest ¶

type ApiCreateIdentityRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (ApiCreateIdentityRequest) Execute ¶

func (ApiCreateIdentityRequest) Identity ¶

The identity to be created

func (ApiCreateIdentityRequest) XTenant ¶

type ApiCreateInvoiceRequest ¶

type ApiCreateInvoiceRequest struct {
	ApiService *InvoiceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateInvoiceRequest) Execute ¶

func (ApiCreateInvoiceRequest) Invoice ¶

The invoice to be created

type ApiCreateJobFollowerRequest ¶ added in v1.10.3

type ApiCreateJobFollowerRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiCreateJobFollowerRequest) Execute ¶ added in v1.10.3

func (ApiCreateJobFollowerRequest) XTenant ¶ added in v1.10.3

type ApiCreateJobForProjectRequest ¶

type ApiCreateJobForProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiCreateJobForProjectRequest) Execute ¶

func (ApiCreateJobForProjectRequest) Job ¶

The job to be created

func (ApiCreateJobForProjectRequest) XTenant ¶

type ApiCreateLayerRequest ¶ added in v1.10.3

type ApiCreateLayerRequest struct {
	ApiService *LayerAPIService
	// contains filtered or unexported fields
}

func (ApiCreateLayerRequest) Execute ¶ added in v1.10.3

func (r ApiCreateLayerRequest) Execute() (*Layer, *http.Response, error)

func (ApiCreateLayerRequest) Layer ¶ added in v1.10.3

The layer to be created

func (ApiCreateLayerRequest) XTenant ¶ added in v1.10.3

type ApiCreateModelRequest ¶ added in v1.10.3

type ApiCreateModelRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiCreateModelRequest) Execute ¶ added in v1.10.3

func (r ApiCreateModelRequest) Execute() (*Model, *http.Response, error)

func (ApiCreateModelRequest) Model ¶ added in v1.10.3

The model to be created

func (ApiCreateModelRequest) XTenant ¶ added in v1.10.3

type ApiCreateNotificationRequest ¶

type ApiCreateNotificationRequest struct {
	ApiService *NotificationAPIService
	// contains filtered or unexported fields
}

func (ApiCreateNotificationRequest) Execute ¶

func (ApiCreateNotificationRequest) Notification1 ¶

The notification to be created

type ApiCreatePaymentMethodRequest ¶

type ApiCreatePaymentMethodRequest struct {
	ApiService *PaymentmethodAPIService
	// contains filtered or unexported fields
}

func (ApiCreatePaymentMethodRequest) Execute ¶

func (ApiCreatePaymentMethodRequest) PaymentMethod ¶

The paymentmethod to be created

func (ApiCreatePaymentMethodRequest) XTenant ¶

type ApiCreatePriceRequest ¶

type ApiCreatePriceRequest struct {
	ApiService *PriceAPIService
	// contains filtered or unexported fields
}

func (ApiCreatePriceRequest) Execute ¶

func (r ApiCreatePriceRequest) Execute() (*Price, *http.Response, error)

func (ApiCreatePriceRequest) Price ¶

The price to be created

type ApiCreateProjectFollowerRequest ¶ added in v1.10.3

type ApiCreateProjectFollowerRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiCreateProjectFollowerRequest) Execute ¶ added in v1.10.3

func (ApiCreateProjectFollowerRequest) XTenant ¶ added in v1.10.3

type ApiCreateProjectRequest ¶

type ApiCreateProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiCreateProjectRequest) Execute ¶

func (ApiCreateProjectRequest) Project ¶

The project to be created

func (ApiCreateProjectRequest) XTenant ¶

type ApiCreateReactionForActivityRequest ¶ added in v1.10.3

type ApiCreateReactionForActivityRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiCreateReactionForActivityRequest) Execute ¶ added in v1.10.3

func (ApiCreateReactionForActivityRequest) Reaction ¶ added in v1.10.3

func (ApiCreateReactionForActivityRequest) XTenant ¶ added in v1.10.3

type ApiCreateRoleAssignmentRequest ¶

type ApiCreateRoleAssignmentRequest struct {
	ApiService *AssignmentAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRoleAssignmentRequest) Execute ¶

func (ApiCreateRoleAssignmentRequest) RoleAssignment ¶

The assignment to be created

func (ApiCreateRoleAssignmentRequest) XTenant ¶

type ApiCreateRoleRequest ¶

type ApiCreateRoleRequest struct {
	ApiService *RoleAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRoleRequest) Execute ¶

func (r ApiCreateRoleRequest) Execute() (*Role, *http.Response, error)

func (ApiCreateRoleRequest) Role ¶

The role to be created

func (ApiCreateRoleRequest) XTenant ¶

type ApiCreateRunForJobRequest ¶

type ApiCreateRunForJobRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRunForJobRequest) Execute ¶

func (ApiCreateRunForJobRequest) JobRun ¶

The run to be created

func (ApiCreateRunForJobRequest) XTenant ¶

type ApiCreateRunForWorkflowRequest ¶

type ApiCreateRunForWorkflowRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRunForWorkflowRequest) Execute ¶

func (ApiCreateRunForWorkflowRequest) WorkflowRun ¶

The run to be created

func (ApiCreateRunForWorkflowRequest) XTenant ¶

type ApiCreateRuntimeRequest ¶

type ApiCreateRuntimeRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiCreateRuntimeRequest) Execute ¶

func (ApiCreateRuntimeRequest) Runtime ¶

The runtime to be created

func (ApiCreateRuntimeRequest) XTenant ¶

type ApiCreateSecretRequest ¶

type ApiCreateSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSecretRequest) Execute ¶

func (r ApiCreateSecretRequest) Execute() (*Secret, *http.Response, error)

func (ApiCreateSecretRequest) Secret ¶

The secret to be created

func (ApiCreateSecretRequest) XTenant ¶

type ApiCreateSessionRequest ¶ added in v1.10.3

type ApiCreateSessionRequest struct {
	ApiService *SessionsAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSessionRequest) Execute ¶ added in v1.10.3

func (r ApiCreateSessionRequest) Execute() (interface{}, *http.Response, error)

func (ApiCreateSessionRequest) InfrastructureId ¶ added in v1.10.3

func (r ApiCreateSessionRequest) InfrastructureId(infrastructureId string) ApiCreateSessionRequest

func (ApiCreateSessionRequest) InstanceType ¶ added in v1.10.3

func (r ApiCreateSessionRequest) InstanceType(instanceType string) ApiCreateSessionRequest

func (ApiCreateSessionRequest) WorkspaceName ¶ added in v1.10.3

func (r ApiCreateSessionRequest) WorkspaceName(workspaceName string) ApiCreateSessionRequest

func (ApiCreateSessionRequest) XTenant ¶ added in v1.10.3

type ApiCreateStreamRequest ¶

type ApiCreateStreamRequest struct {
	ApiService *StreamAPIService
	// contains filtered or unexported fields
}

func (ApiCreateStreamRequest) Execute ¶

func (r ApiCreateStreamRequest) Execute() (*Stream, *http.Response, error)

func (ApiCreateStreamRequest) Stream ¶

The stream to be created

func (ApiCreateStreamRequest) XTenant ¶

type ApiCreateSubscriptionRequest ¶

type ApiCreateSubscriptionRequest struct {
	ApiService *SubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSubscriptionRequest) Execute ¶

func (ApiCreateSubscriptionRequest) Subscription ¶

The subscription to be created

func (ApiCreateSubscriptionRequest) XTenant ¶

type ApiCreateTableFollowerRequest ¶ added in v1.10.3

type ApiCreateTableFollowerRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiCreateTableFollowerRequest) Execute ¶ added in v1.10.3

func (ApiCreateTableFollowerRequest) XTenant ¶ added in v1.10.3

type ApiCreateTableRequest ¶ added in v1.10.3

type ApiCreateTableRequest struct {
	ApiService *TableAPIService
	// contains filtered or unexported fields
}

func (ApiCreateTableRequest) Execute ¶ added in v1.10.3

func (r ApiCreateTableRequest) Execute() (*Table1, *http.Response, error)

func (ApiCreateTableRequest) Table1 ¶ added in v1.10.3

The database to be created

func (ApiCreateTableRequest) XTenant ¶ added in v1.10.3

type ApiCreateTenantRequest ¶

type ApiCreateTenantRequest struct {
	ApiService *TenantAPIService
	// contains filtered or unexported fields
}

func (ApiCreateTenantRequest) Execute ¶

func (r ApiCreateTenantRequest) Execute() (*Tenant, *http.Response, error)

func (ApiCreateTenantRequest) Tenant ¶

The tenant to be created

func (ApiCreateTenantRequest) XTenant ¶

type ApiCreateTicketRequest ¶

type ApiCreateTicketRequest struct {
	ApiService *TicketAPIService
	// contains filtered or unexported fields
}

func (ApiCreateTicketRequest) Challenge ¶

func (r ApiCreateTicketRequest) Challenge(challenge string) ApiCreateTicketRequest

func (ApiCreateTicketRequest) Execute ¶

func (r ApiCreateTicketRequest) Execute() (*Ticket, *http.Response, error)

func (ApiCreateTicketRequest) Ticket ¶

The ticket to be created

func (ApiCreateTicketRequest) XTenant ¶

type ApiCreateUsageRequest ¶

type ApiCreateUsageRequest struct {
	ApiService *UsageAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUsageRequest) Execute ¶

func (r ApiCreateUsageRequest) Execute() (*Usage, *http.Response, error)

func (ApiCreateUsageRequest) Usage ¶

The usage to be created

func (ApiCreateUsageRequest) XTenant ¶

type ApiCreateUserFollowerRequest ¶ added in v1.10.3

type ApiCreateUserFollowerRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUserFollowerRequest) Execute ¶ added in v1.10.3

func (ApiCreateUserFollowerRequest) XTenant ¶ added in v1.10.3

type ApiCreateUserRequest ¶

type ApiCreateUserRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiCreateUserRequest) Execute ¶

func (r ApiCreateUserRequest) Execute() (*User, *http.Response, error)

func (ApiCreateUserRequest) User ¶

The user to be created

func (ApiCreateUserRequest) XTenant ¶

type ApiCreateVerificationRequest ¶

type ApiCreateVerificationRequest struct {
	ApiService *VerificationAPIService
	// contains filtered or unexported fields
}

func (ApiCreateVerificationRequest) Execute ¶

func (ApiCreateVerificationRequest) Type_ ¶

func (ApiCreateVerificationRequest) Value ¶

type ApiCreateWorkflowFollowerRequest ¶ added in v1.10.3

type ApiCreateWorkflowFollowerRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiCreateWorkflowFollowerRequest) Execute ¶ added in v1.10.3

func (ApiCreateWorkflowFollowerRequest) XTenant ¶ added in v1.10.3

type ApiCreateWorkflowForProjectRequest ¶

type ApiCreateWorkflowForProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiCreateWorkflowForProjectRequest) Execute ¶

func (ApiCreateWorkflowForProjectRequest) Workflow ¶

The workflows to be created

func (ApiCreateWorkflowForProjectRequest) XTenant ¶

type ApiCreateWorkspaceRequest ¶ added in v1.10.3

type ApiCreateWorkspaceRequest struct {
	ApiService *WorkspaceAPIService
	// contains filtered or unexported fields
}

func (ApiCreateWorkspaceRequest) Execute ¶ added in v1.10.3

func (ApiCreateWorkspaceRequest) Workspace ¶ added in v1.10.3

The workspace to be created

func (ApiCreateWorkspaceRequest) XTenant ¶ added in v1.10.3

type ApiDeleteApplicationByIdRequest ¶

type ApiDeleteApplicationByIdRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteApplicationByIdRequest) Execute ¶

func (ApiDeleteApplicationByIdRequest) XTenant ¶

type ApiDeleteBridgeByIdRequest ¶

type ApiDeleteBridgeByIdRequest struct {
	ApiService *BridgeAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteBridgeByIdRequest) Execute ¶

func (ApiDeleteBridgeByIdRequest) XTenant ¶

type ApiDeleteBucketByIdRequest ¶

type ApiDeleteBucketByIdRequest struct {
	ApiService *BucketAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteBucketByIdRequest) Execute ¶

func (ApiDeleteBucketByIdRequest) XTenant ¶

type ApiDeleteCommentFromActivityRequest ¶ added in v1.10.3

type ApiDeleteCommentFromActivityRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteCommentFromActivityRequest) Execute ¶ added in v1.10.3

func (ApiDeleteCommentFromActivityRequest) XTenant ¶ added in v1.10.3

type ApiDeleteDataWarehouseByIdRequest ¶ added in v1.10.3

type ApiDeleteDataWarehouseByIdRequest struct {
	ApiService *DatawarehouseAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteDataWarehouseByIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteDataWarehouseByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteDatabaseByIdRequest ¶ added in v1.10.3

type ApiDeleteDatabaseByIdRequest struct {
	ApiService *DatabaseAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteDatabaseByIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteDatabaseByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteDeviceByIdRequest ¶ added in v1.10.3

type ApiDeleteDeviceByIdRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteDeviceByIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteDeviceByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteEndpointByIdAndProjectIdRequest ¶ added in v1.10.3

type ApiDeleteEndpointByIdAndProjectIdRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteEndpointByIdAndProjectIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteEndpointByIdAndProjectIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteEnrollmentByIdRequest ¶ added in v1.10.3

type ApiDeleteEnrollmentByIdRequest struct {
	ApiService *EnrollmentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteEnrollmentByIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteEnrollmentByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteFilesRequest ¶ added in v1.10.3

type ApiDeleteFilesRequest struct {
	ApiService *DataAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFilesRequest) Execute ¶ added in v1.10.3

func (r ApiDeleteFilesRequest) Execute() (*http.Response, error)

func (ApiDeleteFilesRequest) Path ¶ added in v1.10.3

path

func (ApiDeleteFilesRequest) XTenant ¶ added in v1.10.3

type ApiDeleteFirewallRuleByIdRequest ¶

type ApiDeleteFirewallRuleByIdRequest struct {
	ApiService *FirewallAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFirewallRuleByIdRequest) Execute ¶

func (ApiDeleteFirewallRuleByIdRequest) XTenant ¶

type ApiDeleteFollowingCatalogRequest ¶ added in v1.10.3

type ApiDeleteFollowingCatalogRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFollowingCatalogRequest) Execute ¶ added in v1.10.3

func (ApiDeleteFollowingCatalogRequest) XTenant ¶ added in v1.10.3

type ApiDeleteFollowingDatabaseRequest ¶ added in v1.10.3

type ApiDeleteFollowingDatabaseRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFollowingDatabaseRequest) Execute ¶ added in v1.10.3

func (ApiDeleteFollowingDatabaseRequest) XTenant ¶ added in v1.10.3

type ApiDeleteFollowingJobRequest ¶ added in v1.10.3

type ApiDeleteFollowingJobRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFollowingJobRequest) Execute ¶ added in v1.10.3

func (ApiDeleteFollowingJobRequest) XTenant ¶ added in v1.10.3

type ApiDeleteFollowingProjectRequest ¶ added in v1.10.3

type ApiDeleteFollowingProjectRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFollowingProjectRequest) Execute ¶ added in v1.10.3

func (ApiDeleteFollowingProjectRequest) XTenant ¶ added in v1.10.3

type ApiDeleteFollowingTableRequest ¶ added in v1.10.3

type ApiDeleteFollowingTableRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFollowingTableRequest) Execute ¶ added in v1.10.3

func (ApiDeleteFollowingTableRequest) XTenant ¶ added in v1.10.3

type ApiDeleteFollowingUserRequest ¶ added in v1.10.3

type ApiDeleteFollowingUserRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFollowingUserRequest) Execute ¶ added in v1.10.3

func (ApiDeleteFollowingUserRequest) XTenant ¶ added in v1.10.3

type ApiDeleteFollowingWorkflowRequest ¶ added in v1.10.3

type ApiDeleteFollowingWorkflowRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteFollowingWorkflowRequest) Execute ¶ added in v1.10.3

func (ApiDeleteFollowingWorkflowRequest) XTenant ¶ added in v1.10.3

type ApiDeleteGraphByIdRequest ¶ added in v1.10.3

type ApiDeleteGraphByIdRequest struct {
	ApiService *GraphAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteGraphByIdRequest) Execute ¶ added in v1.10.3

func (r ApiDeleteGraphByIdRequest) Execute() (*http.Response, error)

func (ApiDeleteGraphByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteGroupByIdRequest ¶

type ApiDeleteGroupByIdRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteGroupByIdRequest) Execute ¶

func (r ApiDeleteGroupByIdRequest) Execute() (*http.Response, error)

func (ApiDeleteGroupByIdRequest) XTenant ¶

type ApiDeleteIdentityByIdRequest ¶

type ApiDeleteIdentityByIdRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIdentityByIdRequest) Execute ¶

func (ApiDeleteIdentityByIdRequest) XTenant ¶

type ApiDeleteIdentityProviderByIdRequest ¶ added in v1.10.3

type ApiDeleteIdentityProviderByIdRequest struct {
	ApiService *IdentityProviderAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteIdentityProviderByIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteIdentityProviderByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteInfrastructureByIdRequest ¶

type ApiDeleteInfrastructureByIdRequest struct {
	ApiService *InfrastructureAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteInfrastructureByIdRequest) Execute ¶

func (ApiDeleteInfrastructureByIdRequest) XTenant ¶

type ApiDeleteInvoiceByIdRequest ¶

type ApiDeleteInvoiceByIdRequest struct {
	ApiService *InvoiceAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteInvoiceByIdRequest) Execute ¶

func (ApiDeleteInvoiceByIdRequest) XTenant ¶

type ApiDeleteJobByIdRequest ¶

type ApiDeleteJobByIdRequest struct {
	ApiService *JobAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteJobByIdRequest) Execute ¶

func (r ApiDeleteJobByIdRequest) Execute() (*http.Response, error)

func (ApiDeleteJobByIdRequest) XTenant ¶

type ApiDeleteLayerByIdRequest ¶ added in v1.10.3

type ApiDeleteLayerByIdRequest struct {
	ApiService *LayerAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteLayerByIdRequest) Execute ¶ added in v1.10.3

func (r ApiDeleteLayerByIdRequest) Execute() (*http.Response, error)

func (ApiDeleteLayerByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteLibraryByIdRequest ¶ added in v1.10.3

type ApiDeleteLibraryByIdRequest struct {
	ApiService *LibraryAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteLibraryByIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteLibraryByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteModelByIdRequest ¶ added in v1.10.3

type ApiDeleteModelByIdRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteModelByIdRequest) Execute ¶ added in v1.10.3

func (r ApiDeleteModelByIdRequest) Execute() (*http.Response, error)

func (ApiDeleteModelByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteModelVersionByIdRequest ¶ added in v1.10.3

type ApiDeleteModelVersionByIdRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteModelVersionByIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteModelVersionByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeletePaymentMethodByIdRequest ¶

type ApiDeletePaymentMethodByIdRequest struct {
	ApiService *PaymentmethodAPIService
	// contains filtered or unexported fields
}

func (ApiDeletePaymentMethodByIdRequest) Execute ¶

func (ApiDeletePaymentMethodByIdRequest) XTenant ¶

type ApiDeletePriceByIdRequest ¶

type ApiDeletePriceByIdRequest struct {
	ApiService *PriceAPIService
	// contains filtered or unexported fields
}

func (ApiDeletePriceByIdRequest) Execute ¶

func (r ApiDeletePriceByIdRequest) Execute() (*http.Response, error)

func (ApiDeletePriceByIdRequest) XTenant ¶

type ApiDeleteProjectByIdRequest ¶

type ApiDeleteProjectByIdRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteProjectByIdRequest) Execute ¶

func (ApiDeleteProjectByIdRequest) XTenant ¶

type ApiDeleteReactionFromActivityRequest ¶ added in v1.10.3

type ApiDeleteReactionFromActivityRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteReactionFromActivityRequest) Execute ¶ added in v1.10.3

func (ApiDeleteReactionFromActivityRequest) XTenant ¶ added in v1.10.3

type ApiDeleteRoleAssignmentByIdRequest ¶

type ApiDeleteRoleAssignmentByIdRequest struct {
	ApiService *AssignmentAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteRoleAssignmentByIdRequest) Execute ¶

func (ApiDeleteRoleAssignmentByIdRequest) XTenant ¶

type ApiDeleteRoleByIdRequest ¶

type ApiDeleteRoleByIdRequest struct {
	ApiService *RoleAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteRoleByIdRequest) Execute ¶

func (r ApiDeleteRoleByIdRequest) Execute() (*http.Response, error)

func (ApiDeleteRoleByIdRequest) XTenant ¶

type ApiDeleteRunByJobIdAndRunIdRequest ¶

type ApiDeleteRunByJobIdAndRunIdRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteRunByJobIdAndRunIdRequest) Execute ¶

func (ApiDeleteRunByJobIdAndRunIdRequest) XTenant ¶

type ApiDeleteRunByWorkflowIdAndRunIdRequest ¶

type ApiDeleteRunByWorkflowIdAndRunIdRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteRunByWorkflowIdAndRunIdRequest) Execute ¶

func (ApiDeleteRunByWorkflowIdAndRunIdRequest) XTenant ¶

type ApiDeleteRuntimeByIdRequest ¶

type ApiDeleteRuntimeByIdRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteRuntimeByIdRequest) Execute ¶

func (ApiDeleteRuntimeByIdRequest) XTenant ¶

type ApiDeleteSecretByIdRequest ¶

type ApiDeleteSecretByIdRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSecretByIdRequest) Execute ¶

func (ApiDeleteSecretByIdRequest) XTenant ¶

type ApiDeleteSessionRequest ¶ added in v1.10.3

type ApiDeleteSessionRequest struct {
	ApiService *SessionsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSessionRequest) Execute ¶ added in v1.10.3

func (ApiDeleteSessionRequest) XTenant ¶ added in v1.10.3

type ApiDeleteStreamByIdRequest ¶

type ApiDeleteStreamByIdRequest struct {
	ApiService *StreamAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteStreamByIdRequest) Execute ¶

func (ApiDeleteStreamByIdRequest) XTenant ¶

type ApiDeleteSubscriptionByIdRequest ¶

type ApiDeleteSubscriptionByIdRequest struct {
	ApiService *SubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteSubscriptionByIdRequest) Execute ¶

func (ApiDeleteSubscriptionByIdRequest) XTenant ¶

type ApiDeleteTableByIdRequest ¶ added in v1.10.3

type ApiDeleteTableByIdRequest struct {
	ApiService *TableAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTableByIdRequest) Execute ¶ added in v1.10.3

func (r ApiDeleteTableByIdRequest) Execute() (*http.Response, error)

func (ApiDeleteTableByIdRequest) XTenant ¶ added in v1.10.3

type ApiDeleteTenantByIdRequest ¶

type ApiDeleteTenantByIdRequest struct {
	ApiService *TenantAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTenantByIdRequest) Execute ¶

func (ApiDeleteTenantByIdRequest) XTenant ¶

type ApiDeleteTicketByIdRequest ¶

type ApiDeleteTicketByIdRequest struct {
	ApiService *TicketAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteTicketByIdRequest) Execute ¶

func (ApiDeleteTicketByIdRequest) XTenant ¶

type ApiDeleteUserByIdRequest ¶

type ApiDeleteUserByIdRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUserByIdRequest) Execute ¶

func (r ApiDeleteUserByIdRequest) Execute() (*http.Response, error)

func (ApiDeleteUserByIdRequest) XTenant ¶

type ApiDeleteWorkflowByIdRequest ¶

type ApiDeleteWorkflowByIdRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkflowByIdRequest) Execute ¶

func (ApiDeleteWorkflowByIdRequest) XTenant ¶

type ApiDeleteWorkspaceByIdRequest ¶ added in v1.10.3

type ApiDeleteWorkspaceByIdRequest struct {
	ApiService *WorkspaceAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkspaceByIdRequest) Execute ¶ added in v1.10.3

func (ApiDeleteWorkspaceByIdRequest) XTenant ¶ added in v1.10.3

type ApiDownloadCodeRequest ¶ added in v1.10.3

type ApiDownloadCodeRequest struct {
	ApiService *CodeAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadCodeRequest) Destination ¶ added in v1.10.3

func (r ApiDownloadCodeRequest) Destination(destination string) ApiDownloadCodeRequest

func (ApiDownloadCodeRequest) Execute ¶ added in v1.10.3

func (r ApiDownloadCodeRequest) Execute() (*os.File, *http.Response, error)

func (ApiDownloadCodeRequest) Filename ¶ added in v1.10.3

func (r ApiDownloadCodeRequest) Filename(filename []*os.File) ApiDownloadCodeRequest

func (ApiDownloadCodeRequest) Source ¶ added in v1.10.3

func (ApiDownloadCodeRequest) XTenant ¶ added in v1.10.3

type ApiDownloadFileRequest ¶ added in v1.10.3

type ApiDownloadFileRequest struct {
	ApiService *DataAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadFileRequest) Execute ¶ added in v1.10.3

func (r ApiDownloadFileRequest) Execute() (*os.File, *http.Response, error)

func (ApiDownloadFileRequest) Path ¶ added in v1.10.3

path

func (ApiDownloadFileRequest) XTenant ¶ added in v1.10.3

type ApiDownloadInvoiceByIdRequest ¶

type ApiDownloadInvoiceByIdRequest struct {
	ApiService *InvoiceAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadInvoiceByIdRequest) Execute ¶

func (ApiDownloadInvoiceByIdRequest) XTenant ¶

type ApiDownloadLibraryRequest ¶ added in v1.10.3

type ApiDownloadLibraryRequest struct {
	ApiService *LibraryAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadLibraryRequest) Execute ¶ added in v1.10.3

func (r ApiDownloadLibraryRequest) Execute() (*os.File, *http.Response, error)

func (ApiDownloadLibraryRequest) XTenant ¶ added in v1.10.3

type ApiDownloadModelRequest ¶ added in v1.10.3

type ApiDownloadModelRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiDownloadModelRequest) Execute ¶ added in v1.10.3

func (r ApiDownloadModelRequest) Execute() (*os.File, *http.Response, error)

func (ApiDownloadModelRequest) XTenant ¶ added in v1.10.3

type ApiExecuteAction1Request ¶

type ApiExecuteAction1Request struct {
	ApiService *TicketAPIService
	// contains filtered or unexported fields
}

func (ApiExecuteAction1Request) Action ¶

func (ApiExecuteAction1Request) Execute ¶

func (r ApiExecuteAction1Request) Execute() (*http.Response, error)

func (ApiExecuteAction1Request) XTenant ¶

type ApiExecuteActionRequest ¶ added in v1.10.3

type ApiExecuteActionRequest struct {
	ApiService *ActionAPIService
	// contains filtered or unexported fields
}

func (ApiExecuteActionRequest) Action ¶ added in v1.10.3

func (ApiExecuteActionRequest) Execute ¶ added in v1.10.3

func (r ApiExecuteActionRequest) Execute() (*http.Response, error)

func (ApiExecuteActionRequest) XTenant ¶ added in v1.10.3

type ApiFindApplicationByIdRequest ¶

type ApiFindApplicationByIdRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiFindApplicationByIdRequest) Execute ¶

func (ApiFindApplicationByIdRequest) XTenant ¶

type ApiFindApplicationsRequest ¶

type ApiFindApplicationsRequest struct {
	ApiService *ApplicationAPIService
	// contains filtered or unexported fields
}

func (ApiFindApplicationsRequest) Execute ¶

func (ApiFindApplicationsRequest) XTenant ¶

type ApiFindBannerByProjectIdRequest ¶ added in v1.10.3

type ApiFindBannerByProjectIdRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiFindBannerByProjectIdRequest) Execute ¶ added in v1.10.3

func (ApiFindBannerByProjectIdRequest) Size ¶ added in v1.10.3

Size of the banner

func (ApiFindBannerByProjectIdRequest) XTenant ¶ added in v1.10.3

type ApiFindBridgeByIdRequest ¶

type ApiFindBridgeByIdRequest struct {
	ApiService *BridgeAPIService
	// contains filtered or unexported fields
}

func (ApiFindBridgeByIdRequest) Execute ¶

func (ApiFindBridgeByIdRequest) XTenant ¶

type ApiFindBridgesRequest ¶

type ApiFindBridgesRequest struct {
	ApiService *BridgeAPIService
	// contains filtered or unexported fields
}

func (ApiFindBridgesRequest) Execute ¶

func (ApiFindBridgesRequest) Page ¶ added in v1.10.3

func (ApiFindBridgesRequest) Size ¶ added in v1.10.3

func (ApiFindBridgesRequest) XTenant ¶

type ApiFindBucketByIdRequest ¶

type ApiFindBucketByIdRequest struct {
	ApiService *BucketAPIService
	// contains filtered or unexported fields
}

func (ApiFindBucketByIdRequest) Execute ¶

func (ApiFindBucketByIdRequest) XTenant ¶

type ApiFindBucketsRequest ¶

type ApiFindBucketsRequest struct {
	ApiService *BucketAPIService
	// contains filtered or unexported fields
}

func (ApiFindBucketsRequest) Execute ¶

func (r ApiFindBucketsRequest) Execute() ([]Bucket, *http.Response, error)

func (ApiFindBucketsRequest) XTenant ¶

type ApiFindBuildByRuntimeIdAndBuildIdRequest ¶

type ApiFindBuildByRuntimeIdAndBuildIdRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiFindBuildByRuntimeIdAndBuildIdRequest) Execute ¶

func (ApiFindBuildByRuntimeIdAndBuildIdRequest) XTenant ¶

type ApiFindBuildsForRuntimeRequest ¶

type ApiFindBuildsForRuntimeRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiFindBuildsForRuntimeRequest) Execute ¶

func (ApiFindBuildsForRuntimeRequest) XTenant ¶

type ApiFindCapacityByInfrastructureByIdRequest ¶

type ApiFindCapacityByInfrastructureByIdRequest struct {
	ApiService *InfrastructureAPIService
	// contains filtered or unexported fields
}

func (ApiFindCapacityByInfrastructureByIdRequest) Execute ¶

func (ApiFindCapacityByInfrastructureByIdRequest) XTenant ¶

type ApiFindChangesRequest ¶ added in v1.10.3

type ApiFindChangesRequest struct {
	ApiService *DatawarehouseAPIService
	// contains filtered or unexported fields
}

func (ApiFindChangesRequest) Execute ¶ added in v1.10.3

func (ApiFindChangesRequest) Page ¶ added in v1.10.3

func (ApiFindChangesRequest) Size ¶ added in v1.10.3

func (ApiFindChangesRequest) XTenant ¶ added in v1.10.3

type ApiFindCurrentRolesRequest ¶

type ApiFindCurrentRolesRequest struct {
	ApiService *RoleAPIService
	// contains filtered or unexported fields
}

func (ApiFindCurrentRolesRequest) Execute ¶

func (ApiFindCurrentRolesRequest) XTenant ¶

type ApiFindCurrentUserRequest ¶

type ApiFindCurrentUserRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiFindCurrentUserRequest) Execute ¶

func (r ApiFindCurrentUserRequest) Execute() (*User, *http.Response, error)

func (ApiFindCurrentUserRequest) XTenant ¶

type ApiFindDataWarehouseByIdRequest ¶ added in v1.10.3

type ApiFindDataWarehouseByIdRequest struct {
	ApiService *DatawarehouseAPIService
	// contains filtered or unexported fields
}

func (ApiFindDataWarehouseByIdRequest) Execute ¶ added in v1.10.3

func (ApiFindDataWarehouseByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindDataWarehousesRequest ¶ added in v1.10.3

type ApiFindDataWarehousesRequest struct {
	ApiService *DatawarehouseAPIService
	// contains filtered or unexported fields
}

func (ApiFindDataWarehousesRequest) Execute ¶ added in v1.10.3

func (ApiFindDataWarehousesRequest) Page ¶ added in v1.10.3

func (ApiFindDataWarehousesRequest) Size ¶ added in v1.10.3

func (ApiFindDataWarehousesRequest) XTenant ¶ added in v1.10.3

type ApiFindDatabaseByIdRequest ¶ added in v1.10.3

type ApiFindDatabaseByIdRequest struct {
	ApiService *DatabaseAPIService
	// contains filtered or unexported fields
}

func (ApiFindDatabaseByIdRequest) Execute ¶ added in v1.10.3

func (ApiFindDatabaseByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindDatabasesRequest ¶ added in v1.10.3

type ApiFindDatabasesRequest struct {
	ApiService *DatabaseAPIService
	// contains filtered or unexported fields
}

func (ApiFindDatabasesRequest) Execute ¶ added in v1.10.3

func (r ApiFindDatabasesRequest) Execute() ([]Database, *http.Response, error)

func (ApiFindDatabasesRequest) XTenant ¶ added in v1.10.3

type ApiFindDependenciesByRuntimeIdAndVersionIdRequest ¶

type ApiFindDependenciesByRuntimeIdAndVersionIdRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiFindDependenciesByRuntimeIdAndVersionIdRequest) Execute ¶

func (ApiFindDependenciesByRuntimeIdAndVersionIdRequest) XTenant ¶

type ApiFindDeviceByDeviceIdRequest ¶ added in v1.10.3

type ApiFindDeviceByDeviceIdRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiFindDeviceByDeviceIdRequest) Execute ¶ added in v1.10.3

func (ApiFindDeviceByDeviceIdRequest) XTenant ¶ added in v1.10.3

type ApiFindDevicesRequest ¶ added in v1.10.3

type ApiFindDevicesRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiFindDevicesRequest) Execute ¶ added in v1.10.3

func (ApiFindDevicesRequest) Page ¶ added in v1.10.3

func (ApiFindDevicesRequest) Size ¶ added in v1.10.3

func (ApiFindDevicesRequest) XTenant ¶ added in v1.10.3

type ApiFindEndpointByIdAndProjectIdRequest ¶ added in v1.10.3

type ApiFindEndpointByIdAndProjectIdRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiFindEndpointByIdAndProjectIdRequest) Execute ¶ added in v1.10.3

func (ApiFindEndpointByIdAndProjectIdRequest) XTenant ¶ added in v1.10.3

type ApiFindEndpointsByProjectIdRequest ¶ added in v1.10.3

type ApiFindEndpointsByProjectIdRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiFindEndpointsByProjectIdRequest) Execute ¶ added in v1.10.3

func (ApiFindEndpointsByProjectIdRequest) Page ¶ added in v1.10.3

func (ApiFindEndpointsByProjectIdRequest) Size ¶ added in v1.10.3

func (ApiFindEndpointsByProjectIdRequest) XTenant ¶ added in v1.10.3

type ApiFindEnrollmentByEnrollmentIdRequest ¶ added in v1.10.3

type ApiFindEnrollmentByEnrollmentIdRequest struct {
	ApiService *EnrollmentAPIService
	// contains filtered or unexported fields
}

func (ApiFindEnrollmentByEnrollmentIdRequest) Execute ¶ added in v1.10.3

func (ApiFindEnrollmentByEnrollmentIdRequest) XTenant ¶ added in v1.10.3

type ApiFindEnrollmentsRequest ¶ added in v1.10.3

type ApiFindEnrollmentsRequest struct {
	ApiService *EnrollmentAPIService
	// contains filtered or unexported fields
}

func (ApiFindEnrollmentsRequest) Execute ¶ added in v1.10.3

func (ApiFindEnrollmentsRequest) Page ¶ added in v1.10.3

func (ApiFindEnrollmentsRequest) Size ¶ added in v1.10.3

func (ApiFindEnrollmentsRequest) XTenant ¶ added in v1.10.3

type ApiFindEventsByJobIdAndRunIdRequest ¶

type ApiFindEventsByJobIdAndRunIdRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiFindEventsByJobIdAndRunIdRequest) Execute ¶

func (ApiFindEventsByJobIdAndRunIdRequest) XTenant ¶

type ApiFindEventsByWorkflowIdAndRunIdRequest ¶

type ApiFindEventsByWorkflowIdAndRunIdRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiFindEventsByWorkflowIdAndRunIdRequest) Execute ¶

func (ApiFindEventsByWorkflowIdAndRunIdRequest) XTenant ¶

type ApiFindFavoriteOrRandomValidPaymentMethodRequest ¶ added in v1.10.3

type ApiFindFavoriteOrRandomValidPaymentMethodRequest struct {
	ApiService *PaymentmethodAPIService
	// contains filtered or unexported fields
}

func (ApiFindFavoriteOrRandomValidPaymentMethodRequest) Execute ¶ added in v1.10.3

func (ApiFindFavoriteOrRandomValidPaymentMethodRequest) XTenant ¶ added in v1.10.3

type ApiFindFieldsRequest ¶ added in v1.10.3

type ApiFindFieldsRequest struct {
	ApiService *FieldAPIService
	// contains filtered or unexported fields
}

func (ApiFindFieldsRequest) Execute ¶ added in v1.10.3

func (r ApiFindFieldsRequest) Execute() ([]Field, *http.Response, error)

func (ApiFindFieldsRequest) XTenant ¶ added in v1.10.3

type ApiFindFirewallRuleByFirewallRuleIdRequest ¶

type ApiFindFirewallRuleByFirewallRuleIdRequest struct {
	ApiService *FirewallAPIService
	// contains filtered or unexported fields
}

func (ApiFindFirewallRuleByFirewallRuleIdRequest) Execute ¶

func (ApiFindFirewallRuleByFirewallRuleIdRequest) XTenant ¶

type ApiFindFirewallRulesRequest ¶

type ApiFindFirewallRulesRequest struct {
	ApiService *FirewallAPIService
	// contains filtered or unexported fields
}

func (ApiFindFirewallRulesRequest) Execute ¶

func (ApiFindFirewallRulesRequest) XTenant ¶

type ApiFindGraphByIdRequest ¶ added in v1.10.3

type ApiFindGraphByIdRequest struct {
	ApiService *GraphAPIService
	// contains filtered or unexported fields
}

func (ApiFindGraphByIdRequest) Execute ¶ added in v1.10.3

func (r ApiFindGraphByIdRequest) Execute() (*Graph, *http.Response, error)

func (ApiFindGraphByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindGraphsRequest ¶ added in v1.10.3

type ApiFindGraphsRequest struct {
	ApiService *GraphAPIService
	// contains filtered or unexported fields
}

func (ApiFindGraphsRequest) Execute ¶ added in v1.10.3

func (r ApiFindGraphsRequest) Execute() (*GraphPage, *http.Response, error)

func (ApiFindGraphsRequest) Owner ¶ added in v1.10.3

func (ApiFindGraphsRequest) Page ¶ added in v1.10.3

func (ApiFindGraphsRequest) Size ¶ added in v1.10.3

func (ApiFindGraphsRequest) Type_ ¶ added in v1.10.3

func (ApiFindGraphsRequest) XTenant ¶ added in v1.10.3

type ApiFindGroupByIdRequest ¶

type ApiFindGroupByIdRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (ApiFindGroupByIdRequest) Execute ¶

func (r ApiFindGroupByIdRequest) Execute() (*Group, *http.Response, error)

func (ApiFindGroupByIdRequest) XTenant ¶

type ApiFindGroupsRequest ¶

type ApiFindGroupsRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (ApiFindGroupsRequest) Execute ¶

func (r ApiFindGroupsRequest) Execute() ([]Group, *http.Response, error)

func (ApiFindGroupsRequest) XTenant ¶

type ApiFindIdentitiesRequest ¶

type ApiFindIdentitiesRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (ApiFindIdentitiesRequest) Execute ¶

func (ApiFindIdentitiesRequest) XTenant ¶

type ApiFindIdentityByIdRequest ¶

type ApiFindIdentityByIdRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (ApiFindIdentityByIdRequest) Execute ¶

func (ApiFindIdentityByIdRequest) XTenant ¶

type ApiFindIdentityProviderByIdRequest ¶ added in v1.10.3

type ApiFindIdentityProviderByIdRequest struct {
	ApiService *IdentityProviderAPIService
	// contains filtered or unexported fields
}

func (ApiFindIdentityProviderByIdRequest) Execute ¶ added in v1.10.3

func (ApiFindIdentityProviderByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindIdentityProvidersRequest ¶ added in v1.10.3

type ApiFindIdentityProvidersRequest struct {
	ApiService *IdentityProviderAPIService
	// contains filtered or unexported fields
}

func (ApiFindIdentityProvidersRequest) Execute ¶ added in v1.10.3

func (ApiFindIdentityProvidersRequest) XTenant ¶ added in v1.10.3

type ApiFindInfrastructureByInfrastructureIdRequest ¶

type ApiFindInfrastructureByInfrastructureIdRequest struct {
	ApiService *InfrastructureAPIService
	// contains filtered or unexported fields
}

func (ApiFindInfrastructureByInfrastructureIdRequest) Execute ¶

func (ApiFindInfrastructureByInfrastructureIdRequest) XTenant ¶

type ApiFindInfrastructuresRequest ¶

type ApiFindInfrastructuresRequest struct {
	ApiService *InfrastructureAPIService
	// contains filtered or unexported fields
}

func (ApiFindInfrastructuresRequest) Execute ¶

func (ApiFindInfrastructuresRequest) XTenant ¶

type ApiFindInstanceTypeByInstanceTypeIdRequest ¶

type ApiFindInstanceTypeByInstanceTypeIdRequest struct {
	ApiService *InstanceTypeAPIService
	// contains filtered or unexported fields
}

func (ApiFindInstanceTypeByInstanceTypeIdRequest) Execute ¶

func (ApiFindInstanceTypeByInstanceTypeIdRequest) XTenant ¶

type ApiFindInstanceTypesRequest ¶

type ApiFindInstanceTypesRequest struct {
	ApiService *InstanceTypeAPIService
	// contains filtered or unexported fields
}

func (ApiFindInstanceTypesRequest) Execute ¶

func (ApiFindInstanceTypesRequest) XTenant ¶

type ApiFindInvoiceByIdRequest ¶

type ApiFindInvoiceByIdRequest struct {
	ApiService *InvoiceAPIService
	// contains filtered or unexported fields
}

func (ApiFindInvoiceByIdRequest) Execute ¶

func (ApiFindInvoiceByIdRequest) XTenant ¶

type ApiFindInvoicesRequest ¶

type ApiFindInvoicesRequest struct {
	ApiService *InvoiceAPIService
	// contains filtered or unexported fields
}

func (ApiFindInvoicesRequest) Execute ¶

func (r ApiFindInvoicesRequest) Execute() ([]Invoice, *http.Response, error)

func (ApiFindInvoicesRequest) XTenant ¶

type ApiFindJobByJobIdRequest ¶

type ApiFindJobByJobIdRequest struct {
	ApiService *JobAPIService
	// contains filtered or unexported fields
}

func (ApiFindJobByJobIdRequest) Execute ¶

func (r ApiFindJobByJobIdRequest) Execute() (*Job, *http.Response, error)

func (ApiFindJobByJobIdRequest) XTenant ¶

type ApiFindJobsByProjectIdRequest ¶

type ApiFindJobsByProjectIdRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiFindJobsByProjectIdRequest) Execute ¶

func (ApiFindJobsByProjectIdRequest) Type_ ¶ added in v1.10.3

func (ApiFindJobsByProjectIdRequest) XTenant ¶

type ApiFindJobsRequest ¶

type ApiFindJobsRequest struct {
	ApiService *JobAPIService
	// contains filtered or unexported fields
}

func (ApiFindJobsRequest) Execute ¶

func (r ApiFindJobsRequest) Execute() ([]Job, *http.Response, error)

func (ApiFindJobsRequest) Type_ ¶ added in v1.10.3

func (ApiFindJobsRequest) XTenant ¶

func (r ApiFindJobsRequest) XTenant(xTenant string) ApiFindJobsRequest

type ApiFindLatestRunsByProjectIdRequest ¶

type ApiFindLatestRunsByProjectIdRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiFindLatestRunsByProjectIdRequest) Execute ¶

func (ApiFindLatestRunsByProjectIdRequest) Number ¶

Number of runs

func (ApiFindLatestRunsByProjectIdRequest) XTenant ¶

type ApiFindLatestRunsRequest ¶

type ApiFindLatestRunsRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiFindLatestRunsRequest) Execute ¶

func (ApiFindLatestRunsRequest) Number ¶

Number of runs

func (ApiFindLatestRunsRequest) XTenant ¶

type ApiFindLayerByIdRequest ¶ added in v1.10.3

type ApiFindLayerByIdRequest struct {
	ApiService *LayerAPIService
	// contains filtered or unexported fields
}

func (ApiFindLayerByIdRequest) Execute ¶ added in v1.10.3

func (r ApiFindLayerByIdRequest) Execute() (*Layer, *http.Response, error)

func (ApiFindLayerByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindLayersRequest ¶ added in v1.10.3

type ApiFindLayersRequest struct {
	ApiService *LayerAPIService
	// contains filtered or unexported fields
}

func (ApiFindLayersRequest) Execute ¶ added in v1.10.3

func (r ApiFindLayersRequest) Execute() ([]Layer, *http.Response, error)

func (ApiFindLayersRequest) XTenant ¶ added in v1.10.3

type ApiFindLibrariesRequest ¶ added in v1.10.3

type ApiFindLibrariesRequest struct {
	ApiService *LibraryAPIService
	// contains filtered or unexported fields
}

func (ApiFindLibrariesRequest) Execute ¶ added in v1.10.3

func (ApiFindLibrariesRequest) Id ¶ added in v1.10.3

Id of the library

func (ApiFindLibrariesRequest) XTenant ¶ added in v1.10.3

type ApiFindLogsByUserIdRequest ¶

type ApiFindLogsByUserIdRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiFindLogsByUserIdRequest) Execute ¶

func (ApiFindLogsByUserIdRequest) XTenant ¶

type ApiFindMetadataRequest ¶ added in v1.10.3

type ApiFindMetadataRequest struct {
	ApiService *LibraryAPIService
	// contains filtered or unexported fields
}

func (ApiFindMetadataRequest) Execute ¶ added in v1.10.3

func (ApiFindMetadataRequest) XTenant ¶ added in v1.10.3

type ApiFindModelByIdRequest ¶ added in v1.10.3

type ApiFindModelByIdRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiFindModelByIdRequest) Execute ¶ added in v1.10.3

func (r ApiFindModelByIdRequest) Execute() (*Model, *http.Response, error)

func (ApiFindModelByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindModelVersionMetadataRequest ¶ added in v1.10.3

type ApiFindModelVersionMetadataRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiFindModelVersionMetadataRequest) Execute ¶ added in v1.10.3

func (ApiFindModelVersionMetadataRequest) XTenant ¶ added in v1.10.3

type ApiFindModelsRequest ¶ added in v1.10.3

type ApiFindModelsRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiFindModelsRequest) Execute ¶ added in v1.10.3

func (r ApiFindModelsRequest) Execute() ([]Model, *http.Response, error)

func (ApiFindModelsRequest) XTenant ¶ added in v1.10.3

type ApiFindNotificationsRequest ¶

type ApiFindNotificationsRequest struct {
	ApiService *NotificationAPIService
	// contains filtered or unexported fields
}

func (ApiFindNotificationsRequest) Execute ¶

func (ApiFindNotificationsRequest) XTenant ¶

type ApiFindPaymentMethodByIdRequest ¶

type ApiFindPaymentMethodByIdRequest struct {
	ApiService *PaymentmethodAPIService
	// contains filtered or unexported fields
}

func (ApiFindPaymentMethodByIdRequest) Execute ¶

func (ApiFindPaymentMethodByIdRequest) XTenant ¶

type ApiFindPaymentMethodsRequest ¶

type ApiFindPaymentMethodsRequest struct {
	ApiService *PaymentmethodAPIService
	// contains filtered or unexported fields
}

func (ApiFindPaymentMethodsRequest) Execute ¶

func (ApiFindPaymentMethodsRequest) XTenant ¶

type ApiFindPaymentsRequest ¶ added in v1.10.3

type ApiFindPaymentsRequest struct {
	ApiService *PaymentAPIService
	// contains filtered or unexported fields
}

func (ApiFindPaymentsRequest) Execute ¶ added in v1.10.3

func (r ApiFindPaymentsRequest) Execute() ([]Payment, *http.Response, error)

func (ApiFindPaymentsRequest) XTenant ¶ added in v1.10.3

type ApiFindPermissionsByRoleIdRequest ¶

type ApiFindPermissionsByRoleIdRequest struct {
	ApiService *RoleAPIService
	// contains filtered or unexported fields
}

func (ApiFindPermissionsByRoleIdRequest) Execute ¶

func (ApiFindPermissionsByRoleIdRequest) XTenant ¶

type ApiFindPermissionsRequest ¶

type ApiFindPermissionsRequest struct {
	ApiService *PermissionAPIService
	// contains filtered or unexported fields
}

func (ApiFindPermissionsRequest) Execute ¶

func (r ApiFindPermissionsRequest) Execute() ([]string, *http.Response, error)

func (ApiFindPermissionsRequest) PrincipalId ¶

func (r ApiFindPermissionsRequest) PrincipalId(principalId string) ApiFindPermissionsRequest

func (ApiFindPermissionsRequest) PrincipalType ¶

func (r ApiFindPermissionsRequest) PrincipalType(principalType string) ApiFindPermissionsRequest

func (ApiFindPermissionsRequest) ResourceId ¶

func (ApiFindPermissionsRequest) ResourceType ¶

func (r ApiFindPermissionsRequest) ResourceType(resourceType string) ApiFindPermissionsRequest

func (ApiFindPermissionsRequest) XTenant ¶

type ApiFindPriceByIdRequest ¶

type ApiFindPriceByIdRequest struct {
	ApiService *PriceAPIService
	// contains filtered or unexported fields
}

func (ApiFindPriceByIdRequest) Execute ¶

func (r ApiFindPriceByIdRequest) Execute() (*Price, *http.Response, error)

func (ApiFindPriceByIdRequest) XTenant ¶

type ApiFindPricesRequest ¶

type ApiFindPricesRequest struct {
	ApiService *PriceAPIService
	// contains filtered or unexported fields
}

func (ApiFindPricesRequest) Execute ¶

func (r ApiFindPricesRequest) Execute() ([]Price, *http.Response, error)

func (ApiFindPricesRequest) XTenant ¶

type ApiFindProjectByIdRequest ¶

type ApiFindProjectByIdRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiFindProjectByIdRequest) Execute ¶

func (ApiFindProjectByIdRequest) XTenant ¶

type ApiFindProjectsRequest ¶

type ApiFindProjectsRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiFindProjectsRequest) Execute ¶

func (r ApiFindProjectsRequest) Execute() ([]Project, *http.Response, error)

func (ApiFindProjectsRequest) XTenant ¶

type ApiFindPublicIpsByInfrastructureIdRequest ¶

type ApiFindPublicIpsByInfrastructureIdRequest struct {
	ApiService *InfrastructureAPIService
	// contains filtered or unexported fields
}

func (ApiFindPublicIpsByInfrastructureIdRequest) Execute ¶

func (ApiFindPublicIpsByInfrastructureIdRequest) XTenant ¶

type ApiFindQuotaByKeyRequest ¶

type ApiFindQuotaByKeyRequest struct {
	ApiService *QuotaAPIService
	// contains filtered or unexported fields
}

func (ApiFindQuotaByKeyRequest) Execute ¶

func (r ApiFindQuotaByKeyRequest) Execute() (*Quota, *http.Response, error)

func (ApiFindQuotaByKeyRequest) XTenant ¶

type ApiFindQuotasRequest ¶

type ApiFindQuotasRequest struct {
	ApiService *QuotaAPIService
	// contains filtered or unexported fields
}

func (ApiFindQuotasRequest) Execute ¶

func (r ApiFindQuotasRequest) Execute() ([]Quota, *http.Response, error)

func (ApiFindQuotasRequest) XTenant ¶

type ApiFindRealmByTenantIdRequest ¶

type ApiFindRealmByTenantIdRequest struct {
	ApiService *TenantAPIService
	// contains filtered or unexported fields
}

func (ApiFindRealmByTenantIdRequest) Execute ¶

type ApiFindRoleAssignmentByIdRequest ¶

type ApiFindRoleAssignmentByIdRequest struct {
	ApiService *AssignmentAPIService
	// contains filtered or unexported fields
}

func (ApiFindRoleAssignmentByIdRequest) Execute ¶

func (ApiFindRoleAssignmentByIdRequest) XTenant ¶

type ApiFindRoleAssignmentsRequest ¶

type ApiFindRoleAssignmentsRequest struct {
	ApiService *AssignmentAPIService
	// contains filtered or unexported fields
}

func (ApiFindRoleAssignmentsRequest) Execute ¶

func (ApiFindRoleAssignmentsRequest) ResourceId ¶

func (ApiFindRoleAssignmentsRequest) ResourceType ¶

func (ApiFindRoleAssignmentsRequest) XTenant ¶

type ApiFindRoleByIdRequest ¶

type ApiFindRoleByIdRequest struct {
	ApiService *RoleAPIService
	// contains filtered or unexported fields
}

func (ApiFindRoleByIdRequest) Execute ¶

func (r ApiFindRoleByIdRequest) Execute() (*Role, *http.Response, error)

func (ApiFindRoleByIdRequest) XTenant ¶

type ApiFindRolesByGroupIdRequest ¶

type ApiFindRolesByGroupIdRequest struct {
	ApiService *GroupAPIService
	// contains filtered or unexported fields
}

func (ApiFindRolesByGroupIdRequest) Execute ¶

func (ApiFindRolesByGroupIdRequest) XTenant ¶

type ApiFindRolesByIdentityIdRequest ¶

type ApiFindRolesByIdentityIdRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (ApiFindRolesByIdentityIdRequest) Execute ¶

func (ApiFindRolesByIdentityIdRequest) XTenant ¶

type ApiFindRolesByUserIdRequest ¶

type ApiFindRolesByUserIdRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiFindRolesByUserIdRequest) Execute ¶

func (ApiFindRolesByUserIdRequest) XTenant ¶

type ApiFindRolesRequest ¶

type ApiFindRolesRequest struct {
	ApiService *RoleAPIService
	// contains filtered or unexported fields
}

func (ApiFindRolesRequest) Execute ¶

func (r ApiFindRolesRequest) Execute() ([]Role, *http.Response, error)

func (ApiFindRolesRequest) XTenant ¶

func (r ApiFindRolesRequest) XTenant(xTenant string) ApiFindRolesRequest

type ApiFindRunByJobIdAndRunIdRequest ¶

type ApiFindRunByJobIdAndRunIdRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiFindRunByJobIdAndRunIdRequest) Execute ¶

func (ApiFindRunByJobIdAndRunIdRequest) XTenant ¶

type ApiFindRunByWorkflowIdAndRunIdRequest ¶

type ApiFindRunByWorkflowIdAndRunIdRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiFindRunByWorkflowIdAndRunIdRequest) Execute ¶

func (ApiFindRunByWorkflowIdAndRunIdRequest) XTenant ¶

type ApiFindRunsByJobIdRequest ¶

type ApiFindRunsByJobIdRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiFindRunsByJobIdRequest) Execute ¶

func (r ApiFindRunsByJobIdRequest) Execute() ([]JobRun, *http.Response, error)

func (ApiFindRunsByJobIdRequest) XTenant ¶

type ApiFindRunsByWorkflowIdRequest ¶

type ApiFindRunsByWorkflowIdRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiFindRunsByWorkflowIdRequest) Execute ¶

func (ApiFindRunsByWorkflowIdRequest) XTenant ¶

type ApiFindRuntimeByIdRequest ¶

type ApiFindRuntimeByIdRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiFindRuntimeByIdRequest) Execute ¶

func (ApiFindRuntimeByIdRequest) XTenant ¶

type ApiFindRuntimesRequest ¶

type ApiFindRuntimesRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiFindRuntimesRequest) Execute ¶

func (r ApiFindRuntimesRequest) Execute() ([]Runtime, *http.Response, error)

func (ApiFindRuntimesRequest) XTenant ¶

type ApiFindSecretByIdRequest ¶

type ApiFindSecretByIdRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiFindSecretByIdRequest) Execute ¶

func (ApiFindSecretByIdRequest) XTenant ¶

type ApiFindSecretDataByIdRequest ¶

type ApiFindSecretDataByIdRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiFindSecretDataByIdRequest) Execute ¶

func (ApiFindSecretDataByIdRequest) XTenant ¶

type ApiFindSecretsRequest ¶

type ApiFindSecretsRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiFindSecretsRequest) Execute ¶

func (r ApiFindSecretsRequest) Execute() ([]Secret, *http.Response, error)

func (ApiFindSecretsRequest) XTenant ¶

type ApiFindServicesByInfrastructureByIdRequest ¶ added in v1.10.3

type ApiFindServicesByInfrastructureByIdRequest struct {
	ApiService *InfrastructureAPIService
	// contains filtered or unexported fields
}

func (ApiFindServicesByInfrastructureByIdRequest) Execute ¶ added in v1.10.3

func (ApiFindServicesByInfrastructureByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindStreamByIdRequest ¶

type ApiFindStreamByIdRequest struct {
	ApiService *StreamAPIService
	// contains filtered or unexported fields
}

func (ApiFindStreamByIdRequest) Execute ¶

func (ApiFindStreamByIdRequest) XTenant ¶

type ApiFindStreamsRequest ¶

type ApiFindStreamsRequest struct {
	ApiService *StreamAPIService
	// contains filtered or unexported fields
}

func (ApiFindStreamsRequest) Execute ¶

func (r ApiFindStreamsRequest) Execute() ([]Stream, *http.Response, error)

func (ApiFindStreamsRequest) XTenant ¶

type ApiFindStyleByTenantIdRequest ¶

type ApiFindStyleByTenantIdRequest struct {
	ApiService *StyleAPIService
	// contains filtered or unexported fields
}

func (ApiFindStyleByTenantIdRequest) Execute ¶

func (ApiFindStyleByTenantIdRequest) XTenant ¶

type ApiFindSubscriptionByIdRequest ¶

type ApiFindSubscriptionByIdRequest struct {
	ApiService *SubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiFindSubscriptionByIdRequest) Execute ¶

func (ApiFindSubscriptionByIdRequest) XTenant ¶

type ApiFindSubscriptionRequest ¶

type ApiFindSubscriptionRequest struct {
	ApiService *SubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiFindSubscriptionRequest) Execute ¶

func (ApiFindSubscriptionRequest) XTenant ¶

type ApiFindTableByIdRequest ¶ added in v1.10.3

type ApiFindTableByIdRequest struct {
	ApiService *TableAPIService
	// contains filtered or unexported fields
}

func (ApiFindTableByIdRequest) Execute ¶ added in v1.10.3

func (r ApiFindTableByIdRequest) Execute() (*Table1, *http.Response, error)

func (ApiFindTableByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindTables1Request ¶ added in v1.10.3

type ApiFindTables1Request struct {
	ApiService *TableAPIService
	// contains filtered or unexported fields
}

func (ApiFindTables1Request) Execute ¶ added in v1.10.3

func (r ApiFindTables1Request) Execute() ([]Table1, *http.Response, error)

func (ApiFindTables1Request) XTenant ¶ added in v1.10.3

type ApiFindTablesRequest ¶ added in v1.10.3

type ApiFindTablesRequest struct {
	ApiService *DatawarehouseAPIService
	// contains filtered or unexported fields
}

func (ApiFindTablesRequest) Execute ¶ added in v1.10.3

func (r ApiFindTablesRequest) Execute() ([]Table, *http.Response, error)

func (ApiFindTablesRequest) Page ¶ added in v1.10.3

func (ApiFindTablesRequest) Size ¶ added in v1.10.3

func (ApiFindTablesRequest) XTenant ¶ added in v1.10.3

type ApiFindTemplateMetadataRequest ¶ added in v1.10.3

type ApiFindTemplateMetadataRequest struct {
	ApiService *MarketplaceAPIService
	// contains filtered or unexported fields
}

func (ApiFindTemplateMetadataRequest) Execute ¶ added in v1.10.3

func (ApiFindTemplateMetadataRequest) XTenant ¶ added in v1.10.3

type ApiFindTemplateVersionsRequest ¶ added in v1.10.3

type ApiFindTemplateVersionsRequest struct {
	ApiService *MarketplaceAPIService
	// contains filtered or unexported fields
}

func (ApiFindTemplateVersionsRequest) Execute ¶ added in v1.10.3

func (ApiFindTemplateVersionsRequest) XTenant ¶ added in v1.10.3

type ApiFindTemplatesRequest ¶ added in v1.10.3

type ApiFindTemplatesRequest struct {
	ApiService *MarketplaceAPIService
	// contains filtered or unexported fields
}

func (ApiFindTemplatesRequest) Execute ¶ added in v1.10.3

func (r ApiFindTemplatesRequest) Execute() ([]map[string]string, *http.Response, error)

func (ApiFindTemplatesRequest) XTenant ¶ added in v1.10.3

type ApiFindTenantByIdRequest ¶

type ApiFindTenantByIdRequest struct {
	ApiService *TenantAPIService
	// contains filtered or unexported fields
}

func (ApiFindTenantByIdRequest) Execute ¶

func (ApiFindTenantByIdRequest) XTenant ¶

type ApiFindTenantsRequest ¶

type ApiFindTenantsRequest struct {
	ApiService *TenantAPIService
	// contains filtered or unexported fields
}

func (ApiFindTenantsRequest) Execute ¶

func (r ApiFindTenantsRequest) Execute() ([]Tenant, *http.Response, error)

func (ApiFindTenantsRequest) XTenant ¶

type ApiFindTicketByIdRequest ¶

type ApiFindTicketByIdRequest struct {
	ApiService *TicketAPIService
	// contains filtered or unexported fields
}

func (ApiFindTicketByIdRequest) Execute ¶

func (ApiFindTicketByIdRequest) XTenant ¶

type ApiFindTicketsRequest ¶

type ApiFindTicketsRequest struct {
	ApiService *TicketAPIService
	// contains filtered or unexported fields
}

func (ApiFindTicketsRequest) Execute ¶

func (r ApiFindTicketsRequest) Execute() ([]Ticket, *http.Response, error)

func (ApiFindTicketsRequest) XTenant ¶

type ApiFindUsagesRequest ¶ added in v1.10.3

type ApiFindUsagesRequest struct {
	ApiService *UsageAPIService
	// contains filtered or unexported fields
}

func (ApiFindUsagesRequest) Execute ¶ added in v1.10.3

func (r ApiFindUsagesRequest) Execute() ([]Usage, *http.Response, error)

func (ApiFindUsagesRequest) For_ ¶ added in v1.10.3

func (ApiFindUsagesRequest) From ¶ added in v1.10.3

func (ApiFindUsagesRequest) Params ¶ added in v1.10.3

func (ApiFindUsagesRequest) To ¶ added in v1.10.3

func (ApiFindUsagesRequest) XTenant ¶ added in v1.10.3

type ApiFindUserByIdRequest ¶

type ApiFindUserByIdRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiFindUserByIdRequest) Execute ¶

func (r ApiFindUserByIdRequest) Execute() (*User, *http.Response, error)

func (ApiFindUserByIdRequest) XTenant ¶

type ApiFindUserByRemoteUserIdRequest ¶

type ApiFindUserByRemoteUserIdRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiFindUserByRemoteUserIdRequest) Execute ¶

func (ApiFindUserByRemoteUserIdRequest) XTenant ¶

type ApiFindUsersRequest ¶

type ApiFindUsersRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiFindUsersRequest) Execute ¶

func (r ApiFindUsersRequest) Execute() ([]User, *http.Response, error)

func (ApiFindUsersRequest) XTenant ¶

func (r ApiFindUsersRequest) XTenant(xTenant string) ApiFindUsersRequest

type ApiFindVerificationByCodeRequest ¶

type ApiFindVerificationByCodeRequest struct {
	ApiService *VerificationAPIService
	// contains filtered or unexported fields
}

func (ApiFindVerificationByCodeRequest) Code ¶

func (ApiFindVerificationByCodeRequest) Execute ¶

func (ApiFindVerificationByCodeRequest) Type_ ¶

func (ApiFindVerificationByCodeRequest) Value ¶

type ApiFindVersionByRuntimeIdAndVersionIdRequest ¶

type ApiFindVersionByRuntimeIdAndVersionIdRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiFindVersionByRuntimeIdAndVersionIdRequest) Execute ¶

func (ApiFindVersionByRuntimeIdAndVersionIdRequest) XTenant ¶

type ApiFindVersionsForModelRequest ¶ added in v1.10.3

type ApiFindVersionsForModelRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiFindVersionsForModelRequest) Execute ¶ added in v1.10.3

func (ApiFindVersionsForModelRequest) XTenant ¶ added in v1.10.3

type ApiFindVersionsForRuntimeRequest ¶

type ApiFindVersionsForRuntimeRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiFindVersionsForRuntimeRequest) Execute ¶

func (ApiFindVersionsForRuntimeRequest) XTenant ¶

type ApiFindWorkflowByIdRequest ¶

type ApiFindWorkflowByIdRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiFindWorkflowByIdRequest) Execute ¶

func (ApiFindWorkflowByIdRequest) XTenant ¶

type ApiFindWorkflowsByProjectIdRequest ¶

type ApiFindWorkflowsByProjectIdRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiFindWorkflowsByProjectIdRequest) Execute ¶

func (ApiFindWorkflowsByProjectIdRequest) XTenant ¶

type ApiFindWorkflowsRequest ¶

type ApiFindWorkflowsRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiFindWorkflowsRequest) Execute ¶

func (ApiFindWorkflowsRequest) Page ¶ added in v1.10.3

func (ApiFindWorkflowsRequest) Size ¶ added in v1.10.3

func (ApiFindWorkflowsRequest) XTenant ¶

type ApiFindWorkspaceByIdRequest ¶ added in v1.10.3

type ApiFindWorkspaceByIdRequest struct {
	ApiService *WorkspaceAPIService
	// contains filtered or unexported fields
}

func (ApiFindWorkspaceByIdRequest) Execute ¶ added in v1.10.3

func (ApiFindWorkspaceByIdRequest) XTenant ¶ added in v1.10.3

type ApiFindWorkspacesRequest ¶ added in v1.10.3

type ApiFindWorkspacesRequest struct {
	ApiService *WorkspaceAPIService
	// contains filtered or unexported fields
}

func (ApiFindWorkspacesRequest) Execute ¶ added in v1.10.3

func (ApiFindWorkspacesRequest) Page ¶ added in v1.10.3

func (ApiFindWorkspacesRequest) Size ¶ added in v1.10.3

func (ApiFindWorkspacesRequest) XTenant ¶ added in v1.10.3

type ApiGenerateTemplateRequest ¶ added in v1.10.3

type ApiGenerateTemplateRequest struct {
	ApiService *MarketplaceAPIService
	// contains filtered or unexported fields
}

func (ApiGenerateTemplateRequest) Body ¶ added in v1.10.3

func (r ApiGenerateTemplateRequest) Body(body map[string]interface{}) ApiGenerateTemplateRequest

func (ApiGenerateTemplateRequest) Execute ¶ added in v1.10.3

func (ApiGenerateTemplateRequest) XTenant ¶ added in v1.10.3

type ApiGetActivitiesFromTimelineRequest ¶ added in v1.10.3

type ApiGetActivitiesFromTimelineRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiGetActivitiesFromTimelineRequest) ActivityType ¶ added in v1.10.3

func (ApiGetActivitiesFromTimelineRequest) Aggregated ¶ added in v1.10.3

func (ApiGetActivitiesFromTimelineRequest) BatchSize ¶ added in v1.10.3

func (ApiGetActivitiesFromTimelineRequest) Execute ¶ added in v1.10.3

func (ApiGetActivitiesFromTimelineRequest) ResourceId ¶ added in v1.10.3

func (ApiGetActivitiesFromTimelineRequest) ResourceType ¶ added in v1.10.3

func (ApiGetActivitiesFromTimelineRequest) XCursor ¶ added in v1.10.3

func (ApiGetActivitiesFromTimelineRequest) XTenant ¶ added in v1.10.3

type ApiGetAuditLogsRequest ¶

type ApiGetAuditLogsRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiGetAuditLogsRequest) Execute ¶

func (r ApiGetAuditLogsRequest) Execute() ([]AuditLog, *http.Response, error)

func (ApiGetAuditLogsRequest) XTenant ¶

type ApiGetCapacityRequest ¶

type ApiGetCapacityRequest struct {
	ApiService *EnvAPIService
	// contains filtered or unexported fields
}

func (ApiGetCapacityRequest) Execute ¶

func (ApiGetCapacityRequest) XTenant ¶

type ApiGetCatalogFollowersRequest ¶ added in v1.10.3

type ApiGetCatalogFollowersRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiGetCatalogFollowersRequest) Execute ¶ added in v1.10.3

func (ApiGetCatalogFollowersRequest) XTenant ¶ added in v1.10.3

type ApiGetCommentsFromActivityRequest ¶ added in v1.10.3

type ApiGetCommentsFromActivityRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiGetCommentsFromActivityRequest) Execute ¶ added in v1.10.3

func (ApiGetCommentsFromActivityRequest) XTenant ¶ added in v1.10.3

type ApiGetCostsRequest ¶

type ApiGetCostsRequest struct {
	ApiService *CostAPIService
	// contains filtered or unexported fields
}

func (ApiGetCostsRequest) Execute ¶

func (r ApiGetCostsRequest) Execute() (*CostStats, *http.Response, error)

func (ApiGetCostsRequest) For_ ¶

func (ApiGetCostsRequest) From ¶

func (ApiGetCostsRequest) Params ¶

func (r ApiGetCostsRequest) Params(params map[string]string) ApiGetCostsRequest

func (ApiGetCostsRequest) To ¶

func (ApiGetCostsRequest) XTenant ¶

func (r ApiGetCostsRequest) XTenant(xTenant string) ApiGetCostsRequest

type ApiGetDataFilesRequest ¶ added in v1.10.3

type ApiGetDataFilesRequest struct {
	ApiService *DataAPIService
	// contains filtered or unexported fields
}

func (ApiGetDataFilesRequest) Execute ¶ added in v1.10.3

func (ApiGetDataFilesRequest) Path ¶ added in v1.10.3

path

func (ApiGetDataFilesRequest) XTenant ¶ added in v1.10.3

type ApiGetDatabaseFollowersRequest ¶ added in v1.10.3

type ApiGetDatabaseFollowersRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiGetDatabaseFollowersRequest) Execute ¶ added in v1.10.3

func (ApiGetDatabaseFollowersRequest) XTenant ¶ added in v1.10.3

type ApiGetEndpointsRequest ¶

type ApiGetEndpointsRequest struct {
	ApiService *EnvAPIService
	// contains filtered or unexported fields
}

func (ApiGetEndpointsRequest) Execute ¶

func (r ApiGetEndpointsRequest) Execute() (map[string]string, *http.Response, error)

func (ApiGetEndpointsRequest) XTenant ¶

type ApiGetEnvRequest ¶

type ApiGetEnvRequest struct {
	ApiService *EnvAPIService
	// contains filtered or unexported fields
}

func (ApiGetEnvRequest) Execute ¶

func (r ApiGetEnvRequest) Execute() (*Tenant1, *http.Response, error)

func (ApiGetEnvRequest) XTenant ¶

func (r ApiGetEnvRequest) XTenant(xTenant string) ApiGetEnvRequest

type ApiGetFileRequest ¶

type ApiGetFileRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiGetFileRequest) Execute ¶

func (r ApiGetFileRequest) Execute() (*os.File, *http.Response, error)

func (ApiGetFileRequest) XTenant ¶

func (r ApiGetFileRequest) XTenant(xTenant string) ApiGetFileRequest

type ApiGetJobFollowersRequest ¶ added in v1.10.3

type ApiGetJobFollowersRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiGetJobFollowersRequest) Execute ¶ added in v1.10.3

func (r ApiGetJobFollowersRequest) Execute() ([]User1, *http.Response, error)

func (ApiGetJobFollowersRequest) XTenant ¶ added in v1.10.3

type ApiGetLogsForBuildRequest ¶

type ApiGetLogsForBuildRequest struct {
	ApiService *RuntimeAPIService
	// contains filtered or unexported fields
}

func (ApiGetLogsForBuildRequest) Cursor ¶

The cursor

func (ApiGetLogsForBuildRequest) Execute ¶

func (ApiGetLogsForBuildRequest) XTenant ¶

type ApiGetLogsForDatawarehouseRequest ¶ added in v1.10.3

type ApiGetLogsForDatawarehouseRequest struct {
	ApiService *DatawarehouseAPIService
	// contains filtered or unexported fields
}

func (ApiGetLogsForDatawarehouseRequest) Cursor ¶ added in v1.10.3

The cursor

func (ApiGetLogsForDatawarehouseRequest) Execute ¶ added in v1.10.3

func (ApiGetLogsForDatawarehouseRequest) XTenant ¶ added in v1.10.3

type ApiGetLogsForEndpointRequest ¶ added in v1.10.3

type ApiGetLogsForEndpointRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiGetLogsForEndpointRequest) Cursor ¶ added in v1.10.3

The cursor

func (ApiGetLogsForEndpointRequest) Execute ¶ added in v1.10.3

func (ApiGetLogsForEndpointRequest) XTenant ¶ added in v1.10.3

type ApiGetLogsForWorkspaceRequest ¶ added in v1.10.3

type ApiGetLogsForWorkspaceRequest struct {
	ApiService *WorkspaceAPIService
	// contains filtered or unexported fields
}

func (ApiGetLogsForWorkspaceRequest) Cursor ¶ added in v1.10.3

The cursor

func (ApiGetLogsForWorkspaceRequest) Execute ¶ added in v1.10.3

func (ApiGetLogsForWorkspaceRequest) XTenant ¶ added in v1.10.3

type ApiGetLogsRequest ¶

type ApiGetLogsRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiGetLogsRequest) Cursor ¶

func (r ApiGetLogsRequest) Cursor(cursor string) ApiGetLogsRequest

The cursor

func (ApiGetLogsRequest) Execute ¶

func (r ApiGetLogsRequest) Execute() ([]LogEntry, *http.Response, error)

func (ApiGetLogsRequest) XTenant ¶

func (r ApiGetLogsRequest) XTenant(xTenant string) ApiGetLogsRequest

type ApiGetMetricsForJobRequest ¶

type ApiGetMetricsForJobRequest struct {
	ApiService *JobAPIService
	// contains filtered or unexported fields
}

func (ApiGetMetricsForJobRequest) Execute ¶

func (ApiGetMetricsForJobRequest) From ¶

func (ApiGetMetricsForJobRequest) Metric ¶

The metric name

func (ApiGetMetricsForJobRequest) To ¶

func (ApiGetMetricsForJobRequest) XTenant ¶

type ApiGetMetricsForProjectRequest ¶

type ApiGetMetricsForProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetMetricsForProjectRequest) Execute ¶

func (ApiGetMetricsForProjectRequest) From ¶

func (ApiGetMetricsForProjectRequest) Metric ¶

The metric name

func (ApiGetMetricsForProjectRequest) To ¶

func (ApiGetMetricsForProjectRequest) XTenant ¶

type ApiGetMetricsForRunRequest ¶

type ApiGetMetricsForRunRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiGetMetricsForRunRequest) Execute ¶

func (ApiGetMetricsForRunRequest) From ¶

func (ApiGetMetricsForRunRequest) Metric ¶

The metric name

func (ApiGetMetricsForRunRequest) To ¶

func (ApiGetMetricsForRunRequest) XTenant ¶

type ApiGetMetricsForTenantRequest ¶

type ApiGetMetricsForTenantRequest struct {
	ApiService *EnvAPIService
	// contains filtered or unexported fields
}

func (ApiGetMetricsForTenantRequest) Execute ¶

func (ApiGetMetricsForTenantRequest) From ¶

func (ApiGetMetricsForTenantRequest) Metric ¶

The metric name

func (ApiGetMetricsForTenantRequest) To ¶

func (ApiGetMetricsForTenantRequest) XTenant ¶

type ApiGetProjectFollowersRequest ¶ added in v1.10.3

type ApiGetProjectFollowersRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiGetProjectFollowersRequest) Execute ¶ added in v1.10.3

func (ApiGetProjectFollowersRequest) XTenant ¶ added in v1.10.3

type ApiGetReactionsFromActivityRequest ¶ added in v1.10.3

type ApiGetReactionsFromActivityRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiGetReactionsFromActivityRequest) Execute ¶ added in v1.10.3

func (ApiGetReactionsFromActivityRequest) XTenant ¶ added in v1.10.3

type ApiGetResourceHistoryRequest ¶

type ApiGetResourceHistoryRequest struct {
	ApiService *HistoryAPIService
	// contains filtered or unexported fields
}

func (ApiGetResourceHistoryRequest) Execute ¶

func (ApiGetResourceHistoryRequest) XTenant ¶

type ApiGetRunFilesRequest ¶

type ApiGetRunFilesRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiGetRunFilesRequest) Execute ¶

func (r ApiGetRunFilesRequest) Execute() ([]string, *http.Response, error)

func (ApiGetRunFilesRequest) XTenant ¶

type ApiGetSearchHistoryRequest ¶

type ApiGetSearchHistoryRequest struct {
	ApiService *HistoryAPIService
	// contains filtered or unexported fields
}

func (ApiGetSearchHistoryRequest) Execute ¶

func (ApiGetSearchHistoryRequest) XTenant ¶

type ApiGetSessionRequest ¶ added in v1.10.3

type ApiGetSessionRequest struct {
	ApiService *SessionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetSessionRequest) Execute ¶ added in v1.10.3

func (r ApiGetSessionRequest) Execute() (string, *http.Response, error)

func (ApiGetSessionRequest) XTenant ¶ added in v1.10.3

type ApiGetSessionsRequest ¶ added in v1.10.3

type ApiGetSessionsRequest struct {
	ApiService *SessionsAPIService
	// contains filtered or unexported fields
}

func (ApiGetSessionsRequest) Execute ¶ added in v1.10.3

func (r ApiGetSessionsRequest) Execute() ([]Session, *http.Response, error)

func (ApiGetSessionsRequest) ExpirationTime ¶ added in v1.10.3

func (r ApiGetSessionsRequest) ExpirationTime(expirationTime int32) ApiGetSessionsRequest

func (ApiGetSessionsRequest) Inactive ¶ added in v1.10.3

func (r ApiGetSessionsRequest) Inactive(inactive bool) ApiGetSessionsRequest

func (ApiGetSessionsRequest) XTenant ¶ added in v1.10.3

type ApiGetStatsByJobIdRequest ¶

type ApiGetStatsByJobIdRequest struct {
	ApiService *JobAPIService
	// contains filtered or unexported fields
}

func (ApiGetStatsByJobIdRequest) Execute ¶

func (ApiGetStatsByJobIdRequest) XTenant ¶

type ApiGetStatsByProjectIdRequest ¶

type ApiGetStatsByProjectIdRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiGetStatsByProjectIdRequest) Execute ¶

func (ApiGetStatsByProjectIdRequest) XTenant ¶

type ApiGetStatsByWorkflowIdRequest ¶

type ApiGetStatsByWorkflowIdRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiGetStatsByWorkflowIdRequest) Execute ¶

func (ApiGetStatsByWorkflowIdRequest) XTenant ¶

type ApiGetTableFollowersRequest ¶ added in v1.10.3

type ApiGetTableFollowersRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiGetTableFollowersRequest) Execute ¶ added in v1.10.3

func (ApiGetTableFollowersRequest) XTenant ¶ added in v1.10.3

type ApiGetUserFollowersRequest ¶ added in v1.10.3

type ApiGetUserFollowersRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserFollowersRequest) Execute ¶ added in v1.10.3

func (r ApiGetUserFollowersRequest) Execute() ([]User1, *http.Response, error)

func (ApiGetUserFollowersRequest) XTenant ¶ added in v1.10.3

type ApiGetUserFollowingRequest ¶ added in v1.10.3

type ApiGetUserFollowingRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserFollowingRequest) Execute ¶ added in v1.10.3

func (ApiGetUserFollowingRequest) XTenant ¶ added in v1.10.3

type ApiGetWorkflowFollowersRequest ¶ added in v1.10.3

type ApiGetWorkflowFollowersRequest struct {
	ApiService *FollowAPIService
	// contains filtered or unexported fields
}

func (ApiGetWorkflowFollowersRequest) Execute ¶ added in v1.10.3

func (ApiGetWorkflowFollowersRequest) XTenant ¶ added in v1.10.3

type ApiHasPermissionRequest ¶

type ApiHasPermissionRequest struct {
	ApiService *PermissionAPIService
	// contains filtered or unexported fields
}

func (ApiHasPermissionRequest) Execute ¶

func (r ApiHasPermissionRequest) Execute() (bool, *http.Response, error)

func (ApiHasPermissionRequest) Permission ¶

func (r ApiHasPermissionRequest) Permission(permission string) ApiHasPermissionRequest

func (ApiHasPermissionRequest) ResourceId ¶

func (r ApiHasPermissionRequest) ResourceId(resourceId string) ApiHasPermissionRequest

func (ApiHasPermissionRequest) ResourceType ¶

func (r ApiHasPermissionRequest) ResourceType(resourceType string) ApiHasPermissionRequest

func (ApiHasPermissionRequest) XTenant ¶

type ApiRunSessionRequest ¶ added in v1.10.3

type ApiRunSessionRequest struct {
	ApiService *SessionsAPIService
	// contains filtered or unexported fields
}

func (ApiRunSessionRequest) DagUnverified ¶ added in v1.10.3

func (r ApiRunSessionRequest) DagUnverified(dagUnverified DagUnverified) ApiRunSessionRequest

func (ApiRunSessionRequest) Execute ¶ added in v1.10.3

func (r ApiRunSessionRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiRunSessionRequest) XTenant ¶ added in v1.10.3

type ApiSearchRequest ¶

type ApiSearchRequest struct {
	ApiService *SearchAPIService
	// contains filtered or unexported fields
}

func (ApiSearchRequest) Execute ¶

func (r ApiSearchRequest) Execute() ([]Result, *http.Response, error)

func (ApiSearchRequest) Q ¶

The query

func (ApiSearchRequest) XTenant ¶

func (r ApiSearchRequest) XTenant(xTenant string) ApiSearchRequest

type ApiSendMessageRequest ¶

type ApiSendMessageRequest struct {
	ApiService *MessageAPIService
	// contains filtered or unexported fields
}

func (ApiSendMessageRequest) Execute ¶

func (r ApiSendMessageRequest) Execute() (*http.Response, error)

func (ApiSendMessageRequest) Message ¶

The message to be created

func (ApiSendMessageRequest) XTenant ¶

type ApiStripeCreateSetupIntentRequest ¶ added in v1.10.3

type ApiStripeCreateSetupIntentRequest struct {
	ApiService *StripeAPIService
	// contains filtered or unexported fields
}

func (ApiStripeCreateSetupIntentRequest) Execute ¶ added in v1.10.3

func (ApiStripeCreateSetupIntentRequest) XTenant ¶ added in v1.10.3

type ApiStripePublicKeyRequest ¶ added in v1.10.3

type ApiStripePublicKeyRequest struct {
	ApiService *StripeAPIService
	// contains filtered or unexported fields
}

func (ApiStripePublicKeyRequest) Execute ¶ added in v1.10.3

func (ApiStripePublicKeyRequest) XTenant ¶ added in v1.10.3

type ApiUpdateBucketRequest ¶

type ApiUpdateBucketRequest struct {
	ApiService *BucketAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateBucketRequest) Execute ¶

func (r ApiUpdateBucketRequest) Execute() (*Bucket, *http.Response, error)

func (ApiUpdateBucketRequest) Patch ¶

The patch

func (ApiUpdateBucketRequest) XTenant ¶

type ApiUpdateCatalogRequest ¶

type ApiUpdateCatalogRequest struct {
	ApiService *CatalogAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateCatalogRequest) Execute ¶

func (r ApiUpdateCatalogRequest) Execute() (*http.Response, error)

func (ApiUpdateCatalogRequest) XTenant ¶

type ApiUpdateCommentForActivityRequest ¶ added in v1.10.3

type ApiUpdateCommentForActivityRequest struct {
	ApiService *ActivityAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateCommentForActivityRequest) Execute ¶ added in v1.10.3

func (ApiUpdateCommentForActivityRequest) XTenant ¶ added in v1.10.3

type ApiUpdateDataWarehouseRequest ¶ added in v1.10.3

type ApiUpdateDataWarehouseRequest struct {
	ApiService *DatawarehouseAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateDataWarehouseRequest) Execute ¶ added in v1.10.3

func (ApiUpdateDataWarehouseRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateDataWarehouseRequest) XTenant ¶ added in v1.10.3

type ApiUpdateDatabaseRequest ¶ added in v1.10.3

type ApiUpdateDatabaseRequest struct {
	ApiService *DatabaseAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateDatabaseRequest) Execute ¶ added in v1.10.3

func (ApiUpdateDatabaseRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateDatabaseRequest) XTenant ¶ added in v1.10.3

type ApiUpdateDeviceRequest ¶ added in v1.10.3

type ApiUpdateDeviceRequest struct {
	ApiService *DeviceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateDeviceRequest) Execute ¶ added in v1.10.3

func (r ApiUpdateDeviceRequest) Execute() (*Device, *http.Response, error)

func (ApiUpdateDeviceRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateDeviceRequest) XTenant ¶ added in v1.10.3

type ApiUpdateEndpointByIdAndProjectIdRequest ¶ added in v1.10.3

type ApiUpdateEndpointByIdAndProjectIdRequest struct {
	ApiService *EndpointAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateEndpointByIdAndProjectIdRequest) Execute ¶ added in v1.10.3

func (ApiUpdateEndpointByIdAndProjectIdRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateEndpointByIdAndProjectIdRequest) XTenant ¶ added in v1.10.3

type ApiUpdateFirewallRuleRequest ¶

type ApiUpdateFirewallRuleRequest struct {
	ApiService *FirewallAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateFirewallRuleRequest) Execute ¶

func (ApiUpdateFirewallRuleRequest) Patch ¶

The patch

func (ApiUpdateFirewallRuleRequest) XTenant ¶

type ApiUpdateGraphRequest ¶ added in v1.10.3

type ApiUpdateGraphRequest struct {
	ApiService *GraphAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateGraphRequest) Execute ¶ added in v1.10.3

func (r ApiUpdateGraphRequest) Execute() (*Graph, *http.Response, error)

func (ApiUpdateGraphRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateGraphRequest) XTenant ¶ added in v1.10.3

type ApiUpdateIdentityProviderRequest ¶ added in v1.10.3

type ApiUpdateIdentityProviderRequest struct {
	ApiService *IdentityProviderAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIdentityProviderRequest) Execute ¶ added in v1.10.3

func (ApiUpdateIdentityProviderRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateIdentityProviderRequest) XTenant ¶ added in v1.10.3

type ApiUpdateIdentityRequest ¶

type ApiUpdateIdentityRequest struct {
	ApiService *IdentityAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateIdentityRequest) Execute ¶

func (ApiUpdateIdentityRequest) Patch ¶

The patch

func (ApiUpdateIdentityRequest) XTenant ¶

type ApiUpdateInfrastructureRequest ¶

type ApiUpdateInfrastructureRequest struct {
	ApiService *InfrastructureAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateInfrastructureRequest) Execute ¶

func (ApiUpdateInfrastructureRequest) Patch ¶

The patch

func (ApiUpdateInfrastructureRequest) XTenant ¶

type ApiUpdateInvoiceRequest ¶

type ApiUpdateInvoiceRequest struct {
	ApiService *InvoiceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateInvoiceRequest) Execute ¶

func (ApiUpdateInvoiceRequest) Patch ¶

The patch

func (ApiUpdateInvoiceRequest) XTenant ¶

type ApiUpdateJobRequest ¶

type ApiUpdateJobRequest struct {
	ApiService *JobAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateJobRequest) Execute ¶

func (r ApiUpdateJobRequest) Execute() (*Job, *http.Response, error)

func (ApiUpdateJobRequest) Patch ¶

The patch

func (ApiUpdateJobRequest) XTenant ¶

func (r ApiUpdateJobRequest) XTenant(xTenant string) ApiUpdateJobRequest

type ApiUpdateLayerRequest ¶ added in v1.10.3

type ApiUpdateLayerRequest struct {
	ApiService *LayerAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateLayerRequest) Execute ¶ added in v1.10.3

func (r ApiUpdateLayerRequest) Execute() (*Layer, *http.Response, error)

func (ApiUpdateLayerRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateLayerRequest) XTenant ¶ added in v1.10.3

type ApiUpdateModelRequest ¶ added in v1.10.3

type ApiUpdateModelRequest struct {
	ApiService *ModelAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateModelRequest) Execute ¶ added in v1.10.3

func (r ApiUpdateModelRequest) Execute() (*Model, *http.Response, error)

func (ApiUpdateModelRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateModelRequest) XTenant ¶ added in v1.10.3

type ApiUpdatePaymentMethodRequest ¶

type ApiUpdatePaymentMethodRequest struct {
	ApiService *PaymentmethodAPIService
	// contains filtered or unexported fields
}

func (ApiUpdatePaymentMethodRequest) Execute ¶

func (ApiUpdatePaymentMethodRequest) Patch ¶

The patch

func (ApiUpdatePaymentMethodRequest) XTenant ¶

type ApiUpdatePriceRequest ¶

type ApiUpdatePriceRequest struct {
	ApiService *PriceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdatePriceRequest) Execute ¶

func (r ApiUpdatePriceRequest) Execute() (*Price, *http.Response, error)

func (ApiUpdatePriceRequest) Patch ¶

The patch

func (ApiUpdatePriceRequest) XTenant ¶

type ApiUpdateProjectRequest ¶

type ApiUpdateProjectRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateProjectRequest) Execute ¶

func (ApiUpdateProjectRequest) Patch ¶

The patch

func (ApiUpdateProjectRequest) XTenant ¶

type ApiUpdateRunRequest ¶

type ApiUpdateRunRequest struct {
	ApiService *RunAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateRunRequest) Execute ¶

func (r ApiUpdateRunRequest) Execute() (*JobRun, *http.Response, error)

func (ApiUpdateRunRequest) Patch ¶

The patch

func (ApiUpdateRunRequest) XTenant ¶

func (r ApiUpdateRunRequest) XTenant(xTenant string) ApiUpdateRunRequest

type ApiUpdateSecretRequest ¶ added in v1.10.3

type ApiUpdateSecretRequest struct {
	ApiService *SecretAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateSecretRequest) Execute ¶ added in v1.10.3

func (r ApiUpdateSecretRequest) Execute() (*Secret, *http.Response, error)

func (ApiUpdateSecretRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateSecretRequest) XTenant ¶ added in v1.10.3

type ApiUpdateSessionRequest ¶ added in v1.10.3

type ApiUpdateSessionRequest struct {
	ApiService *SessionsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateSessionRequest) Execute ¶ added in v1.10.3

func (ApiUpdateSessionRequest) WorkspaceUrl ¶ added in v1.10.3

func (r ApiUpdateSessionRequest) WorkspaceUrl(workspaceUrl string) ApiUpdateSessionRequest

func (ApiUpdateSessionRequest) XTenant ¶ added in v1.10.3

type ApiUpdateStreamRequest ¶

type ApiUpdateStreamRequest struct {
	ApiService *StreamAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateStreamRequest) Execute ¶

func (r ApiUpdateStreamRequest) Execute() (*Stream, *http.Response, error)

func (ApiUpdateStreamRequest) Patch ¶

The patch

func (ApiUpdateStreamRequest) XTenant ¶

type ApiUpdateStyleRequest ¶

type ApiUpdateStyleRequest struct {
	ApiService *StyleAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateStyleRequest) Execute ¶

func (r ApiUpdateStyleRequest) Execute() (*Style, *http.Response, error)

func (ApiUpdateStyleRequest) Patch ¶

The patch

func (ApiUpdateStyleRequest) XTenant ¶

type ApiUpdateSubscriptionRequest ¶

type ApiUpdateSubscriptionRequest struct {
	ApiService *SubscriptionAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateSubscriptionRequest) Execute ¶

func (ApiUpdateSubscriptionRequest) Patch ¶

The patch

func (ApiUpdateSubscriptionRequest) XTenant ¶

type ApiUpdateTableRequest ¶ added in v1.10.3

type ApiUpdateTableRequest struct {
	ApiService *TableAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTableRequest) Execute ¶ added in v1.10.3

func (r ApiUpdateTableRequest) Execute() (*Table1, *http.Response, error)

func (ApiUpdateTableRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateTableRequest) XTenant ¶ added in v1.10.3

type ApiUpdateTenantRequest ¶

type ApiUpdateTenantRequest struct {
	ApiService *TenantAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTenantRequest) Execute ¶

func (r ApiUpdateTenantRequest) Execute() (*Tenant, *http.Response, error)

func (ApiUpdateTenantRequest) Patch ¶

The patch

func (ApiUpdateTenantRequest) XTenant ¶

type ApiUpdateTicketRequest ¶

type ApiUpdateTicketRequest struct {
	ApiService *TicketAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateTicketRequest) Execute ¶

func (r ApiUpdateTicketRequest) Execute() (*Ticket, *http.Response, error)

func (ApiUpdateTicketRequest) Patch ¶

The patch

func (ApiUpdateTicketRequest) XTenant ¶

type ApiUpdateUserRequest ¶

type ApiUpdateUserRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateUserRequest) Execute ¶

func (r ApiUpdateUserRequest) Execute() (*User, *http.Response, error)

func (ApiUpdateUserRequest) Patch ¶

The patch

func (ApiUpdateUserRequest) XTenant ¶

type ApiUpdateWorkflowRequest ¶

type ApiUpdateWorkflowRequest struct {
	ApiService *WorkflowAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkflowRequest) Execute ¶

func (ApiUpdateWorkflowRequest) Patch ¶

The patch

func (ApiUpdateWorkflowRequest) XTenant ¶

type ApiUpdateWorkspaceRequest ¶ added in v1.10.3

type ApiUpdateWorkspaceRequest struct {
	ApiService *WorkspaceAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkspaceRequest) Execute ¶ added in v1.10.3

func (ApiUpdateWorkspaceRequest) Patch ¶ added in v1.10.3

The patch

func (ApiUpdateWorkspaceRequest) XTenant ¶ added in v1.10.3

type ApiUploadBannerRequest ¶ added in v1.10.3

type ApiUploadBannerRequest struct {
	ApiService *ProjectAPIService
	// contains filtered or unexported fields
}

func (ApiUploadBannerRequest) Execute ¶ added in v1.10.3

func (r ApiUploadBannerRequest) Execute() (*http.Response, error)

func (ApiUploadBannerRequest) Filename ¶ added in v1.10.3

func (r ApiUploadBannerRequest) Filename(filename []*os.File) ApiUploadBannerRequest

func (ApiUploadBannerRequest) XTenant ¶ added in v1.10.3

type ApiUploadFileInWorkspaceRequest ¶ added in v1.10.3

type ApiUploadFileInWorkspaceRequest struct {
	ApiService *WorkspaceAPIService
	// contains filtered or unexported fields
}

func (ApiUploadFileInWorkspaceRequest) Execute ¶ added in v1.10.3

func (ApiUploadFileInWorkspaceRequest) Filename ¶ added in v1.10.3

func (ApiUploadFileInWorkspaceRequest) Path ¶ added in v1.10.3

path

func (ApiUploadFileInWorkspaceRequest) XTenant ¶ added in v1.10.3

type ApiUploadFileRequest ¶ added in v1.10.3

type ApiUploadFileRequest struct {
	ApiService *DataAPIService
	// contains filtered or unexported fields
}

func (ApiUploadFileRequest) Execute ¶ added in v1.10.3

func (r ApiUploadFileRequest) Execute() (*http.Response, error)

func (ApiUploadFileRequest) Filename ¶ added in v1.10.3

func (r ApiUploadFileRequest) Filename(filename []*os.File) ApiUploadFileRequest

func (ApiUploadFileRequest) Path ¶ added in v1.10.3

path

func (ApiUploadFileRequest) XTenant ¶ added in v1.10.3

type ApiUploadLibraryRequest ¶ added in v1.10.3

type ApiUploadLibraryRequest struct {
	ApiService *LibraryAPIService
	// contains filtered or unexported fields
}

func (ApiUploadLibraryRequest) Execute ¶ added in v1.10.3

func (ApiUploadLibraryRequest) Filename ¶ added in v1.10.3

func (r ApiUploadLibraryRequest) Filename(filename []*os.File) ApiUploadLibraryRequest

func (ApiUploadLibraryRequest) XTenant ¶ added in v1.10.3

type ApiVerifyCodeRequest ¶ added in v1.10.3

type ApiVerifyCodeRequest struct {
	ApiService *CodeAPIService
	// contains filtered or unexported fields
}

func (ApiVerifyCodeRequest) Destination ¶ added in v1.10.3

func (r ApiVerifyCodeRequest) Destination(destination string) ApiVerifyCodeRequest

func (ApiVerifyCodeRequest) Execute ¶ added in v1.10.3

func (r ApiVerifyCodeRequest) Execute() (*http.Response, error)

func (ApiVerifyCodeRequest) Filename ¶ added in v1.10.3

func (r ApiVerifyCodeRequest) Filename(filename []*os.File) ApiVerifyCodeRequest

func (ApiVerifyCodeRequest) Source ¶ added in v1.10.3

func (ApiVerifyCodeRequest) XTenant ¶ added in v1.10.3

type Application ¶

type Application struct {
	Id                      *string                           `json:"id,omitempty"`
	UserId                  *string                           `json:"user_id,omitempty"`
	Name                    *string                           `json:"name,omitempty"`
	TenantId                *string                           `json:"tenant_id,omitempty"`
	RemoteApplicationId     *string                           `json:"remote_application_id,omitempty"`
	RemoteApplicationSecret *string                           `json:"remote_application_secret,omitempty"`
	Description             *string                           `json:"description,omitempty"`
	Created                 *time.Time                        `json:"created,omitempty"`
	Updated                 *time.Time                        `json:"updated,omitempty"`
	Metadata                map[string]map[string]interface{} `json:"metadata,omitempty"`
	Locked                  *bool                             `json:"locked,omitempty"`
}

Application struct for Application

func NewApplication ¶

func NewApplication() *Application

NewApplication instantiates a new Application 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 NewApplicationWithDefaults ¶

func NewApplicationWithDefaults() *Application

NewApplicationWithDefaults instantiates a new Application 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 (*Application) GetCreated ¶

func (o *Application) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Application) GetCreatedOk ¶

func (o *Application) GetCreatedOk() (*time.Time, bool)

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

func (*Application) GetDescription ¶

func (o *Application) GetDescription() string

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

func (*Application) GetDescriptionOk ¶

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

func (o *Application) GetId() string

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

func (*Application) GetIdOk ¶

func (o *Application) 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 (*Application) GetLocked ¶

func (o *Application) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*Application) GetLockedOk ¶

func (o *Application) GetLockedOk() (*bool, bool)

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

func (*Application) GetMetadata ¶

func (o *Application) GetMetadata() map[string]map[string]interface{}

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

func (*Application) GetMetadataOk ¶

func (o *Application) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Application) GetName ¶

func (o *Application) GetName() string

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

func (*Application) GetNameOk ¶

func (o *Application) 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 (*Application) GetRemoteApplicationId ¶

func (o *Application) GetRemoteApplicationId() string

GetRemoteApplicationId returns the RemoteApplicationId field value if set, zero value otherwise.

func (*Application) GetRemoteApplicationIdOk ¶

func (o *Application) GetRemoteApplicationIdOk() (*string, bool)

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

func (*Application) GetRemoteApplicationSecret ¶

func (o *Application) GetRemoteApplicationSecret() string

GetRemoteApplicationSecret returns the RemoteApplicationSecret field value if set, zero value otherwise.

func (*Application) GetRemoteApplicationSecretOk ¶

func (o *Application) GetRemoteApplicationSecretOk() (*string, bool)

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

func (*Application) GetTenantId ¶

func (o *Application) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Application) GetTenantIdOk ¶

func (o *Application) GetTenantIdOk() (*string, bool)

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

func (*Application) GetUpdated ¶

func (o *Application) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Application) GetUpdatedOk ¶

func (o *Application) GetUpdatedOk() (*time.Time, bool)

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

func (*Application) GetUserId ¶

func (o *Application) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Application) GetUserIdOk ¶

func (o *Application) GetUserIdOk() (*string, bool)

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

func (*Application) HasCreated ¶

func (o *Application) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Application) HasDescription ¶

func (o *Application) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Application) HasId ¶

func (o *Application) HasId() bool

HasId returns a boolean if a field has been set.

func (*Application) HasLocked ¶

func (o *Application) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*Application) HasMetadata ¶

func (o *Application) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Application) HasName ¶

func (o *Application) HasName() bool

HasName returns a boolean if a field has been set.

func (*Application) HasRemoteApplicationId ¶

func (o *Application) HasRemoteApplicationId() bool

HasRemoteApplicationId returns a boolean if a field has been set.

func (*Application) HasRemoteApplicationSecret ¶

func (o *Application) HasRemoteApplicationSecret() bool

HasRemoteApplicationSecret returns a boolean if a field has been set.

func (*Application) HasTenantId ¶

func (o *Application) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Application) HasUpdated ¶

func (o *Application) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*Application) HasUserId ¶

func (o *Application) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (Application) MarshalJSON ¶

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

func (*Application) SetCreated ¶

func (o *Application) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Application) SetDescription ¶

func (o *Application) SetDescription(v string)

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

func (*Application) SetId ¶

func (o *Application) SetId(v string)

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

func (*Application) SetLocked ¶

func (o *Application) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*Application) SetMetadata ¶

func (o *Application) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Application) SetName ¶

func (o *Application) SetName(v string)

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

func (*Application) SetRemoteApplicationId ¶

func (o *Application) SetRemoteApplicationId(v string)

SetRemoteApplicationId gets a reference to the given string and assigns it to the RemoteApplicationId field.

func (*Application) SetRemoteApplicationSecret ¶

func (o *Application) SetRemoteApplicationSecret(v string)

SetRemoteApplicationSecret gets a reference to the given string and assigns it to the RemoteApplicationSecret field.

func (*Application) SetTenantId ¶

func (o *Application) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Application) SetUpdated ¶

func (o *Application) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*Application) SetUserId ¶

func (o *Application) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (Application) ToMap ¶ added in v1.10.3

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

type ApplicationAPIService ¶ added in v1.10.3

type ApplicationAPIService service

ApplicationAPIService ApplicationAPI service

func (*ApplicationAPIService) CreateApplication ¶ added in v1.10.3

CreateApplication Create a application

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateApplicationRequest

func (*ApplicationAPIService) CreateApplicationExecute ¶ added in v1.10.3

func (a *ApplicationAPIService) CreateApplicationExecute(r ApiCreateApplicationRequest) (*Application, *http.Response, error)

Execute executes the request

@return Application

func (*ApplicationAPIService) DeleteApplicationById ¶ added in v1.10.3

func (a *ApplicationAPIService) DeleteApplicationById(ctx context.Context, applicationId string) ApiDeleteApplicationByIdRequest

DeleteApplicationById Delete an application by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param applicationId Id of the application
@return ApiDeleteApplicationByIdRequest

func (*ApplicationAPIService) DeleteApplicationByIdExecute ¶ added in v1.10.3

func (a *ApplicationAPIService) DeleteApplicationByIdExecute(r ApiDeleteApplicationByIdRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationAPIService) FindApplicationById ¶ added in v1.10.3

func (a *ApplicationAPIService) FindApplicationById(ctx context.Context, applicationId string) ApiFindApplicationByIdRequest

FindApplicationById Find application by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param applicationId Id of the application
@return ApiFindApplicationByIdRequest

func (*ApplicationAPIService) FindApplicationByIdExecute ¶ added in v1.10.3

func (a *ApplicationAPIService) FindApplicationByIdExecute(r ApiFindApplicationByIdRequest) (*Application, *http.Response, error)

Execute executes the request

@return Application

func (*ApplicationAPIService) FindApplications ¶ added in v1.10.3

FindApplications Retrieve all applications

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindApplicationsRequest

func (*ApplicationAPIService) FindApplicationsExecute ¶ added in v1.10.3

func (a *ApplicationAPIService) FindApplicationsExecute(r ApiFindApplicationsRequest) ([]Application, *http.Response, error)

Execute executes the request

@return []Application

type AssignmentAPIService ¶ added in v1.10.3

type AssignmentAPIService service

AssignmentAPIService AssignmentAPI service

func (*AssignmentAPIService) CreateRoleAssignment ¶ added in v1.10.3

CreateRoleAssignment Create a assignment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateRoleAssignmentRequest

func (*AssignmentAPIService) CreateRoleAssignmentExecute ¶ added in v1.10.3

func (a *AssignmentAPIService) CreateRoleAssignmentExecute(r ApiCreateRoleAssignmentRequest) (*RoleAssignment, *http.Response, error)

Execute executes the request

@return RoleAssignment

func (*AssignmentAPIService) DeleteRoleAssignmentById ¶ added in v1.10.3

func (a *AssignmentAPIService) DeleteRoleAssignmentById(ctx context.Context, assignmentId string) ApiDeleteRoleAssignmentByIdRequest

DeleteRoleAssignmentById Delete an assignment by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param assignmentId Id of the assignment
@return ApiDeleteRoleAssignmentByIdRequest

func (*AssignmentAPIService) DeleteRoleAssignmentByIdExecute ¶ added in v1.10.3

func (a *AssignmentAPIService) DeleteRoleAssignmentByIdExecute(r ApiDeleteRoleAssignmentByIdRequest) (*http.Response, error)

Execute executes the request

func (*AssignmentAPIService) FindRoleAssignmentById ¶ added in v1.10.3

func (a *AssignmentAPIService) FindRoleAssignmentById(ctx context.Context, assignmentId string) ApiFindRoleAssignmentByIdRequest

FindRoleAssignmentById Find assignment by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param assignmentId Id of the assignment
@return ApiFindRoleAssignmentByIdRequest

func (*AssignmentAPIService) FindRoleAssignmentByIdExecute ¶ added in v1.10.3

func (a *AssignmentAPIService) FindRoleAssignmentByIdExecute(r ApiFindRoleAssignmentByIdRequest) (*RoleAssignment, *http.Response, error)

Execute executes the request

@return RoleAssignment

func (*AssignmentAPIService) FindRoleAssignments ¶ added in v1.10.3

FindRoleAssignments Retrieve all assignments for a resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindRoleAssignmentsRequest

func (*AssignmentAPIService) FindRoleAssignmentsExecute ¶ added in v1.10.3

Execute executes the request

@return []RoleAndPrincipalAndAssignment

type AuditLog ¶

type AuditLog struct {
	Type     *string    `json:"type,omitempty"`
	Ip       *string    `json:"ip,omitempty"`
	Location *Location  `json:"location,omitempty"`
	User     *User      `json:"user,omitempty"`
	Created  *time.Time `json:"created,omitempty"`
}

AuditLog struct for AuditLog

func NewAuditLog ¶

func NewAuditLog() *AuditLog

NewAuditLog instantiates a new AuditLog 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 NewAuditLogWithDefaults ¶

func NewAuditLogWithDefaults() *AuditLog

NewAuditLogWithDefaults instantiates a new AuditLog 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 (*AuditLog) GetCreated ¶

func (o *AuditLog) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*AuditLog) GetCreatedOk ¶

func (o *AuditLog) GetCreatedOk() (*time.Time, bool)

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

func (*AuditLog) GetIp ¶

func (o *AuditLog) GetIp() string

GetIp returns the Ip field value if set, zero value otherwise.

func (*AuditLog) GetIpOk ¶

func (o *AuditLog) GetIpOk() (*string, bool)

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

func (*AuditLog) GetLocation ¶

func (o *AuditLog) GetLocation() Location

GetLocation returns the Location field value if set, zero value otherwise.

func (*AuditLog) GetLocationOk ¶

func (o *AuditLog) GetLocationOk() (*Location, bool)

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

func (*AuditLog) GetType ¶

func (o *AuditLog) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AuditLog) GetTypeOk ¶

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

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

func (*AuditLog) GetUser ¶ added in v1.10.3

func (o *AuditLog) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*AuditLog) GetUserOk ¶ added in v1.10.3

func (o *AuditLog) GetUserOk() (*User, bool)

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

func (*AuditLog) HasCreated ¶

func (o *AuditLog) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*AuditLog) HasIp ¶

func (o *AuditLog) HasIp() bool

HasIp returns a boolean if a field has been set.

func (*AuditLog) HasLocation ¶

func (o *AuditLog) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*AuditLog) HasType ¶

func (o *AuditLog) HasType() bool

HasType returns a boolean if a field has been set.

func (*AuditLog) HasUser ¶ added in v1.10.3

func (o *AuditLog) HasUser() bool

HasUser returns a boolean if a field has been set.

func (AuditLog) MarshalJSON ¶

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

func (*AuditLog) SetCreated ¶

func (o *AuditLog) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*AuditLog) SetIp ¶

func (o *AuditLog) SetIp(v string)

SetIp gets a reference to the given string and assigns it to the Ip field.

func (*AuditLog) SetLocation ¶

func (o *AuditLog) SetLocation(v Location)

SetLocation gets a reference to the given Location and assigns it to the Location field.

func (*AuditLog) SetType ¶

func (o *AuditLog) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*AuditLog) SetUser ¶ added in v1.10.3

func (o *AuditLog) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

func (AuditLog) ToMap ¶ added in v1.10.3

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

type AzureConnector ¶ added in v1.10.3

type AzureConnector struct {
	// Connect to an Azure Blob Storage.
	Type    *string               `json:"type,omitempty"`
	Options AzureConnectorOptions `json:"options"`
}

AzureConnector Connect to an Azure Blob Storage. Attributes ---------- type : ConnectorType Azure Blob Storage connector type. options : SQLConnectorOptions Options to connect to an Azure Blob Storage.

func NewAzureConnector ¶ added in v1.10.3

func NewAzureConnector(options AzureConnectorOptions) *AzureConnector

NewAzureConnector instantiates a new AzureConnector 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 NewAzureConnectorWithDefaults ¶ added in v1.10.3

func NewAzureConnectorWithDefaults() *AzureConnector

NewAzureConnectorWithDefaults instantiates a new AzureConnector 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 (*AzureConnector) GetOptions ¶ added in v1.10.3

func (o *AzureConnector) GetOptions() AzureConnectorOptions

GetOptions returns the Options field value

func (*AzureConnector) GetOptionsOk ¶ added in v1.10.3

func (o *AzureConnector) GetOptionsOk() (*AzureConnectorOptions, bool)

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

func (*AzureConnector) GetType ¶ added in v1.10.3

func (o *AzureConnector) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AzureConnector) GetTypeOk ¶ added in v1.10.3

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

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

func (*AzureConnector) HasType ¶ added in v1.10.3

func (o *AzureConnector) HasType() bool

HasType returns a boolean if a field has been set.

func (AzureConnector) MarshalJSON ¶ added in v1.10.3

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

func (*AzureConnector) SetOptions ¶ added in v1.10.3

func (o *AzureConnector) SetOptions(v AzureConnectorOptions)

SetOptions sets field value

func (*AzureConnector) SetType ¶ added in v1.10.3

func (o *AzureConnector) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (AzureConnector) ToMap ¶ added in v1.10.3

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

func (*AzureConnector) UnmarshalJSON ¶ added in v1.10.3

func (o *AzureConnector) UnmarshalJSON(bytes []byte) (err error)

type AzureConnectorOptions ¶ added in v1.10.3

type AzureConnectorOptions struct {
	// Name of the Azure Blob Storage.
	StorageName string `json:"storage_name"`
	// SAS token for Azure Blob Storage connection.
	SasToken string `json:"sas_token"`
	// Name of the Azure Blob Storage container.
	Container string `json:"container"`
}

AzureConnectorOptions Options to connect to an Azure bucket. Attributes ---------- storage_name : str Name of the Azure storage. sas_token : str SAS token to connect to Azure. container : str Name of the container.

func NewAzureConnectorOptions ¶ added in v1.10.3

func NewAzureConnectorOptions(storageName string, sasToken string, container string) *AzureConnectorOptions

NewAzureConnectorOptions instantiates a new AzureConnectorOptions 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 NewAzureConnectorOptionsWithDefaults ¶ added in v1.10.3

func NewAzureConnectorOptionsWithDefaults() *AzureConnectorOptions

NewAzureConnectorOptionsWithDefaults instantiates a new AzureConnectorOptions 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 (*AzureConnectorOptions) GetContainer ¶ added in v1.10.3

func (o *AzureConnectorOptions) GetContainer() string

GetContainer returns the Container field value

func (*AzureConnectorOptions) GetContainerOk ¶ added in v1.10.3

func (o *AzureConnectorOptions) GetContainerOk() (*string, bool)

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

func (*AzureConnectorOptions) GetSasToken ¶ added in v1.10.3

func (o *AzureConnectorOptions) GetSasToken() string

GetSasToken returns the SasToken field value

func (*AzureConnectorOptions) GetSasTokenOk ¶ added in v1.10.3

func (o *AzureConnectorOptions) GetSasTokenOk() (*string, bool)

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

func (*AzureConnectorOptions) GetStorageName ¶ added in v1.10.3

func (o *AzureConnectorOptions) GetStorageName() string

GetStorageName returns the StorageName field value

func (*AzureConnectorOptions) GetStorageNameOk ¶ added in v1.10.3

func (o *AzureConnectorOptions) GetStorageNameOk() (*string, bool)

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

func (AzureConnectorOptions) MarshalJSON ¶ added in v1.10.3

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

func (*AzureConnectorOptions) SetContainer ¶ added in v1.10.3

func (o *AzureConnectorOptions) SetContainer(v string)

SetContainer sets field value

func (*AzureConnectorOptions) SetSasToken ¶ added in v1.10.3

func (o *AzureConnectorOptions) SetSasToken(v string)

SetSasToken sets field value

func (*AzureConnectorOptions) SetStorageName ¶ added in v1.10.3

func (o *AzureConnectorOptions) SetStorageName(v string)

SetStorageName sets field value

func (AzureConnectorOptions) ToMap ¶ added in v1.10.3

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

func (*AzureConnectorOptions) UnmarshalJSON ¶ added in v1.10.3

func (o *AzureConnectorOptions) UnmarshalJSON(bytes []byte) (err error)

type AzureLogAnalyticsNotification ¶

type AzureLogAnalyticsNotification struct {
	Notification
	Type *string `json:"type,omitempty"`
	Key  *string `json:"key,omitempty"`
}

AzureLogAnalyticsNotification struct for AzureLogAnalyticsNotification

func NewAzureLogAnalyticsNotification ¶

func NewAzureLogAnalyticsNotification() *AzureLogAnalyticsNotification

NewAzureLogAnalyticsNotification instantiates a new AzureLogAnalyticsNotification 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 NewAzureLogAnalyticsNotificationWithDefaults ¶

func NewAzureLogAnalyticsNotificationWithDefaults() *AzureLogAnalyticsNotification

NewAzureLogAnalyticsNotificationWithDefaults instantiates a new AzureLogAnalyticsNotification 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 (*AzureLogAnalyticsNotification) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*AzureLogAnalyticsNotification) GetKeyOk ¶

func (o *AzureLogAnalyticsNotification) GetKeyOk() (*string, bool)

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

func (*AzureLogAnalyticsNotification) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*AzureLogAnalyticsNotification) GetTypeOk ¶

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

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

func (*AzureLogAnalyticsNotification) HasKey ¶

func (o *AzureLogAnalyticsNotification) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*AzureLogAnalyticsNotification) HasType ¶

func (o *AzureLogAnalyticsNotification) HasType() bool

HasType returns a boolean if a field has been set.

func (AzureLogAnalyticsNotification) MarshalJSON ¶

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

func (*AzureLogAnalyticsNotification) SetKey ¶

SetKey gets a reference to the given string and assigns it to the Key field.

func (*AzureLogAnalyticsNotification) SetType ¶

func (o *AzureLogAnalyticsNotification) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (AzureLogAnalyticsNotification) ToMap ¶ added in v1.10.3

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

type AzureLogAnalyticsNotificationAllOf ¶

type AzureLogAnalyticsNotificationAllOf struct {
	Type *string `json:"type,omitempty"`
	Key  *string `json:"key,omitempty"`
}

AzureLogAnalyticsNotificationAllOf struct for AzureLogAnalyticsNotificationAllOf

func NewAzureLogAnalyticsNotificationAllOf ¶

func NewAzureLogAnalyticsNotificationAllOf() *AzureLogAnalyticsNotificationAllOf

NewAzureLogAnalyticsNotificationAllOf instantiates a new AzureLogAnalyticsNotificationAllOf 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 NewAzureLogAnalyticsNotificationAllOfWithDefaults ¶

func NewAzureLogAnalyticsNotificationAllOfWithDefaults() *AzureLogAnalyticsNotificationAllOf

NewAzureLogAnalyticsNotificationAllOfWithDefaults instantiates a new AzureLogAnalyticsNotificationAllOf 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 (*AzureLogAnalyticsNotificationAllOf) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*AzureLogAnalyticsNotificationAllOf) GetKeyOk ¶

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

func (*AzureLogAnalyticsNotificationAllOf) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*AzureLogAnalyticsNotificationAllOf) GetTypeOk ¶

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

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

func (*AzureLogAnalyticsNotificationAllOf) HasKey ¶

HasKey returns a boolean if a field has been set.

func (*AzureLogAnalyticsNotificationAllOf) HasType ¶

HasType returns a boolean if a field has been set.

func (AzureLogAnalyticsNotificationAllOf) MarshalJSON ¶

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

func (*AzureLogAnalyticsNotificationAllOf) SetKey ¶

SetKey gets a reference to the given string and assigns it to the Key field.

func (*AzureLogAnalyticsNotificationAllOf) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

type AzureUri ¶ added in v1.10.3

type AzureUri struct {
	Uri
	Type           *string `json:"type,omitempty"`
	ClientId       *string `json:"client_id,omitempty"`
	ClientSecret   *string `json:"client_secret,omitempty"`
	SubscriptionId *string `json:"subscription_id,omitempty"`
	TenantId       *string `json:"tenant_id,omitempty"`
}

AzureUri struct for AzureUri

func NewAzureUri ¶ added in v1.10.3

func NewAzureUri() *AzureUri

NewAzureUri instantiates a new AzureUri 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 NewAzureUriWithDefaults ¶ added in v1.10.3

func NewAzureUriWithDefaults() *AzureUri

NewAzureUriWithDefaults instantiates a new AzureUri 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 (*AzureUri) GetClientId ¶ added in v1.10.3

func (o *AzureUri) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*AzureUri) GetClientIdOk ¶ added in v1.10.3

func (o *AzureUri) GetClientIdOk() (*string, bool)

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

func (*AzureUri) GetClientSecret ¶ added in v1.10.3

func (o *AzureUri) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*AzureUri) GetClientSecretOk ¶ added in v1.10.3

func (o *AzureUri) GetClientSecretOk() (*string, bool)

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

func (*AzureUri) GetSubscriptionId ¶ added in v1.10.3

func (o *AzureUri) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*AzureUri) GetSubscriptionIdOk ¶ added in v1.10.3

func (o *AzureUri) GetSubscriptionIdOk() (*string, bool)

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

func (*AzureUri) GetTenantId ¶ added in v1.10.3

func (o *AzureUri) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*AzureUri) GetTenantIdOk ¶ added in v1.10.3

func (o *AzureUri) GetTenantIdOk() (*string, bool)

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

func (*AzureUri) GetType ¶ added in v1.10.3

func (o *AzureUri) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AzureUri) GetTypeOk ¶ added in v1.10.3

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

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

func (*AzureUri) HasClientId ¶ added in v1.10.3

func (o *AzureUri) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*AzureUri) HasClientSecret ¶ added in v1.10.3

func (o *AzureUri) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*AzureUri) HasSubscriptionId ¶ added in v1.10.3

func (o *AzureUri) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*AzureUri) HasTenantId ¶ added in v1.10.3

func (o *AzureUri) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*AzureUri) HasType ¶ added in v1.10.3

func (o *AzureUri) HasType() bool

HasType returns a boolean if a field has been set.

func (AzureUri) MarshalJSON ¶ added in v1.10.3

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

func (*AzureUri) SetClientId ¶ added in v1.10.3

func (o *AzureUri) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*AzureUri) SetClientSecret ¶ added in v1.10.3

func (o *AzureUri) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*AzureUri) SetSubscriptionId ¶ added in v1.10.3

func (o *AzureUri) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*AzureUri) SetTenantId ¶ added in v1.10.3

func (o *AzureUri) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*AzureUri) SetType ¶ added in v1.10.3

func (o *AzureUri) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (AzureUri) ToMap ¶ added in v1.10.3

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

type AzureUriAllOf ¶ added in v1.10.3

type AzureUriAllOf struct {
	Type           *string `json:"type,omitempty"`
	ClientId       *string `json:"client_id,omitempty"`
	ClientSecret   *string `json:"client_secret,omitempty"`
	SubscriptionId *string `json:"subscription_id,omitempty"`
	TenantId       *string `json:"tenant_id,omitempty"`
}

AzureUriAllOf struct for AzureUriAllOf

func NewAzureUriAllOf ¶ added in v1.10.3

func NewAzureUriAllOf() *AzureUriAllOf

NewAzureUriAllOf instantiates a new AzureUriAllOf 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 NewAzureUriAllOfWithDefaults ¶ added in v1.10.3

func NewAzureUriAllOfWithDefaults() *AzureUriAllOf

NewAzureUriAllOfWithDefaults instantiates a new AzureUriAllOf 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 (*AzureUriAllOf) GetClientId ¶ added in v1.10.3

func (o *AzureUriAllOf) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*AzureUriAllOf) GetClientIdOk ¶ added in v1.10.3

func (o *AzureUriAllOf) GetClientIdOk() (*string, bool)

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

func (*AzureUriAllOf) GetClientSecret ¶ added in v1.10.3

func (o *AzureUriAllOf) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*AzureUriAllOf) GetClientSecretOk ¶ added in v1.10.3

func (o *AzureUriAllOf) GetClientSecretOk() (*string, bool)

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

func (*AzureUriAllOf) GetSubscriptionId ¶ added in v1.10.3

func (o *AzureUriAllOf) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*AzureUriAllOf) GetSubscriptionIdOk ¶ added in v1.10.3

func (o *AzureUriAllOf) GetSubscriptionIdOk() (*string, bool)

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

func (*AzureUriAllOf) GetTenantId ¶ added in v1.10.3

func (o *AzureUriAllOf) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*AzureUriAllOf) GetTenantIdOk ¶ added in v1.10.3

func (o *AzureUriAllOf) GetTenantIdOk() (*string, bool)

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

func (*AzureUriAllOf) GetType ¶ added in v1.10.3

func (o *AzureUriAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*AzureUriAllOf) GetTypeOk ¶ added in v1.10.3

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

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

func (*AzureUriAllOf) HasClientId ¶ added in v1.10.3

func (o *AzureUriAllOf) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*AzureUriAllOf) HasClientSecret ¶ added in v1.10.3

func (o *AzureUriAllOf) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*AzureUriAllOf) HasSubscriptionId ¶ added in v1.10.3

func (o *AzureUriAllOf) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*AzureUriAllOf) HasTenantId ¶ added in v1.10.3

func (o *AzureUriAllOf) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*AzureUriAllOf) HasType ¶ added in v1.10.3

func (o *AzureUriAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (AzureUriAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*AzureUriAllOf) SetClientId ¶ added in v1.10.3

func (o *AzureUriAllOf) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*AzureUriAllOf) SetClientSecret ¶ added in v1.10.3

func (o *AzureUriAllOf) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*AzureUriAllOf) SetSubscriptionId ¶ added in v1.10.3

func (o *AzureUriAllOf) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*AzureUriAllOf) SetTenantId ¶ added in v1.10.3

func (o *AzureUriAllOf) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*AzureUriAllOf) SetType ¶ added in v1.10.3

func (o *AzureUriAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type BashOptions ¶

type BashOptions struct {
	Options
	Type  *string  `json:"type,omitempty"`
	Lines []string `json:"lines,omitempty"`
}

BashOptions struct for BashOptions

func NewBashOptions ¶

func NewBashOptions() *BashOptions

NewBashOptions instantiates a new BashOptions 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 NewBashOptionsWithDefaults ¶

func NewBashOptionsWithDefaults() *BashOptions

NewBashOptionsWithDefaults instantiates a new BashOptions 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 (*BashOptions) GetLines ¶

func (o *BashOptions) GetLines() []string

GetLines returns the Lines field value if set, zero value otherwise.

func (*BashOptions) GetLinesOk ¶

func (o *BashOptions) GetLinesOk() ([]string, bool)

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

func (*BashOptions) GetType ¶

func (o *BashOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*BashOptions) GetTypeOk ¶

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

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

func (*BashOptions) HasLines ¶

func (o *BashOptions) HasLines() bool

HasLines returns a boolean if a field has been set.

func (*BashOptions) HasType ¶

func (o *BashOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (BashOptions) MarshalJSON ¶

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

func (*BashOptions) SetLines ¶

func (o *BashOptions) SetLines(v []string)

SetLines gets a reference to the given []string and assigns it to the Lines field.

func (*BashOptions) SetType ¶

func (o *BashOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (BashOptions) ToMap ¶ added in v1.10.3

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

type BashOptionsAllOf ¶

type BashOptionsAllOf struct {
	Type  *string   `json:"type,omitempty"`
	Lines *[]string `json:"lines,omitempty"`
}

BashOptionsAllOf struct for BashOptionsAllOf

func NewBashOptionsAllOf ¶

func NewBashOptionsAllOf() *BashOptionsAllOf

NewBashOptionsAllOf instantiates a new BashOptionsAllOf 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 NewBashOptionsAllOfWithDefaults ¶

func NewBashOptionsAllOfWithDefaults() *BashOptionsAllOf

NewBashOptionsAllOfWithDefaults instantiates a new BashOptionsAllOf 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 (*BashOptionsAllOf) GetLines ¶

func (o *BashOptionsAllOf) GetLines() []string

GetLines returns the Lines field value if set, zero value otherwise.

func (*BashOptionsAllOf) GetLinesOk ¶

func (o *BashOptionsAllOf) GetLinesOk() (*[]string, bool)

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

func (*BashOptionsAllOf) GetType ¶

func (o *BashOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*BashOptionsAllOf) GetTypeOk ¶

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

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

func (*BashOptionsAllOf) HasLines ¶

func (o *BashOptionsAllOf) HasLines() bool

HasLines returns a boolean if a field has been set.

func (*BashOptionsAllOf) HasType ¶

func (o *BashOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (BashOptionsAllOf) MarshalJSON ¶

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

func (*BashOptionsAllOf) SetLines ¶

func (o *BashOptionsAllOf) SetLines(v []string)

SetLines gets a reference to the given []string and assigns it to the Lines field.

func (*BashOptionsAllOf) SetType ¶

func (o *BashOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

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 BetweenFilter ¶ added in v1.10.3

type BetweenFilter struct {
	// Left operator for filter.
	Left  string   `json:"left"`
	Right []string `json:"right"`
	// Operator for BETWEEN filter (range).
	Type *string `json:"type,omitempty"`
}

BetweenFilter Filter values that are in a range/between two values. Attributes ---------- type : RelationalOperatorType Type of the filter. right : list Values below and above. Methods ------- get_value() Get the value of the filter operator

func NewBetweenFilter ¶ added in v1.10.3

func NewBetweenFilter(left string, right []string) *BetweenFilter

NewBetweenFilter instantiates a new BetweenFilter 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 NewBetweenFilterWithDefaults ¶ added in v1.10.3

func NewBetweenFilterWithDefaults() *BetweenFilter

NewBetweenFilterWithDefaults instantiates a new BetweenFilter 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 (*BetweenFilter) GetLeft ¶ added in v1.10.3

func (o *BetweenFilter) GetLeft() string

GetLeft returns the Left field value

func (*BetweenFilter) GetLeftOk ¶ added in v1.10.3

func (o *BetweenFilter) GetLeftOk() (*string, bool)

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

func (*BetweenFilter) GetRight ¶ added in v1.10.3

func (o *BetweenFilter) GetRight() []string

GetRight returns the Right field value

func (*BetweenFilter) GetRightOk ¶ added in v1.10.3

func (o *BetweenFilter) GetRightOk() ([]string, bool)

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

func (*BetweenFilter) GetType ¶ added in v1.10.3

func (o *BetweenFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*BetweenFilter) GetTypeOk ¶ added in v1.10.3

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

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

func (*BetweenFilter) HasType ¶ added in v1.10.3

func (o *BetweenFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (BetweenFilter) MarshalJSON ¶ added in v1.10.3

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

func (*BetweenFilter) SetLeft ¶ added in v1.10.3

func (o *BetweenFilter) SetLeft(v string)

SetLeft sets field value

func (*BetweenFilter) SetRight ¶ added in v1.10.3

func (o *BetweenFilter) SetRight(v []string)

SetRight sets field value

func (*BetweenFilter) SetType ¶ added in v1.10.3

func (o *BetweenFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (BetweenFilter) ToMap ¶ added in v1.10.3

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

func (*BetweenFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *BetweenFilter) UnmarshalJSON(bytes []byte) (err error)

type BlobMetadata ¶

type BlobMetadata struct {
	Key          *string    `json:"key,omitempty"`
	Size         *string    `json:"size,omitempty"`
	Filename     *string    `json:"filename,omitempty"`
	LastModified *time.Time `json:"last_modified,omitempty"`
	ContentType  *string    `json:"content_type,omitempty"`
}

BlobMetadata struct for BlobMetadata

func NewBlobMetadata ¶

func NewBlobMetadata() *BlobMetadata

NewBlobMetadata instantiates a new BlobMetadata 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 NewBlobMetadataWithDefaults ¶

func NewBlobMetadataWithDefaults() *BlobMetadata

NewBlobMetadataWithDefaults instantiates a new BlobMetadata 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 (*BlobMetadata) GetContentType ¶

func (o *BlobMetadata) GetContentType() string

GetContentType returns the ContentType field value if set, zero value otherwise.

func (*BlobMetadata) GetContentTypeOk ¶

func (o *BlobMetadata) GetContentTypeOk() (*string, bool)

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

func (*BlobMetadata) GetFilename ¶

func (o *BlobMetadata) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise.

func (*BlobMetadata) GetFilenameOk ¶

func (o *BlobMetadata) GetFilenameOk() (*string, bool)

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

func (*BlobMetadata) GetKey ¶

func (o *BlobMetadata) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*BlobMetadata) GetKeyOk ¶

func (o *BlobMetadata) GetKeyOk() (*string, bool)

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

func (*BlobMetadata) GetLastModified ¶

func (o *BlobMetadata) GetLastModified() time.Time

GetLastModified returns the LastModified field value if set, zero value otherwise.

func (*BlobMetadata) GetLastModifiedOk ¶

func (o *BlobMetadata) GetLastModifiedOk() (*time.Time, bool)

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

func (*BlobMetadata) GetSize ¶

func (o *BlobMetadata) GetSize() string

GetSize returns the Size field value if set, zero value otherwise.

func (*BlobMetadata) GetSizeOk ¶

func (o *BlobMetadata) GetSizeOk() (*string, bool)

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

func (*BlobMetadata) HasContentType ¶

func (o *BlobMetadata) HasContentType() bool

HasContentType returns a boolean if a field has been set.

func (*BlobMetadata) HasFilename ¶

func (o *BlobMetadata) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (*BlobMetadata) HasKey ¶

func (o *BlobMetadata) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*BlobMetadata) HasLastModified ¶

func (o *BlobMetadata) HasLastModified() bool

HasLastModified returns a boolean if a field has been set.

func (*BlobMetadata) HasSize ¶

func (o *BlobMetadata) HasSize() bool

HasSize returns a boolean if a field has been set.

func (BlobMetadata) MarshalJSON ¶

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

func (*BlobMetadata) SetContentType ¶

func (o *BlobMetadata) SetContentType(v string)

SetContentType gets a reference to the given string and assigns it to the ContentType field.

func (*BlobMetadata) SetFilename ¶

func (o *BlobMetadata) SetFilename(v string)

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (*BlobMetadata) SetKey ¶

func (o *BlobMetadata) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*BlobMetadata) SetLastModified ¶

func (o *BlobMetadata) SetLastModified(v time.Time)

SetLastModified gets a reference to the given time.Time and assigns it to the LastModified field.

func (*BlobMetadata) SetSize ¶

func (o *BlobMetadata) SetSize(v string)

SetSize gets a reference to the given string and assigns it to the Size field.

func (BlobMetadata) ToMap ¶ added in v1.10.3

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

type BodyPostTemplateTemplatesNameVersionsVersionPost ¶ added in v1.10.3

type BodyPostTemplateTemplatesNameVersionsVersionPost struct {
	Template string   `json:"template"`
	Metadata Metadata `json:"metadata"`
}

BodyPostTemplateTemplatesNameVersionsVersionPost struct for BodyPostTemplateTemplatesNameVersionsVersionPost

func NewBodyPostTemplateTemplatesNameVersionsVersionPost ¶ added in v1.10.3

func NewBodyPostTemplateTemplatesNameVersionsVersionPost(template string, metadata Metadata) *BodyPostTemplateTemplatesNameVersionsVersionPost

NewBodyPostTemplateTemplatesNameVersionsVersionPost instantiates a new BodyPostTemplateTemplatesNameVersionsVersionPost 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 NewBodyPostTemplateTemplatesNameVersionsVersionPostWithDefaults ¶ added in v1.10.3

func NewBodyPostTemplateTemplatesNameVersionsVersionPostWithDefaults() *BodyPostTemplateTemplatesNameVersionsVersionPost

NewBodyPostTemplateTemplatesNameVersionsVersionPostWithDefaults instantiates a new BodyPostTemplateTemplatesNameVersionsVersionPost 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 (*BodyPostTemplateTemplatesNameVersionsVersionPost) GetMetadata ¶ added in v1.10.3

GetMetadata returns the Metadata field value

func (*BodyPostTemplateTemplatesNameVersionsVersionPost) GetMetadataOk ¶ added in v1.10.3

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

func (*BodyPostTemplateTemplatesNameVersionsVersionPost) GetTemplate ¶ added in v1.10.3

GetTemplate returns the Template field value

func (*BodyPostTemplateTemplatesNameVersionsVersionPost) GetTemplateOk ¶ added in v1.10.3

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

func (BodyPostTemplateTemplatesNameVersionsVersionPost) MarshalJSON ¶ added in v1.10.3

func (*BodyPostTemplateTemplatesNameVersionsVersionPost) SetMetadata ¶ added in v1.10.3

SetMetadata sets field value

func (*BodyPostTemplateTemplatesNameVersionsVersionPost) SetTemplate ¶ added in v1.10.3

SetTemplate sets field value

func (BodyPostTemplateTemplatesNameVersionsVersionPost) ToMap ¶ added in v1.10.3

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

func (*BodyPostTemplateTemplatesNameVersionsVersionPost) UnmarshalJSON ¶ added in v1.10.3

func (o *BodyPostTemplateTemplatesNameVersionsVersionPost) UnmarshalJSON(bytes []byte) (err error)

type BodyPutTemplateTemplatesNameVersionsVersionPut ¶ added in v1.10.3

type BodyPutTemplateTemplatesNameVersionsVersionPut struct {
	Template *string   `json:"template,omitempty"`
	Metadata *Metadata `json:"metadata,omitempty"`
}

BodyPutTemplateTemplatesNameVersionsVersionPut struct for BodyPutTemplateTemplatesNameVersionsVersionPut

func NewBodyPutTemplateTemplatesNameVersionsVersionPut ¶ added in v1.10.3

func NewBodyPutTemplateTemplatesNameVersionsVersionPut() *BodyPutTemplateTemplatesNameVersionsVersionPut

NewBodyPutTemplateTemplatesNameVersionsVersionPut instantiates a new BodyPutTemplateTemplatesNameVersionsVersionPut 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 NewBodyPutTemplateTemplatesNameVersionsVersionPutWithDefaults ¶ added in v1.10.3

func NewBodyPutTemplateTemplatesNameVersionsVersionPutWithDefaults() *BodyPutTemplateTemplatesNameVersionsVersionPut

NewBodyPutTemplateTemplatesNameVersionsVersionPutWithDefaults instantiates a new BodyPutTemplateTemplatesNameVersionsVersionPut 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 (*BodyPutTemplateTemplatesNameVersionsVersionPut) GetMetadata ¶ added in v1.10.3

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

func (*BodyPutTemplateTemplatesNameVersionsVersionPut) GetMetadataOk ¶ added in v1.10.3

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 (*BodyPutTemplateTemplatesNameVersionsVersionPut) GetTemplate ¶ added in v1.10.3

GetTemplate returns the Template field value if set, zero value otherwise.

func (*BodyPutTemplateTemplatesNameVersionsVersionPut) GetTemplateOk ¶ added in v1.10.3

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

func (*BodyPutTemplateTemplatesNameVersionsVersionPut) HasMetadata ¶ added in v1.10.3

HasMetadata returns a boolean if a field has been set.

func (*BodyPutTemplateTemplatesNameVersionsVersionPut) HasTemplate ¶ added in v1.10.3

HasTemplate returns a boolean if a field has been set.

func (BodyPutTemplateTemplatesNameVersionsVersionPut) MarshalJSON ¶ added in v1.10.3

func (*BodyPutTemplateTemplatesNameVersionsVersionPut) SetMetadata ¶ added in v1.10.3

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

func (*BodyPutTemplateTemplatesNameVersionsVersionPut) SetTemplate ¶ added in v1.10.3

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (BodyPutTemplateTemplatesNameVersionsVersionPut) ToMap ¶ added in v1.10.3

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

type Bridge ¶

type Bridge struct {
	Id            *string                           `json:"id,omitempty"`
	Type          *string                           `json:"type,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Configuration *map[string]string                `json:"configuration,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
	Locked        *bool                             `json:"locked,omitempty"`
}

Bridge struct for Bridge

func NewBridge ¶

func NewBridge() *Bridge

NewBridge instantiates a new Bridge 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 NewBridgeWithDefaults ¶

func NewBridgeWithDefaults() *Bridge

NewBridgeWithDefaults instantiates a new Bridge 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 (*Bridge) GetConfiguration ¶

func (o *Bridge) GetConfiguration() map[string]string

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*Bridge) GetConfigurationOk ¶

func (o *Bridge) GetConfigurationOk() (*map[string]string, bool)

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

func (*Bridge) GetCreated ¶

func (o *Bridge) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Bridge) GetCreatedOk ¶

func (o *Bridge) GetCreatedOk() (*time.Time, bool)

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

func (*Bridge) GetDescription ¶

func (o *Bridge) GetDescription() string

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

func (*Bridge) GetDescriptionOk ¶

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

func (o *Bridge) GetId() string

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

func (*Bridge) GetIdOk ¶

func (o *Bridge) 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 (*Bridge) GetLocked ¶

func (o *Bridge) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*Bridge) GetLockedOk ¶

func (o *Bridge) GetLockedOk() (*bool, bool)

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

func (*Bridge) GetMetadata ¶

func (o *Bridge) GetMetadata() map[string]map[string]interface{}

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

func (*Bridge) GetMetadataOk ¶

func (o *Bridge) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Bridge) GetType ¶

func (o *Bridge) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Bridge) GetTypeOk ¶

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

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

func (*Bridge) GetUpdated ¶

func (o *Bridge) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Bridge) GetUpdatedOk ¶

func (o *Bridge) GetUpdatedOk() (*time.Time, bool)

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

func (*Bridge) HasConfiguration ¶

func (o *Bridge) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*Bridge) HasCreated ¶

func (o *Bridge) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Bridge) HasDescription ¶

func (o *Bridge) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Bridge) HasId ¶

func (o *Bridge) HasId() bool

HasId returns a boolean if a field has been set.

func (*Bridge) HasLocked ¶

func (o *Bridge) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*Bridge) HasMetadata ¶

func (o *Bridge) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Bridge) HasType ¶

func (o *Bridge) HasType() bool

HasType returns a boolean if a field has been set.

func (*Bridge) HasUpdated ¶

func (o *Bridge) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Bridge) MarshalJSON ¶

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

func (*Bridge) SetConfiguration ¶

func (o *Bridge) SetConfiguration(v map[string]string)

SetConfiguration gets a reference to the given map[string]string and assigns it to the Configuration field.

func (*Bridge) SetCreated ¶

func (o *Bridge) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Bridge) SetDescription ¶

func (o *Bridge) SetDescription(v string)

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

func (*Bridge) SetId ¶

func (o *Bridge) SetId(v string)

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

func (*Bridge) SetLocked ¶

func (o *Bridge) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*Bridge) SetMetadata ¶

func (o *Bridge) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Bridge) SetType ¶

func (o *Bridge) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Bridge) SetUpdated ¶

func (o *Bridge) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Bridge) ToMap ¶ added in v1.10.3

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

type BridgeAPIService ¶ added in v1.10.3

type BridgeAPIService service

BridgeAPIService BridgeAPI service

func (*BridgeAPIService) CreateBridge ¶ added in v1.10.3

CreateBridge Create bridge

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateBridgeRequest

func (*BridgeAPIService) CreateBridgeExecute ¶ added in v1.10.3

func (a *BridgeAPIService) CreateBridgeExecute(r ApiCreateBridgeRequest) (*Bridge, *http.Response, error)

Execute executes the request

@return Bridge

func (*BridgeAPIService) DeleteBridgeById ¶ added in v1.10.3

func (a *BridgeAPIService) DeleteBridgeById(ctx context.Context, bridgeId string) ApiDeleteBridgeByIdRequest

DeleteBridgeById Delete a bridge by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bridgeId Id of the bridge
@return ApiDeleteBridgeByIdRequest

func (*BridgeAPIService) DeleteBridgeByIdExecute ¶ added in v1.10.3

func (a *BridgeAPIService) DeleteBridgeByIdExecute(r ApiDeleteBridgeByIdRequest) (*http.Response, error)

Execute executes the request

func (*BridgeAPIService) FindBridgeById ¶ added in v1.10.3

func (a *BridgeAPIService) FindBridgeById(ctx context.Context, bridgeId string) ApiFindBridgeByIdRequest

FindBridgeById Find bridge by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bridgeId Id of the bridge
@return ApiFindBridgeByIdRequest

func (*BridgeAPIService) FindBridgeByIdExecute ¶ added in v1.10.3

func (a *BridgeAPIService) FindBridgeByIdExecute(r ApiFindBridgeByIdRequest) (*Bridge, *http.Response, error)

Execute executes the request

@return Bridge

func (*BridgeAPIService) FindBridges ¶ added in v1.10.3

FindBridges Retrieve all bridges

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindBridgesRequest

func (*BridgeAPIService) FindBridgesExecute ¶ added in v1.10.3

func (a *BridgeAPIService) FindBridgesExecute(r ApiFindBridgesRequest) (*BridgePage, *http.Response, error)

Execute executes the request

@return BridgePage

type BridgePage ¶

type BridgePage struct {
	Number  *int32   `json:"number,omitempty"`
	Size    *int32   `json:"size,omitempty"`
	Content []Bridge `json:"content,omitempty"`
}

BridgePage typed Page

func NewBridgePage ¶

func NewBridgePage() *BridgePage

NewBridgePage instantiates a new BridgePage 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 NewBridgePageWithDefaults ¶

func NewBridgePageWithDefaults() *BridgePage

NewBridgePageWithDefaults instantiates a new BridgePage 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 (*BridgePage) GetContent ¶

func (o *BridgePage) GetContent() []Bridge

GetContent returns the Content field value if set, zero value otherwise.

func (*BridgePage) GetContentOk ¶

func (o *BridgePage) GetContentOk() ([]Bridge, bool)

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

func (*BridgePage) GetNumber ¶

func (o *BridgePage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*BridgePage) GetNumberOk ¶

func (o *BridgePage) GetNumberOk() (*int32, bool)

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

func (*BridgePage) GetSize ¶

func (o *BridgePage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*BridgePage) GetSizeOk ¶

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

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

func (*BridgePage) HasContent ¶

func (o *BridgePage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*BridgePage) HasNumber ¶

func (o *BridgePage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*BridgePage) HasSize ¶

func (o *BridgePage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (BridgePage) MarshalJSON ¶

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

func (*BridgePage) SetContent ¶

func (o *BridgePage) SetContent(v []Bridge)

SetContent gets a reference to the given []Bridge and assigns it to the Content field.

func (*BridgePage) SetNumber ¶

func (o *BridgePage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*BridgePage) SetSize ¶

func (o *BridgePage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (BridgePage) ToMap ¶ added in v1.10.3

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

type BridgePageAllOf ¶

type BridgePageAllOf struct {
	Content *[]Bridge `json:"content,omitempty"`
}

BridgePageAllOf struct for BridgePageAllOf

func NewBridgePageAllOf ¶

func NewBridgePageAllOf() *BridgePageAllOf

NewBridgePageAllOf instantiates a new BridgePageAllOf 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 NewBridgePageAllOfWithDefaults ¶

func NewBridgePageAllOfWithDefaults() *BridgePageAllOf

NewBridgePageAllOfWithDefaults instantiates a new BridgePageAllOf 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 (*BridgePageAllOf) GetContent ¶

func (o *BridgePageAllOf) GetContent() []Bridge

GetContent returns the Content field value if set, zero value otherwise.

func (*BridgePageAllOf) GetContentOk ¶

func (o *BridgePageAllOf) GetContentOk() (*[]Bridge, bool)

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

func (*BridgePageAllOf) HasContent ¶

func (o *BridgePageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (BridgePageAllOf) MarshalJSON ¶

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

func (*BridgePageAllOf) SetContent ¶

func (o *BridgePageAllOf) SetContent(v []Bridge)

SetContent gets a reference to the given []Bridge and assigns it to the Content field.

type Bucket ¶

type Bucket struct {
	Id          *string                           `json:"id,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Scope       *string                           `json:"scope,omitempty"`
	Locked      *bool                             `json:"locked,omitempty"`
	Uri         *Uri                              `json:"uri,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
	Labels      *map[string]string                `json:"labels,omitempty"`
}

Bucket struct for Bucket

func NewBucket ¶

func NewBucket() *Bucket

NewBucket instantiates a new Bucket 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 NewBucketWithDefaults ¶

func NewBucketWithDefaults() *Bucket

NewBucketWithDefaults instantiates a new Bucket 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 (*Bucket) GetCreated ¶

func (o *Bucket) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Bucket) GetCreatedOk ¶

func (o *Bucket) GetCreatedOk() (*time.Time, bool)

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

func (*Bucket) GetDescription ¶ added in v1.10.3

func (o *Bucket) GetDescription() string

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

func (*Bucket) GetDescriptionOk ¶ added in v1.10.3

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

func (o *Bucket) GetId() string

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

func (*Bucket) GetIdOk ¶

func (o *Bucket) 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 (*Bucket) GetLabels ¶ added in v1.10.3

func (o *Bucket) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Bucket) GetLabelsOk ¶ added in v1.10.3

func (o *Bucket) GetLabelsOk() (*map[string]string, bool)

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

func (*Bucket) GetLocked ¶

func (o *Bucket) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*Bucket) GetLockedOk ¶

func (o *Bucket) GetLockedOk() (*bool, bool)

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

func (*Bucket) GetMetadata ¶ added in v1.10.3

func (o *Bucket) GetMetadata() map[string]map[string]interface{}

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

func (*Bucket) GetMetadataOk ¶ added in v1.10.3

func (o *Bucket) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Bucket) GetName ¶

func (o *Bucket) GetName() string

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

func (*Bucket) GetNameOk ¶

func (o *Bucket) 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 (*Bucket) GetScope ¶

func (o *Bucket) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*Bucket) GetScopeOk ¶

func (o *Bucket) GetScopeOk() (*string, bool)

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

func (*Bucket) GetUpdated ¶

func (o *Bucket) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Bucket) GetUpdatedOk ¶

func (o *Bucket) GetUpdatedOk() (*time.Time, bool)

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

func (*Bucket) GetUri ¶ added in v1.10.3

func (o *Bucket) GetUri() Uri

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

func (*Bucket) GetUriOk ¶ added in v1.10.3

func (o *Bucket) GetUriOk() (*Uri, 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 (*Bucket) HasCreated ¶

func (o *Bucket) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Bucket) HasDescription ¶ added in v1.10.3

func (o *Bucket) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Bucket) HasId ¶

func (o *Bucket) HasId() bool

HasId returns a boolean if a field has been set.

func (*Bucket) HasLabels ¶ added in v1.10.3

func (o *Bucket) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Bucket) HasLocked ¶

func (o *Bucket) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*Bucket) HasMetadata ¶ added in v1.10.3

func (o *Bucket) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Bucket) HasName ¶

func (o *Bucket) HasName() bool

HasName returns a boolean if a field has been set.

func (*Bucket) HasScope ¶

func (o *Bucket) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*Bucket) HasUpdated ¶

func (o *Bucket) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*Bucket) HasUri ¶ added in v1.10.3

func (o *Bucket) HasUri() bool

HasUri returns a boolean if a field has been set.

func (Bucket) MarshalJSON ¶

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

func (*Bucket) SetCreated ¶

func (o *Bucket) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Bucket) SetDescription ¶ added in v1.10.3

func (o *Bucket) SetDescription(v string)

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

func (*Bucket) SetId ¶

func (o *Bucket) SetId(v string)

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

func (*Bucket) SetLabels ¶ added in v1.10.3

func (o *Bucket) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Bucket) SetLocked ¶

func (o *Bucket) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*Bucket) SetMetadata ¶ added in v1.10.3

func (o *Bucket) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Bucket) SetName ¶

func (o *Bucket) SetName(v string)

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

func (*Bucket) SetScope ¶

func (o *Bucket) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*Bucket) SetUpdated ¶

func (o *Bucket) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*Bucket) SetUri ¶ added in v1.10.3

func (o *Bucket) SetUri(v Uri)

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

func (Bucket) ToMap ¶ added in v1.10.3

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

type BucketAPIService ¶ added in v1.10.3

type BucketAPIService service

BucketAPIService BucketAPI service

func (*BucketAPIService) CreateBucket ¶ added in v1.10.3

CreateBucket Create a bucket

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateBucketRequest

func (*BucketAPIService) CreateBucketExecute ¶ added in v1.10.3

func (a *BucketAPIService) CreateBucketExecute(r ApiCreateBucketRequest) (*Bucket, *http.Response, error)

Execute executes the request

@return Bucket

func (*BucketAPIService) DeleteBucketById ¶ added in v1.10.3

func (a *BucketAPIService) DeleteBucketById(ctx context.Context, bucketId string) ApiDeleteBucketByIdRequest

DeleteBucketById Delete a bucket by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bucketId Id of the bucket
@return ApiDeleteBucketByIdRequest

func (*BucketAPIService) DeleteBucketByIdExecute ¶ added in v1.10.3

func (a *BucketAPIService) DeleteBucketByIdExecute(r ApiDeleteBucketByIdRequest) (*http.Response, error)

Execute executes the request

func (*BucketAPIService) FindBucketById ¶ added in v1.10.3

func (a *BucketAPIService) FindBucketById(ctx context.Context, bucketId string) ApiFindBucketByIdRequest

FindBucketById Find bucket by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bucketId Id of the bucket
@return ApiFindBucketByIdRequest

func (*BucketAPIService) FindBucketByIdExecute ¶ added in v1.10.3

func (a *BucketAPIService) FindBucketByIdExecute(r ApiFindBucketByIdRequest) (*Bucket, *http.Response, error)

Execute executes the request

@return Bucket

func (*BucketAPIService) FindBuckets ¶ added in v1.10.3

FindBuckets Retrieve all buckets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindBucketsRequest

func (*BucketAPIService) FindBucketsExecute ¶ added in v1.10.3

func (a *BucketAPIService) FindBucketsExecute(r ApiFindBucketsRequest) ([]Bucket, *http.Response, error)

Execute executes the request

@return []Bucket

func (*BucketAPIService) UpdateBucket ¶ added in v1.10.3

func (a *BucketAPIService) UpdateBucket(ctx context.Context, bucketId string) ApiUpdateBucketRequest

UpdateBucket Update a bucket

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bucketId Id of the bucket
@return ApiUpdateBucketRequest

func (*BucketAPIService) UpdateBucketExecute ¶ added in v1.10.3

func (a *BucketAPIService) UpdateBucketExecute(r ApiUpdateBucketRequest) (*Bucket, *http.Response, error)

Execute executes the request

@return Bucket

type Build ¶

type Build struct {
	Id          *string                           `json:"id,omitempty"`
	Initiator   *string                           `json:"initiator,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Status      *string                           `json:"status,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Parameters  []string                          `json:"parameters,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Build struct for Build

func NewBuild ¶

func NewBuild() *Build

NewBuild instantiates a new Build 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 NewBuildWithDefaults ¶

func NewBuildWithDefaults() *Build

NewBuildWithDefaults instantiates a new Build 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 (*Build) GetCreated ¶

func (o *Build) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Build) GetCreatedOk ¶

func (o *Build) GetCreatedOk() (*time.Time, bool)

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

func (*Build) GetDescription ¶

func (o *Build) GetDescription() string

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

func (*Build) GetDescriptionOk ¶

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

func (o *Build) GetId() string

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

func (*Build) GetIdOk ¶

func (o *Build) 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 (*Build) GetInitiator ¶

func (o *Build) GetInitiator() string

GetInitiator returns the Initiator field value if set, zero value otherwise.

func (*Build) GetInitiatorOk ¶

func (o *Build) GetInitiatorOk() (*string, bool)

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

func (*Build) GetMetadata ¶

func (o *Build) GetMetadata() map[string]map[string]interface{}

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

func (*Build) GetMetadataOk ¶

func (o *Build) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Build) GetName ¶

func (o *Build) GetName() string

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

func (*Build) GetNameOk ¶

func (o *Build) 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 (*Build) GetParameters ¶

func (o *Build) GetParameters() []string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*Build) GetParametersOk ¶

func (o *Build) GetParametersOk() ([]string, bool)

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

func (*Build) GetStatus ¶

func (o *Build) GetStatus() string

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

func (*Build) GetStatusOk ¶

func (o *Build) GetStatusOk() (*string, 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 (*Build) GetUpdated ¶

func (o *Build) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Build) GetUpdatedOk ¶

func (o *Build) GetUpdatedOk() (*time.Time, bool)

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

func (*Build) HasCreated ¶

func (o *Build) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Build) HasDescription ¶

func (o *Build) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Build) HasId ¶

func (o *Build) HasId() bool

HasId returns a boolean if a field has been set.

func (*Build) HasInitiator ¶

func (o *Build) HasInitiator() bool

HasInitiator returns a boolean if a field has been set.

func (*Build) HasMetadata ¶

func (o *Build) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Build) HasName ¶

func (o *Build) HasName() bool

HasName returns a boolean if a field has been set.

func (*Build) HasParameters ¶

func (o *Build) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*Build) HasStatus ¶

func (o *Build) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Build) HasUpdated ¶

func (o *Build) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Build) MarshalJSON ¶

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

func (*Build) SetCreated ¶

func (o *Build) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Build) SetDescription ¶

func (o *Build) SetDescription(v string)

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

func (*Build) SetId ¶

func (o *Build) SetId(v string)

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

func (*Build) SetInitiator ¶

func (o *Build) SetInitiator(v string)

SetInitiator gets a reference to the given string and assigns it to the Initiator field.

func (*Build) SetMetadata ¶

func (o *Build) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Build) SetName ¶

func (o *Build) SetName(v string)

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

func (*Build) SetParameters ¶

func (o *Build) SetParameters(v []string)

SetParameters gets a reference to the given []string and assigns it to the Parameters field.

func (*Build) SetStatus ¶

func (o *Build) SetStatus(v string)

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

func (*Build) SetUpdated ¶

func (o *Build) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Build) ToMap ¶ added in v1.10.3

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

type ByteCapacity ¶

type ByteCapacity struct {
	Min     *string `json:"min,omitempty"`
	Max     *string `json:"max,omitempty"`
	Current *string `json:"current,omitempty"`
}

ByteCapacity struct for ByteCapacity

func NewByteCapacity ¶

func NewByteCapacity() *ByteCapacity

NewByteCapacity instantiates a new ByteCapacity 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 NewByteCapacityWithDefaults ¶

func NewByteCapacityWithDefaults() *ByteCapacity

NewByteCapacityWithDefaults instantiates a new ByteCapacity 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 (*ByteCapacity) GetCurrent ¶

func (o *ByteCapacity) GetCurrent() string

GetCurrent returns the Current field value if set, zero value otherwise.

func (*ByteCapacity) GetCurrentOk ¶

func (o *ByteCapacity) GetCurrentOk() (*string, bool)

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

func (*ByteCapacity) GetMax ¶

func (o *ByteCapacity) GetMax() string

GetMax returns the Max field value if set, zero value otherwise.

func (*ByteCapacity) GetMaxOk ¶

func (o *ByteCapacity) GetMaxOk() (*string, bool)

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

func (*ByteCapacity) GetMin ¶

func (o *ByteCapacity) GetMin() string

GetMin returns the Min field value if set, zero value otherwise.

func (*ByteCapacity) GetMinOk ¶

func (o *ByteCapacity) GetMinOk() (*string, bool)

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

func (*ByteCapacity) HasCurrent ¶

func (o *ByteCapacity) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*ByteCapacity) HasMax ¶

func (o *ByteCapacity) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*ByteCapacity) HasMin ¶

func (o *ByteCapacity) HasMin() bool

HasMin returns a boolean if a field has been set.

func (ByteCapacity) MarshalJSON ¶

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

func (*ByteCapacity) SetCurrent ¶

func (o *ByteCapacity) SetCurrent(v string)

SetCurrent gets a reference to the given string and assigns it to the Current field.

func (*ByteCapacity) SetMax ¶

func (o *ByteCapacity) SetMax(v string)

SetMax gets a reference to the given string and assigns it to the Max field.

func (*ByteCapacity) SetMin ¶

func (o *ByteCapacity) SetMin(v string)

SetMin gets a reference to the given string and assigns it to the Min field.

func (ByteCapacity) ToMap ¶ added in v1.10.3

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

type Capacity ¶

type Capacity struct {
	Min     *float32 `json:"min,omitempty"`
	Max     *float32 `json:"max,omitempty"`
	Current *float32 `json:"current,omitempty"`
}

Capacity struct for Capacity

func NewCapacity ¶

func NewCapacity() *Capacity

NewCapacity instantiates a new Capacity 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 NewCapacityWithDefaults ¶

func NewCapacityWithDefaults() *Capacity

NewCapacityWithDefaults instantiates a new Capacity 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 (*Capacity) GetCurrent ¶

func (o *Capacity) GetCurrent() float32

GetCurrent returns the Current field value if set, zero value otherwise.

func (*Capacity) GetCurrentOk ¶

func (o *Capacity) GetCurrentOk() (*float32, bool)

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

func (*Capacity) GetMax ¶

func (o *Capacity) GetMax() float32

GetMax returns the Max field value if set, zero value otherwise.

func (*Capacity) GetMaxOk ¶

func (o *Capacity) GetMaxOk() (*float32, bool)

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

func (*Capacity) GetMin ¶

func (o *Capacity) GetMin() float32

GetMin returns the Min field value if set, zero value otherwise.

func (*Capacity) GetMinOk ¶

func (o *Capacity) GetMinOk() (*float32, bool)

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

func (*Capacity) HasCurrent ¶

func (o *Capacity) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*Capacity) HasMax ¶

func (o *Capacity) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*Capacity) HasMin ¶

func (o *Capacity) HasMin() bool

HasMin returns a boolean if a field has been set.

func (Capacity) MarshalJSON ¶

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

func (*Capacity) SetCurrent ¶

func (o *Capacity) SetCurrent(v float32)

SetCurrent gets a reference to the given float32 and assigns it to the Current field.

func (*Capacity) SetMax ¶

func (o *Capacity) SetMax(v float32)

SetMax gets a reference to the given float32 and assigns it to the Max field.

func (*Capacity) SetMin ¶

func (o *Capacity) SetMin(v float32)

SetMin gets a reference to the given float32 and assigns it to the Min field.

func (Capacity) ToMap ¶ added in v1.10.3

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

type CatalogAPIService ¶ added in v1.10.3

type CatalogAPIService service

CatalogAPIService CatalogAPI service

func (*CatalogAPIService) UpdateCatalog ¶ added in v1.10.3

UpdateCatalog Update catalog

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateCatalogRequest

func (*CatalogAPIService) UpdateCatalogExecute ¶ added in v1.10.3

func (a *CatalogAPIService) UpdateCatalogExecute(r ApiUpdateCatalogRequest) (*http.Response, error)

Execute executes the request

type Change ¶ added in v1.10.3

type Change struct {
	Id          *string    `json:"id,omitempty"`
	Author      *string    `json:"author,omitempty"`
	Filename    *string    `json:"filename,omitempty"`
	Executed    *time.Time `json:"executed,omitempty"`
	Type        *string    `json:"type,omitempty"`
	Order       *float32   `json:"order,omitempty"`
	Hash        *string    `json:"hash,omitempty"`
	Description *string    `json:"description,omitempty"`
	Comments    *string    `json:"comments,omitempty"`
	Tag         *string    `json:"tag,omitempty"`
}

Change struct for Change

func NewChange ¶ added in v1.10.3

func NewChange() *Change

NewChange instantiates a new Change 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 NewChangeWithDefaults ¶ added in v1.10.3

func NewChangeWithDefaults() *Change

NewChangeWithDefaults instantiates a new Change 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 (*Change) GetAuthor ¶ added in v1.10.3

func (o *Change) GetAuthor() string

GetAuthor returns the Author field value if set, zero value otherwise.

func (*Change) GetAuthorOk ¶ added in v1.10.3

func (o *Change) 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 (*Change) GetComments ¶ added in v1.10.3

func (o *Change) GetComments() string

GetComments returns the Comments field value if set, zero value otherwise.

func (*Change) GetCommentsOk ¶ added in v1.10.3

func (o *Change) GetCommentsOk() (*string, bool)

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

func (*Change) GetDescription ¶ added in v1.10.3

func (o *Change) GetDescription() string

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

func (*Change) GetDescriptionOk ¶ added in v1.10.3

func (o *Change) 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 (*Change) GetExecuted ¶ added in v1.10.3

func (o *Change) GetExecuted() time.Time

GetExecuted returns the Executed field value if set, zero value otherwise.

func (*Change) GetExecutedOk ¶ added in v1.10.3

func (o *Change) GetExecutedOk() (*time.Time, bool)

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

func (*Change) GetFilename ¶ added in v1.10.3

func (o *Change) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise.

func (*Change) GetFilenameOk ¶ added in v1.10.3

func (o *Change) GetFilenameOk() (*string, bool)

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

func (*Change) GetHash ¶ added in v1.10.3

func (o *Change) GetHash() string

GetHash returns the Hash field value if set, zero value otherwise.

func (*Change) GetHashOk ¶ added in v1.10.3

func (o *Change) GetHashOk() (*string, bool)

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

func (*Change) GetId ¶ added in v1.10.3

func (o *Change) GetId() string

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

func (*Change) GetIdOk ¶ added in v1.10.3

func (o *Change) 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 (*Change) GetOrder ¶ added in v1.10.3

func (o *Change) GetOrder() float32

GetOrder returns the Order field value if set, zero value otherwise.

func (*Change) GetOrderOk ¶ added in v1.10.3

func (o *Change) GetOrderOk() (*float32, bool)

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

func (*Change) GetTag ¶ added in v1.10.3

func (o *Change) GetTag() string

GetTag returns the Tag field value if set, zero value otherwise.

func (*Change) GetTagOk ¶ added in v1.10.3

func (o *Change) GetTagOk() (*string, bool)

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

func (*Change) GetType ¶ added in v1.10.3

func (o *Change) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Change) GetTypeOk ¶ added in v1.10.3

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

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

func (*Change) HasAuthor ¶ added in v1.10.3

func (o *Change) HasAuthor() bool

HasAuthor returns a boolean if a field has been set.

func (*Change) HasComments ¶ added in v1.10.3

func (o *Change) HasComments() bool

HasComments returns a boolean if a field has been set.

func (*Change) HasDescription ¶ added in v1.10.3

func (o *Change) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Change) HasExecuted ¶ added in v1.10.3

func (o *Change) HasExecuted() bool

HasExecuted returns a boolean if a field has been set.

func (*Change) HasFilename ¶ added in v1.10.3

func (o *Change) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (*Change) HasHash ¶ added in v1.10.3

func (o *Change) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*Change) HasId ¶ added in v1.10.3

func (o *Change) HasId() bool

HasId returns a boolean if a field has been set.

func (*Change) HasOrder ¶ added in v1.10.3

func (o *Change) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*Change) HasTag ¶ added in v1.10.3

func (o *Change) HasTag() bool

HasTag returns a boolean if a field has been set.

func (*Change) HasType ¶ added in v1.10.3

func (o *Change) HasType() bool

HasType returns a boolean if a field has been set.

func (Change) MarshalJSON ¶ added in v1.10.3

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

func (*Change) SetAuthor ¶ added in v1.10.3

func (o *Change) SetAuthor(v string)

SetAuthor gets a reference to the given string and assigns it to the Author field.

func (*Change) SetComments ¶ added in v1.10.3

func (o *Change) SetComments(v string)

SetComments gets a reference to the given string and assigns it to the Comments field.

func (*Change) SetDescription ¶ added in v1.10.3

func (o *Change) SetDescription(v string)

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

func (*Change) SetExecuted ¶ added in v1.10.3

func (o *Change) SetExecuted(v time.Time)

SetExecuted gets a reference to the given time.Time and assigns it to the Executed field.

func (*Change) SetFilename ¶ added in v1.10.3

func (o *Change) SetFilename(v string)

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (*Change) SetHash ¶ added in v1.10.3

func (o *Change) SetHash(v string)

SetHash gets a reference to the given string and assigns it to the Hash field.

func (*Change) SetId ¶ added in v1.10.3

func (o *Change) SetId(v string)

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

func (*Change) SetOrder ¶ added in v1.10.3

func (o *Change) SetOrder(v float32)

SetOrder gets a reference to the given float32 and assigns it to the Order field.

func (*Change) SetTag ¶ added in v1.10.3

func (o *Change) SetTag(v string)

SetTag gets a reference to the given string and assigns it to the Tag field.

func (*Change) SetType ¶ added in v1.10.3

func (o *Change) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Change) ToMap ¶ added in v1.10.3

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

type ChangePage ¶ added in v1.10.3

type ChangePage struct {
	Number  *int32   `json:"number,omitempty"`
	Size    *int32   `json:"size,omitempty"`
	Content []Change `json:"content,omitempty"`
}

ChangePage typed Page

func NewChangePage ¶ added in v1.10.3

func NewChangePage() *ChangePage

NewChangePage instantiates a new ChangePage 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 NewChangePageWithDefaults ¶ added in v1.10.3

func NewChangePageWithDefaults() *ChangePage

NewChangePageWithDefaults instantiates a new ChangePage 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 (*ChangePage) GetContent ¶ added in v1.10.3

func (o *ChangePage) GetContent() []Change

GetContent returns the Content field value if set, zero value otherwise.

func (*ChangePage) GetContentOk ¶ added in v1.10.3

func (o *ChangePage) GetContentOk() ([]Change, bool)

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

func (*ChangePage) GetNumber ¶ added in v1.10.3

func (o *ChangePage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*ChangePage) GetNumberOk ¶ added in v1.10.3

func (o *ChangePage) GetNumberOk() (*int32, bool)

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

func (*ChangePage) GetSize ¶ added in v1.10.3

func (o *ChangePage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*ChangePage) GetSizeOk ¶ added in v1.10.3

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

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

func (*ChangePage) HasContent ¶ added in v1.10.3

func (o *ChangePage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*ChangePage) HasNumber ¶ added in v1.10.3

func (o *ChangePage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*ChangePage) HasSize ¶ added in v1.10.3

func (o *ChangePage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (ChangePage) MarshalJSON ¶ added in v1.10.3

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

func (*ChangePage) SetContent ¶ added in v1.10.3

func (o *ChangePage) SetContent(v []Change)

SetContent gets a reference to the given []Change and assigns it to the Content field.

func (*ChangePage) SetNumber ¶ added in v1.10.3

func (o *ChangePage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*ChangePage) SetSize ¶ added in v1.10.3

func (o *ChangePage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (ChangePage) ToMap ¶ added in v1.10.3

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

type ChangePageAllOf ¶ added in v1.10.3

type ChangePageAllOf struct {
	Content *[]Change `json:"content,omitempty"`
}

ChangePageAllOf struct for ChangePageAllOf

func NewChangePageAllOf ¶ added in v1.10.3

func NewChangePageAllOf() *ChangePageAllOf

NewChangePageAllOf instantiates a new ChangePageAllOf 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 NewChangePageAllOfWithDefaults ¶ added in v1.10.3

func NewChangePageAllOfWithDefaults() *ChangePageAllOf

NewChangePageAllOfWithDefaults instantiates a new ChangePageAllOf 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 (*ChangePageAllOf) GetContent ¶ added in v1.10.3

func (o *ChangePageAllOf) GetContent() []Change

GetContent returns the Content field value if set, zero value otherwise.

func (*ChangePageAllOf) GetContentOk ¶ added in v1.10.3

func (o *ChangePageAllOf) GetContentOk() (*[]Change, bool)

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

func (*ChangePageAllOf) HasContent ¶ added in v1.10.3

func (o *ChangePageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (ChangePageAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*ChangePageAllOf) SetContent ¶ added in v1.10.3

func (o *ChangePageAllOf) SetContent(v []Change)

SetContent gets a reference to the given []Change and assigns it to the Content field.

type CodeAPIService ¶ added in v1.10.3

type CodeAPIService service

CodeAPIService CodeAPI service

func (*CodeAPIService) DownloadCode ¶ added in v1.10.3

DownloadCode Download code

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDownloadCodeRequest

func (*CodeAPIService) DownloadCodeExecute ¶ added in v1.10.3

func (a *CodeAPIService) DownloadCodeExecute(r ApiDownloadCodeRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*CodeAPIService) VerifyCode ¶ added in v1.10.3

VerifyCode Verify code

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiVerifyCodeRequest

func (*CodeAPIService) VerifyCodeExecute ¶ added in v1.10.3

func (a *CodeAPIService) VerifyCodeExecute(r ApiVerifyCodeRequest) (*http.Response, error)

Execute executes the request

type CodeAction ¶ added in v1.10.3

type CodeAction struct {
	Type     *string                        `json:"type,omitempty"`
	Language EtlDagSchemasEnumsLanguageType `json:"language"`
	Dag      Dag                            `json:"dag"`
}

CodeAction Code generation Request.

func NewCodeAction ¶ added in v1.10.3

func NewCodeAction(language EtlDagSchemasEnumsLanguageType, dag Dag) *CodeAction

NewCodeAction instantiates a new CodeAction 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 NewCodeActionWithDefaults ¶ added in v1.10.3

func NewCodeActionWithDefaults() *CodeAction

NewCodeActionWithDefaults instantiates a new CodeAction 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 (*CodeAction) GetDag ¶ added in v1.10.3

func (o *CodeAction) GetDag() Dag

GetDag returns the Dag field value

func (*CodeAction) GetDagOk ¶ added in v1.10.3

func (o *CodeAction) GetDagOk() (*Dag, bool)

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

func (*CodeAction) GetLanguage ¶ added in v1.10.3

func (o *CodeAction) GetLanguage() EtlDagSchemasEnumsLanguageType

GetLanguage returns the Language field value

func (*CodeAction) GetLanguageOk ¶ added in v1.10.3

func (o *CodeAction) GetLanguageOk() (*EtlDagSchemasEnumsLanguageType, bool)

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

func (*CodeAction) GetType ¶ added in v1.10.3

func (o *CodeAction) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CodeAction) GetTypeOk ¶ added in v1.10.3

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

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

func (*CodeAction) HasType ¶ added in v1.10.3

func (o *CodeAction) HasType() bool

HasType returns a boolean if a field has been set.

func (CodeAction) MarshalJSON ¶ added in v1.10.3

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

func (*CodeAction) SetDag ¶ added in v1.10.3

func (o *CodeAction) SetDag(v Dag)

SetDag sets field value

func (*CodeAction) SetLanguage ¶ added in v1.10.3

func (o *CodeAction) SetLanguage(v EtlDagSchemasEnumsLanguageType)

SetLanguage sets field value

func (*CodeAction) SetType ¶ added in v1.10.3

func (o *CodeAction) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CodeAction) ToMap ¶ added in v1.10.3

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

func (*CodeAction) UnmarshalJSON ¶ added in v1.10.3

func (o *CodeAction) UnmarshalJSON(bytes []byte) (err error)

type Comment ¶ added in v1.10.3

type Comment struct {
	Comment *string `json:"comment,omitempty"`
}

Comment struct for Comment

func NewComment ¶ added in v1.10.3

func NewComment() *Comment

NewComment instantiates a new Comment 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 NewCommentWithDefaults ¶ added in v1.10.3

func NewCommentWithDefaults() *Comment

NewCommentWithDefaults instantiates a new Comment 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 (*Comment) GetComment ¶ added in v1.10.3

func (o *Comment) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*Comment) GetCommentOk ¶ added in v1.10.3

func (o *Comment) GetCommentOk() (*string, bool)

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

func (*Comment) HasComment ¶ added in v1.10.3

func (o *Comment) HasComment() bool

HasComment returns a boolean if a field has been set.

func (Comment) MarshalJSON ¶ added in v1.10.3

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

func (*Comment) SetComment ¶ added in v1.10.3

func (o *Comment) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (Comment) ToMap ¶ added in v1.10.3

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

type CommentActivity ¶ added in v1.10.3

type CommentActivity struct {
	Comment    *string    `json:"comment,omitempty"`
	Id         *string    `json:"id,omitempty"`
	CreateTime *time.Time `json:"create_time,omitempty"`
	LastUpdate *time.Time `json:"last_update,omitempty"`
	UserId     *string    `json:"user_id,omitempty"`
}

CommentActivity struct for CommentActivity

func NewCommentActivity ¶ added in v1.10.3

func NewCommentActivity() *CommentActivity

NewCommentActivity instantiates a new CommentActivity 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 NewCommentActivityWithDefaults ¶ added in v1.10.3

func NewCommentActivityWithDefaults() *CommentActivity

NewCommentActivityWithDefaults instantiates a new CommentActivity 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 (*CommentActivity) GetComment ¶ added in v1.10.3

func (o *CommentActivity) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*CommentActivity) GetCommentOk ¶ added in v1.10.3

func (o *CommentActivity) GetCommentOk() (*string, bool)

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

func (*CommentActivity) GetCreateTime ¶ added in v1.10.3

func (o *CommentActivity) GetCreateTime() time.Time

GetCreateTime returns the CreateTime field value if set, zero value otherwise.

func (*CommentActivity) GetCreateTimeOk ¶ added in v1.10.3

func (o *CommentActivity) GetCreateTimeOk() (*time.Time, bool)

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

func (*CommentActivity) GetId ¶ added in v1.10.3

func (o *CommentActivity) GetId() string

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

func (*CommentActivity) GetIdOk ¶ added in v1.10.3

func (o *CommentActivity) 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 (*CommentActivity) GetLastUpdate ¶ added in v1.10.3

func (o *CommentActivity) GetLastUpdate() time.Time

GetLastUpdate returns the LastUpdate field value if set, zero value otherwise.

func (*CommentActivity) GetLastUpdateOk ¶ added in v1.10.3

func (o *CommentActivity) GetLastUpdateOk() (*time.Time, bool)

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

func (*CommentActivity) GetUserId ¶ added in v1.10.3

func (o *CommentActivity) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*CommentActivity) GetUserIdOk ¶ added in v1.10.3

func (o *CommentActivity) GetUserIdOk() (*string, bool)

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

func (*CommentActivity) HasComment ¶ added in v1.10.3

func (o *CommentActivity) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*CommentActivity) HasCreateTime ¶ added in v1.10.3

func (o *CommentActivity) HasCreateTime() bool

HasCreateTime returns a boolean if a field has been set.

func (*CommentActivity) HasId ¶ added in v1.10.3

func (o *CommentActivity) HasId() bool

HasId returns a boolean if a field has been set.

func (*CommentActivity) HasLastUpdate ¶ added in v1.10.3

func (o *CommentActivity) HasLastUpdate() bool

HasLastUpdate returns a boolean if a field has been set.

func (*CommentActivity) HasUserId ¶ added in v1.10.3

func (o *CommentActivity) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (CommentActivity) MarshalJSON ¶ added in v1.10.3

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

func (*CommentActivity) SetComment ¶ added in v1.10.3

func (o *CommentActivity) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*CommentActivity) SetCreateTime ¶ added in v1.10.3

func (o *CommentActivity) SetCreateTime(v time.Time)

SetCreateTime gets a reference to the given time.Time and assigns it to the CreateTime field.

func (*CommentActivity) SetId ¶ added in v1.10.3

func (o *CommentActivity) SetId(v string)

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

func (*CommentActivity) SetLastUpdate ¶ added in v1.10.3

func (o *CommentActivity) SetLastUpdate(v time.Time)

SetLastUpdate gets a reference to the given time.Time and assigns it to the LastUpdate field.

func (*CommentActivity) SetUserId ¶ added in v1.10.3

func (o *CommentActivity) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (CommentActivity) ToMap ¶ added in v1.10.3

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

type Company ¶

type Company struct {
	Name       *string  `json:"name,omitempty"`
	Address    *string  `json:"address,omitempty"`
	City       *float32 `json:"city,omitempty"`
	Country    *string  `json:"country,omitempty"`
	PostalCode *string  `json:"postal_code,omitempty"`
	Vat        *string  `json:"vat,omitempty"`
}

Company struct for Company

func NewCompany ¶

func NewCompany() *Company

NewCompany instantiates a new Company 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 NewCompanyWithDefaults ¶

func NewCompanyWithDefaults() *Company

NewCompanyWithDefaults instantiates a new Company 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 (*Company) GetAddress ¶

func (o *Company) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*Company) GetAddressOk ¶

func (o *Company) GetAddressOk() (*string, bool)

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

func (*Company) GetCity ¶

func (o *Company) GetCity() float32

GetCity returns the City field value if set, zero value otherwise.

func (*Company) GetCityOk ¶

func (o *Company) GetCityOk() (*float32, bool)

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

func (*Company) GetCountry ¶

func (o *Company) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*Company) GetCountryOk ¶

func (o *Company) GetCountryOk() (*string, bool)

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

func (*Company) GetName ¶

func (o *Company) GetName() string

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

func (*Company) GetNameOk ¶

func (o *Company) 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 (*Company) GetPostalCode ¶

func (o *Company) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*Company) GetPostalCodeOk ¶

func (o *Company) GetPostalCodeOk() (*string, bool)

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

func (*Company) GetVat ¶

func (o *Company) GetVat() string

GetVat returns the Vat field value if set, zero value otherwise.

func (*Company) GetVatOk ¶

func (o *Company) GetVatOk() (*string, bool)

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

func (*Company) HasAddress ¶

func (o *Company) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*Company) HasCity ¶

func (o *Company) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*Company) HasCountry ¶

func (o *Company) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*Company) HasName ¶

func (o *Company) HasName() bool

HasName returns a boolean if a field has been set.

func (*Company) HasPostalCode ¶

func (o *Company) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*Company) HasVat ¶

func (o *Company) HasVat() bool

HasVat returns a boolean if a field has been set.

func (Company) MarshalJSON ¶

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

func (*Company) SetAddress ¶

func (o *Company) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*Company) SetCity ¶

func (o *Company) SetCity(v float32)

SetCity gets a reference to the given float32 and assigns it to the City field.

func (*Company) SetCountry ¶

func (o *Company) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*Company) SetName ¶

func (o *Company) SetName(v string)

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

func (*Company) SetPostalCode ¶

func (o *Company) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*Company) SetVat ¶

func (o *Company) SetVat(v string)

SetVat gets a reference to the given string and assigns it to the Vat field.

func (Company) ToMap ¶ added in v1.10.3

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

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 Connector ¶ added in v1.10.3

type Connector struct {
	LocalConnector *LocalConnector
	S3Connector    *S3Connector
}

Connector Type of connector

func (*Connector) MarshalJSON ¶ added in v1.10.3

func (src *Connector) MarshalJSON() ([]byte, error)

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

func (*Connector) UnmarshalJSON ¶ added in v1.10.3

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

Unmarshal JSON data into any of the pointers in the struct

type Connector1 ¶ added in v1.10.3

type Connector1 struct {
	AzureConnector *AzureConnector
	LocalConnector *LocalConnector
	S3Connector    *S3Connector
}

Connector1 - Type of connector (local, S3, Azure).

func AzureConnectorAsConnector1 ¶ added in v1.10.3

func AzureConnectorAsConnector1(v *AzureConnector) Connector1

AzureConnectorAsConnector1 is a convenience function that returns AzureConnector wrapped in Connector1

func LocalConnectorAsConnector1 ¶ added in v1.10.3

func LocalConnectorAsConnector1(v *LocalConnector) Connector1

LocalConnectorAsConnector1 is a convenience function that returns LocalConnector wrapped in Connector1

func S3ConnectorAsConnector1 ¶ added in v1.10.3

func S3ConnectorAsConnector1(v *S3Connector) Connector1

S3ConnectorAsConnector1 is a convenience function that returns S3Connector wrapped in Connector1

func (*Connector1) GetActualInstance ¶ added in v1.10.3

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

Get the actual instance

func (Connector1) MarshalJSON ¶ added in v1.10.3

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

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

func (*Connector1) UnmarshalJSON ¶ added in v1.10.3

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

Unmarshal JSON data into one of the pointers in the struct

type Contact ¶

type Contact struct {
	FirstName *string `json:"first_name,omitempty"`
	LastName  *string `json:"last_name,omitempty"`
	Email     *string `json:"email,omitempty"`
	Password  *string `json:"password,omitempty"`
	Phone     *string `json:"phone,omitempty"`
	Country   *string `json:"country,omitempty"`
}

Contact struct for Contact

func NewContact ¶

func NewContact() *Contact

NewContact instantiates a new Contact 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 NewContactWithDefaults ¶

func NewContactWithDefaults() *Contact

NewContactWithDefaults instantiates a new Contact 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 (*Contact) GetCountry ¶

func (o *Contact) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*Contact) GetCountryOk ¶

func (o *Contact) GetCountryOk() (*string, bool)

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

func (*Contact) GetEmail ¶

func (o *Contact) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*Contact) GetEmailOk ¶

func (o *Contact) GetEmailOk() (*string, bool)

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

func (*Contact) GetFirstName ¶

func (o *Contact) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*Contact) GetFirstNameOk ¶

func (o *Contact) GetFirstNameOk() (*string, bool)

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

func (*Contact) GetLastName ¶

func (o *Contact) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*Contact) GetLastNameOk ¶

func (o *Contact) GetLastNameOk() (*string, bool)

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

func (*Contact) GetPassword ¶

func (o *Contact) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*Contact) GetPasswordOk ¶

func (o *Contact) GetPasswordOk() (*string, bool)

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

func (*Contact) GetPhone ¶

func (o *Contact) GetPhone() string

GetPhone returns the Phone field value if set, zero value otherwise.

func (*Contact) GetPhoneOk ¶

func (o *Contact) GetPhoneOk() (*string, bool)

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

func (*Contact) HasCountry ¶

func (o *Contact) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*Contact) HasEmail ¶

func (o *Contact) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Contact) HasFirstName ¶

func (o *Contact) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*Contact) HasLastName ¶

func (o *Contact) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*Contact) HasPassword ¶

func (o *Contact) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*Contact) HasPhone ¶

func (o *Contact) HasPhone() bool

HasPhone returns a boolean if a field has been set.

func (Contact) MarshalJSON ¶

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

func (*Contact) SetCountry ¶

func (o *Contact) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*Contact) SetEmail ¶

func (o *Contact) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*Contact) SetFirstName ¶

func (o *Contact) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*Contact) SetLastName ¶

func (o *Contact) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*Contact) SetPassword ¶

func (o *Contact) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*Contact) SetPhone ¶

func (o *Contact) SetPhone(v string)

SetPhone gets a reference to the given string and assigns it to the Phone field.

func (Contact) ToMap ¶ added in v1.10.3

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

type CostAPIService ¶ added in v1.10.3

type CostAPIService service

CostAPIService CostAPI service

func (*CostAPIService) GetCosts ¶ added in v1.10.3

GetCosts Find the costs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCostsRequest

func (*CostAPIService) GetCostsExecute ¶ added in v1.10.3

func (a *CostAPIService) GetCostsExecute(r ApiGetCostsRequest) (*CostStats, *http.Response, error)

Execute executes the request

@return CostStats

type CostStats ¶

type CostStats struct {
	Total                 *float64            `json:"total,omitempty"`
	Cumulative            []float64           `json:"cumulative,omitempty"`
	Budget                []float64           `json:"budget,omitempty"`
	BudgetLowerProjection []float64           `json:"budget_lower_projection,omitempty"`
	BudgetUpperProjection []float64           `json:"budget_upper_projection,omitempty"`
	Period                []time.Time         `json:"period,omitempty"`
	ProjectionPeriod      []time.Time         `json:"projection_period,omitempty"`
	Type                  *string             `json:"type,omitempty"`
	ByType                *map[string]float64 `json:"by_type,omitempty"`
}

CostStats struct for CostStats

func NewCostStats ¶

func NewCostStats() *CostStats

NewCostStats instantiates a new CostStats 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 NewCostStatsWithDefaults ¶

func NewCostStatsWithDefaults() *CostStats

NewCostStatsWithDefaults instantiates a new CostStats 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 (*CostStats) GetBudget ¶

func (o *CostStats) GetBudget() []float64

GetBudget returns the Budget field value if set, zero value otherwise.

func (*CostStats) GetBudgetLowerProjection ¶

func (o *CostStats) GetBudgetLowerProjection() []float64

GetBudgetLowerProjection returns the BudgetLowerProjection field value if set, zero value otherwise.

func (*CostStats) GetBudgetLowerProjectionOk ¶

func (o *CostStats) GetBudgetLowerProjectionOk() ([]float64, bool)

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

func (*CostStats) GetBudgetOk ¶

func (o *CostStats) GetBudgetOk() ([]float64, bool)

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

func (*CostStats) GetBudgetUpperProjection ¶

func (o *CostStats) GetBudgetUpperProjection() []float64

GetBudgetUpperProjection returns the BudgetUpperProjection field value if set, zero value otherwise.

func (*CostStats) GetBudgetUpperProjectionOk ¶

func (o *CostStats) GetBudgetUpperProjectionOk() ([]float64, bool)

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

func (*CostStats) GetByType ¶

func (o *CostStats) GetByType() map[string]float64

GetByType returns the ByType field value if set, zero value otherwise.

func (*CostStats) GetByTypeOk ¶

func (o *CostStats) GetByTypeOk() (*map[string]float64, bool)

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

func (*CostStats) GetCumulative ¶

func (o *CostStats) GetCumulative() []float64

GetCumulative returns the Cumulative field value if set, zero value otherwise.

func (*CostStats) GetCumulativeOk ¶

func (o *CostStats) GetCumulativeOk() ([]float64, bool)

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

func (*CostStats) GetPeriod ¶

func (o *CostStats) GetPeriod() []time.Time

GetPeriod returns the Period field value if set, zero value otherwise.

func (*CostStats) GetPeriodOk ¶

func (o *CostStats) GetPeriodOk() ([]time.Time, bool)

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

func (*CostStats) GetProjectionPeriod ¶

func (o *CostStats) GetProjectionPeriod() []time.Time

GetProjectionPeriod returns the ProjectionPeriod field value if set, zero value otherwise.

func (*CostStats) GetProjectionPeriodOk ¶

func (o *CostStats) GetProjectionPeriodOk() ([]time.Time, bool)

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

func (*CostStats) GetTotal ¶

func (o *CostStats) GetTotal() float64

GetTotal returns the Total field value if set, zero value otherwise.

func (*CostStats) GetTotalOk ¶

func (o *CostStats) GetTotalOk() (*float64, bool)

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

func (*CostStats) GetType ¶

func (o *CostStats) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CostStats) GetTypeOk ¶

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

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

func (*CostStats) HasBudget ¶

func (o *CostStats) HasBudget() bool

HasBudget returns a boolean if a field has been set.

func (*CostStats) HasBudgetLowerProjection ¶

func (o *CostStats) HasBudgetLowerProjection() bool

HasBudgetLowerProjection returns a boolean if a field has been set.

func (*CostStats) HasBudgetUpperProjection ¶

func (o *CostStats) HasBudgetUpperProjection() bool

HasBudgetUpperProjection returns a boolean if a field has been set.

func (*CostStats) HasByType ¶

func (o *CostStats) HasByType() bool

HasByType returns a boolean if a field has been set.

func (*CostStats) HasCumulative ¶

func (o *CostStats) HasCumulative() bool

HasCumulative returns a boolean if a field has been set.

func (*CostStats) HasPeriod ¶

func (o *CostStats) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*CostStats) HasProjectionPeriod ¶

func (o *CostStats) HasProjectionPeriod() bool

HasProjectionPeriod returns a boolean if a field has been set.

func (*CostStats) HasTotal ¶

func (o *CostStats) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*CostStats) HasType ¶

func (o *CostStats) HasType() bool

HasType returns a boolean if a field has been set.

func (CostStats) MarshalJSON ¶

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

func (*CostStats) SetBudget ¶

func (o *CostStats) SetBudget(v []float64)

SetBudget gets a reference to the given []float64 and assigns it to the Budget field.

func (*CostStats) SetBudgetLowerProjection ¶

func (o *CostStats) SetBudgetLowerProjection(v []float64)

SetBudgetLowerProjection gets a reference to the given []float64 and assigns it to the BudgetLowerProjection field.

func (*CostStats) SetBudgetUpperProjection ¶

func (o *CostStats) SetBudgetUpperProjection(v []float64)

SetBudgetUpperProjection gets a reference to the given []float64 and assigns it to the BudgetUpperProjection field.

func (*CostStats) SetByType ¶

func (o *CostStats) SetByType(v map[string]float64)

SetByType gets a reference to the given map[string]float64 and assigns it to the ByType field.

func (*CostStats) SetCumulative ¶

func (o *CostStats) SetCumulative(v []float64)

SetCumulative gets a reference to the given []float64 and assigns it to the Cumulative field.

func (*CostStats) SetPeriod ¶

func (o *CostStats) SetPeriod(v []time.Time)

SetPeriod gets a reference to the given []time.Time and assigns it to the Period field.

func (*CostStats) SetProjectionPeriod ¶

func (o *CostStats) SetProjectionPeriod(v []time.Time)

SetProjectionPeriod gets a reference to the given []time.Time and assigns it to the ProjectionPeriod field.

func (*CostStats) SetTotal ¶

func (o *CostStats) SetTotal(v float64)

SetTotal gets a reference to the given float64 and assigns it to the Total field.

func (*CostStats) SetType ¶

func (o *CostStats) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CostStats) ToMap ¶ added in v1.10.3

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

type CountParams ¶ added in v1.10.3

type CountParams struct {
	// Count aggregation.
	Type *string `json:"type,omitempty"`
	// Column(s) to count.
	Columns []string `json:"columns"`
}

CountParams struct for CountParams

func NewCountParams ¶ added in v1.10.3

func NewCountParams(columns []string) *CountParams

NewCountParams instantiates a new CountParams 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 NewCountParamsWithDefaults ¶ added in v1.10.3

func NewCountParamsWithDefaults() *CountParams

NewCountParamsWithDefaults instantiates a new CountParams 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 (*CountParams) GetColumns ¶ added in v1.10.3

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

GetColumns returns the Columns field value

func (*CountParams) GetColumnsOk ¶ added in v1.10.3

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

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

func (*CountParams) GetType ¶ added in v1.10.3

func (o *CountParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CountParams) GetTypeOk ¶ added in v1.10.3

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

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

func (*CountParams) HasType ¶ added in v1.10.3

func (o *CountParams) HasType() bool

HasType returns a boolean if a field has been set.

func (CountParams) MarshalJSON ¶ added in v1.10.3

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

func (*CountParams) SetColumns ¶ added in v1.10.3

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

SetColumns sets field value

func (*CountParams) SetType ¶ added in v1.10.3

func (o *CountParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CountParams) ToMap ¶ added in v1.10.3

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

func (*CountParams) UnmarshalJSON ¶ added in v1.10.3

func (o *CountParams) UnmarshalJSON(bytes []byte) (err error)

type CranLibrary ¶

type CranLibrary struct {
	Library
	Type *string `json:"type,omitempty"`
	Ref  *string `json:"ref,omitempty"`
}

CranLibrary struct for CranLibrary

func NewCranLibrary ¶

func NewCranLibrary() *CranLibrary

NewCranLibrary instantiates a new CranLibrary 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 NewCranLibraryWithDefaults ¶

func NewCranLibraryWithDefaults() *CranLibrary

NewCranLibraryWithDefaults instantiates a new CranLibrary 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 (*CranLibrary) GetRef ¶

func (o *CranLibrary) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*CranLibrary) GetRefOk ¶

func (o *CranLibrary) GetRefOk() (*string, bool)

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

func (*CranLibrary) GetType ¶

func (o *CranLibrary) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CranLibrary) GetTypeOk ¶

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

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

func (*CranLibrary) HasRef ¶

func (o *CranLibrary) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*CranLibrary) HasType ¶

func (o *CranLibrary) HasType() bool

HasType returns a boolean if a field has been set.

func (CranLibrary) MarshalJSON ¶

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

func (*CranLibrary) SetRef ¶

func (o *CranLibrary) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*CranLibrary) SetType ¶

func (o *CranLibrary) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CranLibrary) ToMap ¶ added in v1.10.3

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

type CranLibraryAllOf ¶

type CranLibraryAllOf struct {
	Type *string `json:"type,omitempty"`
	Ref  *string `json:"ref,omitempty"`
}

CranLibraryAllOf struct for CranLibraryAllOf

func NewCranLibraryAllOf ¶

func NewCranLibraryAllOf() *CranLibraryAllOf

NewCranLibraryAllOf instantiates a new CranLibraryAllOf 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 NewCranLibraryAllOfWithDefaults ¶

func NewCranLibraryAllOfWithDefaults() *CranLibraryAllOf

NewCranLibraryAllOfWithDefaults instantiates a new CranLibraryAllOf 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 (*CranLibraryAllOf) GetRef ¶

func (o *CranLibraryAllOf) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*CranLibraryAllOf) GetRefOk ¶

func (o *CranLibraryAllOf) GetRefOk() (*string, bool)

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

func (*CranLibraryAllOf) GetType ¶

func (o *CranLibraryAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CranLibraryAllOf) GetTypeOk ¶

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

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

func (*CranLibraryAllOf) HasRef ¶

func (o *CranLibraryAllOf) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*CranLibraryAllOf) HasType ¶

func (o *CranLibraryAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (CranLibraryAllOf) MarshalJSON ¶

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

func (*CranLibraryAllOf) SetRef ¶

func (o *CranLibraryAllOf) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*CranLibraryAllOf) SetType ¶

func (o *CranLibraryAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type CreditCardDetails ¶ added in v1.10.3

type CreditCardDetails struct {
	Details1
	Type            *string `json:"type,omitempty"`
	Number          *string `json:"number,omitempty"`
	Cvc             *string `json:"cvc,omitempty"`
	ExpirationMonth *string `json:"expiration_month,omitempty"`
	ExpirationYear  *string `json:"expiration_year,omitempty"`
}

CreditCardDetails struct for CreditCardDetails

func NewCreditCardDetails ¶ added in v1.10.3

func NewCreditCardDetails() *CreditCardDetails

NewCreditCardDetails instantiates a new CreditCardDetails 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 NewCreditCardDetailsWithDefaults ¶ added in v1.10.3

func NewCreditCardDetailsWithDefaults() *CreditCardDetails

NewCreditCardDetailsWithDefaults instantiates a new CreditCardDetails 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 (*CreditCardDetails) GetCvc ¶ added in v1.10.3

func (o *CreditCardDetails) GetCvc() string

GetCvc returns the Cvc field value if set, zero value otherwise.

func (*CreditCardDetails) GetCvcOk ¶ added in v1.10.3

func (o *CreditCardDetails) GetCvcOk() (*string, bool)

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

func (*CreditCardDetails) GetExpirationMonth ¶ added in v1.10.3

func (o *CreditCardDetails) GetExpirationMonth() string

GetExpirationMonth returns the ExpirationMonth field value if set, zero value otherwise.

func (*CreditCardDetails) GetExpirationMonthOk ¶ added in v1.10.3

func (o *CreditCardDetails) GetExpirationMonthOk() (*string, bool)

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

func (*CreditCardDetails) GetExpirationYear ¶ added in v1.10.3

func (o *CreditCardDetails) GetExpirationYear() string

GetExpirationYear returns the ExpirationYear field value if set, zero value otherwise.

func (*CreditCardDetails) GetExpirationYearOk ¶ added in v1.10.3

func (o *CreditCardDetails) GetExpirationYearOk() (*string, bool)

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

func (*CreditCardDetails) GetNumber ¶ added in v1.10.3

func (o *CreditCardDetails) GetNumber() string

GetNumber returns the Number field value if set, zero value otherwise.

func (*CreditCardDetails) GetNumberOk ¶ added in v1.10.3

func (o *CreditCardDetails) GetNumberOk() (*string, bool)

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

func (*CreditCardDetails) GetType ¶ added in v1.10.3

func (o *CreditCardDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CreditCardDetails) GetTypeOk ¶ added in v1.10.3

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

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

func (*CreditCardDetails) HasCvc ¶ added in v1.10.3

func (o *CreditCardDetails) HasCvc() bool

HasCvc returns a boolean if a field has been set.

func (*CreditCardDetails) HasExpirationMonth ¶ added in v1.10.3

func (o *CreditCardDetails) HasExpirationMonth() bool

HasExpirationMonth returns a boolean if a field has been set.

func (*CreditCardDetails) HasExpirationYear ¶ added in v1.10.3

func (o *CreditCardDetails) HasExpirationYear() bool

HasExpirationYear returns a boolean if a field has been set.

func (*CreditCardDetails) HasNumber ¶ added in v1.10.3

func (o *CreditCardDetails) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*CreditCardDetails) HasType ¶ added in v1.10.3

func (o *CreditCardDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (CreditCardDetails) MarshalJSON ¶ added in v1.10.3

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

func (*CreditCardDetails) SetCvc ¶ added in v1.10.3

func (o *CreditCardDetails) SetCvc(v string)

SetCvc gets a reference to the given string and assigns it to the Cvc field.

func (*CreditCardDetails) SetExpirationMonth ¶ added in v1.10.3

func (o *CreditCardDetails) SetExpirationMonth(v string)

SetExpirationMonth gets a reference to the given string and assigns it to the ExpirationMonth field.

func (*CreditCardDetails) SetExpirationYear ¶ added in v1.10.3

func (o *CreditCardDetails) SetExpirationYear(v string)

SetExpirationYear gets a reference to the given string and assigns it to the ExpirationYear field.

func (*CreditCardDetails) SetNumber ¶ added in v1.10.3

func (o *CreditCardDetails) SetNumber(v string)

SetNumber gets a reference to the given string and assigns it to the Number field.

func (*CreditCardDetails) SetType ¶ added in v1.10.3

func (o *CreditCardDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CreditCardDetails) ToMap ¶ added in v1.10.3

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

type CreditCardDetailsAllOf ¶ added in v1.10.3

type CreditCardDetailsAllOf struct {
	Type            *string `json:"type,omitempty"`
	Number          *string `json:"number,omitempty"`
	Cvc             *string `json:"cvc,omitempty"`
	ExpirationMonth *string `json:"expiration_month,omitempty"`
	ExpirationYear  *string `json:"expiration_year,omitempty"`
}

CreditCardDetailsAllOf struct for CreditCardDetailsAllOf

func NewCreditCardDetailsAllOf ¶ added in v1.10.3

func NewCreditCardDetailsAllOf() *CreditCardDetailsAllOf

NewCreditCardDetailsAllOf instantiates a new CreditCardDetailsAllOf 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 NewCreditCardDetailsAllOfWithDefaults ¶ added in v1.10.3

func NewCreditCardDetailsAllOfWithDefaults() *CreditCardDetailsAllOf

NewCreditCardDetailsAllOfWithDefaults instantiates a new CreditCardDetailsAllOf 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 (*CreditCardDetailsAllOf) GetCvc ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetCvc() string

GetCvc returns the Cvc field value if set, zero value otherwise.

func (*CreditCardDetailsAllOf) GetCvcOk ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetCvcOk() (*string, bool)

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

func (*CreditCardDetailsAllOf) GetExpirationMonth ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetExpirationMonth() string

GetExpirationMonth returns the ExpirationMonth field value if set, zero value otherwise.

func (*CreditCardDetailsAllOf) GetExpirationMonthOk ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetExpirationMonthOk() (*string, bool)

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

func (*CreditCardDetailsAllOf) GetExpirationYear ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetExpirationYear() string

GetExpirationYear returns the ExpirationYear field value if set, zero value otherwise.

func (*CreditCardDetailsAllOf) GetExpirationYearOk ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetExpirationYearOk() (*string, bool)

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

func (*CreditCardDetailsAllOf) GetNumber ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetNumber() string

GetNumber returns the Number field value if set, zero value otherwise.

func (*CreditCardDetailsAllOf) GetNumberOk ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetNumberOk() (*string, bool)

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

func (*CreditCardDetailsAllOf) GetType ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CreditCardDetailsAllOf) GetTypeOk ¶ added in v1.10.3

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

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

func (*CreditCardDetailsAllOf) HasCvc ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) HasCvc() bool

HasCvc returns a boolean if a field has been set.

func (*CreditCardDetailsAllOf) HasExpirationMonth ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) HasExpirationMonth() bool

HasExpirationMonth returns a boolean if a field has been set.

func (*CreditCardDetailsAllOf) HasExpirationYear ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) HasExpirationYear() bool

HasExpirationYear returns a boolean if a field has been set.

func (*CreditCardDetailsAllOf) HasNumber ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*CreditCardDetailsAllOf) HasType ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (CreditCardDetailsAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*CreditCardDetailsAllOf) SetCvc ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) SetCvc(v string)

SetCvc gets a reference to the given string and assigns it to the Cvc field.

func (*CreditCardDetailsAllOf) SetExpirationMonth ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) SetExpirationMonth(v string)

SetExpirationMonth gets a reference to the given string and assigns it to the ExpirationMonth field.

func (*CreditCardDetailsAllOf) SetExpirationYear ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) SetExpirationYear(v string)

SetExpirationYear gets a reference to the given string and assigns it to the ExpirationYear field.

func (*CreditCardDetailsAllOf) SetNumber ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) SetNumber(v string)

SetNumber gets a reference to the given string and assigns it to the Number field.

func (*CreditCardDetailsAllOf) SetType ¶ added in v1.10.3

func (o *CreditCardDetailsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type CreditCardPaymentMethod ¶

type CreditCardPaymentMethod struct {
	PaymentMethod
	Type            *string `json:"type,omitempty"`
	Number          *string `json:"number,omitempty"`
	Cvc             *string `json:"cvc,omitempty"`
	ExpirationMonth *string `json:"expiration_month,omitempty"`
	ExpirationYear  *string `json:"expiration_year,omitempty"`
}

CreditCardPaymentMethod struct for CreditCardPaymentMethod

func NewCreditCardPaymentMethod ¶

func NewCreditCardPaymentMethod() *CreditCardPaymentMethod

NewCreditCardPaymentMethod instantiates a new CreditCardPaymentMethod 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 NewCreditCardPaymentMethodWithDefaults ¶

func NewCreditCardPaymentMethodWithDefaults() *CreditCardPaymentMethod

NewCreditCardPaymentMethodWithDefaults instantiates a new CreditCardPaymentMethod 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 (*CreditCardPaymentMethod) GetCvc ¶

func (o *CreditCardPaymentMethod) GetCvc() string

GetCvc returns the Cvc field value if set, zero value otherwise.

func (*CreditCardPaymentMethod) GetCvcOk ¶

func (o *CreditCardPaymentMethod) GetCvcOk() (*string, bool)

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

func (*CreditCardPaymentMethod) GetExpirationMonth ¶

func (o *CreditCardPaymentMethod) GetExpirationMonth() string

GetExpirationMonth returns the ExpirationMonth field value if set, zero value otherwise.

func (*CreditCardPaymentMethod) GetExpirationMonthOk ¶

func (o *CreditCardPaymentMethod) GetExpirationMonthOk() (*string, bool)

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

func (*CreditCardPaymentMethod) GetExpirationYear ¶

func (o *CreditCardPaymentMethod) GetExpirationYear() string

GetExpirationYear returns the ExpirationYear field value if set, zero value otherwise.

func (*CreditCardPaymentMethod) GetExpirationYearOk ¶

func (o *CreditCardPaymentMethod) GetExpirationYearOk() (*string, bool)

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

func (*CreditCardPaymentMethod) GetNumber ¶

func (o *CreditCardPaymentMethod) GetNumber() string

GetNumber returns the Number field value if set, zero value otherwise.

func (*CreditCardPaymentMethod) GetNumberOk ¶

func (o *CreditCardPaymentMethod) GetNumberOk() (*string, bool)

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

func (*CreditCardPaymentMethod) GetType ¶

func (o *CreditCardPaymentMethod) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CreditCardPaymentMethod) GetTypeOk ¶

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

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

func (*CreditCardPaymentMethod) HasCvc ¶

func (o *CreditCardPaymentMethod) HasCvc() bool

HasCvc returns a boolean if a field has been set.

func (*CreditCardPaymentMethod) HasExpirationMonth ¶

func (o *CreditCardPaymentMethod) HasExpirationMonth() bool

HasExpirationMonth returns a boolean if a field has been set.

func (*CreditCardPaymentMethod) HasExpirationYear ¶

func (o *CreditCardPaymentMethod) HasExpirationYear() bool

HasExpirationYear returns a boolean if a field has been set.

func (*CreditCardPaymentMethod) HasNumber ¶

func (o *CreditCardPaymentMethod) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*CreditCardPaymentMethod) HasType ¶

func (o *CreditCardPaymentMethod) HasType() bool

HasType returns a boolean if a field has been set.

func (CreditCardPaymentMethod) MarshalJSON ¶

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

func (*CreditCardPaymentMethod) SetCvc ¶

func (o *CreditCardPaymentMethod) SetCvc(v string)

SetCvc gets a reference to the given string and assigns it to the Cvc field.

func (*CreditCardPaymentMethod) SetExpirationMonth ¶

func (o *CreditCardPaymentMethod) SetExpirationMonth(v string)

SetExpirationMonth gets a reference to the given string and assigns it to the ExpirationMonth field.

func (*CreditCardPaymentMethod) SetExpirationYear ¶

func (o *CreditCardPaymentMethod) SetExpirationYear(v string)

SetExpirationYear gets a reference to the given string and assigns it to the ExpirationYear field.

func (*CreditCardPaymentMethod) SetNumber ¶

func (o *CreditCardPaymentMethod) SetNumber(v string)

SetNumber gets a reference to the given string and assigns it to the Number field.

func (*CreditCardPaymentMethod) SetType ¶

func (o *CreditCardPaymentMethod) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type CreditCardPaymentMethodAllOf ¶

type CreditCardPaymentMethodAllOf struct {
	Type            *string `json:"type,omitempty"`
	Number          *string `json:"number,omitempty"`
	Cvc             *string `json:"cvc,omitempty"`
	ExpirationMonth *string `json:"expiration_month,omitempty"`
	ExpirationYear  *string `json:"expiration_year,omitempty"`
}

CreditCardPaymentMethodAllOf struct for CreditCardPaymentMethodAllOf

func NewCreditCardPaymentMethodAllOf ¶

func NewCreditCardPaymentMethodAllOf() *CreditCardPaymentMethodAllOf

NewCreditCardPaymentMethodAllOf instantiates a new CreditCardPaymentMethodAllOf 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 NewCreditCardPaymentMethodAllOfWithDefaults ¶

func NewCreditCardPaymentMethodAllOfWithDefaults() *CreditCardPaymentMethodAllOf

NewCreditCardPaymentMethodAllOfWithDefaults instantiates a new CreditCardPaymentMethodAllOf 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 (*CreditCardPaymentMethodAllOf) GetCvc ¶

GetCvc returns the Cvc field value if set, zero value otherwise.

func (*CreditCardPaymentMethodAllOf) GetCvcOk ¶

func (o *CreditCardPaymentMethodAllOf) GetCvcOk() (*string, bool)

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

func (*CreditCardPaymentMethodAllOf) GetExpirationMonth ¶

func (o *CreditCardPaymentMethodAllOf) GetExpirationMonth() string

GetExpirationMonth returns the ExpirationMonth field value if set, zero value otherwise.

func (*CreditCardPaymentMethodAllOf) GetExpirationMonthOk ¶

func (o *CreditCardPaymentMethodAllOf) GetExpirationMonthOk() (*string, bool)

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

func (*CreditCardPaymentMethodAllOf) GetExpirationYear ¶

func (o *CreditCardPaymentMethodAllOf) GetExpirationYear() string

GetExpirationYear returns the ExpirationYear field value if set, zero value otherwise.

func (*CreditCardPaymentMethodAllOf) GetExpirationYearOk ¶

func (o *CreditCardPaymentMethodAllOf) GetExpirationYearOk() (*string, bool)

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

func (*CreditCardPaymentMethodAllOf) GetNumber ¶

func (o *CreditCardPaymentMethodAllOf) GetNumber() string

GetNumber returns the Number field value if set, zero value otherwise.

func (*CreditCardPaymentMethodAllOf) GetNumberOk ¶

func (o *CreditCardPaymentMethodAllOf) GetNumberOk() (*string, bool)

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

func (*CreditCardPaymentMethodAllOf) GetType ¶

func (o *CreditCardPaymentMethodAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CreditCardPaymentMethodAllOf) GetTypeOk ¶

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

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

func (*CreditCardPaymentMethodAllOf) HasCvc ¶

func (o *CreditCardPaymentMethodAllOf) HasCvc() bool

HasCvc returns a boolean if a field has been set.

func (*CreditCardPaymentMethodAllOf) HasExpirationMonth ¶

func (o *CreditCardPaymentMethodAllOf) HasExpirationMonth() bool

HasExpirationMonth returns a boolean if a field has been set.

func (*CreditCardPaymentMethodAllOf) HasExpirationYear ¶

func (o *CreditCardPaymentMethodAllOf) HasExpirationYear() bool

HasExpirationYear returns a boolean if a field has been set.

func (*CreditCardPaymentMethodAllOf) HasNumber ¶

func (o *CreditCardPaymentMethodAllOf) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*CreditCardPaymentMethodAllOf) HasType ¶

func (o *CreditCardPaymentMethodAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (CreditCardPaymentMethodAllOf) MarshalJSON ¶

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

func (*CreditCardPaymentMethodAllOf) SetCvc ¶

func (o *CreditCardPaymentMethodAllOf) SetCvc(v string)

SetCvc gets a reference to the given string and assigns it to the Cvc field.

func (*CreditCardPaymentMethodAllOf) SetExpirationMonth ¶

func (o *CreditCardPaymentMethodAllOf) SetExpirationMonth(v string)

SetExpirationMonth gets a reference to the given string and assigns it to the ExpirationMonth field.

func (*CreditCardPaymentMethodAllOf) SetExpirationYear ¶

func (o *CreditCardPaymentMethodAllOf) SetExpirationYear(v string)

SetExpirationYear gets a reference to the given string and assigns it to the ExpirationYear field.

func (*CreditCardPaymentMethodAllOf) SetNumber ¶

func (o *CreditCardPaymentMethodAllOf) SetNumber(v string)

SetNumber gets a reference to the given string and assigns it to the Number field.

func (*CreditCardPaymentMethodAllOf) SetType ¶

func (o *CreditCardPaymentMethodAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type CronSchedule ¶

type CronSchedule struct {
	Schedule
	Type             *string `json:"type,omitempty"`
	CronExpression   *string `json:"cron_expression,omitempty"`
	Timezone         *string `json:"timezone,omitempty"`
	InfrastructureId *string `json:"infrastructure_id,omitempty"`
	DeviceId         *string `json:"device_id,omitempty"`
}

CronSchedule struct for CronSchedule

func NewCronSchedule ¶

func NewCronSchedule() *CronSchedule

NewCronSchedule instantiates a new CronSchedule 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 NewCronScheduleWithDefaults ¶

func NewCronScheduleWithDefaults() *CronSchedule

NewCronScheduleWithDefaults instantiates a new CronSchedule 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 (*CronSchedule) GetCronExpression ¶

func (o *CronSchedule) GetCronExpression() string

GetCronExpression returns the CronExpression field value if set, zero value otherwise.

func (*CronSchedule) GetCronExpressionOk ¶

func (o *CronSchedule) GetCronExpressionOk() (*string, bool)

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

func (*CronSchedule) GetDeviceId ¶ added in v1.10.3

func (o *CronSchedule) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*CronSchedule) GetDeviceIdOk ¶ added in v1.10.3

func (o *CronSchedule) GetDeviceIdOk() (*string, bool)

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

func (*CronSchedule) GetInfrastructureId ¶

func (o *CronSchedule) GetInfrastructureId() string

GetInfrastructureId returns the InfrastructureId field value if set, zero value otherwise.

func (*CronSchedule) GetInfrastructureIdOk ¶

func (o *CronSchedule) GetInfrastructureIdOk() (*string, bool)

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

func (*CronSchedule) GetTimezone ¶

func (o *CronSchedule) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*CronSchedule) GetTimezoneOk ¶

func (o *CronSchedule) GetTimezoneOk() (*string, bool)

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

func (*CronSchedule) GetType ¶

func (o *CronSchedule) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CronSchedule) GetTypeOk ¶

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

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

func (*CronSchedule) HasCronExpression ¶

func (o *CronSchedule) HasCronExpression() bool

HasCronExpression returns a boolean if a field has been set.

func (*CronSchedule) HasDeviceId ¶ added in v1.10.3

func (o *CronSchedule) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*CronSchedule) HasInfrastructureId ¶

func (o *CronSchedule) HasInfrastructureId() bool

HasInfrastructureId returns a boolean if a field has been set.

func (*CronSchedule) HasTimezone ¶

func (o *CronSchedule) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*CronSchedule) HasType ¶

func (o *CronSchedule) HasType() bool

HasType returns a boolean if a field has been set.

func (CronSchedule) MarshalJSON ¶

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

func (*CronSchedule) SetCronExpression ¶

func (o *CronSchedule) SetCronExpression(v string)

SetCronExpression gets a reference to the given string and assigns it to the CronExpression field.

func (*CronSchedule) SetDeviceId ¶ added in v1.10.3

func (o *CronSchedule) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*CronSchedule) SetInfrastructureId ¶

func (o *CronSchedule) SetInfrastructureId(v string)

SetInfrastructureId gets a reference to the given string and assigns it to the InfrastructureId field.

func (*CronSchedule) SetTimezone ¶

func (o *CronSchedule) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*CronSchedule) SetType ¶

func (o *CronSchedule) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CronSchedule) ToMap ¶ added in v1.10.3

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

type CronScheduleAllOf ¶

type CronScheduleAllOf struct {
	Type             *string `json:"type,omitempty"`
	CronExpression   *string `json:"cron_expression,omitempty"`
	Timezone         *string `json:"timezone,omitempty"`
	InfrastructureId *string `json:"infrastructure_id,omitempty"`
	DeviceId         *string `json:"device_id,omitempty"`
}

CronScheduleAllOf struct for CronScheduleAllOf

func NewCronScheduleAllOf ¶

func NewCronScheduleAllOf() *CronScheduleAllOf

NewCronScheduleAllOf instantiates a new CronScheduleAllOf 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 NewCronScheduleAllOfWithDefaults ¶

func NewCronScheduleAllOfWithDefaults() *CronScheduleAllOf

NewCronScheduleAllOfWithDefaults instantiates a new CronScheduleAllOf 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 (*CronScheduleAllOf) GetCronExpression ¶

func (o *CronScheduleAllOf) GetCronExpression() string

GetCronExpression returns the CronExpression field value if set, zero value otherwise.

func (*CronScheduleAllOf) GetCronExpressionOk ¶

func (o *CronScheduleAllOf) GetCronExpressionOk() (*string, bool)

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

func (*CronScheduleAllOf) GetDeviceId ¶ added in v1.10.3

func (o *CronScheduleAllOf) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*CronScheduleAllOf) GetDeviceIdOk ¶ added in v1.10.3

func (o *CronScheduleAllOf) GetDeviceIdOk() (*string, bool)

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

func (*CronScheduleAllOf) GetInfrastructureId ¶

func (o *CronScheduleAllOf) GetInfrastructureId() string

GetInfrastructureId returns the InfrastructureId field value if set, zero value otherwise.

func (*CronScheduleAllOf) GetInfrastructureIdOk ¶

func (o *CronScheduleAllOf) GetInfrastructureIdOk() (*string, bool)

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

func (*CronScheduleAllOf) GetTimezone ¶

func (o *CronScheduleAllOf) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*CronScheduleAllOf) GetTimezoneOk ¶

func (o *CronScheduleAllOf) GetTimezoneOk() (*string, bool)

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

func (*CronScheduleAllOf) GetType ¶

func (o *CronScheduleAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CronScheduleAllOf) GetTypeOk ¶

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

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

func (*CronScheduleAllOf) HasCronExpression ¶

func (o *CronScheduleAllOf) HasCronExpression() bool

HasCronExpression returns a boolean if a field has been set.

func (*CronScheduleAllOf) HasDeviceId ¶ added in v1.10.3

func (o *CronScheduleAllOf) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*CronScheduleAllOf) HasInfrastructureId ¶

func (o *CronScheduleAllOf) HasInfrastructureId() bool

HasInfrastructureId returns a boolean if a field has been set.

func (*CronScheduleAllOf) HasTimezone ¶

func (o *CronScheduleAllOf) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (*CronScheduleAllOf) HasType ¶

func (o *CronScheduleAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (CronScheduleAllOf) MarshalJSON ¶

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

func (*CronScheduleAllOf) SetCronExpression ¶

func (o *CronScheduleAllOf) SetCronExpression(v string)

SetCronExpression gets a reference to the given string and assigns it to the CronExpression field.

func (*CronScheduleAllOf) SetDeviceId ¶ added in v1.10.3

func (o *CronScheduleAllOf) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*CronScheduleAllOf) SetInfrastructureId ¶

func (o *CronScheduleAllOf) SetInfrastructureId(v string)

SetInfrastructureId gets a reference to the given string and assigns it to the InfrastructureId field.

func (*CronScheduleAllOf) SetTimezone ¶

func (o *CronScheduleAllOf) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*CronScheduleAllOf) SetType ¶

func (o *CronScheduleAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type CsvReader ¶ added in v1.10.3

type CsvReader struct {
	// Path to CSV file.
	Path string `json:"path"`
	// Delimiter to use between columns.
	Separator *string `json:"separator,omitempty"`
	// Is the first row the header?
	Header *bool `json:"header,omitempty"`
	// Alias for separator.
	Delimiter *string `json:"delimiter,omitempty"`
	// Define file type for CSV.
	Type *string `json:"type,omitempty"`
}

CsvReader struct for CsvReader

func NewCsvReader ¶ added in v1.10.3

func NewCsvReader(path string) *CsvReader

NewCsvReader instantiates a new CsvReader 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 NewCsvReaderWithDefaults ¶ added in v1.10.3

func NewCsvReaderWithDefaults() *CsvReader

NewCsvReaderWithDefaults instantiates a new CsvReader 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 (*CsvReader) GetDelimiter ¶ added in v1.10.3

func (o *CsvReader) GetDelimiter() string

GetDelimiter returns the Delimiter field value if set, zero value otherwise.

func (*CsvReader) GetDelimiterOk ¶ added in v1.10.3

func (o *CsvReader) GetDelimiterOk() (*string, bool)

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

func (*CsvReader) GetHeader ¶ added in v1.10.3

func (o *CsvReader) GetHeader() bool

GetHeader returns the Header field value if set, zero value otherwise.

func (*CsvReader) GetHeaderOk ¶ added in v1.10.3

func (o *CsvReader) GetHeaderOk() (*bool, bool)

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

func (*CsvReader) GetPath ¶ added in v1.10.3

func (o *CsvReader) GetPath() string

GetPath returns the Path field value

func (*CsvReader) GetPathOk ¶ added in v1.10.3

func (o *CsvReader) GetPathOk() (*string, bool)

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

func (*CsvReader) GetSeparator ¶ added in v1.10.3

func (o *CsvReader) GetSeparator() string

GetSeparator returns the Separator field value if set, zero value otherwise.

func (*CsvReader) GetSeparatorOk ¶ added in v1.10.3

func (o *CsvReader) GetSeparatorOk() (*string, bool)

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

func (*CsvReader) GetType ¶ added in v1.10.3

func (o *CsvReader) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CsvReader) GetTypeOk ¶ added in v1.10.3

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

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

func (*CsvReader) HasDelimiter ¶ added in v1.10.3

func (o *CsvReader) HasDelimiter() bool

HasDelimiter returns a boolean if a field has been set.

func (*CsvReader) HasHeader ¶ added in v1.10.3

func (o *CsvReader) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*CsvReader) HasSeparator ¶ added in v1.10.3

func (o *CsvReader) HasSeparator() bool

HasSeparator returns a boolean if a field has been set.

func (*CsvReader) HasType ¶ added in v1.10.3

func (o *CsvReader) HasType() bool

HasType returns a boolean if a field has been set.

func (CsvReader) MarshalJSON ¶ added in v1.10.3

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

func (*CsvReader) SetDelimiter ¶ added in v1.10.3

func (o *CsvReader) SetDelimiter(v string)

SetDelimiter gets a reference to the given string and assigns it to the Delimiter field.

func (*CsvReader) SetHeader ¶ added in v1.10.3

func (o *CsvReader) SetHeader(v bool)

SetHeader gets a reference to the given bool and assigns it to the Header field.

func (*CsvReader) SetPath ¶ added in v1.10.3

func (o *CsvReader) SetPath(v string)

SetPath sets field value

func (*CsvReader) SetSeparator ¶ added in v1.10.3

func (o *CsvReader) SetSeparator(v string)

SetSeparator gets a reference to the given string and assigns it to the Separator field.

func (*CsvReader) SetType ¶ added in v1.10.3

func (o *CsvReader) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CsvReader) ToMap ¶ added in v1.10.3

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

func (*CsvReader) UnmarshalJSON ¶ added in v1.10.3

func (o *CsvReader) UnmarshalJSON(bytes []byte) (err error)

type CsvWriter ¶ added in v1.10.3

type CsvWriter struct {
	// Delimiter to use between columns.
	Separator *string `json:"separator,omitempty"`
	// Is the first row the header?
	Header *bool `json:"header,omitempty"`
	// Alias for separator.
	Delimiter *string `json:"delimiter,omitempty"`
	// Type of on-the-fly decompression to use.
	Compression *string `json:"compression,omitempty"`
	// Is the first column an index?
	Index *bool `json:"index,omitempty"`
	// Path to CSV file.
	Path string `json:"path"`
	// Define file type for CSV.
	Type *string `json:"type,omitempty"`
}

CsvWriter struct for CsvWriter

func NewCsvWriter ¶ added in v1.10.3

func NewCsvWriter(path string) *CsvWriter

NewCsvWriter instantiates a new CsvWriter 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 NewCsvWriterWithDefaults ¶ added in v1.10.3

func NewCsvWriterWithDefaults() *CsvWriter

NewCsvWriterWithDefaults instantiates a new CsvWriter 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 (*CsvWriter) GetCompression ¶ added in v1.10.3

func (o *CsvWriter) GetCompression() string

GetCompression returns the Compression field value if set, zero value otherwise.

func (*CsvWriter) GetCompressionOk ¶ added in v1.10.3

func (o *CsvWriter) GetCompressionOk() (*string, bool)

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

func (*CsvWriter) GetDelimiter ¶ added in v1.10.3

func (o *CsvWriter) GetDelimiter() string

GetDelimiter returns the Delimiter field value if set, zero value otherwise.

func (*CsvWriter) GetDelimiterOk ¶ added in v1.10.3

func (o *CsvWriter) GetDelimiterOk() (*string, bool)

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

func (*CsvWriter) GetHeader ¶ added in v1.10.3

func (o *CsvWriter) GetHeader() bool

GetHeader returns the Header field value if set, zero value otherwise.

func (*CsvWriter) GetHeaderOk ¶ added in v1.10.3

func (o *CsvWriter) GetHeaderOk() (*bool, bool)

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

func (*CsvWriter) GetIndex ¶ added in v1.10.3

func (o *CsvWriter) GetIndex() bool

GetIndex returns the Index field value if set, zero value otherwise.

func (*CsvWriter) GetIndexOk ¶ added in v1.10.3

func (o *CsvWriter) GetIndexOk() (*bool, bool)

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

func (*CsvWriter) GetPath ¶ added in v1.10.3

func (o *CsvWriter) GetPath() string

GetPath returns the Path field value

func (*CsvWriter) GetPathOk ¶ added in v1.10.3

func (o *CsvWriter) GetPathOk() (*string, bool)

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

func (*CsvWriter) GetSeparator ¶ added in v1.10.3

func (o *CsvWriter) GetSeparator() string

GetSeparator returns the Separator field value if set, zero value otherwise.

func (*CsvWriter) GetSeparatorOk ¶ added in v1.10.3

func (o *CsvWriter) GetSeparatorOk() (*string, bool)

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

func (*CsvWriter) GetType ¶ added in v1.10.3

func (o *CsvWriter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*CsvWriter) GetTypeOk ¶ added in v1.10.3

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

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

func (*CsvWriter) HasCompression ¶ added in v1.10.3

func (o *CsvWriter) HasCompression() bool

HasCompression returns a boolean if a field has been set.

func (*CsvWriter) HasDelimiter ¶ added in v1.10.3

func (o *CsvWriter) HasDelimiter() bool

HasDelimiter returns a boolean if a field has been set.

func (*CsvWriter) HasHeader ¶ added in v1.10.3

func (o *CsvWriter) HasHeader() bool

HasHeader returns a boolean if a field has been set.

func (*CsvWriter) HasIndex ¶ added in v1.10.3

func (o *CsvWriter) HasIndex() bool

HasIndex returns a boolean if a field has been set.

func (*CsvWriter) HasSeparator ¶ added in v1.10.3

func (o *CsvWriter) HasSeparator() bool

HasSeparator returns a boolean if a field has been set.

func (*CsvWriter) HasType ¶ added in v1.10.3

func (o *CsvWriter) HasType() bool

HasType returns a boolean if a field has been set.

func (CsvWriter) MarshalJSON ¶ added in v1.10.3

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

func (*CsvWriter) SetCompression ¶ added in v1.10.3

func (o *CsvWriter) SetCompression(v string)

SetCompression gets a reference to the given string and assigns it to the Compression field.

func (*CsvWriter) SetDelimiter ¶ added in v1.10.3

func (o *CsvWriter) SetDelimiter(v string)

SetDelimiter gets a reference to the given string and assigns it to the Delimiter field.

func (*CsvWriter) SetHeader ¶ added in v1.10.3

func (o *CsvWriter) SetHeader(v bool)

SetHeader gets a reference to the given bool and assigns it to the Header field.

func (*CsvWriter) SetIndex ¶ added in v1.10.3

func (o *CsvWriter) SetIndex(v bool)

SetIndex gets a reference to the given bool and assigns it to the Index field.

func (*CsvWriter) SetPath ¶ added in v1.10.3

func (o *CsvWriter) SetPath(v string)

SetPath sets field value

func (*CsvWriter) SetSeparator ¶ added in v1.10.3

func (o *CsvWriter) SetSeparator(v string)

SetSeparator gets a reference to the given string and assigns it to the Separator field.

func (*CsvWriter) SetType ¶ added in v1.10.3

func (o *CsvWriter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (CsvWriter) ToMap ¶ added in v1.10.3

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

func (*CsvWriter) UnmarshalJSON ¶ added in v1.10.3

func (o *CsvWriter) UnmarshalJSON(bytes []byte) (err error)

type DB2Options ¶ added in v1.10.3

type DB2Options struct {
	DataWarehouseOptions
	Host     *string  `json:"host,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Database *string  `json:"database,omitempty"`
	Schema   *string  `json:"schema,omitempty"`
	Type     *string  `json:"type,omitempty"`
}

DB2Options struct for DB2Options

func NewDB2Options ¶ added in v1.10.3

func NewDB2Options() *DB2Options

NewDB2Options instantiates a new DB2Options 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 NewDB2OptionsWithDefaults ¶ added in v1.10.3

func NewDB2OptionsWithDefaults() *DB2Options

NewDB2OptionsWithDefaults instantiates a new DB2Options 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 (*DB2Options) GetDatabase ¶ added in v1.10.3

func (o *DB2Options) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*DB2Options) GetDatabaseOk ¶ added in v1.10.3

func (o *DB2Options) GetDatabaseOk() (*string, bool)

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

func (*DB2Options) GetHost ¶ added in v1.10.3

func (o *DB2Options) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*DB2Options) GetHostOk ¶ added in v1.10.3

func (o *DB2Options) GetHostOk() (*string, bool)

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

func (*DB2Options) GetPort ¶ added in v1.10.3

func (o *DB2Options) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*DB2Options) GetPortOk ¶ added in v1.10.3

func (o *DB2Options) GetPortOk() (*float32, bool)

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

func (*DB2Options) GetSchema ¶ added in v1.10.3

func (o *DB2Options) GetSchema() string

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

func (*DB2Options) GetSchemaOk ¶ added in v1.10.3

func (o *DB2Options) 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 (*DB2Options) GetType ¶ added in v1.10.3

func (o *DB2Options) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DB2Options) GetTypeOk ¶ added in v1.10.3

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

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

func (*DB2Options) HasDatabase ¶ added in v1.10.3

func (o *DB2Options) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*DB2Options) HasHost ¶ added in v1.10.3

func (o *DB2Options) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*DB2Options) HasPort ¶ added in v1.10.3

func (o *DB2Options) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*DB2Options) HasSchema ¶ added in v1.10.3

func (o *DB2Options) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*DB2Options) HasType ¶ added in v1.10.3

func (o *DB2Options) HasType() bool

HasType returns a boolean if a field has been set.

func (DB2Options) MarshalJSON ¶ added in v1.10.3

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

func (*DB2Options) SetDatabase ¶ added in v1.10.3

func (o *DB2Options) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*DB2Options) SetHost ¶ added in v1.10.3

func (o *DB2Options) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*DB2Options) SetPort ¶ added in v1.10.3

func (o *DB2Options) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

func (*DB2Options) SetSchema ¶ added in v1.10.3

func (o *DB2Options) SetSchema(v string)

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

func (*DB2Options) SetType ¶ added in v1.10.3

func (o *DB2Options) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (DB2Options) ToMap ¶ added in v1.10.3

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

type DB2OptionsAllOf ¶ added in v1.10.3

type DB2OptionsAllOf struct {
	Type *string `json:"type,omitempty"`
}

DB2OptionsAllOf struct for DB2OptionsAllOf

func NewDB2OptionsAllOf ¶ added in v1.10.3

func NewDB2OptionsAllOf() *DB2OptionsAllOf

NewDB2OptionsAllOf instantiates a new DB2OptionsAllOf 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 NewDB2OptionsAllOfWithDefaults ¶ added in v1.10.3

func NewDB2OptionsAllOfWithDefaults() *DB2OptionsAllOf

NewDB2OptionsAllOfWithDefaults instantiates a new DB2OptionsAllOf 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 (*DB2OptionsAllOf) GetType ¶ added in v1.10.3

func (o *DB2OptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DB2OptionsAllOf) GetTypeOk ¶ added in v1.10.3

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

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

func (*DB2OptionsAllOf) HasType ¶ added in v1.10.3

func (o *DB2OptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (DB2OptionsAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*DB2OptionsAllOf) SetType ¶ added in v1.10.3

func (o *DB2OptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type DBConnector ¶ added in v1.10.3

type DBConnector struct {
	// Connector type for a database connector like SQL
	Type *string `json:"type,omitempty"`
	// Options to connect to a database.
	Options map[string]interface{} `json:"options,omitempty"`
}

DBConnector Connector for databases. Attributes ---------- type : ConnectorType Database type of connector. options : DBConnectorOptions Options to connect to a database.

func NewDBConnector ¶ added in v1.10.3

func NewDBConnector() *DBConnector

NewDBConnector instantiates a new DBConnector 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 NewDBConnectorWithDefaults ¶ added in v1.10.3

func NewDBConnectorWithDefaults() *DBConnector

NewDBConnectorWithDefaults instantiates a new DBConnector 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 (*DBConnector) GetOptions ¶ added in v1.10.3

func (o *DBConnector) GetOptions() map[string]interface{}

GetOptions returns the Options field value if set, zero value otherwise.

func (*DBConnector) GetOptionsOk ¶ added in v1.10.3

func (o *DBConnector) GetOptionsOk() (map[string]interface{}, 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.

func (*DBConnector) GetType ¶ added in v1.10.3

func (o *DBConnector) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DBConnector) GetTypeOk ¶ added in v1.10.3

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

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

func (*DBConnector) HasOptions ¶ added in v1.10.3

func (o *DBConnector) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*DBConnector) HasType ¶ added in v1.10.3

func (o *DBConnector) HasType() bool

HasType returns a boolean if a field has been set.

func (DBConnector) MarshalJSON ¶ added in v1.10.3

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

func (*DBConnector) SetOptions ¶ added in v1.10.3

func (o *DBConnector) SetOptions(v map[string]interface{})

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

func (*DBConnector) SetType ¶ added in v1.10.3

func (o *DBConnector) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (DBConnector) ToMap ¶ added in v1.10.3

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

type Dag ¶ added in v1.10.3

type Dag struct {
	// Identifier of the Directed Acyclic Graph (DAG).
	Id string `json:"id"`
	// List of tasks that compose the DAG.
	Tasks []TaskListInner `json:"tasks"`
}

Dag DagUnverified with verified schema and framework compatibility.

func NewDag ¶ added in v1.10.3

func NewDag(id string, tasks []TaskListInner) *Dag

NewDag instantiates a new Dag 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 NewDagWithDefaults ¶ added in v1.10.3

func NewDagWithDefaults() *Dag

NewDagWithDefaults instantiates a new Dag 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 (*Dag) GetId ¶ added in v1.10.3

func (o *Dag) GetId() string

GetId returns the Id field value

func (*Dag) GetIdOk ¶ added in v1.10.3

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

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

func (*Dag) GetTasks ¶ added in v1.10.3

func (o *Dag) GetTasks() []TaskListInner

GetTasks returns the Tasks field value

func (*Dag) GetTasksOk ¶ added in v1.10.3

func (o *Dag) GetTasksOk() ([]TaskListInner, bool)

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

func (Dag) MarshalJSON ¶ added in v1.10.3

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

func (*Dag) SetId ¶ added in v1.10.3

func (o *Dag) SetId(v string)

SetId sets field value

func (*Dag) SetTasks ¶ added in v1.10.3

func (o *Dag) SetTasks(v []TaskListInner)

SetTasks sets field value

func (Dag) ToMap ¶ added in v1.10.3

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

func (*Dag) UnmarshalJSON ¶ added in v1.10.3

func (o *Dag) UnmarshalJSON(bytes []byte) (err error)

type DagUnverified ¶ added in v1.10.3

type DagUnverified struct {
	// Identifier of the Directed Acyclic Graph (DAG).
	Id string `json:"id"`
	// List of tasks that compose the DAG.
	Tasks []TaskListInner `json:"tasks"`
}

DagUnverified Creates a DAG (Directed Acyclic Graph) from a JSON file. Attributes ---------- id : str Identifier of the DAG. tasks : ListIntVisited Tasks that make up the DAG. Methods ------- check_dependencies(tasks) Checks if the tasks dependencies are valid. check_circle(tasks) Checks that there are no circular dependencies in the DAG. get_zipped_code(language: LanguageType) Returns the requirements and code in a zipped folder. get_nodes(tasks) Returns all the information of the DAG as a list of tasks. get_edges(tasks) Get all two-by-two dependencies between tasks. to_graph(tasks) Create a graph from the DAG with the edges and nodes.

func NewDagUnverified ¶ added in v1.10.3

func NewDagUnverified(id string, tasks []TaskListInner) *DagUnverified

NewDagUnverified instantiates a new DagUnverified 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 NewDagUnverifiedWithDefaults ¶ added in v1.10.3

func NewDagUnverifiedWithDefaults() *DagUnverified

NewDagUnverifiedWithDefaults instantiates a new DagUnverified 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 (*DagUnverified) GetId ¶ added in v1.10.3

func (o *DagUnverified) GetId() string

GetId returns the Id field value

func (*DagUnverified) GetIdOk ¶ added in v1.10.3

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

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

func (*DagUnverified) GetTasks ¶ added in v1.10.3

func (o *DagUnverified) GetTasks() []TaskListInner

GetTasks returns the Tasks field value

func (*DagUnverified) GetTasksOk ¶ added in v1.10.3

func (o *DagUnverified) GetTasksOk() ([]TaskListInner, bool)

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

func (DagUnverified) MarshalJSON ¶ added in v1.10.3

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

func (*DagUnverified) SetId ¶ added in v1.10.3

func (o *DagUnverified) SetId(v string)

SetId sets field value

func (*DagUnverified) SetTasks ¶ added in v1.10.3

func (o *DagUnverified) SetTasks(v []TaskListInner)

SetTasks sets field value

func (DagUnverified) ToMap ¶ added in v1.10.3

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

func (*DagUnverified) UnmarshalJSON ¶ added in v1.10.3

func (o *DagUnverified) UnmarshalJSON(bytes []byte) (err error)

type DaskOptions ¶

type DaskOptions struct {
	Options
	Type               *string  `json:"type,omitempty"`
	PackageName        *string  `json:"package_name,omitempty"`
	ModuleName         *string  `json:"module_name,omitempty"`
	FunctionName       *string  `json:"function_name,omitempty"`
	NumberWorkers      *float32 `json:"number_workers,omitempty"`
	NumberWorkersMax   *float32 `json:"number_workers_max,omitempty"`
	DriverInstanceType *string  `json:"driver_instance_type,omitempty"`
	WorkerInstanceType *string  `json:"worker_instance_type,omitempty"`
}

DaskOptions struct for DaskOptions

func NewDaskOptions ¶

func NewDaskOptions() *DaskOptions

NewDaskOptions instantiates a new DaskOptions 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 NewDaskOptionsWithDefaults ¶

func NewDaskOptionsWithDefaults() *DaskOptions

NewDaskOptionsWithDefaults instantiates a new DaskOptions 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 (*DaskOptions) GetDriverInstanceType ¶

func (o *DaskOptions) GetDriverInstanceType() string

GetDriverInstanceType returns the DriverInstanceType field value if set, zero value otherwise.

func (*DaskOptions) GetDriverInstanceTypeOk ¶

func (o *DaskOptions) GetDriverInstanceTypeOk() (*string, bool)

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

func (*DaskOptions) GetFunctionName ¶

func (o *DaskOptions) GetFunctionName() string

GetFunctionName returns the FunctionName field value if set, zero value otherwise.

func (*DaskOptions) GetFunctionNameOk ¶

func (o *DaskOptions) GetFunctionNameOk() (*string, bool)

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

func (*DaskOptions) GetModuleName ¶

func (o *DaskOptions) GetModuleName() string

GetModuleName returns the ModuleName field value if set, zero value otherwise.

func (*DaskOptions) GetModuleNameOk ¶

func (o *DaskOptions) GetModuleNameOk() (*string, bool)

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

func (*DaskOptions) GetNumberWorkers ¶

func (o *DaskOptions) GetNumberWorkers() float32

GetNumberWorkers returns the NumberWorkers field value if set, zero value otherwise.

func (*DaskOptions) GetNumberWorkersMax ¶

func (o *DaskOptions) GetNumberWorkersMax() float32

GetNumberWorkersMax returns the NumberWorkersMax field value if set, zero value otherwise.

func (*DaskOptions) GetNumberWorkersMaxOk ¶

func (o *DaskOptions) GetNumberWorkersMaxOk() (*float32, bool)

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

func (*DaskOptions) GetNumberWorkersOk ¶

func (o *DaskOptions) GetNumberWorkersOk() (*float32, bool)

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

func (*DaskOptions) GetPackageName ¶

func (o *DaskOptions) GetPackageName() string

GetPackageName returns the PackageName field value if set, zero value otherwise.

func (*DaskOptions) GetPackageNameOk ¶

func (o *DaskOptions) GetPackageNameOk() (*string, bool)

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

func (*DaskOptions) GetType ¶

func (o *DaskOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DaskOptions) GetTypeOk ¶

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

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

func (*DaskOptions) GetWorkerInstanceType ¶

func (o *DaskOptions) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*DaskOptions) GetWorkerInstanceTypeOk ¶

func (o *DaskOptions) GetWorkerInstanceTypeOk() (*string, bool)

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

func (*DaskOptions) HasDriverInstanceType ¶

func (o *DaskOptions) HasDriverInstanceType() bool

HasDriverInstanceType returns a boolean if a field has been set.

func (*DaskOptions) HasFunctionName ¶

func (o *DaskOptions) HasFunctionName() bool

HasFunctionName returns a boolean if a field has been set.

func (*DaskOptions) HasModuleName ¶

func (o *DaskOptions) HasModuleName() bool

HasModuleName returns a boolean if a field has been set.

func (*DaskOptions) HasNumberWorkers ¶

func (o *DaskOptions) HasNumberWorkers() bool

HasNumberWorkers returns a boolean if a field has been set.

func (*DaskOptions) HasNumberWorkersMax ¶

func (o *DaskOptions) HasNumberWorkersMax() bool

HasNumberWorkersMax returns a boolean if a field has been set.

func (*DaskOptions) HasPackageName ¶

func (o *DaskOptions) HasPackageName() bool

HasPackageName returns a boolean if a field has been set.

func (*DaskOptions) HasType ¶

func (o *DaskOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (*DaskOptions) HasWorkerInstanceType ¶

func (o *DaskOptions) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (DaskOptions) MarshalJSON ¶

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

func (*DaskOptions) SetDriverInstanceType ¶

func (o *DaskOptions) SetDriverInstanceType(v string)

SetDriverInstanceType gets a reference to the given string and assigns it to the DriverInstanceType field.

func (*DaskOptions) SetFunctionName ¶

func (o *DaskOptions) SetFunctionName(v string)

SetFunctionName gets a reference to the given string and assigns it to the FunctionName field.

func (*DaskOptions) SetModuleName ¶

func (o *DaskOptions) SetModuleName(v string)

SetModuleName gets a reference to the given string and assigns it to the ModuleName field.

func (*DaskOptions) SetNumberWorkers ¶

func (o *DaskOptions) SetNumberWorkers(v float32)

SetNumberWorkers gets a reference to the given float32 and assigns it to the NumberWorkers field.

func (*DaskOptions) SetNumberWorkersMax ¶

func (o *DaskOptions) SetNumberWorkersMax(v float32)

SetNumberWorkersMax gets a reference to the given float32 and assigns it to the NumberWorkersMax field.

func (*DaskOptions) SetPackageName ¶

func (o *DaskOptions) SetPackageName(v string)

SetPackageName gets a reference to the given string and assigns it to the PackageName field.

func (*DaskOptions) SetType ¶

func (o *DaskOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*DaskOptions) SetWorkerInstanceType ¶

func (o *DaskOptions) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

func (DaskOptions) ToMap ¶ added in v1.10.3

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

type DaskOptionsAllOf ¶

type DaskOptionsAllOf struct {
	Type               *string  `json:"type,omitempty"`
	PackageName        *string  `json:"package_name,omitempty"`
	ModuleName         *string  `json:"module_name,omitempty"`
	FunctionName       *string  `json:"function_name,omitempty"`
	NumberWorkers      *float32 `json:"number_workers,omitempty"`
	NumberWorkersMax   *float32 `json:"number_workers_max,omitempty"`
	DriverInstanceType *string  `json:"driver_instance_type,omitempty"`
	WorkerInstanceType *string  `json:"worker_instance_type,omitempty"`
}

DaskOptionsAllOf struct for DaskOptionsAllOf

func NewDaskOptionsAllOf ¶

func NewDaskOptionsAllOf() *DaskOptionsAllOf

NewDaskOptionsAllOf instantiates a new DaskOptionsAllOf 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 NewDaskOptionsAllOfWithDefaults ¶

func NewDaskOptionsAllOfWithDefaults() *DaskOptionsAllOf

NewDaskOptionsAllOfWithDefaults instantiates a new DaskOptionsAllOf 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 (*DaskOptionsAllOf) GetDriverInstanceType ¶

func (o *DaskOptionsAllOf) GetDriverInstanceType() string

GetDriverInstanceType returns the DriverInstanceType field value if set, zero value otherwise.

func (*DaskOptionsAllOf) GetDriverInstanceTypeOk ¶

func (o *DaskOptionsAllOf) GetDriverInstanceTypeOk() (*string, bool)

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

func (*DaskOptionsAllOf) GetFunctionName ¶

func (o *DaskOptionsAllOf) GetFunctionName() string

GetFunctionName returns the FunctionName field value if set, zero value otherwise.

func (*DaskOptionsAllOf) GetFunctionNameOk ¶

func (o *DaskOptionsAllOf) GetFunctionNameOk() (*string, bool)

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

func (*DaskOptionsAllOf) GetModuleName ¶

func (o *DaskOptionsAllOf) GetModuleName() string

GetModuleName returns the ModuleName field value if set, zero value otherwise.

func (*DaskOptionsAllOf) GetModuleNameOk ¶

func (o *DaskOptionsAllOf) GetModuleNameOk() (*string, bool)

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

func (*DaskOptionsAllOf) GetNumberWorkers ¶

func (o *DaskOptionsAllOf) GetNumberWorkers() float32

GetNumberWorkers returns the NumberWorkers field value if set, zero value otherwise.

func (*DaskOptionsAllOf) GetNumberWorkersMax ¶

func (o *DaskOptionsAllOf) GetNumberWorkersMax() float32

GetNumberWorkersMax returns the NumberWorkersMax field value if set, zero value otherwise.

func (*DaskOptionsAllOf) GetNumberWorkersMaxOk ¶

func (o *DaskOptionsAllOf) GetNumberWorkersMaxOk() (*float32, bool)

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

func (*DaskOptionsAllOf) GetNumberWorkersOk ¶

func (o *DaskOptionsAllOf) GetNumberWorkersOk() (*float32, bool)

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

func (*DaskOptionsAllOf) GetPackageName ¶

func (o *DaskOptionsAllOf) GetPackageName() string

GetPackageName returns the PackageName field value if set, zero value otherwise.

func (*DaskOptionsAllOf) GetPackageNameOk ¶

func (o *DaskOptionsAllOf) GetPackageNameOk() (*string, bool)

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

func (*DaskOptionsAllOf) GetType ¶

func (o *DaskOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DaskOptionsAllOf) GetTypeOk ¶

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

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

func (*DaskOptionsAllOf) GetWorkerInstanceType ¶

func (o *DaskOptionsAllOf) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*DaskOptionsAllOf) GetWorkerInstanceTypeOk ¶

func (o *DaskOptionsAllOf) GetWorkerInstanceTypeOk() (*string, bool)

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

func (*DaskOptionsAllOf) HasDriverInstanceType ¶

func (o *DaskOptionsAllOf) HasDriverInstanceType() bool

HasDriverInstanceType returns a boolean if a field has been set.

func (*DaskOptionsAllOf) HasFunctionName ¶

func (o *DaskOptionsAllOf) HasFunctionName() bool

HasFunctionName returns a boolean if a field has been set.

func (*DaskOptionsAllOf) HasModuleName ¶

func (o *DaskOptionsAllOf) HasModuleName() bool

HasModuleName returns a boolean if a field has been set.

func (*DaskOptionsAllOf) HasNumberWorkers ¶

func (o *DaskOptionsAllOf) HasNumberWorkers() bool

HasNumberWorkers returns a boolean if a field has been set.

func (*DaskOptionsAllOf) HasNumberWorkersMax ¶

func (o *DaskOptionsAllOf) HasNumberWorkersMax() bool

HasNumberWorkersMax returns a boolean if a field has been set.

func (*DaskOptionsAllOf) HasPackageName ¶

func (o *DaskOptionsAllOf) HasPackageName() bool

HasPackageName returns a boolean if a field has been set.

func (*DaskOptionsAllOf) HasType ¶

func (o *DaskOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*DaskOptionsAllOf) HasWorkerInstanceType ¶

func (o *DaskOptionsAllOf) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (DaskOptionsAllOf) MarshalJSON ¶

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

func (*DaskOptionsAllOf) SetDriverInstanceType ¶

func (o *DaskOptionsAllOf) SetDriverInstanceType(v string)

SetDriverInstanceType gets a reference to the given string and assigns it to the DriverInstanceType field.

func (*DaskOptionsAllOf) SetFunctionName ¶

func (o *DaskOptionsAllOf) SetFunctionName(v string)

SetFunctionName gets a reference to the given string and assigns it to the FunctionName field.

func (*DaskOptionsAllOf) SetModuleName ¶

func (o *DaskOptionsAllOf) SetModuleName(v string)

SetModuleName gets a reference to the given string and assigns it to the ModuleName field.

func (*DaskOptionsAllOf) SetNumberWorkers ¶

func (o *DaskOptionsAllOf) SetNumberWorkers(v float32)

SetNumberWorkers gets a reference to the given float32 and assigns it to the NumberWorkers field.

func (*DaskOptionsAllOf) SetNumberWorkersMax ¶

func (o *DaskOptionsAllOf) SetNumberWorkersMax(v float32)

SetNumberWorkersMax gets a reference to the given float32 and assigns it to the NumberWorkersMax field.

func (*DaskOptionsAllOf) SetPackageName ¶

func (o *DaskOptionsAllOf) SetPackageName(v string)

SetPackageName gets a reference to the given string and assigns it to the PackageName field.

func (*DaskOptionsAllOf) SetType ¶

func (o *DaskOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*DaskOptionsAllOf) SetWorkerInstanceType ¶

func (o *DaskOptionsAllOf) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

type DataAPIService ¶ added in v1.10.3

type DataAPIService service

DataAPIService DataAPI service

func (*DataAPIService) DeleteFiles ¶ added in v1.10.3

func (a *DataAPIService) DeleteFiles(ctx context.Context, bucketId string) ApiDeleteFilesRequest

DeleteFiles Delete files

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bucketId Id of the bucket
@return ApiDeleteFilesRequest

func (*DataAPIService) DeleteFilesExecute ¶ added in v1.10.3

func (a *DataAPIService) DeleteFilesExecute(r ApiDeleteFilesRequest) (*http.Response, error)

Execute executes the request

func (*DataAPIService) DownloadFile ¶ added in v1.10.3

func (a *DataAPIService) DownloadFile(ctx context.Context, bucketId string) ApiDownloadFileRequest

DownloadFile Download data by path

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bucketId Id of the bucket
@return ApiDownloadFileRequest

func (*DataAPIService) DownloadFileExecute ¶ added in v1.10.3

func (a *DataAPIService) DownloadFileExecute(r ApiDownloadFileRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DataAPIService) GetDataFiles ¶ added in v1.10.3

func (a *DataAPIService) GetDataFiles(ctx context.Context, bucketId string) ApiGetDataFilesRequest

GetDataFiles Get files

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bucketId Id of the bucket
@return ApiGetDataFilesRequest

func (*DataAPIService) GetDataFilesExecute ¶ added in v1.10.3

func (a *DataAPIService) GetDataFilesExecute(r ApiGetDataFilesRequest) ([]FileOrDirectory, *http.Response, error)

Execute executes the request

@return []FileOrDirectory

func (*DataAPIService) UploadFile ¶ added in v1.10.3

func (a *DataAPIService) UploadFile(ctx context.Context, bucketId string) ApiUploadFileRequest

UploadFile Upload a file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param bucketId Id of the bucket
@return ApiUploadFileRequest

func (*DataAPIService) UploadFileExecute ¶ added in v1.10.3

func (a *DataAPIService) UploadFileExecute(r ApiUploadFileRequest) (*http.Response, error)

Execute executes the request

type DataWarehouse ¶ added in v1.10.3

type DataWarehouse struct {
	Id               *string                           `json:"id,omitempty"`
	Name             *string                           `json:"name,omitempty"`
	Type             *string                           `json:"type,omitempty"`
	Description      *string                           `json:"description,omitempty"`
	Version          *string                           `json:"version,omitempty"`
	Options          *DataWarehouseOptions             `json:"options,omitempty"`
	Owner            *string                           `json:"owner,omitempty"`
	Password         *string                           `json:"password,omitempty"`
	Username         *string                           `json:"username,omitempty"`
	IdentityId       *string                           `json:"identity_id,omitempty"`
	InfrastructureId *string                           `json:"infrastructure_id,omitempty"`
	PublicUrl        *string                           `json:"public_url,omitempty"`
	Status           *string                           `json:"status,omitempty"`
	Created          *time.Time                        `json:"created,omitempty"`
	Updated          *time.Time                        `json:"updated,omitempty"`
	Labels           *map[string]string                `json:"labels,omitempty"`
	Metadata         map[string]map[string]interface{} `json:"metadata,omitempty"`
}

DataWarehouse struct for DataWarehouse

func NewDataWarehouse ¶ added in v1.10.3

func NewDataWarehouse() *DataWarehouse

NewDataWarehouse instantiates a new DataWarehouse 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 NewDataWarehouseWithDefaults ¶ added in v1.10.3

func NewDataWarehouseWithDefaults() *DataWarehouse

NewDataWarehouseWithDefaults instantiates a new DataWarehouse 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 (*DataWarehouse) GetCreated ¶ added in v1.10.3

func (o *DataWarehouse) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*DataWarehouse) GetCreatedOk ¶ added in v1.10.3

func (o *DataWarehouse) GetCreatedOk() (*time.Time, bool)

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

func (*DataWarehouse) GetDescription ¶ added in v1.10.3

func (o *DataWarehouse) GetDescription() string

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

func (*DataWarehouse) GetDescriptionOk ¶ added in v1.10.3

func (o *DataWarehouse) 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 (*DataWarehouse) GetId ¶ added in v1.10.3

func (o *DataWarehouse) GetId() string

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

func (*DataWarehouse) GetIdOk ¶ added in v1.10.3

func (o *DataWarehouse) 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 (*DataWarehouse) GetIdentityId ¶ added in v1.10.3

func (o *DataWarehouse) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise.

func (*DataWarehouse) GetIdentityIdOk ¶ added in v1.10.3

func (o *DataWarehouse) GetIdentityIdOk() (*string, bool)

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

func (*DataWarehouse) GetInfrastructureId ¶ added in v1.10.3

func (o *DataWarehouse) GetInfrastructureId() string

GetInfrastructureId returns the InfrastructureId field value if set, zero value otherwise.

func (*DataWarehouse) GetInfrastructureIdOk ¶ added in v1.10.3

func (o *DataWarehouse) GetInfrastructureIdOk() (*string, bool)

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

func (*DataWarehouse) GetLabels ¶ added in v1.10.3

func (o *DataWarehouse) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*DataWarehouse) GetLabelsOk ¶ added in v1.10.3

func (o *DataWarehouse) GetLabelsOk() (*map[string]string, bool)

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

func (*DataWarehouse) GetMetadata ¶ added in v1.10.3

func (o *DataWarehouse) GetMetadata() map[string]map[string]interface{}

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

func (*DataWarehouse) GetMetadataOk ¶ added in v1.10.3

func (o *DataWarehouse) GetMetadataOk() (map[string]map[string]interface{}, 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 (*DataWarehouse) GetName ¶ added in v1.10.3

func (o *DataWarehouse) GetName() string

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

func (*DataWarehouse) GetNameOk ¶ added in v1.10.3

func (o *DataWarehouse) 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 (*DataWarehouse) GetOptions ¶ added in v1.10.3

func (o *DataWarehouse) GetOptions() DataWarehouseOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*DataWarehouse) GetOptionsOk ¶ added in v1.10.3

func (o *DataWarehouse) GetOptionsOk() (*DataWarehouseOptions, 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.

func (*DataWarehouse) GetOwner ¶ added in v1.10.3

func (o *DataWarehouse) GetOwner() string

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

func (*DataWarehouse) GetOwnerOk ¶ added in v1.10.3

func (o *DataWarehouse) 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 (*DataWarehouse) GetPassword ¶ added in v1.10.3

func (o *DataWarehouse) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*DataWarehouse) GetPasswordOk ¶ added in v1.10.3

func (o *DataWarehouse) GetPasswordOk() (*string, bool)

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

func (*DataWarehouse) GetPublicUrl ¶ added in v1.10.3

func (o *DataWarehouse) GetPublicUrl() string

GetPublicUrl returns the PublicUrl field value if set, zero value otherwise.

func (*DataWarehouse) GetPublicUrlOk ¶ added in v1.10.3

func (o *DataWarehouse) GetPublicUrlOk() (*string, bool)

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

func (*DataWarehouse) GetStatus ¶ added in v1.10.3

func (o *DataWarehouse) GetStatus() string

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

func (*DataWarehouse) GetStatusOk ¶ added in v1.10.3

func (o *DataWarehouse) GetStatusOk() (*string, 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 (*DataWarehouse) GetType ¶ added in v1.10.3

func (o *DataWarehouse) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DataWarehouse) GetTypeOk ¶ added in v1.10.3

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

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

func (*DataWarehouse) GetUpdated ¶ added in v1.10.3

func (o *DataWarehouse) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*DataWarehouse) GetUpdatedOk ¶ added in v1.10.3

func (o *DataWarehouse) GetUpdatedOk() (*time.Time, bool)

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

func (*DataWarehouse) GetUsername ¶ added in v1.10.3

func (o *DataWarehouse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*DataWarehouse) GetUsernameOk ¶ added in v1.10.3

func (o *DataWarehouse) GetUsernameOk() (*string, bool)

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

func (*DataWarehouse) GetVersion ¶ added in v1.10.3

func (o *DataWarehouse) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*DataWarehouse) GetVersionOk ¶ added in v1.10.3

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

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

func (*DataWarehouse) HasCreated ¶ added in v1.10.3

func (o *DataWarehouse) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*DataWarehouse) HasDescription ¶ added in v1.10.3

func (o *DataWarehouse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DataWarehouse) HasId ¶ added in v1.10.3

func (o *DataWarehouse) HasId() bool

HasId returns a boolean if a field has been set.

func (*DataWarehouse) HasIdentityId ¶ added in v1.10.3

func (o *DataWarehouse) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (*DataWarehouse) HasInfrastructureId ¶ added in v1.10.3

func (o *DataWarehouse) HasInfrastructureId() bool

HasInfrastructureId returns a boolean if a field has been set.

func (*DataWarehouse) HasLabels ¶ added in v1.10.3

func (o *DataWarehouse) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*DataWarehouse) HasMetadata ¶ added in v1.10.3

func (o *DataWarehouse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*DataWarehouse) HasName ¶ added in v1.10.3

func (o *DataWarehouse) HasName() bool

HasName returns a boolean if a field has been set.

func (*DataWarehouse) HasOptions ¶ added in v1.10.3

func (o *DataWarehouse) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*DataWarehouse) HasOwner ¶ added in v1.10.3

func (o *DataWarehouse) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*DataWarehouse) HasPassword ¶ added in v1.10.3

func (o *DataWarehouse) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*DataWarehouse) HasPublicUrl ¶ added in v1.10.3

func (o *DataWarehouse) HasPublicUrl() bool

HasPublicUrl returns a boolean if a field has been set.

func (*DataWarehouse) HasStatus ¶ added in v1.10.3

func (o *DataWarehouse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DataWarehouse) HasType ¶ added in v1.10.3

func (o *DataWarehouse) HasType() bool

HasType returns a boolean if a field has been set.

func (*DataWarehouse) HasUpdated ¶ added in v1.10.3

func (o *DataWarehouse) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*DataWarehouse) HasUsername ¶ added in v1.10.3

func (o *DataWarehouse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*DataWarehouse) HasVersion ¶ added in v1.10.3

func (o *DataWarehouse) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (DataWarehouse) MarshalJSON ¶ added in v1.10.3

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

func (*DataWarehouse) SetCreated ¶ added in v1.10.3

func (o *DataWarehouse) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*DataWarehouse) SetDescription ¶ added in v1.10.3

func (o *DataWarehouse) SetDescription(v string)

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

func (*DataWarehouse) SetId ¶ added in v1.10.3

func (o *DataWarehouse) SetId(v string)

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

func (*DataWarehouse) SetIdentityId ¶ added in v1.10.3

func (o *DataWarehouse) SetIdentityId(v string)

SetIdentityId gets a reference to the given string and assigns it to the IdentityId field.

func (*DataWarehouse) SetInfrastructureId ¶ added in v1.10.3

func (o *DataWarehouse) SetInfrastructureId(v string)

SetInfrastructureId gets a reference to the given string and assigns it to the InfrastructureId field.

func (*DataWarehouse) SetLabels ¶ added in v1.10.3

func (o *DataWarehouse) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*DataWarehouse) SetMetadata ¶ added in v1.10.3

func (o *DataWarehouse) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*DataWarehouse) SetName ¶ added in v1.10.3

func (o *DataWarehouse) SetName(v string)

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

func (*DataWarehouse) SetOptions ¶ added in v1.10.3

func (o *DataWarehouse) SetOptions(v DataWarehouseOptions)

SetOptions gets a reference to the given DataWarehouseOptions and assigns it to the Options field.

func (*DataWarehouse) SetOwner ¶ added in v1.10.3

func (o *DataWarehouse) SetOwner(v string)

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

func (*DataWarehouse) SetPassword ¶ added in v1.10.3

func (o *DataWarehouse) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*DataWarehouse) SetPublicUrl ¶ added in v1.10.3

func (o *DataWarehouse) SetPublicUrl(v string)

SetPublicUrl gets a reference to the given string and assigns it to the PublicUrl field.

func (*DataWarehouse) SetStatus ¶ added in v1.10.3

func (o *DataWarehouse) SetStatus(v string)

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

func (*DataWarehouse) SetType ¶ added in v1.10.3

func (o *DataWarehouse) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*DataWarehouse) SetUpdated ¶ added in v1.10.3

func (o *DataWarehouse) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*DataWarehouse) SetUsername ¶ added in v1.10.3

func (o *DataWarehouse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*DataWarehouse) SetVersion ¶ added in v1.10.3

func (o *DataWarehouse) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (DataWarehouse) ToMap ¶ added in v1.10.3

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

type DataWarehouseOptions ¶ added in v1.10.3

type DataWarehouseOptions struct {
	Type *string `json:"type,omitempty"`
}

DataWarehouseOptions struct for DataWarehouseOptions

func NewDataWarehouseOptions ¶ added in v1.10.3

func NewDataWarehouseOptions() *DataWarehouseOptions

NewDataWarehouseOptions instantiates a new DataWarehouseOptions 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 NewDataWarehouseOptionsWithDefaults ¶ added in v1.10.3

func NewDataWarehouseOptionsWithDefaults() *DataWarehouseOptions

NewDataWarehouseOptionsWithDefaults instantiates a new DataWarehouseOptions 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 (*DataWarehouseOptions) GetType ¶ added in v1.10.3

func (o *DataWarehouseOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DataWarehouseOptions) GetTypeOk ¶ added in v1.10.3

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

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

func (*DataWarehouseOptions) HasType ¶ added in v1.10.3

func (o *DataWarehouseOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (DataWarehouseOptions) MarshalJSON ¶ added in v1.10.3

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

func (*DataWarehouseOptions) SetType ¶ added in v1.10.3

func (o *DataWarehouseOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (DataWarehouseOptions) ToMap ¶ added in v1.10.3

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

type DataWarehousePage ¶ added in v1.10.3

type DataWarehousePage struct {
	Number  *int32          `json:"number,omitempty"`
	Size    *int32          `json:"size,omitempty"`
	Content []DataWarehouse `json:"content,omitempty"`
}

DataWarehousePage typed Page

func NewDataWarehousePage ¶ added in v1.10.3

func NewDataWarehousePage() *DataWarehousePage

NewDataWarehousePage instantiates a new DataWarehousePage 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 NewDataWarehousePageWithDefaults ¶ added in v1.10.3

func NewDataWarehousePageWithDefaults() *DataWarehousePage

NewDataWarehousePageWithDefaults instantiates a new DataWarehousePage 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 (*DataWarehousePage) GetContent ¶ added in v1.10.3

func (o *DataWarehousePage) GetContent() []DataWarehouse

GetContent returns the Content field value if set, zero value otherwise.

func (*DataWarehousePage) GetContentOk ¶ added in v1.10.3

func (o *DataWarehousePage) GetContentOk() ([]DataWarehouse, bool)

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

func (*DataWarehousePage) GetNumber ¶ added in v1.10.3

func (o *DataWarehousePage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*DataWarehousePage) GetNumberOk ¶ added in v1.10.3

func (o *DataWarehousePage) GetNumberOk() (*int32, bool)

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

func (*DataWarehousePage) GetSize ¶ added in v1.10.3

func (o *DataWarehousePage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*DataWarehousePage) GetSizeOk ¶ added in v1.10.3

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

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

func (*DataWarehousePage) HasContent ¶ added in v1.10.3

func (o *DataWarehousePage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*DataWarehousePage) HasNumber ¶ added in v1.10.3

func (o *DataWarehousePage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*DataWarehousePage) HasSize ¶ added in v1.10.3

func (o *DataWarehousePage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (DataWarehousePage) MarshalJSON ¶ added in v1.10.3

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

func (*DataWarehousePage) SetContent ¶ added in v1.10.3

func (o *DataWarehousePage) SetContent(v []DataWarehouse)

SetContent gets a reference to the given []DataWarehouse and assigns it to the Content field.

func (*DataWarehousePage) SetNumber ¶ added in v1.10.3

func (o *DataWarehousePage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*DataWarehousePage) SetSize ¶ added in v1.10.3

func (o *DataWarehousePage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (DataWarehousePage) ToMap ¶ added in v1.10.3

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

type DataWarehousePageAllOf ¶ added in v1.10.3

type DataWarehousePageAllOf struct {
	Content *[]DataWarehouse `json:"content,omitempty"`
}

DataWarehousePageAllOf struct for DataWarehousePageAllOf

func NewDataWarehousePageAllOf ¶ added in v1.10.3

func NewDataWarehousePageAllOf() *DataWarehousePageAllOf

NewDataWarehousePageAllOf instantiates a new DataWarehousePageAllOf 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 NewDataWarehousePageAllOfWithDefaults ¶ added in v1.10.3

func NewDataWarehousePageAllOfWithDefaults() *DataWarehousePageAllOf

NewDataWarehousePageAllOfWithDefaults instantiates a new DataWarehousePageAllOf 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 (*DataWarehousePageAllOf) GetContent ¶ added in v1.10.3

func (o *DataWarehousePageAllOf) GetContent() []DataWarehouse

GetContent returns the Content field value if set, zero value otherwise.

func (*DataWarehousePageAllOf) GetContentOk ¶ added in v1.10.3

func (o *DataWarehousePageAllOf) GetContentOk() (*[]DataWarehouse, bool)

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

func (*DataWarehousePageAllOf) HasContent ¶ added in v1.10.3

func (o *DataWarehousePageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (DataWarehousePageAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*DataWarehousePageAllOf) SetContent ¶ added in v1.10.3

func (o *DataWarehousePageAllOf) SetContent(v []DataWarehouse)

SetContent gets a reference to the given []DataWarehouse and assigns it to the Content field.

type Database ¶ added in v1.10.3

type Database struct {
	Id            *string                           `json:"id,omitempty"`
	TechnicalName *string                           `json:"technical_name,omitempty"`
	Name          *string                           `json:"name,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Database struct for Database

func NewDatabase ¶ added in v1.10.3

func NewDatabase() *Database

NewDatabase instantiates a new Database 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 NewDatabaseWithDefaults ¶ added in v1.10.3

func NewDatabaseWithDefaults() *Database

NewDatabaseWithDefaults instantiates a new Database 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 (*Database) GetCreated ¶ added in v1.10.3

func (o *Database) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Database) GetCreatedOk ¶ added in v1.10.3

func (o *Database) GetCreatedOk() (*time.Time, bool)

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

func (*Database) GetDescription ¶ added in v1.10.3

func (o *Database) GetDescription() string

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

func (*Database) GetDescriptionOk ¶ added in v1.10.3

func (o *Database) 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 (*Database) GetId ¶ added in v1.10.3

func (o *Database) GetId() string

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

func (*Database) GetIdOk ¶ added in v1.10.3

func (o *Database) 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 (*Database) GetMetadata ¶ added in v1.10.3

func (o *Database) GetMetadata() map[string]map[string]interface{}

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

func (*Database) GetMetadataOk ¶ added in v1.10.3

func (o *Database) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Database) GetName ¶ added in v1.10.3

func (o *Database) GetName() string

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

func (*Database) GetNameOk ¶ added in v1.10.3

func (o *Database) 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 (*Database) GetTechnicalName ¶ added in v1.10.3

func (o *Database) GetTechnicalName() string

GetTechnicalName returns the TechnicalName field value if set, zero value otherwise.

func (*Database) GetTechnicalNameOk ¶ added in v1.10.3

func (o *Database) GetTechnicalNameOk() (*string, bool)

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

func (*Database) GetUpdated ¶ added in v1.10.3

func (o *Database) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Database) GetUpdatedOk ¶ added in v1.10.3

func (o *Database) GetUpdatedOk() (*time.Time, bool)

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

func (*Database) HasCreated ¶ added in v1.10.3

func (o *Database) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Database) HasDescription ¶ added in v1.10.3

func (o *Database) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Database) HasId ¶ added in v1.10.3

func (o *Database) HasId() bool

HasId returns a boolean if a field has been set.

func (*Database) HasMetadata ¶ added in v1.10.3

func (o *Database) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Database) HasName ¶ added in v1.10.3

func (o *Database) HasName() bool

HasName returns a boolean if a field has been set.

func (*Database) HasTechnicalName ¶ added in v1.10.3

func (o *Database) HasTechnicalName() bool

HasTechnicalName returns a boolean if a field has been set.

func (*Database) HasUpdated ¶ added in v1.10.3

func (o *Database) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Database) MarshalJSON ¶ added in v1.10.3

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

func (*Database) SetCreated ¶ added in v1.10.3

func (o *Database) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Database) SetDescription ¶ added in v1.10.3

func (o *Database) SetDescription(v string)

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

func (*Database) SetId ¶ added in v1.10.3

func (o *Database) SetId(v string)

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

func (*Database) SetMetadata ¶ added in v1.10.3

func (o *Database) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Database) SetName ¶ added in v1.10.3

func (o *Database) SetName(v string)

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

func (*Database) SetTechnicalName ¶ added in v1.10.3

func (o *Database) SetTechnicalName(v string)

SetTechnicalName gets a reference to the given string and assigns it to the TechnicalName field.

func (*Database) SetUpdated ¶ added in v1.10.3

func (o *Database) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Database) ToMap ¶ added in v1.10.3

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

type DatabaseAPIService ¶ added in v1.10.3

type DatabaseAPIService service

DatabaseAPIService DatabaseAPI service

func (*DatabaseAPIService) CreateDatabase ¶ added in v1.10.3

func (a *DatabaseAPIService) CreateDatabase(ctx context.Context, layerName string) ApiCreateDatabaseRequest

CreateDatabase Create a database

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Name of the layer
@return ApiCreateDatabaseRequest

func (*DatabaseAPIService) CreateDatabaseExecute ¶ added in v1.10.3

func (a *DatabaseAPIService) CreateDatabaseExecute(r ApiCreateDatabaseRequest) (*Database, *http.Response, error)

Execute executes the request

@return Database

func (*DatabaseAPIService) DeleteDatabaseById ¶ added in v1.10.3

func (a *DatabaseAPIService) DeleteDatabaseById(ctx context.Context, layerName string, databaseName string) ApiDeleteDatabaseByIdRequest

DeleteDatabaseById Delete a database by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Id of the layer
@param databaseName Id of the database
@return ApiDeleteDatabaseByIdRequest

func (*DatabaseAPIService) DeleteDatabaseByIdExecute ¶ added in v1.10.3

func (a *DatabaseAPIService) DeleteDatabaseByIdExecute(r ApiDeleteDatabaseByIdRequest) (*http.Response, error)

Execute executes the request

func (*DatabaseAPIService) FindDatabaseById ¶ added in v1.10.3

func (a *DatabaseAPIService) FindDatabaseById(ctx context.Context, layerName string, databaseName string) ApiFindDatabaseByIdRequest

FindDatabaseById Find database by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Id of the layer
@param databaseName Id of the database
@return ApiFindDatabaseByIdRequest

func (*DatabaseAPIService) FindDatabaseByIdExecute ¶ added in v1.10.3

func (a *DatabaseAPIService) FindDatabaseByIdExecute(r ApiFindDatabaseByIdRequest) (*Database, *http.Response, error)

Execute executes the request

@return Database

func (*DatabaseAPIService) FindDatabases ¶ added in v1.10.3

func (a *DatabaseAPIService) FindDatabases(ctx context.Context, layerName string) ApiFindDatabasesRequest

FindDatabases Retrieve all databases

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Name of the layer
@return ApiFindDatabasesRequest

func (*DatabaseAPIService) FindDatabasesExecute ¶ added in v1.10.3

func (a *DatabaseAPIService) FindDatabasesExecute(r ApiFindDatabasesRequest) ([]Database, *http.Response, error)

Execute executes the request

@return []Database

func (*DatabaseAPIService) UpdateDatabase ¶ added in v1.10.3

func (a *DatabaseAPIService) UpdateDatabase(ctx context.Context, layerName string, databaseName string) ApiUpdateDatabaseRequest

UpdateDatabase Update a database

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Id of the layer
@param databaseName Id of the database
@return ApiUpdateDatabaseRequest

func (*DatabaseAPIService) UpdateDatabaseExecute ¶ added in v1.10.3

func (a *DatabaseAPIService) UpdateDatabaseExecute(r ApiUpdateDatabaseRequest) (*Database, *http.Response, error)

Execute executes the request

@return Database

type DatabaseConnector ¶ added in v1.10.3

type DatabaseConnector struct {
	DBConnector  *DBConnector
	SQLConnector *SQLConnector
}

DatabaseConnector - Type of connector (SQL or database connector)

func DBConnectorAsDatabaseConnector ¶ added in v1.10.3

func DBConnectorAsDatabaseConnector(v *DBConnector) DatabaseConnector

DBConnectorAsDatabaseConnector is a convenience function that returns DBConnector wrapped in DatabaseConnector

func SQLConnectorAsDatabaseConnector ¶ added in v1.10.3

func SQLConnectorAsDatabaseConnector(v *SQLConnector) DatabaseConnector

SQLConnectorAsDatabaseConnector is a convenience function that returns SQLConnector wrapped in DatabaseConnector

func (*DatabaseConnector) GetActualInstance ¶ added in v1.10.3

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

Get the actual instance

func (DatabaseConnector) MarshalJSON ¶ added in v1.10.3

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

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

func (*DatabaseConnector) UnmarshalJSON ¶ added in v1.10.3

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

Unmarshal JSON data into one of the pointers in the struct

type DatabaseMigrationOptions ¶ added in v1.10.3

type DatabaseMigrationOptions struct {
	Options
	Type            *string     `json:"type,omitempty"`
	DatawarehouseId *string     `json:"datawarehouse_id,omitempty"`
	Repository      *GitLibrary `json:"repository,omitempty"`
}

DatabaseMigrationOptions struct for DatabaseMigrationOptions

func NewDatabaseMigrationOptions ¶ added in v1.10.3

func NewDatabaseMigrationOptions() *DatabaseMigrationOptions

NewDatabaseMigrationOptions instantiates a new DatabaseMigrationOptions 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 NewDatabaseMigrationOptionsWithDefaults ¶ added in v1.10.3

func NewDatabaseMigrationOptionsWithDefaults() *DatabaseMigrationOptions

NewDatabaseMigrationOptionsWithDefaults instantiates a new DatabaseMigrationOptions 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 (*DatabaseMigrationOptions) GetDatawarehouseId ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) GetDatawarehouseId() string

GetDatawarehouseId returns the DatawarehouseId field value if set, zero value otherwise.

func (*DatabaseMigrationOptions) GetDatawarehouseIdOk ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) GetDatawarehouseIdOk() (*string, bool)

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

func (*DatabaseMigrationOptions) GetRepository ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) GetRepository() GitLibrary

GetRepository returns the Repository field value if set, zero value otherwise.

func (*DatabaseMigrationOptions) GetRepositoryOk ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) GetRepositoryOk() (*GitLibrary, bool)

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

func (*DatabaseMigrationOptions) GetType ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DatabaseMigrationOptions) GetTypeOk ¶ added in v1.10.3

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

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

func (*DatabaseMigrationOptions) HasDatawarehouseId ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) HasDatawarehouseId() bool

HasDatawarehouseId returns a boolean if a field has been set.

func (*DatabaseMigrationOptions) HasRepository ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*DatabaseMigrationOptions) HasType ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (DatabaseMigrationOptions) MarshalJSON ¶ added in v1.10.3

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

func (*DatabaseMigrationOptions) SetDatawarehouseId ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) SetDatawarehouseId(v string)

SetDatawarehouseId gets a reference to the given string and assigns it to the DatawarehouseId field.

func (*DatabaseMigrationOptions) SetRepository ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) SetRepository(v GitLibrary)

SetRepository gets a reference to the given GitLibrary and assigns it to the Repository field.

func (*DatabaseMigrationOptions) SetType ¶ added in v1.10.3

func (o *DatabaseMigrationOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (DatabaseMigrationOptions) ToMap ¶ added in v1.10.3

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

type DatabaseMigrationOptionsAllOf ¶ added in v1.10.3

type DatabaseMigrationOptionsAllOf struct {
	Type            *string     `json:"type,omitempty"`
	DatawarehouseId *string     `json:"datawarehouse_id,omitempty"`
	Repository      *GitLibrary `json:"repository,omitempty"`
}

DatabaseMigrationOptionsAllOf struct for DatabaseMigrationOptionsAllOf

func NewDatabaseMigrationOptionsAllOf ¶ added in v1.10.3

func NewDatabaseMigrationOptionsAllOf() *DatabaseMigrationOptionsAllOf

NewDatabaseMigrationOptionsAllOf instantiates a new DatabaseMigrationOptionsAllOf 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 NewDatabaseMigrationOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewDatabaseMigrationOptionsAllOfWithDefaults() *DatabaseMigrationOptionsAllOf

NewDatabaseMigrationOptionsAllOfWithDefaults instantiates a new DatabaseMigrationOptionsAllOf 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 (*DatabaseMigrationOptionsAllOf) GetDatawarehouseId ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) GetDatawarehouseId() string

GetDatawarehouseId returns the DatawarehouseId field value if set, zero value otherwise.

func (*DatabaseMigrationOptionsAllOf) GetDatawarehouseIdOk ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) GetDatawarehouseIdOk() (*string, bool)

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

func (*DatabaseMigrationOptionsAllOf) GetRepository ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) GetRepository() GitLibrary

GetRepository returns the Repository field value if set, zero value otherwise.

func (*DatabaseMigrationOptionsAllOf) GetRepositoryOk ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) GetRepositoryOk() (*GitLibrary, bool)

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

func (*DatabaseMigrationOptionsAllOf) GetType ¶ added in v1.10.3

GetType returns the Type field value if set, zero value otherwise.

func (*DatabaseMigrationOptionsAllOf) GetTypeOk ¶ added in v1.10.3

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

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

func (*DatabaseMigrationOptionsAllOf) HasDatawarehouseId ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) HasDatawarehouseId() bool

HasDatawarehouseId returns a boolean if a field has been set.

func (*DatabaseMigrationOptionsAllOf) HasRepository ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*DatabaseMigrationOptionsAllOf) HasType ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (DatabaseMigrationOptionsAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*DatabaseMigrationOptionsAllOf) SetDatawarehouseId ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) SetDatawarehouseId(v string)

SetDatawarehouseId gets a reference to the given string and assigns it to the DatawarehouseId field.

func (*DatabaseMigrationOptionsAllOf) SetRepository ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) SetRepository(v GitLibrary)

SetRepository gets a reference to the given GitLibrary and assigns it to the Repository field.

func (*DatabaseMigrationOptionsAllOf) SetType ¶ added in v1.10.3

func (o *DatabaseMigrationOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type DatawarehouseAPIService ¶ added in v1.10.3

type DatawarehouseAPIService service

DatawarehouseAPIService DatawarehouseAPI service

func (*DatawarehouseAPIService) CreateDataWarehouse ¶ added in v1.10.3

CreateDataWarehouse Create datawarehouse

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateDataWarehouseRequest

func (*DatawarehouseAPIService) CreateDataWarehouseExecute ¶ added in v1.10.3

Execute executes the request

@return DataWarehouse

func (*DatawarehouseAPIService) DeleteDataWarehouseById ¶ added in v1.10.3

func (a *DatawarehouseAPIService) DeleteDataWarehouseById(ctx context.Context, datawarehouseId string) ApiDeleteDataWarehouseByIdRequest

DeleteDataWarehouseById Delete a datawarehouse by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param datawarehouseId Id of the datawarehouse
@return ApiDeleteDataWarehouseByIdRequest

func (*DatawarehouseAPIService) DeleteDataWarehouseByIdExecute ¶ added in v1.10.3

func (a *DatawarehouseAPIService) DeleteDataWarehouseByIdExecute(r ApiDeleteDataWarehouseByIdRequest) (*http.Response, error)

Execute executes the request

func (*DatawarehouseAPIService) FindChanges ¶ added in v1.10.3

func (a *DatawarehouseAPIService) FindChanges(ctx context.Context, datawarehouseId string) ApiFindChangesRequest

FindChanges Find changes by datawarehouse id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param datawarehouseId Id of the datawarehouse
@return ApiFindChangesRequest

func (*DatawarehouseAPIService) FindChangesExecute ¶ added in v1.10.3

Execute executes the request

@return ChangePage

func (*DatawarehouseAPIService) FindDataWarehouseById ¶ added in v1.10.3

func (a *DatawarehouseAPIService) FindDataWarehouseById(ctx context.Context, datawarehouseId string) ApiFindDataWarehouseByIdRequest

FindDataWarehouseById Find datawarehouse by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param datawarehouseId Id of the datawarehouse
@return ApiFindDataWarehouseByIdRequest

func (*DatawarehouseAPIService) FindDataWarehouseByIdExecute ¶ added in v1.10.3

Execute executes the request

@return DataWarehouse

func (*DatawarehouseAPIService) FindDataWarehouses ¶ added in v1.10.3

FindDataWarehouses Retrieve all datawarehouses

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindDataWarehousesRequest

func (*DatawarehouseAPIService) FindDataWarehousesExecute ¶ added in v1.10.3

Execute executes the request

@return DataWarehousePage

func (*DatawarehouseAPIService) FindTables ¶ added in v1.10.3

func (a *DatawarehouseAPIService) FindTables(ctx context.Context, datawarehouseId string) ApiFindTablesRequest

FindTables Find tables by datawarehouse id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param datawarehouseId Id of the datawarehouse
@return ApiFindTablesRequest

func (*DatawarehouseAPIService) FindTablesExecute ¶ added in v1.10.3

func (a *DatawarehouseAPIService) FindTablesExecute(r ApiFindTablesRequest) ([]Table, *http.Response, error)

Execute executes the request

@return []Table

func (*DatawarehouseAPIService) GetLogsForDatawarehouse ¶ added in v1.10.3

func (a *DatawarehouseAPIService) GetLogsForDatawarehouse(ctx context.Context, datawarehouseId string) ApiGetLogsForDatawarehouseRequest

GetLogsForDatawarehouse Get logs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param datawarehouseId Id of the datawarehouse
@return ApiGetLogsForDatawarehouseRequest

func (*DatawarehouseAPIService) GetLogsForDatawarehouseExecute ¶ added in v1.10.3

func (a *DatawarehouseAPIService) GetLogsForDatawarehouseExecute(r ApiGetLogsForDatawarehouseRequest) ([]LogEntry, *http.Response, error)

Execute executes the request

@return []LogEntry

func (*DatawarehouseAPIService) UpdateDataWarehouse ¶ added in v1.10.3

func (a *DatawarehouseAPIService) UpdateDataWarehouse(ctx context.Context, datawarehouseId string) ApiUpdateDataWarehouseRequest

UpdateDataWarehouse Update a datawarehouse

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param datawarehouseId Id of the datawarehouse
@return ApiUpdateDataWarehouseRequest

func (*DatawarehouseAPIService) UpdateDataWarehouseExecute ¶ added in v1.10.3

Execute executes the request

@return DataWarehouse

type DbtOptions ¶

type DbtOptions struct {
	Options
	Type    *string `json:"type,omitempty"`
	Profile *string `json:"profile,omitempty"`
	Adapter *string `json:"adapter,omitempty"`
}

DbtOptions struct for DbtOptions

func NewDbtOptions ¶

func NewDbtOptions() *DbtOptions

NewDbtOptions instantiates a new DbtOptions 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 NewDbtOptionsWithDefaults ¶

func NewDbtOptionsWithDefaults() *DbtOptions

NewDbtOptionsWithDefaults instantiates a new DbtOptions 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 (*DbtOptions) GetAdapter ¶

func (o *DbtOptions) GetAdapter() string

GetAdapter returns the Adapter field value if set, zero value otherwise.

func (*DbtOptions) GetAdapterOk ¶

func (o *DbtOptions) GetAdapterOk() (*string, bool)

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

func (*DbtOptions) GetProfile ¶

func (o *DbtOptions) GetProfile() string

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

func (*DbtOptions) GetProfileOk ¶

func (o *DbtOptions) 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 (*DbtOptions) GetType ¶

func (o *DbtOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DbtOptions) GetTypeOk ¶

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

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

func (*DbtOptions) HasAdapter ¶

func (o *DbtOptions) HasAdapter() bool

HasAdapter returns a boolean if a field has been set.

func (*DbtOptions) HasProfile ¶

func (o *DbtOptions) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*DbtOptions) HasType ¶

func (o *DbtOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (DbtOptions) MarshalJSON ¶

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

func (*DbtOptions) SetAdapter ¶

func (o *DbtOptions) SetAdapter(v string)

SetAdapter gets a reference to the given string and assigns it to the Adapter field.

func (*DbtOptions) SetProfile ¶

func (o *DbtOptions) SetProfile(v string)

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

func (*DbtOptions) SetType ¶

func (o *DbtOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (DbtOptions) ToMap ¶ added in v1.10.3

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

type DbtOptionsAllOf ¶

type DbtOptionsAllOf struct {
	Type    *string `json:"type,omitempty"`
	Profile *string `json:"profile,omitempty"`
	Adapter *string `json:"adapter,omitempty"`
}

DbtOptionsAllOf struct for DbtOptionsAllOf

func NewDbtOptionsAllOf ¶

func NewDbtOptionsAllOf() *DbtOptionsAllOf

NewDbtOptionsAllOf instantiates a new DbtOptionsAllOf 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 NewDbtOptionsAllOfWithDefaults ¶

func NewDbtOptionsAllOfWithDefaults() *DbtOptionsAllOf

NewDbtOptionsAllOfWithDefaults instantiates a new DbtOptionsAllOf 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 (*DbtOptionsAllOf) GetAdapter ¶

func (o *DbtOptionsAllOf) GetAdapter() string

GetAdapter returns the Adapter field value if set, zero value otherwise.

func (*DbtOptionsAllOf) GetAdapterOk ¶

func (o *DbtOptionsAllOf) GetAdapterOk() (*string, bool)

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

func (*DbtOptionsAllOf) GetProfile ¶

func (o *DbtOptionsAllOf) GetProfile() string

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

func (*DbtOptionsAllOf) GetProfileOk ¶

func (o *DbtOptionsAllOf) 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 (*DbtOptionsAllOf) GetType ¶

func (o *DbtOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DbtOptionsAllOf) GetTypeOk ¶

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

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

func (*DbtOptionsAllOf) HasAdapter ¶

func (o *DbtOptionsAllOf) HasAdapter() bool

HasAdapter returns a boolean if a field has been set.

func (*DbtOptionsAllOf) HasProfile ¶

func (o *DbtOptionsAllOf) HasProfile() bool

HasProfile returns a boolean if a field has been set.

func (*DbtOptionsAllOf) HasType ¶

func (o *DbtOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (DbtOptionsAllOf) MarshalJSON ¶

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

func (*DbtOptionsAllOf) SetAdapter ¶

func (o *DbtOptionsAllOf) SetAdapter(v string)

SetAdapter gets a reference to the given string and assigns it to the Adapter field.

func (*DbtOptionsAllOf) SetProfile ¶

func (o *DbtOptionsAllOf) SetProfile(v string)

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

func (*DbtOptionsAllOf) SetType ¶

func (o *DbtOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Dependency ¶

type Dependency struct {
	Id        *string `json:"id,omitempty"`
	Reference *string `json:"reference,omitempty"`
	Version   *string `json:"version,omitempty"`
}

Dependency struct for Dependency

func NewDependency ¶

func NewDependency() *Dependency

NewDependency instantiates a new Dependency 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 NewDependencyWithDefaults ¶

func NewDependencyWithDefaults() *Dependency

NewDependencyWithDefaults instantiates a new Dependency 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 (*Dependency) GetId ¶

func (o *Dependency) GetId() string

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

func (*Dependency) GetIdOk ¶

func (o *Dependency) 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 (*Dependency) GetReference ¶

func (o *Dependency) GetReference() string

GetReference returns the Reference field value if set, zero value otherwise.

func (*Dependency) GetReferenceOk ¶

func (o *Dependency) GetReferenceOk() (*string, bool)

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

func (*Dependency) GetVersion ¶

func (o *Dependency) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Dependency) GetVersionOk ¶

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

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

func (*Dependency) HasId ¶

func (o *Dependency) HasId() bool

HasId returns a boolean if a field has been set.

func (*Dependency) HasReference ¶

func (o *Dependency) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*Dependency) HasVersion ¶

func (o *Dependency) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Dependency) MarshalJSON ¶

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

func (*Dependency) SetId ¶

func (o *Dependency) SetId(v string)

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

func (*Dependency) SetReference ¶

func (o *Dependency) SetReference(v string)

SetReference gets a reference to the given string and assigns it to the Reference field.

func (*Dependency) SetVersion ¶

func (o *Dependency) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Dependency) ToMap ¶ added in v1.10.3

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

type Details ¶

type Details struct {
	Type *string `json:"type,omitempty"`
}

Details struct for Details

func NewDetails ¶

func NewDetails() *Details

NewDetails instantiates a new Details 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 NewDetailsWithDefaults ¶

func NewDetailsWithDefaults() *Details

NewDetailsWithDefaults instantiates a new Details 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 (*Details) GetType ¶

func (o *Details) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Details) GetTypeOk ¶

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

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

func (*Details) HasType ¶

func (o *Details) HasType() bool

HasType returns a boolean if a field has been set.

func (Details) MarshalJSON ¶

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

func (*Details) SetType ¶

func (o *Details) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Details) ToMap ¶ added in v1.10.3

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

type Details1 ¶ added in v1.10.3

type Details1 struct {
	Type *string `json:"type,omitempty"`
}

Details1 struct for Details1

func NewDetails1 ¶ added in v1.10.3

func NewDetails1() *Details1

NewDetails1 instantiates a new Details1 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 NewDetails1WithDefaults ¶ added in v1.10.3

func NewDetails1WithDefaults() *Details1

NewDetails1WithDefaults instantiates a new Details1 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 (*Details1) GetType ¶ added in v1.10.3

func (o *Details1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Details1) GetTypeOk ¶ added in v1.10.3

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

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

func (*Details1) HasType ¶ added in v1.10.3

func (o *Details1) HasType() bool

HasType returns a boolean if a field has been set.

func (Details1) MarshalJSON ¶ added in v1.10.3

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

func (*Details1) SetType ¶ added in v1.10.3

func (o *Details1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Details1) ToMap ¶ added in v1.10.3

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

type Device ¶ added in v1.10.3

type Device struct {
	Id                   *string                           `json:"id,omitempty"`
	Name                 *string                           `json:"name,omitempty"`
	Type                 *string                           `json:"type,omitempty"`
	Description          *string                           `json:"description,omitempty"`
	Location             *string                           `json:"location,omitempty"`
	Country              *string                           `json:"country,omitempty"`
	Created              *time.Time                        `json:"created,omitempty"`
	Updated              *time.Time                        `json:"updated,omitempty"`
	Target               *Target                           `json:"target,omitempty"`
	AllowedInstanceTypes []string                          `json:"allowed_instance_types,omitempty"`
	Metadata             map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Device struct for Device

func NewDevice ¶ added in v1.10.3

func NewDevice() *Device

NewDevice instantiates a new Device 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 NewDeviceWithDefaults ¶ added in v1.10.3

func NewDeviceWithDefaults() *Device

NewDeviceWithDefaults instantiates a new Device 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 (*Device) GetAllowedInstanceTypes ¶ added in v1.10.3

func (o *Device) GetAllowedInstanceTypes() []string

GetAllowedInstanceTypes returns the AllowedInstanceTypes field value if set, zero value otherwise.

func (*Device) GetAllowedInstanceTypesOk ¶ added in v1.10.3

func (o *Device) GetAllowedInstanceTypesOk() ([]string, bool)

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

func (*Device) GetCountry ¶ added in v1.10.3

func (o *Device) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*Device) GetCountryOk ¶ added in v1.10.3

func (o *Device) GetCountryOk() (*string, bool)

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

func (*Device) GetCreated ¶ added in v1.10.3

func (o *Device) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Device) GetCreatedOk ¶ added in v1.10.3

func (o *Device) GetCreatedOk() (*time.Time, bool)

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

func (*Device) GetDescription ¶ added in v1.10.3

func (o *Device) GetDescription() string

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

func (*Device) GetDescriptionOk ¶ added in v1.10.3

func (o *Device) 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 (*Device) GetId ¶ added in v1.10.3

func (o *Device) GetId() string

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

func (*Device) GetIdOk ¶ added in v1.10.3

func (o *Device) 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 (*Device) GetLocation ¶ added in v1.10.3

func (o *Device) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*Device) GetLocationOk ¶ added in v1.10.3

func (o *Device) GetLocationOk() (*string, bool)

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

func (*Device) GetMetadata ¶ added in v1.10.3

func (o *Device) GetMetadata() map[string]map[string]interface{}

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

func (*Device) GetMetadataOk ¶ added in v1.10.3

func (o *Device) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Device) GetName ¶ added in v1.10.3

func (o *Device) GetName() string

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

func (*Device) GetNameOk ¶ added in v1.10.3

func (o *Device) 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 (*Device) GetTarget ¶ added in v1.10.3

func (o *Device) GetTarget() Target

GetTarget returns the Target field value if set, zero value otherwise.

func (*Device) GetTargetOk ¶ added in v1.10.3

func (o *Device) GetTargetOk() (*Target, bool)

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

func (*Device) GetType ¶ added in v1.10.3

func (o *Device) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Device) GetTypeOk ¶ added in v1.10.3

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

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

func (*Device) GetUpdated ¶ added in v1.10.3

func (o *Device) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Device) GetUpdatedOk ¶ added in v1.10.3

func (o *Device) GetUpdatedOk() (*time.Time, bool)

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

func (*Device) HasAllowedInstanceTypes ¶ added in v1.10.3

func (o *Device) HasAllowedInstanceTypes() bool

HasAllowedInstanceTypes returns a boolean if a field has been set.

func (*Device) HasCountry ¶ added in v1.10.3

func (o *Device) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*Device) HasCreated ¶ added in v1.10.3

func (o *Device) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Device) HasDescription ¶ added in v1.10.3

func (o *Device) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Device) HasId ¶ added in v1.10.3

func (o *Device) HasId() bool

HasId returns a boolean if a field has been set.

func (*Device) HasLocation ¶ added in v1.10.3

func (o *Device) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*Device) HasMetadata ¶ added in v1.10.3

func (o *Device) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Device) HasName ¶ added in v1.10.3

func (o *Device) HasName() bool

HasName returns a boolean if a field has been set.

func (*Device) HasTarget ¶ added in v1.10.3

func (o *Device) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*Device) HasType ¶ added in v1.10.3

func (o *Device) HasType() bool

HasType returns a boolean if a field has been set.

func (*Device) HasUpdated ¶ added in v1.10.3

func (o *Device) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Device) MarshalJSON ¶ added in v1.10.3

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

func (*Device) SetAllowedInstanceTypes ¶ added in v1.10.3

func (o *Device) SetAllowedInstanceTypes(v []string)

SetAllowedInstanceTypes gets a reference to the given []string and assigns it to the AllowedInstanceTypes field.

func (*Device) SetCountry ¶ added in v1.10.3

func (o *Device) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*Device) SetCreated ¶ added in v1.10.3

func (o *Device) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Device) SetDescription ¶ added in v1.10.3

func (o *Device) SetDescription(v string)

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

func (*Device) SetId ¶ added in v1.10.3

func (o *Device) SetId(v string)

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

func (*Device) SetLocation ¶ added in v1.10.3

func (o *Device) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*Device) SetMetadata ¶ added in v1.10.3

func (o *Device) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Device) SetName ¶ added in v1.10.3

func (o *Device) SetName(v string)

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

func (*Device) SetTarget ¶ added in v1.10.3

func (o *Device) SetTarget(v Target)

SetTarget gets a reference to the given Target and assigns it to the Target field.

func (*Device) SetType ¶ added in v1.10.3

func (o *Device) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Device) SetUpdated ¶ added in v1.10.3

func (o *Device) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Device) ToMap ¶ added in v1.10.3

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

type DeviceAPIService ¶ added in v1.10.3

type DeviceAPIService service

DeviceAPIService DeviceAPI service

func (*DeviceAPIService) CreateDevice ¶ added in v1.10.3

CreateDevice Create device

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateDeviceRequest

func (*DeviceAPIService) CreateDeviceExecute ¶ added in v1.10.3

func (a *DeviceAPIService) CreateDeviceExecute(r ApiCreateDeviceRequest) (*Device, *http.Response, error)

Execute executes the request

@return Device

func (*DeviceAPIService) DeleteDeviceById ¶ added in v1.10.3

func (a *DeviceAPIService) DeleteDeviceById(ctx context.Context, deviceId string) ApiDeleteDeviceByIdRequest

DeleteDeviceById Delete a device by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId Id of the device
@return ApiDeleteDeviceByIdRequest

func (*DeviceAPIService) DeleteDeviceByIdExecute ¶ added in v1.10.3

func (a *DeviceAPIService) DeleteDeviceByIdExecute(r ApiDeleteDeviceByIdRequest) (*http.Response, error)

Execute executes the request

func (*DeviceAPIService) FindDeviceByDeviceId ¶ added in v1.10.3

func (a *DeviceAPIService) FindDeviceByDeviceId(ctx context.Context, deviceId string) ApiFindDeviceByDeviceIdRequest

FindDeviceByDeviceId Find device by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId Id of the device
@return ApiFindDeviceByDeviceIdRequest

func (*DeviceAPIService) FindDeviceByDeviceIdExecute ¶ added in v1.10.3

func (a *DeviceAPIService) FindDeviceByDeviceIdExecute(r ApiFindDeviceByDeviceIdRequest) (*Device, *http.Response, error)

Execute executes the request

@return Device

func (*DeviceAPIService) FindDevices ¶ added in v1.10.3

FindDevices Retrieve all device

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindDevicesRequest

func (*DeviceAPIService) FindDevicesExecute ¶ added in v1.10.3

func (a *DeviceAPIService) FindDevicesExecute(r ApiFindDevicesRequest) (*DevicePage, *http.Response, error)

Execute executes the request

@return DevicePage

func (*DeviceAPIService) UpdateDevice ¶ added in v1.10.3

func (a *DeviceAPIService) UpdateDevice(ctx context.Context, deviceId string) ApiUpdateDeviceRequest

UpdateDevice Update an device

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param deviceId Id of the device
@return ApiUpdateDeviceRequest

func (*DeviceAPIService) UpdateDeviceExecute ¶ added in v1.10.3

func (a *DeviceAPIService) UpdateDeviceExecute(r ApiUpdateDeviceRequest) (*Device, *http.Response, error)

Execute executes the request

@return Device

type DevicePage ¶ added in v1.10.3

type DevicePage struct {
	Number  *int32   `json:"number,omitempty"`
	Size    *int32   `json:"size,omitempty"`
	Content []Device `json:"content,omitempty"`
}

DevicePage typed Page

func NewDevicePage ¶ added in v1.10.3

func NewDevicePage() *DevicePage

NewDevicePage instantiates a new DevicePage 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 NewDevicePageWithDefaults ¶ added in v1.10.3

func NewDevicePageWithDefaults() *DevicePage

NewDevicePageWithDefaults instantiates a new DevicePage 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 (*DevicePage) GetContent ¶ added in v1.10.3

func (o *DevicePage) GetContent() []Device

GetContent returns the Content field value if set, zero value otherwise.

func (*DevicePage) GetContentOk ¶ added in v1.10.3

func (o *DevicePage) GetContentOk() ([]Device, bool)

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

func (*DevicePage) GetNumber ¶ added in v1.10.3

func (o *DevicePage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*DevicePage) GetNumberOk ¶ added in v1.10.3

func (o *DevicePage) GetNumberOk() (*int32, bool)

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

func (*DevicePage) GetSize ¶ added in v1.10.3

func (o *DevicePage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*DevicePage) GetSizeOk ¶ added in v1.10.3

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

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

func (*DevicePage) HasContent ¶ added in v1.10.3

func (o *DevicePage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*DevicePage) HasNumber ¶ added in v1.10.3

func (o *DevicePage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*DevicePage) HasSize ¶ added in v1.10.3

func (o *DevicePage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (DevicePage) MarshalJSON ¶ added in v1.10.3

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

func (*DevicePage) SetContent ¶ added in v1.10.3

func (o *DevicePage) SetContent(v []Device)

SetContent gets a reference to the given []Device and assigns it to the Content field.

func (*DevicePage) SetNumber ¶ added in v1.10.3

func (o *DevicePage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*DevicePage) SetSize ¶ added in v1.10.3

func (o *DevicePage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (DevicePage) ToMap ¶ added in v1.10.3

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

type DevicePageAllOf ¶ added in v1.10.3

type DevicePageAllOf struct {
	Content *[]Device `json:"content,omitempty"`
}

DevicePageAllOf struct for DevicePageAllOf

func NewDevicePageAllOf ¶ added in v1.10.3

func NewDevicePageAllOf() *DevicePageAllOf

NewDevicePageAllOf instantiates a new DevicePageAllOf 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 NewDevicePageAllOfWithDefaults ¶ added in v1.10.3

func NewDevicePageAllOfWithDefaults() *DevicePageAllOf

NewDevicePageAllOfWithDefaults instantiates a new DevicePageAllOf 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 (*DevicePageAllOf) GetContent ¶ added in v1.10.3

func (o *DevicePageAllOf) GetContent() []Device

GetContent returns the Content field value if set, zero value otherwise.

func (*DevicePageAllOf) GetContentOk ¶ added in v1.10.3

func (o *DevicePageAllOf) GetContentOk() (*[]Device, bool)

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

func (*DevicePageAllOf) HasContent ¶ added in v1.10.3

func (o *DevicePageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (DevicePageAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*DevicePageAllOf) SetContent ¶ added in v1.10.3

func (o *DevicePageAllOf) SetContent(v []Device)

SetContent gets a reference to the given []Device and assigns it to the Content field.

type DistinctParams ¶ added in v1.10.3

type DistinctParams struct {
	// Return dataframe with duplicate rows removed. Certain                 columns can be used for identifying duplicates, by default use                 all of the columns.
	Columns []string `json:"columns,omitempty"`
}

DistinctParams struct for DistinctParams

func NewDistinctParams ¶ added in v1.10.3

func NewDistinctParams() *DistinctParams

NewDistinctParams instantiates a new DistinctParams 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 NewDistinctParamsWithDefaults ¶ added in v1.10.3

func NewDistinctParamsWithDefaults() *DistinctParams

NewDistinctParamsWithDefaults instantiates a new DistinctParams 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 (*DistinctParams) GetColumns ¶ added in v1.10.3

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

GetColumns returns the Columns field value if set, zero value otherwise.

func (*DistinctParams) GetColumnsOk ¶ added in v1.10.3

func (o *DistinctParams) 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.

func (*DistinctParams) HasColumns ¶ added in v1.10.3

func (o *DistinctParams) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (DistinctParams) MarshalJSON ¶ added in v1.10.3

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

func (*DistinctParams) SetColumns ¶ added in v1.10.3

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

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

func (DistinctParams) ToMap ¶ added in v1.10.3

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

type DistinctTask ¶ added in v1.10.3

type DistinctTask struct {
	// Identifier of the task.
	Id     string         `json:"id"`
	Params DistinctParams `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the distinct task.
	Type *string `json:"type,omitempty"`
}

DistinctTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewDistinctTask ¶ added in v1.10.3

func NewDistinctTask(id string, params DistinctParams, dependency []string) *DistinctTask

NewDistinctTask instantiates a new DistinctTask 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 NewDistinctTaskWithDefaults ¶ added in v1.10.3

func NewDistinctTaskWithDefaults() *DistinctTask

NewDistinctTaskWithDefaults instantiates a new DistinctTask 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 (*DistinctTask) GetDependency ¶ added in v1.10.3

func (o *DistinctTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*DistinctTask) GetDependencyOk ¶ added in v1.10.3

func (o *DistinctTask) GetDependencyOk() ([]string, bool)

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

func (*DistinctTask) GetId ¶ added in v1.10.3

func (o *DistinctTask) GetId() string

GetId returns the Id field value

func (*DistinctTask) GetIdOk ¶ added in v1.10.3

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

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

func (*DistinctTask) GetParams ¶ added in v1.10.3

func (o *DistinctTask) GetParams() DistinctParams

GetParams returns the Params field value

func (*DistinctTask) GetParamsOk ¶ added in v1.10.3

func (o *DistinctTask) GetParamsOk() (*DistinctParams, bool)

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

func (*DistinctTask) GetType ¶ added in v1.10.3

func (o *DistinctTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DistinctTask) GetTypeOk ¶ added in v1.10.3

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

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

func (*DistinctTask) HasType ¶ added in v1.10.3

func (o *DistinctTask) HasType() bool

HasType returns a boolean if a field has been set.

func (DistinctTask) MarshalJSON ¶ added in v1.10.3

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

func (*DistinctTask) SetDependency ¶ added in v1.10.3

func (o *DistinctTask) SetDependency(v []string)

SetDependency sets field value

func (*DistinctTask) SetId ¶ added in v1.10.3

func (o *DistinctTask) SetId(v string)

SetId sets field value

func (*DistinctTask) SetParams ¶ added in v1.10.3

func (o *DistinctTask) SetParams(v DistinctParams)

SetParams sets field value

func (*DistinctTask) SetType ¶ added in v1.10.3

func (o *DistinctTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (DistinctTask) ToMap ¶ added in v1.10.3

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

func (*DistinctTask) UnmarshalJSON ¶ added in v1.10.3

func (o *DistinctTask) UnmarshalJSON(bytes []byte) (err error)

type DropParams ¶ added in v1.10.3

type DropParams struct {
	// List of columns to drop.
	Columns []string `json:"columns"`
}

DropParams struct for DropParams

func NewDropParams ¶ added in v1.10.3

func NewDropParams(columns []string) *DropParams

NewDropParams instantiates a new DropParams 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 NewDropParamsWithDefaults ¶ added in v1.10.3

func NewDropParamsWithDefaults() *DropParams

NewDropParamsWithDefaults instantiates a new DropParams 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 (*DropParams) GetColumns ¶ added in v1.10.3

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

GetColumns returns the Columns field value

func (*DropParams) GetColumnsOk ¶ added in v1.10.3

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

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

func (DropParams) MarshalJSON ¶ added in v1.10.3

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

func (*DropParams) SetColumns ¶ added in v1.10.3

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

SetColumns sets field value

func (DropParams) ToMap ¶ added in v1.10.3

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

func (*DropParams) UnmarshalJSON ¶ added in v1.10.3

func (o *DropParams) UnmarshalJSON(bytes []byte) (err error)

type DropTask ¶ added in v1.10.3

type DropTask struct {
	// Identifier of the task.
	Id     string     `json:"id"`
	Params DropParams `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the drop task.
	Type *string `json:"type,omitempty"`
}

DropTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewDropTask ¶ added in v1.10.3

func NewDropTask(id string, params DropParams, dependency []string) *DropTask

NewDropTask instantiates a new DropTask 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 NewDropTaskWithDefaults ¶ added in v1.10.3

func NewDropTaskWithDefaults() *DropTask

NewDropTaskWithDefaults instantiates a new DropTask 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 (*DropTask) GetDependency ¶ added in v1.10.3

func (o *DropTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*DropTask) GetDependencyOk ¶ added in v1.10.3

func (o *DropTask) GetDependencyOk() ([]string, bool)

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

func (*DropTask) GetId ¶ added in v1.10.3

func (o *DropTask) GetId() string

GetId returns the Id field value

func (*DropTask) GetIdOk ¶ added in v1.10.3

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

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

func (*DropTask) GetParams ¶ added in v1.10.3

func (o *DropTask) GetParams() DropParams

GetParams returns the Params field value

func (*DropTask) GetParamsOk ¶ added in v1.10.3

func (o *DropTask) GetParamsOk() (*DropParams, bool)

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

func (*DropTask) GetType ¶ added in v1.10.3

func (o *DropTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*DropTask) GetTypeOk ¶ added in v1.10.3

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

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

func (*DropTask) HasType ¶ added in v1.10.3

func (o *DropTask) HasType() bool

HasType returns a boolean if a field has been set.

func (DropTask) MarshalJSON ¶ added in v1.10.3

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

func (*DropTask) SetDependency ¶ added in v1.10.3

func (o *DropTask) SetDependency(v []string)

SetDependency sets field value

func (*DropTask) SetId ¶ added in v1.10.3

func (o *DropTask) SetId(v string)

SetId sets field value

func (*DropTask) SetParams ¶ added in v1.10.3

func (o *DropTask) SetParams(v DropParams)

SetParams sets field value

func (*DropTask) SetType ¶ added in v1.10.3

func (o *DropTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (DropTask) ToMap ¶ added in v1.10.3

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

func (*DropTask) UnmarshalJSON ¶ added in v1.10.3

func (o *DropTask) UnmarshalJSON(bytes []byte) (err error)

type EndTask ¶ added in v1.10.3

type EndTask struct {
	Task
	Type *string `json:"type,omitempty"`
}

EndTask struct for EndTask

func NewEndTask ¶ added in v1.10.3

func NewEndTask() *EndTask

NewEndTask instantiates a new EndTask 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 NewEndTaskWithDefaults ¶ added in v1.10.3

func NewEndTaskWithDefaults() *EndTask

NewEndTaskWithDefaults instantiates a new EndTask 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 (*EndTask) GetType ¶ added in v1.10.3

func (o *EndTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EndTask) GetTypeOk ¶ added in v1.10.3

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

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

func (*EndTask) HasType ¶ added in v1.10.3

func (o *EndTask) HasType() bool

HasType returns a boolean if a field has been set.

func (EndTask) MarshalJSON ¶ added in v1.10.3

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

func (*EndTask) SetType ¶ added in v1.10.3

func (o *EndTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (EndTask) ToMap ¶ added in v1.10.3

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

type EndTaskAllOf ¶ added in v1.10.3

type EndTaskAllOf struct {
	Type *string `json:"type,omitempty"`
}

EndTaskAllOf struct for EndTaskAllOf

func NewEndTaskAllOf ¶ added in v1.10.3

func NewEndTaskAllOf() *EndTaskAllOf

NewEndTaskAllOf instantiates a new EndTaskAllOf 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 NewEndTaskAllOfWithDefaults ¶ added in v1.10.3

func NewEndTaskAllOfWithDefaults() *EndTaskAllOf

NewEndTaskAllOfWithDefaults instantiates a new EndTaskAllOf 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 (*EndTaskAllOf) GetType ¶ added in v1.10.3

func (o *EndTaskAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EndTaskAllOf) GetTypeOk ¶ added in v1.10.3

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

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

func (*EndTaskAllOf) HasType ¶ added in v1.10.3

func (o *EndTaskAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (EndTaskAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*EndTaskAllOf) SetType ¶ added in v1.10.3

func (o *EndTaskAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Endpoint ¶ added in v1.10.3

type Endpoint struct {
	Id               *string                           `json:"id,omitempty"`
	Name             *string                           `json:"name,omitempty"`
	Description      *string                           `json:"description,omitempty"`
	Version          *string                           `json:"version,omitempty"`
	Type             *string                           `json:"type,omitempty"`
	Library          *FileLibrary                      `json:"library,omitempty"`
	Uri              *Uri                              `json:"uri,omitempty"`
	InstanceType     *string                           `json:"instance_type,omitempty"`
	Owner            *string                           `json:"owner,omitempty"`
	InfrastructureId *string                           `json:"infrastructure_id,omitempty"`
	DeviceId         *string                           `json:"device_id,omitempty"`
	PublicUrl        *string                           `json:"public_url,omitempty"`
	Status           *string                           `json:"status,omitempty"`
	Created          *time.Time                        `json:"created,omitempty"`
	Updated          *time.Time                        `json:"updated,omitempty"`
	Labels           *map[string]string                `json:"labels,omitempty"`
	Metadata         map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Endpoint struct for Endpoint

func NewEndpoint ¶ added in v1.10.3

func NewEndpoint() *Endpoint

NewEndpoint instantiates a new Endpoint 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 NewEndpointWithDefaults ¶ added in v1.10.3

func NewEndpointWithDefaults() *Endpoint

NewEndpointWithDefaults instantiates a new Endpoint 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 (*Endpoint) GetCreated ¶ added in v1.10.3

func (o *Endpoint) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Endpoint) GetCreatedOk ¶ added in v1.10.3

func (o *Endpoint) GetCreatedOk() (*time.Time, bool)

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

func (*Endpoint) GetDescription ¶ added in v1.10.3

func (o *Endpoint) GetDescription() string

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

func (*Endpoint) GetDescriptionOk ¶ added in v1.10.3

func (o *Endpoint) 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 (*Endpoint) GetDeviceId ¶ added in v1.10.3

func (o *Endpoint) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*Endpoint) GetDeviceIdOk ¶ added in v1.10.3

func (o *Endpoint) GetDeviceIdOk() (*string, bool)

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

func (*Endpoint) GetId ¶ added in v1.10.3

func (o *Endpoint) GetId() string

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

func (*Endpoint) GetIdOk ¶ added in v1.10.3

func (o *Endpoint) 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 (*Endpoint) GetInfrastructureId ¶ added in v1.10.3

func (o *Endpoint) GetInfrastructureId() string

GetInfrastructureId returns the InfrastructureId field value if set, zero value otherwise.

func (*Endpoint) GetInfrastructureIdOk ¶ added in v1.10.3

func (o *Endpoint) GetInfrastructureIdOk() (*string, bool)

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

func (*Endpoint) GetInstanceType ¶ added in v1.10.3

func (o *Endpoint) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*Endpoint) GetInstanceTypeOk ¶ added in v1.10.3

func (o *Endpoint) GetInstanceTypeOk() (*string, bool)

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

func (*Endpoint) GetLabels ¶ added in v1.10.3

func (o *Endpoint) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Endpoint) GetLabelsOk ¶ added in v1.10.3

func (o *Endpoint) GetLabelsOk() (*map[string]string, bool)

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

func (*Endpoint) GetLibrary ¶ added in v1.10.3

func (o *Endpoint) GetLibrary() FileLibrary

GetLibrary returns the Library field value if set, zero value otherwise.

func (*Endpoint) GetLibraryOk ¶ added in v1.10.3

func (o *Endpoint) GetLibraryOk() (*FileLibrary, bool)

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

func (*Endpoint) GetMetadata ¶ added in v1.10.3

func (o *Endpoint) GetMetadata() map[string]map[string]interface{}

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

func (*Endpoint) GetMetadataOk ¶ added in v1.10.3

func (o *Endpoint) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Endpoint) GetName ¶ added in v1.10.3

func (o *Endpoint) GetName() string

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

func (*Endpoint) GetNameOk ¶ added in v1.10.3

func (o *Endpoint) 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 (*Endpoint) GetOwner ¶ added in v1.10.3

func (o *Endpoint) GetOwner() string

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

func (*Endpoint) GetOwnerOk ¶ added in v1.10.3

func (o *Endpoint) 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 (*Endpoint) GetPublicUrl ¶ added in v1.10.3

func (o *Endpoint) GetPublicUrl() string

GetPublicUrl returns the PublicUrl field value if set, zero value otherwise.

func (*Endpoint) GetPublicUrlOk ¶ added in v1.10.3

func (o *Endpoint) GetPublicUrlOk() (*string, bool)

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

func (*Endpoint) GetStatus ¶ added in v1.10.3

func (o *Endpoint) GetStatus() string

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

func (*Endpoint) GetStatusOk ¶ added in v1.10.3

func (o *Endpoint) GetStatusOk() (*string, 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 (*Endpoint) GetType ¶ added in v1.10.3

func (o *Endpoint) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Endpoint) GetTypeOk ¶ added in v1.10.3

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

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

func (*Endpoint) GetUpdated ¶ added in v1.10.3

func (o *Endpoint) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Endpoint) GetUpdatedOk ¶ added in v1.10.3

func (o *Endpoint) GetUpdatedOk() (*time.Time, bool)

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

func (*Endpoint) GetUri ¶ added in v1.10.3

func (o *Endpoint) GetUri() Uri

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

func (*Endpoint) GetUriOk ¶ added in v1.10.3

func (o *Endpoint) GetUriOk() (*Uri, 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 (*Endpoint) GetVersion ¶ added in v1.10.3

func (o *Endpoint) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Endpoint) GetVersionOk ¶ added in v1.10.3

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

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

func (*Endpoint) HasCreated ¶ added in v1.10.3

func (o *Endpoint) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Endpoint) HasDescription ¶ added in v1.10.3

func (o *Endpoint) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Endpoint) HasDeviceId ¶ added in v1.10.3

func (o *Endpoint) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*Endpoint) HasId ¶ added in v1.10.3

func (o *Endpoint) HasId() bool

HasId returns a boolean if a field has been set.

func (*Endpoint) HasInfrastructureId ¶ added in v1.10.3

func (o *Endpoint) HasInfrastructureId() bool

HasInfrastructureId returns a boolean if a field has been set.

func (*Endpoint) HasInstanceType ¶ added in v1.10.3

func (o *Endpoint) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (*Endpoint) HasLabels ¶ added in v1.10.3

func (o *Endpoint) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Endpoint) HasLibrary ¶ added in v1.10.3

func (o *Endpoint) HasLibrary() bool

HasLibrary returns a boolean if a field has been set.

func (*Endpoint) HasMetadata ¶ added in v1.10.3

func (o *Endpoint) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Endpoint) HasName ¶ added in v1.10.3

func (o *Endpoint) HasName() bool

HasName returns a boolean if a field has been set.

func (*Endpoint) HasOwner ¶ added in v1.10.3

func (o *Endpoint) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Endpoint) HasPublicUrl ¶ added in v1.10.3

func (o *Endpoint) HasPublicUrl() bool

HasPublicUrl returns a boolean if a field has been set.

func (*Endpoint) HasStatus ¶ added in v1.10.3

func (o *Endpoint) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Endpoint) HasType ¶ added in v1.10.3

func (o *Endpoint) HasType() bool

HasType returns a boolean if a field has been set.

func (*Endpoint) HasUpdated ¶ added in v1.10.3

func (o *Endpoint) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*Endpoint) HasUri ¶ added in v1.10.3

func (o *Endpoint) HasUri() bool

HasUri returns a boolean if a field has been set.

func (*Endpoint) HasVersion ¶ added in v1.10.3

func (o *Endpoint) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Endpoint) MarshalJSON ¶ added in v1.10.3

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

func (*Endpoint) SetCreated ¶ added in v1.10.3

func (o *Endpoint) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Endpoint) SetDescription ¶ added in v1.10.3

func (o *Endpoint) SetDescription(v string)

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

func (*Endpoint) SetDeviceId ¶ added in v1.10.3

func (o *Endpoint) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*Endpoint) SetId ¶ added in v1.10.3

func (o *Endpoint) SetId(v string)

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

func (*Endpoint) SetInfrastructureId ¶ added in v1.10.3

func (o *Endpoint) SetInfrastructureId(v string)

SetInfrastructureId gets a reference to the given string and assigns it to the InfrastructureId field.

func (*Endpoint) SetInstanceType ¶ added in v1.10.3

func (o *Endpoint) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (*Endpoint) SetLabels ¶ added in v1.10.3

func (o *Endpoint) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Endpoint) SetLibrary ¶ added in v1.10.3

func (o *Endpoint) SetLibrary(v FileLibrary)

SetLibrary gets a reference to the given FileLibrary and assigns it to the Library field.

func (*Endpoint) SetMetadata ¶ added in v1.10.3

func (o *Endpoint) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Endpoint) SetName ¶ added in v1.10.3

func (o *Endpoint) SetName(v string)

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

func (*Endpoint) SetOwner ¶ added in v1.10.3

func (o *Endpoint) SetOwner(v string)

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

func (*Endpoint) SetPublicUrl ¶ added in v1.10.3

func (o *Endpoint) SetPublicUrl(v string)

SetPublicUrl gets a reference to the given string and assigns it to the PublicUrl field.

func (*Endpoint) SetStatus ¶ added in v1.10.3

func (o *Endpoint) SetStatus(v string)

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

func (*Endpoint) SetType ¶ added in v1.10.3

func (o *Endpoint) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Endpoint) SetUpdated ¶ added in v1.10.3

func (o *Endpoint) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*Endpoint) SetUri ¶ added in v1.10.3

func (o *Endpoint) SetUri(v Uri)

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

func (*Endpoint) SetVersion ¶ added in v1.10.3

func (o *Endpoint) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Endpoint) ToMap ¶ added in v1.10.3

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

type EndpointAPIService ¶ added in v1.10.3

type EndpointAPIService service

EndpointAPIService EndpointAPI service

func (*EndpointAPIService) CallProxyInfer ¶ added in v1.10.3

func (a *EndpointAPIService) CallProxyInfer(ctx context.Context, projectId string, endpointId string) ApiCallProxyInferRequest

CallProxyInfer Call proxy infer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@param endpointId Id of the endpoint
@return ApiCallProxyInferRequest

func (*EndpointAPIService) CallProxyInferExecute ¶ added in v1.10.3

func (a *EndpointAPIService) CallProxyInferExecute(r ApiCallProxyInferRequest) (*http.Response, error)

Execute executes the request

func (*EndpointAPIService) CallProxyMetadata ¶ added in v1.10.3

func (a *EndpointAPIService) CallProxyMetadata(ctx context.Context, projectId string, endpointId string) ApiCallProxyMetadataRequest

CallProxyMetadata Call proxy metadata

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@param endpointId Id of the endpoint
@return ApiCallProxyMetadataRequest

func (*EndpointAPIService) CallProxyMetadataExecute ¶ added in v1.10.3

func (a *EndpointAPIService) CallProxyMetadataExecute(r ApiCallProxyMetadataRequest) (*http.Response, error)

Execute executes the request

func (*EndpointAPIService) CreateEndpointForProject ¶ added in v1.10.3

func (a *EndpointAPIService) CreateEndpointForProject(ctx context.Context, projectId string) ApiCreateEndpointForProjectRequest

CreateEndpointForProject Create endpoint

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiCreateEndpointForProjectRequest

func (*EndpointAPIService) CreateEndpointForProjectExecute ¶ added in v1.10.3

func (a *EndpointAPIService) CreateEndpointForProjectExecute(r ApiCreateEndpointForProjectRequest) (*Endpoint, *http.Response, error)

Execute executes the request

@return Endpoint

func (*EndpointAPIService) DeleteEndpointByIdAndProjectId ¶ added in v1.10.3

func (a *EndpointAPIService) DeleteEndpointByIdAndProjectId(ctx context.Context, projectId string, endpointId string) ApiDeleteEndpointByIdAndProjectIdRequest

DeleteEndpointByIdAndProjectId Delete an endpoint by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@param endpointId Id of the endpoint
@return ApiDeleteEndpointByIdAndProjectIdRequest

func (*EndpointAPIService) DeleteEndpointByIdAndProjectIdExecute ¶ added in v1.10.3

func (a *EndpointAPIService) DeleteEndpointByIdAndProjectIdExecute(r ApiDeleteEndpointByIdAndProjectIdRequest) (*http.Response, error)

Execute executes the request

func (*EndpointAPIService) FindEndpointByIdAndProjectId ¶ added in v1.10.3

func (a *EndpointAPIService) FindEndpointByIdAndProjectId(ctx context.Context, projectId string, endpointId string) ApiFindEndpointByIdAndProjectIdRequest

FindEndpointByIdAndProjectId Find endpoint by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@param endpointId Id of the endpoint
@return ApiFindEndpointByIdAndProjectIdRequest

func (*EndpointAPIService) FindEndpointByIdAndProjectIdExecute ¶ added in v1.10.3

func (a *EndpointAPIService) FindEndpointByIdAndProjectIdExecute(r ApiFindEndpointByIdAndProjectIdRequest) (*Endpoint, *http.Response, error)

Execute executes the request

@return Endpoint

func (*EndpointAPIService) FindEndpointsByProjectId ¶ added in v1.10.3

func (a *EndpointAPIService) FindEndpointsByProjectId(ctx context.Context, projectId string) ApiFindEndpointsByProjectIdRequest

FindEndpointsByProjectId Retrieve all endpoints

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiFindEndpointsByProjectIdRequest

func (*EndpointAPIService) FindEndpointsByProjectIdExecute ¶ added in v1.10.3

func (a *EndpointAPIService) FindEndpointsByProjectIdExecute(r ApiFindEndpointsByProjectIdRequest) (*EndpointPage, *http.Response, error)

Execute executes the request

@return EndpointPage

func (*EndpointAPIService) GetLogsForEndpoint ¶ added in v1.10.3

func (a *EndpointAPIService) GetLogsForEndpoint(ctx context.Context, projectId string, endpointId string) ApiGetLogsForEndpointRequest

GetLogsForEndpoint Get logs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@param endpointId Id of the endpoint
@return ApiGetLogsForEndpointRequest

func (*EndpointAPIService) GetLogsForEndpointExecute ¶ added in v1.10.3

func (a *EndpointAPIService) GetLogsForEndpointExecute(r ApiGetLogsForEndpointRequest) ([]LogEntry, *http.Response, error)

Execute executes the request

@return []LogEntry

func (*EndpointAPIService) UpdateEndpointByIdAndProjectId ¶ added in v1.10.3

func (a *EndpointAPIService) UpdateEndpointByIdAndProjectId(ctx context.Context, projectId string, endpointId string) ApiUpdateEndpointByIdAndProjectIdRequest

UpdateEndpointByIdAndProjectId Update an endpoint

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@param endpointId Id of the endpoint
@return ApiUpdateEndpointByIdAndProjectIdRequest

func (*EndpointAPIService) UpdateEndpointByIdAndProjectIdExecute ¶ added in v1.10.3

func (a *EndpointAPIService) UpdateEndpointByIdAndProjectIdExecute(r ApiUpdateEndpointByIdAndProjectIdRequest) (*Endpoint, *http.Response, error)

Execute executes the request

@return Endpoint

type EndpointPage ¶ added in v1.10.3

type EndpointPage struct {
	Number  *int32     `json:"number,omitempty"`
	Size    *int32     `json:"size,omitempty"`
	Content []Endpoint `json:"content,omitempty"`
}

EndpointPage typed Page

func NewEndpointPage ¶ added in v1.10.3

func NewEndpointPage() *EndpointPage

NewEndpointPage instantiates a new EndpointPage 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 NewEndpointPageWithDefaults ¶ added in v1.10.3

func NewEndpointPageWithDefaults() *EndpointPage

NewEndpointPageWithDefaults instantiates a new EndpointPage 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 (*EndpointPage) GetContent ¶ added in v1.10.3

func (o *EndpointPage) GetContent() []Endpoint

GetContent returns the Content field value if set, zero value otherwise.

func (*EndpointPage) GetContentOk ¶ added in v1.10.3

func (o *EndpointPage) GetContentOk() ([]Endpoint, bool)

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

func (*EndpointPage) GetNumber ¶ added in v1.10.3

func (o *EndpointPage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*EndpointPage) GetNumberOk ¶ added in v1.10.3

func (o *EndpointPage) GetNumberOk() (*int32, bool)

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

func (*EndpointPage) GetSize ¶ added in v1.10.3

func (o *EndpointPage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*EndpointPage) GetSizeOk ¶ added in v1.10.3

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

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

func (*EndpointPage) HasContent ¶ added in v1.10.3

func (o *EndpointPage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*EndpointPage) HasNumber ¶ added in v1.10.3

func (o *EndpointPage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*EndpointPage) HasSize ¶ added in v1.10.3

func (o *EndpointPage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (EndpointPage) MarshalJSON ¶ added in v1.10.3

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

func (*EndpointPage) SetContent ¶ added in v1.10.3

func (o *EndpointPage) SetContent(v []Endpoint)

SetContent gets a reference to the given []Endpoint and assigns it to the Content field.

func (*EndpointPage) SetNumber ¶ added in v1.10.3

func (o *EndpointPage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*EndpointPage) SetSize ¶ added in v1.10.3

func (o *EndpointPage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (EndpointPage) ToMap ¶ added in v1.10.3

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

type EndpointPageAllOf ¶ added in v1.10.3

type EndpointPageAllOf struct {
	Content *[]Endpoint `json:"content,omitempty"`
}

EndpointPageAllOf struct for EndpointPageAllOf

func NewEndpointPageAllOf ¶ added in v1.10.3

func NewEndpointPageAllOf() *EndpointPageAllOf

NewEndpointPageAllOf instantiates a new EndpointPageAllOf 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 NewEndpointPageAllOfWithDefaults ¶ added in v1.10.3

func NewEndpointPageAllOfWithDefaults() *EndpointPageAllOf

NewEndpointPageAllOfWithDefaults instantiates a new EndpointPageAllOf 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 (*EndpointPageAllOf) GetContent ¶ added in v1.10.3

func (o *EndpointPageAllOf) GetContent() []Endpoint

GetContent returns the Content field value if set, zero value otherwise.

func (*EndpointPageAllOf) GetContentOk ¶ added in v1.10.3

func (o *EndpointPageAllOf) GetContentOk() (*[]Endpoint, bool)

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

func (*EndpointPageAllOf) HasContent ¶ added in v1.10.3

func (o *EndpointPageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (EndpointPageAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*EndpointPageAllOf) SetContent ¶ added in v1.10.3

func (o *EndpointPageAllOf) SetContent(v []Endpoint)

SetContent gets a reference to the given []Endpoint and assigns it to the Content field.

type Enrollment ¶ added in v1.10.3

type Enrollment struct {
	Id                *string                           `json:"id,omitempty"`
	PlatformPublicKey *string                           `json:"platform_public_key,omitempty"`
	DeviceCertificate *string                           `json:"device_certificate,omitempty"`
	Description       *string                           `json:"description,omitempty"`
	Metadata          map[string]map[string]interface{} `json:"metadata,omitempty"`
	Created           *time.Time                        `json:"created,omitempty"`
	Updated           *time.Time                        `json:"updated,omitempty"`
}

Enrollment struct for Enrollment

func NewEnrollment ¶ added in v1.10.3

func NewEnrollment() *Enrollment

NewEnrollment instantiates a new Enrollment 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 NewEnrollmentWithDefaults ¶ added in v1.10.3

func NewEnrollmentWithDefaults() *Enrollment

NewEnrollmentWithDefaults instantiates a new Enrollment 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 (*Enrollment) GetCreated ¶ added in v1.10.3

func (o *Enrollment) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Enrollment) GetCreatedOk ¶ added in v1.10.3

func (o *Enrollment) GetCreatedOk() (*time.Time, bool)

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

func (*Enrollment) GetDescription ¶ added in v1.10.3

func (o *Enrollment) GetDescription() string

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

func (*Enrollment) GetDescriptionOk ¶ added in v1.10.3

func (o *Enrollment) 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 (*Enrollment) GetDeviceCertificate ¶ added in v1.10.3

func (o *Enrollment) GetDeviceCertificate() string

GetDeviceCertificate returns the DeviceCertificate field value if set, zero value otherwise.

func (*Enrollment) GetDeviceCertificateOk ¶ added in v1.10.3

func (o *Enrollment) GetDeviceCertificateOk() (*string, bool)

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

func (*Enrollment) GetId ¶ added in v1.10.3

func (o *Enrollment) GetId() string

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

func (*Enrollment) GetIdOk ¶ added in v1.10.3

func (o *Enrollment) 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 (*Enrollment) GetMetadata ¶ added in v1.10.3

func (o *Enrollment) GetMetadata() map[string]map[string]interface{}

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

func (*Enrollment) GetMetadataOk ¶ added in v1.10.3

func (o *Enrollment) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Enrollment) GetPlatformPublicKey ¶ added in v1.10.3

func (o *Enrollment) GetPlatformPublicKey() string

GetPlatformPublicKey returns the PlatformPublicKey field value if set, zero value otherwise.

func (*Enrollment) GetPlatformPublicKeyOk ¶ added in v1.10.3

func (o *Enrollment) GetPlatformPublicKeyOk() (*string, bool)

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

func (*Enrollment) GetUpdated ¶ added in v1.10.3

func (o *Enrollment) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Enrollment) GetUpdatedOk ¶ added in v1.10.3

func (o *Enrollment) GetUpdatedOk() (*time.Time, bool)

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

func (*Enrollment) HasCreated ¶ added in v1.10.3

func (o *Enrollment) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Enrollment) HasDescription ¶ added in v1.10.3

func (o *Enrollment) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Enrollment) HasDeviceCertificate ¶ added in v1.10.3

func (o *Enrollment) HasDeviceCertificate() bool

HasDeviceCertificate returns a boolean if a field has been set.

func (*Enrollment) HasId ¶ added in v1.10.3

func (o *Enrollment) HasId() bool

HasId returns a boolean if a field has been set.

func (*Enrollment) HasMetadata ¶ added in v1.10.3

func (o *Enrollment) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Enrollment) HasPlatformPublicKey ¶ added in v1.10.3

func (o *Enrollment) HasPlatformPublicKey() bool

HasPlatformPublicKey returns a boolean if a field has been set.

func (*Enrollment) HasUpdated ¶ added in v1.10.3

func (o *Enrollment) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Enrollment) MarshalJSON ¶ added in v1.10.3

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

func (*Enrollment) SetCreated ¶ added in v1.10.3

func (o *Enrollment) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Enrollment) SetDescription ¶ added in v1.10.3

func (o *Enrollment) SetDescription(v string)

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

func (*Enrollment) SetDeviceCertificate ¶ added in v1.10.3

func (o *Enrollment) SetDeviceCertificate(v string)

SetDeviceCertificate gets a reference to the given string and assigns it to the DeviceCertificate field.

func (*Enrollment) SetId ¶ added in v1.10.3

func (o *Enrollment) SetId(v string)

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

func (*Enrollment) SetMetadata ¶ added in v1.10.3

func (o *Enrollment) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Enrollment) SetPlatformPublicKey ¶ added in v1.10.3

func (o *Enrollment) SetPlatformPublicKey(v string)

SetPlatformPublicKey gets a reference to the given string and assigns it to the PlatformPublicKey field.

func (*Enrollment) SetUpdated ¶ added in v1.10.3

func (o *Enrollment) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Enrollment) ToMap ¶ added in v1.10.3

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

type EnrollmentAPIService ¶ added in v1.10.3

type EnrollmentAPIService service

EnrollmentAPIService EnrollmentAPI service

func (*EnrollmentAPIService) CreateEnrollment ¶ added in v1.10.3

CreateEnrollment Create enrollment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateEnrollmentRequest

func (*EnrollmentAPIService) CreateEnrollmentExecute ¶ added in v1.10.3

func (a *EnrollmentAPIService) CreateEnrollmentExecute(r ApiCreateEnrollmentRequest) (*Enrollment, *http.Response, error)

Execute executes the request

@return Enrollment

func (*EnrollmentAPIService) DeleteEnrollmentById ¶ added in v1.10.3

func (a *EnrollmentAPIService) DeleteEnrollmentById(ctx context.Context, enrollmentId string) ApiDeleteEnrollmentByIdRequest

DeleteEnrollmentById Delete a enrollment by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param enrollmentId Id of the enrollment
@return ApiDeleteEnrollmentByIdRequest

func (*EnrollmentAPIService) DeleteEnrollmentByIdExecute ¶ added in v1.10.3

func (a *EnrollmentAPIService) DeleteEnrollmentByIdExecute(r ApiDeleteEnrollmentByIdRequest) (*http.Response, error)

Execute executes the request

func (*EnrollmentAPIService) FindEnrollmentByEnrollmentId ¶ added in v1.10.3

func (a *EnrollmentAPIService) FindEnrollmentByEnrollmentId(ctx context.Context, enrollmentId string) ApiFindEnrollmentByEnrollmentIdRequest

FindEnrollmentByEnrollmentId Find enrollment by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param enrollmentId Id of the enrollment
@return ApiFindEnrollmentByEnrollmentIdRequest

func (*EnrollmentAPIService) FindEnrollmentByEnrollmentIdExecute ¶ added in v1.10.3

func (a *EnrollmentAPIService) FindEnrollmentByEnrollmentIdExecute(r ApiFindEnrollmentByEnrollmentIdRequest) (*Enrollment, *http.Response, error)

Execute executes the request

@return Enrollment

func (*EnrollmentAPIService) FindEnrollments ¶ added in v1.10.3

FindEnrollments Retrieve all enrollment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindEnrollmentsRequest

func (*EnrollmentAPIService) FindEnrollmentsExecute ¶ added in v1.10.3

Execute executes the request

@return EnrollmentPage

type EnrollmentPage ¶ added in v1.10.3

type EnrollmentPage struct {
	Number  *int32       `json:"number,omitempty"`
	Size    *int32       `json:"size,omitempty"`
	Content []Enrollment `json:"content,omitempty"`
}

EnrollmentPage typed Page

func NewEnrollmentPage ¶ added in v1.10.3

func NewEnrollmentPage() *EnrollmentPage

NewEnrollmentPage instantiates a new EnrollmentPage 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 NewEnrollmentPageWithDefaults ¶ added in v1.10.3

func NewEnrollmentPageWithDefaults() *EnrollmentPage

NewEnrollmentPageWithDefaults instantiates a new EnrollmentPage 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 (*EnrollmentPage) GetContent ¶ added in v1.10.3

func (o *EnrollmentPage) GetContent() []Enrollment

GetContent returns the Content field value if set, zero value otherwise.

func (*EnrollmentPage) GetContentOk ¶ added in v1.10.3

func (o *EnrollmentPage) GetContentOk() ([]Enrollment, bool)

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

func (*EnrollmentPage) GetNumber ¶ added in v1.10.3

func (o *EnrollmentPage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*EnrollmentPage) GetNumberOk ¶ added in v1.10.3

func (o *EnrollmentPage) GetNumberOk() (*int32, bool)

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

func (*EnrollmentPage) GetSize ¶ added in v1.10.3

func (o *EnrollmentPage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*EnrollmentPage) GetSizeOk ¶ added in v1.10.3

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

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

func (*EnrollmentPage) HasContent ¶ added in v1.10.3

func (o *EnrollmentPage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*EnrollmentPage) HasNumber ¶ added in v1.10.3

func (o *EnrollmentPage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*EnrollmentPage) HasSize ¶ added in v1.10.3

func (o *EnrollmentPage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (EnrollmentPage) MarshalJSON ¶ added in v1.10.3

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

func (*EnrollmentPage) SetContent ¶ added in v1.10.3

func (o *EnrollmentPage) SetContent(v []Enrollment)

SetContent gets a reference to the given []Enrollment and assigns it to the Content field.

func (*EnrollmentPage) SetNumber ¶ added in v1.10.3

func (o *EnrollmentPage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*EnrollmentPage) SetSize ¶ added in v1.10.3

func (o *EnrollmentPage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (EnrollmentPage) ToMap ¶ added in v1.10.3

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

type EnrollmentPageAllOf ¶ added in v1.10.3

type EnrollmentPageAllOf struct {
	Content *[]Enrollment `json:"content,omitempty"`
}

EnrollmentPageAllOf struct for EnrollmentPageAllOf

func NewEnrollmentPageAllOf ¶ added in v1.10.3

func NewEnrollmentPageAllOf() *EnrollmentPageAllOf

NewEnrollmentPageAllOf instantiates a new EnrollmentPageAllOf 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 NewEnrollmentPageAllOfWithDefaults ¶ added in v1.10.3

func NewEnrollmentPageAllOfWithDefaults() *EnrollmentPageAllOf

NewEnrollmentPageAllOfWithDefaults instantiates a new EnrollmentPageAllOf 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 (*EnrollmentPageAllOf) GetContent ¶ added in v1.10.3

func (o *EnrollmentPageAllOf) GetContent() []Enrollment

GetContent returns the Content field value if set, zero value otherwise.

func (*EnrollmentPageAllOf) GetContentOk ¶ added in v1.10.3

func (o *EnrollmentPageAllOf) GetContentOk() (*[]Enrollment, bool)

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

func (*EnrollmentPageAllOf) HasContent ¶ added in v1.10.3

func (o *EnrollmentPageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (EnrollmentPageAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*EnrollmentPageAllOf) SetContent ¶ added in v1.10.3

func (o *EnrollmentPageAllOf) SetContent(v []Enrollment)

SetContent gets a reference to the given []Enrollment and assigns it to the Content field.

type EnvAPIService ¶ added in v1.10.3

type EnvAPIService service

EnvAPIService EnvAPI service

func (*EnvAPIService) GetCapacity ¶ added in v1.10.3

func (a *EnvAPIService) GetCapacity(ctx context.Context) ApiGetCapacityRequest

GetCapacity Retrieve the capacity

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCapacityRequest

func (*EnvAPIService) GetCapacityExecute ¶ added in v1.10.3

func (a *EnvAPIService) GetCapacityExecute(r ApiGetCapacityRequest) (*TargetInfo, *http.Response, error)

Execute executes the request

@return TargetInfo

func (*EnvAPIService) GetEndpoints ¶ added in v1.10.3

func (a *EnvAPIService) GetEndpoints(ctx context.Context) ApiGetEndpointsRequest

GetEndpoints Find the endpoints for the current tenant

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetEndpointsRequest

func (*EnvAPIService) GetEndpointsExecute ¶ added in v1.10.3

func (a *EnvAPIService) GetEndpointsExecute(r ApiGetEndpointsRequest) (map[string]string, *http.Response, error)

Execute executes the request

@return map[string]string

func (*EnvAPIService) GetEnv ¶ added in v1.10.3

GetEnv Retrieve the current tenant

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetEnvRequest

func (*EnvAPIService) GetEnvExecute ¶ added in v1.10.3

func (a *EnvAPIService) GetEnvExecute(r ApiGetEnvRequest) (*Tenant1, *http.Response, error)

Execute executes the request

@return Tenant1

func (*EnvAPIService) GetMetricsForTenant ¶ added in v1.10.3

func (a *EnvAPIService) GetMetricsForTenant(ctx context.Context) ApiGetMetricsForTenantRequest

GetMetricsForTenant Find the metrics for the current tenant

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMetricsForTenantRequest

func (*EnvAPIService) GetMetricsForTenantExecute ¶ added in v1.10.3

func (a *EnvAPIService) GetMetricsForTenantExecute(r ApiGetMetricsForTenantRequest) ([]Metric, *http.Response, error)

Execute executes the request

@return []Metric

type EqualFilter ¶ added in v1.10.3

type EqualFilter struct {
	// Left operator for filter.
	Left string `json:"left"`
	// Right operator for filter.
	Right string `json:"right"`
	// Operator for EQUAL filter.
	Type *string `json:"type,omitempty"`
}

EqualFilter Filter values that are exactly equal to a given value. Attributes ---------- type : RelationalOperatorType Type of the filter.

func NewEqualFilter ¶ added in v1.10.3

func NewEqualFilter(left string, right string) *EqualFilter

NewEqualFilter instantiates a new EqualFilter 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 NewEqualFilterWithDefaults ¶ added in v1.10.3

func NewEqualFilterWithDefaults() *EqualFilter

NewEqualFilterWithDefaults instantiates a new EqualFilter 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 (*EqualFilter) GetLeft ¶ added in v1.10.3

func (o *EqualFilter) GetLeft() string

GetLeft returns the Left field value

func (*EqualFilter) GetLeftOk ¶ added in v1.10.3

func (o *EqualFilter) GetLeftOk() (*string, bool)

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

func (*EqualFilter) GetRight ¶ added in v1.10.3

func (o *EqualFilter) GetRight() string

GetRight returns the Right field value

func (*EqualFilter) GetRightOk ¶ added in v1.10.3

func (o *EqualFilter) GetRightOk() (*string, bool)

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

func (*EqualFilter) GetType ¶ added in v1.10.3

func (o *EqualFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EqualFilter) GetTypeOk ¶ added in v1.10.3

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

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

func (*EqualFilter) HasType ¶ added in v1.10.3

func (o *EqualFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (EqualFilter) MarshalJSON ¶ added in v1.10.3

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

func (*EqualFilter) SetLeft ¶ added in v1.10.3

func (o *EqualFilter) SetLeft(v string)

SetLeft sets field value

func (*EqualFilter) SetRight ¶ added in v1.10.3

func (o *EqualFilter) SetRight(v string)

SetRight sets field value

func (*EqualFilter) SetType ¶ added in v1.10.3

func (o *EqualFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (EqualFilter) ToMap ¶ added in v1.10.3

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

func (*EqualFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *EqualFilter) UnmarshalJSON(bytes []byte) (err error)

type Error ¶

type Error struct {
	Code    *string `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
	Reason  *string `json:"reason,omitempty"`
	Hint    *string `json:"hint,omitempty"`
}

Error struct for Error

func NewError ¶

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

func (*Error) GetCodeOk ¶

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

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

func (*Error) GetHint ¶

func (o *Error) GetHint() string

GetHint returns the Hint field value if set, zero value otherwise.

func (*Error) GetHintOk ¶

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

GetHintOk returns a tuple with the Hint field value if set, nil otherwise 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 if set, zero value otherwise.

func (*Error) GetMessageOk ¶

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

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

func (*Error) GetReason ¶

func (o *Error) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*Error) GetReasonOk ¶

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

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

func (*Error) HasCode ¶

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasHint ¶

func (o *Error) HasHint() bool

HasHint returns a boolean if a field has been set.

func (*Error) HasMessage ¶

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*Error) HasReason ¶

func (o *Error) HasReason() bool

HasReason returns a boolean if a field has been set.

func (Error) MarshalJSON ¶

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

func (*Error) SetCode ¶

func (o *Error) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*Error) SetHint ¶

func (o *Error) SetHint(v string)

SetHint gets a reference to the given string and assigns it to the Hint field.

func (*Error) SetMessage ¶

func (o *Error) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*Error) SetReason ¶

func (o *Error) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (Error) ToMap ¶ added in v1.10.3

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

type ErrorTask ¶ added in v1.10.3

type ErrorTask struct {
	Task
	Type *string `json:"type,omitempty"`
}

ErrorTask struct for ErrorTask

func NewErrorTask ¶ added in v1.10.3

func NewErrorTask() *ErrorTask

NewErrorTask instantiates a new ErrorTask 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 NewErrorTaskWithDefaults ¶ added in v1.10.3

func NewErrorTaskWithDefaults() *ErrorTask

NewErrorTaskWithDefaults instantiates a new ErrorTask 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 (*ErrorTask) GetType ¶ added in v1.10.3

func (o *ErrorTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ErrorTask) GetTypeOk ¶ added in v1.10.3

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

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

func (*ErrorTask) HasType ¶ added in v1.10.3

func (o *ErrorTask) HasType() bool

HasType returns a boolean if a field has been set.

func (ErrorTask) MarshalJSON ¶ added in v1.10.3

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

func (*ErrorTask) SetType ¶ added in v1.10.3

func (o *ErrorTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ErrorTask) ToMap ¶ added in v1.10.3

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

type ErrorTaskAllOf ¶ added in v1.10.3

type ErrorTaskAllOf struct {
	Type *string `json:"type,omitempty"`
}

ErrorTaskAllOf struct for ErrorTaskAllOf

func NewErrorTaskAllOf ¶ added in v1.10.3

func NewErrorTaskAllOf() *ErrorTaskAllOf

NewErrorTaskAllOf instantiates a new ErrorTaskAllOf 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 NewErrorTaskAllOfWithDefaults ¶ added in v1.10.3

func NewErrorTaskAllOfWithDefaults() *ErrorTaskAllOf

NewErrorTaskAllOfWithDefaults instantiates a new ErrorTaskAllOf 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 (*ErrorTaskAllOf) GetType ¶ added in v1.10.3

func (o *ErrorTaskAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ErrorTaskAllOf) GetTypeOk ¶ added in v1.10.3

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

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

func (*ErrorTaskAllOf) HasType ¶ added in v1.10.3

func (o *ErrorTaskAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (ErrorTaskAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*ErrorTaskAllOf) SetType ¶ added in v1.10.3

func (o *ErrorTaskAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Estimation ¶ added in v1.10.3

type Estimation struct {
	Currency *string   `json:"currency,omitempty"`
	Amount   *string   `json:"amount,omitempty"`
	Requests []Request `json:"requests,omitempty"`
}

Estimation struct for Estimation

func NewEstimation ¶ added in v1.10.3

func NewEstimation() *Estimation

NewEstimation instantiates a new Estimation 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 NewEstimationWithDefaults ¶ added in v1.10.3

func NewEstimationWithDefaults() *Estimation

NewEstimationWithDefaults instantiates a new Estimation 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 (*Estimation) GetAmount ¶ added in v1.10.3

func (o *Estimation) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*Estimation) GetAmountOk ¶ added in v1.10.3

func (o *Estimation) GetAmountOk() (*string, bool)

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

func (*Estimation) GetCurrency ¶ added in v1.10.3

func (o *Estimation) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*Estimation) GetCurrencyOk ¶ added in v1.10.3

func (o *Estimation) GetCurrencyOk() (*string, bool)

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

func (*Estimation) GetRequests ¶ added in v1.10.3

func (o *Estimation) GetRequests() []Request

GetRequests returns the Requests field value if set, zero value otherwise.

func (*Estimation) GetRequestsOk ¶ added in v1.10.3

func (o *Estimation) GetRequestsOk() ([]Request, bool)

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

func (*Estimation) HasAmount ¶ added in v1.10.3

func (o *Estimation) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*Estimation) HasCurrency ¶ added in v1.10.3

func (o *Estimation) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*Estimation) HasRequests ¶ added in v1.10.3

func (o *Estimation) HasRequests() bool

HasRequests returns a boolean if a field has been set.

func (Estimation) MarshalJSON ¶ added in v1.10.3

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

func (*Estimation) SetAmount ¶ added in v1.10.3

func (o *Estimation) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*Estimation) SetCurrency ¶ added in v1.10.3

func (o *Estimation) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*Estimation) SetRequests ¶ added in v1.10.3

func (o *Estimation) SetRequests(v []Request)

SetRequests gets a reference to the given []Request and assigns it to the Requests field.

func (Estimation) ToMap ¶ added in v1.10.3

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

type EstimationAPIService ¶ added in v1.10.3

type EstimationAPIService service

EstimationAPIService EstimationAPI service

func (*EstimationAPIService) CreateEstimation ¶ added in v1.10.3

CreateEstimation Create an estimation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateEstimationRequest

func (*EstimationAPIService) CreateEstimationExecute ¶ added in v1.10.3

func (a *EstimationAPIService) CreateEstimationExecute(r ApiCreateEstimationRequest) (*Estimation, *http.Response, error)

Execute executes the request

@return Estimation

type EtlDagSchemasEnumsLanguageType ¶ added in v1.10.3

type EtlDagSchemasEnumsLanguageType string

EtlDagSchemasEnumsLanguageType Map the dag input to LanguageType.

List of etl__dag__schemas__enums__LanguageType

func NewEtlDagSchemasEnumsLanguageTypeFromValue ¶ added in v1.10.3

func NewEtlDagSchemasEnumsLanguageTypeFromValue(v string) (*EtlDagSchemasEnumsLanguageType, error)

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

func (EtlDagSchemasEnumsLanguageType) IsValid ¶ added in v1.10.3

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

func (EtlDagSchemasEnumsLanguageType) Ptr ¶ added in v1.10.3

Ptr returns reference to etl__dag__schemas__enums__LanguageType value

func (*EtlDagSchemasEnumsLanguageType) UnmarshalJSON ¶ added in v1.10.3

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

type EtlDagVisitorsEnumsLanguageType ¶ added in v1.10.3

type EtlDagVisitorsEnumsLanguageType string

EtlDagVisitorsEnumsLanguageType Map the dag input to LanguageType.

func NewEtlDagVisitorsEnumsLanguageTypeFromValue ¶ added in v1.10.3

func NewEtlDagVisitorsEnumsLanguageTypeFromValue(v string) (*EtlDagVisitorsEnumsLanguageType, error)

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

func (EtlDagVisitorsEnumsLanguageType) IsValid ¶ added in v1.10.3

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

func (EtlDagVisitorsEnumsLanguageType) Ptr ¶ added in v1.10.3

Ptr returns reference to etl__dag__visitors__enums__LanguageType value

func (*EtlDagVisitorsEnumsLanguageType) UnmarshalJSON ¶ added in v1.10.3

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

type Event ¶

type Event struct {
	Id         *string                           `json:"id,omitempty"`
	ObjectType *string                           `json:"object_type,omitempty"`
	ObjectId   *string                           `json:"object_id,omitempty"`
	TenantId   *string                           `json:"tenant_id,omitempty"`
	Type       *string                           `json:"type,omitempty"`
	Message    *string                           `json:"message,omitempty"`
	At         *time.Time                        `json:"at,omitempty"`
	Metadata   map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Event struct for Event

func NewEvent ¶

func NewEvent() *Event

NewEvent instantiates a new Event 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 NewEventWithDefaults ¶

func NewEventWithDefaults() *Event

NewEventWithDefaults instantiates a new Event 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 (*Event) GetAt ¶

func (o *Event) GetAt() time.Time

GetAt returns the At field value if set, zero value otherwise.

func (*Event) GetAtOk ¶

func (o *Event) GetAtOk() (*time.Time, bool)

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

func (*Event) GetId ¶

func (o *Event) GetId() string

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

func (*Event) GetIdOk ¶

func (o *Event) 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 (*Event) GetMessage ¶

func (o *Event) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Event) GetMessageOk ¶

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

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

func (*Event) GetMetadata ¶

func (o *Event) GetMetadata() map[string]map[string]interface{}

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

func (*Event) GetMetadataOk ¶

func (o *Event) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Event) GetObjectId ¶

func (o *Event) GetObjectId() string

GetObjectId returns the ObjectId field value if set, zero value otherwise.

func (*Event) GetObjectIdOk ¶

func (o *Event) GetObjectIdOk() (*string, bool)

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

func (*Event) GetObjectType ¶

func (o *Event) GetObjectType() string

GetObjectType returns the ObjectType field value if set, zero value otherwise.

func (*Event) GetObjectTypeOk ¶

func (o *Event) GetObjectTypeOk() (*string, bool)

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

func (*Event) GetTenantId ¶

func (o *Event) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Event) GetTenantIdOk ¶

func (o *Event) GetTenantIdOk() (*string, bool)

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

func (*Event) GetType ¶

func (o *Event) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Event) GetTypeOk ¶

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

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

func (*Event) HasAt ¶

func (o *Event) HasAt() bool

HasAt returns a boolean if a field has been set.

func (*Event) HasId ¶

func (o *Event) HasId() bool

HasId returns a boolean if a field has been set.

func (*Event) HasMessage ¶

func (o *Event) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*Event) HasMetadata ¶

func (o *Event) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Event) HasObjectId ¶

func (o *Event) HasObjectId() bool

HasObjectId returns a boolean if a field has been set.

func (*Event) HasObjectType ¶

func (o *Event) HasObjectType() bool

HasObjectType returns a boolean if a field has been set.

func (*Event) HasTenantId ¶

func (o *Event) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Event) HasType ¶

func (o *Event) HasType() bool

HasType returns a boolean if a field has been set.

func (Event) MarshalJSON ¶

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

func (*Event) SetAt ¶

func (o *Event) SetAt(v time.Time)

SetAt gets a reference to the given time.Time and assigns it to the At field.

func (*Event) SetId ¶

func (o *Event) SetId(v string)

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

func (*Event) SetMessage ¶

func (o *Event) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*Event) SetMetadata ¶

func (o *Event) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Event) SetObjectId ¶

func (o *Event) SetObjectId(v string)

SetObjectId gets a reference to the given string and assigns it to the ObjectId field.

func (*Event) SetObjectType ¶

func (o *Event) SetObjectType(v string)

SetObjectType gets a reference to the given string and assigns it to the ObjectType field.

func (*Event) SetTenantId ¶

func (o *Event) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Event) SetType ¶

func (o *Event) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Event) ToMap ¶ added in v1.10.3

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

type EventAPIService ¶ added in v1.10.3

type EventAPIService service

EventAPIService EventAPI service

func (*EventAPIService) CreateEventForJobAndRun ¶ added in v1.10.3

func (a *EventAPIService) CreateEventForJobAndRun(ctx context.Context, jobId string, runId string) ApiCreateEventForJobAndRunRequest

CreateEventForJobAndRun Add event for a run and a job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@return ApiCreateEventForJobAndRunRequest

func (*EventAPIService) CreateEventForJobAndRunExecute ¶ added in v1.10.3

func (a *EventAPIService) CreateEventForJobAndRunExecute(r ApiCreateEventForJobAndRunRequest) (*Event, *http.Response, error)

Execute executes the request

@return Event

func (*EventAPIService) CreateEventForWorkflowAndRun ¶ added in v1.10.3

func (a *EventAPIService) CreateEventForWorkflowAndRun(ctx context.Context, workflowId string, runId string) ApiCreateEventForWorkflowAndRunRequest

CreateEventForWorkflowAndRun Add event for a run and a workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the Workflow
@param runId Id of the Run
@return ApiCreateEventForWorkflowAndRunRequest

func (*EventAPIService) CreateEventForWorkflowAndRunExecute ¶ added in v1.10.3

func (a *EventAPIService) CreateEventForWorkflowAndRunExecute(r ApiCreateEventForWorkflowAndRunRequest) (*Event, *http.Response, error)

Execute executes the request

@return Event

func (*EventAPIService) FindEventsByJobIdAndRunId ¶ added in v1.10.3

func (a *EventAPIService) FindEventsByJobIdAndRunId(ctx context.Context, jobId string, runId string) ApiFindEventsByJobIdAndRunIdRequest

FindEventsByJobIdAndRunId Find the events related to a run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@return ApiFindEventsByJobIdAndRunIdRequest

func (*EventAPIService) FindEventsByJobIdAndRunIdExecute ¶ added in v1.10.3

func (a *EventAPIService) FindEventsByJobIdAndRunIdExecute(r ApiFindEventsByJobIdAndRunIdRequest) ([]Event, *http.Response, error)

Execute executes the request

@return []Event

func (*EventAPIService) FindEventsByWorkflowIdAndRunId ¶ added in v1.10.3

func (a *EventAPIService) FindEventsByWorkflowIdAndRunId(ctx context.Context, workflowId string, runId string) ApiFindEventsByWorkflowIdAndRunIdRequest

FindEventsByWorkflowIdAndRunId Find the events related to a run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the Workflow
@param runId Id of the Run
@return ApiFindEventsByWorkflowIdAndRunIdRequest

func (*EventAPIService) FindEventsByWorkflowIdAndRunIdExecute ¶ added in v1.10.3

func (a *EventAPIService) FindEventsByWorkflowIdAndRunIdExecute(r ApiFindEventsByWorkflowIdAndRunIdRequest) ([]Event, *http.Response, error)

Execute executes the request

@return []Event

type EventHubNotification ¶

type EventHubNotification struct {
	Notification
	Type             *string `json:"type,omitempty"`
	ConnectionString *string `json:"connection_string,omitempty"`
	Data             *string `json:"data,omitempty"`
}

EventHubNotification struct for EventHubNotification

func NewEventHubNotification ¶

func NewEventHubNotification() *EventHubNotification

NewEventHubNotification instantiates a new EventHubNotification 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 NewEventHubNotificationWithDefaults ¶

func NewEventHubNotificationWithDefaults() *EventHubNotification

NewEventHubNotificationWithDefaults instantiates a new EventHubNotification 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 (*EventHubNotification) GetConnectionString ¶

func (o *EventHubNotification) GetConnectionString() string

GetConnectionString returns the ConnectionString field value if set, zero value otherwise.

func (*EventHubNotification) GetConnectionStringOk ¶

func (o *EventHubNotification) GetConnectionStringOk() (*string, bool)

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

func (*EventHubNotification) GetData ¶

func (o *EventHubNotification) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*EventHubNotification) GetDataOk ¶

func (o *EventHubNotification) GetDataOk() (*string, bool)

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

func (*EventHubNotification) GetType ¶

func (o *EventHubNotification) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EventHubNotification) GetTypeOk ¶

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

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

func (*EventHubNotification) HasConnectionString ¶

func (o *EventHubNotification) HasConnectionString() bool

HasConnectionString returns a boolean if a field has been set.

func (*EventHubNotification) HasData ¶

func (o *EventHubNotification) HasData() bool

HasData returns a boolean if a field has been set.

func (*EventHubNotification) HasType ¶

func (o *EventHubNotification) HasType() bool

HasType returns a boolean if a field has been set.

func (EventHubNotification) MarshalJSON ¶

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

func (*EventHubNotification) SetConnectionString ¶

func (o *EventHubNotification) SetConnectionString(v string)

SetConnectionString gets a reference to the given string and assigns it to the ConnectionString field.

func (*EventHubNotification) SetData ¶

func (o *EventHubNotification) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*EventHubNotification) SetType ¶

func (o *EventHubNotification) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (EventHubNotification) ToMap ¶ added in v1.10.3

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

type EventHubNotificationAllOf ¶

type EventHubNotificationAllOf struct {
	Type             *string `json:"type,omitempty"`
	ConnectionString *string `json:"connection_string,omitempty"`
	Data             *string `json:"data,omitempty"`
}

EventHubNotificationAllOf struct for EventHubNotificationAllOf

func NewEventHubNotificationAllOf ¶

func NewEventHubNotificationAllOf() *EventHubNotificationAllOf

NewEventHubNotificationAllOf instantiates a new EventHubNotificationAllOf 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 NewEventHubNotificationAllOfWithDefaults ¶

func NewEventHubNotificationAllOfWithDefaults() *EventHubNotificationAllOf

NewEventHubNotificationAllOfWithDefaults instantiates a new EventHubNotificationAllOf 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 (*EventHubNotificationAllOf) GetConnectionString ¶

func (o *EventHubNotificationAllOf) GetConnectionString() string

GetConnectionString returns the ConnectionString field value if set, zero value otherwise.

func (*EventHubNotificationAllOf) GetConnectionStringOk ¶

func (o *EventHubNotificationAllOf) GetConnectionStringOk() (*string, bool)

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

func (*EventHubNotificationAllOf) GetData ¶

func (o *EventHubNotificationAllOf) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*EventHubNotificationAllOf) GetDataOk ¶

func (o *EventHubNotificationAllOf) GetDataOk() (*string, bool)

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

func (*EventHubNotificationAllOf) GetType ¶

func (o *EventHubNotificationAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*EventHubNotificationAllOf) GetTypeOk ¶

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

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

func (*EventHubNotificationAllOf) HasConnectionString ¶

func (o *EventHubNotificationAllOf) HasConnectionString() bool

HasConnectionString returns a boolean if a field has been set.

func (*EventHubNotificationAllOf) HasData ¶

func (o *EventHubNotificationAllOf) HasData() bool

HasData returns a boolean if a field has been set.

func (*EventHubNotificationAllOf) HasType ¶

func (o *EventHubNotificationAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (EventHubNotificationAllOf) MarshalJSON ¶

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

func (*EventHubNotificationAllOf) SetConnectionString ¶

func (o *EventHubNotificationAllOf) SetConnectionString(v string)

SetConnectionString gets a reference to the given string and assigns it to the ConnectionString field.

func (*EventHubNotificationAllOf) SetData ¶

func (o *EventHubNotificationAllOf) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*EventHubNotificationAllOf) SetType ¶

func (o *EventHubNotificationAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ExternalOptions ¶ added in v1.10.3

type ExternalOptions struct {
	Host     *string  `json:"host,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Database *string  `json:"database,omitempty"`
	Schema   *string  `json:"schema,omitempty"`
	Type     *string  `json:"type,omitempty"`
}

ExternalOptions struct for ExternalOptions

func NewExternalOptions ¶ added in v1.10.3

func NewExternalOptions() *ExternalOptions

NewExternalOptions instantiates a new ExternalOptions 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 NewExternalOptionsWithDefaults ¶ added in v1.10.3

func NewExternalOptionsWithDefaults() *ExternalOptions

NewExternalOptionsWithDefaults instantiates a new ExternalOptions 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 (*ExternalOptions) GetDatabase ¶ added in v1.10.3

func (o *ExternalOptions) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*ExternalOptions) GetDatabaseOk ¶ added in v1.10.3

func (o *ExternalOptions) GetDatabaseOk() (*string, bool)

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

func (*ExternalOptions) GetHost ¶ added in v1.10.3

func (o *ExternalOptions) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*ExternalOptions) GetHostOk ¶ added in v1.10.3

func (o *ExternalOptions) GetHostOk() (*string, bool)

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

func (*ExternalOptions) GetPort ¶ added in v1.10.3

func (o *ExternalOptions) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*ExternalOptions) GetPortOk ¶ added in v1.10.3

func (o *ExternalOptions) GetPortOk() (*float32, bool)

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

func (*ExternalOptions) GetSchema ¶ added in v1.10.3

func (o *ExternalOptions) GetSchema() string

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

func (*ExternalOptions) GetSchemaOk ¶ added in v1.10.3

func (o *ExternalOptions) 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 (*ExternalOptions) GetType ¶ added in v1.10.3

func (o *ExternalOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ExternalOptions) GetTypeOk ¶ added in v1.10.3

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

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

func (*ExternalOptions) HasDatabase ¶ added in v1.10.3

func (o *ExternalOptions) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*ExternalOptions) HasHost ¶ added in v1.10.3

func (o *ExternalOptions) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*ExternalOptions) HasPort ¶ added in v1.10.3

func (o *ExternalOptions) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*ExternalOptions) HasSchema ¶ added in v1.10.3

func (o *ExternalOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*ExternalOptions) HasType ¶ added in v1.10.3

func (o *ExternalOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (ExternalOptions) MarshalJSON ¶ added in v1.10.3

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

func (*ExternalOptions) SetDatabase ¶ added in v1.10.3

func (o *ExternalOptions) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*ExternalOptions) SetHost ¶ added in v1.10.3

func (o *ExternalOptions) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*ExternalOptions) SetPort ¶ added in v1.10.3

func (o *ExternalOptions) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

func (*ExternalOptions) SetSchema ¶ added in v1.10.3

func (o *ExternalOptions) SetSchema(v string)

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

func (*ExternalOptions) SetType ¶ added in v1.10.3

func (o *ExternalOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ExternalOptions) ToMap ¶ added in v1.10.3

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

type ExternalPaymentMethod ¶

type ExternalPaymentMethod struct {
	PaymentMethod
	Type      *string `json:"type,omitempty"`
	Reference *string `json:"reference,omitempty"`
}

ExternalPaymentMethod struct for ExternalPaymentMethod

func NewExternalPaymentMethod ¶

func NewExternalPaymentMethod() *ExternalPaymentMethod

NewExternalPaymentMethod instantiates a new ExternalPaymentMethod 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 NewExternalPaymentMethodWithDefaults ¶

func NewExternalPaymentMethodWithDefaults() *ExternalPaymentMethod

NewExternalPaymentMethodWithDefaults instantiates a new ExternalPaymentMethod 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 (*ExternalPaymentMethod) GetReference ¶

func (o *ExternalPaymentMethod) GetReference() string

GetReference returns the Reference field value if set, zero value otherwise.

func (*ExternalPaymentMethod) GetReferenceOk ¶

func (o *ExternalPaymentMethod) GetReferenceOk() (*string, bool)

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

func (*ExternalPaymentMethod) GetType ¶

func (o *ExternalPaymentMethod) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ExternalPaymentMethod) GetTypeOk ¶

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

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

func (*ExternalPaymentMethod) HasReference ¶

func (o *ExternalPaymentMethod) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*ExternalPaymentMethod) HasType ¶

func (o *ExternalPaymentMethod) HasType() bool

HasType returns a boolean if a field has been set.

func (ExternalPaymentMethod) MarshalJSON ¶

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

func (*ExternalPaymentMethod) SetReference ¶

func (o *ExternalPaymentMethod) SetReference(v string)

SetReference gets a reference to the given string and assigns it to the Reference field.

func (*ExternalPaymentMethod) SetType ¶

func (o *ExternalPaymentMethod) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ExternalPaymentMethodAllOf ¶

type ExternalPaymentMethodAllOf struct {
	Type      *string `json:"type,omitempty"`
	Reference *string `json:"reference,omitempty"`
}

ExternalPaymentMethodAllOf struct for ExternalPaymentMethodAllOf

func NewExternalPaymentMethodAllOf ¶

func NewExternalPaymentMethodAllOf() *ExternalPaymentMethodAllOf

NewExternalPaymentMethodAllOf instantiates a new ExternalPaymentMethodAllOf 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 NewExternalPaymentMethodAllOfWithDefaults ¶

func NewExternalPaymentMethodAllOfWithDefaults() *ExternalPaymentMethodAllOf

NewExternalPaymentMethodAllOfWithDefaults instantiates a new ExternalPaymentMethodAllOf 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 (*ExternalPaymentMethodAllOf) GetReference ¶

func (o *ExternalPaymentMethodAllOf) GetReference() string

GetReference returns the Reference field value if set, zero value otherwise.

func (*ExternalPaymentMethodAllOf) GetReferenceOk ¶

func (o *ExternalPaymentMethodAllOf) GetReferenceOk() (*string, bool)

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

func (*ExternalPaymentMethodAllOf) GetType ¶

func (o *ExternalPaymentMethodAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ExternalPaymentMethodAllOf) GetTypeOk ¶

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

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

func (*ExternalPaymentMethodAllOf) HasReference ¶

func (o *ExternalPaymentMethodAllOf) HasReference() bool

HasReference returns a boolean if a field has been set.

func (*ExternalPaymentMethodAllOf) HasType ¶

func (o *ExternalPaymentMethodAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (ExternalPaymentMethodAllOf) MarshalJSON ¶

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

func (*ExternalPaymentMethodAllOf) SetReference ¶

func (o *ExternalPaymentMethodAllOf) SetReference(v string)

SetReference gets a reference to the given string and assigns it to the Reference field.

func (*ExternalPaymentMethodAllOf) SetType ¶

func (o *ExternalPaymentMethodAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Field ¶ added in v1.10.3

type Field struct {
	Id            *string                           `json:"id,omitempty"`
	TechnicalName *string                           `json:"technical_name,omitempty"`
	Name          *string                           `json:"name,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	Type          *string                           `json:"type,omitempty"`
	Nullable      *bool                             `json:"nullable,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Field struct for Field

func NewField ¶ added in v1.10.3

func NewField() *Field

NewField instantiates a new Field 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 NewFieldWithDefaults ¶ added in v1.10.3

func NewFieldWithDefaults() *Field

NewFieldWithDefaults instantiates a new Field 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 (*Field) GetCreated ¶ added in v1.10.3

func (o *Field) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Field) GetCreatedOk ¶ added in v1.10.3

func (o *Field) GetCreatedOk() (*time.Time, bool)

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

func (*Field) GetDescription ¶ added in v1.10.3

func (o *Field) GetDescription() string

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

func (*Field) GetDescriptionOk ¶ added in v1.10.3

func (o *Field) 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 (*Field) GetId ¶ added in v1.10.3

func (o *Field) GetId() string

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

func (*Field) GetIdOk ¶ added in v1.10.3

func (o *Field) 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 (*Field) GetMetadata ¶ added in v1.10.3

func (o *Field) GetMetadata() map[string]map[string]interface{}

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

func (*Field) GetMetadataOk ¶ added in v1.10.3

func (o *Field) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Field) GetName ¶ added in v1.10.3

func (o *Field) GetName() string

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

func (*Field) GetNameOk ¶ added in v1.10.3

func (o *Field) 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 (*Field) GetNullable ¶ added in v1.10.3

func (o *Field) GetNullable() bool

GetNullable returns the Nullable field value if set, zero value otherwise.

func (*Field) GetNullableOk ¶ added in v1.10.3

func (o *Field) GetNullableOk() (*bool, bool)

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

func (*Field) GetTechnicalName ¶ added in v1.10.3

func (o *Field) GetTechnicalName() string

GetTechnicalName returns the TechnicalName field value if set, zero value otherwise.

func (*Field) GetTechnicalNameOk ¶ added in v1.10.3

func (o *Field) GetTechnicalNameOk() (*string, bool)

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

func (*Field) GetType ¶ added in v1.10.3

func (o *Field) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Field) GetTypeOk ¶ added in v1.10.3

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

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

func (*Field) GetUpdated ¶ added in v1.10.3

func (o *Field) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Field) GetUpdatedOk ¶ added in v1.10.3

func (o *Field) GetUpdatedOk() (*time.Time, bool)

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

func (*Field) HasCreated ¶ added in v1.10.3

func (o *Field) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Field) HasDescription ¶ added in v1.10.3

func (o *Field) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Field) HasId ¶ added in v1.10.3

func (o *Field) HasId() bool

HasId returns a boolean if a field has been set.

func (*Field) HasMetadata ¶ added in v1.10.3

func (o *Field) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Field) HasName ¶ added in v1.10.3

func (o *Field) HasName() bool

HasName returns a boolean if a field has been set.

func (*Field) HasNullable ¶ added in v1.10.3

func (o *Field) HasNullable() bool

HasNullable returns a boolean if a field has been set.

func (*Field) HasTechnicalName ¶ added in v1.10.3

func (o *Field) HasTechnicalName() bool

HasTechnicalName returns a boolean if a field has been set.

func (*Field) HasType ¶ added in v1.10.3

func (o *Field) HasType() bool

HasType returns a boolean if a field has been set.

func (*Field) HasUpdated ¶ added in v1.10.3

func (o *Field) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Field) MarshalJSON ¶ added in v1.10.3

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

func (*Field) SetCreated ¶ added in v1.10.3

func (o *Field) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Field) SetDescription ¶ added in v1.10.3

func (o *Field) SetDescription(v string)

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

func (*Field) SetId ¶ added in v1.10.3

func (o *Field) SetId(v string)

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

func (*Field) SetMetadata ¶ added in v1.10.3

func (o *Field) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Field) SetName ¶ added in v1.10.3

func (o *Field) SetName(v string)

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

func (*Field) SetNullable ¶ added in v1.10.3

func (o *Field) SetNullable(v bool)

SetNullable gets a reference to the given bool and assigns it to the Nullable field.

func (*Field) SetTechnicalName ¶ added in v1.10.3

func (o *Field) SetTechnicalName(v string)

SetTechnicalName gets a reference to the given string and assigns it to the TechnicalName field.

func (*Field) SetType ¶ added in v1.10.3

func (o *Field) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Field) SetUpdated ¶ added in v1.10.3

func (o *Field) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Field) ToMap ¶ added in v1.10.3

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

type FieldAPIService ¶ added in v1.10.3

type FieldAPIService service

FieldAPIService FieldAPI service

func (*FieldAPIService) CreateField ¶ added in v1.10.3

func (a *FieldAPIService) CreateField(ctx context.Context, layerName string, databaseName string, tableName string) ApiCreateFieldRequest

CreateField Create a field

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Name of the layer
@param databaseName Name of the database
@param tableName Name of the table
@return ApiCreateFieldRequest

func (*FieldAPIService) CreateFieldExecute ¶ added in v1.10.3

func (a *FieldAPIService) CreateFieldExecute(r ApiCreateFieldRequest) (*Field, *http.Response, error)

Execute executes the request

@return Field

func (*FieldAPIService) FindFields ¶ added in v1.10.3

func (a *FieldAPIService) FindFields(ctx context.Context, layerName string, databaseName string, tableName string) ApiFindFieldsRequest

FindFields Retrieve all fields

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Name of the layer
@param databaseName Name of the database
@param tableName Name of the table
@return ApiFindFieldsRequest

func (*FieldAPIService) FindFieldsExecute ¶ added in v1.10.3

func (a *FieldAPIService) FindFieldsExecute(r ApiFindFieldsRequest) ([]Field, *http.Response, error)

Execute executes the request

@return []Field

type FileLibrary ¶

type FileLibrary struct {
	Library
	Type *string `json:"type,omitempty"`
	Key  *string `json:"key,omitempty"`
}

FileLibrary struct for FileLibrary

func NewFileLibrary ¶

func NewFileLibrary() *FileLibrary

NewFileLibrary instantiates a new FileLibrary 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 NewFileLibraryWithDefaults ¶

func NewFileLibraryWithDefaults() *FileLibrary

NewFileLibraryWithDefaults instantiates a new FileLibrary 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 (*FileLibrary) GetKey ¶

func (o *FileLibrary) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*FileLibrary) GetKeyOk ¶

func (o *FileLibrary) GetKeyOk() (*string, bool)

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

func (*FileLibrary) GetType ¶

func (o *FileLibrary) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*FileLibrary) GetTypeOk ¶

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

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

func (*FileLibrary) HasKey ¶

func (o *FileLibrary) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*FileLibrary) HasType ¶

func (o *FileLibrary) HasType() bool

HasType returns a boolean if a field has been set.

func (FileLibrary) MarshalJSON ¶

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

func (*FileLibrary) SetKey ¶

func (o *FileLibrary) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*FileLibrary) SetType ¶

func (o *FileLibrary) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (FileLibrary) ToMap ¶ added in v1.10.3

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

type FileLibraryAllOf ¶

type FileLibraryAllOf struct {
	Type *string `json:"type,omitempty"`
	Key  *string `json:"key,omitempty"`
}

FileLibraryAllOf struct for FileLibraryAllOf

func NewFileLibraryAllOf ¶

func NewFileLibraryAllOf() *FileLibraryAllOf

NewFileLibraryAllOf instantiates a new FileLibraryAllOf 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 NewFileLibraryAllOfWithDefaults ¶

func NewFileLibraryAllOfWithDefaults() *FileLibraryAllOf

NewFileLibraryAllOfWithDefaults instantiates a new FileLibraryAllOf 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 (*FileLibraryAllOf) GetKey ¶

func (o *FileLibraryAllOf) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*FileLibraryAllOf) GetKeyOk ¶

func (o *FileLibraryAllOf) GetKeyOk() (*string, bool)

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

func (*FileLibraryAllOf) GetType ¶

func (o *FileLibraryAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*FileLibraryAllOf) GetTypeOk ¶

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

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

func (*FileLibraryAllOf) HasKey ¶

func (o *FileLibraryAllOf) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*FileLibraryAllOf) HasType ¶

func (o *FileLibraryAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (FileLibraryAllOf) MarshalJSON ¶

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

func (*FileLibraryAllOf) SetKey ¶

func (o *FileLibraryAllOf) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*FileLibraryAllOf) SetType ¶

func (o *FileLibraryAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type FileOrDirectory ¶

type FileOrDirectory struct {
	Directory *bool         `json:"directory,omitempty"`
	Path      *string       `json:"path,omitempty"`
	Name      *string       `json:"name,omitempty"`
	Metadata  *BlobMetadata `json:"metadata,omitempty"`
}

FileOrDirectory struct for FileOrDirectory

func NewFileOrDirectory ¶

func NewFileOrDirectory() *FileOrDirectory

NewFileOrDirectory instantiates a new FileOrDirectory 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 NewFileOrDirectoryWithDefaults ¶

func NewFileOrDirectoryWithDefaults() *FileOrDirectory

NewFileOrDirectoryWithDefaults instantiates a new FileOrDirectory 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 (*FileOrDirectory) GetDirectory ¶

func (o *FileOrDirectory) GetDirectory() bool

GetDirectory returns the Directory field value if set, zero value otherwise.

func (*FileOrDirectory) GetDirectoryOk ¶

func (o *FileOrDirectory) GetDirectoryOk() (*bool, bool)

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

func (*FileOrDirectory) GetMetadata ¶

func (o *FileOrDirectory) GetMetadata() BlobMetadata

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

func (*FileOrDirectory) GetMetadataOk ¶

func (o *FileOrDirectory) GetMetadataOk() (*BlobMetadata, 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 (*FileOrDirectory) GetName ¶

func (o *FileOrDirectory) GetName() string

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

func (*FileOrDirectory) GetNameOk ¶

func (o *FileOrDirectory) 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 (*FileOrDirectory) GetPath ¶

func (o *FileOrDirectory) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*FileOrDirectory) GetPathOk ¶

func (o *FileOrDirectory) GetPathOk() (*string, bool)

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

func (*FileOrDirectory) HasDirectory ¶

func (o *FileOrDirectory) HasDirectory() bool

HasDirectory returns a boolean if a field has been set.

func (*FileOrDirectory) HasMetadata ¶

func (o *FileOrDirectory) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*FileOrDirectory) HasName ¶

func (o *FileOrDirectory) HasName() bool

HasName returns a boolean if a field has been set.

func (*FileOrDirectory) HasPath ¶

func (o *FileOrDirectory) HasPath() bool

HasPath returns a boolean if a field has been set.

func (FileOrDirectory) MarshalJSON ¶

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

func (*FileOrDirectory) SetDirectory ¶

func (o *FileOrDirectory) SetDirectory(v bool)

SetDirectory gets a reference to the given bool and assigns it to the Directory field.

func (*FileOrDirectory) SetMetadata ¶

func (o *FileOrDirectory) SetMetadata(v BlobMetadata)

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

func (*FileOrDirectory) SetName ¶

func (o *FileOrDirectory) SetName(v string)

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

func (*FileOrDirectory) SetPath ¶

func (o *FileOrDirectory) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (FileOrDirectory) ToMap ¶ added in v1.10.3

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

type FilterTask ¶ added in v1.10.3

type FilterTask struct {
	// Identifier of the task.
	Id     string               `json:"id"`
	Params FilterTaskParameters `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the filter task.
	Type *string `json:"type,omitempty"`
}

FilterTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewFilterTask ¶ added in v1.10.3

func NewFilterTask(id string, params FilterTaskParameters, dependency []string) *FilterTask

NewFilterTask instantiates a new FilterTask 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 NewFilterTaskWithDefaults ¶ added in v1.10.3

func NewFilterTaskWithDefaults() *FilterTask

NewFilterTaskWithDefaults instantiates a new FilterTask 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 (*FilterTask) GetDependency ¶ added in v1.10.3

func (o *FilterTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*FilterTask) GetDependencyOk ¶ added in v1.10.3

func (o *FilterTask) GetDependencyOk() ([]string, bool)

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

func (*FilterTask) GetId ¶ added in v1.10.3

func (o *FilterTask) GetId() string

GetId returns the Id field value

func (*FilterTask) GetIdOk ¶ added in v1.10.3

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

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

func (*FilterTask) GetParams ¶ added in v1.10.3

func (o *FilterTask) GetParams() FilterTaskParameters

GetParams returns the Params field value

func (*FilterTask) GetParamsOk ¶ added in v1.10.3

func (o *FilterTask) GetParamsOk() (*FilterTaskParameters, bool)

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

func (*FilterTask) GetType ¶ added in v1.10.3

func (o *FilterTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*FilterTask) GetTypeOk ¶ added in v1.10.3

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

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

func (*FilterTask) HasType ¶ added in v1.10.3

func (o *FilterTask) HasType() bool

HasType returns a boolean if a field has been set.

func (FilterTask) MarshalJSON ¶ added in v1.10.3

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

func (*FilterTask) SetDependency ¶ added in v1.10.3

func (o *FilterTask) SetDependency(v []string)

SetDependency sets field value

func (*FilterTask) SetId ¶ added in v1.10.3

func (o *FilterTask) SetId(v string)

SetId sets field value

func (*FilterTask) SetParams ¶ added in v1.10.3

func (o *FilterTask) SetParams(v FilterTaskParameters)

SetParams sets field value

func (*FilterTask) SetType ¶ added in v1.10.3

func (o *FilterTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (FilterTask) ToMap ¶ added in v1.10.3

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

func (*FilterTask) UnmarshalJSON ¶ added in v1.10.3

func (o *FilterTask) UnmarshalJSON(bytes []byte) (err error)

type FilterTaskParameters ¶ added in v1.10.3

type FilterTaskParameters struct {
	AndFilter                *AndFilter
	BetweenFilter            *BetweenFilter
	EqualFilter              *EqualFilter
	GreaterOrEqualThanFilter *GreaterOrEqualThanFilter
	GreaterThanFilter        *GreaterThanFilter
	InFilter                 *InFilter
	LessOrEqualThanFilter    *LessOrEqualThanFilter
	LessThanFilter           *LessThanFilter
	LikeFilter               *LikeFilter
	NotEqualFilter           *NotEqualFilter
	NotFilter                *NotFilter
	NotNullFilter            *NotNullFilter
	OrFilter                 *OrFilter
}

FilterTaskParameters Parameters of the filter task.

func (*FilterTaskParameters) MarshalJSON ¶ added in v1.10.3

func (src *FilterTaskParameters) MarshalJSON() ([]byte, error)

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

func (*FilterTaskParameters) UnmarshalJSON ¶ added in v1.10.3

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

Unmarshal JSON data into any of the pointers in the struct

type FindVerificationByCode200Response ¶ added in v1.10.3

type FindVerificationByCode200Response struct {
	Status *string `json:"status,omitempty"`
}

FindVerificationByCode200Response struct for FindVerificationByCode200Response

func NewFindVerificationByCode200Response ¶ added in v1.10.3

func NewFindVerificationByCode200Response() *FindVerificationByCode200Response

NewFindVerificationByCode200Response instantiates a new FindVerificationByCode200Response 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 NewFindVerificationByCode200ResponseWithDefaults ¶ added in v1.10.3

func NewFindVerificationByCode200ResponseWithDefaults() *FindVerificationByCode200Response

NewFindVerificationByCode200ResponseWithDefaults instantiates a new FindVerificationByCode200Response 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 (*FindVerificationByCode200Response) GetStatus ¶ added in v1.10.3

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

func (*FindVerificationByCode200Response) GetStatusOk ¶ added in v1.10.3

func (o *FindVerificationByCode200Response) GetStatusOk() (*string, 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 (*FindVerificationByCode200Response) HasStatus ¶ added in v1.10.3

func (o *FindVerificationByCode200Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (FindVerificationByCode200Response) MarshalJSON ¶ added in v1.10.3

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

func (*FindVerificationByCode200Response) SetStatus ¶ added in v1.10.3

func (o *FindVerificationByCode200Response) SetStatus(v string)

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

func (FindVerificationByCode200Response) ToMap ¶ added in v1.10.3

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

type FirewallAPIService ¶ added in v1.10.3

type FirewallAPIService service

FirewallAPIService FirewallAPI service

func (*FirewallAPIService) CheckAccessByIp ¶ added in v1.10.3

CheckAccessByIp check access for firewall

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ip Input IP
@return ApiCheckAccessByIpRequest

func (*FirewallAPIService) CheckAccessByIpExecute ¶ added in v1.10.3

Execute executes the request

@return FirewallCheckStatus

func (*FirewallAPIService) DeleteFirewallRuleById ¶ added in v1.10.3

func (a *FirewallAPIService) DeleteFirewallRuleById(ctx context.Context, ruleId string) ApiDeleteFirewallRuleByIdRequest

DeleteFirewallRuleById Delete a rule by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ruleId Id of the FirewallRule
@return ApiDeleteFirewallRuleByIdRequest

func (*FirewallAPIService) DeleteFirewallRuleByIdExecute ¶ added in v1.10.3

func (a *FirewallAPIService) DeleteFirewallRuleByIdExecute(r ApiDeleteFirewallRuleByIdRequest) (*http.Response, error)

Execute executes the request

func (*FirewallAPIService) FindFirewallRuleByFirewallRuleId ¶ added in v1.10.3

func (a *FirewallAPIService) FindFirewallRuleByFirewallRuleId(ctx context.Context, ruleId string) ApiFindFirewallRuleByFirewallRuleIdRequest

FindFirewallRuleByFirewallRuleId Find rule by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ruleId Id of the FirewallRule
@return ApiFindFirewallRuleByFirewallRuleIdRequest

func (*FirewallAPIService) FindFirewallRuleByFirewallRuleIdExecute ¶ added in v1.10.3

func (a *FirewallAPIService) FindFirewallRuleByFirewallRuleIdExecute(r ApiFindFirewallRuleByFirewallRuleIdRequest) (*FirewallRule, *http.Response, error)

Execute executes the request

@return FirewallRule

func (*FirewallAPIService) FindFirewallRules ¶ added in v1.10.3

FindFirewallRules Retrieve all firewall rules

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindFirewallRulesRequest

func (*FirewallAPIService) FindFirewallRulesExecute ¶ added in v1.10.3

func (a *FirewallAPIService) FindFirewallRulesExecute(r ApiFindFirewallRulesRequest) ([]FirewallRule, *http.Response, error)

Execute executes the request

@return []FirewallRule

func (*FirewallAPIService) UpdateFirewallRule ¶ added in v1.10.3

func (a *FirewallAPIService) UpdateFirewallRule(ctx context.Context, ruleId string) ApiUpdateFirewallRuleRequest

UpdateFirewallRule Update a rule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ruleId Id of the FirewallRule
@return ApiUpdateFirewallRuleRequest

func (*FirewallAPIService) UpdateFirewallRuleExecute ¶ added in v1.10.3

func (a *FirewallAPIService) UpdateFirewallRuleExecute(r ApiUpdateFirewallRuleRequest) (*FirewallRule, *http.Response, error)

Execute executes the request

@return FirewallRule

type FirewallCheckStatus ¶

type FirewallCheckStatus struct {
	Granted *bool `json:"granted,omitempty"`
}

FirewallCheckStatus struct for FirewallCheckStatus

func NewFirewallCheckStatus ¶

func NewFirewallCheckStatus() *FirewallCheckStatus

NewFirewallCheckStatus instantiates a new FirewallCheckStatus 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 NewFirewallCheckStatusWithDefaults ¶

func NewFirewallCheckStatusWithDefaults() *FirewallCheckStatus

NewFirewallCheckStatusWithDefaults instantiates a new FirewallCheckStatus 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 (*FirewallCheckStatus) GetGranted ¶

func (o *FirewallCheckStatus) GetGranted() bool

GetGranted returns the Granted field value if set, zero value otherwise.

func (*FirewallCheckStatus) GetGrantedOk ¶

func (o *FirewallCheckStatus) GetGrantedOk() (*bool, bool)

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

func (*FirewallCheckStatus) HasGranted ¶

func (o *FirewallCheckStatus) HasGranted() bool

HasGranted returns a boolean if a field has been set.

func (FirewallCheckStatus) MarshalJSON ¶

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

func (*FirewallCheckStatus) SetGranted ¶

func (o *FirewallCheckStatus) SetGranted(v bool)

SetGranted gets a reference to the given bool and assigns it to the Granted field.

func (FirewallCheckStatus) ToMap ¶ added in v1.10.3

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

type FirewallRule ¶

type FirewallRule struct {
	Id          *string                           `json:"id,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Type        *string                           `json:"type,omitempty"`
	Protocol    *string                           `json:"protocol,omitempty"`
	Ports       *string                           `json:"ports,omitempty"`
	Source      *string                           `json:"source,omitempty"`
	Target      *string                           `json:"target,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

FirewallRule struct for FirewallRule

func NewFirewallRule ¶

func NewFirewallRule() *FirewallRule

NewFirewallRule instantiates a new FirewallRule 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 NewFirewallRuleWithDefaults ¶

func NewFirewallRuleWithDefaults() *FirewallRule

NewFirewallRuleWithDefaults instantiates a new FirewallRule 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 (*FirewallRule) GetCreated ¶

func (o *FirewallRule) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*FirewallRule) GetCreatedOk ¶

func (o *FirewallRule) GetCreatedOk() (*time.Time, bool)

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

func (*FirewallRule) GetDescription ¶

func (o *FirewallRule) GetDescription() string

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

func (*FirewallRule) GetDescriptionOk ¶

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

func (o *FirewallRule) GetId() string

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

func (*FirewallRule) GetIdOk ¶

func (o *FirewallRule) 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 (*FirewallRule) GetMetadata ¶

func (o *FirewallRule) GetMetadata() map[string]map[string]interface{}

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

func (*FirewallRule) GetMetadataOk ¶

func (o *FirewallRule) GetMetadataOk() (map[string]map[string]interface{}, 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 (*FirewallRule) GetPorts ¶

func (o *FirewallRule) GetPorts() string

GetPorts returns the Ports field value if set, zero value otherwise.

func (*FirewallRule) GetPortsOk ¶

func (o *FirewallRule) GetPortsOk() (*string, bool)

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

func (*FirewallRule) GetProtocol ¶

func (o *FirewallRule) GetProtocol() string

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*FirewallRule) GetProtocolOk ¶

func (o *FirewallRule) GetProtocolOk() (*string, bool)

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

func (*FirewallRule) GetSource ¶

func (o *FirewallRule) GetSource() string

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

func (*FirewallRule) GetSourceOk ¶

func (o *FirewallRule) 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 (*FirewallRule) GetTarget ¶

func (o *FirewallRule) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*FirewallRule) GetTargetOk ¶

func (o *FirewallRule) GetTargetOk() (*string, bool)

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

func (*FirewallRule) GetType ¶

func (o *FirewallRule) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*FirewallRule) GetTypeOk ¶

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

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

func (*FirewallRule) GetUpdated ¶

func (o *FirewallRule) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*FirewallRule) GetUpdatedOk ¶

func (o *FirewallRule) GetUpdatedOk() (*time.Time, bool)

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

func (*FirewallRule) HasCreated ¶

func (o *FirewallRule) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*FirewallRule) HasDescription ¶

func (o *FirewallRule) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FirewallRule) HasId ¶

func (o *FirewallRule) HasId() bool

HasId returns a boolean if a field has been set.

func (*FirewallRule) HasMetadata ¶

func (o *FirewallRule) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*FirewallRule) HasPorts ¶

func (o *FirewallRule) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (*FirewallRule) HasProtocol ¶

func (o *FirewallRule) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*FirewallRule) HasSource ¶

func (o *FirewallRule) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*FirewallRule) HasTarget ¶

func (o *FirewallRule) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*FirewallRule) HasType ¶

func (o *FirewallRule) HasType() bool

HasType returns a boolean if a field has been set.

func (*FirewallRule) HasUpdated ¶

func (o *FirewallRule) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (FirewallRule) MarshalJSON ¶

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

func (*FirewallRule) SetCreated ¶

func (o *FirewallRule) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*FirewallRule) SetDescription ¶

func (o *FirewallRule) SetDescription(v string)

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

func (*FirewallRule) SetId ¶

func (o *FirewallRule) SetId(v string)

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

func (*FirewallRule) SetMetadata ¶

func (o *FirewallRule) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*FirewallRule) SetPorts ¶

func (o *FirewallRule) SetPorts(v string)

SetPorts gets a reference to the given string and assigns it to the Ports field.

func (*FirewallRule) SetProtocol ¶

func (o *FirewallRule) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

func (*FirewallRule) SetSource ¶

func (o *FirewallRule) SetSource(v string)

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

func (*FirewallRule) SetTarget ¶

func (o *FirewallRule) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (*FirewallRule) SetType ¶

func (o *FirewallRule) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*FirewallRule) SetUpdated ¶

func (o *FirewallRule) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (FirewallRule) ToMap ¶ added in v1.10.3

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

type FirewallRulesAPIService ¶ added in v1.10.3

type FirewallRulesAPIService service

FirewallRulesAPIService FirewallRulesAPI service

func (*FirewallRulesAPIService) CreateFirewallRule ¶ added in v1.10.3

CreateFirewallRule Create a firewall rule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateFirewallRuleRequest

func (*FirewallRulesAPIService) CreateFirewallRuleExecute ¶ added in v1.10.3

Execute executes the request

@return FirewallRule

type FlinkOptions ¶

type FlinkOptions struct {
	Options
	Type                    *string  `json:"type,omitempty"`
	MainLibrary             *Library `json:"main_library,omitempty"`
	MainClassName           *string  `json:"main_class_name,omitempty"`
	Loggers                 []string `json:"loggers,omitempty"`
	JobManagerInstanceType  *string  `json:"job_manager_instance_type,omitempty"`
	TaskManagerInstanceType *string  `json:"task_manager_instance_type,omitempty"`
	NumberTaskManagers      *float32 `json:"number_task_managers,omitempty"`
}

FlinkOptions struct for FlinkOptions

func NewFlinkOptions ¶

func NewFlinkOptions() *FlinkOptions

NewFlinkOptions instantiates a new FlinkOptions 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 NewFlinkOptionsWithDefaults ¶

func NewFlinkOptionsWithDefaults() *FlinkOptions

NewFlinkOptionsWithDefaults instantiates a new FlinkOptions 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 (*FlinkOptions) GetJobManagerInstanceType ¶

func (o *FlinkOptions) GetJobManagerInstanceType() string

GetJobManagerInstanceType returns the JobManagerInstanceType field value if set, zero value otherwise.

func (*FlinkOptions) GetJobManagerInstanceTypeOk ¶

func (o *FlinkOptions) GetJobManagerInstanceTypeOk() (*string, bool)

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

func (*FlinkOptions) GetLoggers ¶

func (o *FlinkOptions) GetLoggers() []string

GetLoggers returns the Loggers field value if set, zero value otherwise.

func (*FlinkOptions) GetLoggersOk ¶

func (o *FlinkOptions) GetLoggersOk() ([]string, bool)

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

func (*FlinkOptions) GetMainClassName ¶

func (o *FlinkOptions) GetMainClassName() string

GetMainClassName returns the MainClassName field value if set, zero value otherwise.

func (*FlinkOptions) GetMainClassNameOk ¶

func (o *FlinkOptions) GetMainClassNameOk() (*string, bool)

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

func (*FlinkOptions) GetMainLibrary ¶

func (o *FlinkOptions) GetMainLibrary() Library

GetMainLibrary returns the MainLibrary field value if set, zero value otherwise.

func (*FlinkOptions) GetMainLibraryOk ¶

func (o *FlinkOptions) GetMainLibraryOk() (*Library, bool)

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

func (*FlinkOptions) GetNumberTaskManagers ¶ added in v1.10.3

func (o *FlinkOptions) GetNumberTaskManagers() float32

GetNumberTaskManagers returns the NumberTaskManagers field value if set, zero value otherwise.

func (*FlinkOptions) GetNumberTaskManagersOk ¶ added in v1.10.3

func (o *FlinkOptions) GetNumberTaskManagersOk() (*float32, bool)

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

func (*FlinkOptions) GetTaskManagerInstanceType ¶

func (o *FlinkOptions) GetTaskManagerInstanceType() string

GetTaskManagerInstanceType returns the TaskManagerInstanceType field value if set, zero value otherwise.

func (*FlinkOptions) GetTaskManagerInstanceTypeOk ¶

func (o *FlinkOptions) GetTaskManagerInstanceTypeOk() (*string, bool)

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

func (*FlinkOptions) GetType ¶

func (o *FlinkOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*FlinkOptions) GetTypeOk ¶

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

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

func (*FlinkOptions) HasJobManagerInstanceType ¶

func (o *FlinkOptions) HasJobManagerInstanceType() bool

HasJobManagerInstanceType returns a boolean if a field has been set.

func (*FlinkOptions) HasLoggers ¶

func (o *FlinkOptions) HasLoggers() bool

HasLoggers returns a boolean if a field has been set.

func (*FlinkOptions) HasMainClassName ¶

func (o *FlinkOptions) HasMainClassName() bool

HasMainClassName returns a boolean if a field has been set.

func (*FlinkOptions) HasMainLibrary ¶

func (o *FlinkOptions) HasMainLibrary() bool

HasMainLibrary returns a boolean if a field has been set.

func (*FlinkOptions) HasNumberTaskManagers ¶ added in v1.10.3

func (o *FlinkOptions) HasNumberTaskManagers() bool

HasNumberTaskManagers returns a boolean if a field has been set.

func (*FlinkOptions) HasTaskManagerInstanceType ¶

func (o *FlinkOptions) HasTaskManagerInstanceType() bool

HasTaskManagerInstanceType returns a boolean if a field has been set.

func (*FlinkOptions) HasType ¶

func (o *FlinkOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (FlinkOptions) MarshalJSON ¶

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

func (*FlinkOptions) SetJobManagerInstanceType ¶

func (o *FlinkOptions) SetJobManagerInstanceType(v string)

SetJobManagerInstanceType gets a reference to the given string and assigns it to the JobManagerInstanceType field.

func (*FlinkOptions) SetLoggers ¶

func (o *FlinkOptions) SetLoggers(v []string)

SetLoggers gets a reference to the given []string and assigns it to the Loggers field.

func (*FlinkOptions) SetMainClassName ¶

func (o *FlinkOptions) SetMainClassName(v string)

SetMainClassName gets a reference to the given string and assigns it to the MainClassName field.

func (*FlinkOptions) SetMainLibrary ¶

func (o *FlinkOptions) SetMainLibrary(v Library)

SetMainLibrary gets a reference to the given Library and assigns it to the MainLibrary field.

func (*FlinkOptions) SetNumberTaskManagers ¶ added in v1.10.3

func (o *FlinkOptions) SetNumberTaskManagers(v float32)

SetNumberTaskManagers gets a reference to the given float32 and assigns it to the NumberTaskManagers field.

func (*FlinkOptions) SetTaskManagerInstanceType ¶

func (o *FlinkOptions) SetTaskManagerInstanceType(v string)

SetTaskManagerInstanceType gets a reference to the given string and assigns it to the TaskManagerInstanceType field.

func (*FlinkOptions) SetType ¶

func (o *FlinkOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (FlinkOptions) ToMap ¶ added in v1.10.3

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

type FlinkOptionsAllOf ¶

type FlinkOptionsAllOf struct {
	Type                    *string   `json:"type,omitempty"`
	MainLibrary             *Library  `json:"main_library,omitempty"`
	MainClassName           *string   `json:"main_class_name,omitempty"`
	Loggers                 *[]string `json:"loggers,omitempty"`
	JobManagerInstanceType  *string   `json:"job_manager_instance_type,omitempty"`
	TaskManagerInstanceType *string   `json:"task_manager_instance_type,omitempty"`
	NumberTaskManagers      *float32  `json:"number_task_managers,omitempty"`
}

FlinkOptionsAllOf struct for FlinkOptionsAllOf

func NewFlinkOptionsAllOf ¶

func NewFlinkOptionsAllOf() *FlinkOptionsAllOf

NewFlinkOptionsAllOf instantiates a new FlinkOptionsAllOf 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 NewFlinkOptionsAllOfWithDefaults ¶

func NewFlinkOptionsAllOfWithDefaults() *FlinkOptionsAllOf

NewFlinkOptionsAllOfWithDefaults instantiates a new FlinkOptionsAllOf 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 (*FlinkOptionsAllOf) GetJobManagerInstanceType ¶

func (o *FlinkOptionsAllOf) GetJobManagerInstanceType() string

GetJobManagerInstanceType returns the JobManagerInstanceType field value if set, zero value otherwise.

func (*FlinkOptionsAllOf) GetJobManagerInstanceTypeOk ¶

func (o *FlinkOptionsAllOf) GetJobManagerInstanceTypeOk() (*string, bool)

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

func (*FlinkOptionsAllOf) GetLoggers ¶

func (o *FlinkOptionsAllOf) GetLoggers() []string

GetLoggers returns the Loggers field value if set, zero value otherwise.

func (*FlinkOptionsAllOf) GetLoggersOk ¶

func (o *FlinkOptionsAllOf) GetLoggersOk() (*[]string, bool)

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

func (*FlinkOptionsAllOf) GetMainClassName ¶

func (o *FlinkOptionsAllOf) GetMainClassName() string

GetMainClassName returns the MainClassName field value if set, zero value otherwise.

func (*FlinkOptionsAllOf) GetMainClassNameOk ¶

func (o *FlinkOptionsAllOf) GetMainClassNameOk() (*string, bool)

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

func (*FlinkOptionsAllOf) GetMainLibrary ¶

func (o *FlinkOptionsAllOf) GetMainLibrary() Library

GetMainLibrary returns the MainLibrary field value if set, zero value otherwise.

func (*FlinkOptionsAllOf) GetMainLibraryOk ¶

func (o *FlinkOptionsAllOf) GetMainLibraryOk() (*Library, bool)

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

func (*FlinkOptionsAllOf) GetNumberTaskManagers ¶ added in v1.10.3

func (o *FlinkOptionsAllOf) GetNumberTaskManagers() float32

GetNumberTaskManagers returns the NumberTaskManagers field value if set, zero value otherwise.

func (*FlinkOptionsAllOf) GetNumberTaskManagersOk ¶ added in v1.10.3

func (o *FlinkOptionsAllOf) GetNumberTaskManagersOk() (*float32, bool)

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

func (*FlinkOptionsAllOf) GetTaskManagerInstanceType ¶

func (o *FlinkOptionsAllOf) GetTaskManagerInstanceType() string

GetTaskManagerInstanceType returns the TaskManagerInstanceType field value if set, zero value otherwise.

func (*FlinkOptionsAllOf) GetTaskManagerInstanceTypeOk ¶

func (o *FlinkOptionsAllOf) GetTaskManagerInstanceTypeOk() (*string, bool)

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

func (*FlinkOptionsAllOf) GetType ¶

func (o *FlinkOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*FlinkOptionsAllOf) GetTypeOk ¶

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

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

func (*FlinkOptionsAllOf) HasJobManagerInstanceType ¶

func (o *FlinkOptionsAllOf) HasJobManagerInstanceType() bool

HasJobManagerInstanceType returns a boolean if a field has been set.

func (*FlinkOptionsAllOf) HasLoggers ¶

func (o *FlinkOptionsAllOf) HasLoggers() bool

HasLoggers returns a boolean if a field has been set.

func (*FlinkOptionsAllOf) HasMainClassName ¶

func (o *FlinkOptionsAllOf) HasMainClassName() bool

HasMainClassName returns a boolean if a field has been set.

func (*FlinkOptionsAllOf) HasMainLibrary ¶

func (o *FlinkOptionsAllOf) HasMainLibrary() bool

HasMainLibrary returns a boolean if a field has been set.

func (*FlinkOptionsAllOf) HasNumberTaskManagers ¶ added in v1.10.3

func (o *FlinkOptionsAllOf) HasNumberTaskManagers() bool

HasNumberTaskManagers returns a boolean if a field has been set.

func (*FlinkOptionsAllOf) HasTaskManagerInstanceType ¶

func (o *FlinkOptionsAllOf) HasTaskManagerInstanceType() bool

HasTaskManagerInstanceType returns a boolean if a field has been set.

func (*FlinkOptionsAllOf) HasType ¶

func (o *FlinkOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (FlinkOptionsAllOf) MarshalJSON ¶

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

func (*FlinkOptionsAllOf) SetJobManagerInstanceType ¶

func (o *FlinkOptionsAllOf) SetJobManagerInstanceType(v string)

SetJobManagerInstanceType gets a reference to the given string and assigns it to the JobManagerInstanceType field.

func (*FlinkOptionsAllOf) SetLoggers ¶

func (o *FlinkOptionsAllOf) SetLoggers(v []string)

SetLoggers gets a reference to the given []string and assigns it to the Loggers field.

func (*FlinkOptionsAllOf) SetMainClassName ¶

func (o *FlinkOptionsAllOf) SetMainClassName(v string)

SetMainClassName gets a reference to the given string and assigns it to the MainClassName field.

func (*FlinkOptionsAllOf) SetMainLibrary ¶

func (o *FlinkOptionsAllOf) SetMainLibrary(v Library)

SetMainLibrary gets a reference to the given Library and assigns it to the MainLibrary field.

func (*FlinkOptionsAllOf) SetNumberTaskManagers ¶ added in v1.10.3

func (o *FlinkOptionsAllOf) SetNumberTaskManagers(v float32)

SetNumberTaskManagers gets a reference to the given float32 and assigns it to the NumberTaskManagers field.

func (*FlinkOptionsAllOf) SetTaskManagerInstanceType ¶

func (o *FlinkOptionsAllOf) SetTaskManagerInstanceType(v string)

SetTaskManagerInstanceType gets a reference to the given string and assigns it to the TaskManagerInstanceType field.

func (*FlinkOptionsAllOf) SetType ¶

func (o *FlinkOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Follow ¶ added in v1.10.3

type Follow struct {
	TenantId *string    `json:"tenant_id,omitempty"`
	Resource *Resource1 `json:"resource,omitempty"`
	Follower *User1     `json:"follower,omitempty"`
}

Follow Object Follow.

func NewFollow ¶ added in v1.10.3

func NewFollow() *Follow

NewFollow instantiates a new Follow 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 NewFollowWithDefaults ¶ added in v1.10.3

func NewFollowWithDefaults() *Follow

NewFollowWithDefaults instantiates a new Follow 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 (*Follow) GetFollower ¶ added in v1.10.3

func (o *Follow) GetFollower() User1

GetFollower returns the Follower field value if set, zero value otherwise.

func (*Follow) GetFollowerOk ¶ added in v1.10.3

func (o *Follow) GetFollowerOk() (*User1, bool)

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

func (*Follow) GetResource ¶ added in v1.10.3

func (o *Follow) GetResource() Resource1

GetResource returns the Resource field value if set, zero value otherwise.

func (*Follow) GetResourceOk ¶ added in v1.10.3

func (o *Follow) GetResourceOk() (*Resource1, bool)

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

func (*Follow) GetTenantId ¶ added in v1.10.3

func (o *Follow) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Follow) GetTenantIdOk ¶ added in v1.10.3

func (o *Follow) GetTenantIdOk() (*string, bool)

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

func (*Follow) HasFollower ¶ added in v1.10.3

func (o *Follow) HasFollower() bool

HasFollower returns a boolean if a field has been set.

func (*Follow) HasResource ¶ added in v1.10.3

func (o *Follow) HasResource() bool

HasResource returns a boolean if a field has been set.

func (*Follow) HasTenantId ¶ added in v1.10.3

func (o *Follow) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (Follow) MarshalJSON ¶ added in v1.10.3

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

func (*Follow) SetFollower ¶ added in v1.10.3

func (o *Follow) SetFollower(v User1)

SetFollower gets a reference to the given User1 and assigns it to the Follower field.

func (*Follow) SetResource ¶ added in v1.10.3

func (o *Follow) SetResource(v Resource1)

SetResource gets a reference to the given Resource1 and assigns it to the Resource field.

func (*Follow) SetTenantId ¶ added in v1.10.3

func (o *Follow) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (Follow) ToMap ¶ added in v1.10.3

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

type FollowAPIService ¶ added in v1.10.3

type FollowAPIService service

FollowAPIService FollowAPI service

func (*FollowAPIService) CreateCatalogFollower ¶ added in v1.10.3

func (a *FollowAPIService) CreateCatalogFollower(ctx context.Context, catalogId string) ApiCreateCatalogFollowerRequest

CreateCatalogFollower Create Catalog Followers

Create a new follow relationship between a catalog and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param catalogId
@return ApiCreateCatalogFollowerRequest

func (*FollowAPIService) CreateCatalogFollowerExecute ¶ added in v1.10.3

func (a *FollowAPIService) CreateCatalogFollowerExecute(r ApiCreateCatalogFollowerRequest) (*Follow, *http.Response, error)

Execute executes the request

@return Follow

func (*FollowAPIService) CreateDatabaseFollower ¶ added in v1.10.3

func (a *FollowAPIService) CreateDatabaseFollower(ctx context.Context, databaseId string) ApiCreateDatabaseFollowerRequest

CreateDatabaseFollower Create Database Followers

Create a new follow relationship between a database and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseId
@return ApiCreateDatabaseFollowerRequest

func (*FollowAPIService) CreateDatabaseFollowerExecute ¶ added in v1.10.3

func (a *FollowAPIService) CreateDatabaseFollowerExecute(r ApiCreateDatabaseFollowerRequest) (*Follow, *http.Response, error)

Execute executes the request

@return Follow

func (*FollowAPIService) CreateJobFollower ¶ added in v1.10.3

func (a *FollowAPIService) CreateJobFollower(ctx context.Context, jobId string) ApiCreateJobFollowerRequest

CreateJobFollower Create Job Followers

Create a new follow relationship between a job and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId
@return ApiCreateJobFollowerRequest

func (*FollowAPIService) CreateJobFollowerExecute ¶ added in v1.10.3

func (a *FollowAPIService) CreateJobFollowerExecute(r ApiCreateJobFollowerRequest) (*Follow, *http.Response, error)

Execute executes the request

@return Follow

func (*FollowAPIService) CreateProjectFollower ¶ added in v1.10.3

func (a *FollowAPIService) CreateProjectFollower(ctx context.Context, projectId string) ApiCreateProjectFollowerRequest

CreateProjectFollower Create Project Followers

Create a new follow relationship between a project and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId
@return ApiCreateProjectFollowerRequest

func (*FollowAPIService) CreateProjectFollowerExecute ¶ added in v1.10.3

func (a *FollowAPIService) CreateProjectFollowerExecute(r ApiCreateProjectFollowerRequest) (*Follow, *http.Response, error)

Execute executes the request

@return Follow

func (*FollowAPIService) CreateTableFollower ¶ added in v1.10.3

func (a *FollowAPIService) CreateTableFollower(ctx context.Context, tableId string) ApiCreateTableFollowerRequest

CreateTableFollower Create Table Followers

Create a new follow relationship between a table and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tableId
@return ApiCreateTableFollowerRequest

func (*FollowAPIService) CreateTableFollowerExecute ¶ added in v1.10.3

func (a *FollowAPIService) CreateTableFollowerExecute(r ApiCreateTableFollowerRequest) (*Follow, *http.Response, error)

Execute executes the request

@return Follow

func (*FollowAPIService) CreateUserFollower ¶ added in v1.10.3

func (a *FollowAPIService) CreateUserFollower(ctx context.Context, userId string) ApiCreateUserFollowerRequest

CreateUserFollower Create User Followers

Create a new follow relationship between a two users.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId
@return ApiCreateUserFollowerRequest

func (*FollowAPIService) CreateUserFollowerExecute ¶ added in v1.10.3

func (a *FollowAPIService) CreateUserFollowerExecute(r ApiCreateUserFollowerRequest) (*Follow, *http.Response, error)

Execute executes the request

@return Follow

func (*FollowAPIService) CreateWorkflowFollower ¶ added in v1.10.3

func (a *FollowAPIService) CreateWorkflowFollower(ctx context.Context, workflowId string) ApiCreateWorkflowFollowerRequest

CreateWorkflowFollower Create Workflow Followers

Create a new follow relationship between a workflow and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@return ApiCreateWorkflowFollowerRequest

func (*FollowAPIService) CreateWorkflowFollowerExecute ¶ added in v1.10.3

func (a *FollowAPIService) CreateWorkflowFollowerExecute(r ApiCreateWorkflowFollowerRequest) (*Follow, *http.Response, error)

Execute executes the request

@return Follow

func (*FollowAPIService) DeleteFollowingCatalog ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingCatalog(ctx context.Context, catalogId string) ApiDeleteFollowingCatalogRequest

DeleteFollowingCatalog Delete Following Catalog

Delete the follow relationship between a catalog and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param catalogId
@return ApiDeleteFollowingCatalogRequest

func (*FollowAPIService) DeleteFollowingCatalogExecute ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingCatalogExecute(r ApiDeleteFollowingCatalogRequest) (*http.Response, error)

Execute executes the request

func (*FollowAPIService) DeleteFollowingDatabase ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingDatabase(ctx context.Context, databaseId string) ApiDeleteFollowingDatabaseRequest

DeleteFollowingDatabase Delete Following Database

Delete the follow relationship between a database and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseId
@return ApiDeleteFollowingDatabaseRequest

func (*FollowAPIService) DeleteFollowingDatabaseExecute ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingDatabaseExecute(r ApiDeleteFollowingDatabaseRequest) (*http.Response, error)

Execute executes the request

func (*FollowAPIService) DeleteFollowingJob ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingJob(ctx context.Context, jobId string) ApiDeleteFollowingJobRequest

DeleteFollowingJob Delete Following Job

Delete the follow relationship between a job and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId
@return ApiDeleteFollowingJobRequest

func (*FollowAPIService) DeleteFollowingJobExecute ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingJobExecute(r ApiDeleteFollowingJobRequest) (*http.Response, error)

Execute executes the request

func (*FollowAPIService) DeleteFollowingProject ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingProject(ctx context.Context, projectId string) ApiDeleteFollowingProjectRequest

DeleteFollowingProject Delete Following Project

Delete the follow relationship between a project and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId
@return ApiDeleteFollowingProjectRequest

func (*FollowAPIService) DeleteFollowingProjectExecute ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingProjectExecute(r ApiDeleteFollowingProjectRequest) (*http.Response, error)

Execute executes the request

func (*FollowAPIService) DeleteFollowingTable ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingTable(ctx context.Context, tableId string) ApiDeleteFollowingTableRequest

DeleteFollowingTable Delete Following Table

Delete the follow relationship between a table and an user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tableId
@return ApiDeleteFollowingTableRequest

func (*FollowAPIService) DeleteFollowingTableExecute ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingTableExecute(r ApiDeleteFollowingTableRequest) (*http.Response, error)

Execute executes the request

func (*FollowAPIService) DeleteFollowingUser ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingUser(ctx context.Context, userId string) ApiDeleteFollowingUserRequest

DeleteFollowingUser Delete Following User

Delete the follow relationship between two users.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId
@return ApiDeleteFollowingUserRequest

func (*FollowAPIService) DeleteFollowingUserExecute ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingUserExecute(r ApiDeleteFollowingUserRequest) (*http.Response, error)

Execute executes the request

func (*FollowAPIService) DeleteFollowingWorkflow ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingWorkflow(ctx context.Context, workflowId string) ApiDeleteFollowingWorkflowRequest

DeleteFollowingWorkflow Delete Following User

Delete the follow relationship between a workflow and a user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@return ApiDeleteFollowingWorkflowRequest

func (*FollowAPIService) DeleteFollowingWorkflowExecute ¶ added in v1.10.3

func (a *FollowAPIService) DeleteFollowingWorkflowExecute(r ApiDeleteFollowingWorkflowRequest) (*http.Response, error)

Execute executes the request

func (*FollowAPIService) GetCatalogFollowers ¶ added in v1.10.3

func (a *FollowAPIService) GetCatalogFollowers(ctx context.Context, catalogId string) ApiGetCatalogFollowersRequest

GetCatalogFollowers Get Catalog Followers

Route to GET all users following a given catalog.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param catalogId
@return ApiGetCatalogFollowersRequest

func (*FollowAPIService) GetCatalogFollowersExecute ¶ added in v1.10.3

func (a *FollowAPIService) GetCatalogFollowersExecute(r ApiGetCatalogFollowersRequest) ([]User1, *http.Response, error)

Execute executes the request

@return []User1

func (*FollowAPIService) GetDatabaseFollowers ¶ added in v1.10.3

func (a *FollowAPIService) GetDatabaseFollowers(ctx context.Context, databaseId string) ApiGetDatabaseFollowersRequest

GetDatabaseFollowers Get Database Followers

Route to GET all users following a given database.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param databaseId
@return ApiGetDatabaseFollowersRequest

func (*FollowAPIService) GetDatabaseFollowersExecute ¶ added in v1.10.3

func (a *FollowAPIService) GetDatabaseFollowersExecute(r ApiGetDatabaseFollowersRequest) ([]User1, *http.Response, error)

Execute executes the request

@return []User1

func (*FollowAPIService) GetJobFollowers ¶ added in v1.10.3

func (a *FollowAPIService) GetJobFollowers(ctx context.Context, jobId string) ApiGetJobFollowersRequest

GetJobFollowers Get Job Followers

Route to GET all users following a given job.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId
@return ApiGetJobFollowersRequest

func (*FollowAPIService) GetJobFollowersExecute ¶ added in v1.10.3

func (a *FollowAPIService) GetJobFollowersExecute(r ApiGetJobFollowersRequest) ([]User1, *http.Response, error)

Execute executes the request

@return []User1

func (*FollowAPIService) GetProjectFollowers ¶ added in v1.10.3

func (a *FollowAPIService) GetProjectFollowers(ctx context.Context, projectId string) ApiGetProjectFollowersRequest

GetProjectFollowers Get Project Followers

Route to GET all users following a given project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId
@return ApiGetProjectFollowersRequest

func (*FollowAPIService) GetProjectFollowersExecute ¶ added in v1.10.3

func (a *FollowAPIService) GetProjectFollowersExecute(r ApiGetProjectFollowersRequest) ([]User1, *http.Response, error)

Execute executes the request

@return []User1

func (*FollowAPIService) GetTableFollowers ¶ added in v1.10.3

func (a *FollowAPIService) GetTableFollowers(ctx context.Context, tableId string) ApiGetTableFollowersRequest

GetTableFollowers Get Table Followers

Route to GET all users following a given table.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tableId
@return ApiGetTableFollowersRequest

func (*FollowAPIService) GetTableFollowersExecute ¶ added in v1.10.3

func (a *FollowAPIService) GetTableFollowersExecute(r ApiGetTableFollowersRequest) ([]User1, *http.Response, error)

Execute executes the request

@return []User1

func (*FollowAPIService) GetUserFollowers ¶ added in v1.10.3

func (a *FollowAPIService) GetUserFollowers(ctx context.Context, userId string) ApiGetUserFollowersRequest

GetUserFollowers Get User Followers

Route to GET all followers of a given user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId
@return ApiGetUserFollowersRequest

func (*FollowAPIService) GetUserFollowersExecute ¶ added in v1.10.3

func (a *FollowAPIService) GetUserFollowersExecute(r ApiGetUserFollowersRequest) ([]User1, *http.Response, error)

Execute executes the request

@return []User1

func (*FollowAPIService) GetUserFollowing ¶ added in v1.10.3

func (a *FollowAPIService) GetUserFollowing(ctx context.Context, userId string) ApiGetUserFollowingRequest

GetUserFollowing Get User Following

Route to GET all users following a given user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId
@return ApiGetUserFollowingRequest

func (*FollowAPIService) GetUserFollowingExecute ¶ added in v1.10.3

Execute executes the request

@return []ResponseGetUserFollowingUsersUserIdFollowingGetInner

func (*FollowAPIService) GetWorkflowFollowers ¶ added in v1.10.3

func (a *FollowAPIService) GetWorkflowFollowers(ctx context.Context, workflowId string) ApiGetWorkflowFollowersRequest

GetWorkflowFollowers Get Workflow Followers

Route to GET all users following a given workflow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId
@return ApiGetWorkflowFollowersRequest

func (*FollowAPIService) GetWorkflowFollowersExecute ¶ added in v1.10.3

func (a *FollowAPIService) GetWorkflowFollowersExecute(r ApiGetWorkflowFollowersRequest) ([]User1, *http.Response, error)

Execute executes the request

@return []User1

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 GenericUri ¶ added in v1.10.3

type GenericUri struct {
	Uri
	Type *string `json:"type,omitempty"`
}

GenericUri struct for GenericUri

func NewGenericUri ¶ added in v1.10.3

func NewGenericUri() *GenericUri

NewGenericUri instantiates a new GenericUri 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 NewGenericUriWithDefaults ¶ added in v1.10.3

func NewGenericUriWithDefaults() *GenericUri

NewGenericUriWithDefaults instantiates a new GenericUri 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 (*GenericUri) GetType ¶ added in v1.10.3

func (o *GenericUri) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GenericUri) GetTypeOk ¶ added in v1.10.3

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

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

func (*GenericUri) HasType ¶ added in v1.10.3

func (o *GenericUri) HasType() bool

HasType returns a boolean if a field has been set.

func (GenericUri) MarshalJSON ¶ added in v1.10.3

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

func (*GenericUri) SetType ¶ added in v1.10.3

func (o *GenericUri) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (GenericUri) ToMap ¶ added in v1.10.3

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

type GenericUriAllOf ¶ added in v1.10.3

type GenericUriAllOf struct {
	Type *string `json:"type,omitempty"`
}

GenericUriAllOf struct for GenericUriAllOf

func NewGenericUriAllOf ¶ added in v1.10.3

func NewGenericUriAllOf() *GenericUriAllOf

NewGenericUriAllOf instantiates a new GenericUriAllOf 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 NewGenericUriAllOfWithDefaults ¶ added in v1.10.3

func NewGenericUriAllOfWithDefaults() *GenericUriAllOf

NewGenericUriAllOfWithDefaults instantiates a new GenericUriAllOf 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 (*GenericUriAllOf) GetType ¶ added in v1.10.3

func (o *GenericUriAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GenericUriAllOf) GetTypeOk ¶ added in v1.10.3

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

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

func (*GenericUriAllOf) HasType ¶ added in v1.10.3

func (o *GenericUriAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (GenericUriAllOf) MarshalJSON ¶ added in v1.10.3

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

func (*GenericUriAllOf) SetType ¶ added in v1.10.3

func (o *GenericUriAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type GitLibrary ¶ added in v1.10.3

type GitLibrary struct {
	Library
	Type     *string `json:"type,omitempty"`
	Url      *string `json:"url,omitempty"`
	Path     *string `json:"path,omitempty"`
	Revision *string `json:"revision,omitempty"`
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

GitLibrary struct for GitLibrary

func NewGitLibrary ¶ added in v1.10.3

func NewGitLibrary() *GitLibrary

NewGitLibrary instantiates a new GitLibrary 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 NewGitLibraryWithDefaults ¶ added in v1.10.3

func NewGitLibraryWithDefaults() *GitLibrary

NewGitLibraryWithDefaults instantiates a new GitLibrary 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 (*GitLibrary) GetPassword ¶ added in v1.10.3

func (o *GitLibrary) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*GitLibrary) GetPasswordOk ¶ added in v1.10.3

func (o *GitLibrary) GetPasswordOk() (*string, bool)

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

func (*GitLibrary) GetPath ¶ added in v1.10.3

func (o *GitLibrary) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*GitLibrary) GetPathOk ¶ added in v1.10.3

func (o *GitLibrary) GetPathOk() (*string, bool)

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

func (*GitLibrary) GetRevision ¶ added in v1.10.3

func (o *GitLibrary) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*GitLibrary) GetRevisionOk ¶ added in v1.10.3

func (o *GitLibrary) GetRevisionOk() (*string, bool)

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

func (*GitLibrary) GetType ¶ added in v1.10.3

func (o *GitLibrary) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GitLibrary) GetTypeOk ¶ added in v1.10.3

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

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

func (*GitLibrary) GetUrl ¶ added in v1.10.3

func (o *GitLibrary) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GitLibrary) GetUrlOk ¶ added in v1.10.3

func (o *GitLibrary) GetUrlOk() (*string, bool)

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

func (*GitLibrary) GetUsername ¶ added in v1.10.3

func (o *GitLibrary) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*GitLibrary) GetUsernameOk ¶ added in v1.10.3

func (o *GitLibrary) GetUsernameOk() (*string, bool)

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

func (*GitLibrary) HasPassword ¶ added in v1.10.3

func (o *GitLibrary) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*GitLibrary) HasPath ¶ added in v1.10.3

func (o *GitLibrary) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*GitLibrary) HasRevision ¶ added in v1.10.3

func (o *GitLibrary) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*GitLibrary) HasType ¶ added in v1.10.3

func (o *GitLibrary) HasType() bool

HasType returns a boolean if a field has been set.

func (*GitLibrary) HasUrl ¶ added in v1.10.3

func (o *GitLibrary) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*GitLibrary) HasUsername ¶ added in v1.10.3

func (o *GitLibrary) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (GitLibrary) MarshalJSON ¶ added in v1.10.3

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

func (*GitLibrary) SetPassword ¶ added in v1.10.3

func (o *GitLibrary) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*GitLibrary) SetPath ¶ added in v1.10.3

func (o *GitLibrary) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*GitLibrary) SetRevision ¶ added in v1.10.3

func (o *GitLibrary) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*GitLibrary) SetType ¶ added in v1.10.3

func (o *GitLibrary) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GitLibrary) SetUrl ¶ added in v1.10.3

func (o *GitLibrary) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*GitLibrary) SetUsername ¶ added in v1.10.3

func (o *GitLibrary) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (GitLibrary) ToMap ¶ added in v1.10.3

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

type GitLibraryAllOf ¶ added in v1.10.3

type GitLibraryAllOf struct {
	Type     *string `json:"type,omitempty"`
	Url      *string `json:"url,omitempty"`
	Path     *string `json:"path,omitempty"`
	Revision *string `json:"revision,omitempty"`
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

GitLibraryAllOf struct for GitLibraryAllOf

func NewGitLibraryAllOf ¶ added in v1.10.3

func NewGitLibraryAllOf() *GitLibraryAllOf

NewGitLibraryAllOf instantiates a new GitLibraryAllOf 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 NewGitLibraryAllOfWithDefaults ¶ added in v1.10.3

func NewGitLibraryAllOfWithDefaults() *GitLibraryAllOf

NewGitLibraryAllOfWithDefaults instantiates a new GitLibraryAllOf 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 (*GitLibraryAllOf) GetPassword ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*GitLibraryAllOf) GetPasswordOk ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetPasswordOk() (*string, bool)

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

func (*GitLibraryAllOf) GetPath ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*GitLibraryAllOf) GetPathOk ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetPathOk() (*string, bool)

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

func (*GitLibraryAllOf) GetRevision ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*GitLibraryAllOf) GetRevisionOk ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetRevisionOk() (*string, bool)

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

func (*GitLibraryAllOf) GetType ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GitLibraryAllOf) GetTypeOk ¶ added in v1.10.3

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

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GitLibraryAllOf) GetUrl ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GitLibraryAllOf) GetUrlOk ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GitLibraryAllOf) GetUsername ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*GitLibraryAllOf) GetUsernameOk ¶ added in v1.10.3

func (o *GitLibraryAllOf) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GitLibraryAllOf) HasPassword ¶ added in v1.10.3

func (o *GitLibraryAllOf) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*GitLibraryAllOf) HasPath ¶ added in v1.10.3

func (o *GitLibraryAllOf) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*GitLibraryAllOf) HasRevision ¶ added in v1.10.3

func (o *GitLibraryAllOf) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*GitLibraryAllOf) HasType ¶ added in v1.10.3

func (o *GitLibraryAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*GitLibraryAllOf) HasUrl ¶ added in v1.10.3

func (o *GitLibraryAllOf) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*GitLibraryAllOf) HasUsername ¶ added in v1.10.3

func (o *GitLibraryAllOf) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (GitLibraryAllOf) MarshalJSON ¶ added in v1.10.3

func (o GitLibraryAllOf) MarshalJSON() ([]byte, error)

func (*GitLibraryAllOf) SetPassword ¶ added in v1.10.3

func (o *GitLibraryAllOf) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*GitLibraryAllOf) SetPath ¶ added in v1.10.3

func (o *GitLibraryAllOf) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*GitLibraryAllOf) SetRevision ¶ added in v1.10.3

func (o *GitLibraryAllOf) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*GitLibraryAllOf) SetType ¶ added in v1.10.3

func (o *GitLibraryAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*GitLibraryAllOf) SetUrl ¶ added in v1.10.3

func (o *GitLibraryAllOf) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*GitLibraryAllOf) SetUsername ¶ added in v1.10.3

func (o *GitLibraryAllOf) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type Graph ¶ added in v1.10.3

type Graph struct {
	Id          *string                           `json:"id,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Version     *string                           `json:"version,omitempty"`
	Owner       *string                           `json:"owner,omitempty"`
	Type        *string                           `json:"type,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Labels      *map[string]string                `json:"labels,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Graph struct for Graph

func NewGraph ¶ added in v1.10.3

func NewGraph() *Graph

NewGraph instantiates a new Graph 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 NewGraphWithDefaults ¶ added in v1.10.3

func NewGraphWithDefaults() *Graph

NewGraphWithDefaults instantiates a new Graph 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 (*Graph) GetCreated ¶ added in v1.10.3

func (o *Graph) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Graph) GetCreatedOk ¶ added in v1.10.3

func (o *Graph) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Graph) GetDescription ¶ added in v1.10.3

func (o *Graph) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Graph) GetDescriptionOk ¶ added in v1.10.3

func (o *Graph) 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 (*Graph) GetId ¶ added in v1.10.3

func (o *Graph) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Graph) GetIdOk ¶ added in v1.10.3

func (o *Graph) 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 (*Graph) GetLabels ¶ added in v1.10.3

func (o *Graph) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Graph) GetLabelsOk ¶ added in v1.10.3

func (o *Graph) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Graph) GetMetadata ¶ added in v1.10.3

func (o *Graph) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Graph) GetMetadataOk ¶ added in v1.10.3

func (o *Graph) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Graph) GetName ¶ added in v1.10.3

func (o *Graph) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Graph) GetNameOk ¶ added in v1.10.3

func (o *Graph) 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 (*Graph) GetOwner ¶ added in v1.10.3

func (o *Graph) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*Graph) GetOwnerOk ¶ added in v1.10.3

func (o *Graph) 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 (*Graph) GetType ¶ added in v1.10.3

func (o *Graph) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Graph) GetTypeOk ¶ added in v1.10.3

func (o *Graph) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Graph) GetUpdated ¶ added in v1.10.3

func (o *Graph) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Graph) GetUpdatedOk ¶ added in v1.10.3

func (o *Graph) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Graph) GetVersion ¶ added in v1.10.3

func (o *Graph) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Graph) GetVersionOk ¶ added in v1.10.3

func (o *Graph) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Graph) HasCreated ¶ added in v1.10.3

func (o *Graph) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Graph) HasDescription ¶ added in v1.10.3

func (o *Graph) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Graph) HasId ¶ added in v1.10.3

func (o *Graph) HasId() bool

HasId returns a boolean if a field has been set.

func (*Graph) HasLabels ¶ added in v1.10.3

func (o *Graph) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Graph) HasMetadata ¶ added in v1.10.3

func (o *Graph) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Graph) HasName ¶ added in v1.10.3

func (o *Graph) HasName() bool

HasName returns a boolean if a field has been set.

func (*Graph) HasOwner ¶ added in v1.10.3

func (o *Graph) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Graph) HasType ¶ added in v1.10.3

func (o *Graph) HasType() bool

HasType returns a boolean if a field has been set.

func (*Graph) HasUpdated ¶ added in v1.10.3

func (o *Graph) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*Graph) HasVersion ¶ added in v1.10.3

func (o *Graph) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Graph) MarshalJSON ¶ added in v1.10.3

func (o Graph) MarshalJSON() ([]byte, error)

func (*Graph) SetCreated ¶ added in v1.10.3

func (o *Graph) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Graph) SetDescription ¶ added in v1.10.3

func (o *Graph) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Graph) SetId ¶ added in v1.10.3

func (o *Graph) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Graph) SetLabels ¶ added in v1.10.3

func (o *Graph) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Graph) SetMetadata ¶ added in v1.10.3

func (o *Graph) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Graph) SetName ¶ added in v1.10.3

func (o *Graph) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Graph) SetOwner ¶ added in v1.10.3

func (o *Graph) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*Graph) SetType ¶ added in v1.10.3

func (o *Graph) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Graph) SetUpdated ¶ added in v1.10.3

func (o *Graph) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*Graph) SetVersion ¶ added in v1.10.3

func (o *Graph) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Graph) ToMap ¶ added in v1.10.3

func (o Graph) ToMap() (map[string]interface{}, error)

type GraphAPIService ¶ added in v1.10.3

type GraphAPIService service

GraphAPIService GraphAPI service

func (*GraphAPIService) CreateGraph ¶ added in v1.10.3

CreateGraph Create graph

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateGraphRequest

func (*GraphAPIService) CreateGraphExecute ¶ added in v1.10.3

func (a *GraphAPIService) CreateGraphExecute(r ApiCreateGraphRequest) (*Graph, *http.Response, error)

Execute executes the request

@return Graph

func (*GraphAPIService) DeleteGraphById ¶ added in v1.10.3

func (a *GraphAPIService) DeleteGraphById(ctx context.Context, graphId string) ApiDeleteGraphByIdRequest

DeleteGraphById Delete a graph by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param graphId Id of the graph
@return ApiDeleteGraphByIdRequest

func (*GraphAPIService) DeleteGraphByIdExecute ¶ added in v1.10.3

func (a *GraphAPIService) DeleteGraphByIdExecute(r ApiDeleteGraphByIdRequest) (*http.Response, error)

Execute executes the request

func (*GraphAPIService) FindGraphById ¶ added in v1.10.3

func (a *GraphAPIService) FindGraphById(ctx context.Context, graphId string) ApiFindGraphByIdRequest

FindGraphById Find graph by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param graphId Id of the graph
@return ApiFindGraphByIdRequest

func (*GraphAPIService) FindGraphByIdExecute ¶ added in v1.10.3

func (a *GraphAPIService) FindGraphByIdExecute(r ApiFindGraphByIdRequest) (*Graph, *http.Response, error)

Execute executes the request

@return Graph

func (*GraphAPIService) FindGraphs ¶ added in v1.10.3

FindGraphs Retrieve all graphs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindGraphsRequest

func (*GraphAPIService) FindGraphsExecute ¶ added in v1.10.3

func (a *GraphAPIService) FindGraphsExecute(r ApiFindGraphsRequest) (*GraphPage, *http.Response, error)

Execute executes the request

@return GraphPage

func (*GraphAPIService) UpdateGraph ¶ added in v1.10.3

func (a *GraphAPIService) UpdateGraph(ctx context.Context, graphId string) ApiUpdateGraphRequest

UpdateGraph Update a graph

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param graphId Id of the graph
@return ApiUpdateGraphRequest

func (*GraphAPIService) UpdateGraphExecute ¶ added in v1.10.3

func (a *GraphAPIService) UpdateGraphExecute(r ApiUpdateGraphRequest) (*Graph, *http.Response, error)

Execute executes the request

@return Graph

type GraphPage ¶ added in v1.10.3

type GraphPage struct {
	Number  *int32  `json:"number,omitempty"`
	Size    *int32  `json:"size,omitempty"`
	Content []Graph `json:"content,omitempty"`
}

GraphPage typed Page

func NewGraphPage ¶ added in v1.10.3

func NewGraphPage() *GraphPage

NewGraphPage instantiates a new GraphPage 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 NewGraphPageWithDefaults ¶ added in v1.10.3

func NewGraphPageWithDefaults() *GraphPage

NewGraphPageWithDefaults instantiates a new GraphPage 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 (*GraphPage) GetContent ¶ added in v1.10.3

func (o *GraphPage) GetContent() []Graph

GetContent returns the Content field value if set, zero value otherwise.

func (*GraphPage) GetContentOk ¶ added in v1.10.3

func (o *GraphPage) GetContentOk() ([]Graph, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GraphPage) GetNumber ¶ added in v1.10.3

func (o *GraphPage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*GraphPage) GetNumberOk ¶ added in v1.10.3

func (o *GraphPage) GetNumberOk() (*int32, bool)

GetNumberOk returns a tuple with the Number field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GraphPage) GetSize ¶ added in v1.10.3

func (o *GraphPage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*GraphPage) GetSizeOk ¶ added in v1.10.3

func (o *GraphPage) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GraphPage) HasContent ¶ added in v1.10.3

func (o *GraphPage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*GraphPage) HasNumber ¶ added in v1.10.3

func (o *GraphPage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*GraphPage) HasSize ¶ added in v1.10.3

func (o *GraphPage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (GraphPage) MarshalJSON ¶ added in v1.10.3

func (o GraphPage) MarshalJSON() ([]byte, error)

func (*GraphPage) SetContent ¶ added in v1.10.3

func (o *GraphPage) SetContent(v []Graph)

SetContent gets a reference to the given []Graph and assigns it to the Content field.

func (*GraphPage) SetNumber ¶ added in v1.10.3

func (o *GraphPage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*GraphPage) SetSize ¶ added in v1.10.3

func (o *GraphPage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (GraphPage) ToMap ¶ added in v1.10.3

func (o GraphPage) ToMap() (map[string]interface{}, error)

type GraphPageAllOf ¶ added in v1.10.3

type GraphPageAllOf struct {
	Content *[]Graph `json:"content,omitempty"`
}

GraphPageAllOf struct for GraphPageAllOf

func NewGraphPageAllOf ¶ added in v1.10.3

func NewGraphPageAllOf() *GraphPageAllOf

NewGraphPageAllOf instantiates a new GraphPageAllOf 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 NewGraphPageAllOfWithDefaults ¶ added in v1.10.3

func NewGraphPageAllOfWithDefaults() *GraphPageAllOf

NewGraphPageAllOfWithDefaults instantiates a new GraphPageAllOf 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 (*GraphPageAllOf) GetContent ¶ added in v1.10.3

func (o *GraphPageAllOf) GetContent() []Graph

GetContent returns the Content field value if set, zero value otherwise.

func (*GraphPageAllOf) GetContentOk ¶ added in v1.10.3

func (o *GraphPageAllOf) GetContentOk() (*[]Graph, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GraphPageAllOf) HasContent ¶ added in v1.10.3

func (o *GraphPageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (GraphPageAllOf) MarshalJSON ¶ added in v1.10.3

func (o GraphPageAllOf) MarshalJSON() ([]byte, error)

func (*GraphPageAllOf) SetContent ¶ added in v1.10.3

func (o *GraphPageAllOf) SetContent(v []Graph)

SetContent gets a reference to the given []Graph and assigns it to the Content field.

type GreaterOrEqualThanFilter ¶ added in v1.10.3

type GreaterOrEqualThanFilter struct {
	// Left operator for filter.
	Left string `json:"left"`
	// Right operator for filter.
	Right string `json:"right"`
	// Operator for GREATER OR EQUAL filter.
	Type *string `json:"type,omitempty"`
}

GreaterOrEqualThanFilter Filter values that are greater or equal to a given value. Attributes ---------- type : RelationalOperatorType Type of the filter.

func NewGreaterOrEqualThanFilter ¶ added in v1.10.3

func NewGreaterOrEqualThanFilter(left string, right string) *GreaterOrEqualThanFilter

NewGreaterOrEqualThanFilter instantiates a new GreaterOrEqualThanFilter 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 NewGreaterOrEqualThanFilterWithDefaults ¶ added in v1.10.3

func NewGreaterOrEqualThanFilterWithDefaults() *GreaterOrEqualThanFilter

NewGreaterOrEqualThanFilterWithDefaults instantiates a new GreaterOrEqualThanFilter 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 (*GreaterOrEqualThanFilter) GetLeft ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) GetLeft() string

GetLeft returns the Left field value

func (*GreaterOrEqualThanFilter) GetLeftOk ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) GetLeftOk() (*string, bool)

GetLeftOk returns a tuple with the Left field value and a boolean to check if the value has been set.

func (*GreaterOrEqualThanFilter) GetRight ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) GetRight() string

GetRight returns the Right field value

func (*GreaterOrEqualThanFilter) GetRightOk ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) GetRightOk() (*string, bool)

GetRightOk returns a tuple with the Right field value and a boolean to check if the value has been set.

func (*GreaterOrEqualThanFilter) GetType ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GreaterOrEqualThanFilter) GetTypeOk ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GreaterOrEqualThanFilter) HasType ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (GreaterOrEqualThanFilter) MarshalJSON ¶ added in v1.10.3

func (o GreaterOrEqualThanFilter) MarshalJSON() ([]byte, error)

func (*GreaterOrEqualThanFilter) SetLeft ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) SetLeft(v string)

SetLeft sets field value

func (*GreaterOrEqualThanFilter) SetRight ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) SetRight(v string)

SetRight sets field value

func (*GreaterOrEqualThanFilter) SetType ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (GreaterOrEqualThanFilter) ToMap ¶ added in v1.10.3

func (o GreaterOrEqualThanFilter) ToMap() (map[string]interface{}, error)

func (*GreaterOrEqualThanFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *GreaterOrEqualThanFilter) UnmarshalJSON(bytes []byte) (err error)

type GreaterThanFilter ¶ added in v1.10.3

type GreaterThanFilter struct {
	// Left operator for filter.
	Left string `json:"left"`
	// Right operator for filter.
	Right string `json:"right"`
	// Operator for GREATER THAN filter.
	Type *string `json:"type,omitempty"`
}

GreaterThanFilter Filter values that are greater than a given value. Attributes ---------- type : RelationalOperatorType Type of the filter.

func NewGreaterThanFilter ¶ added in v1.10.3

func NewGreaterThanFilter(left string, right string) *GreaterThanFilter

NewGreaterThanFilter instantiates a new GreaterThanFilter 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 NewGreaterThanFilterWithDefaults ¶ added in v1.10.3

func NewGreaterThanFilterWithDefaults() *GreaterThanFilter

NewGreaterThanFilterWithDefaults instantiates a new GreaterThanFilter 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 (*GreaterThanFilter) GetLeft ¶ added in v1.10.3

func (o *GreaterThanFilter) GetLeft() string

GetLeft returns the Left field value

func (*GreaterThanFilter) GetLeftOk ¶ added in v1.10.3

func (o *GreaterThanFilter) GetLeftOk() (*string, bool)

GetLeftOk returns a tuple with the Left field value and a boolean to check if the value has been set.

func (*GreaterThanFilter) GetRight ¶ added in v1.10.3

func (o *GreaterThanFilter) GetRight() string

GetRight returns the Right field value

func (*GreaterThanFilter) GetRightOk ¶ added in v1.10.3

func (o *GreaterThanFilter) GetRightOk() (*string, bool)

GetRightOk returns a tuple with the Right field value and a boolean to check if the value has been set.

func (*GreaterThanFilter) GetType ¶ added in v1.10.3

func (o *GreaterThanFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*GreaterThanFilter) GetTypeOk ¶ added in v1.10.3

func (o *GreaterThanFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GreaterThanFilter) HasType ¶ added in v1.10.3

func (o *GreaterThanFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (GreaterThanFilter) MarshalJSON ¶ added in v1.10.3

func (o GreaterThanFilter) MarshalJSON() ([]byte, error)

func (*GreaterThanFilter) SetLeft ¶ added in v1.10.3

func (o *GreaterThanFilter) SetLeft(v string)

SetLeft sets field value

func (*GreaterThanFilter) SetRight ¶ added in v1.10.3

func (o *GreaterThanFilter) SetRight(v string)

SetRight sets field value

func (*GreaterThanFilter) SetType ¶ added in v1.10.3

func (o *GreaterThanFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (GreaterThanFilter) ToMap ¶ added in v1.10.3

func (o GreaterThanFilter) ToMap() (map[string]interface{}, error)

func (*GreaterThanFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *GreaterThanFilter) UnmarshalJSON(bytes []byte) (err error)

type Group ¶

type Group struct {
	Id          *string                           `json:"id,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	TenantId    *string                           `json:"tenant_id,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
	Locked      *bool                             `json:"locked,omitempty"`
}

Group struct for Group

func NewGroup ¶

func NewGroup() *Group

NewGroup instantiates a new Group 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 NewGroupWithDefaults ¶

func NewGroupWithDefaults() *Group

NewGroupWithDefaults instantiates a new Group 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 (*Group) GetCreated ¶

func (o *Group) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Group) GetCreatedOk ¶

func (o *Group) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Group) GetDescription ¶

func (o *Group) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Group) GetDescriptionOk ¶

func (o *Group) 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 (*Group) GetId ¶

func (o *Group) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Group) GetIdOk ¶

func (o *Group) 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 (*Group) GetLocked ¶

func (o *Group) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*Group) GetLockedOk ¶

func (o *Group) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Group) GetMetadata ¶

func (o *Group) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Group) GetMetadataOk ¶

func (o *Group) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Group) GetName ¶

func (o *Group) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Group) GetNameOk ¶

func (o *Group) 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 (*Group) GetTenantId ¶

func (o *Group) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Group) GetTenantIdOk ¶

func (o *Group) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Group) GetUpdated ¶

func (o *Group) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Group) GetUpdatedOk ¶

func (o *Group) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Group) HasCreated ¶

func (o *Group) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Group) HasDescription ¶

func (o *Group) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Group) HasId ¶

func (o *Group) HasId() bool

HasId returns a boolean if a field has been set.

func (*Group) HasLocked ¶

func (o *Group) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*Group) HasMetadata ¶

func (o *Group) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Group) HasName ¶

func (o *Group) HasName() bool

HasName returns a boolean if a field has been set.

func (*Group) HasTenantId ¶

func (o *Group) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Group) HasUpdated ¶

func (o *Group) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Group) MarshalJSON ¶

func (o Group) MarshalJSON() ([]byte, error)

func (*Group) SetCreated ¶

func (o *Group) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Group) SetDescription ¶

func (o *Group) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Group) SetId ¶

func (o *Group) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Group) SetLocked ¶

func (o *Group) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*Group) SetMetadata ¶

func (o *Group) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Group) SetName ¶

func (o *Group) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Group) SetTenantId ¶

func (o *Group) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Group) SetUpdated ¶

func (o *Group) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Group) ToMap ¶ added in v1.10.3

func (o Group) ToMap() (map[string]interface{}, error)

type GroupAPIService ¶ added in v1.10.3

type GroupAPIService service

GroupAPIService GroupAPI service

func (*GroupAPIService) CreateGroup ¶ added in v1.10.3

CreateGroup Create a group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateGroupRequest

func (*GroupAPIService) CreateGroupExecute ¶ added in v1.10.3

func (a *GroupAPIService) CreateGroupExecute(r ApiCreateGroupRequest) (*Group, *http.Response, error)

Execute executes the request

@return Group

func (*GroupAPIService) DeleteGroupById ¶ added in v1.10.3

func (a *GroupAPIService) DeleteGroupById(ctx context.Context, groupId string) ApiDeleteGroupByIdRequest

DeleteGroupById Delete an group by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param groupId Id of the group
@return ApiDeleteGroupByIdRequest

func (*GroupAPIService) DeleteGroupByIdExecute ¶ added in v1.10.3

func (a *GroupAPIService) DeleteGroupByIdExecute(r ApiDeleteGroupByIdRequest) (*http.Response, error)

Execute executes the request

func (*GroupAPIService) FindGroupById ¶ added in v1.10.3

func (a *GroupAPIService) FindGroupById(ctx context.Context, groupId string) ApiFindGroupByIdRequest

FindGroupById Find group by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param groupId Id of the group
@return ApiFindGroupByIdRequest

func (*GroupAPIService) FindGroupByIdExecute ¶ added in v1.10.3

func (a *GroupAPIService) FindGroupByIdExecute(r ApiFindGroupByIdRequest) (*Group, *http.Response, error)

Execute executes the request

@return Group

func (*GroupAPIService) FindGroups ¶ added in v1.10.3

FindGroups Retrieve all groups

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindGroupsRequest

func (*GroupAPIService) FindGroupsExecute ¶ added in v1.10.3

func (a *GroupAPIService) FindGroupsExecute(r ApiFindGroupsRequest) ([]Group, *http.Response, error)

Execute executes the request

@return []Group

func (*GroupAPIService) FindRolesByGroupId ¶ added in v1.10.3

func (a *GroupAPIService) FindRolesByGroupId(ctx context.Context, groupId string) ApiFindRolesByGroupIdRequest

FindRolesByGroupId Find roles by a group id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param groupId Id of the group
@return ApiFindRolesByGroupIdRequest

func (*GroupAPIService) FindRolesByGroupIdExecute ¶ added in v1.10.3

func (a *GroupAPIService) FindRolesByGroupIdExecute(r ApiFindRolesByGroupIdRequest) ([]RoleAndAssignment, *http.Response, error)

Execute executes the request

@return []RoleAndAssignment

type HTTPValidationError ¶ added in v1.10.3

type HTTPValidationError struct {
	Detail []ValidationError `json:"detail,omitempty"`
}

HTTPValidationError struct for HTTPValidationError

func NewHTTPValidationError ¶ added in v1.10.3

func NewHTTPValidationError() *HTTPValidationError

NewHTTPValidationError instantiates a new HTTPValidationError 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 NewHTTPValidationErrorWithDefaults ¶ added in v1.10.3

func NewHTTPValidationErrorWithDefaults() *HTTPValidationError

NewHTTPValidationErrorWithDefaults instantiates a new HTTPValidationError 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 (*HTTPValidationError) GetDetail ¶ added in v1.10.3

func (o *HTTPValidationError) GetDetail() []ValidationError

GetDetail returns the Detail field value if set, zero value otherwise.

func (*HTTPValidationError) GetDetailOk ¶ added in v1.10.3

func (o *HTTPValidationError) GetDetailOk() ([]ValidationError, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HTTPValidationError) HasDetail ¶ added in v1.10.3

func (o *HTTPValidationError) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (HTTPValidationError) MarshalJSON ¶ added in v1.10.3

func (o HTTPValidationError) MarshalJSON() ([]byte, error)

func (*HTTPValidationError) SetDetail ¶ added in v1.10.3

func (o *HTTPValidationError) SetDetail(v []ValidationError)

SetDetail gets a reference to the given []ValidationError and assigns it to the Detail field.

func (HTTPValidationError) ToMap ¶ added in v1.10.3

func (o HTTPValidationError) ToMap() (map[string]interface{}, error)

type HadoopOptions ¶

type HadoopOptions struct {
	Options
	Type            *string `json:"type,omitempty"`
	ApplicationType *string `json:"application_type,omitempty"`
	ApplicationId   *string `json:"application_id,omitempty"`
	JobId           *string `json:"job_id,omitempty"`
	Command         *string `json:"command,omitempty"`
}

HadoopOptions struct for HadoopOptions

func NewHadoopOptions ¶

func NewHadoopOptions() *HadoopOptions

NewHadoopOptions instantiates a new HadoopOptions 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 NewHadoopOptionsWithDefaults ¶

func NewHadoopOptionsWithDefaults() *HadoopOptions

NewHadoopOptionsWithDefaults instantiates a new HadoopOptions 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 (*HadoopOptions) GetApplicationId ¶

func (o *HadoopOptions) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise.

func (*HadoopOptions) GetApplicationIdOk ¶

func (o *HadoopOptions) GetApplicationIdOk() (*string, bool)

GetApplicationIdOk returns a tuple with the ApplicationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptions) GetApplicationType ¶

func (o *HadoopOptions) GetApplicationType() string

GetApplicationType returns the ApplicationType field value if set, zero value otherwise.

func (*HadoopOptions) GetApplicationTypeOk ¶

func (o *HadoopOptions) GetApplicationTypeOk() (*string, bool)

GetApplicationTypeOk returns a tuple with the ApplicationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptions) GetCommand ¶

func (o *HadoopOptions) GetCommand() string

GetCommand returns the Command field value if set, zero value otherwise.

func (*HadoopOptions) GetCommandOk ¶

func (o *HadoopOptions) GetCommandOk() (*string, bool)

GetCommandOk returns a tuple with the Command field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptions) GetJobId ¶

func (o *HadoopOptions) GetJobId() string

GetJobId returns the JobId field value if set, zero value otherwise.

func (*HadoopOptions) GetJobIdOk ¶

func (o *HadoopOptions) GetJobIdOk() (*string, bool)

GetJobIdOk returns a tuple with the JobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptions) GetType ¶

func (o *HadoopOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*HadoopOptions) GetTypeOk ¶

func (o *HadoopOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptions) HasApplicationId ¶

func (o *HadoopOptions) HasApplicationId() bool

HasApplicationId returns a boolean if a field has been set.

func (*HadoopOptions) HasApplicationType ¶

func (o *HadoopOptions) HasApplicationType() bool

HasApplicationType returns a boolean if a field has been set.

func (*HadoopOptions) HasCommand ¶

func (o *HadoopOptions) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (*HadoopOptions) HasJobId ¶

func (o *HadoopOptions) HasJobId() bool

HasJobId returns a boolean if a field has been set.

func (*HadoopOptions) HasType ¶

func (o *HadoopOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (HadoopOptions) MarshalJSON ¶

func (o HadoopOptions) MarshalJSON() ([]byte, error)

func (*HadoopOptions) SetApplicationId ¶

func (o *HadoopOptions) SetApplicationId(v string)

SetApplicationId gets a reference to the given string and assigns it to the ApplicationId field.

func (*HadoopOptions) SetApplicationType ¶

func (o *HadoopOptions) SetApplicationType(v string)

SetApplicationType gets a reference to the given string and assigns it to the ApplicationType field.

func (*HadoopOptions) SetCommand ¶

func (o *HadoopOptions) SetCommand(v string)

SetCommand gets a reference to the given string and assigns it to the Command field.

func (*HadoopOptions) SetJobId ¶

func (o *HadoopOptions) SetJobId(v string)

SetJobId gets a reference to the given string and assigns it to the JobId field.

func (*HadoopOptions) SetType ¶

func (o *HadoopOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (HadoopOptions) ToMap ¶ added in v1.10.3

func (o HadoopOptions) ToMap() (map[string]interface{}, error)

type HadoopOptionsAllOf ¶

type HadoopOptionsAllOf struct {
	Type            *string `json:"type,omitempty"`
	ApplicationType *string `json:"application_type,omitempty"`
	ApplicationId   *string `json:"application_id,omitempty"`
	JobId           *string `json:"job_id,omitempty"`
	Command         *string `json:"command,omitempty"`
}

HadoopOptionsAllOf struct for HadoopOptionsAllOf

func NewHadoopOptionsAllOf ¶

func NewHadoopOptionsAllOf() *HadoopOptionsAllOf

NewHadoopOptionsAllOf instantiates a new HadoopOptionsAllOf 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 NewHadoopOptionsAllOfWithDefaults ¶

func NewHadoopOptionsAllOfWithDefaults() *HadoopOptionsAllOf

NewHadoopOptionsAllOfWithDefaults instantiates a new HadoopOptionsAllOf 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 (*HadoopOptionsAllOf) GetApplicationId ¶

func (o *HadoopOptionsAllOf) GetApplicationId() string

GetApplicationId returns the ApplicationId field value if set, zero value otherwise.

func (*HadoopOptionsAllOf) GetApplicationIdOk ¶

func (o *HadoopOptionsAllOf) GetApplicationIdOk() (*string, bool)

GetApplicationIdOk returns a tuple with the ApplicationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptionsAllOf) GetApplicationType ¶

func (o *HadoopOptionsAllOf) GetApplicationType() string

GetApplicationType returns the ApplicationType field value if set, zero value otherwise.

func (*HadoopOptionsAllOf) GetApplicationTypeOk ¶

func (o *HadoopOptionsAllOf) GetApplicationTypeOk() (*string, bool)

GetApplicationTypeOk returns a tuple with the ApplicationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptionsAllOf) GetCommand ¶

func (o *HadoopOptionsAllOf) GetCommand() string

GetCommand returns the Command field value if set, zero value otherwise.

func (*HadoopOptionsAllOf) GetCommandOk ¶

func (o *HadoopOptionsAllOf) GetCommandOk() (*string, bool)

GetCommandOk returns a tuple with the Command field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptionsAllOf) GetJobId ¶

func (o *HadoopOptionsAllOf) GetJobId() string

GetJobId returns the JobId field value if set, zero value otherwise.

func (*HadoopOptionsAllOf) GetJobIdOk ¶

func (o *HadoopOptionsAllOf) GetJobIdOk() (*string, bool)

GetJobIdOk returns a tuple with the JobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptionsAllOf) GetType ¶

func (o *HadoopOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*HadoopOptionsAllOf) GetTypeOk ¶

func (o *HadoopOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HadoopOptionsAllOf) HasApplicationId ¶

func (o *HadoopOptionsAllOf) HasApplicationId() bool

HasApplicationId returns a boolean if a field has been set.

func (*HadoopOptionsAllOf) HasApplicationType ¶

func (o *HadoopOptionsAllOf) HasApplicationType() bool

HasApplicationType returns a boolean if a field has been set.

func (*HadoopOptionsAllOf) HasCommand ¶

func (o *HadoopOptionsAllOf) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (*HadoopOptionsAllOf) HasJobId ¶

func (o *HadoopOptionsAllOf) HasJobId() bool

HasJobId returns a boolean if a field has been set.

func (*HadoopOptionsAllOf) HasType ¶

func (o *HadoopOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (HadoopOptionsAllOf) MarshalJSON ¶

func (o HadoopOptionsAllOf) MarshalJSON() ([]byte, error)

func (*HadoopOptionsAllOf) SetApplicationId ¶

func (o *HadoopOptionsAllOf) SetApplicationId(v string)

SetApplicationId gets a reference to the given string and assigns it to the ApplicationId field.

func (*HadoopOptionsAllOf) SetApplicationType ¶

func (o *HadoopOptionsAllOf) SetApplicationType(v string)

SetApplicationType gets a reference to the given string and assigns it to the ApplicationType field.

func (*HadoopOptionsAllOf) SetCommand ¶

func (o *HadoopOptionsAllOf) SetCommand(v string)

SetCommand gets a reference to the given string and assigns it to the Command field.

func (*HadoopOptionsAllOf) SetJobId ¶

func (o *HadoopOptionsAllOf) SetJobId(v string)

SetJobId gets a reference to the given string and assigns it to the JobId field.

func (*HadoopOptionsAllOf) SetType ¶

func (o *HadoopOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type HistoryAPIService ¶ added in v1.10.3

type HistoryAPIService service

HistoryAPIService HistoryAPI service

func (*HistoryAPIService) AddResourceHistoryForUser ¶ added in v1.10.3

func (a *HistoryAPIService) AddResourceHistoryForUser(ctx context.Context) ApiAddResourceHistoryForUserRequest

AddResourceHistoryForUser Add history for user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddResourceHistoryForUserRequest

func (*HistoryAPIService) AddResourceHistoryForUserExecute ¶ added in v1.10.3

func (a *HistoryAPIService) AddResourceHistoryForUserExecute(r ApiAddResourceHistoryForUserRequest) (*http.Response, error)

Execute executes the request

func (*HistoryAPIService) AddSearchHistoryForUser ¶ added in v1.10.3

func (a *HistoryAPIService) AddSearchHistoryForUser(ctx context.Context) ApiAddSearchHistoryForUserRequest

AddSearchHistoryForUser Add search history for user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAddSearchHistoryForUserRequest

func (*HistoryAPIService) AddSearchHistoryForUserExecute ¶ added in v1.10.3

func (a *HistoryAPIService) AddSearchHistoryForUserExecute(r ApiAddSearchHistoryForUserRequest) ([]SearchHistory, *http.Response, error)

Execute executes the request

@return []SearchHistory

func (*HistoryAPIService) GetResourceHistory ¶ added in v1.10.3

GetResourceHistory Get resource history for user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetResourceHistoryRequest

func (*HistoryAPIService) GetResourceHistoryExecute ¶ added in v1.10.3

func (a *HistoryAPIService) GetResourceHistoryExecute(r ApiGetResourceHistoryRequest) ([]Result, *http.Response, error)

Execute executes the request

@return []Result

func (*HistoryAPIService) GetSearchHistory ¶ added in v1.10.3

GetSearchHistory Search history for user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSearchHistoryRequest

func (*HistoryAPIService) GetSearchHistoryExecute ¶ added in v1.10.3

func (a *HistoryAPIService) GetSearchHistoryExecute(r ApiGetSearchHistoryRequest) ([]SearchHistory, *http.Response, error)

Execute executes the request

@return []SearchHistory

type ILibrary ¶ added in v1.10.5

type ILibrary interface{}

type INotification ¶ added in v1.10.7

type INotification interface{}

type IOptions ¶ added in v1.10.5

type IOptions interface{}

type ISchedule ¶ added in v1.10.5

type ISchedule interface{}

type ITask ¶ added in v1.10.7

type ITask interface{}

type Identity ¶

type Identity struct {
	Id               *string                           `json:"id,omitempty"`
	Type             *string                           `json:"type,omitempty"`
	Name             *string                           `json:"name,omitempty"`
	TenantId         *string                           `json:"tenant_id,omitempty"`
	RemoteIdentityId *string                           `json:"remote_identity_id,omitempty"`
	Secret           *string                           `json:"secret,omitempty"`
	Description      *string                           `json:"description,omitempty"`
	Created          *time.Time                        `json:"created,omitempty"`
	Updated          *time.Time                        `json:"updated,omitempty"`
	Metadata         map[string]map[string]interface{} `json:"metadata,omitempty"`
	Locked           *bool                             `json:"locked,omitempty"`
}

Identity struct for Identity

func NewIdentity ¶

func NewIdentity() *Identity

NewIdentity instantiates a new Identity 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 NewIdentityWithDefaults ¶

func NewIdentityWithDefaults() *Identity

NewIdentityWithDefaults instantiates a new Identity 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 (*Identity) GetCreated ¶

func (o *Identity) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Identity) GetCreatedOk ¶

func (o *Identity) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetDescription ¶

func (o *Identity) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Identity) GetDescriptionOk ¶

func (o *Identity) 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 (*Identity) GetId ¶

func (o *Identity) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Identity) GetIdOk ¶

func (o *Identity) 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 (*Identity) GetLocked ¶

func (o *Identity) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*Identity) GetLockedOk ¶

func (o *Identity) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetMetadata ¶

func (o *Identity) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Identity) GetMetadataOk ¶

func (o *Identity) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Identity) GetName ¶

func (o *Identity) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Identity) GetNameOk ¶

func (o *Identity) 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 (*Identity) GetRemoteIdentityId ¶

func (o *Identity) GetRemoteIdentityId() string

GetRemoteIdentityId returns the RemoteIdentityId field value if set, zero value otherwise.

func (*Identity) GetRemoteIdentityIdOk ¶

func (o *Identity) GetRemoteIdentityIdOk() (*string, bool)

GetRemoteIdentityIdOk returns a tuple with the RemoteIdentityId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetSecret ¶

func (o *Identity) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise.

func (*Identity) GetSecretOk ¶

func (o *Identity) GetSecretOk() (*string, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetTenantId ¶

func (o *Identity) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Identity) GetTenantIdOk ¶

func (o *Identity) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetType ¶

func (o *Identity) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Identity) GetTypeOk ¶

func (o *Identity) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) GetUpdated ¶

func (o *Identity) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Identity) GetUpdatedOk ¶

func (o *Identity) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Identity) HasCreated ¶

func (o *Identity) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Identity) HasDescription ¶

func (o *Identity) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Identity) HasId ¶

func (o *Identity) HasId() bool

HasId returns a boolean if a field has been set.

func (*Identity) HasLocked ¶

func (o *Identity) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*Identity) HasMetadata ¶

func (o *Identity) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Identity) HasName ¶

func (o *Identity) HasName() bool

HasName returns a boolean if a field has been set.

func (*Identity) HasRemoteIdentityId ¶

func (o *Identity) HasRemoteIdentityId() bool

HasRemoteIdentityId returns a boolean if a field has been set.

func (*Identity) HasSecret ¶

func (o *Identity) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*Identity) HasTenantId ¶

func (o *Identity) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Identity) HasType ¶

func (o *Identity) HasType() bool

HasType returns a boolean if a field has been set.

func (*Identity) HasUpdated ¶

func (o *Identity) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Identity) MarshalJSON ¶

func (o Identity) MarshalJSON() ([]byte, error)

func (*Identity) SetCreated ¶

func (o *Identity) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Identity) SetDescription ¶

func (o *Identity) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Identity) SetId ¶

func (o *Identity) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Identity) SetLocked ¶

func (o *Identity) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*Identity) SetMetadata ¶

func (o *Identity) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Identity) SetName ¶

func (o *Identity) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Identity) SetRemoteIdentityId ¶

func (o *Identity) SetRemoteIdentityId(v string)

SetRemoteIdentityId gets a reference to the given string and assigns it to the RemoteIdentityId field.

func (*Identity) SetSecret ¶

func (o *Identity) SetSecret(v string)

SetSecret gets a reference to the given string and assigns it to the Secret field.

func (*Identity) SetTenantId ¶

func (o *Identity) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Identity) SetType ¶

func (o *Identity) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Identity) SetUpdated ¶

func (o *Identity) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Identity) ToMap ¶ added in v1.10.3

func (o Identity) ToMap() (map[string]interface{}, error)

type IdentityAPIService ¶ added in v1.10.3

type IdentityAPIService service

IdentityAPIService IdentityAPI service

func (*IdentityAPIService) CreateIdentity ¶ added in v1.10.3

CreateIdentity Create a identity

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateIdentityRequest

func (*IdentityAPIService) CreateIdentityExecute ¶ added in v1.10.3

func (a *IdentityAPIService) CreateIdentityExecute(r ApiCreateIdentityRequest) (*Identity, *http.Response, error)

Execute executes the request

@return Identity

func (*IdentityAPIService) DeleteIdentityById ¶ added in v1.10.3

func (a *IdentityAPIService) DeleteIdentityById(ctx context.Context, identityId string) ApiDeleteIdentityByIdRequest

DeleteIdentityById Delete an identity by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityId Id of the identity
@return ApiDeleteIdentityByIdRequest

func (*IdentityAPIService) DeleteIdentityByIdExecute ¶ added in v1.10.3

func (a *IdentityAPIService) DeleteIdentityByIdExecute(r ApiDeleteIdentityByIdRequest) (*http.Response, error)

Execute executes the request

func (*IdentityAPIService) FindIdentities ¶ added in v1.10.3

FindIdentities Retrieve all identities

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindIdentitiesRequest

func (*IdentityAPIService) FindIdentitiesExecute ¶ added in v1.10.3

func (a *IdentityAPIService) FindIdentitiesExecute(r ApiFindIdentitiesRequest) ([]Identity, *http.Response, error)

Execute executes the request

@return []Identity

func (*IdentityAPIService) FindIdentityById ¶ added in v1.10.3

func (a *IdentityAPIService) FindIdentityById(ctx context.Context, identityId string) ApiFindIdentityByIdRequest

FindIdentityById Find identity by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityId Id of the identity
@return ApiFindIdentityByIdRequest

func (*IdentityAPIService) FindIdentityByIdExecute ¶ added in v1.10.3

func (a *IdentityAPIService) FindIdentityByIdExecute(r ApiFindIdentityByIdRequest) (*Identity, *http.Response, error)

Execute executes the request

@return Identity

func (*IdentityAPIService) FindRolesByIdentityId ¶ added in v1.10.3

func (a *IdentityAPIService) FindRolesByIdentityId(ctx context.Context, identityId string) ApiFindRolesByIdentityIdRequest

FindRolesByIdentityId Find roles by a identity id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityId Id of the identity
@return ApiFindRolesByIdentityIdRequest

func (*IdentityAPIService) FindRolesByIdentityIdExecute ¶ added in v1.10.3

func (a *IdentityAPIService) FindRolesByIdentityIdExecute(r ApiFindRolesByIdentityIdRequest) ([]RoleAndAssignment, *http.Response, error)

Execute executes the request

@return []RoleAndAssignment

func (*IdentityAPIService) UpdateIdentity ¶ added in v1.10.3

func (a *IdentityAPIService) UpdateIdentity(ctx context.Context, identityId string) ApiUpdateIdentityRequest

UpdateIdentity Update a identity

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityId Id of the identity
@return ApiUpdateIdentityRequest

func (*IdentityAPIService) UpdateIdentityExecute ¶ added in v1.10.3

func (a *IdentityAPIService) UpdateIdentityExecute(r ApiUpdateIdentityRequest) (*Identity, *http.Response, error)

Execute executes the request

@return Identity

type IdentityProvider ¶ added in v1.10.3

type IdentityProvider struct {
	Id           *string                           `json:"id,omitempty"`
	Type         *string                           `json:"type,omitempty"`
	Name         *string                           `json:"name,omitempty"`
	TenantId     *string                           `json:"tenant_id,omitempty"`
	ClientId     *string                           `json:"client_id,omitempty"`
	ClientSecret *string                           `json:"client_secret,omitempty"`
	Description  *string                           `json:"description,omitempty"`
	Created      *time.Time                        `json:"created,omitempty"`
	Updated      *time.Time                        `json:"updated,omitempty"`
	Metadata     map[string]map[string]interface{} `json:"metadata,omitempty"`
}

IdentityProvider struct for IdentityProvider

func NewIdentityProvider ¶ added in v1.10.3

func NewIdentityProvider() *IdentityProvider

NewIdentityProvider instantiates a new IdentityProvider 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 NewIdentityProviderWithDefaults ¶ added in v1.10.3

func NewIdentityProviderWithDefaults() *IdentityProvider

NewIdentityProviderWithDefaults instantiates a new IdentityProvider 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 (*IdentityProvider) GetClientId ¶ added in v1.10.3

func (o *IdentityProvider) GetClientId() string

GetClientId returns the ClientId field value if set, zero value otherwise.

func (*IdentityProvider) GetClientIdOk ¶ added in v1.10.3

func (o *IdentityProvider) GetClientIdOk() (*string, bool)

GetClientIdOk returns a tuple with the ClientId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityProvider) GetClientSecret ¶ added in v1.10.3

func (o *IdentityProvider) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*IdentityProvider) GetClientSecretOk ¶ added in v1.10.3

func (o *IdentityProvider) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityProvider) GetCreated ¶ added in v1.10.3

func (o *IdentityProvider) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*IdentityProvider) GetCreatedOk ¶ added in v1.10.3

func (o *IdentityProvider) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityProvider) GetDescription ¶ added in v1.10.3

func (o *IdentityProvider) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*IdentityProvider) GetDescriptionOk ¶ added in v1.10.3

func (o *IdentityProvider) 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 (*IdentityProvider) GetId ¶ added in v1.10.3

func (o *IdentityProvider) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*IdentityProvider) GetIdOk ¶ added in v1.10.3

func (o *IdentityProvider) 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 (*IdentityProvider) GetMetadata ¶ added in v1.10.3

func (o *IdentityProvider) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*IdentityProvider) GetMetadataOk ¶ added in v1.10.3

func (o *IdentityProvider) GetMetadataOk() (map[string]map[string]interface{}, 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 (*IdentityProvider) GetName ¶ added in v1.10.3

func (o *IdentityProvider) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*IdentityProvider) GetNameOk ¶ added in v1.10.3

func (o *IdentityProvider) 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 (*IdentityProvider) GetTenantId ¶ added in v1.10.3

func (o *IdentityProvider) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*IdentityProvider) GetTenantIdOk ¶ added in v1.10.3

func (o *IdentityProvider) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityProvider) GetType ¶ added in v1.10.3

func (o *IdentityProvider) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*IdentityProvider) GetTypeOk ¶ added in v1.10.3

func (o *IdentityProvider) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityProvider) GetUpdated ¶ added in v1.10.3

func (o *IdentityProvider) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*IdentityProvider) GetUpdatedOk ¶ added in v1.10.3

func (o *IdentityProvider) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IdentityProvider) HasClientId ¶ added in v1.10.3

func (o *IdentityProvider) HasClientId() bool

HasClientId returns a boolean if a field has been set.

func (*IdentityProvider) HasClientSecret ¶ added in v1.10.3

func (o *IdentityProvider) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*IdentityProvider) HasCreated ¶ added in v1.10.3

func (o *IdentityProvider) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*IdentityProvider) HasDescription ¶ added in v1.10.3

func (o *IdentityProvider) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*IdentityProvider) HasId ¶ added in v1.10.3

func (o *IdentityProvider) HasId() bool

HasId returns a boolean if a field has been set.

func (*IdentityProvider) HasMetadata ¶ added in v1.10.3

func (o *IdentityProvider) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*IdentityProvider) HasName ¶ added in v1.10.3

func (o *IdentityProvider) HasName() bool

HasName returns a boolean if a field has been set.

func (*IdentityProvider) HasTenantId ¶ added in v1.10.3

func (o *IdentityProvider) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*IdentityProvider) HasType ¶ added in v1.10.3

func (o *IdentityProvider) HasType() bool

HasType returns a boolean if a field has been set.

func (*IdentityProvider) HasUpdated ¶ added in v1.10.3

func (o *IdentityProvider) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (IdentityProvider) MarshalJSON ¶ added in v1.10.3

func (o IdentityProvider) MarshalJSON() ([]byte, error)

func (*IdentityProvider) SetClientId ¶ added in v1.10.3

func (o *IdentityProvider) SetClientId(v string)

SetClientId gets a reference to the given string and assigns it to the ClientId field.

func (*IdentityProvider) SetClientSecret ¶ added in v1.10.3

func (o *IdentityProvider) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*IdentityProvider) SetCreated ¶ added in v1.10.3

func (o *IdentityProvider) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*IdentityProvider) SetDescription ¶ added in v1.10.3

func (o *IdentityProvider) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*IdentityProvider) SetId ¶ added in v1.10.3

func (o *IdentityProvider) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*IdentityProvider) SetMetadata ¶ added in v1.10.3

func (o *IdentityProvider) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*IdentityProvider) SetName ¶ added in v1.10.3

func (o *IdentityProvider) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*IdentityProvider) SetTenantId ¶ added in v1.10.3

func (o *IdentityProvider) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*IdentityProvider) SetType ¶ added in v1.10.3

func (o *IdentityProvider) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*IdentityProvider) SetUpdated ¶ added in v1.10.3

func (o *IdentityProvider) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (IdentityProvider) ToMap ¶ added in v1.10.3

func (o IdentityProvider) ToMap() (map[string]interface{}, error)

type IdentityProviderAPIService ¶ added in v1.10.3

type IdentityProviderAPIService service

IdentityProviderAPIService IdentityProviderAPI service

func (*IdentityProviderAPIService) CreateIdentityProvider ¶ added in v1.10.3

CreateIdentityProvider Create a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateIdentityProviderRequest

func (*IdentityProviderAPIService) CreateIdentityProviderExecute ¶ added in v1.10.3

Execute executes the request

@return IdentityProvider

func (*IdentityProviderAPIService) DeleteIdentityProviderById ¶ added in v1.10.3

func (a *IdentityProviderAPIService) DeleteIdentityProviderById(ctx context.Context, identityProviderId string) ApiDeleteIdentityProviderByIdRequest

DeleteIdentityProviderById Delete a user by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityProviderId Id of the user
@return ApiDeleteIdentityProviderByIdRequest

func (*IdentityProviderAPIService) DeleteIdentityProviderByIdExecute ¶ added in v1.10.3

func (a *IdentityProviderAPIService) DeleteIdentityProviderByIdExecute(r ApiDeleteIdentityProviderByIdRequest) (*http.Response, error)

Execute executes the request

func (*IdentityProviderAPIService) FindIdentityProviderById ¶ added in v1.10.3

func (a *IdentityProviderAPIService) FindIdentityProviderById(ctx context.Context, identityProviderId string) ApiFindIdentityProviderByIdRequest

FindIdentityProviderById Find user by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityProviderId Id of the user
@return ApiFindIdentityProviderByIdRequest

func (*IdentityProviderAPIService) FindIdentityProviderByIdExecute ¶ added in v1.10.3

Execute executes the request

@return IdentityProvider

func (*IdentityProviderAPIService) FindIdentityProviders ¶ added in v1.10.3

FindIdentityProviders Retrieve all identity providers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindIdentityProvidersRequest

func (*IdentityProviderAPIService) FindIdentityProvidersExecute ¶ added in v1.10.3

Execute executes the request

@return []IdentityProvider

func (*IdentityProviderAPIService) UpdateIdentityProvider ¶ added in v1.10.3

func (a *IdentityProviderAPIService) UpdateIdentityProvider(ctx context.Context, identityProviderId string) ApiUpdateIdentityProviderRequest

UpdateIdentityProvider Update a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identityProviderId Id of the user
@return ApiUpdateIdentityProviderRequest

func (*IdentityProviderAPIService) UpdateIdentityProviderExecute ¶ added in v1.10.3

Execute executes the request

@return IdentityProvider

type InFilter ¶ added in v1.10.3

type InFilter struct {
	// Left operator for filter.
	Left  string `json:"left"`
	Right Right  `json:"right"`
	// Operator for IN list/range filter.
	Type *string `json:"type,omitempty"`
}

InFilter Filter values that are in a list or a string. Attributes ---------- type : RelationalOperatorType Type of the filter.

func NewInFilter ¶ added in v1.10.3

func NewInFilter(left string, right Right) *InFilter

NewInFilter instantiates a new InFilter 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 NewInFilterWithDefaults ¶ added in v1.10.3

func NewInFilterWithDefaults() *InFilter

NewInFilterWithDefaults instantiates a new InFilter 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 (*InFilter) GetLeft ¶ added in v1.10.3

func (o *InFilter) GetLeft() string

GetLeft returns the Left field value

func (*InFilter) GetLeftOk ¶ added in v1.10.3

func (o *InFilter) GetLeftOk() (*string, bool)

GetLeftOk returns a tuple with the Left field value and a boolean to check if the value has been set.

func (*InFilter) GetRight ¶ added in v1.10.3

func (o *InFilter) GetRight() Right

GetRight returns the Right field value

func (*InFilter) GetRightOk ¶ added in v1.10.3

func (o *InFilter) GetRightOk() (*Right, bool)

GetRightOk returns a tuple with the Right field value and a boolean to check if the value has been set.

func (*InFilter) GetType ¶ added in v1.10.3

func (o *InFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*InFilter) GetTypeOk ¶ added in v1.10.3

func (o *InFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InFilter) HasType ¶ added in v1.10.3

func (o *InFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (InFilter) MarshalJSON ¶ added in v1.10.3

func (o InFilter) MarshalJSON() ([]byte, error)

func (*InFilter) SetLeft ¶ added in v1.10.3

func (o *InFilter) SetLeft(v string)

SetLeft sets field value

func (*InFilter) SetRight ¶ added in v1.10.3

func (o *InFilter) SetRight(v Right)

SetRight sets field value

func (*InFilter) SetType ¶ added in v1.10.3

func (o *InFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (InFilter) ToMap ¶ added in v1.10.3

func (o InFilter) ToMap() (map[string]interface{}, error)

func (*InFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *InFilter) UnmarshalJSON(bytes []byte) (err error)

type InPersonDetails ¶ added in v1.10.3

type InPersonDetails struct {
	Details1
	Type *string `json:"type,omitempty"`
}

InPersonDetails struct for InPersonDetails

func NewInPersonDetails ¶ added in v1.10.3

func NewInPersonDetails() *InPersonDetails

NewInPersonDetails instantiates a new InPersonDetails 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 NewInPersonDetailsWithDefaults ¶ added in v1.10.3

func NewInPersonDetailsWithDefaults() *InPersonDetails

NewInPersonDetailsWithDefaults instantiates a new InPersonDetails 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 (*InPersonDetails) GetType ¶ added in v1.10.3

func (o *InPersonDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*InPersonDetails) GetTypeOk ¶ added in v1.10.3

func (o *InPersonDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InPersonDetails) HasType ¶ added in v1.10.3

func (o *InPersonDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (InPersonDetails) MarshalJSON ¶ added in v1.10.3

func (o InPersonDetails) MarshalJSON() ([]byte, error)

func (*InPersonDetails) SetType ¶ added in v1.10.3

func (o *InPersonDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (InPersonDetails) ToMap ¶ added in v1.10.3

func (o InPersonDetails) ToMap() (map[string]interface{}, error)

type InPersonDetailsAllOf ¶ added in v1.10.3

type InPersonDetailsAllOf struct {
	Type *string `json:"type,omitempty"`
}

InPersonDetailsAllOf struct for InPersonDetailsAllOf

func NewInPersonDetailsAllOf ¶ added in v1.10.3

func NewInPersonDetailsAllOf() *InPersonDetailsAllOf

NewInPersonDetailsAllOf instantiates a new InPersonDetailsAllOf 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 NewInPersonDetailsAllOfWithDefaults ¶ added in v1.10.3

func NewInPersonDetailsAllOfWithDefaults() *InPersonDetailsAllOf

NewInPersonDetailsAllOfWithDefaults instantiates a new InPersonDetailsAllOf 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 (*InPersonDetailsAllOf) GetType ¶ added in v1.10.3

func (o *InPersonDetailsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*InPersonDetailsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *InPersonDetailsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InPersonDetailsAllOf) HasType ¶ added in v1.10.3

func (o *InPersonDetailsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (InPersonDetailsAllOf) MarshalJSON ¶ added in v1.10.3

func (o InPersonDetailsAllOf) MarshalJSON() ([]byte, error)

func (*InPersonDetailsAllOf) SetType ¶ added in v1.10.3

func (o *InPersonDetailsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Infrastructure ¶

type Infrastructure struct {
	Id                   *string                           `json:"id,omitempty"`
	Name                 *string                           `json:"name,omitempty"`
	Type                 *string                           `json:"type,omitempty"`
	Description          *string                           `json:"description,omitempty"`
	Location             *string                           `json:"location,omitempty"`
	Country              *string                           `json:"country,omitempty"`
	Created              *time.Time                        `json:"created,omitempty"`
	Updated              *time.Time                        `json:"updated,omitempty"`
	Target               *Target                           `json:"target,omitempty"`
	AllowedInstanceTypes []string                          `json:"allowed_instance_types,omitempty"`
	Metadata             map[string]map[string]interface{} `json:"metadata,omitempty"`
	Locked               *bool                             `json:"locked,omitempty"`
}

Infrastructure struct for Infrastructure

func NewInfrastructure ¶

func NewInfrastructure() *Infrastructure

NewInfrastructure instantiates a new Infrastructure 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 NewInfrastructureWithDefaults ¶

func NewInfrastructureWithDefaults() *Infrastructure

NewInfrastructureWithDefaults instantiates a new Infrastructure 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 (*Infrastructure) GetAllowedInstanceTypes ¶ added in v1.10.3

func (o *Infrastructure) GetAllowedInstanceTypes() []string

GetAllowedInstanceTypes returns the AllowedInstanceTypes field value if set, zero value otherwise.

func (*Infrastructure) GetAllowedInstanceTypesOk ¶ added in v1.10.3

func (o *Infrastructure) GetAllowedInstanceTypesOk() ([]string, bool)

GetAllowedInstanceTypesOk returns a tuple with the AllowedInstanceTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Infrastructure) GetCountry ¶

func (o *Infrastructure) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*Infrastructure) GetCountryOk ¶

func (o *Infrastructure) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Infrastructure) GetCreated ¶

func (o *Infrastructure) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Infrastructure) GetCreatedOk ¶

func (o *Infrastructure) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Infrastructure) GetDescription ¶

func (o *Infrastructure) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Infrastructure) GetDescriptionOk ¶

func (o *Infrastructure) 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 (*Infrastructure) GetId ¶

func (o *Infrastructure) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Infrastructure) GetIdOk ¶

func (o *Infrastructure) 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 (*Infrastructure) GetLocation ¶

func (o *Infrastructure) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*Infrastructure) GetLocationOk ¶

func (o *Infrastructure) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Infrastructure) GetLocked ¶

func (o *Infrastructure) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*Infrastructure) GetLockedOk ¶

func (o *Infrastructure) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Infrastructure) GetMetadata ¶

func (o *Infrastructure) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Infrastructure) GetMetadataOk ¶

func (o *Infrastructure) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Infrastructure) GetName ¶

func (o *Infrastructure) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Infrastructure) GetNameOk ¶

func (o *Infrastructure) 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 (*Infrastructure) GetTarget ¶

func (o *Infrastructure) GetTarget() Target

GetTarget returns the Target field value if set, zero value otherwise.

func (*Infrastructure) GetTargetOk ¶

func (o *Infrastructure) GetTargetOk() (*Target, bool)

GetTargetOk returns a tuple with the Target field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Infrastructure) GetType ¶

func (o *Infrastructure) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Infrastructure) GetTypeOk ¶

func (o *Infrastructure) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Infrastructure) GetUpdated ¶

func (o *Infrastructure) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Infrastructure) GetUpdatedOk ¶

func (o *Infrastructure) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Infrastructure) HasAllowedInstanceTypes ¶ added in v1.10.3

func (o *Infrastructure) HasAllowedInstanceTypes() bool

HasAllowedInstanceTypes returns a boolean if a field has been set.

func (*Infrastructure) HasCountry ¶

func (o *Infrastructure) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*Infrastructure) HasCreated ¶

func (o *Infrastructure) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Infrastructure) HasDescription ¶

func (o *Infrastructure) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Infrastructure) HasId ¶

func (o *Infrastructure) HasId() bool

HasId returns a boolean if a field has been set.

func (*Infrastructure) HasLocation ¶

func (o *Infrastructure) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*Infrastructure) HasLocked ¶

func (o *Infrastructure) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*Infrastructure) HasMetadata ¶

func (o *Infrastructure) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Infrastructure) HasName ¶

func (o *Infrastructure) HasName() bool

HasName returns a boolean if a field has been set.

func (*Infrastructure) HasTarget ¶

func (o *Infrastructure) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (*Infrastructure) HasType ¶

func (o *Infrastructure) HasType() bool

HasType returns a boolean if a field has been set.

func (*Infrastructure) HasUpdated ¶

func (o *Infrastructure) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Infrastructure) MarshalJSON ¶

func (o Infrastructure) MarshalJSON() ([]byte, error)

func (*Infrastructure) SetAllowedInstanceTypes ¶ added in v1.10.3

func (o *Infrastructure) SetAllowedInstanceTypes(v []string)

SetAllowedInstanceTypes gets a reference to the given []string and assigns it to the AllowedInstanceTypes field.

func (*Infrastructure) SetCountry ¶

func (o *Infrastructure) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*Infrastructure) SetCreated ¶

func (o *Infrastructure) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Infrastructure) SetDescription ¶

func (o *Infrastructure) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Infrastructure) SetId ¶

func (o *Infrastructure) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Infrastructure) SetLocation ¶

func (o *Infrastructure) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*Infrastructure) SetLocked ¶

func (o *Infrastructure) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*Infrastructure) SetMetadata ¶

func (o *Infrastructure) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Infrastructure) SetName ¶

func (o *Infrastructure) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Infrastructure) SetTarget ¶

func (o *Infrastructure) SetTarget(v Target)

SetTarget gets a reference to the given Target and assigns it to the Target field.

func (*Infrastructure) SetType ¶

func (o *Infrastructure) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Infrastructure) SetUpdated ¶

func (o *Infrastructure) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Infrastructure) ToMap ¶ added in v1.10.3

func (o Infrastructure) ToMap() (map[string]interface{}, error)

type InfrastructureAPIService ¶ added in v1.10.3

type InfrastructureAPIService service

InfrastructureAPIService InfrastructureAPI service

func (*InfrastructureAPIService) DeleteInfrastructureById ¶ added in v1.10.3

func (a *InfrastructureAPIService) DeleteInfrastructureById(ctx context.Context, infrastructureId string) ApiDeleteInfrastructureByIdRequest

DeleteInfrastructureById Delete a infrastructure by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param infrastructureId Id of the infrastructure
@return ApiDeleteInfrastructureByIdRequest

func (*InfrastructureAPIService) DeleteInfrastructureByIdExecute ¶ added in v1.10.3

func (a *InfrastructureAPIService) DeleteInfrastructureByIdExecute(r ApiDeleteInfrastructureByIdRequest) (*http.Response, error)

Execute executes the request

func (*InfrastructureAPIService) FindCapacityByInfrastructureById ¶ added in v1.10.3

func (a *InfrastructureAPIService) FindCapacityByInfrastructureById(ctx context.Context, infrastructureId string) ApiFindCapacityByInfrastructureByIdRequest

FindCapacityByInfrastructureById Retrieve the capacity of an infrastructure

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param infrastructureId Id of the infrastructure
@return ApiFindCapacityByInfrastructureByIdRequest

func (*InfrastructureAPIService) FindCapacityByInfrastructureByIdExecute ¶ added in v1.10.3

func (a *InfrastructureAPIService) FindCapacityByInfrastructureByIdExecute(r ApiFindCapacityByInfrastructureByIdRequest) (*TargetInfo, *http.Response, error)

Execute executes the request

@return TargetInfo

func (*InfrastructureAPIService) FindInfrastructureByInfrastructureId ¶ added in v1.10.3

func (a *InfrastructureAPIService) FindInfrastructureByInfrastructureId(ctx context.Context, infrastructureId string) ApiFindInfrastructureByInfrastructureIdRequest

FindInfrastructureByInfrastructureId Find infrastructure by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param infrastructureId Id of the infrastructure
@return ApiFindInfrastructureByInfrastructureIdRequest

func (*InfrastructureAPIService) FindInfrastructureByInfrastructureIdExecute ¶ added in v1.10.3

func (a *InfrastructureAPIService) FindInfrastructureByInfrastructureIdExecute(r ApiFindInfrastructureByInfrastructureIdRequest) (*Infrastructure, *http.Response, error)

Execute executes the request

@return Infrastructure

func (*InfrastructureAPIService) FindInfrastructures ¶ added in v1.10.3

FindInfrastructures Retrieve all infrastructure

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindInfrastructuresRequest

func (*InfrastructureAPIService) FindInfrastructuresExecute ¶ added in v1.10.3

Execute executes the request

@return []Infrastructure

func (*InfrastructureAPIService) FindPublicIpsByInfrastructureId ¶ added in v1.10.3

func (a *InfrastructureAPIService) FindPublicIpsByInfrastructureId(ctx context.Context, infrastructureId string) ApiFindPublicIpsByInfrastructureIdRequest

FindPublicIpsByInfrastructureId Find public ips by infrastructure id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param infrastructureId Id of the infrastructure
@return ApiFindPublicIpsByInfrastructureIdRequest

func (*InfrastructureAPIService) FindPublicIpsByInfrastructureIdExecute ¶ added in v1.10.3

func (a *InfrastructureAPIService) FindPublicIpsByInfrastructureIdExecute(r ApiFindPublicIpsByInfrastructureIdRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*InfrastructureAPIService) FindServicesByInfrastructureById ¶ added in v1.10.3

func (a *InfrastructureAPIService) FindServicesByInfrastructureById(ctx context.Context, infrastructureId string) ApiFindServicesByInfrastructureByIdRequest

FindServicesByInfrastructureById Retrieve the services of an infrastructure

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param infrastructureId Id of the infrastructure
@return ApiFindServicesByInfrastructureByIdRequest

func (*InfrastructureAPIService) FindServicesByInfrastructureByIdExecute ¶ added in v1.10.3

func (a *InfrastructureAPIService) FindServicesByInfrastructureByIdExecute(r ApiFindServicesByInfrastructureByIdRequest) (*Services, *http.Response, error)

Execute executes the request

@return Services

func (*InfrastructureAPIService) UpdateInfrastructure ¶ added in v1.10.3

func (a *InfrastructureAPIService) UpdateInfrastructure(ctx context.Context, infrastructureId string) ApiUpdateInfrastructureRequest

UpdateInfrastructure Update an infrastructure

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param infrastructureId Id of the infrastructure
@return ApiUpdateInfrastructureRequest

func (*InfrastructureAPIService) UpdateInfrastructureExecute ¶ added in v1.10.3

Execute executes the request

@return Infrastructure

type InlineResponse200 ¶

type InlineResponse200 struct {
	ClientSecret *string `json:"client_secret,omitempty"`
}

InlineResponse200 struct for InlineResponse200

func NewInlineResponse200 ¶

func NewInlineResponse200() *InlineResponse200

NewInlineResponse200 instantiates a new InlineResponse200 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 NewInlineResponse200WithDefaults ¶

func NewInlineResponse200WithDefaults() *InlineResponse200

NewInlineResponse200WithDefaults instantiates a new InlineResponse200 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 (*InlineResponse200) GetClientSecret ¶ added in v1.10.3

func (o *InlineResponse200) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*InlineResponse200) GetClientSecretOk ¶ added in v1.10.3

func (o *InlineResponse200) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InlineResponse200) HasClientSecret ¶ added in v1.10.3

func (o *InlineResponse200) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (InlineResponse200) MarshalJSON ¶

func (o InlineResponse200) MarshalJSON() ([]byte, error)

func (*InlineResponse200) SetClientSecret ¶ added in v1.10.3

func (o *InlineResponse200) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

type InlineResponse2001 ¶ added in v1.10.3

type InlineResponse2001 struct {
	PublicKey *string `json:"public_key,omitempty"`
}

InlineResponse2001 struct for InlineResponse2001

func NewInlineResponse2001 ¶ added in v1.10.3

func NewInlineResponse2001() *InlineResponse2001

NewInlineResponse2001 instantiates a new InlineResponse2001 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 NewInlineResponse2001WithDefaults ¶ added in v1.10.3

func NewInlineResponse2001WithDefaults() *InlineResponse2001

NewInlineResponse2001WithDefaults instantiates a new InlineResponse2001 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 (*InlineResponse2001) GetPublicKey ¶ added in v1.10.3

func (o *InlineResponse2001) GetPublicKey() string

GetPublicKey returns the PublicKey field value if set, zero value otherwise.

func (*InlineResponse2001) GetPublicKeyOk ¶ added in v1.10.3

func (o *InlineResponse2001) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InlineResponse2001) HasPublicKey ¶ added in v1.10.3

func (o *InlineResponse2001) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set.

func (InlineResponse2001) MarshalJSON ¶ added in v1.10.3

func (o InlineResponse2001) MarshalJSON() ([]byte, error)

func (*InlineResponse2001) SetPublicKey ¶ added in v1.10.3

func (o *InlineResponse2001) SetPublicKey(v string)

SetPublicKey gets a reference to the given string and assigns it to the PublicKey field.

type InlineResponse2002 ¶ added in v1.10.3

type InlineResponse2002 struct {
	Status *string `json:"status,omitempty"`
}

InlineResponse2002 struct for InlineResponse2002

func NewInlineResponse2002 ¶ added in v1.10.3

func NewInlineResponse2002() *InlineResponse2002

NewInlineResponse2002 instantiates a new InlineResponse2002 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 NewInlineResponse2002WithDefaults ¶ added in v1.10.3

func NewInlineResponse2002WithDefaults() *InlineResponse2002

NewInlineResponse2002WithDefaults instantiates a new InlineResponse2002 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 (*InlineResponse2002) GetStatus ¶ added in v1.10.3

func (o *InlineResponse2002) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*InlineResponse2002) GetStatusOk ¶ added in v1.10.3

func (o *InlineResponse2002) GetStatusOk() (*string, 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 (*InlineResponse2002) HasStatus ¶ added in v1.10.3

func (o *InlineResponse2002) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (InlineResponse2002) MarshalJSON ¶ added in v1.10.3

func (o InlineResponse2002) MarshalJSON() ([]byte, error)

func (*InlineResponse2002) SetStatus ¶ added in v1.10.3

func (o *InlineResponse2002) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type InstanceType ¶

type InstanceType struct {
	Id         *string  `json:"id,omitempty"`
	Generation *float32 `json:"generation,omitempty"`
	Family     *string  `json:"family,omitempty"`
	Cpus       *float32 `json:"cpus,omitempty"`
	Memory     *string  `json:"memory,omitempty"`
	Storage    *string  `json:"storage,omitempty"`
	Gpus       *float32 `json:"gpus,omitempty"`
	GpuMemory  *string  `json:"gpu_memory,omitempty"`
}

InstanceType struct for InstanceType

func NewInstanceType ¶

func NewInstanceType() *InstanceType

NewInstanceType instantiates a new InstanceType 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 NewInstanceTypeWithDefaults ¶

func NewInstanceTypeWithDefaults() *InstanceType

NewInstanceTypeWithDefaults instantiates a new InstanceType 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 (*InstanceType) GetCpus ¶

func (o *InstanceType) GetCpus() float32

GetCpus returns the Cpus field value if set, zero value otherwise.

func (*InstanceType) GetCpusOk ¶

func (o *InstanceType) GetCpusOk() (*float32, bool)

GetCpusOk returns a tuple with the Cpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceType) GetFamily ¶

func (o *InstanceType) GetFamily() string

GetFamily returns the Family field value if set, zero value otherwise.

func (*InstanceType) GetFamilyOk ¶

func (o *InstanceType) GetFamilyOk() (*string, bool)

GetFamilyOk returns a tuple with the Family field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceType) GetGeneration ¶

func (o *InstanceType) GetGeneration() float32

GetGeneration returns the Generation field value if set, zero value otherwise.

func (*InstanceType) GetGenerationOk ¶

func (o *InstanceType) GetGenerationOk() (*float32, bool)

GetGenerationOk returns a tuple with the Generation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceType) GetGpuMemory ¶

func (o *InstanceType) GetGpuMemory() string

GetGpuMemory returns the GpuMemory field value if set, zero value otherwise.

func (*InstanceType) GetGpuMemoryOk ¶

func (o *InstanceType) GetGpuMemoryOk() (*string, bool)

GetGpuMemoryOk returns a tuple with the GpuMemory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceType) GetGpus ¶

func (o *InstanceType) GetGpus() float32

GetGpus returns the Gpus field value if set, zero value otherwise.

func (*InstanceType) GetGpusOk ¶

func (o *InstanceType) GetGpusOk() (*float32, bool)

GetGpusOk returns a tuple with the Gpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceType) GetId ¶

func (o *InstanceType) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*InstanceType) GetIdOk ¶

func (o *InstanceType) 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 (*InstanceType) GetMemory ¶

func (o *InstanceType) GetMemory() string

GetMemory returns the Memory field value if set, zero value otherwise.

func (*InstanceType) GetMemoryOk ¶

func (o *InstanceType) GetMemoryOk() (*string, bool)

GetMemoryOk returns a tuple with the Memory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceType) GetStorage ¶

func (o *InstanceType) GetStorage() string

GetStorage returns the Storage field value if set, zero value otherwise.

func (*InstanceType) GetStorageOk ¶

func (o *InstanceType) GetStorageOk() (*string, bool)

GetStorageOk returns a tuple with the Storage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*InstanceType) HasCpus ¶

func (o *InstanceType) HasCpus() bool

HasCpus returns a boolean if a field has been set.

func (*InstanceType) HasFamily ¶

func (o *InstanceType) HasFamily() bool

HasFamily returns a boolean if a field has been set.

func (*InstanceType) HasGeneration ¶

func (o *InstanceType) HasGeneration() bool

HasGeneration returns a boolean if a field has been set.

func (*InstanceType) HasGpuMemory ¶

func (o *InstanceType) HasGpuMemory() bool

HasGpuMemory returns a boolean if a field has been set.

func (*InstanceType) HasGpus ¶

func (o *InstanceType) HasGpus() bool

HasGpus returns a boolean if a field has been set.

func (*InstanceType) HasId ¶

func (o *InstanceType) HasId() bool

HasId returns a boolean if a field has been set.

func (*InstanceType) HasMemory ¶

func (o *InstanceType) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*InstanceType) HasStorage ¶

func (o *InstanceType) HasStorage() bool

HasStorage returns a boolean if a field has been set.

func (InstanceType) MarshalJSON ¶

func (o InstanceType) MarshalJSON() ([]byte, error)

func (*InstanceType) SetCpus ¶

func (o *InstanceType) SetCpus(v float32)

SetCpus gets a reference to the given float32 and assigns it to the Cpus field.

func (*InstanceType) SetFamily ¶

func (o *InstanceType) SetFamily(v string)

SetFamily gets a reference to the given string and assigns it to the Family field.

func (*InstanceType) SetGeneration ¶

func (o *InstanceType) SetGeneration(v float32)

SetGeneration gets a reference to the given float32 and assigns it to the Generation field.

func (*InstanceType) SetGpuMemory ¶

func (o *InstanceType) SetGpuMemory(v string)

SetGpuMemory gets a reference to the given string and assigns it to the GpuMemory field.

func (*InstanceType) SetGpus ¶

func (o *InstanceType) SetGpus(v float32)

SetGpus gets a reference to the given float32 and assigns it to the Gpus field.

func (*InstanceType) SetId ¶

func (o *InstanceType) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*InstanceType) SetMemory ¶

func (o *InstanceType) SetMemory(v string)

SetMemory gets a reference to the given string and assigns it to the Memory field.

func (*InstanceType) SetStorage ¶

func (o *InstanceType) SetStorage(v string)

SetStorage gets a reference to the given string and assigns it to the Storage field.

func (InstanceType) ToMap ¶ added in v1.10.3

func (o InstanceType) ToMap() (map[string]interface{}, error)

type InstanceTypeAPIService ¶ added in v1.10.3

type InstanceTypeAPIService service

InstanceTypeAPIService InstanceTypeAPI service

func (*InstanceTypeAPIService) FindInstanceTypeByInstanceTypeId ¶ added in v1.10.3

func (a *InstanceTypeAPIService) FindInstanceTypeByInstanceTypeId(ctx context.Context, instanceTypeId string) ApiFindInstanceTypeByInstanceTypeIdRequest

FindInstanceTypeByInstanceTypeId Find instance type by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param instanceTypeId Id of the instance type
@return ApiFindInstanceTypeByInstanceTypeIdRequest

func (*InstanceTypeAPIService) FindInstanceTypeByInstanceTypeIdExecute ¶ added in v1.10.3

func (a *InstanceTypeAPIService) FindInstanceTypeByInstanceTypeIdExecute(r ApiFindInstanceTypeByInstanceTypeIdRequest) (*InstanceType, *http.Response, error)

Execute executes the request

@return InstanceType

func (*InstanceTypeAPIService) FindInstanceTypes ¶ added in v1.10.3

FindInstanceTypes Retrieve all instance types

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindInstanceTypesRequest

func (*InstanceTypeAPIService) FindInstanceTypesExecute ¶ added in v1.10.3

func (a *InstanceTypeAPIService) FindInstanceTypesExecute(r ApiFindInstanceTypesRequest) ([]InstanceType, *http.Response, error)

Execute executes the request

@return []InstanceType

type Invoice ¶

type Invoice struct {
	Id          *string                           `json:"id,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	StartPeriod *time.Time                        `json:"start_period,omitempty"`
	EndPeriod   *time.Time                        `json:"end_period,omitempty"`
	Currency    *string                           `json:"currency,omitempty"`
	Amount      *string                           `json:"amount,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Invoice struct for Invoice

func NewInvoice ¶

func NewInvoice() *Invoice

NewInvoice instantiates a new Invoice 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 NewInvoiceWithDefaults ¶

func NewInvoiceWithDefaults() *Invoice

NewInvoiceWithDefaults instantiates a new Invoice 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 (*Invoice) GetAmount ¶

func (o *Invoice) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*Invoice) GetAmountOk ¶

func (o *Invoice) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invoice) GetCreated ¶

func (o *Invoice) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Invoice) GetCreatedOk ¶

func (o *Invoice) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invoice) GetCurrency ¶

func (o *Invoice) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*Invoice) GetCurrencyOk ¶

func (o *Invoice) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invoice) GetEndPeriod ¶

func (o *Invoice) GetEndPeriod() time.Time

GetEndPeriod returns the EndPeriod field value if set, zero value otherwise.

func (*Invoice) GetEndPeriodOk ¶

func (o *Invoice) GetEndPeriodOk() (*time.Time, bool)

GetEndPeriodOk returns a tuple with the EndPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invoice) GetId ¶

func (o *Invoice) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Invoice) GetIdOk ¶

func (o *Invoice) 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 (*Invoice) GetMetadata ¶

func (o *Invoice) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Invoice) GetMetadataOk ¶

func (o *Invoice) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Invoice) GetStartPeriod ¶

func (o *Invoice) GetStartPeriod() time.Time

GetStartPeriod returns the StartPeriod field value if set, zero value otherwise.

func (*Invoice) GetStartPeriodOk ¶

func (o *Invoice) GetStartPeriodOk() (*time.Time, bool)

GetStartPeriodOk returns a tuple with the StartPeriod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Invoice) HasAmount ¶

func (o *Invoice) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*Invoice) HasCreated ¶

func (o *Invoice) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Invoice) HasCurrency ¶

func (o *Invoice) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*Invoice) HasEndPeriod ¶

func (o *Invoice) HasEndPeriod() bool

HasEndPeriod returns a boolean if a field has been set.

func (*Invoice) HasId ¶

func (o *Invoice) HasId() bool

HasId returns a boolean if a field has been set.

func (*Invoice) HasMetadata ¶

func (o *Invoice) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Invoice) HasStartPeriod ¶

func (o *Invoice) HasStartPeriod() bool

HasStartPeriod returns a boolean if a field has been set.

func (Invoice) MarshalJSON ¶

func (o Invoice) MarshalJSON() ([]byte, error)

func (*Invoice) SetAmount ¶

func (o *Invoice) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*Invoice) SetCreated ¶

func (o *Invoice) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Invoice) SetCurrency ¶

func (o *Invoice) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*Invoice) SetEndPeriod ¶

func (o *Invoice) SetEndPeriod(v time.Time)

SetEndPeriod gets a reference to the given time.Time and assigns it to the EndPeriod field.

func (*Invoice) SetId ¶

func (o *Invoice) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Invoice) SetMetadata ¶

func (o *Invoice) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Invoice) SetStartPeriod ¶

func (o *Invoice) SetStartPeriod(v time.Time)

SetStartPeriod gets a reference to the given time.Time and assigns it to the StartPeriod field.

func (Invoice) ToMap ¶ added in v1.10.3

func (o Invoice) ToMap() (map[string]interface{}, error)

type InvoiceAPIService ¶ added in v1.10.3

type InvoiceAPIService service

InvoiceAPIService InvoiceAPI service

func (*InvoiceAPIService) CreateInvoice ¶ added in v1.10.3

CreateInvoice Create an invoice

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateInvoiceRequest

func (*InvoiceAPIService) CreateInvoiceExecute ¶ added in v1.10.3

func (a *InvoiceAPIService) CreateInvoiceExecute(r ApiCreateInvoiceRequest) (*Invoice, *http.Response, error)

Execute executes the request

@return Invoice

func (*InvoiceAPIService) DeleteInvoiceById ¶ added in v1.10.3

func (a *InvoiceAPIService) DeleteInvoiceById(ctx context.Context, invoiceId string) ApiDeleteInvoiceByIdRequest

DeleteInvoiceById Delete a invoice by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param invoiceId Id of the Invoice
@return ApiDeleteInvoiceByIdRequest

func (*InvoiceAPIService) DeleteInvoiceByIdExecute ¶ added in v1.10.3

func (a *InvoiceAPIService) DeleteInvoiceByIdExecute(r ApiDeleteInvoiceByIdRequest) (*http.Response, error)

Execute executes the request

func (*InvoiceAPIService) DownloadInvoiceById ¶ added in v1.10.3

func (a *InvoiceAPIService) DownloadInvoiceById(ctx context.Context, invoiceId string) ApiDownloadInvoiceByIdRequest

DownloadInvoiceById Download invoice by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param invoiceId Id of the invoice
@return ApiDownloadInvoiceByIdRequest

func (*InvoiceAPIService) DownloadInvoiceByIdExecute ¶ added in v1.10.3

func (a *InvoiceAPIService) DownloadInvoiceByIdExecute(r ApiDownloadInvoiceByIdRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*InvoiceAPIService) FindInvoiceById ¶ added in v1.10.3

func (a *InvoiceAPIService) FindInvoiceById(ctx context.Context, invoiceId string) ApiFindInvoiceByIdRequest

FindInvoiceById Find invoice by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param invoiceId Id of the invoice
@return ApiFindInvoiceByIdRequest

func (*InvoiceAPIService) FindInvoiceByIdExecute ¶ added in v1.10.3

func (a *InvoiceAPIService) FindInvoiceByIdExecute(r ApiFindInvoiceByIdRequest) (*Invoice, *http.Response, error)

Execute executes the request

@return Invoice

func (*InvoiceAPIService) FindInvoices ¶ added in v1.10.3

FindInvoices Retrieve all invoices

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindInvoicesRequest

func (*InvoiceAPIService) FindInvoicesExecute ¶ added in v1.10.3

func (a *InvoiceAPIService) FindInvoicesExecute(r ApiFindInvoicesRequest) ([]Invoice, *http.Response, error)

Execute executes the request

@return []Invoice

func (*InvoiceAPIService) UpdateInvoice ¶ added in v1.10.3

func (a *InvoiceAPIService) UpdateInvoice(ctx context.Context, invoiceId string) ApiUpdateInvoiceRequest

UpdateInvoice Update a invoice

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param invoiceId Id of the Invoice
@return ApiUpdateInvoiceRequest

func (*InvoiceAPIService) UpdateInvoiceExecute ¶ added in v1.10.3

func (a *InvoiceAPIService) UpdateInvoiceExecute(r ApiUpdateInvoiceRequest) (*Invoice, *http.Response, error)

Execute executes the request

@return Invoice

type IssueDetails ¶

type IssueDetails struct {
	Details
	Type         *string `json:"type,omitempty"`
	ResourceType *string `json:"resource_type,omitempty"`
	ResourceId   *string `json:"resource_id,omitempty"`
	Severity     *string `json:"severity,omitempty"`
}

IssueDetails struct for IssueDetails

func NewIssueDetails ¶

func NewIssueDetails() *IssueDetails

NewIssueDetails instantiates a new IssueDetails 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 NewIssueDetailsWithDefaults ¶

func NewIssueDetailsWithDefaults() *IssueDetails

NewIssueDetailsWithDefaults instantiates a new IssueDetails 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 (*IssueDetails) GetResourceId ¶

func (o *IssueDetails) GetResourceId() string

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*IssueDetails) GetResourceIdOk ¶

func (o *IssueDetails) GetResourceIdOk() (*string, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IssueDetails) GetResourceType ¶

func (o *IssueDetails) GetResourceType() string

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*IssueDetails) GetResourceTypeOk ¶

func (o *IssueDetails) GetResourceTypeOk() (*string, bool)

GetResourceTypeOk returns a tuple with the ResourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IssueDetails) GetSeverity ¶

func (o *IssueDetails) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*IssueDetails) GetSeverityOk ¶

func (o *IssueDetails) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IssueDetails) GetType ¶

func (o *IssueDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*IssueDetails) GetTypeOk ¶

func (o *IssueDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IssueDetails) HasResourceId ¶

func (o *IssueDetails) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*IssueDetails) HasResourceType ¶

func (o *IssueDetails) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (*IssueDetails) HasSeverity ¶

func (o *IssueDetails) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*IssueDetails) HasType ¶

func (o *IssueDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (IssueDetails) MarshalJSON ¶

func (o IssueDetails) MarshalJSON() ([]byte, error)

func (*IssueDetails) SetResourceId ¶

func (o *IssueDetails) SetResourceId(v string)

SetResourceId gets a reference to the given string and assigns it to the ResourceId field.

func (*IssueDetails) SetResourceType ¶

func (o *IssueDetails) SetResourceType(v string)

SetResourceType gets a reference to the given string and assigns it to the ResourceType field.

func (*IssueDetails) SetSeverity ¶

func (o *IssueDetails) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*IssueDetails) SetType ¶

func (o *IssueDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (IssueDetails) ToMap ¶ added in v1.10.3

func (o IssueDetails) ToMap() (map[string]interface{}, error)

type IssueDetailsAllOf ¶

type IssueDetailsAllOf struct {
	Type         *string `json:"type,omitempty"`
	ResourceType *string `json:"resource_type,omitempty"`
	ResourceId   *string `json:"resource_id,omitempty"`
	Severity     *string `json:"severity,omitempty"`
}

IssueDetailsAllOf struct for IssueDetailsAllOf

func NewIssueDetailsAllOf ¶

func NewIssueDetailsAllOf() *IssueDetailsAllOf

NewIssueDetailsAllOf instantiates a new IssueDetailsAllOf 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 NewIssueDetailsAllOfWithDefaults ¶

func NewIssueDetailsAllOfWithDefaults() *IssueDetailsAllOf

NewIssueDetailsAllOfWithDefaults instantiates a new IssueDetailsAllOf 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 (*IssueDetailsAllOf) GetResourceId ¶

func (o *IssueDetailsAllOf) GetResourceId() string

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*IssueDetailsAllOf) GetResourceIdOk ¶

func (o *IssueDetailsAllOf) GetResourceIdOk() (*string, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IssueDetailsAllOf) GetResourceType ¶

func (o *IssueDetailsAllOf) GetResourceType() string

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*IssueDetailsAllOf) GetResourceTypeOk ¶

func (o *IssueDetailsAllOf) GetResourceTypeOk() (*string, bool)

GetResourceTypeOk returns a tuple with the ResourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IssueDetailsAllOf) GetSeverity ¶

func (o *IssueDetailsAllOf) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*IssueDetailsAllOf) GetSeverityOk ¶

func (o *IssueDetailsAllOf) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IssueDetailsAllOf) GetType ¶

func (o *IssueDetailsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*IssueDetailsAllOf) GetTypeOk ¶

func (o *IssueDetailsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*IssueDetailsAllOf) HasResourceId ¶

func (o *IssueDetailsAllOf) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*IssueDetailsAllOf) HasResourceType ¶

func (o *IssueDetailsAllOf) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (*IssueDetailsAllOf) HasSeverity ¶

func (o *IssueDetailsAllOf) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*IssueDetailsAllOf) HasType ¶

func (o *IssueDetailsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (IssueDetailsAllOf) MarshalJSON ¶

func (o IssueDetailsAllOf) MarshalJSON() ([]byte, error)

func (*IssueDetailsAllOf) SetResourceId ¶

func (o *IssueDetailsAllOf) SetResourceId(v string)

SetResourceId gets a reference to the given string and assigns it to the ResourceId field.

func (*IssueDetailsAllOf) SetResourceType ¶

func (o *IssueDetailsAllOf) SetResourceType(v string)

SetResourceType gets a reference to the given string and assigns it to the ResourceType field.

func (*IssueDetailsAllOf) SetSeverity ¶

func (o *IssueDetailsAllOf) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*IssueDetailsAllOf) SetType ¶

func (o *IssueDetailsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Job ¶

type Job struct {
	Id             *string                           `json:"id,omitempty"`
	Name           *string                           `json:"name,omitempty"`
	Description    *string                           `json:"description,omitempty"`
	ProjectId      *string                           `json:"project_id,omitempty"`
	IdentityId     *string                           `json:"identity_id,omitempty"`
	Created        *time.Time                        `json:"created,omitempty"`
	Updated        *time.Time                        `json:"updated,omitempty"`
	TimeoutSeconds *int32                            `json:"timeout_seconds,omitempty"`
	MaxRetries     *int32                            `json:"max_retries,omitempty"`
	Secrets        []string                          `json:"secrets,omitempty"`
	Libraries      []ILibrary                        `json:"libraries,omitempty"`
	Options        *IOptions                         `json:"options,omitempty"`
	Schedule       *ISchedule                        `json:"schedule,omitempty"`
	Notifications  *Notifications                    `json:"notifications,omitempty"`
	Parameters     []string                          `json:"parameters,omitempty"`
	Labels         *map[string]string                `json:"labels,omitempty"`
	Metadata       map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Job struct for Job

func NewJob ¶

func NewJob() *Job

NewJob instantiates a new Job 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 NewJobWithDefaults ¶

func NewJobWithDefaults() *Job

NewJobWithDefaults instantiates a new Job 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 (*Job) GetCreated ¶

func (o *Job) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Job) GetCreatedOk ¶

func (o *Job) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetDescription ¶

func (o *Job) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Job) GetDescriptionOk ¶

func (o *Job) 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 (*Job) GetId ¶

func (o *Job) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Job) GetIdOk ¶

func (o *Job) 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 (*Job) GetIdentityId ¶

func (o *Job) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise.

func (*Job) GetIdentityIdOk ¶

func (o *Job) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetLabels ¶

func (o *Job) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Job) GetLabelsOk ¶

func (o *Job) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetLibraries ¶

func (o *Job) GetLibraries() []ILibrary

GetLibraries returns the Libraries field value if set, zero value otherwise.

func (*Job) GetLibrariesOk ¶

func (o *Job) GetLibrariesOk() ([]ILibrary, bool)

GetLibrariesOk returns a tuple with the Libraries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetMaxRetries ¶

func (o *Job) GetMaxRetries() int32

GetMaxRetries returns the MaxRetries field value if set, zero value otherwise.

func (*Job) GetMaxRetriesOk ¶

func (o *Job) GetMaxRetriesOk() (*int32, bool)

GetMaxRetriesOk returns a tuple with the MaxRetries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetMetadata ¶

func (o *Job) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Job) GetMetadataOk ¶

func (o *Job) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Job) GetName ¶

func (o *Job) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Job) GetNameOk ¶

func (o *Job) 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 (*Job) GetNotifications ¶

func (o *Job) GetNotifications() Notifications

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*Job) GetNotificationsOk ¶

func (o *Job) GetNotificationsOk() (*Notifications, bool)

GetNotificationsOk returns a tuple with the Notifications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetOptions ¶

func (o *Job) GetOptions() IOptions

GetOptions returns the Options field value if set, zero value otherwise.

func (*Job) GetOptionsOk ¶

func (o *Job) GetOptionsOk() (*IOptions, 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.

func (*Job) GetParameters ¶

func (o *Job) GetParameters() []string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*Job) GetParametersOk ¶

func (o *Job) GetParametersOk() ([]string, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetProjectId ¶

func (o *Job) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*Job) GetProjectIdOk ¶

func (o *Job) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetSchedule ¶

func (o *Job) GetSchedule() ISchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*Job) GetScheduleOk ¶

func (o *Job) GetScheduleOk() (*ISchedule, bool)

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetSecrets ¶

func (o *Job) GetSecrets() []string

GetSecrets returns the Secrets field value if set, zero value otherwise.

func (*Job) GetSecretsOk ¶

func (o *Job) GetSecretsOk() ([]string, bool)

GetSecretsOk returns a tuple with the Secrets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetTimeoutSeconds ¶

func (o *Job) GetTimeoutSeconds() int32

GetTimeoutSeconds returns the TimeoutSeconds field value if set, zero value otherwise.

func (*Job) GetTimeoutSecondsOk ¶

func (o *Job) GetTimeoutSecondsOk() (*int32, bool)

GetTimeoutSecondsOk returns a tuple with the TimeoutSeconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) GetUpdated ¶

func (o *Job) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Job) GetUpdatedOk ¶

func (o *Job) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job) HasCreated ¶

func (o *Job) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Job) HasDescription ¶

func (o *Job) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Job) HasId ¶

func (o *Job) HasId() bool

HasId returns a boolean if a field has been set.

func (*Job) HasIdentityId ¶

func (o *Job) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (*Job) HasLabels ¶

func (o *Job) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Job) HasLibraries ¶

func (o *Job) HasLibraries() bool

HasLibraries returns a boolean if a field has been set.

func (*Job) HasMaxRetries ¶

func (o *Job) HasMaxRetries() bool

HasMaxRetries returns a boolean if a field has been set.

func (*Job) HasMetadata ¶

func (o *Job) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Job) HasName ¶

func (o *Job) HasName() bool

HasName returns a boolean if a field has been set.

func (*Job) HasNotifications ¶

func (o *Job) HasNotifications() bool

HasNotifications returns a boolean if a field has been set.

func (*Job) HasOptions ¶

func (o *Job) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*Job) HasParameters ¶

func (o *Job) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*Job) HasProjectId ¶

func (o *Job) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*Job) HasSchedule ¶

func (o *Job) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*Job) HasSecrets ¶

func (o *Job) HasSecrets() bool

HasSecrets returns a boolean if a field has been set.

func (*Job) HasTimeoutSeconds ¶

func (o *Job) HasTimeoutSeconds() bool

HasTimeoutSeconds returns a boolean if a field has been set.

func (*Job) HasUpdated ¶

func (o *Job) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Job) MarshalJSON ¶

func (o Job) MarshalJSON() ([]byte, error)

func (*Job) SetCreated ¶

func (o *Job) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Job) SetDescription ¶

func (o *Job) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Job) SetId ¶

func (o *Job) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Job) SetIdentityId ¶

func (o *Job) SetIdentityId(v string)

SetIdentityId gets a reference to the given string and assigns it to the IdentityId field.

func (*Job) SetLabels ¶

func (o *Job) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Job) SetLibraries ¶

func (o *Job) SetLibraries(v []ILibrary)

SetLibraries gets a reference to the given []Library and assigns it to the Libraries field.

func (*Job) SetMaxRetries ¶

func (o *Job) SetMaxRetries(v int32)

SetMaxRetries gets a reference to the given int32 and assigns it to the MaxRetries field.

func (*Job) SetMetadata ¶

func (o *Job) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Job) SetName ¶

func (o *Job) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Job) SetNotifications ¶

func (o *Job) SetNotifications(v Notifications)

SetNotifications gets a reference to the given Notifications and assigns it to the Notifications field.

func (*Job) SetOptions ¶

func (o *Job) SetOptions(v IOptions)

SetOptions gets a reference to the given Options and assigns it to the Options field.

func (*Job) SetParameters ¶

func (o *Job) SetParameters(v []string)

SetParameters gets a reference to the given []string and assigns it to the Parameters field.

func (*Job) SetProjectId ¶

func (o *Job) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*Job) SetSchedule ¶

func (o *Job) SetSchedule(v ISchedule)

SetSchedule gets a reference to the given Schedule and assigns it to the Schedule field.

func (*Job) SetSecrets ¶

func (o *Job) SetSecrets(v []string)

SetSecrets gets a reference to the given []string and assigns it to the Secrets field.

func (*Job) SetTimeoutSeconds ¶

func (o *Job) SetTimeoutSeconds(v int32)

SetTimeoutSeconds gets a reference to the given int32 and assigns it to the TimeoutSeconds field.

func (*Job) SetUpdated ¶

func (o *Job) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Job) ToMap ¶ added in v1.10.3

func (o Job) ToMap() (map[string]interface{}, error)

type Job1 ¶ added in v1.10.3

type Job1 struct {
	Id     string    `json:"id"`
	Type   *string   `json:"type,omitempty"`
	Parent *Project1 `json:"parent,omitempty"`
}

Job1 Object Job.

func NewJob1 ¶ added in v1.10.3

func NewJob1(id string) *Job1

NewJob1 instantiates a new Job1 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 NewJob1WithDefaults ¶ added in v1.10.3

func NewJob1WithDefaults() *Job1

NewJob1WithDefaults instantiates a new Job1 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 (*Job1) GetId ¶ added in v1.10.3

func (o *Job1) GetId() string

GetId returns the Id field value

func (*Job1) GetIdOk ¶ added in v1.10.3

func (o *Job1) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Job1) GetParent ¶ added in v1.10.3

func (o *Job1) GetParent() Project1

GetParent returns the Parent field value if set, zero value otherwise.

func (*Job1) GetParentOk ¶ added in v1.10.3

func (o *Job1) GetParentOk() (*Project1, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job1) GetType ¶ added in v1.10.3

func (o *Job1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Job1) GetTypeOk ¶ added in v1.10.3

func (o *Job1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job1) HasParent ¶ added in v1.10.3

func (o *Job1) HasParent() bool

HasParent returns a boolean if a field has been set.

func (*Job1) HasType ¶ added in v1.10.3

func (o *Job1) HasType() bool

HasType returns a boolean if a field has been set.

func (Job1) MarshalJSON ¶ added in v1.10.3

func (o Job1) MarshalJSON() ([]byte, error)

func (*Job1) SetId ¶ added in v1.10.3

func (o *Job1) SetId(v string)

SetId sets field value

func (*Job1) SetParent ¶ added in v1.10.3

func (o *Job1) SetParent(v Project1)

SetParent gets a reference to the given Project1 and assigns it to the Parent field.

func (*Job1) SetType ¶ added in v1.10.3

func (o *Job1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Job1) ToMap ¶ added in v1.10.3

func (o Job1) ToMap() (map[string]interface{}, error)

func (*Job1) UnmarshalJSON ¶ added in v1.10.3

func (o *Job1) UnmarshalJSON(bytes []byte) (err error)

type Job1AllOf ¶ added in v1.10.3

type Job1AllOf struct {
	Type   *string   `json:"type,omitempty"`
	Parent *Project1 `json:"parent,omitempty"`
}

Job1AllOf struct for Job1AllOf

func NewJob1AllOf ¶ added in v1.10.3

func NewJob1AllOf() *Job1AllOf

NewJob1AllOf instantiates a new Job1AllOf 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 NewJob1AllOfWithDefaults ¶ added in v1.10.3

func NewJob1AllOfWithDefaults() *Job1AllOf

NewJob1AllOfWithDefaults instantiates a new Job1AllOf 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 (*Job1AllOf) GetParent ¶ added in v1.10.3

func (o *Job1AllOf) GetParent() Project1

GetParent returns the Parent field value if set, zero value otherwise.

func (*Job1AllOf) GetParentOk ¶ added in v1.10.3

func (o *Job1AllOf) GetParentOk() (*Project1, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job1AllOf) GetType ¶ added in v1.10.3

func (o *Job1AllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Job1AllOf) GetTypeOk ¶ added in v1.10.3

func (o *Job1AllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Job1AllOf) HasParent ¶ added in v1.10.3

func (o *Job1AllOf) HasParent() bool

HasParent returns a boolean if a field has been set.

func (*Job1AllOf) HasType ¶ added in v1.10.3

func (o *Job1AllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (Job1AllOf) MarshalJSON ¶ added in v1.10.3

func (o Job1AllOf) MarshalJSON() ([]byte, error)

func (*Job1AllOf) SetParent ¶ added in v1.10.3

func (o *Job1AllOf) SetParent(v Project1)

SetParent gets a reference to the given Project1 and assigns it to the Parent field.

func (*Job1AllOf) SetType ¶ added in v1.10.3

func (o *Job1AllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type JobAPIService ¶ added in v1.10.3

type JobAPIService service

JobAPIService JobAPI service

func (*JobAPIService) DeleteJobById ¶ added in v1.10.3

func (a *JobAPIService) DeleteJobById(ctx context.Context, jobId string) ApiDeleteJobByIdRequest

DeleteJobById Delete a job by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@return ApiDeleteJobByIdRequest

func (*JobAPIService) DeleteJobByIdExecute ¶ added in v1.10.3

func (a *JobAPIService) DeleteJobByIdExecute(r ApiDeleteJobByIdRequest) (*http.Response, error)

Execute executes the request

func (*JobAPIService) FindJobByJobId ¶ added in v1.10.3

func (a *JobAPIService) FindJobByJobId(ctx context.Context, jobId string) ApiFindJobByJobIdRequest

FindJobByJobId Find job by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@return ApiFindJobByJobIdRequest

func (*JobAPIService) FindJobByJobIdExecute ¶ added in v1.10.3

func (a *JobAPIService) FindJobByJobIdExecute(r ApiFindJobByJobIdRequest) (*Job, *http.Response, error)

Execute executes the request

@return Job

func (*JobAPIService) FindJobs ¶ added in v1.10.3

FindJobs Retrieve all jobs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindJobsRequest

func (*JobAPIService) FindJobsExecute ¶ added in v1.10.3

func (a *JobAPIService) FindJobsExecute(r ApiFindJobsRequest) ([]Job, *http.Response, error)

Execute executes the request

@return []Job

func (*JobAPIService) GetMetricsForJob ¶ added in v1.10.3

func (a *JobAPIService) GetMetricsForJob(ctx context.Context, jobId string) ApiGetMetricsForJobRequest

GetMetricsForJob Find the metrics for a job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@return ApiGetMetricsForJobRequest

func (*JobAPIService) GetMetricsForJobExecute ¶ added in v1.10.3

func (a *JobAPIService) GetMetricsForJobExecute(r ApiGetMetricsForJobRequest) ([]Metric, *http.Response, error)

Execute executes the request

@return []Metric

func (*JobAPIService) GetStatsByJobId ¶ added in v1.10.3

func (a *JobAPIService) GetStatsByJobId(ctx context.Context, jobId string) ApiGetStatsByJobIdRequest

GetStatsByJobId Find the stats for a job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@return ApiGetStatsByJobIdRequest

func (*JobAPIService) GetStatsByJobIdExecute ¶ added in v1.10.3

func (a *JobAPIService) GetStatsByJobIdExecute(r ApiGetStatsByJobIdRequest) (*RunStats, *http.Response, error)

Execute executes the request

@return RunStats

func (*JobAPIService) UpdateJob ¶ added in v1.10.3

func (a *JobAPIService) UpdateJob(ctx context.Context, jobId string) ApiUpdateJobRequest

UpdateJob Update a job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@return ApiUpdateJobRequest

func (*JobAPIService) UpdateJobExecute ¶ added in v1.10.3

func (a *JobAPIService) UpdateJobExecute(r ApiUpdateJobRequest) (*Job, *http.Response, error)

Execute executes the request

@return Job

type JobActivity ¶ added in v1.10.3

type JobActivity struct {
	Data          map[string]interface{} `json:"data,omitempty"`
	Id            *string                `json:"id,omitempty"`
	Time          *time.Time             `json:"time,omitempty"`
	ReactionCount []Reaction             `json:"reaction_count,omitempty"`
	Type          *string                `json:"type,omitempty"`
	Actor         User1                  `json:"actor"`
	Target        Job1                   `json:"target"`
	Verb          string                 `json:"verb"`
}

JobActivity Object JobActivity.

func NewJobActivity ¶ added in v1.10.3

func NewJobActivity(actor User1, target Job1, verb string) *JobActivity

NewJobActivity instantiates a new JobActivity 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 NewJobActivityWithDefaults ¶ added in v1.10.3

func NewJobActivityWithDefaults() *JobActivity

NewJobActivityWithDefaults instantiates a new JobActivity 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 (*JobActivity) GetActor ¶ added in v1.10.3

func (o *JobActivity) GetActor() User1

GetActor returns the Actor field value

func (*JobActivity) GetActorOk ¶ added in v1.10.3

func (o *JobActivity) GetActorOk() (*User1, bool)

GetActorOk returns a tuple with the Actor field value and a boolean to check if the value has been set.

func (*JobActivity) GetData ¶ added in v1.10.3

func (o *JobActivity) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*JobActivity) GetDataOk ¶ added in v1.10.3

func (o *JobActivity) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobActivity) GetId ¶ added in v1.10.3

func (o *JobActivity) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*JobActivity) GetIdOk ¶ added in v1.10.3

func (o *JobActivity) 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 (*JobActivity) GetReactionCount ¶ added in v1.10.3

func (o *JobActivity) GetReactionCount() []Reaction

GetReactionCount returns the ReactionCount field value if set, zero value otherwise.

func (*JobActivity) GetReactionCountOk ¶ added in v1.10.3

func (o *JobActivity) GetReactionCountOk() ([]Reaction, bool)

GetReactionCountOk returns a tuple with the ReactionCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobActivity) GetTarget ¶ added in v1.10.3

func (o *JobActivity) GetTarget() Job1

GetTarget returns the Target field value

func (*JobActivity) GetTargetOk ¶ added in v1.10.3

func (o *JobActivity) GetTargetOk() (*Job1, bool)

GetTargetOk returns a tuple with the Target field value and a boolean to check if the value has been set.

func (*JobActivity) GetTime ¶ added in v1.10.3

func (o *JobActivity) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*JobActivity) GetTimeOk ¶ added in v1.10.3

func (o *JobActivity) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobActivity) GetType ¶ added in v1.10.3

func (o *JobActivity) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JobActivity) GetTypeOk ¶ added in v1.10.3

func (o *JobActivity) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobActivity) GetVerb ¶ added in v1.10.3

func (o *JobActivity) GetVerb() string

GetVerb returns the Verb field value

func (*JobActivity) GetVerbOk ¶ added in v1.10.3

func (o *JobActivity) GetVerbOk() (*string, bool)

GetVerbOk returns a tuple with the Verb field value and a boolean to check if the value has been set.

func (*JobActivity) HasData ¶ added in v1.10.3

func (o *JobActivity) HasData() bool

HasData returns a boolean if a field has been set.

func (*JobActivity) HasId ¶ added in v1.10.3

func (o *JobActivity) HasId() bool

HasId returns a boolean if a field has been set.

func (*JobActivity) HasReactionCount ¶ added in v1.10.3

func (o *JobActivity) HasReactionCount() bool

HasReactionCount returns a boolean if a field has been set.

func (*JobActivity) HasTime ¶ added in v1.10.3

func (o *JobActivity) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*JobActivity) HasType ¶ added in v1.10.3

func (o *JobActivity) HasType() bool

HasType returns a boolean if a field has been set.

func (JobActivity) MarshalJSON ¶ added in v1.10.3

func (o JobActivity) MarshalJSON() ([]byte, error)

func (*JobActivity) SetActor ¶ added in v1.10.3

func (o *JobActivity) SetActor(v User1)

SetActor sets field value

func (*JobActivity) SetData ¶ added in v1.10.3

func (o *JobActivity) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*JobActivity) SetId ¶ added in v1.10.3

func (o *JobActivity) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*JobActivity) SetReactionCount ¶ added in v1.10.3

func (o *JobActivity) SetReactionCount(v []Reaction)

SetReactionCount gets a reference to the given []Reaction and assigns it to the ReactionCount field.

func (*JobActivity) SetTarget ¶ added in v1.10.3

func (o *JobActivity) SetTarget(v Job1)

SetTarget sets field value

func (*JobActivity) SetTime ¶ added in v1.10.3

func (o *JobActivity) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*JobActivity) SetType ¶ added in v1.10.3

func (o *JobActivity) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*JobActivity) SetVerb ¶ added in v1.10.3

func (o *JobActivity) SetVerb(v string)

SetVerb sets field value

func (JobActivity) ToMap ¶ added in v1.10.3

func (o JobActivity) ToMap() (map[string]interface{}, error)

func (*JobActivity) UnmarshalJSON ¶ added in v1.10.3

func (o *JobActivity) UnmarshalJSON(bytes []byte) (err error)

type JobActivityAllOf ¶ added in v1.10.3

type JobActivityAllOf struct {
	Type   *string `json:"type,omitempty"`
	Actor  User1   `json:"actor"`
	Target Job1    `json:"target"`
	Verb   string  `json:"verb"`
}

JobActivityAllOf struct for JobActivityAllOf

func NewJobActivityAllOf ¶ added in v1.10.3

func NewJobActivityAllOf(actor User1, target Job1, verb string) *JobActivityAllOf

NewJobActivityAllOf instantiates a new JobActivityAllOf 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 NewJobActivityAllOfWithDefaults ¶ added in v1.10.3

func NewJobActivityAllOfWithDefaults() *JobActivityAllOf

NewJobActivityAllOfWithDefaults instantiates a new JobActivityAllOf 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 (*JobActivityAllOf) GetActor ¶ added in v1.10.3

func (o *JobActivityAllOf) GetActor() User1

GetActor returns the Actor field value

func (*JobActivityAllOf) GetActorOk ¶ added in v1.10.3

func (o *JobActivityAllOf) GetActorOk() (*User1, bool)

GetActorOk returns a tuple with the Actor field value and a boolean to check if the value has been set.

func (*JobActivityAllOf) GetTarget ¶ added in v1.10.3

func (o *JobActivityAllOf) GetTarget() Job1

GetTarget returns the Target field value

func (*JobActivityAllOf) GetTargetOk ¶ added in v1.10.3

func (o *JobActivityAllOf) GetTargetOk() (*Job1, bool)

GetTargetOk returns a tuple with the Target field value and a boolean to check if the value has been set.

func (*JobActivityAllOf) GetType ¶ added in v1.10.3

func (o *JobActivityAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JobActivityAllOf) GetTypeOk ¶ added in v1.10.3

func (o *JobActivityAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobActivityAllOf) GetVerb ¶ added in v1.10.3

func (o *JobActivityAllOf) GetVerb() string

GetVerb returns the Verb field value

func (*JobActivityAllOf) GetVerbOk ¶ added in v1.10.3

func (o *JobActivityAllOf) GetVerbOk() (*string, bool)

GetVerbOk returns a tuple with the Verb field value and a boolean to check if the value has been set.

func (*JobActivityAllOf) HasType ¶ added in v1.10.3

func (o *JobActivityAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (JobActivityAllOf) MarshalJSON ¶ added in v1.10.3

func (o JobActivityAllOf) MarshalJSON() ([]byte, error)

func (*JobActivityAllOf) SetActor ¶ added in v1.10.3

func (o *JobActivityAllOf) SetActor(v User1)

SetActor sets field value

func (*JobActivityAllOf) SetTarget ¶ added in v1.10.3

func (o *JobActivityAllOf) SetTarget(v Job1)

SetTarget sets field value

func (*JobActivityAllOf) SetType ¶ added in v1.10.3

func (o *JobActivityAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*JobActivityAllOf) SetVerb ¶ added in v1.10.3

func (o *JobActivityAllOf) SetVerb(v string)

SetVerb sets field value

type JobRun ¶

type JobRun struct {
	Id               *string                           `json:"id,omitempty"`
	Initiator        *string                           `json:"initiator,omitempty"`
	InfrastructureId *string                           `json:"infrastructure_id,omitempty"`
	DeviceId         *string                           `json:"device_id,omitempty"`
	JobId            *string                           `json:"job_id,omitempty"`
	ProjectId        *string                           `json:"project_id,omitempty"`
	Name             *string                           `json:"name,omitempty"`
	Description      *string                           `json:"description,omitempty"`
	Status           *string                           `json:"status,omitempty"`
	Created          *time.Time                        `json:"created,omitempty"`
	Updated          *time.Time                        `json:"updated,omitempty"`
	Parameters       []string                          `json:"parameters,omitempty"`
	Metadata         map[string]map[string]interface{} `json:"metadata,omitempty"`
}

JobRun struct for JobRun

func NewJobRun ¶

func NewJobRun() *JobRun

NewJobRun instantiates a new JobRun 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 NewJobRunWithDefaults ¶

func NewJobRunWithDefaults() *JobRun

NewJobRunWithDefaults instantiates a new JobRun 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 (*JobRun) GetCreated ¶

func (o *JobRun) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*JobRun) GetCreatedOk ¶

func (o *JobRun) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobRun) GetDescription ¶

func (o *JobRun) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*JobRun) GetDescriptionOk ¶

func (o *JobRun) 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 (*JobRun) GetDeviceId ¶ added in v1.10.3

func (o *JobRun) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*JobRun) GetDeviceIdOk ¶ added in v1.10.3

func (o *JobRun) GetDeviceIdOk() (*string, bool)

GetDeviceIdOk returns a tuple with the DeviceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobRun) GetId ¶

func (o *JobRun) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*JobRun) GetIdOk ¶

func (o *JobRun) 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 (*JobRun) GetInfrastructureId ¶

func (o *JobRun) GetInfrastructureId() string

GetInfrastructureId returns the InfrastructureId field value if set, zero value otherwise.

func (*JobRun) GetInfrastructureIdOk ¶

func (o *JobRun) GetInfrastructureIdOk() (*string, bool)

GetInfrastructureIdOk returns a tuple with the InfrastructureId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobRun) GetInitiator ¶

func (o *JobRun) GetInitiator() string

GetInitiator returns the Initiator field value if set, zero value otherwise.

func (*JobRun) GetInitiatorOk ¶

func (o *JobRun) GetInitiatorOk() (*string, bool)

GetInitiatorOk returns a tuple with the Initiator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobRun) GetJobId ¶

func (o *JobRun) GetJobId() string

GetJobId returns the JobId field value if set, zero value otherwise.

func (*JobRun) GetJobIdOk ¶

func (o *JobRun) GetJobIdOk() (*string, bool)

GetJobIdOk returns a tuple with the JobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobRun) GetMetadata ¶

func (o *JobRun) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*JobRun) GetMetadataOk ¶

func (o *JobRun) GetMetadataOk() (map[string]map[string]interface{}, 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 (*JobRun) GetName ¶

func (o *JobRun) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*JobRun) GetNameOk ¶

func (o *JobRun) 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 (*JobRun) GetParameters ¶

func (o *JobRun) GetParameters() []string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*JobRun) GetParametersOk ¶

func (o *JobRun) GetParametersOk() ([]string, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobRun) GetProjectId ¶

func (o *JobRun) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*JobRun) GetProjectIdOk ¶

func (o *JobRun) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobRun) GetStatus ¶

func (o *JobRun) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*JobRun) GetStatusOk ¶

func (o *JobRun) GetStatusOk() (*string, 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 (*JobRun) GetUpdated ¶

func (o *JobRun) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*JobRun) GetUpdatedOk ¶

func (o *JobRun) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobRun) HasCreated ¶

func (o *JobRun) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*JobRun) HasDescription ¶

func (o *JobRun) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*JobRun) HasDeviceId ¶ added in v1.10.3

func (o *JobRun) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*JobRun) HasId ¶

func (o *JobRun) HasId() bool

HasId returns a boolean if a field has been set.

func (*JobRun) HasInfrastructureId ¶

func (o *JobRun) HasInfrastructureId() bool

HasInfrastructureId returns a boolean if a field has been set.

func (*JobRun) HasInitiator ¶

func (o *JobRun) HasInitiator() bool

HasInitiator returns a boolean if a field has been set.

func (*JobRun) HasJobId ¶

func (o *JobRun) HasJobId() bool

HasJobId returns a boolean if a field has been set.

func (*JobRun) HasMetadata ¶

func (o *JobRun) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*JobRun) HasName ¶

func (o *JobRun) HasName() bool

HasName returns a boolean if a field has been set.

func (*JobRun) HasParameters ¶

func (o *JobRun) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*JobRun) HasProjectId ¶

func (o *JobRun) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*JobRun) HasStatus ¶

func (o *JobRun) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*JobRun) HasUpdated ¶

func (o *JobRun) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (JobRun) MarshalJSON ¶

func (o JobRun) MarshalJSON() ([]byte, error)

func (*JobRun) SetCreated ¶

func (o *JobRun) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*JobRun) SetDescription ¶

func (o *JobRun) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*JobRun) SetDeviceId ¶ added in v1.10.3

func (o *JobRun) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*JobRun) SetId ¶

func (o *JobRun) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*JobRun) SetInfrastructureId ¶

func (o *JobRun) SetInfrastructureId(v string)

SetInfrastructureId gets a reference to the given string and assigns it to the InfrastructureId field.

func (*JobRun) SetInitiator ¶

func (o *JobRun) SetInitiator(v string)

SetInitiator gets a reference to the given string and assigns it to the Initiator field.

func (*JobRun) SetJobId ¶

func (o *JobRun) SetJobId(v string)

SetJobId gets a reference to the given string and assigns it to the JobId field.

func (*JobRun) SetMetadata ¶

func (o *JobRun) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*JobRun) SetName ¶

func (o *JobRun) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*JobRun) SetParameters ¶

func (o *JobRun) SetParameters(v []string)

SetParameters gets a reference to the given []string and assigns it to the Parameters field.

func (*JobRun) SetProjectId ¶

func (o *JobRun) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*JobRun) SetStatus ¶

func (o *JobRun) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*JobRun) SetUpdated ¶

func (o *JobRun) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (JobRun) ToMap ¶ added in v1.10.3

func (o JobRun) ToMap() (map[string]interface{}, error)

type JobTask ¶

type JobTask struct {
	Task
	Type *string `json:"type,omitempty"`
	Ref  *string `json:"ref,omitempty"`
}

JobTask struct for JobTask

func NewJobTask ¶

func NewJobTask() *JobTask

NewJobTask instantiates a new JobTask 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 NewJobTaskWithDefaults ¶

func NewJobTaskWithDefaults() *JobTask

NewJobTaskWithDefaults instantiates a new JobTask 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 (*JobTask) GetRef ¶

func (o *JobTask) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*JobTask) GetRefOk ¶

func (o *JobTask) GetRefOk() (*string, bool)

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobTask) GetType ¶

func (o *JobTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JobTask) GetTypeOk ¶

func (o *JobTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobTask) HasRef ¶

func (o *JobTask) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*JobTask) HasType ¶

func (o *JobTask) HasType() bool

HasType returns a boolean if a field has been set.

func (JobTask) MarshalJSON ¶

func (o JobTask) MarshalJSON() ([]byte, error)

func (*JobTask) SetRef ¶

func (o *JobTask) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*JobTask) SetType ¶

func (o *JobTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (JobTask) ToMap ¶ added in v1.10.3

func (o JobTask) ToMap() (map[string]interface{}, error)

type JobTaskAllOf ¶

type JobTaskAllOf struct {
	Type *string `json:"type,omitempty"`
	Ref  *string `json:"ref,omitempty"`
}

JobTaskAllOf struct for JobTaskAllOf

func NewJobTaskAllOf ¶

func NewJobTaskAllOf() *JobTaskAllOf

NewJobTaskAllOf instantiates a new JobTaskAllOf 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 NewJobTaskAllOfWithDefaults ¶

func NewJobTaskAllOfWithDefaults() *JobTaskAllOf

NewJobTaskAllOfWithDefaults instantiates a new JobTaskAllOf 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 (*JobTaskAllOf) GetRef ¶

func (o *JobTaskAllOf) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*JobTaskAllOf) GetRefOk ¶

func (o *JobTaskAllOf) GetRefOk() (*string, bool)

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobTaskAllOf) GetType ¶

func (o *JobTaskAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JobTaskAllOf) GetTypeOk ¶

func (o *JobTaskAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JobTaskAllOf) HasRef ¶

func (o *JobTaskAllOf) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*JobTaskAllOf) HasType ¶

func (o *JobTaskAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (JobTaskAllOf) MarshalJSON ¶

func (o JobTaskAllOf) MarshalJSON() ([]byte, error)

func (*JobTaskAllOf) SetRef ¶

func (o *JobTaskAllOf) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*JobTaskAllOf) SetType ¶

func (o *JobTaskAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type JoblibReader ¶ added in v1.10.3

type JoblibReader struct {
	// Name of the path.
	Path string `json:"path"`
	// Define file type for Joblib.
	Type *string `json:"type,omitempty"`
}

JoblibReader struct for JoblibReader

func NewJoblibReader ¶ added in v1.10.3

func NewJoblibReader(path string) *JoblibReader

NewJoblibReader instantiates a new JoblibReader 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 NewJoblibReaderWithDefaults ¶ added in v1.10.3

func NewJoblibReaderWithDefaults() *JoblibReader

NewJoblibReaderWithDefaults instantiates a new JoblibReader 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 (*JoblibReader) GetPath ¶ added in v1.10.3

func (o *JoblibReader) GetPath() string

GetPath returns the Path field value

func (*JoblibReader) GetPathOk ¶ added in v1.10.3

func (o *JoblibReader) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*JoblibReader) GetType ¶ added in v1.10.3

func (o *JoblibReader) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JoblibReader) GetTypeOk ¶ added in v1.10.3

func (o *JoblibReader) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JoblibReader) HasType ¶ added in v1.10.3

func (o *JoblibReader) HasType() bool

HasType returns a boolean if a field has been set.

func (JoblibReader) MarshalJSON ¶ added in v1.10.3

func (o JoblibReader) MarshalJSON() ([]byte, error)

func (*JoblibReader) SetPath ¶ added in v1.10.3

func (o *JoblibReader) SetPath(v string)

SetPath sets field value

func (*JoblibReader) SetType ¶ added in v1.10.3

func (o *JoblibReader) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (JoblibReader) ToMap ¶ added in v1.10.3

func (o JoblibReader) ToMap() (map[string]interface{}, error)

func (*JoblibReader) UnmarshalJSON ¶ added in v1.10.3

func (o *JoblibReader) UnmarshalJSON(bytes []byte) (err error)

type JoblibWriter ¶ added in v1.10.3

type JoblibWriter struct {
	// Name of the path.
	Path string `json:"path"`
	// Define file type for Joblib.
	Type *string `json:"type,omitempty"`
}

JoblibWriter struct for JoblibWriter

func NewJoblibWriter ¶ added in v1.10.3

func NewJoblibWriter(path string) *JoblibWriter

NewJoblibWriter instantiates a new JoblibWriter 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 NewJoblibWriterWithDefaults ¶ added in v1.10.3

func NewJoblibWriterWithDefaults() *JoblibWriter

NewJoblibWriterWithDefaults instantiates a new JoblibWriter 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 (*JoblibWriter) GetPath ¶ added in v1.10.3

func (o *JoblibWriter) GetPath() string

GetPath returns the Path field value

func (*JoblibWriter) GetPathOk ¶ added in v1.10.3

func (o *JoblibWriter) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*JoblibWriter) GetType ¶ added in v1.10.3

func (o *JoblibWriter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JoblibWriter) GetTypeOk ¶ added in v1.10.3

func (o *JoblibWriter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JoblibWriter) HasType ¶ added in v1.10.3

func (o *JoblibWriter) HasType() bool

HasType returns a boolean if a field has been set.

func (JoblibWriter) MarshalJSON ¶ added in v1.10.3

func (o JoblibWriter) MarshalJSON() ([]byte, error)

func (*JoblibWriter) SetPath ¶ added in v1.10.3

func (o *JoblibWriter) SetPath(v string)

SetPath sets field value

func (*JoblibWriter) SetType ¶ added in v1.10.3

func (o *JoblibWriter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (JoblibWriter) ToMap ¶ added in v1.10.3

func (o JoblibWriter) ToMap() (map[string]interface{}, error)

func (*JoblibWriter) UnmarshalJSON ¶ added in v1.10.3

func (o *JoblibWriter) UnmarshalJSON(bytes []byte) (err error)

type JoinParams ¶ added in v1.10.3

type JoinParams struct {
	// List of dictionaries where the 'left' key represents the         name of the column in the left DataFrame and the 'right' key represents         the name of the column to join with the right DataFrame.
	Columns []map[string]string `json:"columns"`
	// Join two tables (left, right, inner, outer)
	JoinType string `json:"join_type"`
}

JoinParams struct for JoinParams

func NewJoinParams ¶ added in v1.10.3

func NewJoinParams(columns []map[string]string, joinType string) *JoinParams

NewJoinParams instantiates a new JoinParams 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 NewJoinParamsWithDefaults ¶ added in v1.10.3

func NewJoinParamsWithDefaults() *JoinParams

NewJoinParamsWithDefaults instantiates a new JoinParams 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 (*JoinParams) GetColumns ¶ added in v1.10.3

func (o *JoinParams) GetColumns() []map[string]string

GetColumns returns the Columns field value

func (*JoinParams) GetColumnsOk ¶ added in v1.10.3

func (o *JoinParams) GetColumnsOk() ([]map[string]string, bool)

GetColumnsOk returns a tuple with the Columns field value and a boolean to check if the value has been set.

func (*JoinParams) GetJoinType ¶ added in v1.10.3

func (o *JoinParams) GetJoinType() string

GetJoinType returns the JoinType field value

func (*JoinParams) GetJoinTypeOk ¶ added in v1.10.3

func (o *JoinParams) GetJoinTypeOk() (*string, bool)

GetJoinTypeOk returns a tuple with the JoinType field value and a boolean to check if the value has been set.

func (JoinParams) MarshalJSON ¶ added in v1.10.3

func (o JoinParams) MarshalJSON() ([]byte, error)

func (*JoinParams) SetColumns ¶ added in v1.10.3

func (o *JoinParams) SetColumns(v []map[string]string)

SetColumns sets field value

func (*JoinParams) SetJoinType ¶ added in v1.10.3

func (o *JoinParams) SetJoinType(v string)

SetJoinType sets field value

func (JoinParams) ToMap ¶ added in v1.10.3

func (o JoinParams) ToMap() (map[string]interface{}, error)

func (*JoinParams) UnmarshalJSON ¶ added in v1.10.3

func (o *JoinParams) UnmarshalJSON(bytes []byte) (err error)

type JoinTask ¶ added in v1.10.3

type JoinTask struct {
	// Identifier of the task.
	Id     string     `json:"id"`
	Params JoinParams `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the join task.
	Type *string `json:"type,omitempty"`
}

JoinTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewJoinTask ¶ added in v1.10.3

func NewJoinTask(id string, params JoinParams, dependency []string) *JoinTask

NewJoinTask instantiates a new JoinTask 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 NewJoinTaskWithDefaults ¶ added in v1.10.3

func NewJoinTaskWithDefaults() *JoinTask

NewJoinTaskWithDefaults instantiates a new JoinTask 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 (*JoinTask) GetDependency ¶ added in v1.10.3

func (o *JoinTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*JoinTask) GetDependencyOk ¶ added in v1.10.3

func (o *JoinTask) GetDependencyOk() ([]string, bool)

GetDependencyOk returns a tuple with the Dependency field value and a boolean to check if the value has been set.

func (*JoinTask) GetId ¶ added in v1.10.3

func (o *JoinTask) GetId() string

GetId returns the Id field value

func (*JoinTask) GetIdOk ¶ added in v1.10.3

func (o *JoinTask) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*JoinTask) GetParams ¶ added in v1.10.3

func (o *JoinTask) GetParams() JoinParams

GetParams returns the Params field value

func (*JoinTask) GetParamsOk ¶ added in v1.10.3

func (o *JoinTask) GetParamsOk() (*JoinParams, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (*JoinTask) GetType ¶ added in v1.10.3

func (o *JoinTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*JoinTask) GetTypeOk ¶ added in v1.10.3

func (o *JoinTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JoinTask) HasType ¶ added in v1.10.3

func (o *JoinTask) HasType() bool

HasType returns a boolean if a field has been set.

func (JoinTask) MarshalJSON ¶ added in v1.10.3

func (o JoinTask) MarshalJSON() ([]byte, error)

func (*JoinTask) SetDependency ¶ added in v1.10.3

func (o *JoinTask) SetDependency(v []string)

SetDependency sets field value

func (*JoinTask) SetId ¶ added in v1.10.3

func (o *JoinTask) SetId(v string)

SetId sets field value

func (*JoinTask) SetParams ¶ added in v1.10.3

func (o *JoinTask) SetParams(v JoinParams)

SetParams sets field value

func (*JoinTask) SetType ¶ added in v1.10.3

func (o *JoinTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (JoinTask) ToMap ¶ added in v1.10.3

func (o JoinTask) ToMap() (map[string]interface{}, error)

func (*JoinTask) UnmarshalJSON ¶ added in v1.10.3

func (o *JoinTask) UnmarshalJSON(bytes []byte) (err error)

type KnimeOptions ¶

type KnimeOptions struct {
	Options
	Type        *string  `json:"type,omitempty"`
	Workflow    *string  `json:"workflow,omitempty"`
	Archive     *Library `json:"archive,omitempty"`
	Preferences []string `json:"preferences,omitempty"`
}

KnimeOptions struct for KnimeOptions

func NewKnimeOptions ¶

func NewKnimeOptions() *KnimeOptions

NewKnimeOptions instantiates a new KnimeOptions 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 NewKnimeOptionsWithDefaults ¶

func NewKnimeOptionsWithDefaults() *KnimeOptions

NewKnimeOptionsWithDefaults instantiates a new KnimeOptions 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 (*KnimeOptions) GetArchive ¶

func (o *KnimeOptions) GetArchive() Library

GetArchive returns the Archive field value if set, zero value otherwise.

func (*KnimeOptions) GetArchiveOk ¶

func (o *KnimeOptions) GetArchiveOk() (*Library, bool)

GetArchiveOk returns a tuple with the Archive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KnimeOptions) GetPreferences ¶

func (o *KnimeOptions) GetPreferences() []string

GetPreferences returns the Preferences field value if set, zero value otherwise.

func (*KnimeOptions) GetPreferencesOk ¶

func (o *KnimeOptions) GetPreferencesOk() ([]string, bool)

GetPreferencesOk returns a tuple with the Preferences field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KnimeOptions) GetType ¶

func (o *KnimeOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*KnimeOptions) GetTypeOk ¶

func (o *KnimeOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KnimeOptions) GetWorkflow ¶

func (o *KnimeOptions) GetWorkflow() string

GetWorkflow returns the Workflow field value if set, zero value otherwise.

func (*KnimeOptions) GetWorkflowOk ¶

func (o *KnimeOptions) GetWorkflowOk() (*string, bool)

GetWorkflowOk returns a tuple with the Workflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KnimeOptions) HasArchive ¶

func (o *KnimeOptions) HasArchive() bool

HasArchive returns a boolean if a field has been set.

func (*KnimeOptions) HasPreferences ¶

func (o *KnimeOptions) HasPreferences() bool

HasPreferences returns a boolean if a field has been set.

func (*KnimeOptions) HasType ¶

func (o *KnimeOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (*KnimeOptions) HasWorkflow ¶

func (o *KnimeOptions) HasWorkflow() bool

HasWorkflow returns a boolean if a field has been set.

func (KnimeOptions) MarshalJSON ¶

func (o KnimeOptions) MarshalJSON() ([]byte, error)

func (*KnimeOptions) SetArchive ¶

func (o *KnimeOptions) SetArchive(v Library)

SetArchive gets a reference to the given Library and assigns it to the Archive field.

func (*KnimeOptions) SetPreferences ¶

func (o *KnimeOptions) SetPreferences(v []string)

SetPreferences gets a reference to the given []string and assigns it to the Preferences field.

func (*KnimeOptions) SetType ¶

func (o *KnimeOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*KnimeOptions) SetWorkflow ¶

func (o *KnimeOptions) SetWorkflow(v string)

SetWorkflow gets a reference to the given string and assigns it to the Workflow field.

func (KnimeOptions) ToMap ¶ added in v1.10.3

func (o KnimeOptions) ToMap() (map[string]interface{}, error)

type KnimeOptionsAllOf ¶

type KnimeOptionsAllOf struct {
	Type        *string   `json:"type,omitempty"`
	Workflow    *string   `json:"workflow,omitempty"`
	Archive     *Library  `json:"archive,omitempty"`
	Preferences *[]string `json:"preferences,omitempty"`
}

KnimeOptionsAllOf struct for KnimeOptionsAllOf

func NewKnimeOptionsAllOf ¶

func NewKnimeOptionsAllOf() *KnimeOptionsAllOf

NewKnimeOptionsAllOf instantiates a new KnimeOptionsAllOf 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 NewKnimeOptionsAllOfWithDefaults ¶

func NewKnimeOptionsAllOfWithDefaults() *KnimeOptionsAllOf

NewKnimeOptionsAllOfWithDefaults instantiates a new KnimeOptionsAllOf 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 (*KnimeOptionsAllOf) GetArchive ¶

func (o *KnimeOptionsAllOf) GetArchive() Library

GetArchive returns the Archive field value if set, zero value otherwise.

func (*KnimeOptionsAllOf) GetArchiveOk ¶

func (o *KnimeOptionsAllOf) GetArchiveOk() (*Library, bool)

GetArchiveOk returns a tuple with the Archive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KnimeOptionsAllOf) GetPreferences ¶

func (o *KnimeOptionsAllOf) GetPreferences() []string

GetPreferences returns the Preferences field value if set, zero value otherwise.

func (*KnimeOptionsAllOf) GetPreferencesOk ¶

func (o *KnimeOptionsAllOf) GetPreferencesOk() (*[]string, bool)

GetPreferencesOk returns a tuple with the Preferences field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KnimeOptionsAllOf) GetType ¶

func (o *KnimeOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*KnimeOptionsAllOf) GetTypeOk ¶

func (o *KnimeOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KnimeOptionsAllOf) GetWorkflow ¶

func (o *KnimeOptionsAllOf) GetWorkflow() string

GetWorkflow returns the Workflow field value if set, zero value otherwise.

func (*KnimeOptionsAllOf) GetWorkflowOk ¶

func (o *KnimeOptionsAllOf) GetWorkflowOk() (*string, bool)

GetWorkflowOk returns a tuple with the Workflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KnimeOptionsAllOf) HasArchive ¶

func (o *KnimeOptionsAllOf) HasArchive() bool

HasArchive returns a boolean if a field has been set.

func (*KnimeOptionsAllOf) HasPreferences ¶

func (o *KnimeOptionsAllOf) HasPreferences() bool

HasPreferences returns a boolean if a field has been set.

func (*KnimeOptionsAllOf) HasType ¶

func (o *KnimeOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*KnimeOptionsAllOf) HasWorkflow ¶

func (o *KnimeOptionsAllOf) HasWorkflow() bool

HasWorkflow returns a boolean if a field has been set.

func (KnimeOptionsAllOf) MarshalJSON ¶

func (o KnimeOptionsAllOf) MarshalJSON() ([]byte, error)

func (*KnimeOptionsAllOf) SetArchive ¶

func (o *KnimeOptionsAllOf) SetArchive(v Library)

SetArchive gets a reference to the given Library and assigns it to the Archive field.

func (*KnimeOptionsAllOf) SetPreferences ¶

func (o *KnimeOptionsAllOf) SetPreferences(v []string)

SetPreferences gets a reference to the given []string and assigns it to the Preferences field.

func (*KnimeOptionsAllOf) SetType ¶

func (o *KnimeOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*KnimeOptionsAllOf) SetWorkflow ¶

func (o *KnimeOptionsAllOf) SetWorkflow(v string)

SetWorkflow gets a reference to the given string and assigns it to the Workflow field.

type KubernetesTarget ¶

type KubernetesTarget struct {
	Target
	Type       *string `json:"type,omitempty"`
	Subtype    *string `json:"subtype,omitempty"`
	Mode       *string `json:"mode,omitempty"`
	Context    *string `json:"context,omitempty"`
	Kubeconfig *string `json:"kubeconfig,omitempty"`
}

KubernetesTarget struct for KubernetesTarget

func NewKubernetesTarget ¶

func NewKubernetesTarget() *KubernetesTarget

NewKubernetesTarget instantiates a new KubernetesTarget 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 NewKubernetesTargetWithDefaults ¶

func NewKubernetesTargetWithDefaults() *KubernetesTarget

NewKubernetesTargetWithDefaults instantiates a new KubernetesTarget 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 (*KubernetesTarget) GetContext ¶

func (o *KubernetesTarget) GetContext() string

GetContext returns the Context field value if set, zero value otherwise.

func (*KubernetesTarget) GetContextOk ¶

func (o *KubernetesTarget) GetContextOk() (*string, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTarget) GetKubeconfig ¶

func (o *KubernetesTarget) GetKubeconfig() string

GetKubeconfig returns the Kubeconfig field value if set, zero value otherwise.

func (*KubernetesTarget) GetKubeconfigOk ¶

func (o *KubernetesTarget) GetKubeconfigOk() (*string, bool)

GetKubeconfigOk returns a tuple with the Kubeconfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTarget) GetMode ¶

func (o *KubernetesTarget) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*KubernetesTarget) GetModeOk ¶

func (o *KubernetesTarget) GetModeOk() (*string, bool)

GetModeOk returns a tuple with the Mode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTarget) GetSubtype ¶

func (o *KubernetesTarget) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*KubernetesTarget) GetSubtypeOk ¶

func (o *KubernetesTarget) GetSubtypeOk() (*string, bool)

GetSubtypeOk returns a tuple with the Subtype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTarget) GetType ¶

func (o *KubernetesTarget) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*KubernetesTarget) GetTypeOk ¶

func (o *KubernetesTarget) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTarget) HasContext ¶

func (o *KubernetesTarget) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*KubernetesTarget) HasKubeconfig ¶

func (o *KubernetesTarget) HasKubeconfig() bool

HasKubeconfig returns a boolean if a field has been set.

func (*KubernetesTarget) HasMode ¶

func (o *KubernetesTarget) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*KubernetesTarget) HasSubtype ¶

func (o *KubernetesTarget) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*KubernetesTarget) HasType ¶

func (o *KubernetesTarget) HasType() bool

HasType returns a boolean if a field has been set.

func (KubernetesTarget) MarshalJSON ¶

func (o KubernetesTarget) MarshalJSON() ([]byte, error)

func (*KubernetesTarget) SetContext ¶

func (o *KubernetesTarget) SetContext(v string)

SetContext gets a reference to the given string and assigns it to the Context field.

func (*KubernetesTarget) SetKubeconfig ¶

func (o *KubernetesTarget) SetKubeconfig(v string)

SetKubeconfig gets a reference to the given string and assigns it to the Kubeconfig field.

func (*KubernetesTarget) SetMode ¶

func (o *KubernetesTarget) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*KubernetesTarget) SetSubtype ¶

func (o *KubernetesTarget) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*KubernetesTarget) SetType ¶

func (o *KubernetesTarget) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (KubernetesTarget) ToMap ¶ added in v1.10.3

func (o KubernetesTarget) ToMap() (map[string]interface{}, error)

type KubernetesTargetAllOf ¶

type KubernetesTargetAllOf struct {
	Type       *string `json:"type,omitempty"`
	Subtype    *string `json:"subtype,omitempty"`
	Mode       *string `json:"mode,omitempty"`
	Context    *string `json:"context,omitempty"`
	Kubeconfig *string `json:"kubeconfig,omitempty"`
}

KubernetesTargetAllOf struct for KubernetesTargetAllOf

func NewKubernetesTargetAllOf ¶

func NewKubernetesTargetAllOf() *KubernetesTargetAllOf

NewKubernetesTargetAllOf instantiates a new KubernetesTargetAllOf 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 NewKubernetesTargetAllOfWithDefaults ¶

func NewKubernetesTargetAllOfWithDefaults() *KubernetesTargetAllOf

NewKubernetesTargetAllOfWithDefaults instantiates a new KubernetesTargetAllOf 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 (*KubernetesTargetAllOf) GetContext ¶

func (o *KubernetesTargetAllOf) GetContext() string

GetContext returns the Context field value if set, zero value otherwise.

func (*KubernetesTargetAllOf) GetContextOk ¶

func (o *KubernetesTargetAllOf) GetContextOk() (*string, bool)

GetContextOk returns a tuple with the Context field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTargetAllOf) GetKubeconfig ¶

func (o *KubernetesTargetAllOf) GetKubeconfig() string

GetKubeconfig returns the Kubeconfig field value if set, zero value otherwise.

func (*KubernetesTargetAllOf) GetKubeconfigOk ¶

func (o *KubernetesTargetAllOf) GetKubeconfigOk() (*string, bool)

GetKubeconfigOk returns a tuple with the Kubeconfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTargetAllOf) GetMode ¶

func (o *KubernetesTargetAllOf) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*KubernetesTargetAllOf) GetModeOk ¶

func (o *KubernetesTargetAllOf) GetModeOk() (*string, bool)

GetModeOk returns a tuple with the Mode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTargetAllOf) GetSubtype ¶

func (o *KubernetesTargetAllOf) GetSubtype() string

GetSubtype returns the Subtype field value if set, zero value otherwise.

func (*KubernetesTargetAllOf) GetSubtypeOk ¶

func (o *KubernetesTargetAllOf) GetSubtypeOk() (*string, bool)

GetSubtypeOk returns a tuple with the Subtype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTargetAllOf) GetType ¶

func (o *KubernetesTargetAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*KubernetesTargetAllOf) GetTypeOk ¶

func (o *KubernetesTargetAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KubernetesTargetAllOf) HasContext ¶

func (o *KubernetesTargetAllOf) HasContext() bool

HasContext returns a boolean if a field has been set.

func (*KubernetesTargetAllOf) HasKubeconfig ¶

func (o *KubernetesTargetAllOf) HasKubeconfig() bool

HasKubeconfig returns a boolean if a field has been set.

func (*KubernetesTargetAllOf) HasMode ¶

func (o *KubernetesTargetAllOf) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*KubernetesTargetAllOf) HasSubtype ¶

func (o *KubernetesTargetAllOf) HasSubtype() bool

HasSubtype returns a boolean if a field has been set.

func (*KubernetesTargetAllOf) HasType ¶

func (o *KubernetesTargetAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (KubernetesTargetAllOf) MarshalJSON ¶

func (o KubernetesTargetAllOf) MarshalJSON() ([]byte, error)

func (*KubernetesTargetAllOf) SetContext ¶

func (o *KubernetesTargetAllOf) SetContext(v string)

SetContext gets a reference to the given string and assigns it to the Context field.

func (*KubernetesTargetAllOf) SetKubeconfig ¶

func (o *KubernetesTargetAllOf) SetKubeconfig(v string)

SetKubeconfig gets a reference to the given string and assigns it to the Kubeconfig field.

func (*KubernetesTargetAllOf) SetMode ¶

func (o *KubernetesTargetAllOf) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*KubernetesTargetAllOf) SetSubtype ¶

func (o *KubernetesTargetAllOf) SetSubtype(v string)

SetSubtype gets a reference to the given string and assigns it to the Subtype field.

func (*KubernetesTargetAllOf) SetType ¶

func (o *KubernetesTargetAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Layer ¶ added in v1.10.3

type Layer struct {
	Id            *string                           `json:"id,omitempty"`
	TechnicalName *string                           `json:"technical_name,omitempty"`
	Name          *string                           `json:"name,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Layer struct for Layer

func NewLayer ¶ added in v1.10.3

func NewLayer() *Layer

NewLayer instantiates a new Layer 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 NewLayerWithDefaults ¶ added in v1.10.3

func NewLayerWithDefaults() *Layer

NewLayerWithDefaults instantiates a new Layer 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 (*Layer) GetCreated ¶ added in v1.10.3

func (o *Layer) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Layer) GetCreatedOk ¶ added in v1.10.3

func (o *Layer) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Layer) GetDescription ¶ added in v1.10.3

func (o *Layer) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Layer) GetDescriptionOk ¶ added in v1.10.3

func (o *Layer) 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 (*Layer) GetId ¶ added in v1.10.3

func (o *Layer) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Layer) GetIdOk ¶ added in v1.10.3

func (o *Layer) 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 (*Layer) GetMetadata ¶ added in v1.10.3

func (o *Layer) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Layer) GetMetadataOk ¶ added in v1.10.3

func (o *Layer) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Layer) GetName ¶ added in v1.10.3

func (o *Layer) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Layer) GetNameOk ¶ added in v1.10.3

func (o *Layer) 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 (*Layer) GetTechnicalName ¶ added in v1.10.3

func (o *Layer) GetTechnicalName() string

GetTechnicalName returns the TechnicalName field value if set, zero value otherwise.

func (*Layer) GetTechnicalNameOk ¶ added in v1.10.3

func (o *Layer) GetTechnicalNameOk() (*string, bool)

GetTechnicalNameOk returns a tuple with the TechnicalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Layer) GetUpdated ¶ added in v1.10.3

func (o *Layer) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Layer) GetUpdatedOk ¶ added in v1.10.3

func (o *Layer) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Layer) HasCreated ¶ added in v1.10.3

func (o *Layer) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Layer) HasDescription ¶ added in v1.10.3

func (o *Layer) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Layer) HasId ¶ added in v1.10.3

func (o *Layer) HasId() bool

HasId returns a boolean if a field has been set.

func (*Layer) HasMetadata ¶ added in v1.10.3

func (o *Layer) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Layer) HasName ¶ added in v1.10.3

func (o *Layer) HasName() bool

HasName returns a boolean if a field has been set.

func (*Layer) HasTechnicalName ¶ added in v1.10.3

func (o *Layer) HasTechnicalName() bool

HasTechnicalName returns a boolean if a field has been set.

func (*Layer) HasUpdated ¶ added in v1.10.3

func (o *Layer) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Layer) MarshalJSON ¶ added in v1.10.3

func (o Layer) MarshalJSON() ([]byte, error)

func (*Layer) SetCreated ¶ added in v1.10.3

func (o *Layer) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Layer) SetDescription ¶ added in v1.10.3

func (o *Layer) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Layer) SetId ¶ added in v1.10.3

func (o *Layer) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Layer) SetMetadata ¶ added in v1.10.3

func (o *Layer) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Layer) SetName ¶ added in v1.10.3

func (o *Layer) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Layer) SetTechnicalName ¶ added in v1.10.3

func (o *Layer) SetTechnicalName(v string)

SetTechnicalName gets a reference to the given string and assigns it to the TechnicalName field.

func (*Layer) SetUpdated ¶ added in v1.10.3

func (o *Layer) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Layer) ToMap ¶ added in v1.10.3

func (o Layer) ToMap() (map[string]interface{}, error)

type LayerAPIService ¶ added in v1.10.3

type LayerAPIService service

LayerAPIService LayerAPI service

func (*LayerAPIService) CreateLayer ¶ added in v1.10.3

CreateLayer Create a layer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateLayerRequest

func (*LayerAPIService) CreateLayerExecute ¶ added in v1.10.3

func (a *LayerAPIService) CreateLayerExecute(r ApiCreateLayerRequest) (*Layer, *http.Response, error)

Execute executes the request

@return Layer

func (*LayerAPIService) DeleteLayerById ¶ added in v1.10.3

func (a *LayerAPIService) DeleteLayerById(ctx context.Context, name string) ApiDeleteLayerByIdRequest

DeleteLayerById Delete a layer by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name Id of the layer
@return ApiDeleteLayerByIdRequest

func (*LayerAPIService) DeleteLayerByIdExecute ¶ added in v1.10.3

func (a *LayerAPIService) DeleteLayerByIdExecute(r ApiDeleteLayerByIdRequest) (*http.Response, error)

Execute executes the request

func (*LayerAPIService) FindLayerById ¶ added in v1.10.3

func (a *LayerAPIService) FindLayerById(ctx context.Context, name string) ApiFindLayerByIdRequest

FindLayerById Find layer by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name Id of the layer
@return ApiFindLayerByIdRequest

func (*LayerAPIService) FindLayerByIdExecute ¶ added in v1.10.3

func (a *LayerAPIService) FindLayerByIdExecute(r ApiFindLayerByIdRequest) (*Layer, *http.Response, error)

Execute executes the request

@return Layer

func (*LayerAPIService) FindLayers ¶ added in v1.10.3

FindLayers Retrieve all layers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindLayersRequest

func (*LayerAPIService) FindLayersExecute ¶ added in v1.10.3

func (a *LayerAPIService) FindLayersExecute(r ApiFindLayersRequest) ([]Layer, *http.Response, error)

Execute executes the request

@return []Layer

func (*LayerAPIService) UpdateLayer ¶ added in v1.10.3

func (a *LayerAPIService) UpdateLayer(ctx context.Context, name string) ApiUpdateLayerRequest

UpdateLayer Update a layer

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name Id of the layer
@return ApiUpdateLayerRequest

func (*LayerAPIService) UpdateLayerExecute ¶ added in v1.10.3

func (a *LayerAPIService) UpdateLayerExecute(r ApiUpdateLayerRequest) (*Layer, *http.Response, error)

Execute executes the request

@return Layer

type LessOrEqualThanFilter ¶ added in v1.10.3

type LessOrEqualThanFilter struct {
	// Left operator for filter.
	Left string `json:"left"`
	// Right operator for filter.
	Right string `json:"right"`
	// Operator for LESS OR EQUAL filter.
	Type *string `json:"type,omitempty"`
}

LessOrEqualThanFilter Filter values that are smaller or equal to a given value. Attributes ---------- type : RelationalOperatorType Type of the filter.

func NewLessOrEqualThanFilter ¶ added in v1.10.3

func NewLessOrEqualThanFilter(left string, right string) *LessOrEqualThanFilter

NewLessOrEqualThanFilter instantiates a new LessOrEqualThanFilter 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 NewLessOrEqualThanFilterWithDefaults ¶ added in v1.10.3

func NewLessOrEqualThanFilterWithDefaults() *LessOrEqualThanFilter

NewLessOrEqualThanFilterWithDefaults instantiates a new LessOrEqualThanFilter 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 (*LessOrEqualThanFilter) GetLeft ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) GetLeft() string

GetLeft returns the Left field value

func (*LessOrEqualThanFilter) GetLeftOk ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) GetLeftOk() (*string, bool)

GetLeftOk returns a tuple with the Left field value and a boolean to check if the value has been set.

func (*LessOrEqualThanFilter) GetRight ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) GetRight() string

GetRight returns the Right field value

func (*LessOrEqualThanFilter) GetRightOk ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) GetRightOk() (*string, bool)

GetRightOk returns a tuple with the Right field value and a boolean to check if the value has been set.

func (*LessOrEqualThanFilter) GetType ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*LessOrEqualThanFilter) GetTypeOk ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LessOrEqualThanFilter) HasType ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (LessOrEqualThanFilter) MarshalJSON ¶ added in v1.10.3

func (o LessOrEqualThanFilter) MarshalJSON() ([]byte, error)

func (*LessOrEqualThanFilter) SetLeft ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) SetLeft(v string)

SetLeft sets field value

func (*LessOrEqualThanFilter) SetRight ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) SetRight(v string)

SetRight sets field value

func (*LessOrEqualThanFilter) SetType ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (LessOrEqualThanFilter) ToMap ¶ added in v1.10.3

func (o LessOrEqualThanFilter) ToMap() (map[string]interface{}, error)

func (*LessOrEqualThanFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *LessOrEqualThanFilter) UnmarshalJSON(bytes []byte) (err error)

type LessThanFilter ¶ added in v1.10.3

type LessThanFilter struct {
	// Left operator for filter.
	Left string `json:"left"`
	// Right operator for filter.
	Right string `json:"right"`
	// Operator for LESS THAN filter.
	Type *string `json:"type,omitempty"`
}

LessThanFilter Filter values that are smaller than a given value. Attributes ---------- type : RelationalOperatorType Type of the filter.

func NewLessThanFilter ¶ added in v1.10.3

func NewLessThanFilter(left string, right string) *LessThanFilter

NewLessThanFilter instantiates a new LessThanFilter 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 NewLessThanFilterWithDefaults ¶ added in v1.10.3

func NewLessThanFilterWithDefaults() *LessThanFilter

NewLessThanFilterWithDefaults instantiates a new LessThanFilter 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 (*LessThanFilter) GetLeft ¶ added in v1.10.3

func (o *LessThanFilter) GetLeft() string

GetLeft returns the Left field value

func (*LessThanFilter) GetLeftOk ¶ added in v1.10.3

func (o *LessThanFilter) GetLeftOk() (*string, bool)

GetLeftOk returns a tuple with the Left field value and a boolean to check if the value has been set.

func (*LessThanFilter) GetRight ¶ added in v1.10.3

func (o *LessThanFilter) GetRight() string

GetRight returns the Right field value

func (*LessThanFilter) GetRightOk ¶ added in v1.10.3

func (o *LessThanFilter) GetRightOk() (*string, bool)

GetRightOk returns a tuple with the Right field value and a boolean to check if the value has been set.

func (*LessThanFilter) GetType ¶ added in v1.10.3

func (o *LessThanFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*LessThanFilter) GetTypeOk ¶ added in v1.10.3

func (o *LessThanFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LessThanFilter) HasType ¶ added in v1.10.3

func (o *LessThanFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (LessThanFilter) MarshalJSON ¶ added in v1.10.3

func (o LessThanFilter) MarshalJSON() ([]byte, error)

func (*LessThanFilter) SetLeft ¶ added in v1.10.3

func (o *LessThanFilter) SetLeft(v string)

SetLeft sets field value

func (*LessThanFilter) SetRight ¶ added in v1.10.3

func (o *LessThanFilter) SetRight(v string)

SetRight sets field value

func (*LessThanFilter) SetType ¶ added in v1.10.3

func (o *LessThanFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (LessThanFilter) ToMap ¶ added in v1.10.3

func (o LessThanFilter) ToMap() (map[string]interface{}, error)

func (*LessThanFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *LessThanFilter) UnmarshalJSON(bytes []byte) (err error)

type Library ¶

type Library struct {
	ILibrary
	Type *string `json:"type,omitempty"`
}

Library struct for Library

func NewLibrary ¶

func NewLibrary() *Library

NewLibrary instantiates a new Library 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 NewLibraryWithDefaults ¶

func NewLibraryWithDefaults() *Library

NewLibraryWithDefaults instantiates a new Library 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 (*Library) GetType ¶

func (o *Library) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Library) GetTypeOk ¶

func (o *Library) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Library) HasType ¶

func (o *Library) HasType() bool

HasType returns a boolean if a field has been set.

func (Library) MarshalJSON ¶

func (o Library) MarshalJSON() ([]byte, error)

func (*Library) SetType ¶

func (o *Library) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Library) ToMap ¶ added in v1.10.3

func (o Library) ToMap() (map[string]interface{}, error)

type LibraryAPIService ¶ added in v1.10.3

type LibraryAPIService service

LibraryAPIService LibraryAPI service

func (*LibraryAPIService) DeleteLibraryById ¶ added in v1.10.3

func (a *LibraryAPIService) DeleteLibraryById(ctx context.Context, libraryId string) ApiDeleteLibraryByIdRequest

DeleteLibraryById Delete a library by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param libraryId Id of the library
@return ApiDeleteLibraryByIdRequest

func (*LibraryAPIService) DeleteLibraryByIdExecute ¶ added in v1.10.3

func (a *LibraryAPIService) DeleteLibraryByIdExecute(r ApiDeleteLibraryByIdRequest) (*http.Response, error)

Execute executes the request

func (*LibraryAPIService) DownloadLibrary ¶ added in v1.10.3

func (a *LibraryAPIService) DownloadLibrary(ctx context.Context, libraryId string) ApiDownloadLibraryRequest

DownloadLibrary Download library by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param libraryId Id of the library
@return ApiDownloadLibraryRequest

func (*LibraryAPIService) DownloadLibraryExecute ¶ added in v1.10.3

func (a *LibraryAPIService) DownloadLibraryExecute(r ApiDownloadLibraryRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*LibraryAPIService) FindLibraries ¶ added in v1.10.3

FindLibraries List all libraries

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindLibrariesRequest

func (*LibraryAPIService) FindLibrariesExecute ¶ added in v1.10.3

func (a *LibraryAPIService) FindLibrariesExecute(r ApiFindLibrariesRequest) ([]BlobMetadata, *http.Response, error)

Execute executes the request

@return []BlobMetadata

func (*LibraryAPIService) FindMetadata ¶ added in v1.10.3

func (a *LibraryAPIService) FindMetadata(ctx context.Context, libraryId string) ApiFindMetadataRequest

FindMetadata Get library metadata by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param libraryId Id of the library
@return ApiFindMetadataRequest

func (*LibraryAPIService) FindMetadataExecute ¶ added in v1.10.3

func (a *LibraryAPIService) FindMetadataExecute(r ApiFindMetadataRequest) (*BlobMetadata, *http.Response, error)

Execute executes the request

@return BlobMetadata

func (*LibraryAPIService) UploadLibrary ¶ added in v1.10.3

UploadLibrary Upload a library

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUploadLibraryRequest

func (*LibraryAPIService) UploadLibraryExecute ¶ added in v1.10.3

func (a *LibraryAPIService) UploadLibraryExecute(r ApiUploadLibraryRequest) ([]BlobMetadata, *http.Response, error)

Execute executes the request

@return []BlobMetadata

type LikeFilter ¶ added in v1.10.3

type LikeFilter struct {
	// Left operator for filter.
	Left string `json:"left"`
	// Right operator for filter.
	Right string `json:"right"`
	// Operator for LIKE filter.
	Type *string `json:"type,omitempty"`
}

LikeFilter Filter values that contain a sub-string. Attributes ---------- type : RelationalOperatorType Type of the filter.

func NewLikeFilter ¶ added in v1.10.3

func NewLikeFilter(left string, right string) *LikeFilter

NewLikeFilter instantiates a new LikeFilter 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 NewLikeFilterWithDefaults ¶ added in v1.10.3

func NewLikeFilterWithDefaults() *LikeFilter

NewLikeFilterWithDefaults instantiates a new LikeFilter 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 (*LikeFilter) GetLeft ¶ added in v1.10.3

func (o *LikeFilter) GetLeft() string

GetLeft returns the Left field value

func (*LikeFilter) GetLeftOk ¶ added in v1.10.3

func (o *LikeFilter) GetLeftOk() (*string, bool)

GetLeftOk returns a tuple with the Left field value and a boolean to check if the value has been set.

func (*LikeFilter) GetRight ¶ added in v1.10.3

func (o *LikeFilter) GetRight() string

GetRight returns the Right field value

func (*LikeFilter) GetRightOk ¶ added in v1.10.3

func (o *LikeFilter) GetRightOk() (*string, bool)

GetRightOk returns a tuple with the Right field value and a boolean to check if the value has been set.

func (*LikeFilter) GetType ¶ added in v1.10.3

func (o *LikeFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*LikeFilter) GetTypeOk ¶ added in v1.10.3

func (o *LikeFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LikeFilter) HasType ¶ added in v1.10.3

func (o *LikeFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (LikeFilter) MarshalJSON ¶ added in v1.10.3

func (o LikeFilter) MarshalJSON() ([]byte, error)

func (*LikeFilter) SetLeft ¶ added in v1.10.3

func (o *LikeFilter) SetLeft(v string)

SetLeft sets field value

func (*LikeFilter) SetRight ¶ added in v1.10.3

func (o *LikeFilter) SetRight(v string)

SetRight sets field value

func (*LikeFilter) SetType ¶ added in v1.10.3

func (o *LikeFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (LikeFilter) ToMap ¶ added in v1.10.3

func (o LikeFilter) ToMap() (map[string]interface{}, error)

func (*LikeFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *LikeFilter) UnmarshalJSON(bytes []byte) (err error)

type LoadModelParams ¶ added in v1.10.3

type LoadModelParams struct {
	// Type of object model.
	Type      *string                `json:"type,omitempty"`
	Connector Connector              `json:"connector"`
	Object    ParametersToWriteAFile `json:"object"`
}

LoadModelParams struct for LoadModelParams

func NewLoadModelParams ¶ added in v1.10.3

func NewLoadModelParams(connector Connector, object ParametersToWriteAFile) *LoadModelParams

NewLoadModelParams instantiates a new LoadModelParams 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 NewLoadModelParamsWithDefaults ¶ added in v1.10.3

func NewLoadModelParamsWithDefaults() *LoadModelParams

NewLoadModelParamsWithDefaults instantiates a new LoadModelParams 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 (*LoadModelParams) GetConnector ¶ added in v1.10.3

func (o *LoadModelParams) GetConnector() Connector

GetConnector returns the Connector field value

func (*LoadModelParams) GetConnectorOk ¶ added in v1.10.3

func (o *LoadModelParams) GetConnectorOk() (*Connector, bool)

GetConnectorOk returns a tuple with the Connector field value and a boolean to check if the value has been set.

func (*LoadModelParams) GetObject ¶ added in v1.10.3

func (o *LoadModelParams) GetObject() ParametersToWriteAFile

GetObject returns the Object field value

func (*LoadModelParams) GetObjectOk ¶ added in v1.10.3

func (o *LoadModelParams) GetObjectOk() (*ParametersToWriteAFile, bool)

GetObjectOk returns a tuple with the Object field value and a boolean to check if the value has been set.

func (*LoadModelParams) GetType ¶ added in v1.10.3

func (o *LoadModelParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*LoadModelParams) GetTypeOk ¶ added in v1.10.3

func (o *LoadModelParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoadModelParams) HasType ¶ added in v1.10.3

func (o *LoadModelParams) HasType() bool

HasType returns a boolean if a field has been set.

func (LoadModelParams) MarshalJSON ¶ added in v1.10.3

func (o LoadModelParams) MarshalJSON() ([]byte, error)

func (*LoadModelParams) SetConnector ¶ added in v1.10.3

func (o *LoadModelParams) SetConnector(v Connector)

SetConnector sets field value

func (*LoadModelParams) SetObject ¶ added in v1.10.3

func (o *LoadModelParams) SetObject(v ParametersToWriteAFile)

SetObject sets field value

func (*LoadModelParams) SetType ¶ added in v1.10.3

func (o *LoadModelParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (LoadModelParams) ToMap ¶ added in v1.10.3

func (o LoadModelParams) ToMap() (map[string]interface{}, error)

func (*LoadModelParams) UnmarshalJSON ¶ added in v1.10.3

func (o *LoadModelParams) UnmarshalJSON(bytes []byte) (err error)

type LocalConnector ¶ added in v1.10.3

type LocalConnector struct {
	// Connection to a local folder.
	Type *string `json:"type,omitempty"`
}

LocalConnector Connect to a local folder. Attributes ---------- type : ConnectorType Local type of connector. _prefix : str Prefix to access the folder (default: empty string).

func NewLocalConnector ¶ added in v1.10.3

func NewLocalConnector() *LocalConnector

NewLocalConnector instantiates a new LocalConnector 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 NewLocalConnectorWithDefaults ¶ added in v1.10.3

func NewLocalConnectorWithDefaults() *LocalConnector

NewLocalConnectorWithDefaults instantiates a new LocalConnector 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 (*LocalConnector) GetType ¶ added in v1.10.3

func (o *LocalConnector) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*LocalConnector) GetTypeOk ¶ added in v1.10.3

func (o *LocalConnector) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocalConnector) HasType ¶ added in v1.10.3

func (o *LocalConnector) HasType() bool

HasType returns a boolean if a field has been set.

func (LocalConnector) MarshalJSON ¶ added in v1.10.3

func (o LocalConnector) MarshalJSON() ([]byte, error)

func (*LocalConnector) SetType ¶ added in v1.10.3

func (o *LocalConnector) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (LocalConnector) ToMap ¶ added in v1.10.3

func (o LocalConnector) ToMap() (map[string]interface{}, error)

type Location ¶

type Location struct {
	City      *string `json:"city,omitempty"`
	State     *string `json:"state,omitempty"`
	Country   *string `json:"country,omitempty"`
	Altitude  *string `json:"altitude,omitempty"`
	Latitude  *string `json:"latitude,omitempty"`
	Longitude *string `json:"longitude,omitempty"`
}

Location struct for Location

func NewLocation ¶

func NewLocation() *Location

NewLocation instantiates a new Location 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 NewLocationWithDefaults ¶

func NewLocationWithDefaults() *Location

NewLocationWithDefaults instantiates a new Location 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 (*Location) GetAltitude ¶

func (o *Location) GetAltitude() string

GetAltitude returns the Altitude field value if set, zero value otherwise.

func (*Location) GetAltitudeOk ¶

func (o *Location) GetAltitudeOk() (*string, bool)

GetAltitudeOk returns a tuple with the Altitude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Location) GetCity ¶

func (o *Location) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*Location) GetCityOk ¶

func (o *Location) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Location) GetCountry ¶

func (o *Location) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*Location) GetCountryOk ¶

func (o *Location) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Location) GetLatitude ¶

func (o *Location) GetLatitude() string

GetLatitude returns the Latitude field value if set, zero value otherwise.

func (*Location) GetLatitudeOk ¶

func (o *Location) GetLatitudeOk() (*string, bool)

GetLatitudeOk returns a tuple with the Latitude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Location) GetLongitude ¶

func (o *Location) GetLongitude() string

GetLongitude returns the Longitude field value if set, zero value otherwise.

func (*Location) GetLongitudeOk ¶

func (o *Location) GetLongitudeOk() (*string, bool)

GetLongitudeOk returns a tuple with the Longitude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Location) GetState ¶

func (o *Location) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*Location) GetStateOk ¶

func (o *Location) GetStateOk() (*string, 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 (*Location) HasAltitude ¶

func (o *Location) HasAltitude() bool

HasAltitude returns a boolean if a field has been set.

func (*Location) HasCity ¶

func (o *Location) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*Location) HasCountry ¶

func (o *Location) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*Location) HasLatitude ¶

func (o *Location) HasLatitude() bool

HasLatitude returns a boolean if a field has been set.

func (*Location) HasLongitude ¶

func (o *Location) HasLongitude() bool

HasLongitude returns a boolean if a field has been set.

func (*Location) HasState ¶

func (o *Location) HasState() bool

HasState returns a boolean if a field has been set.

func (Location) MarshalJSON ¶

func (o Location) MarshalJSON() ([]byte, error)

func (*Location) SetAltitude ¶

func (o *Location) SetAltitude(v string)

SetAltitude gets a reference to the given string and assigns it to the Altitude field.

func (*Location) SetCity ¶

func (o *Location) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*Location) SetCountry ¶

func (o *Location) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*Location) SetLatitude ¶

func (o *Location) SetLatitude(v string)

SetLatitude gets a reference to the given string and assigns it to the Latitude field.

func (*Location) SetLongitude ¶

func (o *Location) SetLongitude(v string)

SetLongitude gets a reference to the given string and assigns it to the Longitude field.

func (*Location) SetState ¶

func (o *Location) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (Location) ToMap ¶ added in v1.10.3

func (o Location) ToMap() (map[string]interface{}, error)

type Location1Inner ¶ added in v1.10.3

type Location1Inner struct {
	// contains filtered or unexported fields
}

Location1Inner struct for Location1Inner

func (*Location1Inner) MarshalJSON ¶ added in v1.10.3

func (src *Location1Inner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Location1Inner) UnmarshalJSON ¶ added in v1.10.3

func (dst *Location1Inner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type LogEntry ¶

type LogEntry struct {
	At      *time.Time `json:"at,omitempty"`
	Message *string    `json:"message,omitempty"`
	Source  *string    `json:"source,omitempty"`
}

LogEntry struct for LogEntry

func NewLogEntry ¶

func NewLogEntry() *LogEntry

NewLogEntry instantiates a new LogEntry 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 NewLogEntryWithDefaults ¶

func NewLogEntryWithDefaults() *LogEntry

NewLogEntryWithDefaults instantiates a new LogEntry 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 (*LogEntry) GetAt ¶

func (o *LogEntry) GetAt() time.Time

GetAt returns the At field value if set, zero value otherwise.

func (*LogEntry) GetAtOk ¶

func (o *LogEntry) GetAtOk() (*time.Time, bool)

GetAtOk returns a tuple with the At field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LogEntry) GetMessage ¶

func (o *LogEntry) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*LogEntry) GetMessageOk ¶

func (o *LogEntry) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LogEntry) GetSource ¶

func (o *LogEntry) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*LogEntry) GetSourceOk ¶

func (o *LogEntry) 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 (*LogEntry) HasAt ¶

func (o *LogEntry) HasAt() bool

HasAt returns a boolean if a field has been set.

func (*LogEntry) HasMessage ¶

func (o *LogEntry) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*LogEntry) HasSource ¶

func (o *LogEntry) HasSource() bool

HasSource returns a boolean if a field has been set.

func (LogEntry) MarshalJSON ¶

func (o LogEntry) MarshalJSON() ([]byte, error)

func (*LogEntry) SetAt ¶

func (o *LogEntry) SetAt(v time.Time)

SetAt gets a reference to the given time.Time and assigns it to the At field.

func (*LogEntry) SetMessage ¶

func (o *LogEntry) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*LogEntry) SetSource ¶

func (o *LogEntry) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (LogEntry) ToMap ¶ added in v1.10.3

func (o LogEntry) ToMap() (map[string]interface{}, error)

type LowCodeOptions ¶ added in v1.10.3

type LowCodeOptions struct {
	Options
	Type                 *string                `json:"type,omitempty"`
	Mode                 *string                `json:"mode,omitempty"`
	ExecutorInstanceType *string                `json:"executor_instance_type,omitempty"`
	NumberExecutors      *float32               `json:"number_executors,omitempty"`
	Definition           map[string]interface{} `json:"definition,omitempty"`
}

LowCodeOptions struct for LowCodeOptions

func NewLowCodeOptions ¶ added in v1.10.3

func NewLowCodeOptions() *LowCodeOptions

NewLowCodeOptions instantiates a new LowCodeOptions 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 NewLowCodeOptionsWithDefaults ¶ added in v1.10.3

func NewLowCodeOptionsWithDefaults() *LowCodeOptions

NewLowCodeOptionsWithDefaults instantiates a new LowCodeOptions 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 (*LowCodeOptions) GetDefinition ¶ added in v1.10.3

func (o *LowCodeOptions) GetDefinition() map[string]interface{}

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*LowCodeOptions) GetDefinitionOk ¶ added in v1.10.3

func (o *LowCodeOptions) GetDefinitionOk() (map[string]interface{}, bool)

GetDefinitionOk returns a tuple with the Definition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptions) GetExecutorInstanceType ¶ added in v1.10.3

func (o *LowCodeOptions) GetExecutorInstanceType() string

GetExecutorInstanceType returns the ExecutorInstanceType field value if set, zero value otherwise.

func (*LowCodeOptions) GetExecutorInstanceTypeOk ¶ added in v1.10.3

func (o *LowCodeOptions) GetExecutorInstanceTypeOk() (*string, bool)

GetExecutorInstanceTypeOk returns a tuple with the ExecutorInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptions) GetMode ¶ added in v1.10.3

func (o *LowCodeOptions) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*LowCodeOptions) GetModeOk ¶ added in v1.10.3

func (o *LowCodeOptions) GetModeOk() (*string, bool)

GetModeOk returns a tuple with the Mode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptions) GetNumberExecutors ¶ added in v1.10.3

func (o *LowCodeOptions) GetNumberExecutors() float32

GetNumberExecutors returns the NumberExecutors field value if set, zero value otherwise.

func (*LowCodeOptions) GetNumberExecutorsOk ¶ added in v1.10.3

func (o *LowCodeOptions) GetNumberExecutorsOk() (*float32, bool)

GetNumberExecutorsOk returns a tuple with the NumberExecutors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptions) GetType ¶ added in v1.10.3

func (o *LowCodeOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*LowCodeOptions) GetTypeOk ¶ added in v1.10.3

func (o *LowCodeOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptions) HasDefinition ¶ added in v1.10.3

func (o *LowCodeOptions) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (*LowCodeOptions) HasExecutorInstanceType ¶ added in v1.10.3

func (o *LowCodeOptions) HasExecutorInstanceType() bool

HasExecutorInstanceType returns a boolean if a field has been set.

func (*LowCodeOptions) HasMode ¶ added in v1.10.3

func (o *LowCodeOptions) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*LowCodeOptions) HasNumberExecutors ¶ added in v1.10.3

func (o *LowCodeOptions) HasNumberExecutors() bool

HasNumberExecutors returns a boolean if a field has been set.

func (*LowCodeOptions) HasType ¶ added in v1.10.3

func (o *LowCodeOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (LowCodeOptions) MarshalJSON ¶ added in v1.10.3

func (o LowCodeOptions) MarshalJSON() ([]byte, error)

func (*LowCodeOptions) SetDefinition ¶ added in v1.10.3

func (o *LowCodeOptions) SetDefinition(v map[string]interface{})

SetDefinition gets a reference to the given map[string]interface{} and assigns it to the Definition field.

func (*LowCodeOptions) SetExecutorInstanceType ¶ added in v1.10.3

func (o *LowCodeOptions) SetExecutorInstanceType(v string)

SetExecutorInstanceType gets a reference to the given string and assigns it to the ExecutorInstanceType field.

func (*LowCodeOptions) SetMode ¶ added in v1.10.3

func (o *LowCodeOptions) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*LowCodeOptions) SetNumberExecutors ¶ added in v1.10.3

func (o *LowCodeOptions) SetNumberExecutors(v float32)

SetNumberExecutors gets a reference to the given float32 and assigns it to the NumberExecutors field.

func (*LowCodeOptions) SetType ¶ added in v1.10.3

func (o *LowCodeOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (LowCodeOptions) ToMap ¶ added in v1.10.3

func (o LowCodeOptions) ToMap() (map[string]interface{}, error)

type LowCodeOptionsAllOf ¶ added in v1.10.3

type LowCodeOptionsAllOf struct {
	Type                 *string                 `json:"type,omitempty"`
	Mode                 *string                 `json:"mode,omitempty"`
	ExecutorInstanceType *string                 `json:"executor_instance_type,omitempty"`
	NumberExecutors      *float32                `json:"number_executors,omitempty"`
	Definition           *map[string]interface{} `json:"definition,omitempty"`
}

LowCodeOptionsAllOf struct for LowCodeOptionsAllOf

func NewLowCodeOptionsAllOf ¶ added in v1.10.3

func NewLowCodeOptionsAllOf() *LowCodeOptionsAllOf

NewLowCodeOptionsAllOf instantiates a new LowCodeOptionsAllOf 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 NewLowCodeOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewLowCodeOptionsAllOfWithDefaults() *LowCodeOptionsAllOf

NewLowCodeOptionsAllOfWithDefaults instantiates a new LowCodeOptionsAllOf 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 (*LowCodeOptionsAllOf) GetDefinition ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetDefinition() map[string]interface{}

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*LowCodeOptionsAllOf) GetDefinitionOk ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetDefinitionOk() (*map[string]interface{}, bool)

GetDefinitionOk returns a tuple with the Definition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptionsAllOf) GetExecutorInstanceType ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetExecutorInstanceType() string

GetExecutorInstanceType returns the ExecutorInstanceType field value if set, zero value otherwise.

func (*LowCodeOptionsAllOf) GetExecutorInstanceTypeOk ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetExecutorInstanceTypeOk() (*string, bool)

GetExecutorInstanceTypeOk returns a tuple with the ExecutorInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptionsAllOf) GetMode ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetMode() string

GetMode returns the Mode field value if set, zero value otherwise.

func (*LowCodeOptionsAllOf) GetModeOk ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetModeOk() (*string, bool)

GetModeOk returns a tuple with the Mode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptionsAllOf) GetNumberExecutors ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetNumberExecutors() float32

GetNumberExecutors returns the NumberExecutors field value if set, zero value otherwise.

func (*LowCodeOptionsAllOf) GetNumberExecutorsOk ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetNumberExecutorsOk() (*float32, bool)

GetNumberExecutorsOk returns a tuple with the NumberExecutors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptionsAllOf) GetType ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*LowCodeOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LowCodeOptionsAllOf) HasDefinition ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (*LowCodeOptionsAllOf) HasExecutorInstanceType ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) HasExecutorInstanceType() bool

HasExecutorInstanceType returns a boolean if a field has been set.

func (*LowCodeOptionsAllOf) HasMode ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*LowCodeOptionsAllOf) HasNumberExecutors ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) HasNumberExecutors() bool

HasNumberExecutors returns a boolean if a field has been set.

func (*LowCodeOptionsAllOf) HasType ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (LowCodeOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o LowCodeOptionsAllOf) MarshalJSON() ([]byte, error)

func (*LowCodeOptionsAllOf) SetDefinition ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) SetDefinition(v map[string]interface{})

SetDefinition gets a reference to the given map[string]interface{} and assigns it to the Definition field.

func (*LowCodeOptionsAllOf) SetExecutorInstanceType ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) SetExecutorInstanceType(v string)

SetExecutorInstanceType gets a reference to the given string and assigns it to the ExecutorInstanceType field.

func (*LowCodeOptionsAllOf) SetMode ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) SetMode(v string)

SetMode gets a reference to the given string and assigns it to the Mode field.

func (*LowCodeOptionsAllOf) SetNumberExecutors ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) SetNumberExecutors(v float32)

SetNumberExecutors gets a reference to the given float32 and assigns it to the NumberExecutors field.

func (*LowCodeOptionsAllOf) SetType ¶ added in v1.10.3

func (o *LowCodeOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type MXNetOptions ¶

type MXNetOptions struct {
	Options
	Type                  *string  `json:"type,omitempty"`
	Module                *string  `json:"module,omitempty"`
	NumberReplicas        *float32 `json:"number_replicas,omitempty"`
	ServerInstanceType    *string  `json:"server_instance_type,omitempty"`
	WorkerInstanceType    *string  `json:"worker_instance_type,omitempty"`
	SchedulerInstanceType *string  `json:"scheduler_instance_type,omitempty"`
}

MXNetOptions struct for MXNetOptions

func NewMXNetOptions ¶

func NewMXNetOptions() *MXNetOptions

NewMXNetOptions instantiates a new MXNetOptions 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 NewMXNetOptionsWithDefaults ¶

func NewMXNetOptionsWithDefaults() *MXNetOptions

NewMXNetOptionsWithDefaults instantiates a new MXNetOptions 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 (*MXNetOptions) GetModule ¶

func (o *MXNetOptions) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*MXNetOptions) GetModuleOk ¶

func (o *MXNetOptions) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptions) GetNumberReplicas ¶

func (o *MXNetOptions) GetNumberReplicas() float32

GetNumberReplicas returns the NumberReplicas field value if set, zero value otherwise.

func (*MXNetOptions) GetNumberReplicasOk ¶

func (o *MXNetOptions) GetNumberReplicasOk() (*float32, bool)

GetNumberReplicasOk returns a tuple with the NumberReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptions) GetSchedulerInstanceType ¶

func (o *MXNetOptions) GetSchedulerInstanceType() string

GetSchedulerInstanceType returns the SchedulerInstanceType field value if set, zero value otherwise.

func (*MXNetOptions) GetSchedulerInstanceTypeOk ¶

func (o *MXNetOptions) GetSchedulerInstanceTypeOk() (*string, bool)

GetSchedulerInstanceTypeOk returns a tuple with the SchedulerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptions) GetServerInstanceType ¶

func (o *MXNetOptions) GetServerInstanceType() string

GetServerInstanceType returns the ServerInstanceType field value if set, zero value otherwise.

func (*MXNetOptions) GetServerInstanceTypeOk ¶

func (o *MXNetOptions) GetServerInstanceTypeOk() (*string, bool)

GetServerInstanceTypeOk returns a tuple with the ServerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptions) GetType ¶

func (o *MXNetOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MXNetOptions) GetTypeOk ¶

func (o *MXNetOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptions) GetWorkerInstanceType ¶

func (o *MXNetOptions) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*MXNetOptions) GetWorkerInstanceTypeOk ¶

func (o *MXNetOptions) GetWorkerInstanceTypeOk() (*string, bool)

GetWorkerInstanceTypeOk returns a tuple with the WorkerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptions) HasModule ¶

func (o *MXNetOptions) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*MXNetOptions) HasNumberReplicas ¶

func (o *MXNetOptions) HasNumberReplicas() bool

HasNumberReplicas returns a boolean if a field has been set.

func (*MXNetOptions) HasSchedulerInstanceType ¶

func (o *MXNetOptions) HasSchedulerInstanceType() bool

HasSchedulerInstanceType returns a boolean if a field has been set.

func (*MXNetOptions) HasServerInstanceType ¶

func (o *MXNetOptions) HasServerInstanceType() bool

HasServerInstanceType returns a boolean if a field has been set.

func (*MXNetOptions) HasType ¶

func (o *MXNetOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (*MXNetOptions) HasWorkerInstanceType ¶

func (o *MXNetOptions) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (MXNetOptions) MarshalJSON ¶

func (o MXNetOptions) MarshalJSON() ([]byte, error)

func (*MXNetOptions) SetModule ¶

func (o *MXNetOptions) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*MXNetOptions) SetNumberReplicas ¶

func (o *MXNetOptions) SetNumberReplicas(v float32)

SetNumberReplicas gets a reference to the given float32 and assigns it to the NumberReplicas field.

func (*MXNetOptions) SetSchedulerInstanceType ¶

func (o *MXNetOptions) SetSchedulerInstanceType(v string)

SetSchedulerInstanceType gets a reference to the given string and assigns it to the SchedulerInstanceType field.

func (*MXNetOptions) SetServerInstanceType ¶

func (o *MXNetOptions) SetServerInstanceType(v string)

SetServerInstanceType gets a reference to the given string and assigns it to the ServerInstanceType field.

func (*MXNetOptions) SetType ¶

func (o *MXNetOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*MXNetOptions) SetWorkerInstanceType ¶

func (o *MXNetOptions) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

func (MXNetOptions) ToMap ¶ added in v1.10.3

func (o MXNetOptions) ToMap() (map[string]interface{}, error)

type MXNetOptionsAllOf ¶

type MXNetOptionsAllOf struct {
	Type                  *string  `json:"type,omitempty"`
	Module                *string  `json:"module,omitempty"`
	NumberReplicas        *float32 `json:"number_replicas,omitempty"`
	ServerInstanceType    *string  `json:"server_instance_type,omitempty"`
	WorkerInstanceType    *string  `json:"worker_instance_type,omitempty"`
	SchedulerInstanceType *string  `json:"scheduler_instance_type,omitempty"`
}

MXNetOptionsAllOf struct for MXNetOptionsAllOf

func NewMXNetOptionsAllOf ¶

func NewMXNetOptionsAllOf() *MXNetOptionsAllOf

NewMXNetOptionsAllOf instantiates a new MXNetOptionsAllOf 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 NewMXNetOptionsAllOfWithDefaults ¶

func NewMXNetOptionsAllOfWithDefaults() *MXNetOptionsAllOf

NewMXNetOptionsAllOfWithDefaults instantiates a new MXNetOptionsAllOf 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 (*MXNetOptionsAllOf) GetModule ¶

func (o *MXNetOptionsAllOf) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*MXNetOptionsAllOf) GetModuleOk ¶

func (o *MXNetOptionsAllOf) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptionsAllOf) GetNumberReplicas ¶

func (o *MXNetOptionsAllOf) GetNumberReplicas() float32

GetNumberReplicas returns the NumberReplicas field value if set, zero value otherwise.

func (*MXNetOptionsAllOf) GetNumberReplicasOk ¶

func (o *MXNetOptionsAllOf) GetNumberReplicasOk() (*float32, bool)

GetNumberReplicasOk returns a tuple with the NumberReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptionsAllOf) GetSchedulerInstanceType ¶

func (o *MXNetOptionsAllOf) GetSchedulerInstanceType() string

GetSchedulerInstanceType returns the SchedulerInstanceType field value if set, zero value otherwise.

func (*MXNetOptionsAllOf) GetSchedulerInstanceTypeOk ¶

func (o *MXNetOptionsAllOf) GetSchedulerInstanceTypeOk() (*string, bool)

GetSchedulerInstanceTypeOk returns a tuple with the SchedulerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptionsAllOf) GetServerInstanceType ¶

func (o *MXNetOptionsAllOf) GetServerInstanceType() string

GetServerInstanceType returns the ServerInstanceType field value if set, zero value otherwise.

func (*MXNetOptionsAllOf) GetServerInstanceTypeOk ¶

func (o *MXNetOptionsAllOf) GetServerInstanceTypeOk() (*string, bool)

GetServerInstanceTypeOk returns a tuple with the ServerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptionsAllOf) GetType ¶

func (o *MXNetOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MXNetOptionsAllOf) GetTypeOk ¶

func (o *MXNetOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptionsAllOf) GetWorkerInstanceType ¶

func (o *MXNetOptionsAllOf) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*MXNetOptionsAllOf) GetWorkerInstanceTypeOk ¶

func (o *MXNetOptionsAllOf) GetWorkerInstanceTypeOk() (*string, bool)

GetWorkerInstanceTypeOk returns a tuple with the WorkerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MXNetOptionsAllOf) HasModule ¶

func (o *MXNetOptionsAllOf) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*MXNetOptionsAllOf) HasNumberReplicas ¶

func (o *MXNetOptionsAllOf) HasNumberReplicas() bool

HasNumberReplicas returns a boolean if a field has been set.

func (*MXNetOptionsAllOf) HasSchedulerInstanceType ¶

func (o *MXNetOptionsAllOf) HasSchedulerInstanceType() bool

HasSchedulerInstanceType returns a boolean if a field has been set.

func (*MXNetOptionsAllOf) HasServerInstanceType ¶

func (o *MXNetOptionsAllOf) HasServerInstanceType() bool

HasServerInstanceType returns a boolean if a field has been set.

func (*MXNetOptionsAllOf) HasType ¶

func (o *MXNetOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*MXNetOptionsAllOf) HasWorkerInstanceType ¶

func (o *MXNetOptionsAllOf) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (MXNetOptionsAllOf) MarshalJSON ¶

func (o MXNetOptionsAllOf) MarshalJSON() ([]byte, error)

func (*MXNetOptionsAllOf) SetModule ¶

func (o *MXNetOptionsAllOf) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*MXNetOptionsAllOf) SetNumberReplicas ¶

func (o *MXNetOptionsAllOf) SetNumberReplicas(v float32)

SetNumberReplicas gets a reference to the given float32 and assigns it to the NumberReplicas field.

func (*MXNetOptionsAllOf) SetSchedulerInstanceType ¶

func (o *MXNetOptionsAllOf) SetSchedulerInstanceType(v string)

SetSchedulerInstanceType gets a reference to the given string and assigns it to the SchedulerInstanceType field.

func (*MXNetOptionsAllOf) SetServerInstanceType ¶

func (o *MXNetOptionsAllOf) SetServerInstanceType(v string)

SetServerInstanceType gets a reference to the given string and assigns it to the ServerInstanceType field.

func (*MXNetOptionsAllOf) SetType ¶

func (o *MXNetOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*MXNetOptionsAllOf) SetWorkerInstanceType ¶

func (o *MXNetOptionsAllOf) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

type MailNotification ¶

type MailNotification struct {
	Notification
	Type     *string `json:"type,omitempty"`
	To       *string `json:"to,omitempty"`
	Subject  *string `json:"subject,omitempty"`
	From     *string `json:"from,omitempty"`
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
	Host     *string `json:"host,omitempty"`
	Port     *int32  `json:"port,omitempty"`
}

MailNotification struct for MailNotification

func NewMailNotification ¶

func NewMailNotification() *MailNotification

NewMailNotification instantiates a new MailNotification 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 NewMailNotificationWithDefaults ¶

func NewMailNotificationWithDefaults() *MailNotification

NewMailNotificationWithDefaults instantiates a new MailNotification 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 (*MailNotification) GetFrom ¶

func (o *MailNotification) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*MailNotification) GetFromOk ¶

func (o *MailNotification) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotification) GetHost ¶

func (o *MailNotification) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*MailNotification) GetHostOk ¶

func (o *MailNotification) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotification) GetPassword ¶

func (o *MailNotification) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*MailNotification) GetPasswordOk ¶

func (o *MailNotification) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotification) GetPort ¶

func (o *MailNotification) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*MailNotification) GetPortOk ¶

func (o *MailNotification) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotification) GetSubject ¶

func (o *MailNotification) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*MailNotification) GetSubjectOk ¶

func (o *MailNotification) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotification) GetTo ¶

func (o *MailNotification) GetTo() string

GetTo returns the To field value if set, zero value otherwise.

func (*MailNotification) GetToOk ¶

func (o *MailNotification) GetToOk() (*string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotification) GetType ¶

func (o *MailNotification) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MailNotification) GetTypeOk ¶

func (o *MailNotification) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotification) GetUsername ¶

func (o *MailNotification) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*MailNotification) GetUsernameOk ¶

func (o *MailNotification) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotification) HasFrom ¶

func (o *MailNotification) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*MailNotification) HasHost ¶

func (o *MailNotification) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*MailNotification) HasPassword ¶

func (o *MailNotification) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*MailNotification) HasPort ¶

func (o *MailNotification) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*MailNotification) HasSubject ¶

func (o *MailNotification) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*MailNotification) HasTo ¶

func (o *MailNotification) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*MailNotification) HasType ¶

func (o *MailNotification) HasType() bool

HasType returns a boolean if a field has been set.

func (*MailNotification) HasUsername ¶

func (o *MailNotification) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (MailNotification) MarshalJSON ¶

func (o MailNotification) MarshalJSON() ([]byte, error)

func (*MailNotification) SetFrom ¶

func (o *MailNotification) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*MailNotification) SetHost ¶

func (o *MailNotification) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*MailNotification) SetPassword ¶

func (o *MailNotification) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*MailNotification) SetPort ¶

func (o *MailNotification) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*MailNotification) SetSubject ¶

func (o *MailNotification) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*MailNotification) SetTo ¶

func (o *MailNotification) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

func (*MailNotification) SetType ¶

func (o *MailNotification) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*MailNotification) SetUsername ¶

func (o *MailNotification) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (MailNotification) ToMap ¶ added in v1.10.3

func (o MailNotification) ToMap() (map[string]interface{}, error)

type MailNotificationAllOf ¶

type MailNotificationAllOf struct {
	Type     *string `json:"type,omitempty"`
	To       *string `json:"to,omitempty"`
	Subject  *string `json:"subject,omitempty"`
	From     *string `json:"from,omitempty"`
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
	Host     *string `json:"host,omitempty"`
	Port     *int32  `json:"port,omitempty"`
}

MailNotificationAllOf struct for MailNotificationAllOf

func NewMailNotificationAllOf ¶

func NewMailNotificationAllOf() *MailNotificationAllOf

NewMailNotificationAllOf instantiates a new MailNotificationAllOf 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 NewMailNotificationAllOfWithDefaults ¶

func NewMailNotificationAllOfWithDefaults() *MailNotificationAllOf

NewMailNotificationAllOfWithDefaults instantiates a new MailNotificationAllOf 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 (*MailNotificationAllOf) GetFrom ¶

func (o *MailNotificationAllOf) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*MailNotificationAllOf) GetFromOk ¶

func (o *MailNotificationAllOf) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotificationAllOf) GetHost ¶

func (o *MailNotificationAllOf) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*MailNotificationAllOf) GetHostOk ¶

func (o *MailNotificationAllOf) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotificationAllOf) GetPassword ¶

func (o *MailNotificationAllOf) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*MailNotificationAllOf) GetPasswordOk ¶

func (o *MailNotificationAllOf) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotificationAllOf) GetPort ¶

func (o *MailNotificationAllOf) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*MailNotificationAllOf) GetPortOk ¶

func (o *MailNotificationAllOf) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotificationAllOf) GetSubject ¶

func (o *MailNotificationAllOf) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*MailNotificationAllOf) GetSubjectOk ¶

func (o *MailNotificationAllOf) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotificationAllOf) GetTo ¶

func (o *MailNotificationAllOf) GetTo() string

GetTo returns the To field value if set, zero value otherwise.

func (*MailNotificationAllOf) GetToOk ¶

func (o *MailNotificationAllOf) GetToOk() (*string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotificationAllOf) GetType ¶

func (o *MailNotificationAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MailNotificationAllOf) GetTypeOk ¶

func (o *MailNotificationAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotificationAllOf) GetUsername ¶

func (o *MailNotificationAllOf) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*MailNotificationAllOf) GetUsernameOk ¶

func (o *MailNotificationAllOf) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MailNotificationAllOf) HasFrom ¶

func (o *MailNotificationAllOf) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*MailNotificationAllOf) HasHost ¶

func (o *MailNotificationAllOf) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*MailNotificationAllOf) HasPassword ¶

func (o *MailNotificationAllOf) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*MailNotificationAllOf) HasPort ¶

func (o *MailNotificationAllOf) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*MailNotificationAllOf) HasSubject ¶

func (o *MailNotificationAllOf) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*MailNotificationAllOf) HasTo ¶

func (o *MailNotificationAllOf) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*MailNotificationAllOf) HasType ¶

func (o *MailNotificationAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*MailNotificationAllOf) HasUsername ¶

func (o *MailNotificationAllOf) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (MailNotificationAllOf) MarshalJSON ¶

func (o MailNotificationAllOf) MarshalJSON() ([]byte, error)

func (*MailNotificationAllOf) SetFrom ¶

func (o *MailNotificationAllOf) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*MailNotificationAllOf) SetHost ¶

func (o *MailNotificationAllOf) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*MailNotificationAllOf) SetPassword ¶

func (o *MailNotificationAllOf) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*MailNotificationAllOf) SetPort ¶

func (o *MailNotificationAllOf) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*MailNotificationAllOf) SetSubject ¶

func (o *MailNotificationAllOf) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*MailNotificationAllOf) SetTo ¶

func (o *MailNotificationAllOf) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

func (*MailNotificationAllOf) SetType ¶

func (o *MailNotificationAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*MailNotificationAllOf) SetUsername ¶

func (o *MailNotificationAllOf) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type ManagedOptions ¶ added in v1.10.3

type ManagedOptions struct {
	Env          *map[string]string `json:"env,omitempty"`
	InstanceType *string            `json:"instance_type,omitempty"`
}

ManagedOptions struct for ManagedOptions

func NewManagedOptions ¶ added in v1.10.3

func NewManagedOptions() *ManagedOptions

NewManagedOptions instantiates a new ManagedOptions 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 NewManagedOptionsWithDefaults ¶ added in v1.10.3

func NewManagedOptionsWithDefaults() *ManagedOptions

NewManagedOptionsWithDefaults instantiates a new ManagedOptions 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 (*ManagedOptions) GetEnv ¶ added in v1.10.3

func (o *ManagedOptions) GetEnv() map[string]string

GetEnv returns the Env field value if set, zero value otherwise.

func (*ManagedOptions) GetEnvOk ¶ added in v1.10.3

func (o *ManagedOptions) GetEnvOk() (*map[string]string, 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 (*ManagedOptions) GetInstanceType ¶ added in v1.10.3

func (o *ManagedOptions) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*ManagedOptions) GetInstanceTypeOk ¶ added in v1.10.3

func (o *ManagedOptions) GetInstanceTypeOk() (*string, bool)

GetInstanceTypeOk returns a tuple with the InstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ManagedOptions) HasEnv ¶ added in v1.10.3

func (o *ManagedOptions) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*ManagedOptions) HasInstanceType ¶ added in v1.10.3

func (o *ManagedOptions) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (ManagedOptions) MarshalJSON ¶ added in v1.10.3

func (o ManagedOptions) MarshalJSON() ([]byte, error)

func (*ManagedOptions) SetEnv ¶ added in v1.10.3

func (o *ManagedOptions) SetEnv(v map[string]string)

SetEnv gets a reference to the given map[string]string and assigns it to the Env field.

func (*ManagedOptions) SetInstanceType ¶ added in v1.10.3

func (o *ManagedOptions) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (ManagedOptions) ToMap ¶ added in v1.10.3

func (o ManagedOptions) ToMap() (map[string]interface{}, error)

type MappedNullable ¶ added in v1.10.3

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MariaDBOptions ¶ added in v1.10.3

type MariaDBOptions struct {
	DataWarehouseOptions
	Host     *string  `json:"host,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Database *string  `json:"database,omitempty"`
	Schema   *string  `json:"schema,omitempty"`
	Type     *string  `json:"type,omitempty"`
}

MariaDBOptions struct for MariaDBOptions

func NewMariaDBOptions ¶ added in v1.10.3

func NewMariaDBOptions() *MariaDBOptions

NewMariaDBOptions instantiates a new MariaDBOptions 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 NewMariaDBOptionsWithDefaults ¶ added in v1.10.3

func NewMariaDBOptionsWithDefaults() *MariaDBOptions

NewMariaDBOptionsWithDefaults instantiates a new MariaDBOptions 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 (*MariaDBOptions) GetDatabase ¶ added in v1.10.3

func (o *MariaDBOptions) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*MariaDBOptions) GetDatabaseOk ¶ added in v1.10.3

func (o *MariaDBOptions) GetDatabaseOk() (*string, bool)

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MariaDBOptions) GetHost ¶ added in v1.10.3

func (o *MariaDBOptions) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*MariaDBOptions) GetHostOk ¶ added in v1.10.3

func (o *MariaDBOptions) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MariaDBOptions) GetPort ¶ added in v1.10.3

func (o *MariaDBOptions) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*MariaDBOptions) GetPortOk ¶ added in v1.10.3

func (o *MariaDBOptions) GetPortOk() (*float32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MariaDBOptions) GetSchema ¶ added in v1.10.3

func (o *MariaDBOptions) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*MariaDBOptions) GetSchemaOk ¶ added in v1.10.3

func (o *MariaDBOptions) 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 (*MariaDBOptions) GetType ¶ added in v1.10.3

func (o *MariaDBOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MariaDBOptions) GetTypeOk ¶ added in v1.10.3

func (o *MariaDBOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MariaDBOptions) HasDatabase ¶ added in v1.10.3

func (o *MariaDBOptions) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*MariaDBOptions) HasHost ¶ added in v1.10.3

func (o *MariaDBOptions) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*MariaDBOptions) HasPort ¶ added in v1.10.3

func (o *MariaDBOptions) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*MariaDBOptions) HasSchema ¶ added in v1.10.3

func (o *MariaDBOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*MariaDBOptions) HasType ¶ added in v1.10.3

func (o *MariaDBOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (MariaDBOptions) MarshalJSON ¶ added in v1.10.3

func (o MariaDBOptions) MarshalJSON() ([]byte, error)

func (*MariaDBOptions) SetDatabase ¶ added in v1.10.3

func (o *MariaDBOptions) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*MariaDBOptions) SetHost ¶ added in v1.10.3

func (o *MariaDBOptions) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*MariaDBOptions) SetPort ¶ added in v1.10.3

func (o *MariaDBOptions) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

func (*MariaDBOptions) SetSchema ¶ added in v1.10.3

func (o *MariaDBOptions) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*MariaDBOptions) SetType ¶ added in v1.10.3

func (o *MariaDBOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (MariaDBOptions) ToMap ¶ added in v1.10.3

func (o MariaDBOptions) ToMap() (map[string]interface{}, error)

type MariaDBOptionsAllOf ¶ added in v1.10.3

type MariaDBOptionsAllOf struct {
	Type *string `json:"type,omitempty"`
}

MariaDBOptionsAllOf struct for MariaDBOptionsAllOf

func NewMariaDBOptionsAllOf ¶ added in v1.10.3

func NewMariaDBOptionsAllOf() *MariaDBOptionsAllOf

NewMariaDBOptionsAllOf instantiates a new MariaDBOptionsAllOf 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 NewMariaDBOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewMariaDBOptionsAllOfWithDefaults() *MariaDBOptionsAllOf

NewMariaDBOptionsAllOfWithDefaults instantiates a new MariaDBOptionsAllOf 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 (*MariaDBOptionsAllOf) GetType ¶ added in v1.10.3

func (o *MariaDBOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MariaDBOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *MariaDBOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MariaDBOptionsAllOf) HasType ¶ added in v1.10.3

func (o *MariaDBOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (MariaDBOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o MariaDBOptionsAllOf) MarshalJSON() ([]byte, error)

func (*MariaDBOptionsAllOf) SetType ¶ added in v1.10.3

func (o *MariaDBOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type MarketplaceAPIService ¶ added in v1.10.3

type MarketplaceAPIService service

MarketplaceAPIService MarketplaceAPI service

func (*MarketplaceAPIService) FindTemplateMetadata ¶ added in v1.10.3

func (a *MarketplaceAPIService) FindTemplateMetadata(ctx context.Context, name string, version string) ApiFindTemplateMetadataRequest

FindTemplateMetadata Get template metadata

Get all the metadata from a template.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name
@param version
@return ApiFindTemplateMetadataRequest

func (*MarketplaceAPIService) FindTemplateMetadataExecute ¶ added in v1.10.3

func (a *MarketplaceAPIService) FindTemplateMetadataExecute(r ApiFindTemplateMetadataRequest) (*http.Response, error)

Execute executes the request

func (*MarketplaceAPIService) FindTemplateVersions ¶ added in v1.10.3

func (a *MarketplaceAPIService) FindTemplateVersions(ctx context.Context, name string) ApiFindTemplateVersionsRequest

FindTemplateVersions Get template versions

Get the list of all available versions for a template.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name
@return ApiFindTemplateVersionsRequest

func (*MarketplaceAPIService) FindTemplateVersionsExecute ¶ added in v1.10.3

func (a *MarketplaceAPIService) FindTemplateVersionsExecute(r ApiFindTemplateVersionsRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*MarketplaceAPIService) FindTemplates ¶ added in v1.10.3

FindTemplates Get templates

Get the list of all available templates.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindTemplatesRequest

func (*MarketplaceAPIService) FindTemplatesExecute ¶ added in v1.10.3

func (a *MarketplaceAPIService) FindTemplatesExecute(r ApiFindTemplatesRequest) ([]map[string]string, *http.Response, error)

Execute executes the request

@return []map[string]string

func (*MarketplaceAPIService) GenerateTemplate ¶ added in v1.10.3

func (a *MarketplaceAPIService) GenerateTemplate(ctx context.Context, name string, version string) ApiGenerateTemplateRequest

GenerateTemplate Generate dag from a template

Generates the dag of a given template and fills it with parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name
@param version
@return ApiGenerateTemplateRequest

func (*MarketplaceAPIService) GenerateTemplateExecute ¶ added in v1.10.3

func (a *MarketplaceAPIService) GenerateTemplateExecute(r ApiGenerateTemplateRequest) (*http.Response, error)

Execute executes the request

type MavenLibrary ¶

type MavenLibrary struct {
	Library
	Type       *string `json:"type,omitempty"`
	Repo       *string `json:"repo,omitempty"`
	Dependency *string `json:"dependency,omitempty"`
}

MavenLibrary struct for MavenLibrary

func NewMavenLibrary ¶

func NewMavenLibrary() *MavenLibrary

NewMavenLibrary instantiates a new MavenLibrary 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 NewMavenLibraryWithDefaults ¶

func NewMavenLibraryWithDefaults() *MavenLibrary

NewMavenLibraryWithDefaults instantiates a new MavenLibrary 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 (*MavenLibrary) GetDependency ¶

func (o *MavenLibrary) GetDependency() string

GetDependency returns the Dependency field value if set, zero value otherwise.

func (*MavenLibrary) GetDependencyOk ¶

func (o *MavenLibrary) GetDependencyOk() (*string, bool)

GetDependencyOk returns a tuple with the Dependency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MavenLibrary) GetRepo ¶

func (o *MavenLibrary) GetRepo() string

GetRepo returns the Repo field value if set, zero value otherwise.

func (*MavenLibrary) GetRepoOk ¶

func (o *MavenLibrary) GetRepoOk() (*string, bool)

GetRepoOk returns a tuple with the Repo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MavenLibrary) GetType ¶

func (o *MavenLibrary) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MavenLibrary) GetTypeOk ¶

func (o *MavenLibrary) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MavenLibrary) HasDependency ¶

func (o *MavenLibrary) HasDependency() bool

HasDependency returns a boolean if a field has been set.

func (*MavenLibrary) HasRepo ¶

func (o *MavenLibrary) HasRepo() bool

HasRepo returns a boolean if a field has been set.

func (*MavenLibrary) HasType ¶

func (o *MavenLibrary) HasType() bool

HasType returns a boolean if a field has been set.

func (MavenLibrary) MarshalJSON ¶

func (o MavenLibrary) MarshalJSON() ([]byte, error)

func (*MavenLibrary) SetDependency ¶

func (o *MavenLibrary) SetDependency(v string)

SetDependency gets a reference to the given string and assigns it to the Dependency field.

func (*MavenLibrary) SetRepo ¶

func (o *MavenLibrary) SetRepo(v string)

SetRepo gets a reference to the given string and assigns it to the Repo field.

func (*MavenLibrary) SetType ¶

func (o *MavenLibrary) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (MavenLibrary) ToMap ¶ added in v1.10.3

func (o MavenLibrary) ToMap() (map[string]interface{}, error)

type MavenLibraryAllOf ¶

type MavenLibraryAllOf struct {
	Type       *string `json:"type,omitempty"`
	Repo       *string `json:"repo,omitempty"`
	Dependency *string `json:"dependency,omitempty"`
}

MavenLibraryAllOf struct for MavenLibraryAllOf

func NewMavenLibraryAllOf ¶

func NewMavenLibraryAllOf() *MavenLibraryAllOf

NewMavenLibraryAllOf instantiates a new MavenLibraryAllOf 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 NewMavenLibraryAllOfWithDefaults ¶

func NewMavenLibraryAllOfWithDefaults() *MavenLibraryAllOf

NewMavenLibraryAllOfWithDefaults instantiates a new MavenLibraryAllOf 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 (*MavenLibraryAllOf) GetDependency ¶

func (o *MavenLibraryAllOf) GetDependency() string

GetDependency returns the Dependency field value if set, zero value otherwise.

func (*MavenLibraryAllOf) GetDependencyOk ¶

func (o *MavenLibraryAllOf) GetDependencyOk() (*string, bool)

GetDependencyOk returns a tuple with the Dependency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MavenLibraryAllOf) GetRepo ¶

func (o *MavenLibraryAllOf) GetRepo() string

GetRepo returns the Repo field value if set, zero value otherwise.

func (*MavenLibraryAllOf) GetRepoOk ¶

func (o *MavenLibraryAllOf) GetRepoOk() (*string, bool)

GetRepoOk returns a tuple with the Repo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MavenLibraryAllOf) GetType ¶

func (o *MavenLibraryAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MavenLibraryAllOf) GetTypeOk ¶

func (o *MavenLibraryAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MavenLibraryAllOf) HasDependency ¶

func (o *MavenLibraryAllOf) HasDependency() bool

HasDependency returns a boolean if a field has been set.

func (*MavenLibraryAllOf) HasRepo ¶

func (o *MavenLibraryAllOf) HasRepo() bool

HasRepo returns a boolean if a field has been set.

func (*MavenLibraryAllOf) HasType ¶

func (o *MavenLibraryAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (MavenLibraryAllOf) MarshalJSON ¶

func (o MavenLibraryAllOf) MarshalJSON() ([]byte, error)

func (*MavenLibraryAllOf) SetDependency ¶

func (o *MavenLibraryAllOf) SetDependency(v string)

SetDependency gets a reference to the given string and assigns it to the Dependency field.

func (*MavenLibraryAllOf) SetRepo ¶

func (o *MavenLibraryAllOf) SetRepo(v string)

SetRepo gets a reference to the given string and assigns it to the Repo field.

func (*MavenLibraryAllOf) SetType ¶

func (o *MavenLibraryAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type MaxParams ¶ added in v1.10.3

type MaxParams struct {
	// Maximum aggregation.
	Type *string `json:"type,omitempty"`
	// Column(s) to compute the maximum.
	Columns []string `json:"columns"`
}

MaxParams struct for MaxParams

func NewMaxParams ¶ added in v1.10.3

func NewMaxParams(columns []string) *MaxParams

NewMaxParams instantiates a new MaxParams 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 NewMaxParamsWithDefaults ¶ added in v1.10.3

func NewMaxParamsWithDefaults() *MaxParams

NewMaxParamsWithDefaults instantiates a new MaxParams 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 (*MaxParams) GetColumns ¶ added in v1.10.3

func (o *MaxParams) GetColumns() []string

GetColumns returns the Columns field value

func (*MaxParams) GetColumnsOk ¶ added in v1.10.3

func (o *MaxParams) GetColumnsOk() ([]string, bool)

GetColumnsOk returns a tuple with the Columns field value and a boolean to check if the value has been set.

func (*MaxParams) GetType ¶ added in v1.10.3

func (o *MaxParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MaxParams) GetTypeOk ¶ added in v1.10.3

func (o *MaxParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaxParams) HasType ¶ added in v1.10.3

func (o *MaxParams) HasType() bool

HasType returns a boolean if a field has been set.

func (MaxParams) MarshalJSON ¶ added in v1.10.3

func (o MaxParams) MarshalJSON() ([]byte, error)

func (*MaxParams) SetColumns ¶ added in v1.10.3

func (o *MaxParams) SetColumns(v []string)

SetColumns sets field value

func (*MaxParams) SetType ¶ added in v1.10.3

func (o *MaxParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (MaxParams) ToMap ¶ added in v1.10.3

func (o MaxParams) ToMap() (map[string]interface{}, error)

func (*MaxParams) UnmarshalJSON ¶ added in v1.10.3

func (o *MaxParams) UnmarshalJSON(bytes []byte) (err error)

type MeanParams ¶ added in v1.10.3

type MeanParams struct {
	// Mean aggregation.
	Type *string `json:"type,omitempty"`
	// Column(s) to compute the mean.
	Columns []string `json:"columns"`
}

MeanParams struct for MeanParams

func NewMeanParams ¶ added in v1.10.3

func NewMeanParams(columns []string) *MeanParams

NewMeanParams instantiates a new MeanParams 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 NewMeanParamsWithDefaults ¶ added in v1.10.3

func NewMeanParamsWithDefaults() *MeanParams

NewMeanParamsWithDefaults instantiates a new MeanParams 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 (*MeanParams) GetColumns ¶ added in v1.10.3

func (o *MeanParams) GetColumns() []string

GetColumns returns the Columns field value

func (*MeanParams) GetColumnsOk ¶ added in v1.10.3

func (o *MeanParams) GetColumnsOk() ([]string, bool)

GetColumnsOk returns a tuple with the Columns field value and a boolean to check if the value has been set.

func (*MeanParams) GetType ¶ added in v1.10.3

func (o *MeanParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MeanParams) GetTypeOk ¶ added in v1.10.3

func (o *MeanParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MeanParams) HasType ¶ added in v1.10.3

func (o *MeanParams) HasType() bool

HasType returns a boolean if a field has been set.

func (MeanParams) MarshalJSON ¶ added in v1.10.3

func (o MeanParams) MarshalJSON() ([]byte, error)

func (*MeanParams) SetColumns ¶ added in v1.10.3

func (o *MeanParams) SetColumns(v []string)

SetColumns sets field value

func (*MeanParams) SetType ¶ added in v1.10.3

func (o *MeanParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (MeanParams) ToMap ¶ added in v1.10.3

func (o MeanParams) ToMap() (map[string]interface{}, error)

func (*MeanParams) UnmarshalJSON ¶ added in v1.10.3

func (o *MeanParams) UnmarshalJSON(bytes []byte) (err error)

type Message ¶

type Message struct {
	To         *string            `json:"to,omitempty"`
	From       *string            `json:"from,omitempty"`
	Subject    *string            `json:"subject,omitempty"`
	Body       *string            `json:"body,omitempty"`
	Importance *string            `json:"importance,omitempty"`
	Vars       *map[string]string `json:"vars,omitempty"`
}

Message struct for Message

func NewMessage ¶

func NewMessage() *Message

NewMessage instantiates a new Message 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 NewMessageWithDefaults ¶

func NewMessageWithDefaults() *Message

NewMessageWithDefaults instantiates a new Message 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 (*Message) GetBody ¶

func (o *Message) GetBody() string

GetBody returns the Body field value if set, zero value otherwise.

func (*Message) GetBodyOk ¶

func (o *Message) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Message) GetFrom ¶

func (o *Message) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*Message) GetFromOk ¶

func (o *Message) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Message) GetImportance ¶

func (o *Message) GetImportance() string

GetImportance returns the Importance field value if set, zero value otherwise.

func (*Message) GetImportanceOk ¶

func (o *Message) GetImportanceOk() (*string, bool)

GetImportanceOk returns a tuple with the Importance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Message) GetSubject ¶

func (o *Message) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*Message) GetSubjectOk ¶

func (o *Message) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Message) GetTo ¶

func (o *Message) GetTo() string

GetTo returns the To field value if set, zero value otherwise.

func (*Message) GetToOk ¶

func (o *Message) GetToOk() (*string, bool)

GetToOk returns a tuple with the To field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Message) GetVars ¶

func (o *Message) GetVars() map[string]string

GetVars returns the Vars field value if set, zero value otherwise.

func (*Message) GetVarsOk ¶

func (o *Message) GetVarsOk() (*map[string]string, bool)

GetVarsOk returns a tuple with the Vars field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Message) HasBody ¶

func (o *Message) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*Message) HasFrom ¶

func (o *Message) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*Message) HasImportance ¶

func (o *Message) HasImportance() bool

HasImportance returns a boolean if a field has been set.

func (*Message) HasSubject ¶

func (o *Message) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*Message) HasTo ¶

func (o *Message) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*Message) HasVars ¶

func (o *Message) HasVars() bool

HasVars returns a boolean if a field has been set.

func (Message) MarshalJSON ¶

func (o Message) MarshalJSON() ([]byte, error)

func (*Message) SetBody ¶

func (o *Message) SetBody(v string)

SetBody gets a reference to the given string and assigns it to the Body field.

func (*Message) SetFrom ¶

func (o *Message) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*Message) SetImportance ¶

func (o *Message) SetImportance(v string)

SetImportance gets a reference to the given string and assigns it to the Importance field.

func (*Message) SetSubject ¶

func (o *Message) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*Message) SetTo ¶

func (o *Message) SetTo(v string)

SetTo gets a reference to the given string and assigns it to the To field.

func (*Message) SetVars ¶

func (o *Message) SetVars(v map[string]string)

SetVars gets a reference to the given map[string]string and assigns it to the Vars field.

func (Message) ToMap ¶ added in v1.10.3

func (o Message) ToMap() (map[string]interface{}, error)

type MessageAPIService ¶ added in v1.10.3

type MessageAPIService service

MessageAPIService MessageAPI service

func (*MessageAPIService) SendMessage ¶ added in v1.10.3

SendMessage Send an message

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSendMessageRequest

func (*MessageAPIService) SendMessageExecute ¶ added in v1.10.3

func (a *MessageAPIService) SendMessageExecute(r ApiSendMessageRequest) (*http.Response, error)

Execute executes the request

type Metadata ¶ added in v1.10.3

type Metadata struct {
	Name        string      `json:"name"`
	Description string      `json:"description"`
	Parameters  []Parameter `json:"parameters"`
}

Metadata Metadata object.

func NewMetadata ¶ added in v1.10.3

func NewMetadata(name string, description string, parameters []Parameter) *Metadata

NewMetadata instantiates a new Metadata 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 NewMetadataWithDefaults ¶ added in v1.10.3

func NewMetadataWithDefaults() *Metadata

NewMetadataWithDefaults instantiates a new Metadata 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 (*Metadata) GetDescription ¶ added in v1.10.3

func (o *Metadata) GetDescription() string

GetDescription returns the Description field value

func (*Metadata) GetDescriptionOk ¶ added in v1.10.3

func (o *Metadata) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*Metadata) GetName ¶ added in v1.10.3

func (o *Metadata) GetName() string

GetName returns the Name field value

func (*Metadata) GetNameOk ¶ added in v1.10.3

func (o *Metadata) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Metadata) GetParameters ¶ added in v1.10.3

func (o *Metadata) GetParameters() []Parameter

GetParameters returns the Parameters field value

func (*Metadata) GetParametersOk ¶ added in v1.10.3

func (o *Metadata) GetParametersOk() ([]Parameter, bool)

GetParametersOk returns a tuple with the Parameters field value and a boolean to check if the value has been set.

func (Metadata) MarshalJSON ¶ added in v1.10.3

func (o Metadata) MarshalJSON() ([]byte, error)

func (*Metadata) SetDescription ¶ added in v1.10.3

func (o *Metadata) SetDescription(v string)

SetDescription sets field value

func (*Metadata) SetName ¶ added in v1.10.3

func (o *Metadata) SetName(v string)

SetName sets field value

func (*Metadata) SetParameters ¶ added in v1.10.3

func (o *Metadata) SetParameters(v []Parameter)

SetParameters sets field value

func (Metadata) ToMap ¶ added in v1.10.3

func (o Metadata) ToMap() (map[string]interface{}, error)

func (*Metadata) UnmarshalJSON ¶ added in v1.10.3

func (o *Metadata) UnmarshalJSON(bytes []byte) (err error)

type Metric ¶

type Metric struct {
	At    *time.Time `json:"at,omitempty"`
	Value *float64   `json:"value,omitempty"`
}

Metric struct for Metric

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) GetAt ¶

func (o *Metric) GetAt() time.Time

GetAt returns the At field value if set, zero value otherwise.

func (*Metric) GetAtOk ¶

func (o *Metric) GetAtOk() (*time.Time, bool)

GetAtOk returns a tuple with the At 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) HasAt ¶

func (o *Metric) HasAt() bool

HasAt 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) SetAt ¶

func (o *Metric) SetAt(v time.Time)

SetAt gets a reference to the given time.Time and assigns it to the At 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 ¶ added in v1.10.3

func (o Metric) ToMap() (map[string]interface{}, error)

type MinParams ¶ added in v1.10.3

type MinParams struct {
	// Minimum aggregation.
	Type *string `json:"type,omitempty"`
	// Column(s) to compute the minimum.
	Columns []string `json:"columns"`
}

MinParams struct for MinParams

func NewMinParams ¶ added in v1.10.3

func NewMinParams(columns []string) *MinParams

NewMinParams instantiates a new MinParams 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 NewMinParamsWithDefaults ¶ added in v1.10.3

func NewMinParamsWithDefaults() *MinParams

NewMinParamsWithDefaults instantiates a new MinParams 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 (*MinParams) GetColumns ¶ added in v1.10.3

func (o *MinParams) GetColumns() []string

GetColumns returns the Columns field value

func (*MinParams) GetColumnsOk ¶ added in v1.10.3

func (o *MinParams) GetColumnsOk() ([]string, bool)

GetColumnsOk returns a tuple with the Columns field value and a boolean to check if the value has been set.

func (*MinParams) GetType ¶ added in v1.10.3

func (o *MinParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MinParams) GetTypeOk ¶ added in v1.10.3

func (o *MinParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MinParams) HasType ¶ added in v1.10.3

func (o *MinParams) HasType() bool

HasType returns a boolean if a field has been set.

func (MinParams) MarshalJSON ¶ added in v1.10.3

func (o MinParams) MarshalJSON() ([]byte, error)

func (*MinParams) SetColumns ¶ added in v1.10.3

func (o *MinParams) SetColumns(v []string)

SetColumns sets field value

func (*MinParams) SetType ¶ added in v1.10.3

func (o *MinParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (MinParams) ToMap ¶ added in v1.10.3

func (o MinParams) ToMap() (map[string]interface{}, error)

func (*MinParams) UnmarshalJSON ¶ added in v1.10.3

func (o *MinParams) UnmarshalJSON(bytes []byte) (err error)

type Model ¶ added in v1.10.3

type Model struct {
	Id          *string                           `json:"id,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
	Labels      *map[string]string                `json:"labels,omitempty"`
}

Model struct for Model

func NewModel ¶ added in v1.10.3

func NewModel() *Model

NewModel instantiates a new Model 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 NewModelWithDefaults ¶ added in v1.10.3

func NewModelWithDefaults() *Model

NewModelWithDefaults instantiates a new Model 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 (*Model) GetCreated ¶ added in v1.10.3

func (o *Model) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Model) GetCreatedOk ¶ added in v1.10.3

func (o *Model) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Model) GetDescription ¶ added in v1.10.3

func (o *Model) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Model) GetDescriptionOk ¶ added in v1.10.3

func (o *Model) 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 (*Model) GetId ¶ added in v1.10.3

func (o *Model) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Model) GetIdOk ¶ added in v1.10.3

func (o *Model) 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 (*Model) GetLabels ¶ added in v1.10.3

func (o *Model) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Model) GetLabelsOk ¶ added in v1.10.3

func (o *Model) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Model) GetMetadata ¶ added in v1.10.3

func (o *Model) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Model) GetMetadataOk ¶ added in v1.10.3

func (o *Model) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Model) GetName ¶ added in v1.10.3

func (o *Model) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Model) GetNameOk ¶ added in v1.10.3

func (o *Model) 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 (*Model) GetUpdated ¶ added in v1.10.3

func (o *Model) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Model) GetUpdatedOk ¶ added in v1.10.3

func (o *Model) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Model) HasCreated ¶ added in v1.10.3

func (o *Model) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Model) HasDescription ¶ added in v1.10.3

func (o *Model) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Model) HasId ¶ added in v1.10.3

func (o *Model) HasId() bool

HasId returns a boolean if a field has been set.

func (*Model) HasLabels ¶ added in v1.10.3

func (o *Model) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Model) HasMetadata ¶ added in v1.10.3

func (o *Model) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Model) HasName ¶ added in v1.10.3

func (o *Model) HasName() bool

HasName returns a boolean if a field has been set.

func (*Model) HasUpdated ¶ added in v1.10.3

func (o *Model) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Model) MarshalJSON ¶ added in v1.10.3

func (o Model) MarshalJSON() ([]byte, error)

func (*Model) SetCreated ¶ added in v1.10.3

func (o *Model) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Model) SetDescription ¶ added in v1.10.3

func (o *Model) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Model) SetId ¶ added in v1.10.3

func (o *Model) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Model) SetLabels ¶ added in v1.10.3

func (o *Model) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Model) SetMetadata ¶ added in v1.10.3

func (o *Model) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Model) SetName ¶ added in v1.10.3

func (o *Model) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Model) SetUpdated ¶ added in v1.10.3

func (o *Model) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Model) ToMap ¶ added in v1.10.3

func (o Model) ToMap() (map[string]interface{}, error)

type ModelAPIService ¶ added in v1.10.3

type ModelAPIService service

ModelAPIService ModelAPI service

func (*ModelAPIService) CreateModel ¶ added in v1.10.3

CreateModel Create a model

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateModelRequest

func (*ModelAPIService) CreateModelExecute ¶ added in v1.10.3

func (a *ModelAPIService) CreateModelExecute(r ApiCreateModelRequest) (*Model, *http.Response, error)

Execute executes the request

@return Model

func (*ModelAPIService) DeleteModelById ¶ added in v1.10.3

func (a *ModelAPIService) DeleteModelById(ctx context.Context, modelId string) ApiDeleteModelByIdRequest

DeleteModelById Delete a model by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelId Id of the model
@return ApiDeleteModelByIdRequest

func (*ModelAPIService) DeleteModelByIdExecute ¶ added in v1.10.3

func (a *ModelAPIService) DeleteModelByIdExecute(r ApiDeleteModelByIdRequest) (*http.Response, error)

Execute executes the request

func (*ModelAPIService) DeleteModelVersionById ¶ added in v1.10.3

func (a *ModelAPIService) DeleteModelVersionById(ctx context.Context, modelId string, versionId string) ApiDeleteModelVersionByIdRequest

DeleteModelVersionById Delete a model by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelId Id of the model
@param versionId Id of the version
@return ApiDeleteModelVersionByIdRequest

func (*ModelAPIService) DeleteModelVersionByIdExecute ¶ added in v1.10.3

func (a *ModelAPIService) DeleteModelVersionByIdExecute(r ApiDeleteModelVersionByIdRequest) (*http.Response, error)

Execute executes the request

func (*ModelAPIService) DownloadModel ¶ added in v1.10.3

func (a *ModelAPIService) DownloadModel(ctx context.Context, modelId string, versionId string) ApiDownloadModelRequest

DownloadModel Download model by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelId Id of the model
@param versionId Id of the version
@return ApiDownloadModelRequest

func (*ModelAPIService) DownloadModelExecute ¶ added in v1.10.3

func (a *ModelAPIService) DownloadModelExecute(r ApiDownloadModelRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*ModelAPIService) FindModelById ¶ added in v1.10.3

func (a *ModelAPIService) FindModelById(ctx context.Context, modelId string) ApiFindModelByIdRequest

FindModelById Find model by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelId Id of the model
@return ApiFindModelByIdRequest

func (*ModelAPIService) FindModelByIdExecute ¶ added in v1.10.3

func (a *ModelAPIService) FindModelByIdExecute(r ApiFindModelByIdRequest) (*Model, *http.Response, error)

Execute executes the request

@return Model

func (*ModelAPIService) FindModelVersionMetadata ¶ added in v1.10.3

func (a *ModelAPIService) FindModelVersionMetadata(ctx context.Context, modelId string, versionId string) ApiFindModelVersionMetadataRequest

FindModelVersionMetadata Get model metadata by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelId Id of the library
@param versionId Id of the version
@return ApiFindModelVersionMetadataRequest

func (*ModelAPIService) FindModelVersionMetadataExecute ¶ added in v1.10.3

func (a *ModelAPIService) FindModelVersionMetadataExecute(r ApiFindModelVersionMetadataRequest) (*BlobMetadata, *http.Response, error)

Execute executes the request

@return BlobMetadata

func (*ModelAPIService) FindModels ¶ added in v1.10.3

FindModels Retrieve all models

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindModelsRequest

func (*ModelAPIService) FindModelsExecute ¶ added in v1.10.3

func (a *ModelAPIService) FindModelsExecute(r ApiFindModelsRequest) ([]Model, *http.Response, error)

Execute executes the request

@return []Model

func (*ModelAPIService) FindVersionsForModel ¶ added in v1.10.3

func (a *ModelAPIService) FindVersionsForModel(ctx context.Context, modelId string) ApiFindVersionsForModelRequest

FindVersionsForModel Retrieve all versions for a model

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelId Id of the model
@return ApiFindVersionsForModelRequest

func (*ModelAPIService) FindVersionsForModelExecute ¶ added in v1.10.3

func (a *ModelAPIService) FindVersionsForModelExecute(r ApiFindVersionsForModelRequest) ([]ModelVersion, *http.Response, error)

Execute executes the request

@return []ModelVersion

func (*ModelAPIService) UpdateModel ¶ added in v1.10.3

func (a *ModelAPIService) UpdateModel(ctx context.Context, modelId string) ApiUpdateModelRequest

UpdateModel Update a model

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modelId Id of the model
@return ApiUpdateModelRequest

func (*ModelAPIService) UpdateModelExecute ¶ added in v1.10.3

func (a *ModelAPIService) UpdateModelExecute(r ApiUpdateModelRequest) (*Model, *http.Response, error)

Execute executes the request

@return Model

type ModelVersion ¶ added in v1.10.3

type ModelVersion struct {
	Id       *string                           `json:"id,omitempty"`
	Name     *string                           `json:"name,omitempty"`
	Created  *time.Time                        `json:"created,omitempty"`
	Updated  *time.Time                        `json:"updated,omitempty"`
	Metadata map[string]map[string]interface{} `json:"metadata,omitempty"`
}

ModelVersion struct for ModelVersion

func NewModelVersion ¶ added in v1.10.3

func NewModelVersion() *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 ¶ added in v1.10.3

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) GetCreated ¶ added in v1.10.3

func (o *ModelVersion) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*ModelVersion) GetCreatedOk ¶ added in v1.10.3

func (o *ModelVersion) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetId ¶ added in v1.10.3

func (o *ModelVersion) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ModelVersion) GetIdOk ¶ added in v1.10.3

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) GetMetadata ¶ added in v1.10.3

func (o *ModelVersion) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelVersion) GetMetadataOk ¶ added in v1.10.3

func (o *ModelVersion) GetMetadataOk() (map[string]map[string]interface{}, 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 (*ModelVersion) GetName ¶ added in v1.10.3

func (o *ModelVersion) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ModelVersion) GetNameOk ¶ added in v1.10.3

func (o *ModelVersion) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) GetUpdated ¶ added in v1.10.3

func (o *ModelVersion) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*ModelVersion) GetUpdatedOk ¶ added in v1.10.3

func (o *ModelVersion) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelVersion) HasCreated ¶ added in v1.10.3

func (o *ModelVersion) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*ModelVersion) HasId ¶ added in v1.10.3

func (o *ModelVersion) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelVersion) HasMetadata ¶ added in v1.10.3

func (o *ModelVersion) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ModelVersion) HasName ¶ added in v1.10.3

func (o *ModelVersion) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModelVersion) HasUpdated ¶ added in v1.10.3

func (o *ModelVersion) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (ModelVersion) MarshalJSON ¶ added in v1.10.3

func (o ModelVersion) MarshalJSON() ([]byte, error)

func (*ModelVersion) SetCreated ¶ added in v1.10.3

func (o *ModelVersion) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*ModelVersion) SetId ¶ added in v1.10.3

func (o *ModelVersion) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ModelVersion) SetMetadata ¶ added in v1.10.3

func (o *ModelVersion) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*ModelVersion) SetName ¶ added in v1.10.3

func (o *ModelVersion) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelVersion) SetUpdated ¶ added in v1.10.3

func (o *ModelVersion) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (ModelVersion) ToMap ¶ added in v1.10.3

func (o ModelVersion) ToMap() (map[string]interface{}, error)

type MySQLOptions ¶ added in v1.10.3

type MySQLOptions struct {
	DataWarehouseOptions
	Host     *string  `json:"host,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Database *string  `json:"database,omitempty"`
	Schema   *string  `json:"schema,omitempty"`
	Type     *string  `json:"type,omitempty"`
}

MySQLOptions struct for MySQLOptions

func NewMySQLOptions ¶ added in v1.10.3

func NewMySQLOptions() *MySQLOptions

NewMySQLOptions instantiates a new MySQLOptions 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 NewMySQLOptionsWithDefaults ¶ added in v1.10.3

func NewMySQLOptionsWithDefaults() *MySQLOptions

NewMySQLOptionsWithDefaults instantiates a new MySQLOptions 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 (*MySQLOptions) GetDatabase ¶ added in v1.10.3

func (o *MySQLOptions) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*MySQLOptions) GetDatabaseOk ¶ added in v1.10.3

func (o *MySQLOptions) GetDatabaseOk() (*string, bool)

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MySQLOptions) GetHost ¶ added in v1.10.3

func (o *MySQLOptions) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*MySQLOptions) GetHostOk ¶ added in v1.10.3

func (o *MySQLOptions) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MySQLOptions) GetPort ¶ added in v1.10.3

func (o *MySQLOptions) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*MySQLOptions) GetPortOk ¶ added in v1.10.3

func (o *MySQLOptions) GetPortOk() (*float32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MySQLOptions) GetSchema ¶ added in v1.10.3

func (o *MySQLOptions) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*MySQLOptions) GetSchemaOk ¶ added in v1.10.3

func (o *MySQLOptions) 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 (*MySQLOptions) GetType ¶ added in v1.10.3

func (o *MySQLOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MySQLOptions) GetTypeOk ¶ added in v1.10.3

func (o *MySQLOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MySQLOptions) HasDatabase ¶ added in v1.10.3

func (o *MySQLOptions) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*MySQLOptions) HasHost ¶ added in v1.10.3

func (o *MySQLOptions) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*MySQLOptions) HasPort ¶ added in v1.10.3

func (o *MySQLOptions) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*MySQLOptions) HasSchema ¶ added in v1.10.3

func (o *MySQLOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*MySQLOptions) HasType ¶ added in v1.10.3

func (o *MySQLOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (MySQLOptions) MarshalJSON ¶ added in v1.10.3

func (o MySQLOptions) MarshalJSON() ([]byte, error)

func (*MySQLOptions) SetDatabase ¶ added in v1.10.3

func (o *MySQLOptions) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*MySQLOptions) SetHost ¶ added in v1.10.3

func (o *MySQLOptions) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*MySQLOptions) SetPort ¶ added in v1.10.3

func (o *MySQLOptions) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

func (*MySQLOptions) SetSchema ¶ added in v1.10.3

func (o *MySQLOptions) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*MySQLOptions) SetType ¶ added in v1.10.3

func (o *MySQLOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (MySQLOptions) ToMap ¶ added in v1.10.3

func (o MySQLOptions) ToMap() (map[string]interface{}, error)

type MySQLOptionsAllOf ¶ added in v1.10.3

type MySQLOptionsAllOf struct {
	Type *string `json:"type,omitempty"`
}

MySQLOptionsAllOf struct for MySQLOptionsAllOf

func NewMySQLOptionsAllOf ¶ added in v1.10.3

func NewMySQLOptionsAllOf() *MySQLOptionsAllOf

NewMySQLOptionsAllOf instantiates a new MySQLOptionsAllOf 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 NewMySQLOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewMySQLOptionsAllOfWithDefaults() *MySQLOptionsAllOf

NewMySQLOptionsAllOfWithDefaults instantiates a new MySQLOptionsAllOf 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 (*MySQLOptionsAllOf) GetType ¶ added in v1.10.3

func (o *MySQLOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*MySQLOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *MySQLOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MySQLOptionsAllOf) HasType ¶ added in v1.10.3

func (o *MySQLOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (MySQLOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o MySQLOptionsAllOf) MarshalJSON() ([]byte, error)

func (*MySQLOptionsAllOf) SetType ¶ added in v1.10.3

func (o *MySQLOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type NotEqualFilter ¶ added in v1.10.3

type NotEqualFilter struct {
	// Left operator for filter.
	Left string `json:"left"`
	// Right operator for filter.
	Right string `json:"right"`
	// Operator for NOT EQUAL filter.
	Type *string `json:"type,omitempty"`
}

NotEqualFilter Filter values that are not equal to a given value. Attributes ---------- type : RelationalOperatorType Type of the filter.

func NewNotEqualFilter ¶ added in v1.10.3

func NewNotEqualFilter(left string, right string) *NotEqualFilter

NewNotEqualFilter instantiates a new NotEqualFilter 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 NewNotEqualFilterWithDefaults ¶ added in v1.10.3

func NewNotEqualFilterWithDefaults() *NotEqualFilter

NewNotEqualFilterWithDefaults instantiates a new NotEqualFilter 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 (*NotEqualFilter) GetLeft ¶ added in v1.10.3

func (o *NotEqualFilter) GetLeft() string

GetLeft returns the Left field value

func (*NotEqualFilter) GetLeftOk ¶ added in v1.10.3

func (o *NotEqualFilter) GetLeftOk() (*string, bool)

GetLeftOk returns a tuple with the Left field value and a boolean to check if the value has been set.

func (*NotEqualFilter) GetRight ¶ added in v1.10.3

func (o *NotEqualFilter) GetRight() string

GetRight returns the Right field value

func (*NotEqualFilter) GetRightOk ¶ added in v1.10.3

func (o *NotEqualFilter) GetRightOk() (*string, bool)

GetRightOk returns a tuple with the Right field value and a boolean to check if the value has been set.

func (*NotEqualFilter) GetType ¶ added in v1.10.3

func (o *NotEqualFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*NotEqualFilter) GetTypeOk ¶ added in v1.10.3

func (o *NotEqualFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotEqualFilter) HasType ¶ added in v1.10.3

func (o *NotEqualFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (NotEqualFilter) MarshalJSON ¶ added in v1.10.3

func (o NotEqualFilter) MarshalJSON() ([]byte, error)

func (*NotEqualFilter) SetLeft ¶ added in v1.10.3

func (o *NotEqualFilter) SetLeft(v string)

SetLeft sets field value

func (*NotEqualFilter) SetRight ¶ added in v1.10.3

func (o *NotEqualFilter) SetRight(v string)

SetRight sets field value

func (*NotEqualFilter) SetType ¶ added in v1.10.3

func (o *NotEqualFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (NotEqualFilter) ToMap ¶ added in v1.10.3

func (o NotEqualFilter) ToMap() (map[string]interface{}, error)

func (*NotEqualFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *NotEqualFilter) UnmarshalJSON(bytes []byte) (err error)

type NotFilter ¶ added in v1.10.3

type NotFilter struct {
	// Operator for NOT filter.
	Type      *string        `json:"type,omitempty"`
	Condition NullableString `json:"condition"`
}

NotFilter Filter values that are not equal to a given value. Attributes ---------- type : RelationalOperatorType Type of the filter. condition : union_filter Union of all relational filters.

func NewNotFilter ¶ added in v1.10.3

func NewNotFilter(condition NullableString) *NotFilter

NewNotFilter instantiates a new NotFilter 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 NewNotFilterWithDefaults ¶ added in v1.10.3

func NewNotFilterWithDefaults() *NotFilter

NewNotFilterWithDefaults instantiates a new NotFilter 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 (*NotFilter) GetCondition ¶ added in v1.10.3

func (o *NotFilter) GetCondition() string

GetCondition returns the Condition field value If the value is explicit nil, the zero value for string will be returned

func (*NotFilter) GetConditionOk ¶ added in v1.10.3

func (o *NotFilter) GetConditionOk() (*string, bool)

GetConditionOk returns a tuple with the Condition field value 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 (*NotFilter) GetType ¶ added in v1.10.3

func (o *NotFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*NotFilter) GetTypeOk ¶ added in v1.10.3

func (o *NotFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotFilter) HasType ¶ added in v1.10.3

func (o *NotFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (NotFilter) MarshalJSON ¶ added in v1.10.3

func (o NotFilter) MarshalJSON() ([]byte, error)

func (*NotFilter) SetCondition ¶ added in v1.10.3

func (o *NotFilter) SetCondition(v string)

SetCondition sets field value

func (*NotFilter) SetType ¶ added in v1.10.3

func (o *NotFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (NotFilter) ToMap ¶ added in v1.10.3

func (o NotFilter) ToMap() (map[string]interface{}, error)

func (*NotFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *NotFilter) UnmarshalJSON(bytes []byte) (err error)

type NotNullFilter ¶ added in v1.10.3

type NotNullFilter struct {
	// Left operator for filter.
	Left  string  `json:"left"`
	Right *string `json:"right,omitempty"`
	// Operator for NOT NULL filter.
	Type *string `json:"type,omitempty"`
}

NotNullFilter Filter values that are not null. Attributes ---------- type : RelationalOperatorType Type of the filter. right : str Optional value for right side of the filter.

func NewNotNullFilter ¶ added in v1.10.3

func NewNotNullFilter(left string) *NotNullFilter

NewNotNullFilter instantiates a new NotNullFilter 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 NewNotNullFilterWithDefaults ¶ added in v1.10.3

func NewNotNullFilterWithDefaults() *NotNullFilter

NewNotNullFilterWithDefaults instantiates a new NotNullFilter 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 (*NotNullFilter) GetLeft ¶ added in v1.10.3

func (o *NotNullFilter) GetLeft() string

GetLeft returns the Left field value

func (*NotNullFilter) GetLeftOk ¶ added in v1.10.3

func (o *NotNullFilter) GetLeftOk() (*string, bool)

GetLeftOk returns a tuple with the Left field value and a boolean to check if the value has been set.

func (*NotNullFilter) GetRight ¶ added in v1.10.3

func (o *NotNullFilter) GetRight() string

GetRight returns the Right field value if set, zero value otherwise.

func (*NotNullFilter) GetRightOk ¶ added in v1.10.3

func (o *NotNullFilter) GetRightOk() (*string, bool)

GetRightOk returns a tuple with the Right field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotNullFilter) GetType ¶ added in v1.10.3

func (o *NotNullFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*NotNullFilter) GetTypeOk ¶ added in v1.10.3

func (o *NotNullFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotNullFilter) HasRight ¶ added in v1.10.3

func (o *NotNullFilter) HasRight() bool

HasRight returns a boolean if a field has been set.

func (*NotNullFilter) HasType ¶ added in v1.10.3

func (o *NotNullFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (NotNullFilter) MarshalJSON ¶ added in v1.10.3

func (o NotNullFilter) MarshalJSON() ([]byte, error)

func (*NotNullFilter) SetLeft ¶ added in v1.10.3

func (o *NotNullFilter) SetLeft(v string)

SetLeft sets field value

func (*NotNullFilter) SetRight ¶ added in v1.10.3

func (o *NotNullFilter) SetRight(v string)

SetRight gets a reference to the given string and assigns it to the Right field.

func (*NotNullFilter) SetType ¶ added in v1.10.3

func (o *NotNullFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (NotNullFilter) ToMap ¶ added in v1.10.3

func (o NotNullFilter) ToMap() (map[string]interface{}, error)

func (*NotNullFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *NotNullFilter) UnmarshalJSON(bytes []byte) (err error)

type Notification ¶

type Notification struct {
	INotification
	Type *string `json:"type,omitempty"`
}

Notification struct for Notification

func NewNotification ¶

func NewNotification() *Notification

NewNotification instantiates a new Notification 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 NewNotificationWithDefaults ¶

func NewNotificationWithDefaults() *Notification

NewNotificationWithDefaults instantiates a new Notification 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 (*Notification) GetType ¶

func (o *Notification) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Notification) GetTypeOk ¶

func (o *Notification) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification) HasType ¶

func (o *Notification) HasType() bool

HasType returns a boolean if a field has been set.

func (Notification) MarshalJSON ¶

func (o Notification) MarshalJSON() ([]byte, error)

func (*Notification) SetType ¶

func (o *Notification) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Notification) ToMap ¶ added in v1.10.3

func (o Notification) ToMap() (map[string]interface{}, error)

type Notification1 ¶

type Notification1 struct {
	Id          *string  `json:"id,omitempty"`
	Title       *string  `json:"title,omitempty"`
	Description *string  `json:"description,omitempty"`
	Infos       *string  `json:"infos,omitempty"`
	Severity    *string  `json:"severity,omitempty"`
	Tags        []string `json:"tags,omitempty"`
}

Notification1 struct for Notification1

func NewNotification1 ¶

func NewNotification1() *Notification1

NewNotification1 instantiates a new Notification1 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 NewNotification1WithDefaults ¶

func NewNotification1WithDefaults() *Notification1

NewNotification1WithDefaults instantiates a new Notification1 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 (*Notification1) GetDescription ¶

func (o *Notification1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Notification1) GetDescriptionOk ¶

func (o *Notification1) 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 (*Notification1) GetId ¶

func (o *Notification1) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Notification1) GetIdOk ¶

func (o *Notification1) 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 (*Notification1) GetInfos ¶

func (o *Notification1) GetInfos() string

GetInfos returns the Infos field value if set, zero value otherwise.

func (*Notification1) GetInfosOk ¶

func (o *Notification1) GetInfosOk() (*string, bool)

GetInfosOk returns a tuple with the Infos field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification1) GetSeverity ¶

func (o *Notification1) GetSeverity() string

GetSeverity returns the Severity field value if set, zero value otherwise.

func (*Notification1) GetSeverityOk ¶

func (o *Notification1) GetSeverityOk() (*string, bool)

GetSeverityOk returns a tuple with the Severity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification1) GetTags ¶

func (o *Notification1) GetTags() []string

GetTags returns the Tags field value if set, zero value otherwise.

func (*Notification1) GetTagsOk ¶

func (o *Notification1) GetTagsOk() ([]string, bool)

GetTagsOk returns a tuple with the Tags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification1) GetTitle ¶

func (o *Notification1) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*Notification1) GetTitleOk ¶

func (o *Notification1) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification1) HasDescription ¶

func (o *Notification1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Notification1) HasId ¶

func (o *Notification1) HasId() bool

HasId returns a boolean if a field has been set.

func (*Notification1) HasInfos ¶

func (o *Notification1) HasInfos() bool

HasInfos returns a boolean if a field has been set.

func (*Notification1) HasSeverity ¶

func (o *Notification1) HasSeverity() bool

HasSeverity returns a boolean if a field has been set.

func (*Notification1) HasTags ¶

func (o *Notification1) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*Notification1) HasTitle ¶

func (o *Notification1) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (Notification1) MarshalJSON ¶

func (o Notification1) MarshalJSON() ([]byte, error)

func (*Notification1) SetDescription ¶

func (o *Notification1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Notification1) SetId ¶

func (o *Notification1) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Notification1) SetInfos ¶

func (o *Notification1) SetInfos(v string)

SetInfos gets a reference to the given string and assigns it to the Infos field.

func (*Notification1) SetSeverity ¶

func (o *Notification1) SetSeverity(v string)

SetSeverity gets a reference to the given string and assigns it to the Severity field.

func (*Notification1) SetTags ¶

func (o *Notification1) SetTags(v []string)

SetTags gets a reference to the given []string and assigns it to the Tags field.

func (*Notification1) SetTitle ¶

func (o *Notification1) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (Notification1) ToMap ¶ added in v1.10.3

func (o Notification1) ToMap() (map[string]interface{}, error)

type NotificationAPIService ¶ added in v1.10.3

type NotificationAPIService service

NotificationAPIService NotificationAPI service

func (*NotificationAPIService) CreateNotification ¶ added in v1.10.3

CreateNotification Create a notification

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateNotificationRequest

func (*NotificationAPIService) CreateNotificationExecute ¶ added in v1.10.3

Execute executes the request

@return Notification1

func (*NotificationAPIService) FindNotifications ¶ added in v1.10.3

FindNotifications Retrieve all notifications

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindNotificationsRequest

func (*NotificationAPIService) FindNotificationsExecute ¶ added in v1.10.3

Execute executes the request

@return []Notification1

type Notifications ¶

type Notifications struct {
	OnStart   []INotification `json:"on_start,omitempty"`
	OnSuccess []INotification `json:"on_success,omitempty"`
	OnFailure []INotification `json:"on_failure,omitempty"`
}

Notifications struct for Notifications

func NewNotifications ¶

func NewNotifications() *Notifications

NewNotifications instantiates a new Notifications 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 NewNotificationsWithDefaults ¶

func NewNotificationsWithDefaults() *Notifications

NewNotificationsWithDefaults instantiates a new Notifications 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 (*Notifications) GetOnFailure ¶

func (o *Notifications) GetOnFailure() []INotification

GetOnFailure returns the OnFailure field value if set, zero value otherwise.

func (*Notifications) GetOnFailureOk ¶

func (o *Notifications) GetOnFailureOk() ([]INotification, bool)

GetOnFailureOk returns a tuple with the OnFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notifications) GetOnStart ¶

func (o *Notifications) GetOnStart() []INotification

GetOnStart returns the OnStart field value if set, zero value otherwise.

func (*Notifications) GetOnStartOk ¶

func (o *Notifications) GetOnStartOk() ([]INotification, bool)

GetOnStartOk returns a tuple with the OnStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notifications) GetOnSuccess ¶

func (o *Notifications) GetOnSuccess() []INotification

GetOnSuccess returns the OnSuccess field value if set, zero value otherwise.

func (*Notifications) GetOnSuccessOk ¶

func (o *Notifications) GetOnSuccessOk() ([]INotification, bool)

GetOnSuccessOk returns a tuple with the OnSuccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notifications) HasOnFailure ¶

func (o *Notifications) HasOnFailure() bool

HasOnFailure returns a boolean if a field has been set.

func (*Notifications) HasOnStart ¶

func (o *Notifications) HasOnStart() bool

HasOnStart returns a boolean if a field has been set.

func (*Notifications) HasOnSuccess ¶

func (o *Notifications) HasOnSuccess() bool

HasOnSuccess returns a boolean if a field has been set.

func (Notifications) MarshalJSON ¶

func (o Notifications) MarshalJSON() ([]byte, error)

func (*Notifications) SetOnFailure ¶

func (o *Notifications) SetOnFailure(v []INotification)

SetOnFailure gets a reference to the given []INotification and assigns it to the OnFailure field.

func (*Notifications) SetOnStart ¶

func (o *Notifications) SetOnStart(v []INotification)

SetOnStart gets a reference to the given []INotification and assigns it to the OnStart field.

func (*Notifications) SetOnSuccess ¶

func (o *Notifications) SetOnSuccess(v []INotification)

SetOnSuccess gets a reference to the given []INotification and assigns it to the OnSuccess field.

func (Notifications) ToMap ¶ added in v1.10.3

func (o Notifications) ToMap() (map[string]interface{}, error)

type NullableANDConditionInner ¶ added in v1.10.3

type NullableANDConditionInner struct {
	// contains filtered or unexported fields
}

func NewNullableANDConditionInner ¶ added in v1.10.3

func NewNullableANDConditionInner(val *ANDConditionInner) *NullableANDConditionInner

func (NullableANDConditionInner) Get ¶ added in v1.10.3

func (NullableANDConditionInner) IsSet ¶ added in v1.10.3

func (v NullableANDConditionInner) IsSet() bool

func (NullableANDConditionInner) MarshalJSON ¶ added in v1.10.3

func (v NullableANDConditionInner) MarshalJSON() ([]byte, error)

func (*NullableANDConditionInner) Set ¶ added in v1.10.3

func (*NullableANDConditionInner) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableANDConditionInner) UnmarshalJSON(src []byte) error

func (*NullableANDConditionInner) Unset ¶ added in v1.10.3

func (v *NullableANDConditionInner) Unset()

type NullableAction ¶

type NullableAction struct {
	// contains filtered or unexported fields
}

func NewNullableAction ¶

func NewNullableAction(val *Action) *NullableAction

func (NullableAction) Get ¶

func (v NullableAction) Get() *Action

func (NullableAction) IsSet ¶

func (v NullableAction) IsSet() bool

func (NullableAction) MarshalJSON ¶

func (v NullableAction) MarshalJSON() ([]byte, error)

func (*NullableAction) Set ¶

func (v *NullableAction) Set(val *Action)

func (*NullableAction) UnmarshalJSON ¶

func (v *NullableAction) UnmarshalJSON(src []byte) error

func (*NullableAction) Unset ¶

func (v *NullableAction) Unset()

type NullableAction1 ¶ added in v1.10.3

type NullableAction1 struct {
	// contains filtered or unexported fields
}

func NewNullableAction1 ¶ added in v1.10.3

func NewNullableAction1(val *Action1) *NullableAction1

func (NullableAction1) Get ¶ added in v1.10.3

func (v NullableAction1) Get() *Action1

func (NullableAction1) IsSet ¶ added in v1.10.3

func (v NullableAction1) IsSet() bool

func (NullableAction1) MarshalJSON ¶ added in v1.10.3

func (v NullableAction1) MarshalJSON() ([]byte, error)

func (*NullableAction1) Set ¶ added in v1.10.3

func (v *NullableAction1) Set(val *Action1)

func (*NullableAction1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAction1) UnmarshalJSON(src []byte) error

func (*NullableAction1) Unset ¶ added in v1.10.3

func (v *NullableAction1) Unset()

type NullableActivity ¶ added in v1.10.3

type NullableActivity struct {
	// contains filtered or unexported fields
}

func NewNullableActivity ¶ added in v1.10.3

func NewNullableActivity(val *Activity) *NullableActivity

func (NullableActivity) Get ¶ added in v1.10.3

func (v NullableActivity) Get() *Activity

func (NullableActivity) IsSet ¶ added in v1.10.3

func (v NullableActivity) IsSet() bool

func (NullableActivity) MarshalJSON ¶ added in v1.10.3

func (v NullableActivity) MarshalJSON() ([]byte, error)

func (*NullableActivity) Set ¶ added in v1.10.3

func (v *NullableActivity) Set(val *Activity)

func (*NullableActivity) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableActivity) UnmarshalJSON(src []byte) error

func (*NullableActivity) Unset ¶ added in v1.10.3

func (v *NullableActivity) Unset()

type NullableAdminTarget ¶

type NullableAdminTarget struct {
	// contains filtered or unexported fields
}

func NewNullableAdminTarget ¶

func NewNullableAdminTarget(val *AdminTarget) *NullableAdminTarget

func (NullableAdminTarget) Get ¶

func (NullableAdminTarget) IsSet ¶

func (v NullableAdminTarget) IsSet() bool

func (NullableAdminTarget) MarshalJSON ¶

func (v NullableAdminTarget) MarshalJSON() ([]byte, error)

func (*NullableAdminTarget) Set ¶

func (v *NullableAdminTarget) Set(val *AdminTarget)

func (*NullableAdminTarget) UnmarshalJSON ¶

func (v *NullableAdminTarget) UnmarshalJSON(src []byte) error

func (*NullableAdminTarget) Unset ¶

func (v *NullableAdminTarget) Unset()

type NullableAdminTargetAllOf ¶

type NullableAdminTargetAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableAdminTargetAllOf ¶

func NewNullableAdminTargetAllOf(val *AdminTargetAllOf) *NullableAdminTargetAllOf

func (NullableAdminTargetAllOf) Get ¶

func (NullableAdminTargetAllOf) IsSet ¶

func (v NullableAdminTargetAllOf) IsSet() bool

func (NullableAdminTargetAllOf) MarshalJSON ¶

func (v NullableAdminTargetAllOf) MarshalJSON() ([]byte, error)

func (*NullableAdminTargetAllOf) Set ¶

func (*NullableAdminTargetAllOf) UnmarshalJSON ¶

func (v *NullableAdminTargetAllOf) UnmarshalJSON(src []byte) error

func (*NullableAdminTargetAllOf) Unset ¶

func (v *NullableAdminTargetAllOf) Unset()

type NullableAggParams ¶ added in v1.10.3

type NullableAggParams struct {
	// contains filtered or unexported fields
}

func NewNullableAggParams ¶ added in v1.10.3

func NewNullableAggParams(val *AggParams) *NullableAggParams

func (NullableAggParams) Get ¶ added in v1.10.3

func (v NullableAggParams) Get() *AggParams

func (NullableAggParams) IsSet ¶ added in v1.10.3

func (v NullableAggParams) IsSet() bool

func (NullableAggParams) MarshalJSON ¶ added in v1.10.3

func (v NullableAggParams) MarshalJSON() ([]byte, error)

func (*NullableAggParams) Set ¶ added in v1.10.3

func (v *NullableAggParams) Set(val *AggParams)

func (*NullableAggParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAggParams) UnmarshalJSON(src []byte) error

func (*NullableAggParams) Unset ¶ added in v1.10.3

func (v *NullableAggParams) Unset()

type NullableAggTask ¶ added in v1.10.3

type NullableAggTask struct {
	// contains filtered or unexported fields
}

func NewNullableAggTask ¶ added in v1.10.3

func NewNullableAggTask(val *AggTask) *NullableAggTask

func (NullableAggTask) Get ¶ added in v1.10.3

func (v NullableAggTask) Get() *AggTask

func (NullableAggTask) IsSet ¶ added in v1.10.3

func (v NullableAggTask) IsSet() bool

func (NullableAggTask) MarshalJSON ¶ added in v1.10.3

func (v NullableAggTask) MarshalJSON() ([]byte, error)

func (*NullableAggTask) Set ¶ added in v1.10.3

func (v *NullableAggTask) Set(val *AggTask)

func (*NullableAggTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAggTask) UnmarshalJSON(src []byte) error

func (*NullableAggTask) Unset ¶ added in v1.10.3

func (v *NullableAggTask) Unset()

type NullableAggregationsInner ¶ added in v1.10.3

type NullableAggregationsInner struct {
	// contains filtered or unexported fields
}

func NewNullableAggregationsInner ¶ added in v1.10.3

func NewNullableAggregationsInner(val *AggregationsInner) *NullableAggregationsInner

func (NullableAggregationsInner) Get ¶ added in v1.10.3

func (NullableAggregationsInner) IsSet ¶ added in v1.10.3

func (v NullableAggregationsInner) IsSet() bool

func (NullableAggregationsInner) MarshalJSON ¶ added in v1.10.3

func (v NullableAggregationsInner) MarshalJSON() ([]byte, error)

func (*NullableAggregationsInner) Set ¶ added in v1.10.3

func (*NullableAggregationsInner) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAggregationsInner) UnmarshalJSON(src []byte) error

func (*NullableAggregationsInner) Unset ¶ added in v1.10.3

func (v *NullableAggregationsInner) Unset()

type NullableAirflowOptions ¶

type NullableAirflowOptions struct {
	// contains filtered or unexported fields
}

func NewNullableAirflowOptions ¶

func NewNullableAirflowOptions(val *AirflowOptions) *NullableAirflowOptions

func (NullableAirflowOptions) Get ¶

func (NullableAirflowOptions) IsSet ¶

func (v NullableAirflowOptions) IsSet() bool

func (NullableAirflowOptions) MarshalJSON ¶

func (v NullableAirflowOptions) MarshalJSON() ([]byte, error)

func (*NullableAirflowOptions) Set ¶

func (*NullableAirflowOptions) UnmarshalJSON ¶

func (v *NullableAirflowOptions) UnmarshalJSON(src []byte) error

func (*NullableAirflowOptions) Unset ¶

func (v *NullableAirflowOptions) Unset()

type NullableAirflowOptionsAllOf ¶

type NullableAirflowOptionsAllOf struct {
	// contains filtered or unexported fields
}

func (NullableAirflowOptionsAllOf) Get ¶

func (NullableAirflowOptionsAllOf) IsSet ¶

func (NullableAirflowOptionsAllOf) MarshalJSON ¶

func (v NullableAirflowOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableAirflowOptionsAllOf) Set ¶

func (*NullableAirflowOptionsAllOf) UnmarshalJSON ¶

func (v *NullableAirflowOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableAirflowOptionsAllOf) Unset ¶

func (v *NullableAirflowOptionsAllOf) Unset()

type NullableAndFilter ¶ added in v1.10.3

type NullableAndFilter struct {
	// contains filtered or unexported fields
}

func NewNullableAndFilter ¶ added in v1.10.3

func NewNullableAndFilter(val *AndFilter) *NullableAndFilter

func (NullableAndFilter) Get ¶ added in v1.10.3

func (v NullableAndFilter) Get() *AndFilter

func (NullableAndFilter) IsSet ¶ added in v1.10.3

func (v NullableAndFilter) IsSet() bool

func (NullableAndFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableAndFilter) MarshalJSON() ([]byte, error)

func (*NullableAndFilter) Set ¶ added in v1.10.3

func (v *NullableAndFilter) Set(val *AndFilter)

func (*NullableAndFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAndFilter) UnmarshalJSON(src []byte) error

func (*NullableAndFilter) Unset ¶ added in v1.10.3

func (v *NullableAndFilter) Unset()

type NullableApplication ¶

type NullableApplication struct {
	// contains filtered or unexported fields
}

func NewNullableApplication ¶

func NewNullableApplication(val *Application) *NullableApplication

func (NullableApplication) Get ¶

func (NullableApplication) IsSet ¶

func (v NullableApplication) IsSet() bool

func (NullableApplication) MarshalJSON ¶

func (v NullableApplication) MarshalJSON() ([]byte, error)

func (*NullableApplication) Set ¶

func (v *NullableApplication) Set(val *Application)

func (*NullableApplication) UnmarshalJSON ¶

func (v *NullableApplication) UnmarshalJSON(src []byte) error

func (*NullableApplication) Unset ¶

func (v *NullableApplication) Unset()

type NullableAuditLog ¶

type NullableAuditLog struct {
	// contains filtered or unexported fields
}

func NewNullableAuditLog ¶

func NewNullableAuditLog(val *AuditLog) *NullableAuditLog

func (NullableAuditLog) Get ¶

func (v NullableAuditLog) Get() *AuditLog

func (NullableAuditLog) IsSet ¶

func (v NullableAuditLog) IsSet() bool

func (NullableAuditLog) MarshalJSON ¶

func (v NullableAuditLog) MarshalJSON() ([]byte, error)

func (*NullableAuditLog) Set ¶

func (v *NullableAuditLog) Set(val *AuditLog)

func (*NullableAuditLog) UnmarshalJSON ¶

func (v *NullableAuditLog) UnmarshalJSON(src []byte) error

func (*NullableAuditLog) Unset ¶

func (v *NullableAuditLog) Unset()

type NullableAzureConnector ¶ added in v1.10.3

type NullableAzureConnector struct {
	// contains filtered or unexported fields
}

func NewNullableAzureConnector ¶ added in v1.10.3

func NewNullableAzureConnector(val *AzureConnector) *NullableAzureConnector

func (NullableAzureConnector) Get ¶ added in v1.10.3

func (NullableAzureConnector) IsSet ¶ added in v1.10.3

func (v NullableAzureConnector) IsSet() bool

func (NullableAzureConnector) MarshalJSON ¶ added in v1.10.3

func (v NullableAzureConnector) MarshalJSON() ([]byte, error)

func (*NullableAzureConnector) Set ¶ added in v1.10.3

func (*NullableAzureConnector) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAzureConnector) UnmarshalJSON(src []byte) error

func (*NullableAzureConnector) Unset ¶ added in v1.10.3

func (v *NullableAzureConnector) Unset()

type NullableAzureConnectorOptions ¶ added in v1.10.3

type NullableAzureConnectorOptions struct {
	// contains filtered or unexported fields
}

func NewNullableAzureConnectorOptions ¶ added in v1.10.3

func NewNullableAzureConnectorOptions(val *AzureConnectorOptions) *NullableAzureConnectorOptions

func (NullableAzureConnectorOptions) Get ¶ added in v1.10.3

func (NullableAzureConnectorOptions) IsSet ¶ added in v1.10.3

func (NullableAzureConnectorOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableAzureConnectorOptions) MarshalJSON() ([]byte, error)

func (*NullableAzureConnectorOptions) Set ¶ added in v1.10.3

func (*NullableAzureConnectorOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAzureConnectorOptions) UnmarshalJSON(src []byte) error

func (*NullableAzureConnectorOptions) Unset ¶ added in v1.10.3

func (v *NullableAzureConnectorOptions) Unset()

type NullableAzureLogAnalyticsNotification ¶

type NullableAzureLogAnalyticsNotification struct {
	// contains filtered or unexported fields
}

func (NullableAzureLogAnalyticsNotification) Get ¶

func (NullableAzureLogAnalyticsNotification) IsSet ¶

func (NullableAzureLogAnalyticsNotification) MarshalJSON ¶

func (v NullableAzureLogAnalyticsNotification) MarshalJSON() ([]byte, error)

func (*NullableAzureLogAnalyticsNotification) Set ¶

func (*NullableAzureLogAnalyticsNotification) UnmarshalJSON ¶

func (v *NullableAzureLogAnalyticsNotification) UnmarshalJSON(src []byte) error

func (*NullableAzureLogAnalyticsNotification) Unset ¶

type NullableAzureLogAnalyticsNotificationAllOf ¶

type NullableAzureLogAnalyticsNotificationAllOf struct {
	// contains filtered or unexported fields
}

func (NullableAzureLogAnalyticsNotificationAllOf) Get ¶

func (NullableAzureLogAnalyticsNotificationAllOf) IsSet ¶

func (NullableAzureLogAnalyticsNotificationAllOf) MarshalJSON ¶

func (*NullableAzureLogAnalyticsNotificationAllOf) Set ¶

func (*NullableAzureLogAnalyticsNotificationAllOf) UnmarshalJSON ¶

func (v *NullableAzureLogAnalyticsNotificationAllOf) UnmarshalJSON(src []byte) error

func (*NullableAzureLogAnalyticsNotificationAllOf) Unset ¶

type NullableAzureUri ¶ added in v1.10.3

type NullableAzureUri struct {
	// contains filtered or unexported fields
}

func NewNullableAzureUri ¶ added in v1.10.3

func NewNullableAzureUri(val *AzureUri) *NullableAzureUri

func (NullableAzureUri) Get ¶ added in v1.10.3

func (v NullableAzureUri) Get() *AzureUri

func (NullableAzureUri) IsSet ¶ added in v1.10.3

func (v NullableAzureUri) IsSet() bool

func (NullableAzureUri) MarshalJSON ¶ added in v1.10.3

func (v NullableAzureUri) MarshalJSON() ([]byte, error)

func (*NullableAzureUri) Set ¶ added in v1.10.3

func (v *NullableAzureUri) Set(val *AzureUri)

func (*NullableAzureUri) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAzureUri) UnmarshalJSON(src []byte) error

func (*NullableAzureUri) Unset ¶ added in v1.10.3

func (v *NullableAzureUri) Unset()

type NullableAzureUriAllOf ¶ added in v1.10.3

type NullableAzureUriAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableAzureUriAllOf ¶ added in v1.10.3

func NewNullableAzureUriAllOf(val *AzureUriAllOf) *NullableAzureUriAllOf

func (NullableAzureUriAllOf) Get ¶ added in v1.10.3

func (NullableAzureUriAllOf) IsSet ¶ added in v1.10.3

func (v NullableAzureUriAllOf) IsSet() bool

func (NullableAzureUriAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableAzureUriAllOf) MarshalJSON() ([]byte, error)

func (*NullableAzureUriAllOf) Set ¶ added in v1.10.3

func (v *NullableAzureUriAllOf) Set(val *AzureUriAllOf)

func (*NullableAzureUriAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableAzureUriAllOf) UnmarshalJSON(src []byte) error

func (*NullableAzureUriAllOf) Unset ¶ added in v1.10.3

func (v *NullableAzureUriAllOf) Unset()

type NullableBashOptions ¶

type NullableBashOptions struct {
	// contains filtered or unexported fields
}

func NewNullableBashOptions ¶

func NewNullableBashOptions(val *BashOptions) *NullableBashOptions

func (NullableBashOptions) Get ¶

func (NullableBashOptions) IsSet ¶

func (v NullableBashOptions) IsSet() bool

func (NullableBashOptions) MarshalJSON ¶

func (v NullableBashOptions) MarshalJSON() ([]byte, error)

func (*NullableBashOptions) Set ¶

func (v *NullableBashOptions) Set(val *BashOptions)

func (*NullableBashOptions) UnmarshalJSON ¶

func (v *NullableBashOptions) UnmarshalJSON(src []byte) error

func (*NullableBashOptions) Unset ¶

func (v *NullableBashOptions) Unset()

type NullableBashOptionsAllOf ¶

type NullableBashOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBashOptionsAllOf ¶

func NewNullableBashOptionsAllOf(val *BashOptionsAllOf) *NullableBashOptionsAllOf

func (NullableBashOptionsAllOf) Get ¶

func (NullableBashOptionsAllOf) IsSet ¶

func (v NullableBashOptionsAllOf) IsSet() bool

func (NullableBashOptionsAllOf) MarshalJSON ¶

func (v NullableBashOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableBashOptionsAllOf) Set ¶

func (*NullableBashOptionsAllOf) UnmarshalJSON ¶

func (v *NullableBashOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableBashOptionsAllOf) Unset ¶

func (v *NullableBashOptionsAllOf) Unset()

type NullableBetweenFilter ¶ added in v1.10.3

type NullableBetweenFilter struct {
	// contains filtered or unexported fields
}

func NewNullableBetweenFilter ¶ added in v1.10.3

func NewNullableBetweenFilter(val *BetweenFilter) *NullableBetweenFilter

func (NullableBetweenFilter) Get ¶ added in v1.10.3

func (NullableBetweenFilter) IsSet ¶ added in v1.10.3

func (v NullableBetweenFilter) IsSet() bool

func (NullableBetweenFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableBetweenFilter) MarshalJSON() ([]byte, error)

func (*NullableBetweenFilter) Set ¶ added in v1.10.3

func (v *NullableBetweenFilter) Set(val *BetweenFilter)

func (*NullableBetweenFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableBetweenFilter) UnmarshalJSON(src []byte) error

func (*NullableBetweenFilter) Unset ¶ added in v1.10.3

func (v *NullableBetweenFilter) Unset()

type NullableBlobMetadata ¶

type NullableBlobMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableBlobMetadata ¶

func NewNullableBlobMetadata(val *BlobMetadata) *NullableBlobMetadata

func (NullableBlobMetadata) Get ¶

func (NullableBlobMetadata) IsSet ¶

func (v NullableBlobMetadata) IsSet() bool

func (NullableBlobMetadata) MarshalJSON ¶

func (v NullableBlobMetadata) MarshalJSON() ([]byte, error)

func (*NullableBlobMetadata) Set ¶

func (v *NullableBlobMetadata) Set(val *BlobMetadata)

func (*NullableBlobMetadata) UnmarshalJSON ¶

func (v *NullableBlobMetadata) UnmarshalJSON(src []byte) error

func (*NullableBlobMetadata) Unset ¶

func (v *NullableBlobMetadata) Unset()

type NullableBodyPostTemplateTemplatesNameVersionsVersionPost ¶ added in v1.10.3

type NullableBodyPostTemplateTemplatesNameVersionsVersionPost struct {
	// contains filtered or unexported fields
}

func (NullableBodyPostTemplateTemplatesNameVersionsVersionPost) Get ¶ added in v1.10.3

func (NullableBodyPostTemplateTemplatesNameVersionsVersionPost) IsSet ¶ added in v1.10.3

func (NullableBodyPostTemplateTemplatesNameVersionsVersionPost) MarshalJSON ¶ added in v1.10.3

func (*NullableBodyPostTemplateTemplatesNameVersionsVersionPost) Set ¶ added in v1.10.3

func (*NullableBodyPostTemplateTemplatesNameVersionsVersionPost) UnmarshalJSON ¶ added in v1.10.3

func (*NullableBodyPostTemplateTemplatesNameVersionsVersionPost) Unset ¶ added in v1.10.3

type NullableBodyPutTemplateTemplatesNameVersionsVersionPut ¶ added in v1.10.3

type NullableBodyPutTemplateTemplatesNameVersionsVersionPut struct {
	// contains filtered or unexported fields
}

func (NullableBodyPutTemplateTemplatesNameVersionsVersionPut) Get ¶ added in v1.10.3

func (NullableBodyPutTemplateTemplatesNameVersionsVersionPut) IsSet ¶ added in v1.10.3

func (NullableBodyPutTemplateTemplatesNameVersionsVersionPut) MarshalJSON ¶ added in v1.10.3

func (*NullableBodyPutTemplateTemplatesNameVersionsVersionPut) Set ¶ added in v1.10.3

func (*NullableBodyPutTemplateTemplatesNameVersionsVersionPut) UnmarshalJSON ¶ added in v1.10.3

func (*NullableBodyPutTemplateTemplatesNameVersionsVersionPut) Unset ¶ added in v1.10.3

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 NullableBridge ¶

type NullableBridge struct {
	// contains filtered or unexported fields
}

func NewNullableBridge ¶

func NewNullableBridge(val *Bridge) *NullableBridge

func (NullableBridge) Get ¶

func (v NullableBridge) Get() *Bridge

func (NullableBridge) IsSet ¶

func (v NullableBridge) IsSet() bool

func (NullableBridge) MarshalJSON ¶

func (v NullableBridge) MarshalJSON() ([]byte, error)

func (*NullableBridge) Set ¶

func (v *NullableBridge) Set(val *Bridge)

func (*NullableBridge) UnmarshalJSON ¶

func (v *NullableBridge) UnmarshalJSON(src []byte) error

func (*NullableBridge) Unset ¶

func (v *NullableBridge) Unset()

type NullableBridgePage ¶

type NullableBridgePage struct {
	// contains filtered or unexported fields
}

func NewNullableBridgePage ¶

func NewNullableBridgePage(val *BridgePage) *NullableBridgePage

func (NullableBridgePage) Get ¶

func (v NullableBridgePage) Get() *BridgePage

func (NullableBridgePage) IsSet ¶

func (v NullableBridgePage) IsSet() bool

func (NullableBridgePage) MarshalJSON ¶

func (v NullableBridgePage) MarshalJSON() ([]byte, error)

func (*NullableBridgePage) Set ¶

func (v *NullableBridgePage) Set(val *BridgePage)

func (*NullableBridgePage) UnmarshalJSON ¶

func (v *NullableBridgePage) UnmarshalJSON(src []byte) error

func (*NullableBridgePage) Unset ¶

func (v *NullableBridgePage) Unset()

type NullableBridgePageAllOf ¶

type NullableBridgePageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableBridgePageAllOf ¶

func NewNullableBridgePageAllOf(val *BridgePageAllOf) *NullableBridgePageAllOf

func (NullableBridgePageAllOf) Get ¶

func (NullableBridgePageAllOf) IsSet ¶

func (v NullableBridgePageAllOf) IsSet() bool

func (NullableBridgePageAllOf) MarshalJSON ¶

func (v NullableBridgePageAllOf) MarshalJSON() ([]byte, error)

func (*NullableBridgePageAllOf) Set ¶

func (*NullableBridgePageAllOf) UnmarshalJSON ¶

func (v *NullableBridgePageAllOf) UnmarshalJSON(src []byte) error

func (*NullableBridgePageAllOf) Unset ¶

func (v *NullableBridgePageAllOf) Unset()

type NullableBucket ¶

type NullableBucket struct {
	// contains filtered or unexported fields
}

func NewNullableBucket ¶

func NewNullableBucket(val *Bucket) *NullableBucket

func (NullableBucket) Get ¶

func (v NullableBucket) Get() *Bucket

func (NullableBucket) IsSet ¶

func (v NullableBucket) IsSet() bool

func (NullableBucket) MarshalJSON ¶

func (v NullableBucket) MarshalJSON() ([]byte, error)

func (*NullableBucket) Set ¶

func (v *NullableBucket) Set(val *Bucket)

func (*NullableBucket) UnmarshalJSON ¶

func (v *NullableBucket) UnmarshalJSON(src []byte) error

func (*NullableBucket) Unset ¶

func (v *NullableBucket) Unset()

type NullableBuild ¶

type NullableBuild struct {
	// contains filtered or unexported fields
}

func NewNullableBuild ¶

func NewNullableBuild(val *Build) *NullableBuild

func (NullableBuild) Get ¶

func (v NullableBuild) Get() *Build

func (NullableBuild) IsSet ¶

func (v NullableBuild) IsSet() bool

func (NullableBuild) MarshalJSON ¶

func (v NullableBuild) MarshalJSON() ([]byte, error)

func (*NullableBuild) Set ¶

func (v *NullableBuild) Set(val *Build)

func (*NullableBuild) UnmarshalJSON ¶

func (v *NullableBuild) UnmarshalJSON(src []byte) error

func (*NullableBuild) Unset ¶

func (v *NullableBuild) Unset()

type NullableByteCapacity ¶

type NullableByteCapacity struct {
	// contains filtered or unexported fields
}

func NewNullableByteCapacity ¶

func NewNullableByteCapacity(val *ByteCapacity) *NullableByteCapacity

func (NullableByteCapacity) Get ¶

func (NullableByteCapacity) IsSet ¶

func (v NullableByteCapacity) IsSet() bool

func (NullableByteCapacity) MarshalJSON ¶

func (v NullableByteCapacity) MarshalJSON() ([]byte, error)

func (*NullableByteCapacity) Set ¶

func (v *NullableByteCapacity) Set(val *ByteCapacity)

func (*NullableByteCapacity) UnmarshalJSON ¶

func (v *NullableByteCapacity) UnmarshalJSON(src []byte) error

func (*NullableByteCapacity) Unset ¶

func (v *NullableByteCapacity) Unset()

type NullableCapacity ¶

type NullableCapacity struct {
	// contains filtered or unexported fields
}

func NewNullableCapacity ¶

func NewNullableCapacity(val *Capacity) *NullableCapacity

func (NullableCapacity) Get ¶

func (v NullableCapacity) Get() *Capacity

func (NullableCapacity) IsSet ¶

func (v NullableCapacity) IsSet() bool

func (NullableCapacity) MarshalJSON ¶

func (v NullableCapacity) MarshalJSON() ([]byte, error)

func (*NullableCapacity) Set ¶

func (v *NullableCapacity) Set(val *Capacity)

func (*NullableCapacity) UnmarshalJSON ¶

func (v *NullableCapacity) UnmarshalJSON(src []byte) error

func (*NullableCapacity) Unset ¶

func (v *NullableCapacity) Unset()

type NullableChange ¶ added in v1.10.3

type NullableChange struct {
	// contains filtered or unexported fields
}

func NewNullableChange ¶ added in v1.10.3

func NewNullableChange(val *Change) *NullableChange

func (NullableChange) Get ¶ added in v1.10.3

func (v NullableChange) Get() *Change

func (NullableChange) IsSet ¶ added in v1.10.3

func (v NullableChange) IsSet() bool

func (NullableChange) MarshalJSON ¶ added in v1.10.3

func (v NullableChange) MarshalJSON() ([]byte, error)

func (*NullableChange) Set ¶ added in v1.10.3

func (v *NullableChange) Set(val *Change)

func (*NullableChange) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableChange) UnmarshalJSON(src []byte) error

func (*NullableChange) Unset ¶ added in v1.10.3

func (v *NullableChange) Unset()

type NullableChangePage ¶ added in v1.10.3

type NullableChangePage struct {
	// contains filtered or unexported fields
}

func NewNullableChangePage ¶ added in v1.10.3

func NewNullableChangePage(val *ChangePage) *NullableChangePage

func (NullableChangePage) Get ¶ added in v1.10.3

func (v NullableChangePage) Get() *ChangePage

func (NullableChangePage) IsSet ¶ added in v1.10.3

func (v NullableChangePage) IsSet() bool

func (NullableChangePage) MarshalJSON ¶ added in v1.10.3

func (v NullableChangePage) MarshalJSON() ([]byte, error)

func (*NullableChangePage) Set ¶ added in v1.10.3

func (v *NullableChangePage) Set(val *ChangePage)

func (*NullableChangePage) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableChangePage) UnmarshalJSON(src []byte) error

func (*NullableChangePage) Unset ¶ added in v1.10.3

func (v *NullableChangePage) Unset()

type NullableChangePageAllOf ¶ added in v1.10.3

type NullableChangePageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableChangePageAllOf ¶ added in v1.10.3

func NewNullableChangePageAllOf(val *ChangePageAllOf) *NullableChangePageAllOf

func (NullableChangePageAllOf) Get ¶ added in v1.10.3

func (NullableChangePageAllOf) IsSet ¶ added in v1.10.3

func (v NullableChangePageAllOf) IsSet() bool

func (NullableChangePageAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableChangePageAllOf) MarshalJSON() ([]byte, error)

func (*NullableChangePageAllOf) Set ¶ added in v1.10.3

func (*NullableChangePageAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableChangePageAllOf) UnmarshalJSON(src []byte) error

func (*NullableChangePageAllOf) Unset ¶ added in v1.10.3

func (v *NullableChangePageAllOf) Unset()

type NullableCodeAction ¶ added in v1.10.3

type NullableCodeAction struct {
	// contains filtered or unexported fields
}

func NewNullableCodeAction ¶ added in v1.10.3

func NewNullableCodeAction(val *CodeAction) *NullableCodeAction

func (NullableCodeAction) Get ¶ added in v1.10.3

func (v NullableCodeAction) Get() *CodeAction

func (NullableCodeAction) IsSet ¶ added in v1.10.3

func (v NullableCodeAction) IsSet() bool

func (NullableCodeAction) MarshalJSON ¶ added in v1.10.3

func (v NullableCodeAction) MarshalJSON() ([]byte, error)

func (*NullableCodeAction) Set ¶ added in v1.10.3

func (v *NullableCodeAction) Set(val *CodeAction)

func (*NullableCodeAction) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableCodeAction) UnmarshalJSON(src []byte) error

func (*NullableCodeAction) Unset ¶ added in v1.10.3

func (v *NullableCodeAction) Unset()

type NullableComment ¶ added in v1.10.3

type NullableComment struct {
	// contains filtered or unexported fields
}

func NewNullableComment ¶ added in v1.10.3

func NewNullableComment(val *Comment) *NullableComment

func (NullableComment) Get ¶ added in v1.10.3

func (v NullableComment) Get() *Comment

func (NullableComment) IsSet ¶ added in v1.10.3

func (v NullableComment) IsSet() bool

func (NullableComment) MarshalJSON ¶ added in v1.10.3

func (v NullableComment) MarshalJSON() ([]byte, error)

func (*NullableComment) Set ¶ added in v1.10.3

func (v *NullableComment) Set(val *Comment)

func (*NullableComment) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableComment) UnmarshalJSON(src []byte) error

func (*NullableComment) Unset ¶ added in v1.10.3

func (v *NullableComment) Unset()

type NullableCommentActivity ¶ added in v1.10.3

type NullableCommentActivity struct {
	// contains filtered or unexported fields
}

func NewNullableCommentActivity ¶ added in v1.10.3

func NewNullableCommentActivity(val *CommentActivity) *NullableCommentActivity

func (NullableCommentActivity) Get ¶ added in v1.10.3

func (NullableCommentActivity) IsSet ¶ added in v1.10.3

func (v NullableCommentActivity) IsSet() bool

func (NullableCommentActivity) MarshalJSON ¶ added in v1.10.3

func (v NullableCommentActivity) MarshalJSON() ([]byte, error)

func (*NullableCommentActivity) Set ¶ added in v1.10.3

func (*NullableCommentActivity) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableCommentActivity) UnmarshalJSON(src []byte) error

func (*NullableCommentActivity) Unset ¶ added in v1.10.3

func (v *NullableCommentActivity) Unset()

type NullableCompany ¶

type NullableCompany struct {
	// contains filtered or unexported fields
}

func NewNullableCompany ¶

func NewNullableCompany(val *Company) *NullableCompany

func (NullableCompany) Get ¶

func (v NullableCompany) Get() *Company

func (NullableCompany) IsSet ¶

func (v NullableCompany) IsSet() bool

func (NullableCompany) MarshalJSON ¶

func (v NullableCompany) MarshalJSON() ([]byte, error)

func (*NullableCompany) Set ¶

func (v *NullableCompany) Set(val *Company)

func (*NullableCompany) UnmarshalJSON ¶

func (v *NullableCompany) UnmarshalJSON(src []byte) error

func (*NullableCompany) Unset ¶

func (v *NullableCompany) Unset()

type NullableConnector ¶ added in v1.10.3

type NullableConnector struct {
	// contains filtered or unexported fields
}

func NewNullableConnector ¶ added in v1.10.3

func NewNullableConnector(val *Connector) *NullableConnector

func (NullableConnector) Get ¶ added in v1.10.3

func (v NullableConnector) Get() *Connector

func (NullableConnector) IsSet ¶ added in v1.10.3

func (v NullableConnector) IsSet() bool

func (NullableConnector) MarshalJSON ¶ added in v1.10.3

func (v NullableConnector) MarshalJSON() ([]byte, error)

func (*NullableConnector) Set ¶ added in v1.10.3

func (v *NullableConnector) Set(val *Connector)

func (*NullableConnector) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableConnector) UnmarshalJSON(src []byte) error

func (*NullableConnector) Unset ¶ added in v1.10.3

func (v *NullableConnector) Unset()

type NullableConnector1 ¶ added in v1.10.3

type NullableConnector1 struct {
	// contains filtered or unexported fields
}

func NewNullableConnector1 ¶ added in v1.10.3

func NewNullableConnector1(val *Connector1) *NullableConnector1

func (NullableConnector1) Get ¶ added in v1.10.3

func (v NullableConnector1) Get() *Connector1

func (NullableConnector1) IsSet ¶ added in v1.10.3

func (v NullableConnector1) IsSet() bool

func (NullableConnector1) MarshalJSON ¶ added in v1.10.3

func (v NullableConnector1) MarshalJSON() ([]byte, error)

func (*NullableConnector1) Set ¶ added in v1.10.3

func (v *NullableConnector1) Set(val *Connector1)

func (*NullableConnector1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableConnector1) UnmarshalJSON(src []byte) error

func (*NullableConnector1) Unset ¶ added in v1.10.3

func (v *NullableConnector1) Unset()

type NullableContact ¶

type NullableContact struct {
	// contains filtered or unexported fields
}

func NewNullableContact ¶

func NewNullableContact(val *Contact) *NullableContact

func (NullableContact) Get ¶

func (v NullableContact) Get() *Contact

func (NullableContact) IsSet ¶

func (v NullableContact) IsSet() bool

func (NullableContact) MarshalJSON ¶

func (v NullableContact) MarshalJSON() ([]byte, error)

func (*NullableContact) Set ¶

func (v *NullableContact) Set(val *Contact)

func (*NullableContact) UnmarshalJSON ¶

func (v *NullableContact) UnmarshalJSON(src []byte) error

func (*NullableContact) Unset ¶

func (v *NullableContact) Unset()

type NullableCostStats ¶

type NullableCostStats struct {
	// contains filtered or unexported fields
}

func NewNullableCostStats ¶

func NewNullableCostStats(val *CostStats) *NullableCostStats

func (NullableCostStats) Get ¶

func (v NullableCostStats) Get() *CostStats

func (NullableCostStats) IsSet ¶

func (v NullableCostStats) IsSet() bool

func (NullableCostStats) MarshalJSON ¶

func (v NullableCostStats) MarshalJSON() ([]byte, error)

func (*NullableCostStats) Set ¶

func (v *NullableCostStats) Set(val *CostStats)

func (*NullableCostStats) UnmarshalJSON ¶

func (v *NullableCostStats) UnmarshalJSON(src []byte) error

func (*NullableCostStats) Unset ¶

func (v *NullableCostStats) Unset()

type NullableCountParams ¶ added in v1.10.3

type NullableCountParams struct {
	// contains filtered or unexported fields
}

func NewNullableCountParams ¶ added in v1.10.3

func NewNullableCountParams(val *CountParams) *NullableCountParams

func (NullableCountParams) Get ¶ added in v1.10.3

func (NullableCountParams) IsSet ¶ added in v1.10.3

func (v NullableCountParams) IsSet() bool

func (NullableCountParams) MarshalJSON ¶ added in v1.10.3

func (v NullableCountParams) MarshalJSON() ([]byte, error)

func (*NullableCountParams) Set ¶ added in v1.10.3

func (v *NullableCountParams) Set(val *CountParams)

func (*NullableCountParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableCountParams) UnmarshalJSON(src []byte) error

func (*NullableCountParams) Unset ¶ added in v1.10.3

func (v *NullableCountParams) Unset()

type NullableCranLibrary ¶

type NullableCranLibrary struct {
	// contains filtered or unexported fields
}

func NewNullableCranLibrary ¶

func NewNullableCranLibrary(val *CranLibrary) *NullableCranLibrary

func (NullableCranLibrary) Get ¶

func (NullableCranLibrary) IsSet ¶

func (v NullableCranLibrary) IsSet() bool

func (NullableCranLibrary) MarshalJSON ¶

func (v NullableCranLibrary) MarshalJSON() ([]byte, error)

func (*NullableCranLibrary) Set ¶

func (v *NullableCranLibrary) Set(val *CranLibrary)

func (*NullableCranLibrary) UnmarshalJSON ¶

func (v *NullableCranLibrary) UnmarshalJSON(src []byte) error

func (*NullableCranLibrary) Unset ¶

func (v *NullableCranLibrary) Unset()

type NullableCranLibraryAllOf ¶

type NullableCranLibraryAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableCranLibraryAllOf ¶

func NewNullableCranLibraryAllOf(val *CranLibraryAllOf) *NullableCranLibraryAllOf

func (NullableCranLibraryAllOf) Get ¶

func (NullableCranLibraryAllOf) IsSet ¶

func (v NullableCranLibraryAllOf) IsSet() bool

func (NullableCranLibraryAllOf) MarshalJSON ¶

func (v NullableCranLibraryAllOf) MarshalJSON() ([]byte, error)

func (*NullableCranLibraryAllOf) Set ¶

func (*NullableCranLibraryAllOf) UnmarshalJSON ¶

func (v *NullableCranLibraryAllOf) UnmarshalJSON(src []byte) error

func (*NullableCranLibraryAllOf) Unset ¶

func (v *NullableCranLibraryAllOf) Unset()

type NullableCreditCardDetails ¶ added in v1.10.3

type NullableCreditCardDetails struct {
	// contains filtered or unexported fields
}

func NewNullableCreditCardDetails ¶ added in v1.10.3

func NewNullableCreditCardDetails(val *CreditCardDetails) *NullableCreditCardDetails

func (NullableCreditCardDetails) Get ¶ added in v1.10.3

func (NullableCreditCardDetails) IsSet ¶ added in v1.10.3

func (v NullableCreditCardDetails) IsSet() bool

func (NullableCreditCardDetails) MarshalJSON ¶ added in v1.10.3

func (v NullableCreditCardDetails) MarshalJSON() ([]byte, error)

func (*NullableCreditCardDetails) Set ¶ added in v1.10.3

func (*NullableCreditCardDetails) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableCreditCardDetails) UnmarshalJSON(src []byte) error

func (*NullableCreditCardDetails) Unset ¶ added in v1.10.3

func (v *NullableCreditCardDetails) Unset()

type NullableCreditCardDetailsAllOf ¶ added in v1.10.3

type NullableCreditCardDetailsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableCreditCardDetailsAllOf ¶ added in v1.10.3

func NewNullableCreditCardDetailsAllOf(val *CreditCardDetailsAllOf) *NullableCreditCardDetailsAllOf

func (NullableCreditCardDetailsAllOf) Get ¶ added in v1.10.3

func (NullableCreditCardDetailsAllOf) IsSet ¶ added in v1.10.3

func (NullableCreditCardDetailsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableCreditCardDetailsAllOf) MarshalJSON() ([]byte, error)

func (*NullableCreditCardDetailsAllOf) Set ¶ added in v1.10.3

func (*NullableCreditCardDetailsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableCreditCardDetailsAllOf) UnmarshalJSON(src []byte) error

func (*NullableCreditCardDetailsAllOf) Unset ¶ added in v1.10.3

func (v *NullableCreditCardDetailsAllOf) Unset()

type NullableCreditCardPaymentMethod ¶

type NullableCreditCardPaymentMethod struct {
	// contains filtered or unexported fields
}

func (NullableCreditCardPaymentMethod) Get ¶

func (NullableCreditCardPaymentMethod) IsSet ¶

func (NullableCreditCardPaymentMethod) MarshalJSON ¶

func (v NullableCreditCardPaymentMethod) MarshalJSON() ([]byte, error)

func (*NullableCreditCardPaymentMethod) Set ¶

func (*NullableCreditCardPaymentMethod) UnmarshalJSON ¶

func (v *NullableCreditCardPaymentMethod) UnmarshalJSON(src []byte) error

func (*NullableCreditCardPaymentMethod) Unset ¶

type NullableCreditCardPaymentMethodAllOf ¶

type NullableCreditCardPaymentMethodAllOf struct {
	// contains filtered or unexported fields
}

func (NullableCreditCardPaymentMethodAllOf) Get ¶

func (NullableCreditCardPaymentMethodAllOf) IsSet ¶

func (NullableCreditCardPaymentMethodAllOf) MarshalJSON ¶

func (v NullableCreditCardPaymentMethodAllOf) MarshalJSON() ([]byte, error)

func (*NullableCreditCardPaymentMethodAllOf) Set ¶

func (*NullableCreditCardPaymentMethodAllOf) UnmarshalJSON ¶

func (v *NullableCreditCardPaymentMethodAllOf) UnmarshalJSON(src []byte) error

func (*NullableCreditCardPaymentMethodAllOf) Unset ¶

type NullableCronSchedule ¶

type NullableCronSchedule struct {
	// contains filtered or unexported fields
}

func NewNullableCronSchedule ¶

func NewNullableCronSchedule(val *CronSchedule) *NullableCronSchedule

func (NullableCronSchedule) Get ¶

func (NullableCronSchedule) IsSet ¶

func (v NullableCronSchedule) IsSet() bool

func (NullableCronSchedule) MarshalJSON ¶

func (v NullableCronSchedule) MarshalJSON() ([]byte, error)

func (*NullableCronSchedule) Set ¶

func (v *NullableCronSchedule) Set(val *CronSchedule)

func (*NullableCronSchedule) UnmarshalJSON ¶

func (v *NullableCronSchedule) UnmarshalJSON(src []byte) error

func (*NullableCronSchedule) Unset ¶

func (v *NullableCronSchedule) Unset()

type NullableCronScheduleAllOf ¶

type NullableCronScheduleAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableCronScheduleAllOf ¶

func NewNullableCronScheduleAllOf(val *CronScheduleAllOf) *NullableCronScheduleAllOf

func (NullableCronScheduleAllOf) Get ¶

func (NullableCronScheduleAllOf) IsSet ¶

func (v NullableCronScheduleAllOf) IsSet() bool

func (NullableCronScheduleAllOf) MarshalJSON ¶

func (v NullableCronScheduleAllOf) MarshalJSON() ([]byte, error)

func (*NullableCronScheduleAllOf) Set ¶

func (*NullableCronScheduleAllOf) UnmarshalJSON ¶

func (v *NullableCronScheduleAllOf) UnmarshalJSON(src []byte) error

func (*NullableCronScheduleAllOf) Unset ¶

func (v *NullableCronScheduleAllOf) Unset()

type NullableCsvReader ¶ added in v1.10.3

type NullableCsvReader struct {
	// contains filtered or unexported fields
}

func NewNullableCsvReader ¶ added in v1.10.3

func NewNullableCsvReader(val *CsvReader) *NullableCsvReader

func (NullableCsvReader) Get ¶ added in v1.10.3

func (v NullableCsvReader) Get() *CsvReader

func (NullableCsvReader) IsSet ¶ added in v1.10.3

func (v NullableCsvReader) IsSet() bool

func (NullableCsvReader) MarshalJSON ¶ added in v1.10.3

func (v NullableCsvReader) MarshalJSON() ([]byte, error)

func (*NullableCsvReader) Set ¶ added in v1.10.3

func (v *NullableCsvReader) Set(val *CsvReader)

func (*NullableCsvReader) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableCsvReader) UnmarshalJSON(src []byte) error

func (*NullableCsvReader) Unset ¶ added in v1.10.3

func (v *NullableCsvReader) Unset()

type NullableCsvWriter ¶ added in v1.10.3

type NullableCsvWriter struct {
	// contains filtered or unexported fields
}

func NewNullableCsvWriter ¶ added in v1.10.3

func NewNullableCsvWriter(val *CsvWriter) *NullableCsvWriter

func (NullableCsvWriter) Get ¶ added in v1.10.3

func (v NullableCsvWriter) Get() *CsvWriter

func (NullableCsvWriter) IsSet ¶ added in v1.10.3

func (v NullableCsvWriter) IsSet() bool

func (NullableCsvWriter) MarshalJSON ¶ added in v1.10.3

func (v NullableCsvWriter) MarshalJSON() ([]byte, error)

func (*NullableCsvWriter) Set ¶ added in v1.10.3

func (v *NullableCsvWriter) Set(val *CsvWriter)

func (*NullableCsvWriter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableCsvWriter) UnmarshalJSON(src []byte) error

func (*NullableCsvWriter) Unset ¶ added in v1.10.3

func (v *NullableCsvWriter) Unset()

type NullableDB2Options ¶ added in v1.10.3

type NullableDB2Options struct {
	// contains filtered or unexported fields
}

func NewNullableDB2Options ¶ added in v1.10.3

func NewNullableDB2Options(val *DB2Options) *NullableDB2Options

func (NullableDB2Options) Get ¶ added in v1.10.3

func (v NullableDB2Options) Get() *DB2Options

func (NullableDB2Options) IsSet ¶ added in v1.10.3

func (v NullableDB2Options) IsSet() bool

func (NullableDB2Options) MarshalJSON ¶ added in v1.10.3

func (v NullableDB2Options) MarshalJSON() ([]byte, error)

func (*NullableDB2Options) Set ¶ added in v1.10.3

func (v *NullableDB2Options) Set(val *DB2Options)

func (*NullableDB2Options) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDB2Options) UnmarshalJSON(src []byte) error

func (*NullableDB2Options) Unset ¶ added in v1.10.3

func (v *NullableDB2Options) Unset()

type NullableDB2OptionsAllOf ¶ added in v1.10.3

type NullableDB2OptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableDB2OptionsAllOf ¶ added in v1.10.3

func NewNullableDB2OptionsAllOf(val *DB2OptionsAllOf) *NullableDB2OptionsAllOf

func (NullableDB2OptionsAllOf) Get ¶ added in v1.10.3

func (NullableDB2OptionsAllOf) IsSet ¶ added in v1.10.3

func (v NullableDB2OptionsAllOf) IsSet() bool

func (NullableDB2OptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableDB2OptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableDB2OptionsAllOf) Set ¶ added in v1.10.3

func (*NullableDB2OptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDB2OptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableDB2OptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableDB2OptionsAllOf) Unset()

type NullableDBConnector ¶ added in v1.10.3

type NullableDBConnector struct {
	// contains filtered or unexported fields
}

func NewNullableDBConnector ¶ added in v1.10.3

func NewNullableDBConnector(val *DBConnector) *NullableDBConnector

func (NullableDBConnector) Get ¶ added in v1.10.3

func (NullableDBConnector) IsSet ¶ added in v1.10.3

func (v NullableDBConnector) IsSet() bool

func (NullableDBConnector) MarshalJSON ¶ added in v1.10.3

func (v NullableDBConnector) MarshalJSON() ([]byte, error)

func (*NullableDBConnector) Set ¶ added in v1.10.3

func (v *NullableDBConnector) Set(val *DBConnector)

func (*NullableDBConnector) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDBConnector) UnmarshalJSON(src []byte) error

func (*NullableDBConnector) Unset ¶ added in v1.10.3

func (v *NullableDBConnector) Unset()

type NullableDag ¶ added in v1.10.3

type NullableDag struct {
	// contains filtered or unexported fields
}

func NewNullableDag ¶ added in v1.10.3

func NewNullableDag(val *Dag) *NullableDag

func (NullableDag) Get ¶ added in v1.10.3

func (v NullableDag) Get() *Dag

func (NullableDag) IsSet ¶ added in v1.10.3

func (v NullableDag) IsSet() bool

func (NullableDag) MarshalJSON ¶ added in v1.10.3

func (v NullableDag) MarshalJSON() ([]byte, error)

func (*NullableDag) Set ¶ added in v1.10.3

func (v *NullableDag) Set(val *Dag)

func (*NullableDag) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDag) UnmarshalJSON(src []byte) error

func (*NullableDag) Unset ¶ added in v1.10.3

func (v *NullableDag) Unset()

type NullableDagUnverified ¶ added in v1.10.3

type NullableDagUnverified struct {
	// contains filtered or unexported fields
}

func NewNullableDagUnverified ¶ added in v1.10.3

func NewNullableDagUnverified(val *DagUnverified) *NullableDagUnverified

func (NullableDagUnverified) Get ¶ added in v1.10.3

func (NullableDagUnverified) IsSet ¶ added in v1.10.3

func (v NullableDagUnverified) IsSet() bool

func (NullableDagUnverified) MarshalJSON ¶ added in v1.10.3

func (v NullableDagUnverified) MarshalJSON() ([]byte, error)

func (*NullableDagUnverified) Set ¶ added in v1.10.3

func (v *NullableDagUnverified) Set(val *DagUnverified)

func (*NullableDagUnverified) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDagUnverified) UnmarshalJSON(src []byte) error

func (*NullableDagUnverified) Unset ¶ added in v1.10.3

func (v *NullableDagUnverified) Unset()

type NullableDaskOptions ¶

type NullableDaskOptions struct {
	// contains filtered or unexported fields
}

func NewNullableDaskOptions ¶

func NewNullableDaskOptions(val *DaskOptions) *NullableDaskOptions

func (NullableDaskOptions) Get ¶

func (NullableDaskOptions) IsSet ¶

func (v NullableDaskOptions) IsSet() bool

func (NullableDaskOptions) MarshalJSON ¶

func (v NullableDaskOptions) MarshalJSON() ([]byte, error)

func (*NullableDaskOptions) Set ¶

func (v *NullableDaskOptions) Set(val *DaskOptions)

func (*NullableDaskOptions) UnmarshalJSON ¶

func (v *NullableDaskOptions) UnmarshalJSON(src []byte) error

func (*NullableDaskOptions) Unset ¶

func (v *NullableDaskOptions) Unset()

type NullableDaskOptionsAllOf ¶

type NullableDaskOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableDaskOptionsAllOf ¶

func NewNullableDaskOptionsAllOf(val *DaskOptionsAllOf) *NullableDaskOptionsAllOf

func (NullableDaskOptionsAllOf) Get ¶

func (NullableDaskOptionsAllOf) IsSet ¶

func (v NullableDaskOptionsAllOf) IsSet() bool

func (NullableDaskOptionsAllOf) MarshalJSON ¶

func (v NullableDaskOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableDaskOptionsAllOf) Set ¶

func (*NullableDaskOptionsAllOf) UnmarshalJSON ¶

func (v *NullableDaskOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableDaskOptionsAllOf) Unset ¶

func (v *NullableDaskOptionsAllOf) Unset()

type NullableDataWarehouse ¶ added in v1.10.3

type NullableDataWarehouse struct {
	// contains filtered or unexported fields
}

func NewNullableDataWarehouse ¶ added in v1.10.3

func NewNullableDataWarehouse(val *DataWarehouse) *NullableDataWarehouse

func (NullableDataWarehouse) Get ¶ added in v1.10.3

func (NullableDataWarehouse) IsSet ¶ added in v1.10.3

func (v NullableDataWarehouse) IsSet() bool

func (NullableDataWarehouse) MarshalJSON ¶ added in v1.10.3

func (v NullableDataWarehouse) MarshalJSON() ([]byte, error)

func (*NullableDataWarehouse) Set ¶ added in v1.10.3

func (v *NullableDataWarehouse) Set(val *DataWarehouse)

func (*NullableDataWarehouse) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDataWarehouse) UnmarshalJSON(src []byte) error

func (*NullableDataWarehouse) Unset ¶ added in v1.10.3

func (v *NullableDataWarehouse) Unset()

type NullableDataWarehouseOptions ¶ added in v1.10.3

type NullableDataWarehouseOptions struct {
	// contains filtered or unexported fields
}

func NewNullableDataWarehouseOptions ¶ added in v1.10.3

func NewNullableDataWarehouseOptions(val *DataWarehouseOptions) *NullableDataWarehouseOptions

func (NullableDataWarehouseOptions) Get ¶ added in v1.10.3

func (NullableDataWarehouseOptions) IsSet ¶ added in v1.10.3

func (NullableDataWarehouseOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableDataWarehouseOptions) MarshalJSON() ([]byte, error)

func (*NullableDataWarehouseOptions) Set ¶ added in v1.10.3

func (*NullableDataWarehouseOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDataWarehouseOptions) UnmarshalJSON(src []byte) error

func (*NullableDataWarehouseOptions) Unset ¶ added in v1.10.3

func (v *NullableDataWarehouseOptions) Unset()

type NullableDataWarehousePage ¶ added in v1.10.3

type NullableDataWarehousePage struct {
	// contains filtered or unexported fields
}

func NewNullableDataWarehousePage ¶ added in v1.10.3

func NewNullableDataWarehousePage(val *DataWarehousePage) *NullableDataWarehousePage

func (NullableDataWarehousePage) Get ¶ added in v1.10.3

func (NullableDataWarehousePage) IsSet ¶ added in v1.10.3

func (v NullableDataWarehousePage) IsSet() bool

func (NullableDataWarehousePage) MarshalJSON ¶ added in v1.10.3

func (v NullableDataWarehousePage) MarshalJSON() ([]byte, error)

func (*NullableDataWarehousePage) Set ¶ added in v1.10.3

func (*NullableDataWarehousePage) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDataWarehousePage) UnmarshalJSON(src []byte) error

func (*NullableDataWarehousePage) Unset ¶ added in v1.10.3

func (v *NullableDataWarehousePage) Unset()

type NullableDataWarehousePageAllOf ¶ added in v1.10.3

type NullableDataWarehousePageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableDataWarehousePageAllOf ¶ added in v1.10.3

func NewNullableDataWarehousePageAllOf(val *DataWarehousePageAllOf) *NullableDataWarehousePageAllOf

func (NullableDataWarehousePageAllOf) Get ¶ added in v1.10.3

func (NullableDataWarehousePageAllOf) IsSet ¶ added in v1.10.3

func (NullableDataWarehousePageAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableDataWarehousePageAllOf) MarshalJSON() ([]byte, error)

func (*NullableDataWarehousePageAllOf) Set ¶ added in v1.10.3

func (*NullableDataWarehousePageAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDataWarehousePageAllOf) UnmarshalJSON(src []byte) error

func (*NullableDataWarehousePageAllOf) Unset ¶ added in v1.10.3

func (v *NullableDataWarehousePageAllOf) Unset()

type NullableDatabase ¶ added in v1.10.3

type NullableDatabase struct {
	// contains filtered or unexported fields
}

func NewNullableDatabase ¶ added in v1.10.3

func NewNullableDatabase(val *Database) *NullableDatabase

func (NullableDatabase) Get ¶ added in v1.10.3

func (v NullableDatabase) Get() *Database

func (NullableDatabase) IsSet ¶ added in v1.10.3

func (v NullableDatabase) IsSet() bool

func (NullableDatabase) MarshalJSON ¶ added in v1.10.3

func (v NullableDatabase) MarshalJSON() ([]byte, error)

func (*NullableDatabase) Set ¶ added in v1.10.3

func (v *NullableDatabase) Set(val *Database)

func (*NullableDatabase) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDatabase) UnmarshalJSON(src []byte) error

func (*NullableDatabase) Unset ¶ added in v1.10.3

func (v *NullableDatabase) Unset()

type NullableDatabaseConnector ¶ added in v1.10.3

type NullableDatabaseConnector struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseConnector ¶ added in v1.10.3

func NewNullableDatabaseConnector(val *DatabaseConnector) *NullableDatabaseConnector

func (NullableDatabaseConnector) Get ¶ added in v1.10.3

func (NullableDatabaseConnector) IsSet ¶ added in v1.10.3

func (v NullableDatabaseConnector) IsSet() bool

func (NullableDatabaseConnector) MarshalJSON ¶ added in v1.10.3

func (v NullableDatabaseConnector) MarshalJSON() ([]byte, error)

func (*NullableDatabaseConnector) Set ¶ added in v1.10.3

func (*NullableDatabaseConnector) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDatabaseConnector) UnmarshalJSON(src []byte) error

func (*NullableDatabaseConnector) Unset ¶ added in v1.10.3

func (v *NullableDatabaseConnector) Unset()

type NullableDatabaseMigrationOptions ¶ added in v1.10.3

type NullableDatabaseMigrationOptions struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseMigrationOptions ¶ added in v1.10.3

func NewNullableDatabaseMigrationOptions(val *DatabaseMigrationOptions) *NullableDatabaseMigrationOptions

func (NullableDatabaseMigrationOptions) Get ¶ added in v1.10.3

func (NullableDatabaseMigrationOptions) IsSet ¶ added in v1.10.3

func (NullableDatabaseMigrationOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableDatabaseMigrationOptions) MarshalJSON() ([]byte, error)

func (*NullableDatabaseMigrationOptions) Set ¶ added in v1.10.3

func (*NullableDatabaseMigrationOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDatabaseMigrationOptions) UnmarshalJSON(src []byte) error

func (*NullableDatabaseMigrationOptions) Unset ¶ added in v1.10.3

type NullableDatabaseMigrationOptionsAllOf ¶ added in v1.10.3

type NullableDatabaseMigrationOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseMigrationOptionsAllOf ¶ added in v1.10.3

func NewNullableDatabaseMigrationOptionsAllOf(val *DatabaseMigrationOptionsAllOf) *NullableDatabaseMigrationOptionsAllOf

func (NullableDatabaseMigrationOptionsAllOf) Get ¶ added in v1.10.3

func (NullableDatabaseMigrationOptionsAllOf) IsSet ¶ added in v1.10.3

func (NullableDatabaseMigrationOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableDatabaseMigrationOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableDatabaseMigrationOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableDatabaseMigrationOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDatabaseMigrationOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableDatabaseMigrationOptionsAllOf) Unset ¶ added in v1.10.3

type NullableDbtOptions ¶

type NullableDbtOptions struct {
	// contains filtered or unexported fields
}

func NewNullableDbtOptions ¶

func NewNullableDbtOptions(val *DbtOptions) *NullableDbtOptions

func (NullableDbtOptions) Get ¶

func (v NullableDbtOptions) Get() *DbtOptions

func (NullableDbtOptions) IsSet ¶

func (v NullableDbtOptions) IsSet() bool

func (NullableDbtOptions) MarshalJSON ¶

func (v NullableDbtOptions) MarshalJSON() ([]byte, error)

func (*NullableDbtOptions) Set ¶

func (v *NullableDbtOptions) Set(val *DbtOptions)

func (*NullableDbtOptions) UnmarshalJSON ¶

func (v *NullableDbtOptions) UnmarshalJSON(src []byte) error

func (*NullableDbtOptions) Unset ¶

func (v *NullableDbtOptions) Unset()

type NullableDbtOptionsAllOf ¶

type NullableDbtOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableDbtOptionsAllOf ¶

func NewNullableDbtOptionsAllOf(val *DbtOptionsAllOf) *NullableDbtOptionsAllOf

func (NullableDbtOptionsAllOf) Get ¶

func (NullableDbtOptionsAllOf) IsSet ¶

func (v NullableDbtOptionsAllOf) IsSet() bool

func (NullableDbtOptionsAllOf) MarshalJSON ¶

func (v NullableDbtOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableDbtOptionsAllOf) Set ¶

func (*NullableDbtOptionsAllOf) UnmarshalJSON ¶

func (v *NullableDbtOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableDbtOptionsAllOf) Unset ¶

func (v *NullableDbtOptionsAllOf) Unset()

type NullableDependency ¶

type NullableDependency struct {
	// contains filtered or unexported fields
}

func NewNullableDependency ¶

func NewNullableDependency(val *Dependency) *NullableDependency

func (NullableDependency) Get ¶

func (v NullableDependency) Get() *Dependency

func (NullableDependency) IsSet ¶

func (v NullableDependency) IsSet() bool

func (NullableDependency) MarshalJSON ¶

func (v NullableDependency) MarshalJSON() ([]byte, error)

func (*NullableDependency) Set ¶

func (v *NullableDependency) Set(val *Dependency)

func (*NullableDependency) UnmarshalJSON ¶

func (v *NullableDependency) UnmarshalJSON(src []byte) error

func (*NullableDependency) Unset ¶

func (v *NullableDependency) Unset()

type NullableDetails ¶

type NullableDetails struct {
	// contains filtered or unexported fields
}

func NewNullableDetails ¶

func NewNullableDetails(val *Details) *NullableDetails

func (NullableDetails) Get ¶

func (v NullableDetails) Get() *Details

func (NullableDetails) IsSet ¶

func (v NullableDetails) IsSet() bool

func (NullableDetails) MarshalJSON ¶

func (v NullableDetails) MarshalJSON() ([]byte, error)

func (*NullableDetails) Set ¶

func (v *NullableDetails) Set(val *Details)

func (*NullableDetails) UnmarshalJSON ¶

func (v *NullableDetails) UnmarshalJSON(src []byte) error

func (*NullableDetails) Unset ¶

func (v *NullableDetails) Unset()

type NullableDetails1 ¶ added in v1.10.3

type NullableDetails1 struct {
	// contains filtered or unexported fields
}

func NewNullableDetails1 ¶ added in v1.10.3

func NewNullableDetails1(val *Details1) *NullableDetails1

func (NullableDetails1) Get ¶ added in v1.10.3

func (v NullableDetails1) Get() *Details1

func (NullableDetails1) IsSet ¶ added in v1.10.3

func (v NullableDetails1) IsSet() bool

func (NullableDetails1) MarshalJSON ¶ added in v1.10.3

func (v NullableDetails1) MarshalJSON() ([]byte, error)

func (*NullableDetails1) Set ¶ added in v1.10.3

func (v *NullableDetails1) Set(val *Details1)

func (*NullableDetails1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDetails1) UnmarshalJSON(src []byte) error

func (*NullableDetails1) Unset ¶ added in v1.10.3

func (v *NullableDetails1) Unset()

type NullableDevice ¶ added in v1.10.3

type NullableDevice struct {
	// contains filtered or unexported fields
}

func NewNullableDevice ¶ added in v1.10.3

func NewNullableDevice(val *Device) *NullableDevice

func (NullableDevice) Get ¶ added in v1.10.3

func (v NullableDevice) Get() *Device

func (NullableDevice) IsSet ¶ added in v1.10.3

func (v NullableDevice) IsSet() bool

func (NullableDevice) MarshalJSON ¶ added in v1.10.3

func (v NullableDevice) MarshalJSON() ([]byte, error)

func (*NullableDevice) Set ¶ added in v1.10.3

func (v *NullableDevice) Set(val *Device)

func (*NullableDevice) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDevice) UnmarshalJSON(src []byte) error

func (*NullableDevice) Unset ¶ added in v1.10.3

func (v *NullableDevice) Unset()

type NullableDevicePage ¶ added in v1.10.3

type NullableDevicePage struct {
	// contains filtered or unexported fields
}

func NewNullableDevicePage ¶ added in v1.10.3

func NewNullableDevicePage(val *DevicePage) *NullableDevicePage

func (NullableDevicePage) Get ¶ added in v1.10.3

func (v NullableDevicePage) Get() *DevicePage

func (NullableDevicePage) IsSet ¶ added in v1.10.3

func (v NullableDevicePage) IsSet() bool

func (NullableDevicePage) MarshalJSON ¶ added in v1.10.3

func (v NullableDevicePage) MarshalJSON() ([]byte, error)

func (*NullableDevicePage) Set ¶ added in v1.10.3

func (v *NullableDevicePage) Set(val *DevicePage)

func (*NullableDevicePage) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDevicePage) UnmarshalJSON(src []byte) error

func (*NullableDevicePage) Unset ¶ added in v1.10.3

func (v *NullableDevicePage) Unset()

type NullableDevicePageAllOf ¶ added in v1.10.3

type NullableDevicePageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableDevicePageAllOf ¶ added in v1.10.3

func NewNullableDevicePageAllOf(val *DevicePageAllOf) *NullableDevicePageAllOf

func (NullableDevicePageAllOf) Get ¶ added in v1.10.3

func (NullableDevicePageAllOf) IsSet ¶ added in v1.10.3

func (v NullableDevicePageAllOf) IsSet() bool

func (NullableDevicePageAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableDevicePageAllOf) MarshalJSON() ([]byte, error)

func (*NullableDevicePageAllOf) Set ¶ added in v1.10.3

func (*NullableDevicePageAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDevicePageAllOf) UnmarshalJSON(src []byte) error

func (*NullableDevicePageAllOf) Unset ¶ added in v1.10.3

func (v *NullableDevicePageAllOf) Unset()

type NullableDistinctParams ¶ added in v1.10.3

type NullableDistinctParams struct {
	// contains filtered or unexported fields
}

func NewNullableDistinctParams ¶ added in v1.10.3

func NewNullableDistinctParams(val *DistinctParams) *NullableDistinctParams

func (NullableDistinctParams) Get ¶ added in v1.10.3

func (NullableDistinctParams) IsSet ¶ added in v1.10.3

func (v NullableDistinctParams) IsSet() bool

func (NullableDistinctParams) MarshalJSON ¶ added in v1.10.3

func (v NullableDistinctParams) MarshalJSON() ([]byte, error)

func (*NullableDistinctParams) Set ¶ added in v1.10.3

func (*NullableDistinctParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDistinctParams) UnmarshalJSON(src []byte) error

func (*NullableDistinctParams) Unset ¶ added in v1.10.3

func (v *NullableDistinctParams) Unset()

type NullableDistinctTask ¶ added in v1.10.3

type NullableDistinctTask struct {
	// contains filtered or unexported fields
}

func NewNullableDistinctTask ¶ added in v1.10.3

func NewNullableDistinctTask(val *DistinctTask) *NullableDistinctTask

func (NullableDistinctTask) Get ¶ added in v1.10.3

func (NullableDistinctTask) IsSet ¶ added in v1.10.3

func (v NullableDistinctTask) IsSet() bool

func (NullableDistinctTask) MarshalJSON ¶ added in v1.10.3

func (v NullableDistinctTask) MarshalJSON() ([]byte, error)

func (*NullableDistinctTask) Set ¶ added in v1.10.3

func (v *NullableDistinctTask) Set(val *DistinctTask)

func (*NullableDistinctTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDistinctTask) UnmarshalJSON(src []byte) error

func (*NullableDistinctTask) Unset ¶ added in v1.10.3

func (v *NullableDistinctTask) Unset()

type NullableDropParams ¶ added in v1.10.3

type NullableDropParams struct {
	// contains filtered or unexported fields
}

func NewNullableDropParams ¶ added in v1.10.3

func NewNullableDropParams(val *DropParams) *NullableDropParams

func (NullableDropParams) Get ¶ added in v1.10.3

func (v NullableDropParams) Get() *DropParams

func (NullableDropParams) IsSet ¶ added in v1.10.3

func (v NullableDropParams) IsSet() bool

func (NullableDropParams) MarshalJSON ¶ added in v1.10.3

func (v NullableDropParams) MarshalJSON() ([]byte, error)

func (*NullableDropParams) Set ¶ added in v1.10.3

func (v *NullableDropParams) Set(val *DropParams)

func (*NullableDropParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDropParams) UnmarshalJSON(src []byte) error

func (*NullableDropParams) Unset ¶ added in v1.10.3

func (v *NullableDropParams) Unset()

type NullableDropTask ¶ added in v1.10.3

type NullableDropTask struct {
	// contains filtered or unexported fields
}

func NewNullableDropTask ¶ added in v1.10.3

func NewNullableDropTask(val *DropTask) *NullableDropTask

func (NullableDropTask) Get ¶ added in v1.10.3

func (v NullableDropTask) Get() *DropTask

func (NullableDropTask) IsSet ¶ added in v1.10.3

func (v NullableDropTask) IsSet() bool

func (NullableDropTask) MarshalJSON ¶ added in v1.10.3

func (v NullableDropTask) MarshalJSON() ([]byte, error)

func (*NullableDropTask) Set ¶ added in v1.10.3

func (v *NullableDropTask) Set(val *DropTask)

func (*NullableDropTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableDropTask) UnmarshalJSON(src []byte) error

func (*NullableDropTask) Unset ¶ added in v1.10.3

func (v *NullableDropTask) Unset()

type NullableEndTask ¶ added in v1.10.3

type NullableEndTask struct {
	// contains filtered or unexported fields
}

func NewNullableEndTask ¶ added in v1.10.3

func NewNullableEndTask(val *EndTask) *NullableEndTask

func (NullableEndTask) Get ¶ added in v1.10.3

func (v NullableEndTask) Get() *EndTask

func (NullableEndTask) IsSet ¶ added in v1.10.3

func (v NullableEndTask) IsSet() bool

func (NullableEndTask) MarshalJSON ¶ added in v1.10.3

func (v NullableEndTask) MarshalJSON() ([]byte, error)

func (*NullableEndTask) Set ¶ added in v1.10.3

func (v *NullableEndTask) Set(val *EndTask)

func (*NullableEndTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEndTask) UnmarshalJSON(src []byte) error

func (*NullableEndTask) Unset ¶ added in v1.10.3

func (v *NullableEndTask) Unset()

type NullableEndTaskAllOf ¶ added in v1.10.3

type NullableEndTaskAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableEndTaskAllOf ¶ added in v1.10.3

func NewNullableEndTaskAllOf(val *EndTaskAllOf) *NullableEndTaskAllOf

func (NullableEndTaskAllOf) Get ¶ added in v1.10.3

func (NullableEndTaskAllOf) IsSet ¶ added in v1.10.3

func (v NullableEndTaskAllOf) IsSet() bool

func (NullableEndTaskAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableEndTaskAllOf) MarshalJSON() ([]byte, error)

func (*NullableEndTaskAllOf) Set ¶ added in v1.10.3

func (v *NullableEndTaskAllOf) Set(val *EndTaskAllOf)

func (*NullableEndTaskAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEndTaskAllOf) UnmarshalJSON(src []byte) error

func (*NullableEndTaskAllOf) Unset ¶ added in v1.10.3

func (v *NullableEndTaskAllOf) Unset()

type NullableEndpoint ¶ added in v1.10.3

type NullableEndpoint struct {
	// contains filtered or unexported fields
}

func NewNullableEndpoint ¶ added in v1.10.3

func NewNullableEndpoint(val *Endpoint) *NullableEndpoint

func (NullableEndpoint) Get ¶ added in v1.10.3

func (v NullableEndpoint) Get() *Endpoint

func (NullableEndpoint) IsSet ¶ added in v1.10.3

func (v NullableEndpoint) IsSet() bool

func (NullableEndpoint) MarshalJSON ¶ added in v1.10.3

func (v NullableEndpoint) MarshalJSON() ([]byte, error)

func (*NullableEndpoint) Set ¶ added in v1.10.3

func (v *NullableEndpoint) Set(val *Endpoint)

func (*NullableEndpoint) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEndpoint) UnmarshalJSON(src []byte) error

func (*NullableEndpoint) Unset ¶ added in v1.10.3

func (v *NullableEndpoint) Unset()

type NullableEndpointPage ¶ added in v1.10.3

type NullableEndpointPage struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointPage ¶ added in v1.10.3

func NewNullableEndpointPage(val *EndpointPage) *NullableEndpointPage

func (NullableEndpointPage) Get ¶ added in v1.10.3

func (NullableEndpointPage) IsSet ¶ added in v1.10.3

func (v NullableEndpointPage) IsSet() bool

func (NullableEndpointPage) MarshalJSON ¶ added in v1.10.3

func (v NullableEndpointPage) MarshalJSON() ([]byte, error)

func (*NullableEndpointPage) Set ¶ added in v1.10.3

func (v *NullableEndpointPage) Set(val *EndpointPage)

func (*NullableEndpointPage) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEndpointPage) UnmarshalJSON(src []byte) error

func (*NullableEndpointPage) Unset ¶ added in v1.10.3

func (v *NullableEndpointPage) Unset()

type NullableEndpointPageAllOf ¶ added in v1.10.3

type NullableEndpointPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableEndpointPageAllOf ¶ added in v1.10.3

func NewNullableEndpointPageAllOf(val *EndpointPageAllOf) *NullableEndpointPageAllOf

func (NullableEndpointPageAllOf) Get ¶ added in v1.10.3

func (NullableEndpointPageAllOf) IsSet ¶ added in v1.10.3

func (v NullableEndpointPageAllOf) IsSet() bool

func (NullableEndpointPageAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableEndpointPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableEndpointPageAllOf) Set ¶ added in v1.10.3

func (*NullableEndpointPageAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEndpointPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableEndpointPageAllOf) Unset ¶ added in v1.10.3

func (v *NullableEndpointPageAllOf) Unset()

type NullableEnrollment ¶ added in v1.10.3

type NullableEnrollment struct {
	// contains filtered or unexported fields
}

func NewNullableEnrollment ¶ added in v1.10.3

func NewNullableEnrollment(val *Enrollment) *NullableEnrollment

func (NullableEnrollment) Get ¶ added in v1.10.3

func (v NullableEnrollment) Get() *Enrollment

func (NullableEnrollment) IsSet ¶ added in v1.10.3

func (v NullableEnrollment) IsSet() bool

func (NullableEnrollment) MarshalJSON ¶ added in v1.10.3

func (v NullableEnrollment) MarshalJSON() ([]byte, error)

func (*NullableEnrollment) Set ¶ added in v1.10.3

func (v *NullableEnrollment) Set(val *Enrollment)

func (*NullableEnrollment) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEnrollment) UnmarshalJSON(src []byte) error

func (*NullableEnrollment) Unset ¶ added in v1.10.3

func (v *NullableEnrollment) Unset()

type NullableEnrollmentPage ¶ added in v1.10.3

type NullableEnrollmentPage struct {
	// contains filtered or unexported fields
}

func NewNullableEnrollmentPage ¶ added in v1.10.3

func NewNullableEnrollmentPage(val *EnrollmentPage) *NullableEnrollmentPage

func (NullableEnrollmentPage) Get ¶ added in v1.10.3

func (NullableEnrollmentPage) IsSet ¶ added in v1.10.3

func (v NullableEnrollmentPage) IsSet() bool

func (NullableEnrollmentPage) MarshalJSON ¶ added in v1.10.3

func (v NullableEnrollmentPage) MarshalJSON() ([]byte, error)

func (*NullableEnrollmentPage) Set ¶ added in v1.10.3

func (*NullableEnrollmentPage) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEnrollmentPage) UnmarshalJSON(src []byte) error

func (*NullableEnrollmentPage) Unset ¶ added in v1.10.3

func (v *NullableEnrollmentPage) Unset()

type NullableEnrollmentPageAllOf ¶ added in v1.10.3

type NullableEnrollmentPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableEnrollmentPageAllOf ¶ added in v1.10.3

func NewNullableEnrollmentPageAllOf(val *EnrollmentPageAllOf) *NullableEnrollmentPageAllOf

func (NullableEnrollmentPageAllOf) Get ¶ added in v1.10.3

func (NullableEnrollmentPageAllOf) IsSet ¶ added in v1.10.3

func (NullableEnrollmentPageAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableEnrollmentPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableEnrollmentPageAllOf) Set ¶ added in v1.10.3

func (*NullableEnrollmentPageAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEnrollmentPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableEnrollmentPageAllOf) Unset ¶ added in v1.10.3

func (v *NullableEnrollmentPageAllOf) Unset()

type NullableEqualFilter ¶ added in v1.10.3

type NullableEqualFilter struct {
	// contains filtered or unexported fields
}

func NewNullableEqualFilter ¶ added in v1.10.3

func NewNullableEqualFilter(val *EqualFilter) *NullableEqualFilter

func (NullableEqualFilter) Get ¶ added in v1.10.3

func (NullableEqualFilter) IsSet ¶ added in v1.10.3

func (v NullableEqualFilter) IsSet() bool

func (NullableEqualFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableEqualFilter) MarshalJSON() ([]byte, error)

func (*NullableEqualFilter) Set ¶ added in v1.10.3

func (v *NullableEqualFilter) Set(val *EqualFilter)

func (*NullableEqualFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEqualFilter) UnmarshalJSON(src []byte) error

func (*NullableEqualFilter) Unset ¶ added in v1.10.3

func (v *NullableEqualFilter) 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 NullableErrorTask ¶ added in v1.10.3

type NullableErrorTask struct {
	// contains filtered or unexported fields
}

func NewNullableErrorTask ¶ added in v1.10.3

func NewNullableErrorTask(val *ErrorTask) *NullableErrorTask

func (NullableErrorTask) Get ¶ added in v1.10.3

func (v NullableErrorTask) Get() *ErrorTask

func (NullableErrorTask) IsSet ¶ added in v1.10.3

func (v NullableErrorTask) IsSet() bool

func (NullableErrorTask) MarshalJSON ¶ added in v1.10.3

func (v NullableErrorTask) MarshalJSON() ([]byte, error)

func (*NullableErrorTask) Set ¶ added in v1.10.3

func (v *NullableErrorTask) Set(val *ErrorTask)

func (*NullableErrorTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableErrorTask) UnmarshalJSON(src []byte) error

func (*NullableErrorTask) Unset ¶ added in v1.10.3

func (v *NullableErrorTask) Unset()

type NullableErrorTaskAllOf ¶ added in v1.10.3

type NullableErrorTaskAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableErrorTaskAllOf ¶ added in v1.10.3

func NewNullableErrorTaskAllOf(val *ErrorTaskAllOf) *NullableErrorTaskAllOf

func (NullableErrorTaskAllOf) Get ¶ added in v1.10.3

func (NullableErrorTaskAllOf) IsSet ¶ added in v1.10.3

func (v NullableErrorTaskAllOf) IsSet() bool

func (NullableErrorTaskAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableErrorTaskAllOf) MarshalJSON() ([]byte, error)

func (*NullableErrorTaskAllOf) Set ¶ added in v1.10.3

func (*NullableErrorTaskAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableErrorTaskAllOf) UnmarshalJSON(src []byte) error

func (*NullableErrorTaskAllOf) Unset ¶ added in v1.10.3

func (v *NullableErrorTaskAllOf) Unset()

type NullableEstimation ¶ added in v1.10.3

type NullableEstimation struct {
	// contains filtered or unexported fields
}

func NewNullableEstimation ¶ added in v1.10.3

func NewNullableEstimation(val *Estimation) *NullableEstimation

func (NullableEstimation) Get ¶ added in v1.10.3

func (v NullableEstimation) Get() *Estimation

func (NullableEstimation) IsSet ¶ added in v1.10.3

func (v NullableEstimation) IsSet() bool

func (NullableEstimation) MarshalJSON ¶ added in v1.10.3

func (v NullableEstimation) MarshalJSON() ([]byte, error)

func (*NullableEstimation) Set ¶ added in v1.10.3

func (v *NullableEstimation) Set(val *Estimation)

func (*NullableEstimation) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEstimation) UnmarshalJSON(src []byte) error

func (*NullableEstimation) Unset ¶ added in v1.10.3

func (v *NullableEstimation) Unset()

type NullableEtlDagSchemasEnumsLanguageType ¶ added in v1.10.3

type NullableEtlDagSchemasEnumsLanguageType struct {
	// contains filtered or unexported fields
}

func NewNullableEtlDagSchemasEnumsLanguageType ¶ added in v1.10.3

func NewNullableEtlDagSchemasEnumsLanguageType(val *EtlDagSchemasEnumsLanguageType) *NullableEtlDagSchemasEnumsLanguageType

func (NullableEtlDagSchemasEnumsLanguageType) Get ¶ added in v1.10.3

func (NullableEtlDagSchemasEnumsLanguageType) IsSet ¶ added in v1.10.3

func (NullableEtlDagSchemasEnumsLanguageType) MarshalJSON ¶ added in v1.10.3

func (v NullableEtlDagSchemasEnumsLanguageType) MarshalJSON() ([]byte, error)

func (*NullableEtlDagSchemasEnumsLanguageType) Set ¶ added in v1.10.3

func (*NullableEtlDagSchemasEnumsLanguageType) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEtlDagSchemasEnumsLanguageType) UnmarshalJSON(src []byte) error

func (*NullableEtlDagSchemasEnumsLanguageType) Unset ¶ added in v1.10.3

type NullableEtlDagVisitorsEnumsLanguageType ¶ added in v1.10.3

type NullableEtlDagVisitorsEnumsLanguageType struct {
	// contains filtered or unexported fields
}

func NewNullableEtlDagVisitorsEnumsLanguageType ¶ added in v1.10.3

func NewNullableEtlDagVisitorsEnumsLanguageType(val *EtlDagVisitorsEnumsLanguageType) *NullableEtlDagVisitorsEnumsLanguageType

func (NullableEtlDagVisitorsEnumsLanguageType) Get ¶ added in v1.10.3

func (NullableEtlDagVisitorsEnumsLanguageType) IsSet ¶ added in v1.10.3

func (NullableEtlDagVisitorsEnumsLanguageType) MarshalJSON ¶ added in v1.10.3

func (v NullableEtlDagVisitorsEnumsLanguageType) MarshalJSON() ([]byte, error)

func (*NullableEtlDagVisitorsEnumsLanguageType) Set ¶ added in v1.10.3

func (*NullableEtlDagVisitorsEnumsLanguageType) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableEtlDagVisitorsEnumsLanguageType) UnmarshalJSON(src []byte) error

func (*NullableEtlDagVisitorsEnumsLanguageType) Unset ¶ added in v1.10.3

type NullableEvent ¶

type NullableEvent struct {
	// contains filtered or unexported fields
}

func NewNullableEvent ¶

func NewNullableEvent(val *Event) *NullableEvent

func (NullableEvent) Get ¶

func (v NullableEvent) Get() *Event

func (NullableEvent) IsSet ¶

func (v NullableEvent) IsSet() bool

func (NullableEvent) MarshalJSON ¶

func (v NullableEvent) MarshalJSON() ([]byte, error)

func (*NullableEvent) Set ¶

func (v *NullableEvent) Set(val *Event)

func (*NullableEvent) UnmarshalJSON ¶

func (v *NullableEvent) UnmarshalJSON(src []byte) error

func (*NullableEvent) Unset ¶

func (v *NullableEvent) Unset()

type NullableEventHubNotification ¶

type NullableEventHubNotification struct {
	// contains filtered or unexported fields
}

func (NullableEventHubNotification) Get ¶

func (NullableEventHubNotification) IsSet ¶

func (NullableEventHubNotification) MarshalJSON ¶

func (v NullableEventHubNotification) MarshalJSON() ([]byte, error)

func (*NullableEventHubNotification) Set ¶

func (*NullableEventHubNotification) UnmarshalJSON ¶

func (v *NullableEventHubNotification) UnmarshalJSON(src []byte) error

func (*NullableEventHubNotification) Unset ¶

func (v *NullableEventHubNotification) Unset()

type NullableEventHubNotificationAllOf ¶

type NullableEventHubNotificationAllOf struct {
	// contains filtered or unexported fields
}

func (NullableEventHubNotificationAllOf) Get ¶

func (NullableEventHubNotificationAllOf) IsSet ¶

func (NullableEventHubNotificationAllOf) MarshalJSON ¶

func (v NullableEventHubNotificationAllOf) MarshalJSON() ([]byte, error)

func (*NullableEventHubNotificationAllOf) Set ¶

func (*NullableEventHubNotificationAllOf) UnmarshalJSON ¶

func (v *NullableEventHubNotificationAllOf) UnmarshalJSON(src []byte) error

func (*NullableEventHubNotificationAllOf) Unset ¶

type NullableExternalOptions ¶ added in v1.10.3

type NullableExternalOptions struct {
	// contains filtered or unexported fields
}

func NewNullableExternalOptions ¶ added in v1.10.3

func NewNullableExternalOptions(val *ExternalOptions) *NullableExternalOptions

func (NullableExternalOptions) Get ¶ added in v1.10.3

func (NullableExternalOptions) IsSet ¶ added in v1.10.3

func (v NullableExternalOptions) IsSet() bool

func (NullableExternalOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableExternalOptions) MarshalJSON() ([]byte, error)

func (*NullableExternalOptions) Set ¶ added in v1.10.3

func (*NullableExternalOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableExternalOptions) UnmarshalJSON(src []byte) error

func (*NullableExternalOptions) Unset ¶ added in v1.10.3

func (v *NullableExternalOptions) Unset()

type NullableExternalPaymentMethod ¶

type NullableExternalPaymentMethod struct {
	// contains filtered or unexported fields
}

func (NullableExternalPaymentMethod) Get ¶

func (NullableExternalPaymentMethod) IsSet ¶

func (NullableExternalPaymentMethod) MarshalJSON ¶

func (v NullableExternalPaymentMethod) MarshalJSON() ([]byte, error)

func (*NullableExternalPaymentMethod) Set ¶

func (*NullableExternalPaymentMethod) UnmarshalJSON ¶

func (v *NullableExternalPaymentMethod) UnmarshalJSON(src []byte) error

func (*NullableExternalPaymentMethod) Unset ¶

func (v *NullableExternalPaymentMethod) Unset()

type NullableExternalPaymentMethodAllOf ¶

type NullableExternalPaymentMethodAllOf struct {
	// contains filtered or unexported fields
}

func (NullableExternalPaymentMethodAllOf) Get ¶

func (NullableExternalPaymentMethodAllOf) IsSet ¶

func (NullableExternalPaymentMethodAllOf) MarshalJSON ¶

func (v NullableExternalPaymentMethodAllOf) MarshalJSON() ([]byte, error)

func (*NullableExternalPaymentMethodAllOf) Set ¶

func (*NullableExternalPaymentMethodAllOf) UnmarshalJSON ¶

func (v *NullableExternalPaymentMethodAllOf) UnmarshalJSON(src []byte) error

func (*NullableExternalPaymentMethodAllOf) Unset ¶

type NullableField ¶ added in v1.10.3

type NullableField struct {
	// contains filtered or unexported fields
}

func NewNullableField ¶ added in v1.10.3

func NewNullableField(val *Field) *NullableField

func (NullableField) Get ¶ added in v1.10.3

func (v NullableField) Get() *Field

func (NullableField) IsSet ¶ added in v1.10.3

func (v NullableField) IsSet() bool

func (NullableField) MarshalJSON ¶ added in v1.10.3

func (v NullableField) MarshalJSON() ([]byte, error)

func (*NullableField) Set ¶ added in v1.10.3

func (v *NullableField) Set(val *Field)

func (*NullableField) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableField) UnmarshalJSON(src []byte) error

func (*NullableField) Unset ¶ added in v1.10.3

func (v *NullableField) Unset()

type NullableFileLibrary ¶

type NullableFileLibrary struct {
	// contains filtered or unexported fields
}

func NewNullableFileLibrary ¶

func NewNullableFileLibrary(val *FileLibrary) *NullableFileLibrary

func (NullableFileLibrary) Get ¶

func (NullableFileLibrary) IsSet ¶

func (v NullableFileLibrary) IsSet() bool

func (NullableFileLibrary) MarshalJSON ¶

func (v NullableFileLibrary) MarshalJSON() ([]byte, error)

func (*NullableFileLibrary) Set ¶

func (v *NullableFileLibrary) Set(val *FileLibrary)

func (*NullableFileLibrary) UnmarshalJSON ¶

func (v *NullableFileLibrary) UnmarshalJSON(src []byte) error

func (*NullableFileLibrary) Unset ¶

func (v *NullableFileLibrary) Unset()

type NullableFileLibraryAllOf ¶

type NullableFileLibraryAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableFileLibraryAllOf ¶

func NewNullableFileLibraryAllOf(val *FileLibraryAllOf) *NullableFileLibraryAllOf

func (NullableFileLibraryAllOf) Get ¶

func (NullableFileLibraryAllOf) IsSet ¶

func (v NullableFileLibraryAllOf) IsSet() bool

func (NullableFileLibraryAllOf) MarshalJSON ¶

func (v NullableFileLibraryAllOf) MarshalJSON() ([]byte, error)

func (*NullableFileLibraryAllOf) Set ¶

func (*NullableFileLibraryAllOf) UnmarshalJSON ¶

func (v *NullableFileLibraryAllOf) UnmarshalJSON(src []byte) error

func (*NullableFileLibraryAllOf) Unset ¶

func (v *NullableFileLibraryAllOf) Unset()

type NullableFileOrDirectory ¶

type NullableFileOrDirectory struct {
	// contains filtered or unexported fields
}

func NewNullableFileOrDirectory ¶

func NewNullableFileOrDirectory(val *FileOrDirectory) *NullableFileOrDirectory

func (NullableFileOrDirectory) Get ¶

func (NullableFileOrDirectory) IsSet ¶

func (v NullableFileOrDirectory) IsSet() bool

func (NullableFileOrDirectory) MarshalJSON ¶

func (v NullableFileOrDirectory) MarshalJSON() ([]byte, error)

func (*NullableFileOrDirectory) Set ¶

func (*NullableFileOrDirectory) UnmarshalJSON ¶

func (v *NullableFileOrDirectory) UnmarshalJSON(src []byte) error

func (*NullableFileOrDirectory) Unset ¶

func (v *NullableFileOrDirectory) Unset()

type NullableFilterTask ¶ added in v1.10.3

type NullableFilterTask struct {
	// contains filtered or unexported fields
}

func NewNullableFilterTask ¶ added in v1.10.3

func NewNullableFilterTask(val *FilterTask) *NullableFilterTask

func (NullableFilterTask) Get ¶ added in v1.10.3

func (v NullableFilterTask) Get() *FilterTask

func (NullableFilterTask) IsSet ¶ added in v1.10.3

func (v NullableFilterTask) IsSet() bool

func (NullableFilterTask) MarshalJSON ¶ added in v1.10.3

func (v NullableFilterTask) MarshalJSON() ([]byte, error)

func (*NullableFilterTask) Set ¶ added in v1.10.3

func (v *NullableFilterTask) Set(val *FilterTask)

func (*NullableFilterTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableFilterTask) UnmarshalJSON(src []byte) error

func (*NullableFilterTask) Unset ¶ added in v1.10.3

func (v *NullableFilterTask) Unset()

type NullableFilterTaskParameters ¶ added in v1.10.3

type NullableFilterTaskParameters struct {
	// contains filtered or unexported fields
}

func NewNullableFilterTaskParameters ¶ added in v1.10.3

func NewNullableFilterTaskParameters(val *FilterTaskParameters) *NullableFilterTaskParameters

func (NullableFilterTaskParameters) Get ¶ added in v1.10.3

func (NullableFilterTaskParameters) IsSet ¶ added in v1.10.3

func (NullableFilterTaskParameters) MarshalJSON ¶ added in v1.10.3

func (v NullableFilterTaskParameters) MarshalJSON() ([]byte, error)

func (*NullableFilterTaskParameters) Set ¶ added in v1.10.3

func (*NullableFilterTaskParameters) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableFilterTaskParameters) UnmarshalJSON(src []byte) error

func (*NullableFilterTaskParameters) Unset ¶ added in v1.10.3

func (v *NullableFilterTaskParameters) Unset()

type NullableFindVerificationByCode200Response ¶ added in v1.10.3

type NullableFindVerificationByCode200Response struct {
	// contains filtered or unexported fields
}

func NewNullableFindVerificationByCode200Response ¶ added in v1.10.3

func NewNullableFindVerificationByCode200Response(val *FindVerificationByCode200Response) *NullableFindVerificationByCode200Response

func (NullableFindVerificationByCode200Response) Get ¶ added in v1.10.3

func (NullableFindVerificationByCode200Response) IsSet ¶ added in v1.10.3

func (NullableFindVerificationByCode200Response) MarshalJSON ¶ added in v1.10.3

func (*NullableFindVerificationByCode200Response) Set ¶ added in v1.10.3

func (*NullableFindVerificationByCode200Response) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableFindVerificationByCode200Response) UnmarshalJSON(src []byte) error

func (*NullableFindVerificationByCode200Response) Unset ¶ added in v1.10.3

type NullableFirewallCheckStatus ¶

type NullableFirewallCheckStatus struct {
	// contains filtered or unexported fields
}

func (NullableFirewallCheckStatus) Get ¶

func (NullableFirewallCheckStatus) IsSet ¶

func (NullableFirewallCheckStatus) MarshalJSON ¶

func (v NullableFirewallCheckStatus) MarshalJSON() ([]byte, error)

func (*NullableFirewallCheckStatus) Set ¶

func (*NullableFirewallCheckStatus) UnmarshalJSON ¶

func (v *NullableFirewallCheckStatus) UnmarshalJSON(src []byte) error

func (*NullableFirewallCheckStatus) Unset ¶

func (v *NullableFirewallCheckStatus) Unset()

type NullableFirewallRule ¶

type NullableFirewallRule struct {
	// contains filtered or unexported fields
}

func NewNullableFirewallRule ¶

func NewNullableFirewallRule(val *FirewallRule) *NullableFirewallRule

func (NullableFirewallRule) Get ¶

func (NullableFirewallRule) IsSet ¶

func (v NullableFirewallRule) IsSet() bool

func (NullableFirewallRule) MarshalJSON ¶

func (v NullableFirewallRule) MarshalJSON() ([]byte, error)

func (*NullableFirewallRule) Set ¶

func (v *NullableFirewallRule) Set(val *FirewallRule)

func (*NullableFirewallRule) UnmarshalJSON ¶

func (v *NullableFirewallRule) UnmarshalJSON(src []byte) error

func (*NullableFirewallRule) Unset ¶

func (v *NullableFirewallRule) Unset()

type NullableFlinkOptions ¶

type NullableFlinkOptions struct {
	// contains filtered or unexported fields
}

func NewNullableFlinkOptions ¶

func NewNullableFlinkOptions(val *FlinkOptions) *NullableFlinkOptions

func (NullableFlinkOptions) Get ¶

func (NullableFlinkOptions) IsSet ¶

func (v NullableFlinkOptions) IsSet() bool

func (NullableFlinkOptions) MarshalJSON ¶

func (v NullableFlinkOptions) MarshalJSON() ([]byte, error)

func (*NullableFlinkOptions) Set ¶

func (v *NullableFlinkOptions) Set(val *FlinkOptions)

func (*NullableFlinkOptions) UnmarshalJSON ¶

func (v *NullableFlinkOptions) UnmarshalJSON(src []byte) error

func (*NullableFlinkOptions) Unset ¶

func (v *NullableFlinkOptions) Unset()

type NullableFlinkOptionsAllOf ¶

type NullableFlinkOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableFlinkOptionsAllOf ¶

func NewNullableFlinkOptionsAllOf(val *FlinkOptionsAllOf) *NullableFlinkOptionsAllOf

func (NullableFlinkOptionsAllOf) Get ¶

func (NullableFlinkOptionsAllOf) IsSet ¶

func (v NullableFlinkOptionsAllOf) IsSet() bool

func (NullableFlinkOptionsAllOf) MarshalJSON ¶

func (v NullableFlinkOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableFlinkOptionsAllOf) Set ¶

func (*NullableFlinkOptionsAllOf) UnmarshalJSON ¶

func (v *NullableFlinkOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableFlinkOptionsAllOf) Unset ¶

func (v *NullableFlinkOptionsAllOf) 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 NullableFollow ¶ added in v1.10.3

type NullableFollow struct {
	// contains filtered or unexported fields
}

func NewNullableFollow ¶ added in v1.10.3

func NewNullableFollow(val *Follow) *NullableFollow

func (NullableFollow) Get ¶ added in v1.10.3

func (v NullableFollow) Get() *Follow

func (NullableFollow) IsSet ¶ added in v1.10.3

func (v NullableFollow) IsSet() bool

func (NullableFollow) MarshalJSON ¶ added in v1.10.3

func (v NullableFollow) MarshalJSON() ([]byte, error)

func (*NullableFollow) Set ¶ added in v1.10.3

func (v *NullableFollow) Set(val *Follow)

func (*NullableFollow) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableFollow) UnmarshalJSON(src []byte) error

func (*NullableFollow) Unset ¶ added in v1.10.3

func (v *NullableFollow) Unset()

type NullableGenericUri ¶ added in v1.10.3

type NullableGenericUri struct {
	// contains filtered or unexported fields
}

func NewNullableGenericUri ¶ added in v1.10.3

func NewNullableGenericUri(val *GenericUri) *NullableGenericUri

func (NullableGenericUri) Get ¶ added in v1.10.3

func (v NullableGenericUri) Get() *GenericUri

func (NullableGenericUri) IsSet ¶ added in v1.10.3

func (v NullableGenericUri) IsSet() bool

func (NullableGenericUri) MarshalJSON ¶ added in v1.10.3

func (v NullableGenericUri) MarshalJSON() ([]byte, error)

func (*NullableGenericUri) Set ¶ added in v1.10.3

func (v *NullableGenericUri) Set(val *GenericUri)

func (*NullableGenericUri) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGenericUri) UnmarshalJSON(src []byte) error

func (*NullableGenericUri) Unset ¶ added in v1.10.3

func (v *NullableGenericUri) Unset()

type NullableGenericUriAllOf ¶ added in v1.10.3

type NullableGenericUriAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableGenericUriAllOf ¶ added in v1.10.3

func NewNullableGenericUriAllOf(val *GenericUriAllOf) *NullableGenericUriAllOf

func (NullableGenericUriAllOf) Get ¶ added in v1.10.3

func (NullableGenericUriAllOf) IsSet ¶ added in v1.10.3

func (v NullableGenericUriAllOf) IsSet() bool

func (NullableGenericUriAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableGenericUriAllOf) MarshalJSON() ([]byte, error)

func (*NullableGenericUriAllOf) Set ¶ added in v1.10.3

func (*NullableGenericUriAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGenericUriAllOf) UnmarshalJSON(src []byte) error

func (*NullableGenericUriAllOf) Unset ¶ added in v1.10.3

func (v *NullableGenericUriAllOf) Unset()

type NullableGitLibrary ¶ added in v1.10.3

type NullableGitLibrary struct {
	// contains filtered or unexported fields
}

func NewNullableGitLibrary ¶ added in v1.10.3

func NewNullableGitLibrary(val *GitLibrary) *NullableGitLibrary

func (NullableGitLibrary) Get ¶ added in v1.10.3

func (v NullableGitLibrary) Get() *GitLibrary

func (NullableGitLibrary) IsSet ¶ added in v1.10.3

func (v NullableGitLibrary) IsSet() bool

func (NullableGitLibrary) MarshalJSON ¶ added in v1.10.3

func (v NullableGitLibrary) MarshalJSON() ([]byte, error)

func (*NullableGitLibrary) Set ¶ added in v1.10.3

func (v *NullableGitLibrary) Set(val *GitLibrary)

func (*NullableGitLibrary) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGitLibrary) UnmarshalJSON(src []byte) error

func (*NullableGitLibrary) Unset ¶ added in v1.10.3

func (v *NullableGitLibrary) Unset()

type NullableGitLibraryAllOf ¶ added in v1.10.3

type NullableGitLibraryAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableGitLibraryAllOf ¶ added in v1.10.3

func NewNullableGitLibraryAllOf(val *GitLibraryAllOf) *NullableGitLibraryAllOf

func (NullableGitLibraryAllOf) Get ¶ added in v1.10.3

func (NullableGitLibraryAllOf) IsSet ¶ added in v1.10.3

func (v NullableGitLibraryAllOf) IsSet() bool

func (NullableGitLibraryAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableGitLibraryAllOf) MarshalJSON() ([]byte, error)

func (*NullableGitLibraryAllOf) Set ¶ added in v1.10.3

func (*NullableGitLibraryAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGitLibraryAllOf) UnmarshalJSON(src []byte) error

func (*NullableGitLibraryAllOf) Unset ¶ added in v1.10.3

func (v *NullableGitLibraryAllOf) Unset()

type NullableGraph ¶ added in v1.10.3

type NullableGraph struct {
	// contains filtered or unexported fields
}

func NewNullableGraph ¶ added in v1.10.3

func NewNullableGraph(val *Graph) *NullableGraph

func (NullableGraph) Get ¶ added in v1.10.3

func (v NullableGraph) Get() *Graph

func (NullableGraph) IsSet ¶ added in v1.10.3

func (v NullableGraph) IsSet() bool

func (NullableGraph) MarshalJSON ¶ added in v1.10.3

func (v NullableGraph) MarshalJSON() ([]byte, error)

func (*NullableGraph) Set ¶ added in v1.10.3

func (v *NullableGraph) Set(val *Graph)

func (*NullableGraph) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGraph) UnmarshalJSON(src []byte) error

func (*NullableGraph) Unset ¶ added in v1.10.3

func (v *NullableGraph) Unset()

type NullableGraphPage ¶ added in v1.10.3

type NullableGraphPage struct {
	// contains filtered or unexported fields
}

func NewNullableGraphPage ¶ added in v1.10.3

func NewNullableGraphPage(val *GraphPage) *NullableGraphPage

func (NullableGraphPage) Get ¶ added in v1.10.3

func (v NullableGraphPage) Get() *GraphPage

func (NullableGraphPage) IsSet ¶ added in v1.10.3

func (v NullableGraphPage) IsSet() bool

func (NullableGraphPage) MarshalJSON ¶ added in v1.10.3

func (v NullableGraphPage) MarshalJSON() ([]byte, error)

func (*NullableGraphPage) Set ¶ added in v1.10.3

func (v *NullableGraphPage) Set(val *GraphPage)

func (*NullableGraphPage) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGraphPage) UnmarshalJSON(src []byte) error

func (*NullableGraphPage) Unset ¶ added in v1.10.3

func (v *NullableGraphPage) Unset()

type NullableGraphPageAllOf ¶ added in v1.10.3

type NullableGraphPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableGraphPageAllOf ¶ added in v1.10.3

func NewNullableGraphPageAllOf(val *GraphPageAllOf) *NullableGraphPageAllOf

func (NullableGraphPageAllOf) Get ¶ added in v1.10.3

func (NullableGraphPageAllOf) IsSet ¶ added in v1.10.3

func (v NullableGraphPageAllOf) IsSet() bool

func (NullableGraphPageAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableGraphPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableGraphPageAllOf) Set ¶ added in v1.10.3

func (*NullableGraphPageAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGraphPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableGraphPageAllOf) Unset ¶ added in v1.10.3

func (v *NullableGraphPageAllOf) Unset()

type NullableGreaterOrEqualThanFilter ¶ added in v1.10.3

type NullableGreaterOrEqualThanFilter struct {
	// contains filtered or unexported fields
}

func NewNullableGreaterOrEqualThanFilter ¶ added in v1.10.3

func NewNullableGreaterOrEqualThanFilter(val *GreaterOrEqualThanFilter) *NullableGreaterOrEqualThanFilter

func (NullableGreaterOrEqualThanFilter) Get ¶ added in v1.10.3

func (NullableGreaterOrEqualThanFilter) IsSet ¶ added in v1.10.3

func (NullableGreaterOrEqualThanFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableGreaterOrEqualThanFilter) MarshalJSON() ([]byte, error)

func (*NullableGreaterOrEqualThanFilter) Set ¶ added in v1.10.3

func (*NullableGreaterOrEqualThanFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGreaterOrEqualThanFilter) UnmarshalJSON(src []byte) error

func (*NullableGreaterOrEqualThanFilter) Unset ¶ added in v1.10.3

type NullableGreaterThanFilter ¶ added in v1.10.3

type NullableGreaterThanFilter struct {
	// contains filtered or unexported fields
}

func NewNullableGreaterThanFilter ¶ added in v1.10.3

func NewNullableGreaterThanFilter(val *GreaterThanFilter) *NullableGreaterThanFilter

func (NullableGreaterThanFilter) Get ¶ added in v1.10.3

func (NullableGreaterThanFilter) IsSet ¶ added in v1.10.3

func (v NullableGreaterThanFilter) IsSet() bool

func (NullableGreaterThanFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableGreaterThanFilter) MarshalJSON() ([]byte, error)

func (*NullableGreaterThanFilter) Set ¶ added in v1.10.3

func (*NullableGreaterThanFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableGreaterThanFilter) UnmarshalJSON(src []byte) error

func (*NullableGreaterThanFilter) Unset ¶ added in v1.10.3

func (v *NullableGreaterThanFilter) Unset()

type NullableGroup ¶

type NullableGroup struct {
	// contains filtered or unexported fields
}

func NewNullableGroup ¶

func NewNullableGroup(val *Group) *NullableGroup

func (NullableGroup) Get ¶

func (v NullableGroup) Get() *Group

func (NullableGroup) IsSet ¶

func (v NullableGroup) IsSet() bool

func (NullableGroup) MarshalJSON ¶

func (v NullableGroup) MarshalJSON() ([]byte, error)

func (*NullableGroup) Set ¶

func (v *NullableGroup) Set(val *Group)

func (*NullableGroup) UnmarshalJSON ¶

func (v *NullableGroup) UnmarshalJSON(src []byte) error

func (*NullableGroup) Unset ¶

func (v *NullableGroup) Unset()

type NullableHTTPValidationError ¶ added in v1.10.3

type NullableHTTPValidationError struct {
	// contains filtered or unexported fields
}

func NewNullableHTTPValidationError ¶ added in v1.10.3

func NewNullableHTTPValidationError(val *HTTPValidationError) *NullableHTTPValidationError

func (NullableHTTPValidationError) Get ¶ added in v1.10.3

func (NullableHTTPValidationError) IsSet ¶ added in v1.10.3

func (NullableHTTPValidationError) MarshalJSON ¶ added in v1.10.3

func (v NullableHTTPValidationError) MarshalJSON() ([]byte, error)

func (*NullableHTTPValidationError) Set ¶ added in v1.10.3

func (*NullableHTTPValidationError) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableHTTPValidationError) UnmarshalJSON(src []byte) error

func (*NullableHTTPValidationError) Unset ¶ added in v1.10.3

func (v *NullableHTTPValidationError) Unset()

type NullableHadoopOptions ¶

type NullableHadoopOptions struct {
	// contains filtered or unexported fields
}

func NewNullableHadoopOptions ¶

func NewNullableHadoopOptions(val *HadoopOptions) *NullableHadoopOptions

func (NullableHadoopOptions) Get ¶

func (NullableHadoopOptions) IsSet ¶

func (v NullableHadoopOptions) IsSet() bool

func (NullableHadoopOptions) MarshalJSON ¶

func (v NullableHadoopOptions) MarshalJSON() ([]byte, error)

func (*NullableHadoopOptions) Set ¶

func (v *NullableHadoopOptions) Set(val *HadoopOptions)

func (*NullableHadoopOptions) UnmarshalJSON ¶

func (v *NullableHadoopOptions) UnmarshalJSON(src []byte) error

func (*NullableHadoopOptions) Unset ¶

func (v *NullableHadoopOptions) Unset()

type NullableHadoopOptionsAllOf ¶

type NullableHadoopOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableHadoopOptionsAllOf ¶

func NewNullableHadoopOptionsAllOf(val *HadoopOptionsAllOf) *NullableHadoopOptionsAllOf

func (NullableHadoopOptionsAllOf) Get ¶

func (NullableHadoopOptionsAllOf) IsSet ¶

func (v NullableHadoopOptionsAllOf) IsSet() bool

func (NullableHadoopOptionsAllOf) MarshalJSON ¶

func (v NullableHadoopOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableHadoopOptionsAllOf) Set ¶

func (*NullableHadoopOptionsAllOf) UnmarshalJSON ¶

func (v *NullableHadoopOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableHadoopOptionsAllOf) Unset ¶

func (v *NullableHadoopOptionsAllOf) Unset()

type NullableIdentity ¶

type NullableIdentity struct {
	// contains filtered or unexported fields
}

func NewNullableIdentity ¶

func NewNullableIdentity(val *Identity) *NullableIdentity

func (NullableIdentity) Get ¶

func (v NullableIdentity) Get() *Identity

func (NullableIdentity) IsSet ¶

func (v NullableIdentity) IsSet() bool

func (NullableIdentity) MarshalJSON ¶

func (v NullableIdentity) MarshalJSON() ([]byte, error)

func (*NullableIdentity) Set ¶

func (v *NullableIdentity) Set(val *Identity)

func (*NullableIdentity) UnmarshalJSON ¶

func (v *NullableIdentity) UnmarshalJSON(src []byte) error

func (*NullableIdentity) Unset ¶

func (v *NullableIdentity) Unset()

type NullableIdentityProvider ¶ added in v1.10.3

type NullableIdentityProvider struct {
	// contains filtered or unexported fields
}

func NewNullableIdentityProvider ¶ added in v1.10.3

func NewNullableIdentityProvider(val *IdentityProvider) *NullableIdentityProvider

func (NullableIdentityProvider) Get ¶ added in v1.10.3

func (NullableIdentityProvider) IsSet ¶ added in v1.10.3

func (v NullableIdentityProvider) IsSet() bool

func (NullableIdentityProvider) MarshalJSON ¶ added in v1.10.3

func (v NullableIdentityProvider) MarshalJSON() ([]byte, error)

func (*NullableIdentityProvider) Set ¶ added in v1.10.3

func (*NullableIdentityProvider) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableIdentityProvider) UnmarshalJSON(src []byte) error

func (*NullableIdentityProvider) Unset ¶ added in v1.10.3

func (v *NullableIdentityProvider) Unset()

type NullableInFilter ¶ added in v1.10.3

type NullableInFilter struct {
	// contains filtered or unexported fields
}

func NewNullableInFilter ¶ added in v1.10.3

func NewNullableInFilter(val *InFilter) *NullableInFilter

func (NullableInFilter) Get ¶ added in v1.10.3

func (v NullableInFilter) Get() *InFilter

func (NullableInFilter) IsSet ¶ added in v1.10.3

func (v NullableInFilter) IsSet() bool

func (NullableInFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableInFilter) MarshalJSON() ([]byte, error)

func (*NullableInFilter) Set ¶ added in v1.10.3

func (v *NullableInFilter) Set(val *InFilter)

func (*NullableInFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableInFilter) UnmarshalJSON(src []byte) error

func (*NullableInFilter) Unset ¶ added in v1.10.3

func (v *NullableInFilter) Unset()

type NullableInPersonDetails ¶ added in v1.10.3

type NullableInPersonDetails struct {
	// contains filtered or unexported fields
}

func NewNullableInPersonDetails ¶ added in v1.10.3

func NewNullableInPersonDetails(val *InPersonDetails) *NullableInPersonDetails

func (NullableInPersonDetails) Get ¶ added in v1.10.3

func (NullableInPersonDetails) IsSet ¶ added in v1.10.3

func (v NullableInPersonDetails) IsSet() bool

func (NullableInPersonDetails) MarshalJSON ¶ added in v1.10.3

func (v NullableInPersonDetails) MarshalJSON() ([]byte, error)

func (*NullableInPersonDetails) Set ¶ added in v1.10.3

func (*NullableInPersonDetails) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableInPersonDetails) UnmarshalJSON(src []byte) error

func (*NullableInPersonDetails) Unset ¶ added in v1.10.3

func (v *NullableInPersonDetails) Unset()

type NullableInPersonDetailsAllOf ¶ added in v1.10.3

type NullableInPersonDetailsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableInPersonDetailsAllOf ¶ added in v1.10.3

func NewNullableInPersonDetailsAllOf(val *InPersonDetailsAllOf) *NullableInPersonDetailsAllOf

func (NullableInPersonDetailsAllOf) Get ¶ added in v1.10.3

func (NullableInPersonDetailsAllOf) IsSet ¶ added in v1.10.3

func (NullableInPersonDetailsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableInPersonDetailsAllOf) MarshalJSON() ([]byte, error)

func (*NullableInPersonDetailsAllOf) Set ¶ added in v1.10.3

func (*NullableInPersonDetailsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableInPersonDetailsAllOf) UnmarshalJSON(src []byte) error

func (*NullableInPersonDetailsAllOf) Unset ¶ added in v1.10.3

func (v *NullableInPersonDetailsAllOf) Unset()

type NullableInfrastructure ¶

type NullableInfrastructure struct {
	// contains filtered or unexported fields
}

func NewNullableInfrastructure ¶

func NewNullableInfrastructure(val *Infrastructure) *NullableInfrastructure

func (NullableInfrastructure) Get ¶

func (NullableInfrastructure) IsSet ¶

func (v NullableInfrastructure) IsSet() bool

func (NullableInfrastructure) MarshalJSON ¶

func (v NullableInfrastructure) MarshalJSON() ([]byte, error)

func (*NullableInfrastructure) Set ¶

func (*NullableInfrastructure) UnmarshalJSON ¶

func (v *NullableInfrastructure) UnmarshalJSON(src []byte) error

func (*NullableInfrastructure) Unset ¶

func (v *NullableInfrastructure) Unset()

type NullableInlineResponse200 ¶

type NullableInlineResponse200 struct {
	// contains filtered or unexported fields
}

func NewNullableInlineResponse200 ¶

func NewNullableInlineResponse200(val *InlineResponse200) *NullableInlineResponse200

func (NullableInlineResponse200) Get ¶

func (NullableInlineResponse200) IsSet ¶

func (v NullableInlineResponse200) IsSet() bool

func (NullableInlineResponse200) MarshalJSON ¶

func (v NullableInlineResponse200) MarshalJSON() ([]byte, error)

func (*NullableInlineResponse200) Set ¶

func (*NullableInlineResponse200) UnmarshalJSON ¶

func (v *NullableInlineResponse200) UnmarshalJSON(src []byte) error

func (*NullableInlineResponse200) Unset ¶

func (v *NullableInlineResponse200) Unset()

type NullableInlineResponse2001 ¶ added in v1.10.3

type NullableInlineResponse2001 struct {
	// contains filtered or unexported fields
}

func NewNullableInlineResponse2001 ¶ added in v1.10.3

func NewNullableInlineResponse2001(val *InlineResponse2001) *NullableInlineResponse2001

func (NullableInlineResponse2001) Get ¶ added in v1.10.3

func (NullableInlineResponse2001) IsSet ¶ added in v1.10.3

func (v NullableInlineResponse2001) IsSet() bool

func (NullableInlineResponse2001) MarshalJSON ¶ added in v1.10.3

func (v NullableInlineResponse2001) MarshalJSON() ([]byte, error)

func (*NullableInlineResponse2001) Set ¶ added in v1.10.3

func (*NullableInlineResponse2001) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableInlineResponse2001) UnmarshalJSON(src []byte) error

func (*NullableInlineResponse2001) Unset ¶ added in v1.10.3

func (v *NullableInlineResponse2001) Unset()

type NullableInlineResponse2002 ¶ added in v1.10.3

type NullableInlineResponse2002 struct {
	// contains filtered or unexported fields
}

func NewNullableInlineResponse2002 ¶ added in v1.10.3

func NewNullableInlineResponse2002(val *InlineResponse2002) *NullableInlineResponse2002

func (NullableInlineResponse2002) Get ¶ added in v1.10.3

func (NullableInlineResponse2002) IsSet ¶ added in v1.10.3

func (v NullableInlineResponse2002) IsSet() bool

func (NullableInlineResponse2002) MarshalJSON ¶ added in v1.10.3

func (v NullableInlineResponse2002) MarshalJSON() ([]byte, error)

func (*NullableInlineResponse2002) Set ¶ added in v1.10.3

func (*NullableInlineResponse2002) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableInlineResponse2002) UnmarshalJSON(src []byte) error

func (*NullableInlineResponse2002) Unset ¶ added in v1.10.3

func (v *NullableInlineResponse2002) Unset()

type NullableInstanceType ¶

type NullableInstanceType struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceType ¶

func NewNullableInstanceType(val *InstanceType) *NullableInstanceType

func (NullableInstanceType) Get ¶

func (NullableInstanceType) IsSet ¶

func (v NullableInstanceType) IsSet() bool

func (NullableInstanceType) MarshalJSON ¶

func (v NullableInstanceType) MarshalJSON() ([]byte, error)

func (*NullableInstanceType) Set ¶

func (v *NullableInstanceType) Set(val *InstanceType)

func (*NullableInstanceType) UnmarshalJSON ¶

func (v *NullableInstanceType) UnmarshalJSON(src []byte) error

func (*NullableInstanceType) Unset ¶

func (v *NullableInstanceType) 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 NullableInvoice ¶

type NullableInvoice struct {
	// contains filtered or unexported fields
}

func NewNullableInvoice ¶

func NewNullableInvoice(val *Invoice) *NullableInvoice

func (NullableInvoice) Get ¶

func (v NullableInvoice) Get() *Invoice

func (NullableInvoice) IsSet ¶

func (v NullableInvoice) IsSet() bool

func (NullableInvoice) MarshalJSON ¶

func (v NullableInvoice) MarshalJSON() ([]byte, error)

func (*NullableInvoice) Set ¶

func (v *NullableInvoice) Set(val *Invoice)

func (*NullableInvoice) UnmarshalJSON ¶

func (v *NullableInvoice) UnmarshalJSON(src []byte) error

func (*NullableInvoice) Unset ¶

func (v *NullableInvoice) Unset()

type NullableIssueDetails ¶

type NullableIssueDetails struct {
	// contains filtered or unexported fields
}

func NewNullableIssueDetails ¶

func NewNullableIssueDetails(val *IssueDetails) *NullableIssueDetails

func (NullableIssueDetails) Get ¶

func (NullableIssueDetails) IsSet ¶

func (v NullableIssueDetails) IsSet() bool

func (NullableIssueDetails) MarshalJSON ¶

func (v NullableIssueDetails) MarshalJSON() ([]byte, error)

func (*NullableIssueDetails) Set ¶

func (v *NullableIssueDetails) Set(val *IssueDetails)

func (*NullableIssueDetails) UnmarshalJSON ¶

func (v *NullableIssueDetails) UnmarshalJSON(src []byte) error

func (*NullableIssueDetails) Unset ¶

func (v *NullableIssueDetails) Unset()

type NullableIssueDetailsAllOf ¶

type NullableIssueDetailsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableIssueDetailsAllOf ¶

func NewNullableIssueDetailsAllOf(val *IssueDetailsAllOf) *NullableIssueDetailsAllOf

func (NullableIssueDetailsAllOf) Get ¶

func (NullableIssueDetailsAllOf) IsSet ¶

func (v NullableIssueDetailsAllOf) IsSet() bool

func (NullableIssueDetailsAllOf) MarshalJSON ¶

func (v NullableIssueDetailsAllOf) MarshalJSON() ([]byte, error)

func (*NullableIssueDetailsAllOf) Set ¶

func (*NullableIssueDetailsAllOf) UnmarshalJSON ¶

func (v *NullableIssueDetailsAllOf) UnmarshalJSON(src []byte) error

func (*NullableIssueDetailsAllOf) Unset ¶

func (v *NullableIssueDetailsAllOf) Unset()

type NullableJob ¶

type NullableJob struct {
	// contains filtered or unexported fields
}

func NewNullableJob ¶

func NewNullableJob(val *Job) *NullableJob

func (NullableJob) Get ¶

func (v NullableJob) Get() *Job

func (NullableJob) IsSet ¶

func (v NullableJob) IsSet() bool

func (NullableJob) MarshalJSON ¶

func (v NullableJob) MarshalJSON() ([]byte, error)

func (*NullableJob) Set ¶

func (v *NullableJob) Set(val *Job)

func (*NullableJob) UnmarshalJSON ¶

func (v *NullableJob) UnmarshalJSON(src []byte) error

func (*NullableJob) Unset ¶

func (v *NullableJob) Unset()

type NullableJob1 ¶ added in v1.10.3

type NullableJob1 struct {
	// contains filtered or unexported fields
}

func NewNullableJob1 ¶ added in v1.10.3

func NewNullableJob1(val *Job1) *NullableJob1

func (NullableJob1) Get ¶ added in v1.10.3

func (v NullableJob1) Get() *Job1

func (NullableJob1) IsSet ¶ added in v1.10.3

func (v NullableJob1) IsSet() bool

func (NullableJob1) MarshalJSON ¶ added in v1.10.3

func (v NullableJob1) MarshalJSON() ([]byte, error)

func (*NullableJob1) Set ¶ added in v1.10.3

func (v *NullableJob1) Set(val *Job1)

func (*NullableJob1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableJob1) UnmarshalJSON(src []byte) error

func (*NullableJob1) Unset ¶ added in v1.10.3

func (v *NullableJob1) Unset()

type NullableJob1AllOf ¶ added in v1.10.3

type NullableJob1AllOf struct {
	// contains filtered or unexported fields
}

func NewNullableJob1AllOf ¶ added in v1.10.3

func NewNullableJob1AllOf(val *Job1AllOf) *NullableJob1AllOf

func (NullableJob1AllOf) Get ¶ added in v1.10.3

func (v NullableJob1AllOf) Get() *Job1AllOf

func (NullableJob1AllOf) IsSet ¶ added in v1.10.3

func (v NullableJob1AllOf) IsSet() bool

func (NullableJob1AllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableJob1AllOf) MarshalJSON() ([]byte, error)

func (*NullableJob1AllOf) Set ¶ added in v1.10.3

func (v *NullableJob1AllOf) Set(val *Job1AllOf)

func (*NullableJob1AllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableJob1AllOf) UnmarshalJSON(src []byte) error

func (*NullableJob1AllOf) Unset ¶ added in v1.10.3

func (v *NullableJob1AllOf) Unset()

type NullableJobActivity ¶ added in v1.10.3

type NullableJobActivity struct {
	// contains filtered or unexported fields
}

func NewNullableJobActivity ¶ added in v1.10.3

func NewNullableJobActivity(val *JobActivity) *NullableJobActivity

func (NullableJobActivity) Get ¶ added in v1.10.3

func (NullableJobActivity) IsSet ¶ added in v1.10.3

func (v NullableJobActivity) IsSet() bool

func (NullableJobActivity) MarshalJSON ¶ added in v1.10.3

func (v NullableJobActivity) MarshalJSON() ([]byte, error)

func (*NullableJobActivity) Set ¶ added in v1.10.3

func (v *NullableJobActivity) Set(val *JobActivity)

func (*NullableJobActivity) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableJobActivity) UnmarshalJSON(src []byte) error

func (*NullableJobActivity) Unset ¶ added in v1.10.3

func (v *NullableJobActivity) Unset()

type NullableJobActivityAllOf ¶ added in v1.10.3

type NullableJobActivityAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableJobActivityAllOf ¶ added in v1.10.3

func NewNullableJobActivityAllOf(val *JobActivityAllOf) *NullableJobActivityAllOf

func (NullableJobActivityAllOf) Get ¶ added in v1.10.3

func (NullableJobActivityAllOf) IsSet ¶ added in v1.10.3

func (v NullableJobActivityAllOf) IsSet() bool

func (NullableJobActivityAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableJobActivityAllOf) MarshalJSON() ([]byte, error)

func (*NullableJobActivityAllOf) Set ¶ added in v1.10.3

func (*NullableJobActivityAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableJobActivityAllOf) UnmarshalJSON(src []byte) error

func (*NullableJobActivityAllOf) Unset ¶ added in v1.10.3

func (v *NullableJobActivityAllOf) Unset()

type NullableJobRun ¶

type NullableJobRun struct {
	// contains filtered or unexported fields
}

func NewNullableJobRun ¶

func NewNullableJobRun(val *JobRun) *NullableJobRun

func (NullableJobRun) Get ¶

func (v NullableJobRun) Get() *JobRun

func (NullableJobRun) IsSet ¶

func (v NullableJobRun) IsSet() bool

func (NullableJobRun) MarshalJSON ¶

func (v NullableJobRun) MarshalJSON() ([]byte, error)

func (*NullableJobRun) Set ¶

func (v *NullableJobRun) Set(val *JobRun)

func (*NullableJobRun) UnmarshalJSON ¶

func (v *NullableJobRun) UnmarshalJSON(src []byte) error

func (*NullableJobRun) Unset ¶

func (v *NullableJobRun) Unset()

type NullableJobTask ¶

type NullableJobTask struct {
	// contains filtered or unexported fields
}

func NewNullableJobTask ¶

func NewNullableJobTask(val *JobTask) *NullableJobTask

func (NullableJobTask) Get ¶

func (v NullableJobTask) Get() *JobTask

func (NullableJobTask) IsSet ¶

func (v NullableJobTask) IsSet() bool

func (NullableJobTask) MarshalJSON ¶

func (v NullableJobTask) MarshalJSON() ([]byte, error)

func (*NullableJobTask) Set ¶

func (v *NullableJobTask) Set(val *JobTask)

func (*NullableJobTask) UnmarshalJSON ¶

func (v *NullableJobTask) UnmarshalJSON(src []byte) error

func (*NullableJobTask) Unset ¶

func (v *NullableJobTask) Unset()

type NullableJobTaskAllOf ¶

type NullableJobTaskAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableJobTaskAllOf ¶

func NewNullableJobTaskAllOf(val *JobTaskAllOf) *NullableJobTaskAllOf

func (NullableJobTaskAllOf) Get ¶

func (NullableJobTaskAllOf) IsSet ¶

func (v NullableJobTaskAllOf) IsSet() bool

func (NullableJobTaskAllOf) MarshalJSON ¶

func (v NullableJobTaskAllOf) MarshalJSON() ([]byte, error)

func (*NullableJobTaskAllOf) Set ¶

func (v *NullableJobTaskAllOf) Set(val *JobTaskAllOf)

func (*NullableJobTaskAllOf) UnmarshalJSON ¶

func (v *NullableJobTaskAllOf) UnmarshalJSON(src []byte) error

func (*NullableJobTaskAllOf) Unset ¶

func (v *NullableJobTaskAllOf) Unset()

type NullableJoblibReader ¶ added in v1.10.3

type NullableJoblibReader struct {
	// contains filtered or unexported fields
}

func NewNullableJoblibReader ¶ added in v1.10.3

func NewNullableJoblibReader(val *JoblibReader) *NullableJoblibReader

func (NullableJoblibReader) Get ¶ added in v1.10.3

func (NullableJoblibReader) IsSet ¶ added in v1.10.3

func (v NullableJoblibReader) IsSet() bool

func (NullableJoblibReader) MarshalJSON ¶ added in v1.10.3

func (v NullableJoblibReader) MarshalJSON() ([]byte, error)

func (*NullableJoblibReader) Set ¶ added in v1.10.3

func (v *NullableJoblibReader) Set(val *JoblibReader)

func (*NullableJoblibReader) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableJoblibReader) UnmarshalJSON(src []byte) error

func (*NullableJoblibReader) Unset ¶ added in v1.10.3

func (v *NullableJoblibReader) Unset()

type NullableJoblibWriter ¶ added in v1.10.3

type NullableJoblibWriter struct {
	// contains filtered or unexported fields
}

func NewNullableJoblibWriter ¶ added in v1.10.3

func NewNullableJoblibWriter(val *JoblibWriter) *NullableJoblibWriter

func (NullableJoblibWriter) Get ¶ added in v1.10.3

func (NullableJoblibWriter) IsSet ¶ added in v1.10.3

func (v NullableJoblibWriter) IsSet() bool

func (NullableJoblibWriter) MarshalJSON ¶ added in v1.10.3

func (v NullableJoblibWriter) MarshalJSON() ([]byte, error)

func (*NullableJoblibWriter) Set ¶ added in v1.10.3

func (v *NullableJoblibWriter) Set(val *JoblibWriter)

func (*NullableJoblibWriter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableJoblibWriter) UnmarshalJSON(src []byte) error

func (*NullableJoblibWriter) Unset ¶ added in v1.10.3

func (v *NullableJoblibWriter) Unset()

type NullableJoinParams ¶ added in v1.10.3

type NullableJoinParams struct {
	// contains filtered or unexported fields
}

func NewNullableJoinParams ¶ added in v1.10.3

func NewNullableJoinParams(val *JoinParams) *NullableJoinParams

func (NullableJoinParams) Get ¶ added in v1.10.3

func (v NullableJoinParams) Get() *JoinParams

func (NullableJoinParams) IsSet ¶ added in v1.10.3

func (v NullableJoinParams) IsSet() bool

func (NullableJoinParams) MarshalJSON ¶ added in v1.10.3

func (v NullableJoinParams) MarshalJSON() ([]byte, error)

func (*NullableJoinParams) Set ¶ added in v1.10.3

func (v *NullableJoinParams) Set(val *JoinParams)

func (*NullableJoinParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableJoinParams) UnmarshalJSON(src []byte) error

func (*NullableJoinParams) Unset ¶ added in v1.10.3

func (v *NullableJoinParams) Unset()

type NullableJoinTask ¶ added in v1.10.3

type NullableJoinTask struct {
	// contains filtered or unexported fields
}

func NewNullableJoinTask ¶ added in v1.10.3

func NewNullableJoinTask(val *JoinTask) *NullableJoinTask

func (NullableJoinTask) Get ¶ added in v1.10.3

func (v NullableJoinTask) Get() *JoinTask

func (NullableJoinTask) IsSet ¶ added in v1.10.3

func (v NullableJoinTask) IsSet() bool

func (NullableJoinTask) MarshalJSON ¶ added in v1.10.3

func (v NullableJoinTask) MarshalJSON() ([]byte, error)

func (*NullableJoinTask) Set ¶ added in v1.10.3

func (v *NullableJoinTask) Set(val *JoinTask)

func (*NullableJoinTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableJoinTask) UnmarshalJSON(src []byte) error

func (*NullableJoinTask) Unset ¶ added in v1.10.3

func (v *NullableJoinTask) Unset()

type NullableKnimeOptions ¶

type NullableKnimeOptions struct {
	// contains filtered or unexported fields
}

func NewNullableKnimeOptions ¶

func NewNullableKnimeOptions(val *KnimeOptions) *NullableKnimeOptions

func (NullableKnimeOptions) Get ¶

func (NullableKnimeOptions) IsSet ¶

func (v NullableKnimeOptions) IsSet() bool

func (NullableKnimeOptions) MarshalJSON ¶

func (v NullableKnimeOptions) MarshalJSON() ([]byte, error)

func (*NullableKnimeOptions) Set ¶

func (v *NullableKnimeOptions) Set(val *KnimeOptions)

func (*NullableKnimeOptions) UnmarshalJSON ¶

func (v *NullableKnimeOptions) UnmarshalJSON(src []byte) error

func (*NullableKnimeOptions) Unset ¶

func (v *NullableKnimeOptions) Unset()

type NullableKnimeOptionsAllOf ¶

type NullableKnimeOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableKnimeOptionsAllOf ¶

func NewNullableKnimeOptionsAllOf(val *KnimeOptionsAllOf) *NullableKnimeOptionsAllOf

func (NullableKnimeOptionsAllOf) Get ¶

func (NullableKnimeOptionsAllOf) IsSet ¶

func (v NullableKnimeOptionsAllOf) IsSet() bool

func (NullableKnimeOptionsAllOf) MarshalJSON ¶

func (v NullableKnimeOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableKnimeOptionsAllOf) Set ¶

func (*NullableKnimeOptionsAllOf) UnmarshalJSON ¶

func (v *NullableKnimeOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableKnimeOptionsAllOf) Unset ¶

func (v *NullableKnimeOptionsAllOf) Unset()

type NullableKubernetesTarget ¶

type NullableKubernetesTarget struct {
	// contains filtered or unexported fields
}

func NewNullableKubernetesTarget ¶

func NewNullableKubernetesTarget(val *KubernetesTarget) *NullableKubernetesTarget

func (NullableKubernetesTarget) Get ¶

func (NullableKubernetesTarget) IsSet ¶

func (v NullableKubernetesTarget) IsSet() bool

func (NullableKubernetesTarget) MarshalJSON ¶

func (v NullableKubernetesTarget) MarshalJSON() ([]byte, error)

func (*NullableKubernetesTarget) Set ¶

func (*NullableKubernetesTarget) UnmarshalJSON ¶

func (v *NullableKubernetesTarget) UnmarshalJSON(src []byte) error

func (*NullableKubernetesTarget) Unset ¶

func (v *NullableKubernetesTarget) Unset()

type NullableKubernetesTargetAllOf ¶

type NullableKubernetesTargetAllOf struct {
	// contains filtered or unexported fields
}

func (NullableKubernetesTargetAllOf) Get ¶

func (NullableKubernetesTargetAllOf) IsSet ¶

func (NullableKubernetesTargetAllOf) MarshalJSON ¶

func (v NullableKubernetesTargetAllOf) MarshalJSON() ([]byte, error)

func (*NullableKubernetesTargetAllOf) Set ¶

func (*NullableKubernetesTargetAllOf) UnmarshalJSON ¶

func (v *NullableKubernetesTargetAllOf) UnmarshalJSON(src []byte) error

func (*NullableKubernetesTargetAllOf) Unset ¶

func (v *NullableKubernetesTargetAllOf) Unset()

type NullableLayer ¶ added in v1.10.3

type NullableLayer struct {
	// contains filtered or unexported fields
}

func NewNullableLayer ¶ added in v1.10.3

func NewNullableLayer(val *Layer) *NullableLayer

func (NullableLayer) Get ¶ added in v1.10.3

func (v NullableLayer) Get() *Layer

func (NullableLayer) IsSet ¶ added in v1.10.3

func (v NullableLayer) IsSet() bool

func (NullableLayer) MarshalJSON ¶ added in v1.10.3

func (v NullableLayer) MarshalJSON() ([]byte, error)

func (*NullableLayer) Set ¶ added in v1.10.3

func (v *NullableLayer) Set(val *Layer)

func (*NullableLayer) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLayer) UnmarshalJSON(src []byte) error

func (*NullableLayer) Unset ¶ added in v1.10.3

func (v *NullableLayer) Unset()

type NullableLessOrEqualThanFilter ¶ added in v1.10.3

type NullableLessOrEqualThanFilter struct {
	// contains filtered or unexported fields
}

func NewNullableLessOrEqualThanFilter ¶ added in v1.10.3

func NewNullableLessOrEqualThanFilter(val *LessOrEqualThanFilter) *NullableLessOrEqualThanFilter

func (NullableLessOrEqualThanFilter) Get ¶ added in v1.10.3

func (NullableLessOrEqualThanFilter) IsSet ¶ added in v1.10.3

func (NullableLessOrEqualThanFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableLessOrEqualThanFilter) MarshalJSON() ([]byte, error)

func (*NullableLessOrEqualThanFilter) Set ¶ added in v1.10.3

func (*NullableLessOrEqualThanFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLessOrEqualThanFilter) UnmarshalJSON(src []byte) error

func (*NullableLessOrEqualThanFilter) Unset ¶ added in v1.10.3

func (v *NullableLessOrEqualThanFilter) Unset()

type NullableLessThanFilter ¶ added in v1.10.3

type NullableLessThanFilter struct {
	// contains filtered or unexported fields
}

func NewNullableLessThanFilter ¶ added in v1.10.3

func NewNullableLessThanFilter(val *LessThanFilter) *NullableLessThanFilter

func (NullableLessThanFilter) Get ¶ added in v1.10.3

func (NullableLessThanFilter) IsSet ¶ added in v1.10.3

func (v NullableLessThanFilter) IsSet() bool

func (NullableLessThanFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableLessThanFilter) MarshalJSON() ([]byte, error)

func (*NullableLessThanFilter) Set ¶ added in v1.10.3

func (*NullableLessThanFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLessThanFilter) UnmarshalJSON(src []byte) error

func (*NullableLessThanFilter) Unset ¶ added in v1.10.3

func (v *NullableLessThanFilter) Unset()

type NullableLibrary ¶

type NullableLibrary struct {
	// contains filtered or unexported fields
}

func NewNullableLibrary ¶

func NewNullableLibrary(val *Library) *NullableLibrary

func (NullableLibrary) Get ¶

func (v NullableLibrary) Get() *Library

func (NullableLibrary) IsSet ¶

func (v NullableLibrary) IsSet() bool

func (NullableLibrary) MarshalJSON ¶

func (v NullableLibrary) MarshalJSON() ([]byte, error)

func (*NullableLibrary) Set ¶

func (v *NullableLibrary) Set(val *Library)

func (*NullableLibrary) UnmarshalJSON ¶

func (v *NullableLibrary) UnmarshalJSON(src []byte) error

func (*NullableLibrary) Unset ¶

func (v *NullableLibrary) Unset()

type NullableLikeFilter ¶ added in v1.10.3

type NullableLikeFilter struct {
	// contains filtered or unexported fields
}

func NewNullableLikeFilter ¶ added in v1.10.3

func NewNullableLikeFilter(val *LikeFilter) *NullableLikeFilter

func (NullableLikeFilter) Get ¶ added in v1.10.3

func (v NullableLikeFilter) Get() *LikeFilter

func (NullableLikeFilter) IsSet ¶ added in v1.10.3

func (v NullableLikeFilter) IsSet() bool

func (NullableLikeFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableLikeFilter) MarshalJSON() ([]byte, error)

func (*NullableLikeFilter) Set ¶ added in v1.10.3

func (v *NullableLikeFilter) Set(val *LikeFilter)

func (*NullableLikeFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLikeFilter) UnmarshalJSON(src []byte) error

func (*NullableLikeFilter) Unset ¶ added in v1.10.3

func (v *NullableLikeFilter) Unset()

type NullableLoadModelParams ¶ added in v1.10.3

type NullableLoadModelParams struct {
	// contains filtered or unexported fields
}

func NewNullableLoadModelParams ¶ added in v1.10.3

func NewNullableLoadModelParams(val *LoadModelParams) *NullableLoadModelParams

func (NullableLoadModelParams) Get ¶ added in v1.10.3

func (NullableLoadModelParams) IsSet ¶ added in v1.10.3

func (v NullableLoadModelParams) IsSet() bool

func (NullableLoadModelParams) MarshalJSON ¶ added in v1.10.3

func (v NullableLoadModelParams) MarshalJSON() ([]byte, error)

func (*NullableLoadModelParams) Set ¶ added in v1.10.3

func (*NullableLoadModelParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLoadModelParams) UnmarshalJSON(src []byte) error

func (*NullableLoadModelParams) Unset ¶ added in v1.10.3

func (v *NullableLoadModelParams) Unset()

type NullableLocalConnector ¶ added in v1.10.3

type NullableLocalConnector struct {
	// contains filtered or unexported fields
}

func NewNullableLocalConnector ¶ added in v1.10.3

func NewNullableLocalConnector(val *LocalConnector) *NullableLocalConnector

func (NullableLocalConnector) Get ¶ added in v1.10.3

func (NullableLocalConnector) IsSet ¶ added in v1.10.3

func (v NullableLocalConnector) IsSet() bool

func (NullableLocalConnector) MarshalJSON ¶ added in v1.10.3

func (v NullableLocalConnector) MarshalJSON() ([]byte, error)

func (*NullableLocalConnector) Set ¶ added in v1.10.3

func (*NullableLocalConnector) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLocalConnector) UnmarshalJSON(src []byte) error

func (*NullableLocalConnector) Unset ¶ added in v1.10.3

func (v *NullableLocalConnector) Unset()

type NullableLocation ¶

type NullableLocation struct {
	// contains filtered or unexported fields
}

func NewNullableLocation ¶

func NewNullableLocation(val *Location) *NullableLocation

func (NullableLocation) Get ¶

func (v NullableLocation) Get() *Location

func (NullableLocation) IsSet ¶

func (v NullableLocation) IsSet() bool

func (NullableLocation) MarshalJSON ¶

func (v NullableLocation) MarshalJSON() ([]byte, error)

func (*NullableLocation) Set ¶

func (v *NullableLocation) Set(val *Location)

func (*NullableLocation) UnmarshalJSON ¶

func (v *NullableLocation) UnmarshalJSON(src []byte) error

func (*NullableLocation) Unset ¶

func (v *NullableLocation) Unset()

type NullableLocation1Inner ¶ added in v1.10.3

type NullableLocation1Inner struct {
	// contains filtered or unexported fields
}

func NewNullableLocation1Inner ¶ added in v1.10.3

func NewNullableLocation1Inner(val *Location1Inner) *NullableLocation1Inner

func (NullableLocation1Inner) Get ¶ added in v1.10.3

func (NullableLocation1Inner) IsSet ¶ added in v1.10.3

func (v NullableLocation1Inner) IsSet() bool

func (NullableLocation1Inner) MarshalJSON ¶ added in v1.10.3

func (v NullableLocation1Inner) MarshalJSON() ([]byte, error)

func (*NullableLocation1Inner) Set ¶ added in v1.10.3

func (*NullableLocation1Inner) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLocation1Inner) UnmarshalJSON(src []byte) error

func (*NullableLocation1Inner) Unset ¶ added in v1.10.3

func (v *NullableLocation1Inner) Unset()

type NullableLogEntry ¶

type NullableLogEntry struct {
	// contains filtered or unexported fields
}

func NewNullableLogEntry ¶

func NewNullableLogEntry(val *LogEntry) *NullableLogEntry

func (NullableLogEntry) Get ¶

func (v NullableLogEntry) Get() *LogEntry

func (NullableLogEntry) IsSet ¶

func (v NullableLogEntry) IsSet() bool

func (NullableLogEntry) MarshalJSON ¶

func (v NullableLogEntry) MarshalJSON() ([]byte, error)

func (*NullableLogEntry) Set ¶

func (v *NullableLogEntry) Set(val *LogEntry)

func (*NullableLogEntry) UnmarshalJSON ¶

func (v *NullableLogEntry) UnmarshalJSON(src []byte) error

func (*NullableLogEntry) Unset ¶

func (v *NullableLogEntry) Unset()

type NullableLowCodeOptions ¶ added in v1.10.3

type NullableLowCodeOptions struct {
	// contains filtered or unexported fields
}

func NewNullableLowCodeOptions ¶ added in v1.10.3

func NewNullableLowCodeOptions(val *LowCodeOptions) *NullableLowCodeOptions

func (NullableLowCodeOptions) Get ¶ added in v1.10.3

func (NullableLowCodeOptions) IsSet ¶ added in v1.10.3

func (v NullableLowCodeOptions) IsSet() bool

func (NullableLowCodeOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableLowCodeOptions) MarshalJSON() ([]byte, error)

func (*NullableLowCodeOptions) Set ¶ added in v1.10.3

func (*NullableLowCodeOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLowCodeOptions) UnmarshalJSON(src []byte) error

func (*NullableLowCodeOptions) Unset ¶ added in v1.10.3

func (v *NullableLowCodeOptions) Unset()

type NullableLowCodeOptionsAllOf ¶ added in v1.10.3

type NullableLowCodeOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableLowCodeOptionsAllOf ¶ added in v1.10.3

func NewNullableLowCodeOptionsAllOf(val *LowCodeOptionsAllOf) *NullableLowCodeOptionsAllOf

func (NullableLowCodeOptionsAllOf) Get ¶ added in v1.10.3

func (NullableLowCodeOptionsAllOf) IsSet ¶ added in v1.10.3

func (NullableLowCodeOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableLowCodeOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableLowCodeOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableLowCodeOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableLowCodeOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableLowCodeOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableLowCodeOptionsAllOf) Unset()

type NullableMXNetOptions ¶

type NullableMXNetOptions struct {
	// contains filtered or unexported fields
}

func NewNullableMXNetOptions ¶

func NewNullableMXNetOptions(val *MXNetOptions) *NullableMXNetOptions

func (NullableMXNetOptions) Get ¶

func (NullableMXNetOptions) IsSet ¶

func (v NullableMXNetOptions) IsSet() bool

func (NullableMXNetOptions) MarshalJSON ¶

func (v NullableMXNetOptions) MarshalJSON() ([]byte, error)

func (*NullableMXNetOptions) Set ¶

func (v *NullableMXNetOptions) Set(val *MXNetOptions)

func (*NullableMXNetOptions) UnmarshalJSON ¶

func (v *NullableMXNetOptions) UnmarshalJSON(src []byte) error

func (*NullableMXNetOptions) Unset ¶

func (v *NullableMXNetOptions) Unset()

type NullableMXNetOptionsAllOf ¶

type NullableMXNetOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableMXNetOptionsAllOf ¶

func NewNullableMXNetOptionsAllOf(val *MXNetOptionsAllOf) *NullableMXNetOptionsAllOf

func (NullableMXNetOptionsAllOf) Get ¶

func (NullableMXNetOptionsAllOf) IsSet ¶

func (v NullableMXNetOptionsAllOf) IsSet() bool

func (NullableMXNetOptionsAllOf) MarshalJSON ¶

func (v NullableMXNetOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableMXNetOptionsAllOf) Set ¶

func (*NullableMXNetOptionsAllOf) UnmarshalJSON ¶

func (v *NullableMXNetOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableMXNetOptionsAllOf) Unset ¶

func (v *NullableMXNetOptionsAllOf) Unset()

type NullableMailNotification ¶

type NullableMailNotification struct {
	// contains filtered or unexported fields
}

func NewNullableMailNotification ¶

func NewNullableMailNotification(val *MailNotification) *NullableMailNotification

func (NullableMailNotification) Get ¶

func (NullableMailNotification) IsSet ¶

func (v NullableMailNotification) IsSet() bool

func (NullableMailNotification) MarshalJSON ¶

func (v NullableMailNotification) MarshalJSON() ([]byte, error)

func (*NullableMailNotification) Set ¶

func (*NullableMailNotification) UnmarshalJSON ¶

func (v *NullableMailNotification) UnmarshalJSON(src []byte) error

func (*NullableMailNotification) Unset ¶

func (v *NullableMailNotification) Unset()

type NullableMailNotificationAllOf ¶

type NullableMailNotificationAllOf struct {
	// contains filtered or unexported fields
}

func (NullableMailNotificationAllOf) Get ¶

func (NullableMailNotificationAllOf) IsSet ¶

func (NullableMailNotificationAllOf) MarshalJSON ¶

func (v NullableMailNotificationAllOf) MarshalJSON() ([]byte, error)

func (*NullableMailNotificationAllOf) Set ¶

func (*NullableMailNotificationAllOf) UnmarshalJSON ¶

func (v *NullableMailNotificationAllOf) UnmarshalJSON(src []byte) error

func (*NullableMailNotificationAllOf) Unset ¶

func (v *NullableMailNotificationAllOf) Unset()

type NullableManagedOptions ¶ added in v1.10.3

type NullableManagedOptions struct {
	// contains filtered or unexported fields
}

func NewNullableManagedOptions ¶ added in v1.10.3

func NewNullableManagedOptions(val *ManagedOptions) *NullableManagedOptions

func (NullableManagedOptions) Get ¶ added in v1.10.3

func (NullableManagedOptions) IsSet ¶ added in v1.10.3

func (v NullableManagedOptions) IsSet() bool

func (NullableManagedOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableManagedOptions) MarshalJSON() ([]byte, error)

func (*NullableManagedOptions) Set ¶ added in v1.10.3

func (*NullableManagedOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableManagedOptions) UnmarshalJSON(src []byte) error

func (*NullableManagedOptions) Unset ¶ added in v1.10.3

func (v *NullableManagedOptions) Unset()

type NullableMariaDBOptions ¶ added in v1.10.3

type NullableMariaDBOptions struct {
	// contains filtered or unexported fields
}

func NewNullableMariaDBOptions ¶ added in v1.10.3

func NewNullableMariaDBOptions(val *MariaDBOptions) *NullableMariaDBOptions

func (NullableMariaDBOptions) Get ¶ added in v1.10.3

func (NullableMariaDBOptions) IsSet ¶ added in v1.10.3

func (v NullableMariaDBOptions) IsSet() bool

func (NullableMariaDBOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableMariaDBOptions) MarshalJSON() ([]byte, error)

func (*NullableMariaDBOptions) Set ¶ added in v1.10.3

func (*NullableMariaDBOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableMariaDBOptions) UnmarshalJSON(src []byte) error

func (*NullableMariaDBOptions) Unset ¶ added in v1.10.3

func (v *NullableMariaDBOptions) Unset()

type NullableMariaDBOptionsAllOf ¶ added in v1.10.3

type NullableMariaDBOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableMariaDBOptionsAllOf ¶ added in v1.10.3

func NewNullableMariaDBOptionsAllOf(val *MariaDBOptionsAllOf) *NullableMariaDBOptionsAllOf

func (NullableMariaDBOptionsAllOf) Get ¶ added in v1.10.3

func (NullableMariaDBOptionsAllOf) IsSet ¶ added in v1.10.3

func (NullableMariaDBOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableMariaDBOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableMariaDBOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableMariaDBOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableMariaDBOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableMariaDBOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableMariaDBOptionsAllOf) Unset()

type NullableMavenLibrary ¶

type NullableMavenLibrary struct {
	// contains filtered or unexported fields
}

func NewNullableMavenLibrary ¶

func NewNullableMavenLibrary(val *MavenLibrary) *NullableMavenLibrary

func (NullableMavenLibrary) Get ¶

func (NullableMavenLibrary) IsSet ¶

func (v NullableMavenLibrary) IsSet() bool

func (NullableMavenLibrary) MarshalJSON ¶

func (v NullableMavenLibrary) MarshalJSON() ([]byte, error)

func (*NullableMavenLibrary) Set ¶

func (v *NullableMavenLibrary) Set(val *MavenLibrary)

func (*NullableMavenLibrary) UnmarshalJSON ¶

func (v *NullableMavenLibrary) UnmarshalJSON(src []byte) error

func (*NullableMavenLibrary) Unset ¶

func (v *NullableMavenLibrary) Unset()

type NullableMavenLibraryAllOf ¶

type NullableMavenLibraryAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableMavenLibraryAllOf ¶

func NewNullableMavenLibraryAllOf(val *MavenLibraryAllOf) *NullableMavenLibraryAllOf

func (NullableMavenLibraryAllOf) Get ¶

func (NullableMavenLibraryAllOf) IsSet ¶

func (v NullableMavenLibraryAllOf) IsSet() bool

func (NullableMavenLibraryAllOf) MarshalJSON ¶

func (v NullableMavenLibraryAllOf) MarshalJSON() ([]byte, error)

func (*NullableMavenLibraryAllOf) Set ¶

func (*NullableMavenLibraryAllOf) UnmarshalJSON ¶

func (v *NullableMavenLibraryAllOf) UnmarshalJSON(src []byte) error

func (*NullableMavenLibraryAllOf) Unset ¶

func (v *NullableMavenLibraryAllOf) Unset()

type NullableMaxParams ¶ added in v1.10.3

type NullableMaxParams struct {
	// contains filtered or unexported fields
}

func NewNullableMaxParams ¶ added in v1.10.3

func NewNullableMaxParams(val *MaxParams) *NullableMaxParams

func (NullableMaxParams) Get ¶ added in v1.10.3

func (v NullableMaxParams) Get() *MaxParams

func (NullableMaxParams) IsSet ¶ added in v1.10.3

func (v NullableMaxParams) IsSet() bool

func (NullableMaxParams) MarshalJSON ¶ added in v1.10.3

func (v NullableMaxParams) MarshalJSON() ([]byte, error)

func (*NullableMaxParams) Set ¶ added in v1.10.3

func (v *NullableMaxParams) Set(val *MaxParams)

func (*NullableMaxParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableMaxParams) UnmarshalJSON(src []byte) error

func (*NullableMaxParams) Unset ¶ added in v1.10.3

func (v *NullableMaxParams) Unset()

type NullableMeanParams ¶ added in v1.10.3

type NullableMeanParams struct {
	// contains filtered or unexported fields
}

func NewNullableMeanParams ¶ added in v1.10.3

func NewNullableMeanParams(val *MeanParams) *NullableMeanParams

func (NullableMeanParams) Get ¶ added in v1.10.3

func (v NullableMeanParams) Get() *MeanParams

func (NullableMeanParams) IsSet ¶ added in v1.10.3

func (v NullableMeanParams) IsSet() bool

func (NullableMeanParams) MarshalJSON ¶ added in v1.10.3

func (v NullableMeanParams) MarshalJSON() ([]byte, error)

func (*NullableMeanParams) Set ¶ added in v1.10.3

func (v *NullableMeanParams) Set(val *MeanParams)

func (*NullableMeanParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableMeanParams) UnmarshalJSON(src []byte) error

func (*NullableMeanParams) Unset ¶ added in v1.10.3

func (v *NullableMeanParams) Unset()

type NullableMessage ¶

type NullableMessage struct {
	// contains filtered or unexported fields
}

func NewNullableMessage ¶

func NewNullableMessage(val *Message) *NullableMessage

func (NullableMessage) Get ¶

func (v NullableMessage) Get() *Message

func (NullableMessage) IsSet ¶

func (v NullableMessage) IsSet() bool

func (NullableMessage) MarshalJSON ¶

func (v NullableMessage) MarshalJSON() ([]byte, error)

func (*NullableMessage) Set ¶

func (v *NullableMessage) Set(val *Message)

func (*NullableMessage) UnmarshalJSON ¶

func (v *NullableMessage) UnmarshalJSON(src []byte) error

func (*NullableMessage) Unset ¶

func (v *NullableMessage) Unset()

type NullableMetadata ¶ added in v1.10.3

type NullableMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableMetadata ¶ added in v1.10.3

func NewNullableMetadata(val *Metadata) *NullableMetadata

func (NullableMetadata) Get ¶ added in v1.10.3

func (v NullableMetadata) Get() *Metadata

func (NullableMetadata) IsSet ¶ added in v1.10.3

func (v NullableMetadata) IsSet() bool

func (NullableMetadata) MarshalJSON ¶ added in v1.10.3

func (v NullableMetadata) MarshalJSON() ([]byte, error)

func (*NullableMetadata) Set ¶ added in v1.10.3

func (v *NullableMetadata) Set(val *Metadata)

func (*NullableMetadata) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableMetadata) UnmarshalJSON(src []byte) error

func (*NullableMetadata) Unset ¶ added in v1.10.3

func (v *NullableMetadata) 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 NullableMinParams ¶ added in v1.10.3

type NullableMinParams struct {
	// contains filtered or unexported fields
}

func NewNullableMinParams ¶ added in v1.10.3

func NewNullableMinParams(val *MinParams) *NullableMinParams

func (NullableMinParams) Get ¶ added in v1.10.3

func (v NullableMinParams) Get() *MinParams

func (NullableMinParams) IsSet ¶ added in v1.10.3

func (v NullableMinParams) IsSet() bool

func (NullableMinParams) MarshalJSON ¶ added in v1.10.3

func (v NullableMinParams) MarshalJSON() ([]byte, error)

func (*NullableMinParams) Set ¶ added in v1.10.3

func (v *NullableMinParams) Set(val *MinParams)

func (*NullableMinParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableMinParams) UnmarshalJSON(src []byte) error

func (*NullableMinParams) Unset ¶ added in v1.10.3

func (v *NullableMinParams) Unset()

type NullableModel ¶ added in v1.10.3

type NullableModel struct {
	// contains filtered or unexported fields
}

func NewNullableModel ¶ added in v1.10.3

func NewNullableModel(val *Model) *NullableModel

func (NullableModel) Get ¶ added in v1.10.3

func (v NullableModel) Get() *Model

func (NullableModel) IsSet ¶ added in v1.10.3

func (v NullableModel) IsSet() bool

func (NullableModel) MarshalJSON ¶ added in v1.10.3

func (v NullableModel) MarshalJSON() ([]byte, error)

func (*NullableModel) Set ¶ added in v1.10.3

func (v *NullableModel) Set(val *Model)

func (*NullableModel) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableModel) UnmarshalJSON(src []byte) error

func (*NullableModel) Unset ¶ added in v1.10.3

func (v *NullableModel) Unset()

type NullableModelVersion ¶ added in v1.10.3

type NullableModelVersion struct {
	// contains filtered or unexported fields
}

func NewNullableModelVersion ¶ added in v1.10.3

func NewNullableModelVersion(val *ModelVersion) *NullableModelVersion

func (NullableModelVersion) Get ¶ added in v1.10.3

func (NullableModelVersion) IsSet ¶ added in v1.10.3

func (v NullableModelVersion) IsSet() bool

func (NullableModelVersion) MarshalJSON ¶ added in v1.10.3

func (v NullableModelVersion) MarshalJSON() ([]byte, error)

func (*NullableModelVersion) Set ¶ added in v1.10.3

func (v *NullableModelVersion) Set(val *ModelVersion)

func (*NullableModelVersion) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableModelVersion) UnmarshalJSON(src []byte) error

func (*NullableModelVersion) Unset ¶ added in v1.10.3

func (v *NullableModelVersion) Unset()

type NullableMySQLOptions ¶ added in v1.10.3

type NullableMySQLOptions struct {
	// contains filtered or unexported fields
}

func NewNullableMySQLOptions ¶ added in v1.10.3

func NewNullableMySQLOptions(val *MySQLOptions) *NullableMySQLOptions

func (NullableMySQLOptions) Get ¶ added in v1.10.3

func (NullableMySQLOptions) IsSet ¶ added in v1.10.3

func (v NullableMySQLOptions) IsSet() bool

func (NullableMySQLOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableMySQLOptions) MarshalJSON() ([]byte, error)

func (*NullableMySQLOptions) Set ¶ added in v1.10.3

func (v *NullableMySQLOptions) Set(val *MySQLOptions)

func (*NullableMySQLOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableMySQLOptions) UnmarshalJSON(src []byte) error

func (*NullableMySQLOptions) Unset ¶ added in v1.10.3

func (v *NullableMySQLOptions) Unset()

type NullableMySQLOptionsAllOf ¶ added in v1.10.3

type NullableMySQLOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableMySQLOptionsAllOf ¶ added in v1.10.3

func NewNullableMySQLOptionsAllOf(val *MySQLOptionsAllOf) *NullableMySQLOptionsAllOf

func (NullableMySQLOptionsAllOf) Get ¶ added in v1.10.3

func (NullableMySQLOptionsAllOf) IsSet ¶ added in v1.10.3

func (v NullableMySQLOptionsAllOf) IsSet() bool

func (NullableMySQLOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableMySQLOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableMySQLOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableMySQLOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableMySQLOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableMySQLOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableMySQLOptionsAllOf) Unset()

type NullableNotEqualFilter ¶ added in v1.10.3

type NullableNotEqualFilter struct {
	// contains filtered or unexported fields
}

func NewNullableNotEqualFilter ¶ added in v1.10.3

func NewNullableNotEqualFilter(val *NotEqualFilter) *NullableNotEqualFilter

func (NullableNotEqualFilter) Get ¶ added in v1.10.3

func (NullableNotEqualFilter) IsSet ¶ added in v1.10.3

func (v NullableNotEqualFilter) IsSet() bool

func (NullableNotEqualFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableNotEqualFilter) MarshalJSON() ([]byte, error)

func (*NullableNotEqualFilter) Set ¶ added in v1.10.3

func (*NullableNotEqualFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableNotEqualFilter) UnmarshalJSON(src []byte) error

func (*NullableNotEqualFilter) Unset ¶ added in v1.10.3

func (v *NullableNotEqualFilter) Unset()

type NullableNotFilter ¶ added in v1.10.3

type NullableNotFilter struct {
	// contains filtered or unexported fields
}

func NewNullableNotFilter ¶ added in v1.10.3

func NewNullableNotFilter(val *NotFilter) *NullableNotFilter

func (NullableNotFilter) Get ¶ added in v1.10.3

func (v NullableNotFilter) Get() *NotFilter

func (NullableNotFilter) IsSet ¶ added in v1.10.3

func (v NullableNotFilter) IsSet() bool

func (NullableNotFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableNotFilter) MarshalJSON() ([]byte, error)

func (*NullableNotFilter) Set ¶ added in v1.10.3

func (v *NullableNotFilter) Set(val *NotFilter)

func (*NullableNotFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableNotFilter) UnmarshalJSON(src []byte) error

func (*NullableNotFilter) Unset ¶ added in v1.10.3

func (v *NullableNotFilter) Unset()

type NullableNotNullFilter ¶ added in v1.10.3

type NullableNotNullFilter struct {
	// contains filtered or unexported fields
}

func NewNullableNotNullFilter ¶ added in v1.10.3

func NewNullableNotNullFilter(val *NotNullFilter) *NullableNotNullFilter

func (NullableNotNullFilter) Get ¶ added in v1.10.3

func (NullableNotNullFilter) IsSet ¶ added in v1.10.3

func (v NullableNotNullFilter) IsSet() bool

func (NullableNotNullFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableNotNullFilter) MarshalJSON() ([]byte, error)

func (*NullableNotNullFilter) Set ¶ added in v1.10.3

func (v *NullableNotNullFilter) Set(val *NotNullFilter)

func (*NullableNotNullFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableNotNullFilter) UnmarshalJSON(src []byte) error

func (*NullableNotNullFilter) Unset ¶ added in v1.10.3

func (v *NullableNotNullFilter) Unset()

type NullableNotification ¶

type NullableNotification struct {
	// contains filtered or unexported fields
}

func NewNullableNotification ¶

func NewNullableNotification(val *Notification) *NullableNotification

func (NullableNotification) Get ¶

func (NullableNotification) IsSet ¶

func (v NullableNotification) IsSet() bool

func (NullableNotification) MarshalJSON ¶

func (v NullableNotification) MarshalJSON() ([]byte, error)

func (*NullableNotification) Set ¶

func (v *NullableNotification) Set(val *Notification)

func (*NullableNotification) UnmarshalJSON ¶

func (v *NullableNotification) UnmarshalJSON(src []byte) error

func (*NullableNotification) Unset ¶

func (v *NullableNotification) Unset()

type NullableNotification1 ¶

type NullableNotification1 struct {
	// contains filtered or unexported fields
}

func NewNullableNotification1 ¶

func NewNullableNotification1(val *Notification1) *NullableNotification1

func (NullableNotification1) Get ¶

func (NullableNotification1) IsSet ¶

func (v NullableNotification1) IsSet() bool

func (NullableNotification1) MarshalJSON ¶

func (v NullableNotification1) MarshalJSON() ([]byte, error)

func (*NullableNotification1) Set ¶

func (v *NullableNotification1) Set(val *Notification1)

func (*NullableNotification1) UnmarshalJSON ¶

func (v *NullableNotification1) UnmarshalJSON(src []byte) error

func (*NullableNotification1) Unset ¶

func (v *NullableNotification1) Unset()

type NullableNotifications ¶

type NullableNotifications struct {
	// contains filtered or unexported fields
}

func NewNullableNotifications ¶

func NewNullableNotifications(val *Notifications) *NullableNotifications

func (NullableNotifications) Get ¶

func (NullableNotifications) IsSet ¶

func (v NullableNotifications) IsSet() bool

func (NullableNotifications) MarshalJSON ¶

func (v NullableNotifications) MarshalJSON() ([]byte, error)

func (*NullableNotifications) Set ¶

func (v *NullableNotifications) Set(val *Notifications)

func (*NullableNotifications) UnmarshalJSON ¶

func (v *NullableNotifications) UnmarshalJSON(src []byte) error

func (*NullableNotifications) Unset ¶

func (v *NullableNotifications) Unset()

type NullableOptions ¶

type NullableOptions struct {
	// contains filtered or unexported fields
}

func NewNullableOptions ¶

func NewNullableOptions(val *Options) *NullableOptions

func (NullableOptions) Get ¶

func (v NullableOptions) Get() *Options

func (NullableOptions) IsSet ¶

func (v NullableOptions) IsSet() bool

func (NullableOptions) MarshalJSON ¶

func (v NullableOptions) MarshalJSON() ([]byte, error)

func (*NullableOptions) Set ¶

func (v *NullableOptions) Set(val *Options)

func (*NullableOptions) UnmarshalJSON ¶

func (v *NullableOptions) UnmarshalJSON(src []byte) error

func (*NullableOptions) Unset ¶

func (v *NullableOptions) Unset()

type NullableOrFilter ¶ added in v1.10.3

type NullableOrFilter struct {
	// contains filtered or unexported fields
}

func NewNullableOrFilter ¶ added in v1.10.3

func NewNullableOrFilter(val *OrFilter) *NullableOrFilter

func (NullableOrFilter) Get ¶ added in v1.10.3

func (v NullableOrFilter) Get() *OrFilter

func (NullableOrFilter) IsSet ¶ added in v1.10.3

func (v NullableOrFilter) IsSet() bool

func (NullableOrFilter) MarshalJSON ¶ added in v1.10.3

func (v NullableOrFilter) MarshalJSON() ([]byte, error)

func (*NullableOrFilter) Set ¶ added in v1.10.3

func (v *NullableOrFilter) Set(val *OrFilter)

func (*NullableOrFilter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableOrFilter) UnmarshalJSON(src []byte) error

func (*NullableOrFilter) Unset ¶ added in v1.10.3

func (v *NullableOrFilter) Unset()

type NullableOracleOptions ¶ added in v1.10.3

type NullableOracleOptions struct {
	// contains filtered or unexported fields
}

func NewNullableOracleOptions ¶ added in v1.10.3

func NewNullableOracleOptions(val *OracleOptions) *NullableOracleOptions

func (NullableOracleOptions) Get ¶ added in v1.10.3

func (NullableOracleOptions) IsSet ¶ added in v1.10.3

func (v NullableOracleOptions) IsSet() bool

func (NullableOracleOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableOracleOptions) MarshalJSON() ([]byte, error)

func (*NullableOracleOptions) Set ¶ added in v1.10.3

func (v *NullableOracleOptions) Set(val *OracleOptions)

func (*NullableOracleOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableOracleOptions) UnmarshalJSON(src []byte) error

func (*NullableOracleOptions) Unset ¶ added in v1.10.3

func (v *NullableOracleOptions) Unset()

type NullableOracleOptionsAllOf ¶ added in v1.10.3

type NullableOracleOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableOracleOptionsAllOf ¶ added in v1.10.3

func NewNullableOracleOptionsAllOf(val *OracleOptionsAllOf) *NullableOracleOptionsAllOf

func (NullableOracleOptionsAllOf) Get ¶ added in v1.10.3

func (NullableOracleOptionsAllOf) IsSet ¶ added in v1.10.3

func (v NullableOracleOptionsAllOf) IsSet() bool

func (NullableOracleOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableOracleOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableOracleOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableOracleOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableOracleOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableOracleOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableOracleOptionsAllOf) Unset()

type NullableOrderParams ¶ added in v1.10.3

type NullableOrderParams struct {
	// contains filtered or unexported fields
}

func NewNullableOrderParams ¶ added in v1.10.3

func NewNullableOrderParams(val *OrderParams) *NullableOrderParams

func (NullableOrderParams) Get ¶ added in v1.10.3

func (NullableOrderParams) IsSet ¶ added in v1.10.3

func (v NullableOrderParams) IsSet() bool

func (NullableOrderParams) MarshalJSON ¶ added in v1.10.3

func (v NullableOrderParams) MarshalJSON() ([]byte, error)

func (*NullableOrderParams) Set ¶ added in v1.10.3

func (v *NullableOrderParams) Set(val *OrderParams)

func (*NullableOrderParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableOrderParams) UnmarshalJSON(src []byte) error

func (*NullableOrderParams) Unset ¶ added in v1.10.3

func (v *NullableOrderParams) Unset()

type NullableOrderTask ¶ added in v1.10.3

type NullableOrderTask struct {
	// contains filtered or unexported fields
}

func NewNullableOrderTask ¶ added in v1.10.3

func NewNullableOrderTask(val *OrderTask) *NullableOrderTask

func (NullableOrderTask) Get ¶ added in v1.10.3

func (v NullableOrderTask) Get() *OrderTask

func (NullableOrderTask) IsSet ¶ added in v1.10.3

func (v NullableOrderTask) IsSet() bool

func (NullableOrderTask) MarshalJSON ¶ added in v1.10.3

func (v NullableOrderTask) MarshalJSON() ([]byte, error)

func (*NullableOrderTask) Set ¶ added in v1.10.3

func (v *NullableOrderTask) Set(val *OrderTask)

func (*NullableOrderTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableOrderTask) UnmarshalJSON(src []byte) error

func (*NullableOrderTask) Unset ¶ added in v1.10.3

func (v *NullableOrderTask) Unset()

type NullablePage ¶

type NullablePage struct {
	// contains filtered or unexported fields
}

func NewNullablePage ¶

func NewNullablePage(val *Page) *NullablePage

func (NullablePage) Get ¶

func (v NullablePage) Get() *Page

func (NullablePage) IsSet ¶

func (v NullablePage) IsSet() bool

func (NullablePage) MarshalJSON ¶

func (v NullablePage) MarshalJSON() ([]byte, error)

func (*NullablePage) Set ¶

func (v *NullablePage) Set(val *Page)

func (*NullablePage) UnmarshalJSON ¶

func (v *NullablePage) UnmarshalJSON(src []byte) error

func (*NullablePage) Unset ¶

func (v *NullablePage) Unset()

type NullablePageable ¶

type NullablePageable struct {
	// contains filtered or unexported fields
}

func NewNullablePageable ¶

func NewNullablePageable(val *Pageable) *NullablePageable

func (NullablePageable) Get ¶

func (v NullablePageable) Get() *Pageable

func (NullablePageable) IsSet ¶

func (v NullablePageable) IsSet() bool

func (NullablePageable) MarshalJSON ¶

func (v NullablePageable) MarshalJSON() ([]byte, error)

func (*NullablePageable) Set ¶

func (v *NullablePageable) Set(val *Pageable)

func (*NullablePageable) UnmarshalJSON ¶

func (v *NullablePageable) UnmarshalJSON(src []byte) error

func (*NullablePageable) Unset ¶

func (v *NullablePageable) Unset()

type NullableParameter ¶ added in v1.10.3

type NullableParameter struct {
	// contains filtered or unexported fields
}

func NewNullableParameter ¶ added in v1.10.3

func NewNullableParameter(val *Parameter) *NullableParameter

func (NullableParameter) Get ¶ added in v1.10.3

func (v NullableParameter) Get() *Parameter

func (NullableParameter) IsSet ¶ added in v1.10.3

func (v NullableParameter) IsSet() bool

func (NullableParameter) MarshalJSON ¶ added in v1.10.3

func (v NullableParameter) MarshalJSON() ([]byte, error)

func (*NullableParameter) Set ¶ added in v1.10.3

func (v *NullableParameter) Set(val *Parameter)

func (*NullableParameter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableParameter) UnmarshalJSON(src []byte) error

func (*NullableParameter) Unset ¶ added in v1.10.3

func (v *NullableParameter) Unset()

type NullableParametersToWriteAFile ¶ added in v1.10.3

type NullableParametersToWriteAFile struct {
	// contains filtered or unexported fields
}

func NewNullableParametersToWriteAFile ¶ added in v1.10.3

func NewNullableParametersToWriteAFile(val *ParametersToWriteAFile) *NullableParametersToWriteAFile

func (NullableParametersToWriteAFile) Get ¶ added in v1.10.3

func (NullableParametersToWriteAFile) IsSet ¶ added in v1.10.3

func (NullableParametersToWriteAFile) MarshalJSON ¶ added in v1.10.3

func (v NullableParametersToWriteAFile) MarshalJSON() ([]byte, error)

func (*NullableParametersToWriteAFile) Set ¶ added in v1.10.3

func (*NullableParametersToWriteAFile) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableParametersToWriteAFile) UnmarshalJSON(src []byte) error

func (*NullableParametersToWriteAFile) Unset ¶ added in v1.10.3

func (v *NullableParametersToWriteAFile) Unset()

type NullableParametersToWriteAFile1 ¶ added in v1.10.3

type NullableParametersToWriteAFile1 struct {
	// contains filtered or unexported fields
}

func NewNullableParametersToWriteAFile1 ¶ added in v1.10.3

func NewNullableParametersToWriteAFile1(val *ParametersToWriteAFile1) *NullableParametersToWriteAFile1

func (NullableParametersToWriteAFile1) Get ¶ added in v1.10.3

func (NullableParametersToWriteAFile1) IsSet ¶ added in v1.10.3

func (NullableParametersToWriteAFile1) MarshalJSON ¶ added in v1.10.3

func (v NullableParametersToWriteAFile1) MarshalJSON() ([]byte, error)

func (*NullableParametersToWriteAFile1) Set ¶ added in v1.10.3

func (*NullableParametersToWriteAFile1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableParametersToWriteAFile1) UnmarshalJSON(src []byte) error

func (*NullableParametersToWriteAFile1) Unset ¶ added in v1.10.3

type NullableParametersToWriteAFile2 ¶ added in v1.10.3

type NullableParametersToWriteAFile2 struct {
	// contains filtered or unexported fields
}

func NewNullableParametersToWriteAFile2 ¶ added in v1.10.3

func NewNullableParametersToWriteAFile2(val *ParametersToWriteAFile2) *NullableParametersToWriteAFile2

func (NullableParametersToWriteAFile2) Get ¶ added in v1.10.3

func (NullableParametersToWriteAFile2) IsSet ¶ added in v1.10.3

func (NullableParametersToWriteAFile2) MarshalJSON ¶ added in v1.10.3

func (v NullableParametersToWriteAFile2) MarshalJSON() ([]byte, error)

func (*NullableParametersToWriteAFile2) Set ¶ added in v1.10.3

func (*NullableParametersToWriteAFile2) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableParametersToWriteAFile2) UnmarshalJSON(src []byte) error

func (*NullableParametersToWriteAFile2) Unset ¶ added in v1.10.3

type NullableParametersToWriteAFile3 ¶ added in v1.10.3

type NullableParametersToWriteAFile3 struct {
	// contains filtered or unexported fields
}

func NewNullableParametersToWriteAFile3 ¶ added in v1.10.3

func NewNullableParametersToWriteAFile3(val *ParametersToWriteAFile3) *NullableParametersToWriteAFile3

func (NullableParametersToWriteAFile3) Get ¶ added in v1.10.3

func (NullableParametersToWriteAFile3) IsSet ¶ added in v1.10.3

func (NullableParametersToWriteAFile3) MarshalJSON ¶ added in v1.10.3

func (v NullableParametersToWriteAFile3) MarshalJSON() ([]byte, error)

func (*NullableParametersToWriteAFile3) Set ¶ added in v1.10.3

func (*NullableParametersToWriteAFile3) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableParametersToWriteAFile3) UnmarshalJSON(src []byte) error

func (*NullableParametersToWriteAFile3) Unset ¶ added in v1.10.3

type NullableParquetReader ¶ added in v1.10.3

type NullableParquetReader struct {
	// contains filtered or unexported fields
}

func NewNullableParquetReader ¶ added in v1.10.3

func NewNullableParquetReader(val *ParquetReader) *NullableParquetReader

func (NullableParquetReader) Get ¶ added in v1.10.3

func (NullableParquetReader) IsSet ¶ added in v1.10.3

func (v NullableParquetReader) IsSet() bool

func (NullableParquetReader) MarshalJSON ¶ added in v1.10.3

func (v NullableParquetReader) MarshalJSON() ([]byte, error)

func (*NullableParquetReader) Set ¶ added in v1.10.3

func (v *NullableParquetReader) Set(val *ParquetReader)

func (*NullableParquetReader) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableParquetReader) UnmarshalJSON(src []byte) error

func (*NullableParquetReader) Unset ¶ added in v1.10.3

func (v *NullableParquetReader) Unset()

type NullableParquetWriter ¶ added in v1.10.3

type NullableParquetWriter struct {
	// contains filtered or unexported fields
}

func NewNullableParquetWriter ¶ added in v1.10.3

func NewNullableParquetWriter(val *ParquetWriter) *NullableParquetWriter

func (NullableParquetWriter) Get ¶ added in v1.10.3

func (NullableParquetWriter) IsSet ¶ added in v1.10.3

func (v NullableParquetWriter) IsSet() bool

func (NullableParquetWriter) MarshalJSON ¶ added in v1.10.3

func (v NullableParquetWriter) MarshalJSON() ([]byte, error)

func (*NullableParquetWriter) Set ¶ added in v1.10.3

func (v *NullableParquetWriter) Set(val *ParquetWriter)

func (*NullableParquetWriter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableParquetWriter) UnmarshalJSON(src []byte) error

func (*NullableParquetWriter) Unset ¶ added in v1.10.3

func (v *NullableParquetWriter) Unset()

type NullablePatch ¶

type NullablePatch struct {
	// contains filtered or unexported fields
}

func NewNullablePatch ¶

func NewNullablePatch(val *Patch) *NullablePatch

func (NullablePatch) Get ¶

func (v NullablePatch) Get() *Patch

func (NullablePatch) IsSet ¶

func (v NullablePatch) IsSet() bool

func (NullablePatch) MarshalJSON ¶

func (v NullablePatch) MarshalJSON() ([]byte, error)

func (*NullablePatch) Set ¶

func (v *NullablePatch) Set(val *Patch)

func (*NullablePatch) UnmarshalJSON ¶

func (v *NullablePatch) UnmarshalJSON(src []byte) error

func (*NullablePatch) Unset ¶

func (v *NullablePatch) Unset()

type NullablePayment ¶ added in v1.10.3

type NullablePayment struct {
	// contains filtered or unexported fields
}

func NewNullablePayment ¶ added in v1.10.3

func NewNullablePayment(val *Payment) *NullablePayment

func (NullablePayment) Get ¶ added in v1.10.3

func (v NullablePayment) Get() *Payment

func (NullablePayment) IsSet ¶ added in v1.10.3

func (v NullablePayment) IsSet() bool

func (NullablePayment) MarshalJSON ¶ added in v1.10.3

func (v NullablePayment) MarshalJSON() ([]byte, error)

func (*NullablePayment) Set ¶ added in v1.10.3

func (v *NullablePayment) Set(val *Payment)

func (*NullablePayment) UnmarshalJSON ¶ added in v1.10.3

func (v *NullablePayment) UnmarshalJSON(src []byte) error

func (*NullablePayment) Unset ¶ added in v1.10.3

func (v *NullablePayment) Unset()

type NullablePaymentMethod ¶

type NullablePaymentMethod struct {
	// contains filtered or unexported fields
}

func NewNullablePaymentMethod ¶

func NewNullablePaymentMethod(val *PaymentMethod) *NullablePaymentMethod

func (NullablePaymentMethod) Get ¶

func (NullablePaymentMethod) IsSet ¶

func (v NullablePaymentMethod) IsSet() bool

func (NullablePaymentMethod) MarshalJSON ¶

func (v NullablePaymentMethod) MarshalJSON() ([]byte, error)

func (*NullablePaymentMethod) Set ¶

func (v *NullablePaymentMethod) Set(val *PaymentMethod)

func (*NullablePaymentMethod) UnmarshalJSON ¶

func (v *NullablePaymentMethod) UnmarshalJSON(src []byte) error

func (*NullablePaymentMethod) Unset ¶

func (v *NullablePaymentMethod) Unset()

type NullablePickleReader ¶ added in v1.10.3

type NullablePickleReader struct {
	// contains filtered or unexported fields
}

func NewNullablePickleReader ¶ added in v1.10.3

func NewNullablePickleReader(val *PickleReader) *NullablePickleReader

func (NullablePickleReader) Get ¶ added in v1.10.3

func (NullablePickleReader) IsSet ¶ added in v1.10.3

func (v NullablePickleReader) IsSet() bool

func (NullablePickleReader) MarshalJSON ¶ added in v1.10.3

func (v NullablePickleReader) MarshalJSON() ([]byte, error)

func (*NullablePickleReader) Set ¶ added in v1.10.3

func (v *NullablePickleReader) Set(val *PickleReader)

func (*NullablePickleReader) UnmarshalJSON ¶ added in v1.10.3

func (v *NullablePickleReader) UnmarshalJSON(src []byte) error

func (*NullablePickleReader) Unset ¶ added in v1.10.3

func (v *NullablePickleReader) Unset()

type NullablePickleWriter ¶ added in v1.10.3

type NullablePickleWriter struct {
	// contains filtered or unexported fields
}

func NewNullablePickleWriter ¶ added in v1.10.3

func NewNullablePickleWriter(val *PickleWriter) *NullablePickleWriter

func (NullablePickleWriter) Get ¶ added in v1.10.3

func (NullablePickleWriter) IsSet ¶ added in v1.10.3

func (v NullablePickleWriter) IsSet() bool

func (NullablePickleWriter) MarshalJSON ¶ added in v1.10.3

func (v NullablePickleWriter) MarshalJSON() ([]byte, error)

func (*NullablePickleWriter) Set ¶ added in v1.10.3

func (v *NullablePickleWriter) Set(val *PickleWriter)

func (*NullablePickleWriter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullablePickleWriter) UnmarshalJSON(src []byte) error

func (*NullablePickleWriter) Unset ¶ added in v1.10.3

func (v *NullablePickleWriter) Unset()

type NullablePostgreSQLOptions ¶ added in v1.10.3

type NullablePostgreSQLOptions struct {
	// contains filtered or unexported fields
}

func NewNullablePostgreSQLOptions ¶ added in v1.10.3

func NewNullablePostgreSQLOptions(val *PostgreSQLOptions) *NullablePostgreSQLOptions

func (NullablePostgreSQLOptions) Get ¶ added in v1.10.3

func (NullablePostgreSQLOptions) IsSet ¶ added in v1.10.3

func (v NullablePostgreSQLOptions) IsSet() bool

func (NullablePostgreSQLOptions) MarshalJSON ¶ added in v1.10.3

func (v NullablePostgreSQLOptions) MarshalJSON() ([]byte, error)

func (*NullablePostgreSQLOptions) Set ¶ added in v1.10.3

func (*NullablePostgreSQLOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullablePostgreSQLOptions) UnmarshalJSON(src []byte) error

func (*NullablePostgreSQLOptions) Unset ¶ added in v1.10.3

func (v *NullablePostgreSQLOptions) Unset()

type NullablePostgreSQLOptionsAllOf ¶ added in v1.10.3

type NullablePostgreSQLOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePostgreSQLOptionsAllOf ¶ added in v1.10.3

func NewNullablePostgreSQLOptionsAllOf(val *PostgreSQLOptionsAllOf) *NullablePostgreSQLOptionsAllOf

func (NullablePostgreSQLOptionsAllOf) Get ¶ added in v1.10.3

func (NullablePostgreSQLOptionsAllOf) IsSet ¶ added in v1.10.3

func (NullablePostgreSQLOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullablePostgreSQLOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullablePostgreSQLOptionsAllOf) Set ¶ added in v1.10.3

func (*NullablePostgreSQLOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullablePostgreSQLOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullablePostgreSQLOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullablePostgreSQLOptionsAllOf) Unset()

type NullablePredictModelTask ¶ added in v1.10.3

type NullablePredictModelTask struct {
	// contains filtered or unexported fields
}

func NewNullablePredictModelTask ¶ added in v1.10.3

func NewNullablePredictModelTask(val *PredictModelTask) *NullablePredictModelTask

func (NullablePredictModelTask) Get ¶ added in v1.10.3

func (NullablePredictModelTask) IsSet ¶ added in v1.10.3

func (v NullablePredictModelTask) IsSet() bool

func (NullablePredictModelTask) MarshalJSON ¶ added in v1.10.3

func (v NullablePredictModelTask) MarshalJSON() ([]byte, error)

func (*NullablePredictModelTask) Set ¶ added in v1.10.3

func (*NullablePredictModelTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullablePredictModelTask) UnmarshalJSON(src []byte) error

func (*NullablePredictModelTask) Unset ¶ added in v1.10.3

func (v *NullablePredictModelTask) Unset()

type NullablePrice ¶

type NullablePrice struct {
	// contains filtered or unexported fields
}

func NewNullablePrice ¶

func NewNullablePrice(val *Price) *NullablePrice

func (NullablePrice) Get ¶

func (v NullablePrice) Get() *Price

func (NullablePrice) IsSet ¶

func (v NullablePrice) IsSet() bool

func (NullablePrice) MarshalJSON ¶

func (v NullablePrice) MarshalJSON() ([]byte, error)

func (*NullablePrice) Set ¶

func (v *NullablePrice) Set(val *Price)

func (*NullablePrice) UnmarshalJSON ¶

func (v *NullablePrice) UnmarshalJSON(src []byte) error

func (*NullablePrice) Unset ¶

func (v *NullablePrice) Unset()

type NullablePrincipal ¶

type NullablePrincipal struct {
	// contains filtered or unexported fields
}

func NewNullablePrincipal ¶

func NewNullablePrincipal(val *Principal) *NullablePrincipal

func (NullablePrincipal) Get ¶

func (v NullablePrincipal) Get() *Principal

func (NullablePrincipal) IsSet ¶

func (v NullablePrincipal) IsSet() bool

func (NullablePrincipal) MarshalJSON ¶

func (v NullablePrincipal) MarshalJSON() ([]byte, error)

func (*NullablePrincipal) Set ¶

func (v *NullablePrincipal) Set(val *Principal)

func (*NullablePrincipal) UnmarshalJSON ¶

func (v *NullablePrincipal) UnmarshalJSON(src []byte) error

func (*NullablePrincipal) Unset ¶

func (v *NullablePrincipal) Unset()

type NullablePrintParams ¶ added in v1.10.3

type NullablePrintParams struct {
	// contains filtered or unexported fields
}

func NewNullablePrintParams ¶ added in v1.10.3

func NewNullablePrintParams(val *PrintParams) *NullablePrintParams

func (NullablePrintParams) Get ¶ added in v1.10.3

func (NullablePrintParams) IsSet ¶ added in v1.10.3

func (v NullablePrintParams) IsSet() bool

func (NullablePrintParams) MarshalJSON ¶ added in v1.10.3

func (v NullablePrintParams) MarshalJSON() ([]byte, error)

func (*NullablePrintParams) Set ¶ added in v1.10.3

func (v *NullablePrintParams) Set(val *PrintParams)

func (*NullablePrintParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullablePrintParams) UnmarshalJSON(src []byte) error

func (*NullablePrintParams) Unset ¶ added in v1.10.3

func (v *NullablePrintParams) Unset()

type NullablePrintTask ¶ added in v1.10.3

type NullablePrintTask struct {
	// contains filtered or unexported fields
}

func NewNullablePrintTask ¶ added in v1.10.3

func NewNullablePrintTask(val *PrintTask) *NullablePrintTask

func (NullablePrintTask) Get ¶ added in v1.10.3

func (v NullablePrintTask) Get() *PrintTask

func (NullablePrintTask) IsSet ¶ added in v1.10.3

func (v NullablePrintTask) IsSet() bool

func (NullablePrintTask) MarshalJSON ¶ added in v1.10.3

func (v NullablePrintTask) MarshalJSON() ([]byte, error)

func (*NullablePrintTask) Set ¶ added in v1.10.3

func (v *NullablePrintTask) Set(val *PrintTask)

func (*NullablePrintTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullablePrintTask) UnmarshalJSON(src []byte) error

func (*NullablePrintTask) Unset ¶ added in v1.10.3

func (v *NullablePrintTask) Unset()

type NullableProject ¶

type NullableProject struct {
	// contains filtered or unexported fields
}

func NewNullableProject ¶

func NewNullableProject(val *Project) *NullableProject

func (NullableProject) Get ¶

func (v NullableProject) Get() *Project

func (NullableProject) IsSet ¶

func (v NullableProject) IsSet() bool

func (NullableProject) MarshalJSON ¶

func (v NullableProject) MarshalJSON() ([]byte, error)

func (*NullableProject) Set ¶

func (v *NullableProject) Set(val *Project)

func (*NullableProject) UnmarshalJSON ¶

func (v *NullableProject) UnmarshalJSON(src []byte) error

func (*NullableProject) Unset ¶

func (v *NullableProject) Unset()

type NullableProject1 ¶ added in v1.10.3

type NullableProject1 struct {
	// contains filtered or unexported fields
}

func NewNullableProject1 ¶ added in v1.10.3

func NewNullableProject1(val *Project1) *NullableProject1

func (NullableProject1) Get ¶ added in v1.10.3

func (v NullableProject1) Get() *Project1

func (NullableProject1) IsSet ¶ added in v1.10.3

func (v NullableProject1) IsSet() bool

func (NullableProject1) MarshalJSON ¶ added in v1.10.3

func (v NullableProject1) MarshalJSON() ([]byte, error)

func (*NullableProject1) Set ¶ added in v1.10.3

func (v *NullableProject1) Set(val *Project1)

func (*NullableProject1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableProject1) UnmarshalJSON(src []byte) error

func (*NullableProject1) Unset ¶ added in v1.10.3

func (v *NullableProject1) Unset()

type NullableProject1AllOf ¶ added in v1.10.3

type NullableProject1AllOf struct {
	// contains filtered or unexported fields
}

func NewNullableProject1AllOf ¶ added in v1.10.3

func NewNullableProject1AllOf(val *Project1AllOf) *NullableProject1AllOf

func (NullableProject1AllOf) Get ¶ added in v1.10.3

func (NullableProject1AllOf) IsSet ¶ added in v1.10.3

func (v NullableProject1AllOf) IsSet() bool

func (NullableProject1AllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableProject1AllOf) MarshalJSON() ([]byte, error)

func (*NullableProject1AllOf) Set ¶ added in v1.10.3

func (v *NullableProject1AllOf) Set(val *Project1AllOf)

func (*NullableProject1AllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableProject1AllOf) UnmarshalJSON(src []byte) error

func (*NullableProject1AllOf) Unset ¶ added in v1.10.3

func (v *NullableProject1AllOf) Unset()

type NullableProjectActivity ¶ added in v1.10.3

type NullableProjectActivity struct {
	// contains filtered or unexported fields
}

func NewNullableProjectActivity ¶ added in v1.10.3

func NewNullableProjectActivity(val *ProjectActivity) *NullableProjectActivity

func (NullableProjectActivity) Get ¶ added in v1.10.3

func (NullableProjectActivity) IsSet ¶ added in v1.10.3

func (v NullableProjectActivity) IsSet() bool

func (NullableProjectActivity) MarshalJSON ¶ added in v1.10.3

func (v NullableProjectActivity) MarshalJSON() ([]byte, error)

func (*NullableProjectActivity) Set ¶ added in v1.10.3

func (*NullableProjectActivity) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableProjectActivity) UnmarshalJSON(src []byte) error

func (*NullableProjectActivity) Unset ¶ added in v1.10.3

func (v *NullableProjectActivity) Unset()

type NullableProjectActivityAllOf ¶ added in v1.10.3

type NullableProjectActivityAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableProjectActivityAllOf ¶ added in v1.10.3

func NewNullableProjectActivityAllOf(val *ProjectActivityAllOf) *NullableProjectActivityAllOf

func (NullableProjectActivityAllOf) Get ¶ added in v1.10.3

func (NullableProjectActivityAllOf) IsSet ¶ added in v1.10.3

func (NullableProjectActivityAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableProjectActivityAllOf) MarshalJSON() ([]byte, error)

func (*NullableProjectActivityAllOf) Set ¶ added in v1.10.3

func (*NullableProjectActivityAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableProjectActivityAllOf) UnmarshalJSON(src []byte) error

func (*NullableProjectActivityAllOf) Unset ¶ added in v1.10.3

func (v *NullableProjectActivityAllOf) Unset()

type NullablePyPiLibrary ¶

type NullablePyPiLibrary struct {
	// contains filtered or unexported fields
}

func NewNullablePyPiLibrary ¶

func NewNullablePyPiLibrary(val *PyPiLibrary) *NullablePyPiLibrary

func (NullablePyPiLibrary) Get ¶

func (NullablePyPiLibrary) IsSet ¶

func (v NullablePyPiLibrary) IsSet() bool

func (NullablePyPiLibrary) MarshalJSON ¶

func (v NullablePyPiLibrary) MarshalJSON() ([]byte, error)

func (*NullablePyPiLibrary) Set ¶

func (v *NullablePyPiLibrary) Set(val *PyPiLibrary)

func (*NullablePyPiLibrary) UnmarshalJSON ¶

func (v *NullablePyPiLibrary) UnmarshalJSON(src []byte) error

func (*NullablePyPiLibrary) Unset ¶

func (v *NullablePyPiLibrary) Unset()

type NullablePyPiLibraryAllOf ¶

type NullablePyPiLibraryAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePyPiLibraryAllOf ¶

func NewNullablePyPiLibraryAllOf(val *PyPiLibraryAllOf) *NullablePyPiLibraryAllOf

func (NullablePyPiLibraryAllOf) Get ¶

func (NullablePyPiLibraryAllOf) IsSet ¶

func (v NullablePyPiLibraryAllOf) IsSet() bool

func (NullablePyPiLibraryAllOf) MarshalJSON ¶

func (v NullablePyPiLibraryAllOf) MarshalJSON() ([]byte, error)

func (*NullablePyPiLibraryAllOf) Set ¶

func (*NullablePyPiLibraryAllOf) UnmarshalJSON ¶

func (v *NullablePyPiLibraryAllOf) UnmarshalJSON(src []byte) error

func (*NullablePyPiLibraryAllOf) Unset ¶

func (v *NullablePyPiLibraryAllOf) Unset()

type NullablePyTorchOptions ¶

type NullablePyTorchOptions struct {
	// contains filtered or unexported fields
}

func NewNullablePyTorchOptions ¶

func NewNullablePyTorchOptions(val *PyTorchOptions) *NullablePyTorchOptions

func (NullablePyTorchOptions) Get ¶

func (NullablePyTorchOptions) IsSet ¶

func (v NullablePyTorchOptions) IsSet() bool

func (NullablePyTorchOptions) MarshalJSON ¶

func (v NullablePyTorchOptions) MarshalJSON() ([]byte, error)

func (*NullablePyTorchOptions) Set ¶

func (*NullablePyTorchOptions) UnmarshalJSON ¶

func (v *NullablePyTorchOptions) UnmarshalJSON(src []byte) error

func (*NullablePyTorchOptions) Unset ¶

func (v *NullablePyTorchOptions) Unset()

type NullablePyTorchOptionsAllOf ¶

type NullablePyTorchOptionsAllOf struct {
	// contains filtered or unexported fields
}

func (NullablePyTorchOptionsAllOf) Get ¶

func (NullablePyTorchOptionsAllOf) IsSet ¶

func (NullablePyTorchOptionsAllOf) MarshalJSON ¶

func (v NullablePyTorchOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullablePyTorchOptionsAllOf) Set ¶

func (*NullablePyTorchOptionsAllOf) UnmarshalJSON ¶

func (v *NullablePyTorchOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullablePyTorchOptionsAllOf) Unset ¶

func (v *NullablePyTorchOptionsAllOf) Unset()

type NullablePythonOptions ¶

type NullablePythonOptions struct {
	// contains filtered or unexported fields
}

func NewNullablePythonOptions ¶

func NewNullablePythonOptions(val *PythonOptions) *NullablePythonOptions

func (NullablePythonOptions) Get ¶

func (NullablePythonOptions) IsSet ¶

func (v NullablePythonOptions) IsSet() bool

func (NullablePythonOptions) MarshalJSON ¶

func (v NullablePythonOptions) MarshalJSON() ([]byte, error)

func (*NullablePythonOptions) Set ¶

func (v *NullablePythonOptions) Set(val *PythonOptions)

func (*NullablePythonOptions) UnmarshalJSON ¶

func (v *NullablePythonOptions) UnmarshalJSON(src []byte) error

func (*NullablePythonOptions) Unset ¶

func (v *NullablePythonOptions) Unset()

type NullablePythonOptionsAllOf ¶

type NullablePythonOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullablePythonOptionsAllOf ¶

func NewNullablePythonOptionsAllOf(val *PythonOptionsAllOf) *NullablePythonOptionsAllOf

func (NullablePythonOptionsAllOf) Get ¶

func (NullablePythonOptionsAllOf) IsSet ¶

func (v NullablePythonOptionsAllOf) IsSet() bool

func (NullablePythonOptionsAllOf) MarshalJSON ¶

func (v NullablePythonOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullablePythonOptionsAllOf) Set ¶

func (*NullablePythonOptionsAllOf) UnmarshalJSON ¶

func (v *NullablePythonOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullablePythonOptionsAllOf) Unset ¶

func (v *NullablePythonOptionsAllOf) Unset()

type NullableQuota ¶

type NullableQuota struct {
	// contains filtered or unexported fields
}

func NewNullableQuota ¶

func NewNullableQuota(val *Quota) *NullableQuota

func (NullableQuota) Get ¶

func (v NullableQuota) Get() *Quota

func (NullableQuota) IsSet ¶

func (v NullableQuota) IsSet() bool

func (NullableQuota) MarshalJSON ¶

func (v NullableQuota) MarshalJSON() ([]byte, error)

func (*NullableQuota) Set ¶

func (v *NullableQuota) Set(val *Quota)

func (*NullableQuota) UnmarshalJSON ¶

func (v *NullableQuota) UnmarshalJSON(src []byte) error

func (*NullableQuota) Unset ¶

func (v *NullableQuota) Unset()

type NullableQuotaDetails ¶

type NullableQuotaDetails struct {
	// contains filtered or unexported fields
}

func NewNullableQuotaDetails ¶

func NewNullableQuotaDetails(val *QuotaDetails) *NullableQuotaDetails

func (NullableQuotaDetails) Get ¶

func (NullableQuotaDetails) IsSet ¶

func (v NullableQuotaDetails) IsSet() bool

func (NullableQuotaDetails) MarshalJSON ¶

func (v NullableQuotaDetails) MarshalJSON() ([]byte, error)

func (*NullableQuotaDetails) Set ¶

func (v *NullableQuotaDetails) Set(val *QuotaDetails)

func (*NullableQuotaDetails) UnmarshalJSON ¶

func (v *NullableQuotaDetails) UnmarshalJSON(src []byte) error

func (*NullableQuotaDetails) Unset ¶

func (v *NullableQuotaDetails) Unset()

type NullableQuotaDetailsAllOf ¶

type NullableQuotaDetailsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableQuotaDetailsAllOf ¶

func NewNullableQuotaDetailsAllOf(val *QuotaDetailsAllOf) *NullableQuotaDetailsAllOf

func (NullableQuotaDetailsAllOf) Get ¶

func (NullableQuotaDetailsAllOf) IsSet ¶

func (v NullableQuotaDetailsAllOf) IsSet() bool

func (NullableQuotaDetailsAllOf) MarshalJSON ¶

func (v NullableQuotaDetailsAllOf) MarshalJSON() ([]byte, error)

func (*NullableQuotaDetailsAllOf) Set ¶

func (*NullableQuotaDetailsAllOf) UnmarshalJSON ¶

func (v *NullableQuotaDetailsAllOf) UnmarshalJSON(src []byte) error

func (*NullableQuotaDetailsAllOf) Unset ¶

func (v *NullableQuotaDetailsAllOf) Unset()

type NullableRandomForest ¶ added in v1.10.3

type NullableRandomForest struct {
	// contains filtered or unexported fields
}

func NewNullableRandomForest ¶ added in v1.10.3

func NewNullableRandomForest(val *RandomForest) *NullableRandomForest

func (NullableRandomForest) Get ¶ added in v1.10.3

func (NullableRandomForest) IsSet ¶ added in v1.10.3

func (v NullableRandomForest) IsSet() bool

func (NullableRandomForest) MarshalJSON ¶ added in v1.10.3

func (v NullableRandomForest) MarshalJSON() ([]byte, error)

func (*NullableRandomForest) Set ¶ added in v1.10.3

func (v *NullableRandomForest) Set(val *RandomForest)

func (*NullableRandomForest) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableRandomForest) UnmarshalJSON(src []byte) error

func (*NullableRandomForest) Unset ¶ added in v1.10.3

func (v *NullableRandomForest) Unset()

type NullableRayOptions ¶ added in v1.10.3

type NullableRayOptions struct {
	// contains filtered or unexported fields
}

func NewNullableRayOptions ¶ added in v1.10.3

func NewNullableRayOptions(val *RayOptions) *NullableRayOptions

func (NullableRayOptions) Get ¶ added in v1.10.3

func (v NullableRayOptions) Get() *RayOptions

func (NullableRayOptions) IsSet ¶ added in v1.10.3

func (v NullableRayOptions) IsSet() bool

func (NullableRayOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableRayOptions) MarshalJSON() ([]byte, error)

func (*NullableRayOptions) Set ¶ added in v1.10.3

func (v *NullableRayOptions) Set(val *RayOptions)

func (*NullableRayOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableRayOptions) UnmarshalJSON(src []byte) error

func (*NullableRayOptions) Unset ¶ added in v1.10.3

func (v *NullableRayOptions) Unset()

type NullableRayOptionsAllOf ¶ added in v1.10.3

type NullableRayOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableRayOptionsAllOf ¶ added in v1.10.3

func NewNullableRayOptionsAllOf(val *RayOptionsAllOf) *NullableRayOptionsAllOf

func (NullableRayOptionsAllOf) Get ¶ added in v1.10.3

func (NullableRayOptionsAllOf) IsSet ¶ added in v1.10.3

func (v NullableRayOptionsAllOf) IsSet() bool

func (NullableRayOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableRayOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableRayOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableRayOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableRayOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableRayOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableRayOptionsAllOf) Unset()

type NullableReaction ¶ added in v1.10.3

type NullableReaction struct {
	// contains filtered or unexported fields
}

func NewNullableReaction ¶ added in v1.10.3

func NewNullableReaction(val *Reaction) *NullableReaction

func (NullableReaction) Get ¶ added in v1.10.3

func (v NullableReaction) Get() *Reaction

func (NullableReaction) IsSet ¶ added in v1.10.3

func (v NullableReaction) IsSet() bool

func (NullableReaction) MarshalJSON ¶ added in v1.10.3

func (v NullableReaction) MarshalJSON() ([]byte, error)

func (*NullableReaction) Set ¶ added in v1.10.3

func (v *NullableReaction) Set(val *Reaction)

func (*NullableReaction) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableReaction) UnmarshalJSON(src []byte) error

func (*NullableReaction) Unset ¶ added in v1.10.3

func (v *NullableReaction) Unset()

type NullableReactionCount ¶ added in v1.10.3

type NullableReactionCount struct {
	// contains filtered or unexported fields
}

func NewNullableReactionCount ¶ added in v1.10.3

func NewNullableReactionCount(val *ReactionCount) *NullableReactionCount

func (NullableReactionCount) Get ¶ added in v1.10.3

func (NullableReactionCount) IsSet ¶ added in v1.10.3

func (v NullableReactionCount) IsSet() bool

func (NullableReactionCount) MarshalJSON ¶ added in v1.10.3

func (v NullableReactionCount) MarshalJSON() ([]byte, error)

func (*NullableReactionCount) Set ¶ added in v1.10.3

func (v *NullableReactionCount) Set(val *ReactionCount)

func (*NullableReactionCount) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableReactionCount) UnmarshalJSON(src []byte) error

func (*NullableReactionCount) Unset ¶ added in v1.10.3

func (v *NullableReactionCount) Unset()

type NullableReadFileParams ¶ added in v1.10.3

type NullableReadFileParams struct {
	// contains filtered or unexported fields
}

func NewNullableReadFileParams ¶ added in v1.10.3

func NewNullableReadFileParams(val *ReadFileParams) *NullableReadFileParams

func (NullableReadFileParams) Get ¶ added in v1.10.3

func (NullableReadFileParams) IsSet ¶ added in v1.10.3

func (v NullableReadFileParams) IsSet() bool

func (NullableReadFileParams) MarshalJSON ¶ added in v1.10.3

func (v NullableReadFileParams) MarshalJSON() ([]byte, error)

func (*NullableReadFileParams) Set ¶ added in v1.10.3

func (*NullableReadFileParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableReadFileParams) UnmarshalJSON(src []byte) error

func (*NullableReadFileParams) Unset ¶ added in v1.10.3

func (v *NullableReadFileParams) Unset()

type NullableReadSQLParams ¶ added in v1.10.3

type NullableReadSQLParams struct {
	// contains filtered or unexported fields
}

func NewNullableReadSQLParams ¶ added in v1.10.3

func NewNullableReadSQLParams(val *ReadSQLParams) *NullableReadSQLParams

func (NullableReadSQLParams) Get ¶ added in v1.10.3

func (NullableReadSQLParams) IsSet ¶ added in v1.10.3

func (v NullableReadSQLParams) IsSet() bool

func (NullableReadSQLParams) MarshalJSON ¶ added in v1.10.3

func (v NullableReadSQLParams) MarshalJSON() ([]byte, error)

func (*NullableReadSQLParams) Set ¶ added in v1.10.3

func (v *NullableReadSQLParams) Set(val *ReadSQLParams)

func (*NullableReadSQLParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableReadSQLParams) UnmarshalJSON(src []byte) error

func (*NullableReadSQLParams) Unset ¶ added in v1.10.3

func (v *NullableReadSQLParams) Unset()

type NullableReadTask ¶ added in v1.10.3

type NullableReadTask struct {
	// contains filtered or unexported fields
}

func NewNullableReadTask ¶ added in v1.10.3

func NewNullableReadTask(val *ReadTask) *NullableReadTask

func (NullableReadTask) Get ¶ added in v1.10.3

func (v NullableReadTask) Get() *ReadTask

func (NullableReadTask) IsSet ¶ added in v1.10.3

func (v NullableReadTask) IsSet() bool

func (NullableReadTask) MarshalJSON ¶ added in v1.10.3

func (v NullableReadTask) MarshalJSON() ([]byte, error)

func (*NullableReadTask) Set ¶ added in v1.10.3

func (v *NullableReadTask) Set(val *ReadTask)

func (*NullableReadTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableReadTask) UnmarshalJSON(src []byte) error

func (*NullableReadTask) Unset ¶ added in v1.10.3

func (v *NullableReadTask) Unset()

type NullableReadTaskParameters ¶ added in v1.10.3

type NullableReadTaskParameters struct {
	// contains filtered or unexported fields
}

func NewNullableReadTaskParameters ¶ added in v1.10.3

func NewNullableReadTaskParameters(val *ReadTaskParameters) *NullableReadTaskParameters

func (NullableReadTaskParameters) Get ¶ added in v1.10.3

func (NullableReadTaskParameters) IsSet ¶ added in v1.10.3

func (v NullableReadTaskParameters) IsSet() bool

func (NullableReadTaskParameters) MarshalJSON ¶ added in v1.10.3

func (v NullableReadTaskParameters) MarshalJSON() ([]byte, error)

func (*NullableReadTaskParameters) Set ¶ added in v1.10.3

func (*NullableReadTaskParameters) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableReadTaskParameters) UnmarshalJSON(src []byte) error

func (*NullableReadTaskParameters) Unset ¶ added in v1.10.3

func (v *NullableReadTaskParameters) Unset()

type NullableRenameParams ¶ added in v1.10.3

type NullableRenameParams struct {
	// contains filtered or unexported fields
}

func NewNullableRenameParams ¶ added in v1.10.3

func NewNullableRenameParams(val *RenameParams) *NullableRenameParams

func (NullableRenameParams) Get ¶ added in v1.10.3

func (NullableRenameParams) IsSet ¶ added in v1.10.3

func (v NullableRenameParams) IsSet() bool

func (NullableRenameParams) MarshalJSON ¶ added in v1.10.3

func (v NullableRenameParams) MarshalJSON() ([]byte, error)

func (*NullableRenameParams) Set ¶ added in v1.10.3

func (v *NullableRenameParams) Set(val *RenameParams)

func (*NullableRenameParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableRenameParams) UnmarshalJSON(src []byte) error

func (*NullableRenameParams) Unset ¶ added in v1.10.3

func (v *NullableRenameParams) Unset()

type NullableRenameTask ¶ added in v1.10.3

type NullableRenameTask struct {
	// contains filtered or unexported fields
}

func NewNullableRenameTask ¶ added in v1.10.3

func NewNullableRenameTask(val *RenameTask) *NullableRenameTask

func (NullableRenameTask) Get ¶ added in v1.10.3

func (v NullableRenameTask) Get() *RenameTask

func (NullableRenameTask) IsSet ¶ added in v1.10.3

func (v NullableRenameTask) IsSet() bool

func (NullableRenameTask) MarshalJSON ¶ added in v1.10.3

func (v NullableRenameTask) MarshalJSON() ([]byte, error)

func (*NullableRenameTask) Set ¶ added in v1.10.3

func (v *NullableRenameTask) Set(val *RenameTask)

func (*NullableRenameTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableRenameTask) UnmarshalJSON(src []byte) error

func (*NullableRenameTask) Unset ¶ added in v1.10.3

func (v *NullableRenameTask) Unset()

type NullableRequest ¶ added in v1.10.3

type NullableRequest struct {
	// contains filtered or unexported fields
}

func NewNullableRequest ¶ added in v1.10.3

func NewNullableRequest(val *Request) *NullableRequest

func (NullableRequest) Get ¶ added in v1.10.3

func (v NullableRequest) Get() *Request

func (NullableRequest) IsSet ¶ added in v1.10.3

func (v NullableRequest) IsSet() bool

func (NullableRequest) MarshalJSON ¶ added in v1.10.3

func (v NullableRequest) MarshalJSON() ([]byte, error)

func (*NullableRequest) Set ¶ added in v1.10.3

func (v *NullableRequest) Set(val *Request)

func (*NullableRequest) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableRequest) UnmarshalJSON(src []byte) error

func (*NullableRequest) Unset ¶ added in v1.10.3

func (v *NullableRequest) Unset()

type NullableResource ¶ added in v1.10.3

type NullableResource struct {
	// contains filtered or unexported fields
}

func NewNullableResource ¶ added in v1.10.3

func NewNullableResource(val *Resource) *NullableResource

func (NullableResource) Get ¶ added in v1.10.3

func (v NullableResource) Get() *Resource

func (NullableResource) IsSet ¶ added in v1.10.3

func (v NullableResource) IsSet() bool

func (NullableResource) MarshalJSON ¶ added in v1.10.3

func (v NullableResource) MarshalJSON() ([]byte, error)

func (*NullableResource) Set ¶ added in v1.10.3

func (v *NullableResource) Set(val *Resource)

func (*NullableResource) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableResource) UnmarshalJSON(src []byte) error

func (*NullableResource) Unset ¶ added in v1.10.3

func (v *NullableResource) Unset()

type NullableResource1 ¶ added in v1.10.3

type NullableResource1 struct {
	// contains filtered or unexported fields
}

func NewNullableResource1 ¶ added in v1.10.3

func NewNullableResource1(val *Resource1) *NullableResource1

func (NullableResource1) Get ¶ added in v1.10.3

func (v NullableResource1) Get() *Resource1

func (NullableResource1) IsSet ¶ added in v1.10.3

func (v NullableResource1) IsSet() bool

func (NullableResource1) MarshalJSON ¶ added in v1.10.3

func (v NullableResource1) MarshalJSON() ([]byte, error)

func (*NullableResource1) Set ¶ added in v1.10.3

func (v *NullableResource1) Set(val *Resource1)

func (*NullableResource1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableResource1) UnmarshalJSON(src []byte) error

func (*NullableResource1) Unset ¶ added in v1.10.3

func (v *NullableResource1) Unset()

type NullableResourceType ¶ added in v1.10.3

type NullableResourceType struct {
	// contains filtered or unexported fields
}

func NewNullableResourceType ¶ added in v1.10.3

func NewNullableResourceType(val *ResourceType) *NullableResourceType

func (NullableResourceType) Get ¶ added in v1.10.3

func (NullableResourceType) IsSet ¶ added in v1.10.3

func (v NullableResourceType) IsSet() bool

func (NullableResourceType) MarshalJSON ¶ added in v1.10.3

func (v NullableResourceType) MarshalJSON() ([]byte, error)

func (*NullableResourceType) Set ¶ added in v1.10.3

func (v *NullableResourceType) Set(val *ResourceType)

func (*NullableResourceType) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableResourceType) UnmarshalJSON(src []byte) error

func (*NullableResourceType) Unset ¶ added in v1.10.3

func (v *NullableResourceType) Unset()

type NullableResponseGetUserFollowingUsersUserIdFollowingGetInner ¶ added in v1.10.3

type NullableResponseGetUserFollowingUsersUserIdFollowingGetInner struct {
	// contains filtered or unexported fields
}

func (NullableResponseGetUserFollowingUsersUserIdFollowingGetInner) Get ¶ added in v1.10.3

func (NullableResponseGetUserFollowingUsersUserIdFollowingGetInner) IsSet ¶ added in v1.10.3

func (NullableResponseGetUserFollowingUsersUserIdFollowingGetInner) MarshalJSON ¶ added in v1.10.3

func (*NullableResponseGetUserFollowingUsersUserIdFollowingGetInner) Set ¶ added in v1.10.3

func (*NullableResponseGetUserFollowingUsersUserIdFollowingGetInner) UnmarshalJSON ¶ added in v1.10.3

func (*NullableResponseGetUserFollowingUsersUserIdFollowingGetInner) Unset ¶ added in v1.10.3

type NullableResult ¶

type NullableResult struct {
	// contains filtered or unexported fields
}

func NewNullableResult ¶

func NewNullableResult(val *Result) *NullableResult

func (NullableResult) Get ¶

func (v NullableResult) Get() *Result

func (NullableResult) IsSet ¶

func (v NullableResult) IsSet() bool

func (NullableResult) MarshalJSON ¶

func (v NullableResult) MarshalJSON() ([]byte, error)

func (*NullableResult) Set ¶

func (v *NullableResult) Set(val *Result)

func (*NullableResult) UnmarshalJSON ¶

func (v *NullableResult) UnmarshalJSON(src []byte) error

func (*NullableResult) Unset ¶

func (v *NullableResult) Unset()

type NullableRight ¶ added in v1.10.4

type NullableRight struct {
	// contains filtered or unexported fields
}

func NewNullableRight ¶ added in v1.10.4

func NewNullableRight(val *Right) *NullableRight

func (NullableRight) Get ¶ added in v1.10.4

func (v NullableRight) Get() *Right

func (NullableRight) IsSet ¶ added in v1.10.4

func (v NullableRight) IsSet() bool

func (NullableRight) MarshalJSON ¶ added in v1.10.4

func (v NullableRight) MarshalJSON() ([]byte, error)

func (*NullableRight) Set ¶ added in v1.10.4

func (v *NullableRight) Set(val *Right)

func (*NullableRight) UnmarshalJSON ¶ added in v1.10.4

func (v *NullableRight) UnmarshalJSON(src []byte) error

func (*NullableRight) Unset ¶ added in v1.10.4

func (v *NullableRight) Unset()

type NullableRole ¶

type NullableRole struct {
	// contains filtered or unexported fields
}

func NewNullableRole ¶

func NewNullableRole(val *Role) *NullableRole

func (NullableRole) Get ¶

func (v NullableRole) Get() *Role

func (NullableRole) IsSet ¶

func (v NullableRole) IsSet() bool

func (NullableRole) MarshalJSON ¶

func (v NullableRole) MarshalJSON() ([]byte, error)

func (*NullableRole) Set ¶

func (v *NullableRole) Set(val *Role)

func (*NullableRole) UnmarshalJSON ¶

func (v *NullableRole) UnmarshalJSON(src []byte) error

func (*NullableRole) Unset ¶

func (v *NullableRole) Unset()

type NullableRoleAndAssignment ¶

type NullableRoleAndAssignment struct {
	// contains filtered or unexported fields
}

func NewNullableRoleAndAssignment ¶

func NewNullableRoleAndAssignment(val *RoleAndAssignment) *NullableRoleAndAssignment

func (NullableRoleAndAssignment) Get ¶

func (NullableRoleAndAssignment) IsSet ¶

func (v NullableRoleAndAssignment) IsSet() bool

func (NullableRoleAndAssignment) MarshalJSON ¶

func (v NullableRoleAndAssignment) MarshalJSON() ([]byte, error)

func (*NullableRoleAndAssignment) Set ¶

func (*NullableRoleAndAssignment) UnmarshalJSON ¶

func (v *NullableRoleAndAssignment) UnmarshalJSON(src []byte) error

func (*NullableRoleAndAssignment) Unset ¶

func (v *NullableRoleAndAssignment) Unset()

type NullableRoleAndPrincipalAndAssignment ¶

type NullableRoleAndPrincipalAndAssignment struct {
	// contains filtered or unexported fields
}

func (NullableRoleAndPrincipalAndAssignment) Get ¶

func (NullableRoleAndPrincipalAndAssignment) IsSet ¶

func (NullableRoleAndPrincipalAndAssignment) MarshalJSON ¶

func (v NullableRoleAndPrincipalAndAssignment) MarshalJSON() ([]byte, error)

func (*NullableRoleAndPrincipalAndAssignment) Set ¶

func (*NullableRoleAndPrincipalAndAssignment) UnmarshalJSON ¶

func (v *NullableRoleAndPrincipalAndAssignment) UnmarshalJSON(src []byte) error

func (*NullableRoleAndPrincipalAndAssignment) Unset ¶

type NullableRoleAssignment ¶

type NullableRoleAssignment struct {
	// contains filtered or unexported fields
}

func NewNullableRoleAssignment ¶

func NewNullableRoleAssignment(val *RoleAssignment) *NullableRoleAssignment

func (NullableRoleAssignment) Get ¶

func (NullableRoleAssignment) IsSet ¶

func (v NullableRoleAssignment) IsSet() bool

func (NullableRoleAssignment) MarshalJSON ¶

func (v NullableRoleAssignment) MarshalJSON() ([]byte, error)

func (*NullableRoleAssignment) Set ¶

func (*NullableRoleAssignment) UnmarshalJSON ¶

func (v *NullableRoleAssignment) UnmarshalJSON(src []byte) error

func (*NullableRoleAssignment) Unset ¶

func (v *NullableRoleAssignment) Unset()

type NullableRunOnceSchedule ¶

type NullableRunOnceSchedule struct {
	// contains filtered or unexported fields
}

func NewNullableRunOnceSchedule ¶

func NewNullableRunOnceSchedule(val *RunOnceSchedule) *NullableRunOnceSchedule

func (NullableRunOnceSchedule) Get ¶

func (NullableRunOnceSchedule) IsSet ¶

func (v NullableRunOnceSchedule) IsSet() bool

func (NullableRunOnceSchedule) MarshalJSON ¶

func (v NullableRunOnceSchedule) MarshalJSON() ([]byte, error)

func (*NullableRunOnceSchedule) Set ¶

func (*NullableRunOnceSchedule) UnmarshalJSON ¶

func (v *NullableRunOnceSchedule) UnmarshalJSON(src []byte) error

func (*NullableRunOnceSchedule) Unset ¶

func (v *NullableRunOnceSchedule) Unset()

type NullableRunOnceScheduleAllOf ¶

type NullableRunOnceScheduleAllOf struct {
	// contains filtered or unexported fields
}

func (NullableRunOnceScheduleAllOf) Get ¶

func (NullableRunOnceScheduleAllOf) IsSet ¶

func (NullableRunOnceScheduleAllOf) MarshalJSON ¶

func (v NullableRunOnceScheduleAllOf) MarshalJSON() ([]byte, error)

func (*NullableRunOnceScheduleAllOf) Set ¶

func (*NullableRunOnceScheduleAllOf) UnmarshalJSON ¶

func (v *NullableRunOnceScheduleAllOf) UnmarshalJSON(src []byte) error

func (*NullableRunOnceScheduleAllOf) Unset ¶

func (v *NullableRunOnceScheduleAllOf) Unset()

type NullableRunStats ¶

type NullableRunStats struct {
	// contains filtered or unexported fields
}

func NewNullableRunStats ¶

func NewNullableRunStats(val *RunStats) *NullableRunStats

func (NullableRunStats) Get ¶

func (v NullableRunStats) Get() *RunStats

func (NullableRunStats) IsSet ¶

func (v NullableRunStats) IsSet() bool

func (NullableRunStats) MarshalJSON ¶

func (v NullableRunStats) MarshalJSON() ([]byte, error)

func (*NullableRunStats) Set ¶

func (v *NullableRunStats) Set(val *RunStats)

func (*NullableRunStats) UnmarshalJSON ¶

func (v *NullableRunStats) UnmarshalJSON(src []byte) error

func (*NullableRunStats) Unset ¶

func (v *NullableRunStats) Unset()

type NullableRunWithJob ¶

type NullableRunWithJob struct {
	// contains filtered or unexported fields
}

func NewNullableRunWithJob ¶

func NewNullableRunWithJob(val *RunWithJob) *NullableRunWithJob

func (NullableRunWithJob) Get ¶

func (v NullableRunWithJob) Get() *RunWithJob

func (NullableRunWithJob) IsSet ¶

func (v NullableRunWithJob) IsSet() bool

func (NullableRunWithJob) MarshalJSON ¶

func (v NullableRunWithJob) MarshalJSON() ([]byte, error)

func (*NullableRunWithJob) Set ¶

func (v *NullableRunWithJob) Set(val *RunWithJob)

func (*NullableRunWithJob) UnmarshalJSON ¶

func (v *NullableRunWithJob) UnmarshalJSON(src []byte) error

func (*NullableRunWithJob) Unset ¶

func (v *NullableRunWithJob) Unset()

type NullableRuntime ¶

type NullableRuntime struct {
	// contains filtered or unexported fields
}

func NewNullableRuntime ¶

func NewNullableRuntime(val *Runtime) *NullableRuntime

func (NullableRuntime) Get ¶

func (v NullableRuntime) Get() *Runtime

func (NullableRuntime) IsSet ¶

func (v NullableRuntime) IsSet() bool

func (NullableRuntime) MarshalJSON ¶

func (v NullableRuntime) MarshalJSON() ([]byte, error)

func (*NullableRuntime) Set ¶

func (v *NullableRuntime) Set(val *Runtime)

func (*NullableRuntime) UnmarshalJSON ¶

func (v *NullableRuntime) UnmarshalJSON(src []byte) error

func (*NullableRuntime) Unset ¶

func (v *NullableRuntime) Unset()

type NullableRuntimeVersion ¶

type NullableRuntimeVersion struct {
	// contains filtered or unexported fields
}

func NewNullableRuntimeVersion ¶

func NewNullableRuntimeVersion(val *RuntimeVersion) *NullableRuntimeVersion

func (NullableRuntimeVersion) Get ¶

func (NullableRuntimeVersion) IsSet ¶

func (v NullableRuntimeVersion) IsSet() bool

func (NullableRuntimeVersion) MarshalJSON ¶

func (v NullableRuntimeVersion) MarshalJSON() ([]byte, error)

func (*NullableRuntimeVersion) Set ¶

func (*NullableRuntimeVersion) UnmarshalJSON ¶

func (v *NullableRuntimeVersion) UnmarshalJSON(src []byte) error

func (*NullableRuntimeVersion) Unset ¶

func (v *NullableRuntimeVersion) Unset()

type NullableS3Connector ¶ added in v1.10.3

type NullableS3Connector struct {
	// contains filtered or unexported fields
}

func NewNullableS3Connector ¶ added in v1.10.3

func NewNullableS3Connector(val *S3Connector) *NullableS3Connector

func (NullableS3Connector) Get ¶ added in v1.10.3

func (NullableS3Connector) IsSet ¶ added in v1.10.3

func (v NullableS3Connector) IsSet() bool

func (NullableS3Connector) MarshalJSON ¶ added in v1.10.3

func (v NullableS3Connector) MarshalJSON() ([]byte, error)

func (*NullableS3Connector) Set ¶ added in v1.10.3

func (v *NullableS3Connector) Set(val *S3Connector)

func (*NullableS3Connector) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableS3Connector) UnmarshalJSON(src []byte) error

func (*NullableS3Connector) Unset ¶ added in v1.10.3

func (v *NullableS3Connector) Unset()

type NullableS3ConnectorOptions ¶ added in v1.10.3

type NullableS3ConnectorOptions struct {
	// contains filtered or unexported fields
}

func NewNullableS3ConnectorOptions ¶ added in v1.10.3

func NewNullableS3ConnectorOptions(val *S3ConnectorOptions) *NullableS3ConnectorOptions

func (NullableS3ConnectorOptions) Get ¶ added in v1.10.3

func (NullableS3ConnectorOptions) IsSet ¶ added in v1.10.3

func (v NullableS3ConnectorOptions) IsSet() bool

func (NullableS3ConnectorOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableS3ConnectorOptions) MarshalJSON() ([]byte, error)

func (*NullableS3ConnectorOptions) Set ¶ added in v1.10.3

func (*NullableS3ConnectorOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableS3ConnectorOptions) UnmarshalJSON(src []byte) error

func (*NullableS3ConnectorOptions) Unset ¶ added in v1.10.3

func (v *NullableS3ConnectorOptions) Unset()

type NullableS3Uri ¶ added in v1.10.3

type NullableS3Uri struct {
	// contains filtered or unexported fields
}

func NewNullableS3Uri ¶ added in v1.10.3

func NewNullableS3Uri(val *S3Uri) *NullableS3Uri

func (NullableS3Uri) Get ¶ added in v1.10.3

func (v NullableS3Uri) Get() *S3Uri

func (NullableS3Uri) IsSet ¶ added in v1.10.3

func (v NullableS3Uri) IsSet() bool

func (NullableS3Uri) MarshalJSON ¶ added in v1.10.3

func (v NullableS3Uri) MarshalJSON() ([]byte, error)

func (*NullableS3Uri) Set ¶ added in v1.10.3

func (v *NullableS3Uri) Set(val *S3Uri)

func (*NullableS3Uri) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableS3Uri) UnmarshalJSON(src []byte) error

func (*NullableS3Uri) Unset ¶ added in v1.10.3

func (v *NullableS3Uri) Unset()

type NullableS3UriAllOf ¶ added in v1.10.3

type NullableS3UriAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableS3UriAllOf ¶ added in v1.10.3

func NewNullableS3UriAllOf(val *S3UriAllOf) *NullableS3UriAllOf

func (NullableS3UriAllOf) Get ¶ added in v1.10.3

func (v NullableS3UriAllOf) Get() *S3UriAllOf

func (NullableS3UriAllOf) IsSet ¶ added in v1.10.3

func (v NullableS3UriAllOf) IsSet() bool

func (NullableS3UriAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableS3UriAllOf) MarshalJSON() ([]byte, error)

func (*NullableS3UriAllOf) Set ¶ added in v1.10.3

func (v *NullableS3UriAllOf) Set(val *S3UriAllOf)

func (*NullableS3UriAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableS3UriAllOf) UnmarshalJSON(src []byte) error

func (*NullableS3UriAllOf) Unset ¶ added in v1.10.3

func (v *NullableS3UriAllOf) Unset()

type NullableSASOptions ¶ added in v1.10.3

type NullableSASOptions struct {
	// contains filtered or unexported fields
}

func NewNullableSASOptions ¶ added in v1.10.3

func NewNullableSASOptions(val *SASOptions) *NullableSASOptions

func (NullableSASOptions) Get ¶ added in v1.10.3

func (v NullableSASOptions) Get() *SASOptions

func (NullableSASOptions) IsSet ¶ added in v1.10.3

func (v NullableSASOptions) IsSet() bool

func (NullableSASOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableSASOptions) MarshalJSON() ([]byte, error)

func (*NullableSASOptions) Set ¶ added in v1.10.3

func (v *NullableSASOptions) Set(val *SASOptions)

func (*NullableSASOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSASOptions) UnmarshalJSON(src []byte) error

func (*NullableSASOptions) Unset ¶ added in v1.10.3

func (v *NullableSASOptions) Unset()

type NullableSASOptionsAllOf ¶ added in v1.10.3

type NullableSASOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableSASOptionsAllOf ¶ added in v1.10.3

func NewNullableSASOptionsAllOf(val *SASOptionsAllOf) *NullableSASOptionsAllOf

func (NullableSASOptionsAllOf) Get ¶ added in v1.10.3

func (NullableSASOptionsAllOf) IsSet ¶ added in v1.10.3

func (v NullableSASOptionsAllOf) IsSet() bool

func (NullableSASOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableSASOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableSASOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableSASOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSASOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableSASOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableSASOptionsAllOf) Unset()

type NullableSQLConnector ¶ added in v1.10.3

type NullableSQLConnector struct {
	// contains filtered or unexported fields
}

func NewNullableSQLConnector ¶ added in v1.10.3

func NewNullableSQLConnector(val *SQLConnector) *NullableSQLConnector

func (NullableSQLConnector) Get ¶ added in v1.10.3

func (NullableSQLConnector) IsSet ¶ added in v1.10.3

func (v NullableSQLConnector) IsSet() bool

func (NullableSQLConnector) MarshalJSON ¶ added in v1.10.3

func (v NullableSQLConnector) MarshalJSON() ([]byte, error)

func (*NullableSQLConnector) Set ¶ added in v1.10.3

func (v *NullableSQLConnector) Set(val *SQLConnector)

func (*NullableSQLConnector) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSQLConnector) UnmarshalJSON(src []byte) error

func (*NullableSQLConnector) Unset ¶ added in v1.10.3

func (v *NullableSQLConnector) Unset()

type NullableSQLDataReader ¶ added in v1.10.3

type NullableSQLDataReader struct {
	// contains filtered or unexported fields
}

func NewNullableSQLDataReader ¶ added in v1.10.3

func NewNullableSQLDataReader(val *SQLDataReader) *NullableSQLDataReader

func (NullableSQLDataReader) Get ¶ added in v1.10.3

func (NullableSQLDataReader) IsSet ¶ added in v1.10.3

func (v NullableSQLDataReader) IsSet() bool

func (NullableSQLDataReader) MarshalJSON ¶ added in v1.10.3

func (v NullableSQLDataReader) MarshalJSON() ([]byte, error)

func (*NullableSQLDataReader) Set ¶ added in v1.10.3

func (v *NullableSQLDataReader) Set(val *SQLDataReader)

func (*NullableSQLDataReader) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSQLDataReader) UnmarshalJSON(src []byte) error

func (*NullableSQLDataReader) Unset ¶ added in v1.10.3

func (v *NullableSQLDataReader) Unset()

type NullableSQLDataWriter ¶ added in v1.10.3

type NullableSQLDataWriter struct {
	// contains filtered or unexported fields
}

func NewNullableSQLDataWriter ¶ added in v1.10.3

func NewNullableSQLDataWriter(val *SQLDataWriter) *NullableSQLDataWriter

func (NullableSQLDataWriter) Get ¶ added in v1.10.3

func (NullableSQLDataWriter) IsSet ¶ added in v1.10.3

func (v NullableSQLDataWriter) IsSet() bool

func (NullableSQLDataWriter) MarshalJSON ¶ added in v1.10.3

func (v NullableSQLDataWriter) MarshalJSON() ([]byte, error)

func (*NullableSQLDataWriter) Set ¶ added in v1.10.3

func (v *NullableSQLDataWriter) Set(val *SQLDataWriter)

func (*NullableSQLDataWriter) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSQLDataWriter) UnmarshalJSON(src []byte) error

func (*NullableSQLDataWriter) Unset ¶ added in v1.10.3

func (v *NullableSQLDataWriter) Unset()

type NullableSaveMode ¶ added in v1.10.3

type NullableSaveMode struct {
	// contains filtered or unexported fields
}

func NewNullableSaveMode ¶ added in v1.10.3

func NewNullableSaveMode(val *SaveMode) *NullableSaveMode

func (NullableSaveMode) Get ¶ added in v1.10.3

func (v NullableSaveMode) Get() *SaveMode

func (NullableSaveMode) IsSet ¶ added in v1.10.3

func (v NullableSaveMode) IsSet() bool

func (NullableSaveMode) MarshalJSON ¶ added in v1.10.3

func (v NullableSaveMode) MarshalJSON() ([]byte, error)

func (*NullableSaveMode) Set ¶ added in v1.10.3

func (v *NullableSaveMode) Set(val *SaveMode)

func (*NullableSaveMode) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSaveMode) UnmarshalJSON(src []byte) error

func (*NullableSaveMode) Unset ¶ added in v1.10.3

func (v *NullableSaveMode) Unset()

type NullableSaveModelParams ¶ added in v1.10.3

type NullableSaveModelParams struct {
	// contains filtered or unexported fields
}

func NewNullableSaveModelParams ¶ added in v1.10.3

func NewNullableSaveModelParams(val *SaveModelParams) *NullableSaveModelParams

func (NullableSaveModelParams) Get ¶ added in v1.10.3

func (NullableSaveModelParams) IsSet ¶ added in v1.10.3

func (v NullableSaveModelParams) IsSet() bool

func (NullableSaveModelParams) MarshalJSON ¶ added in v1.10.3

func (v NullableSaveModelParams) MarshalJSON() ([]byte, error)

func (*NullableSaveModelParams) Set ¶ added in v1.10.3

func (*NullableSaveModelParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSaveModelParams) UnmarshalJSON(src []byte) error

func (*NullableSaveModelParams) Unset ¶ added in v1.10.3

func (v *NullableSaveModelParams) Unset()

type NullableSchedule ¶

type NullableSchedule struct {
	// contains filtered or unexported fields
}

func NewNullableSchedule ¶

func NewNullableSchedule(val *Schedule) *NullableSchedule

func (NullableSchedule) Get ¶

func (v NullableSchedule) Get() *Schedule

func (NullableSchedule) IsSet ¶

func (v NullableSchedule) IsSet() bool

func (NullableSchedule) MarshalJSON ¶

func (v NullableSchedule) MarshalJSON() ([]byte, error)

func (*NullableSchedule) Set ¶

func (v *NullableSchedule) Set(val *Schedule)

func (*NullableSchedule) UnmarshalJSON ¶

func (v *NullableSchedule) UnmarshalJSON(src []byte) error

func (*NullableSchedule) Unset ¶

func (v *NullableSchedule) Unset()

type NullableScriptTask ¶

type NullableScriptTask struct {
	// contains filtered or unexported fields
}

func NewNullableScriptTask ¶

func NewNullableScriptTask(val *ScriptTask) *NullableScriptTask

func (NullableScriptTask) Get ¶

func (v NullableScriptTask) Get() *ScriptTask

func (NullableScriptTask) IsSet ¶

func (v NullableScriptTask) IsSet() bool

func (NullableScriptTask) MarshalJSON ¶

func (v NullableScriptTask) MarshalJSON() ([]byte, error)

func (*NullableScriptTask) Set ¶

func (v *NullableScriptTask) Set(val *ScriptTask)

func (*NullableScriptTask) UnmarshalJSON ¶

func (v *NullableScriptTask) UnmarshalJSON(src []byte) error

func (*NullableScriptTask) Unset ¶

func (v *NullableScriptTask) Unset()

type NullableScriptTaskAllOf ¶

type NullableScriptTaskAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableScriptTaskAllOf ¶

func NewNullableScriptTaskAllOf(val *ScriptTaskAllOf) *NullableScriptTaskAllOf

func (NullableScriptTaskAllOf) Get ¶

func (NullableScriptTaskAllOf) IsSet ¶

func (v NullableScriptTaskAllOf) IsSet() bool

func (NullableScriptTaskAllOf) MarshalJSON ¶

func (v NullableScriptTaskAllOf) MarshalJSON() ([]byte, error)

func (*NullableScriptTaskAllOf) Set ¶

func (*NullableScriptTaskAllOf) UnmarshalJSON ¶

func (v *NullableScriptTaskAllOf) UnmarshalJSON(src []byte) error

func (*NullableScriptTaskAllOf) Unset ¶

func (v *NullableScriptTaskAllOf) Unset()

type NullableSearchHistory ¶

type NullableSearchHistory struct {
	// contains filtered or unexported fields
}

func NewNullableSearchHistory ¶

func NewNullableSearchHistory(val *SearchHistory) *NullableSearchHistory

func (NullableSearchHistory) Get ¶

func (NullableSearchHistory) IsSet ¶

func (v NullableSearchHistory) IsSet() bool

func (NullableSearchHistory) MarshalJSON ¶

func (v NullableSearchHistory) MarshalJSON() ([]byte, error)

func (*NullableSearchHistory) Set ¶

func (v *NullableSearchHistory) Set(val *SearchHistory)

func (*NullableSearchHistory) UnmarshalJSON ¶

func (v *NullableSearchHistory) UnmarshalJSON(src []byte) error

func (*NullableSearchHistory) Unset ¶

func (v *NullableSearchHistory) Unset()

type NullableSecret ¶

type NullableSecret struct {
	// contains filtered or unexported fields
}

func NewNullableSecret ¶

func NewNullableSecret(val *Secret) *NullableSecret

func (NullableSecret) Get ¶

func (v NullableSecret) Get() *Secret

func (NullableSecret) IsSet ¶

func (v NullableSecret) IsSet() bool

func (NullableSecret) MarshalJSON ¶

func (v NullableSecret) MarshalJSON() ([]byte, error)

func (*NullableSecret) Set ¶

func (v *NullableSecret) Set(val *Secret)

func (*NullableSecret) UnmarshalJSON ¶

func (v *NullableSecret) UnmarshalJSON(src []byte) error

func (*NullableSecret) Unset ¶

func (v *NullableSecret) Unset()

type NullableSepaDetails ¶ added in v1.10.3

type NullableSepaDetails struct {
	// contains filtered or unexported fields
}

func NewNullableSepaDetails ¶ added in v1.10.3

func NewNullableSepaDetails(val *SepaDetails) *NullableSepaDetails

func (NullableSepaDetails) Get ¶ added in v1.10.3

func (NullableSepaDetails) IsSet ¶ added in v1.10.3

func (v NullableSepaDetails) IsSet() bool

func (NullableSepaDetails) MarshalJSON ¶ added in v1.10.3

func (v NullableSepaDetails) MarshalJSON() ([]byte, error)

func (*NullableSepaDetails) Set ¶ added in v1.10.3

func (v *NullableSepaDetails) Set(val *SepaDetails)

func (*NullableSepaDetails) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSepaDetails) UnmarshalJSON(src []byte) error

func (*NullableSepaDetails) Unset ¶ added in v1.10.3

func (v *NullableSepaDetails) Unset()

type NullableSepaDetailsAllOf ¶ added in v1.10.3

type NullableSepaDetailsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableSepaDetailsAllOf ¶ added in v1.10.3

func NewNullableSepaDetailsAllOf(val *SepaDetailsAllOf) *NullableSepaDetailsAllOf

func (NullableSepaDetailsAllOf) Get ¶ added in v1.10.3

func (NullableSepaDetailsAllOf) IsSet ¶ added in v1.10.3

func (v NullableSepaDetailsAllOf) IsSet() bool

func (NullableSepaDetailsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableSepaDetailsAllOf) MarshalJSON() ([]byte, error)

func (*NullableSepaDetailsAllOf) Set ¶ added in v1.10.3

func (*NullableSepaDetailsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSepaDetailsAllOf) UnmarshalJSON(src []byte) error

func (*NullableSepaDetailsAllOf) Unset ¶ added in v1.10.3

func (v *NullableSepaDetailsAllOf) Unset()

type NullableSepaPaymentMethod ¶

type NullableSepaPaymentMethod struct {
	// contains filtered or unexported fields
}

func NewNullableSepaPaymentMethod ¶

func NewNullableSepaPaymentMethod(val *SepaPaymentMethod) *NullableSepaPaymentMethod

func (NullableSepaPaymentMethod) Get ¶

func (NullableSepaPaymentMethod) IsSet ¶

func (v NullableSepaPaymentMethod) IsSet() bool

func (NullableSepaPaymentMethod) MarshalJSON ¶

func (v NullableSepaPaymentMethod) MarshalJSON() ([]byte, error)

func (*NullableSepaPaymentMethod) Set ¶

func (*NullableSepaPaymentMethod) UnmarshalJSON ¶

func (v *NullableSepaPaymentMethod) UnmarshalJSON(src []byte) error

func (*NullableSepaPaymentMethod) Unset ¶

func (v *NullableSepaPaymentMethod) Unset()

type NullableSepaPaymentMethodAllOf ¶

type NullableSepaPaymentMethodAllOf struct {
	// contains filtered or unexported fields
}

func (NullableSepaPaymentMethodAllOf) Get ¶

func (NullableSepaPaymentMethodAllOf) IsSet ¶

func (NullableSepaPaymentMethodAllOf) MarshalJSON ¶

func (v NullableSepaPaymentMethodAllOf) MarshalJSON() ([]byte, error)

func (*NullableSepaPaymentMethodAllOf) Set ¶

func (*NullableSepaPaymentMethodAllOf) UnmarshalJSON ¶

func (v *NullableSepaPaymentMethodAllOf) UnmarshalJSON(src []byte) error

func (*NullableSepaPaymentMethodAllOf) Unset ¶

func (v *NullableSepaPaymentMethodAllOf) Unset()

type NullableServices ¶ added in v1.10.3

type NullableServices struct {
	// contains filtered or unexported fields
}

func NewNullableServices ¶ added in v1.10.3

func NewNullableServices(val *Services) *NullableServices

func (NullableServices) Get ¶ added in v1.10.3

func (v NullableServices) Get() *Services

func (NullableServices) IsSet ¶ added in v1.10.3

func (v NullableServices) IsSet() bool

func (NullableServices) MarshalJSON ¶ added in v1.10.3

func (v NullableServices) MarshalJSON() ([]byte, error)

func (*NullableServices) Set ¶ added in v1.10.3

func (v *NullableServices) Set(val *Services)

func (*NullableServices) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableServices) UnmarshalJSON(src []byte) error

func (*NullableServices) Unset ¶ added in v1.10.3

func (v *NullableServices) Unset()

type NullableServicesRuntimes ¶ added in v1.10.3

type NullableServicesRuntimes struct {
	// contains filtered or unexported fields
}

func NewNullableServicesRuntimes ¶ added in v1.10.3

func NewNullableServicesRuntimes(val *ServicesRuntimes) *NullableServicesRuntimes

func (NullableServicesRuntimes) Get ¶ added in v1.10.3

func (NullableServicesRuntimes) IsSet ¶ added in v1.10.3

func (v NullableServicesRuntimes) IsSet() bool

func (NullableServicesRuntimes) MarshalJSON ¶ added in v1.10.3

func (v NullableServicesRuntimes) MarshalJSON() ([]byte, error)

func (*NullableServicesRuntimes) Set ¶ added in v1.10.3

func (*NullableServicesRuntimes) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableServicesRuntimes) UnmarshalJSON(src []byte) error

func (*NullableServicesRuntimes) Unset ¶ added in v1.10.3

func (v *NullableServicesRuntimes) Unset()

type NullableSession ¶ added in v1.10.3

type NullableSession struct {
	// contains filtered or unexported fields
}

func NewNullableSession ¶ added in v1.10.3

func NewNullableSession(val *Session) *NullableSession

func (NullableSession) Get ¶ added in v1.10.3

func (v NullableSession) Get() *Session

func (NullableSession) IsSet ¶ added in v1.10.3

func (v NullableSession) IsSet() bool

func (NullableSession) MarshalJSON ¶ added in v1.10.3

func (v NullableSession) MarshalJSON() ([]byte, error)

func (*NullableSession) Set ¶ added in v1.10.3

func (v *NullableSession) Set(val *Session)

func (*NullableSession) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSession) UnmarshalJSON(src []byte) error

func (*NullableSession) Unset ¶ added in v1.10.3

func (v *NullableSession) Unset()

type NullableSnowflakeOptions ¶ added in v1.10.3

type NullableSnowflakeOptions struct {
	// contains filtered or unexported fields
}

func NewNullableSnowflakeOptions ¶ added in v1.10.3

func NewNullableSnowflakeOptions(val *SnowflakeOptions) *NullableSnowflakeOptions

func (NullableSnowflakeOptions) Get ¶ added in v1.10.3

func (NullableSnowflakeOptions) IsSet ¶ added in v1.10.3

func (v NullableSnowflakeOptions) IsSet() bool

func (NullableSnowflakeOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableSnowflakeOptions) MarshalJSON() ([]byte, error)

func (*NullableSnowflakeOptions) Set ¶ added in v1.10.3

func (*NullableSnowflakeOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSnowflakeOptions) UnmarshalJSON(src []byte) error

func (*NullableSnowflakeOptions) Unset ¶ added in v1.10.3

func (v *NullableSnowflakeOptions) Unset()

type NullableSnowflakeOptionsAllOf ¶ added in v1.10.3

type NullableSnowflakeOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableSnowflakeOptionsAllOf ¶ added in v1.10.3

func NewNullableSnowflakeOptionsAllOf(val *SnowflakeOptionsAllOf) *NullableSnowflakeOptionsAllOf

func (NullableSnowflakeOptionsAllOf) Get ¶ added in v1.10.3

func (NullableSnowflakeOptionsAllOf) IsSet ¶ added in v1.10.3

func (NullableSnowflakeOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableSnowflakeOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableSnowflakeOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableSnowflakeOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSnowflakeOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableSnowflakeOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableSnowflakeOptionsAllOf) Unset()

type NullableSparkOptions ¶

type NullableSparkOptions struct {
	// contains filtered or unexported fields
}

func NewNullableSparkOptions ¶

func NewNullableSparkOptions(val *SparkOptions) *NullableSparkOptions

func (NullableSparkOptions) Get ¶

func (NullableSparkOptions) IsSet ¶

func (v NullableSparkOptions) IsSet() bool

func (NullableSparkOptions) MarshalJSON ¶

func (v NullableSparkOptions) MarshalJSON() ([]byte, error)

func (*NullableSparkOptions) Set ¶

func (v *NullableSparkOptions) Set(val *SparkOptions)

func (*NullableSparkOptions) UnmarshalJSON ¶

func (v *NullableSparkOptions) UnmarshalJSON(src []byte) error

func (*NullableSparkOptions) Unset ¶

func (v *NullableSparkOptions) Unset()

type NullableSparkOptionsAllOf ¶

type NullableSparkOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableSparkOptionsAllOf ¶

func NewNullableSparkOptionsAllOf(val *SparkOptionsAllOf) *NullableSparkOptionsAllOf

func (NullableSparkOptionsAllOf) Get ¶

func (NullableSparkOptionsAllOf) IsSet ¶

func (v NullableSparkOptionsAllOf) IsSet() bool

func (NullableSparkOptionsAllOf) MarshalJSON ¶

func (v NullableSparkOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableSparkOptionsAllOf) Set ¶

func (*NullableSparkOptionsAllOf) UnmarshalJSON ¶

func (v *NullableSparkOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableSparkOptionsAllOf) Unset ¶

func (v *NullableSparkOptionsAllOf) Unset()

type NullableStarburstOptions ¶ added in v1.10.3

type NullableStarburstOptions struct {
	// contains filtered or unexported fields
}

func NewNullableStarburstOptions ¶ added in v1.10.3

func NewNullableStarburstOptions(val *StarburstOptions) *NullableStarburstOptions

func (NullableStarburstOptions) Get ¶ added in v1.10.3

func (NullableStarburstOptions) IsSet ¶ added in v1.10.3

func (v NullableStarburstOptions) IsSet() bool

func (NullableStarburstOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableStarburstOptions) MarshalJSON() ([]byte, error)

func (*NullableStarburstOptions) Set ¶ added in v1.10.3

func (*NullableStarburstOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableStarburstOptions) UnmarshalJSON(src []byte) error

func (*NullableStarburstOptions) Unset ¶ added in v1.10.3

func (v *NullableStarburstOptions) Unset()

type NullableStarburstOptionsAllOf ¶ added in v1.10.3

type NullableStarburstOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableStarburstOptionsAllOf ¶ added in v1.10.3

func NewNullableStarburstOptionsAllOf(val *StarburstOptionsAllOf) *NullableStarburstOptionsAllOf

func (NullableStarburstOptionsAllOf) Get ¶ added in v1.10.3

func (NullableStarburstOptionsAllOf) IsSet ¶ added in v1.10.3

func (NullableStarburstOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableStarburstOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableStarburstOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableStarburstOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableStarburstOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableStarburstOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableStarburstOptionsAllOf) Unset()

type NullableStartTask ¶ added in v1.10.3

type NullableStartTask struct {
	// contains filtered or unexported fields
}

func NewNullableStartTask ¶ added in v1.10.3

func NewNullableStartTask(val *StartTask) *NullableStartTask

func (NullableStartTask) Get ¶ added in v1.10.3

func (v NullableStartTask) Get() *StartTask

func (NullableStartTask) IsSet ¶ added in v1.10.3

func (v NullableStartTask) IsSet() bool

func (NullableStartTask) MarshalJSON ¶ added in v1.10.3

func (v NullableStartTask) MarshalJSON() ([]byte, error)

func (*NullableStartTask) Set ¶ added in v1.10.3

func (v *NullableStartTask) Set(val *StartTask)

func (*NullableStartTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableStartTask) UnmarshalJSON(src []byte) error

func (*NullableStartTask) Unset ¶ added in v1.10.3

func (v *NullableStartTask) Unset()

type NullableStartTaskAllOf ¶ added in v1.10.3

type NullableStartTaskAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableStartTaskAllOf ¶ added in v1.10.3

func NewNullableStartTaskAllOf(val *StartTaskAllOf) *NullableStartTaskAllOf

func (NullableStartTaskAllOf) Get ¶ added in v1.10.3

func (NullableStartTaskAllOf) IsSet ¶ added in v1.10.3

func (v NullableStartTaskAllOf) IsSet() bool

func (NullableStartTaskAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableStartTaskAllOf) MarshalJSON() ([]byte, error)

func (*NullableStartTaskAllOf) Set ¶ added in v1.10.3

func (*NullableStartTaskAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableStartTaskAllOf) UnmarshalJSON(src []byte) error

func (*NullableStartTaskAllOf) Unset ¶ added in v1.10.3

func (v *NullableStartTaskAllOf) Unset()

type NullableStream ¶

type NullableStream struct {
	// contains filtered or unexported fields
}

func NewNullableStream ¶

func NewNullableStream(val *Stream) *NullableStream

func (NullableStream) Get ¶

func (v NullableStream) Get() *Stream

func (NullableStream) IsSet ¶

func (v NullableStream) IsSet() bool

func (NullableStream) MarshalJSON ¶

func (v NullableStream) MarshalJSON() ([]byte, error)

func (*NullableStream) Set ¶

func (v *NullableStream) Set(val *Stream)

func (*NullableStream) UnmarshalJSON ¶

func (v *NullableStream) UnmarshalJSON(src []byte) error

func (*NullableStream) Unset ¶

func (v *NullableStream) 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 NullableStripeCreateSetupIntent200Response ¶ added in v1.10.3

type NullableStripeCreateSetupIntent200Response struct {
	// contains filtered or unexported fields
}

func NewNullableStripeCreateSetupIntent200Response ¶ added in v1.10.3

func NewNullableStripeCreateSetupIntent200Response(val *StripeCreateSetupIntent200Response) *NullableStripeCreateSetupIntent200Response

func (NullableStripeCreateSetupIntent200Response) Get ¶ added in v1.10.3

func (NullableStripeCreateSetupIntent200Response) IsSet ¶ added in v1.10.3

func (NullableStripeCreateSetupIntent200Response) MarshalJSON ¶ added in v1.10.3

func (*NullableStripeCreateSetupIntent200Response) Set ¶ added in v1.10.3

func (*NullableStripeCreateSetupIntent200Response) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableStripeCreateSetupIntent200Response) UnmarshalJSON(src []byte) error

func (*NullableStripeCreateSetupIntent200Response) Unset ¶ added in v1.10.3

type NullableStripePublicKey200Response ¶ added in v1.10.3

type NullableStripePublicKey200Response struct {
	// contains filtered or unexported fields
}

func NewNullableStripePublicKey200Response ¶ added in v1.10.3

func NewNullableStripePublicKey200Response(val *StripePublicKey200Response) *NullableStripePublicKey200Response

func (NullableStripePublicKey200Response) Get ¶ added in v1.10.3

func (NullableStripePublicKey200Response) IsSet ¶ added in v1.10.3

func (NullableStripePublicKey200Response) MarshalJSON ¶ added in v1.10.3

func (v NullableStripePublicKey200Response) MarshalJSON() ([]byte, error)

func (*NullableStripePublicKey200Response) Set ¶ added in v1.10.3

func (*NullableStripePublicKey200Response) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableStripePublicKey200Response) UnmarshalJSON(src []byte) error

func (*NullableStripePublicKey200Response) Unset ¶ added in v1.10.3

type NullableStyle ¶

type NullableStyle struct {
	// contains filtered or unexported fields
}

func NewNullableStyle ¶

func NewNullableStyle(val *Style) *NullableStyle

func (NullableStyle) Get ¶

func (v NullableStyle) Get() *Style

func (NullableStyle) IsSet ¶

func (v NullableStyle) IsSet() bool

func (NullableStyle) MarshalJSON ¶

func (v NullableStyle) MarshalJSON() ([]byte, error)

func (*NullableStyle) Set ¶

func (v *NullableStyle) Set(val *Style)

func (*NullableStyle) UnmarshalJSON ¶

func (v *NullableStyle) UnmarshalJSON(src []byte) error

func (*NullableStyle) Unset ¶

func (v *NullableStyle) Unset()

type NullableSubscription ¶

type NullableSubscription struct {
	// contains filtered or unexported fields
}

func NewNullableSubscription ¶

func NewNullableSubscription(val *Subscription) *NullableSubscription

func (NullableSubscription) Get ¶

func (NullableSubscription) IsSet ¶

func (v NullableSubscription) IsSet() bool

func (NullableSubscription) MarshalJSON ¶

func (v NullableSubscription) MarshalJSON() ([]byte, error)

func (*NullableSubscription) Set ¶

func (v *NullableSubscription) Set(val *Subscription)

func (*NullableSubscription) UnmarshalJSON ¶

func (v *NullableSubscription) UnmarshalJSON(src []byte) error

func (*NullableSubscription) Unset ¶

func (v *NullableSubscription) Unset()

type NullableSubscriptionDetails ¶

type NullableSubscriptionDetails struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionDetails) Get ¶

func (NullableSubscriptionDetails) IsSet ¶

func (NullableSubscriptionDetails) MarshalJSON ¶

func (v NullableSubscriptionDetails) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionDetails) Set ¶

func (*NullableSubscriptionDetails) UnmarshalJSON ¶

func (v *NullableSubscriptionDetails) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionDetails) Unset ¶

func (v *NullableSubscriptionDetails) Unset()

type NullableSubscriptionDetailsAllOf ¶

type NullableSubscriptionDetailsAllOf struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionDetailsAllOf) Get ¶

func (NullableSubscriptionDetailsAllOf) IsSet ¶

func (NullableSubscriptionDetailsAllOf) MarshalJSON ¶

func (v NullableSubscriptionDetailsAllOf) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionDetailsAllOf) Set ¶

func (*NullableSubscriptionDetailsAllOf) UnmarshalJSON ¶

func (v *NullableSubscriptionDetailsAllOf) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionDetailsAllOf) Unset ¶

type NullableSumParams ¶ added in v1.10.3

type NullableSumParams struct {
	// contains filtered or unexported fields
}

func NewNullableSumParams ¶ added in v1.10.3

func NewNullableSumParams(val *SumParams) *NullableSumParams

func (NullableSumParams) Get ¶ added in v1.10.3

func (v NullableSumParams) Get() *SumParams

func (NullableSumParams) IsSet ¶ added in v1.10.3

func (v NullableSumParams) IsSet() bool

func (NullableSumParams) MarshalJSON ¶ added in v1.10.3

func (v NullableSumParams) MarshalJSON() ([]byte, error)

func (*NullableSumParams) Set ¶ added in v1.10.3

func (v *NullableSumParams) Set(val *SumParams)

func (*NullableSumParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSumParams) UnmarshalJSON(src []byte) error

func (*NullableSumParams) Unset ¶ added in v1.10.3

func (v *NullableSumParams) Unset()

type NullableSynapseOptions ¶ added in v1.10.3

type NullableSynapseOptions struct {
	// contains filtered or unexported fields
}

func NewNullableSynapseOptions ¶ added in v1.10.3

func NewNullableSynapseOptions(val *SynapseOptions) *NullableSynapseOptions

func (NullableSynapseOptions) Get ¶ added in v1.10.3

func (NullableSynapseOptions) IsSet ¶ added in v1.10.3

func (v NullableSynapseOptions) IsSet() bool

func (NullableSynapseOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableSynapseOptions) MarshalJSON() ([]byte, error)

func (*NullableSynapseOptions) Set ¶ added in v1.10.3

func (*NullableSynapseOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSynapseOptions) UnmarshalJSON(src []byte) error

func (*NullableSynapseOptions) Unset ¶ added in v1.10.3

func (v *NullableSynapseOptions) Unset()

type NullableSynapseOptionsAllOf ¶ added in v1.10.3

type NullableSynapseOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableSynapseOptionsAllOf ¶ added in v1.10.3

func NewNullableSynapseOptionsAllOf(val *SynapseOptionsAllOf) *NullableSynapseOptionsAllOf

func (NullableSynapseOptionsAllOf) Get ¶ added in v1.10.3

func (NullableSynapseOptionsAllOf) IsSet ¶ added in v1.10.3

func (NullableSynapseOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableSynapseOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableSynapseOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableSynapseOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableSynapseOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableSynapseOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableSynapseOptionsAllOf) Unset()

type NullableTable ¶ added in v1.10.3

type NullableTable struct {
	// contains filtered or unexported fields
}

func NewNullableTable ¶ added in v1.10.3

func NewNullableTable(val *Table) *NullableTable

func (NullableTable) Get ¶ added in v1.10.3

func (v NullableTable) Get() *Table

func (NullableTable) IsSet ¶ added in v1.10.3

func (v NullableTable) IsSet() bool

func (NullableTable) MarshalJSON ¶ added in v1.10.3

func (v NullableTable) MarshalJSON() ([]byte, error)

func (*NullableTable) Set ¶ added in v1.10.3

func (v *NullableTable) Set(val *Table)

func (*NullableTable) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTable) UnmarshalJSON(src []byte) error

func (*NullableTable) Unset ¶ added in v1.10.3

func (v *NullableTable) Unset()

type NullableTable1 ¶ added in v1.10.3

type NullableTable1 struct {
	// contains filtered or unexported fields
}

func NewNullableTable1 ¶ added in v1.10.3

func NewNullableTable1(val *Table1) *NullableTable1

func (NullableTable1) Get ¶ added in v1.10.3

func (v NullableTable1) Get() *Table1

func (NullableTable1) IsSet ¶ added in v1.10.3

func (v NullableTable1) IsSet() bool

func (NullableTable1) MarshalJSON ¶ added in v1.10.3

func (v NullableTable1) MarshalJSON() ([]byte, error)

func (*NullableTable1) Set ¶ added in v1.10.3

func (v *NullableTable1) Set(val *Table1)

func (*NullableTable1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTable1) UnmarshalJSON(src []byte) error

func (*NullableTable1) Unset ¶ added in v1.10.3

func (v *NullableTable1) Unset()

type NullableTarget ¶

type NullableTarget struct {
	// contains filtered or unexported fields
}

func NewNullableTarget ¶

func NewNullableTarget(val *Target) *NullableTarget

func (NullableTarget) Get ¶

func (v NullableTarget) Get() *Target

func (NullableTarget) IsSet ¶

func (v NullableTarget) IsSet() bool

func (NullableTarget) MarshalJSON ¶

func (v NullableTarget) MarshalJSON() ([]byte, error)

func (*NullableTarget) Set ¶

func (v *NullableTarget) Set(val *Target)

func (*NullableTarget) UnmarshalJSON ¶

func (v *NullableTarget) UnmarshalJSON(src []byte) error

func (*NullableTarget) Unset ¶

func (v *NullableTarget) Unset()

type NullableTarget1 ¶ added in v1.10.3

type NullableTarget1 struct {
	// contains filtered or unexported fields
}

func NewNullableTarget1 ¶ added in v1.10.3

func NewNullableTarget1(val *Target1) *NullableTarget1

func (NullableTarget1) Get ¶ added in v1.10.3

func (v NullableTarget1) Get() *Target1

func (NullableTarget1) IsSet ¶ added in v1.10.3

func (v NullableTarget1) IsSet() bool

func (NullableTarget1) MarshalJSON ¶ added in v1.10.3

func (v NullableTarget1) MarshalJSON() ([]byte, error)

func (*NullableTarget1) Set ¶ added in v1.10.3

func (v *NullableTarget1) Set(val *Target1)

func (*NullableTarget1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTarget1) UnmarshalJSON(src []byte) error

func (*NullableTarget1) Unset ¶ added in v1.10.3

func (v *NullableTarget1) Unset()

type NullableTargetInfo ¶

type NullableTargetInfo struct {
	// contains filtered or unexported fields
}

func NewNullableTargetInfo ¶

func NewNullableTargetInfo(val *TargetInfo) *NullableTargetInfo

func (NullableTargetInfo) Get ¶

func (v NullableTargetInfo) Get() *TargetInfo

func (NullableTargetInfo) IsSet ¶

func (v NullableTargetInfo) IsSet() bool

func (NullableTargetInfo) MarshalJSON ¶

func (v NullableTargetInfo) MarshalJSON() ([]byte, error)

func (*NullableTargetInfo) Set ¶

func (v *NullableTargetInfo) Set(val *TargetInfo)

func (*NullableTargetInfo) UnmarshalJSON ¶

func (v *NullableTargetInfo) UnmarshalJSON(src []byte) error

func (*NullableTargetInfo) Unset ¶

func (v *NullableTargetInfo) Unset()

type NullableTask ¶

type NullableTask struct {
	// contains filtered or unexported fields
}

func NewNullableTask ¶

func NewNullableTask(val *Task) *NullableTask

func (NullableTask) Get ¶

func (v NullableTask) Get() *Task

func (NullableTask) IsSet ¶

func (v NullableTask) IsSet() bool

func (NullableTask) MarshalJSON ¶

func (v NullableTask) MarshalJSON() ([]byte, error)

func (*NullableTask) Set ¶

func (v *NullableTask) Set(val *Task)

func (*NullableTask) UnmarshalJSON ¶

func (v *NullableTask) UnmarshalJSON(src []byte) error

func (*NullableTask) Unset ¶

func (v *NullableTask) Unset()

type NullableTaskListInner ¶ added in v1.10.3

type NullableTaskListInner struct {
	// contains filtered or unexported fields
}

func NewNullableTaskListInner ¶ added in v1.10.3

func NewNullableTaskListInner(val *TaskListInner) *NullableTaskListInner

func (NullableTaskListInner) Get ¶ added in v1.10.3

func (NullableTaskListInner) IsSet ¶ added in v1.10.3

func (v NullableTaskListInner) IsSet() bool

func (NullableTaskListInner) MarshalJSON ¶ added in v1.10.3

func (v NullableTaskListInner) MarshalJSON() ([]byte, error)

func (*NullableTaskListInner) Set ¶ added in v1.10.3

func (v *NullableTaskListInner) Set(val *TaskListInner)

func (*NullableTaskListInner) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTaskListInner) UnmarshalJSON(src []byte) error

func (*NullableTaskListInner) Unset ¶ added in v1.10.3

func (v *NullableTaskListInner) Unset()

type NullableTenant ¶

type NullableTenant struct {
	// contains filtered or unexported fields
}

func NewNullableTenant ¶

func NewNullableTenant(val *Tenant) *NullableTenant

func (NullableTenant) Get ¶

func (v NullableTenant) Get() *Tenant

func (NullableTenant) IsSet ¶

func (v NullableTenant) IsSet() bool

func (NullableTenant) MarshalJSON ¶

func (v NullableTenant) MarshalJSON() ([]byte, error)

func (*NullableTenant) Set ¶

func (v *NullableTenant) Set(val *Tenant)

func (*NullableTenant) UnmarshalJSON ¶

func (v *NullableTenant) UnmarshalJSON(src []byte) error

func (*NullableTenant) Unset ¶

func (v *NullableTenant) Unset()

type NullableTenant1 ¶

type NullableTenant1 struct {
	// contains filtered or unexported fields
}

func NewNullableTenant1 ¶

func NewNullableTenant1(val *Tenant1) *NullableTenant1

func (NullableTenant1) Get ¶

func (v NullableTenant1) Get() *Tenant1

func (NullableTenant1) IsSet ¶

func (v NullableTenant1) IsSet() bool

func (NullableTenant1) MarshalJSON ¶

func (v NullableTenant1) MarshalJSON() ([]byte, error)

func (*NullableTenant1) Set ¶

func (v *NullableTenant1) Set(val *Tenant1)

func (*NullableTenant1) UnmarshalJSON ¶

func (v *NullableTenant1) UnmarshalJSON(src []byte) error

func (*NullableTenant1) Unset ¶

func (v *NullableTenant1) Unset()

type NullableTensorflowOptions ¶

type NullableTensorflowOptions struct {
	// contains filtered or unexported fields
}

func NewNullableTensorflowOptions ¶

func NewNullableTensorflowOptions(val *TensorflowOptions) *NullableTensorflowOptions

func (NullableTensorflowOptions) Get ¶

func (NullableTensorflowOptions) IsSet ¶

func (v NullableTensorflowOptions) IsSet() bool

func (NullableTensorflowOptions) MarshalJSON ¶

func (v NullableTensorflowOptions) MarshalJSON() ([]byte, error)

func (*NullableTensorflowOptions) Set ¶

func (*NullableTensorflowOptions) UnmarshalJSON ¶

func (v *NullableTensorflowOptions) UnmarshalJSON(src []byte) error

func (*NullableTensorflowOptions) Unset ¶

func (v *NullableTensorflowOptions) Unset()

type NullableTensorflowOptionsAllOf ¶

type NullableTensorflowOptionsAllOf struct {
	// contains filtered or unexported fields
}

func (NullableTensorflowOptionsAllOf) Get ¶

func (NullableTensorflowOptionsAllOf) IsSet ¶

func (NullableTensorflowOptionsAllOf) MarshalJSON ¶

func (v NullableTensorflowOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableTensorflowOptionsAllOf) Set ¶

func (*NullableTensorflowOptionsAllOf) UnmarshalJSON ¶

func (v *NullableTensorflowOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableTensorflowOptionsAllOf) Unset ¶

func (v *NullableTensorflowOptionsAllOf) Unset()

type NullableTicket ¶

type NullableTicket struct {
	// contains filtered or unexported fields
}

func NewNullableTicket ¶

func NewNullableTicket(val *Ticket) *NullableTicket

func (NullableTicket) Get ¶

func (v NullableTicket) Get() *Ticket

func (NullableTicket) IsSet ¶

func (v NullableTicket) IsSet() bool

func (NullableTicket) MarshalJSON ¶

func (v NullableTicket) MarshalJSON() ([]byte, error)

func (*NullableTicket) Set ¶

func (v *NullableTicket) Set(val *Ticket)

func (*NullableTicket) UnmarshalJSON ¶

func (v *NullableTicket) UnmarshalJSON(src []byte) error

func (*NullableTicket) Unset ¶

func (v *NullableTicket) 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 NullableTrainModelTask ¶ added in v1.10.3

type NullableTrainModelTask struct {
	// contains filtered or unexported fields
}

func NewNullableTrainModelTask ¶ added in v1.10.3

func NewNullableTrainModelTask(val *TrainModelTask) *NullableTrainModelTask

func (NullableTrainModelTask) Get ¶ added in v1.10.3

func (NullableTrainModelTask) IsSet ¶ added in v1.10.3

func (v NullableTrainModelTask) IsSet() bool

func (NullableTrainModelTask) MarshalJSON ¶ added in v1.10.3

func (v NullableTrainModelTask) MarshalJSON() ([]byte, error)

func (*NullableTrainModelTask) Set ¶ added in v1.10.3

func (*NullableTrainModelTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTrainModelTask) UnmarshalJSON(src []byte) error

func (*NullableTrainModelTask) Unset ¶ added in v1.10.3

func (v *NullableTrainModelTask) Unset()

type NullableTrialDetails ¶ added in v1.10.3

type NullableTrialDetails struct {
	// contains filtered or unexported fields
}

func NewNullableTrialDetails ¶ added in v1.10.3

func NewNullableTrialDetails(val *TrialDetails) *NullableTrialDetails

func (NullableTrialDetails) Get ¶ added in v1.10.3

func (NullableTrialDetails) IsSet ¶ added in v1.10.3

func (v NullableTrialDetails) IsSet() bool

func (NullableTrialDetails) MarshalJSON ¶ added in v1.10.3

func (v NullableTrialDetails) MarshalJSON() ([]byte, error)

func (*NullableTrialDetails) Set ¶ added in v1.10.3

func (v *NullableTrialDetails) Set(val *TrialDetails)

func (*NullableTrialDetails) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTrialDetails) UnmarshalJSON(src []byte) error

func (*NullableTrialDetails) Unset ¶ added in v1.10.3

func (v *NullableTrialDetails) Unset()

type NullableTrialDetailsAllOf ¶ added in v1.10.3

type NullableTrialDetailsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTrialDetailsAllOf ¶ added in v1.10.3

func NewNullableTrialDetailsAllOf(val *TrialDetailsAllOf) *NullableTrialDetailsAllOf

func (NullableTrialDetailsAllOf) Get ¶ added in v1.10.3

func (NullableTrialDetailsAllOf) IsSet ¶ added in v1.10.3

func (v NullableTrialDetailsAllOf) IsSet() bool

func (NullableTrialDetailsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableTrialDetailsAllOf) MarshalJSON() ([]byte, error)

func (*NullableTrialDetailsAllOf) Set ¶ added in v1.10.3

func (*NullableTrialDetailsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTrialDetailsAllOf) UnmarshalJSON(src []byte) error

func (*NullableTrialDetailsAllOf) Unset ¶ added in v1.10.3

func (v *NullableTrialDetailsAllOf) Unset()

type NullableTrialPaymentMethod ¶

type NullableTrialPaymentMethod struct {
	// contains filtered or unexported fields
}

func NewNullableTrialPaymentMethod ¶

func NewNullableTrialPaymentMethod(val *TrialPaymentMethod) *NullableTrialPaymentMethod

func (NullableTrialPaymentMethod) Get ¶

func (NullableTrialPaymentMethod) IsSet ¶

func (v NullableTrialPaymentMethod) IsSet() bool

func (NullableTrialPaymentMethod) MarshalJSON ¶

func (v NullableTrialPaymentMethod) MarshalJSON() ([]byte, error)

func (*NullableTrialPaymentMethod) Set ¶

func (*NullableTrialPaymentMethod) UnmarshalJSON ¶

func (v *NullableTrialPaymentMethod) UnmarshalJSON(src []byte) error

func (*NullableTrialPaymentMethod) Unset ¶

func (v *NullableTrialPaymentMethod) Unset()

type NullableTrialPaymentMethodAllOf ¶

type NullableTrialPaymentMethodAllOf struct {
	// contains filtered or unexported fields
}

func (NullableTrialPaymentMethodAllOf) Get ¶

func (NullableTrialPaymentMethodAllOf) IsSet ¶

func (NullableTrialPaymentMethodAllOf) MarshalJSON ¶

func (v NullableTrialPaymentMethodAllOf) MarshalJSON() ([]byte, error)

func (*NullableTrialPaymentMethodAllOf) Set ¶

func (*NullableTrialPaymentMethodAllOf) UnmarshalJSON ¶

func (v *NullableTrialPaymentMethodAllOf) UnmarshalJSON(src []byte) error

func (*NullableTrialPaymentMethodAllOf) Unset ¶

type NullableTrinoOptions ¶ added in v1.10.3

type NullableTrinoOptions struct {
	// contains filtered or unexported fields
}

func NewNullableTrinoOptions ¶ added in v1.10.3

func NewNullableTrinoOptions(val *TrinoOptions) *NullableTrinoOptions

func (NullableTrinoOptions) Get ¶ added in v1.10.3

func (NullableTrinoOptions) IsSet ¶ added in v1.10.3

func (v NullableTrinoOptions) IsSet() bool

func (NullableTrinoOptions) MarshalJSON ¶ added in v1.10.3

func (v NullableTrinoOptions) MarshalJSON() ([]byte, error)

func (*NullableTrinoOptions) Set ¶ added in v1.10.3

func (v *NullableTrinoOptions) Set(val *TrinoOptions)

func (*NullableTrinoOptions) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTrinoOptions) UnmarshalJSON(src []byte) error

func (*NullableTrinoOptions) Unset ¶ added in v1.10.3

func (v *NullableTrinoOptions) Unset()

type NullableTrinoOptionsAllOf ¶ added in v1.10.3

type NullableTrinoOptionsAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableTrinoOptionsAllOf ¶ added in v1.10.3

func NewNullableTrinoOptionsAllOf(val *TrinoOptionsAllOf) *NullableTrinoOptionsAllOf

func (NullableTrinoOptionsAllOf) Get ¶ added in v1.10.3

func (NullableTrinoOptionsAllOf) IsSet ¶ added in v1.10.3

func (v NullableTrinoOptionsAllOf) IsSet() bool

func (NullableTrinoOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableTrinoOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableTrinoOptionsAllOf) Set ¶ added in v1.10.3

func (*NullableTrinoOptionsAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableTrinoOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableTrinoOptionsAllOf) Unset ¶ added in v1.10.3

func (v *NullableTrinoOptionsAllOf) Unset()

type NullableUri ¶ added in v1.10.3

type NullableUri struct {
	// contains filtered or unexported fields
}

func NewNullableUri ¶ added in v1.10.3

func NewNullableUri(val *Uri) *NullableUri

func (NullableUri) Get ¶ added in v1.10.3

func (v NullableUri) Get() *Uri

func (NullableUri) IsSet ¶ added in v1.10.3

func (v NullableUri) IsSet() bool

func (NullableUri) MarshalJSON ¶ added in v1.10.3

func (v NullableUri) MarshalJSON() ([]byte, error)

func (*NullableUri) Set ¶ added in v1.10.3

func (v *NullableUri) Set(val *Uri)

func (*NullableUri) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableUri) UnmarshalJSON(src []byte) error

func (*NullableUri) Unset ¶ added in v1.10.3

func (v *NullableUri) Unset()

type NullableUsage ¶

type NullableUsage struct {
	// contains filtered or unexported fields
}

func NewNullableUsage ¶

func NewNullableUsage(val *Usage) *NullableUsage

func (NullableUsage) Get ¶

func (v NullableUsage) Get() *Usage

func (NullableUsage) IsSet ¶

func (v NullableUsage) IsSet() bool

func (NullableUsage) MarshalJSON ¶

func (v NullableUsage) MarshalJSON() ([]byte, error)

func (*NullableUsage) Set ¶

func (v *NullableUsage) Set(val *Usage)

func (*NullableUsage) UnmarshalJSON ¶

func (v *NullableUsage) UnmarshalJSON(src []byte) error

func (*NullableUsage) Unset ¶

func (v *NullableUsage) Unset()

type NullableUser ¶

type NullableUser struct {
	// contains filtered or unexported fields
}

func NewNullableUser ¶

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get ¶

func (v NullableUser) Get() *User

func (NullableUser) IsSet ¶

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON ¶

func (v NullableUser) MarshalJSON() ([]byte, error)

func (*NullableUser) Set ¶

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON ¶

func (v *NullableUser) UnmarshalJSON(src []byte) error

func (*NullableUser) Unset ¶

func (v *NullableUser) Unset()

type NullableUser1 ¶ added in v1.10.3

type NullableUser1 struct {
	// contains filtered or unexported fields
}

func NewNullableUser1 ¶ added in v1.10.3

func NewNullableUser1(val *User1) *NullableUser1

func (NullableUser1) Get ¶ added in v1.10.3

func (v NullableUser1) Get() *User1

func (NullableUser1) IsSet ¶ added in v1.10.3

func (v NullableUser1) IsSet() bool

func (NullableUser1) MarshalJSON ¶ added in v1.10.3

func (v NullableUser1) MarshalJSON() ([]byte, error)

func (*NullableUser1) Set ¶ added in v1.10.3

func (v *NullableUser1) Set(val *User1)

func (*NullableUser1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableUser1) UnmarshalJSON(src []byte) error

func (*NullableUser1) Unset ¶ added in v1.10.3

func (v *NullableUser1) Unset()

type NullableUser1AllOf ¶ added in v1.10.3

type NullableUser1AllOf struct {
	// contains filtered or unexported fields
}

func NewNullableUser1AllOf ¶ added in v1.10.3

func NewNullableUser1AllOf(val *User1AllOf) *NullableUser1AllOf

func (NullableUser1AllOf) Get ¶ added in v1.10.3

func (v NullableUser1AllOf) Get() *User1AllOf

func (NullableUser1AllOf) IsSet ¶ added in v1.10.3

func (v NullableUser1AllOf) IsSet() bool

func (NullableUser1AllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableUser1AllOf) MarshalJSON() ([]byte, error)

func (*NullableUser1AllOf) Set ¶ added in v1.10.3

func (v *NullableUser1AllOf) Set(val *User1AllOf)

func (*NullableUser1AllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableUser1AllOf) UnmarshalJSON(src []byte) error

func (*NullableUser1AllOf) Unset ¶ added in v1.10.3

func (v *NullableUser1AllOf) Unset()

type NullableUserActivity ¶ added in v1.10.3

type NullableUserActivity struct {
	// contains filtered or unexported fields
}

func NewNullableUserActivity ¶ added in v1.10.3

func NewNullableUserActivity(val *UserActivity) *NullableUserActivity

func (NullableUserActivity) Get ¶ added in v1.10.3

func (NullableUserActivity) IsSet ¶ added in v1.10.3

func (v NullableUserActivity) IsSet() bool

func (NullableUserActivity) MarshalJSON ¶ added in v1.10.3

func (v NullableUserActivity) MarshalJSON() ([]byte, error)

func (*NullableUserActivity) Set ¶ added in v1.10.3

func (v *NullableUserActivity) Set(val *UserActivity)

func (*NullableUserActivity) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableUserActivity) UnmarshalJSON(src []byte) error

func (*NullableUserActivity) Unset ¶ added in v1.10.3

func (v *NullableUserActivity) Unset()

type NullableValidationError ¶ added in v1.10.3

type NullableValidationError struct {
	// contains filtered or unexported fields
}

func NewNullableValidationError ¶ added in v1.10.3

func NewNullableValidationError(val *ValidationError) *NullableValidationError

func (NullableValidationError) Get ¶ added in v1.10.3

func (NullableValidationError) IsSet ¶ added in v1.10.3

func (v NullableValidationError) IsSet() bool

func (NullableValidationError) MarshalJSON ¶ added in v1.10.3

func (v NullableValidationError) MarshalJSON() ([]byte, error)

func (*NullableValidationError) Set ¶ added in v1.10.3

func (*NullableValidationError) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableValidationError) UnmarshalJSON(src []byte) error

func (*NullableValidationError) Unset ¶ added in v1.10.3

func (v *NullableValidationError) Unset()

type NullableValidityAction ¶ added in v1.10.3

type NullableValidityAction struct {
	// contains filtered or unexported fields
}

func NewNullableValidityAction ¶ added in v1.10.3

func NewNullableValidityAction(val *ValidityAction) *NullableValidityAction

func (NullableValidityAction) Get ¶ added in v1.10.3

func (NullableValidityAction) IsSet ¶ added in v1.10.3

func (v NullableValidityAction) IsSet() bool

func (NullableValidityAction) MarshalJSON ¶ added in v1.10.3

func (v NullableValidityAction) MarshalJSON() ([]byte, error)

func (*NullableValidityAction) Set ¶ added in v1.10.3

func (*NullableValidityAction) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableValidityAction) UnmarshalJSON(src []byte) error

func (*NullableValidityAction) Unset ¶ added in v1.10.3

func (v *NullableValidityAction) Unset()

type NullableWebHookNotification ¶

type NullableWebHookNotification struct {
	// contains filtered or unexported fields
}

func (NullableWebHookNotification) Get ¶

func (NullableWebHookNotification) IsSet ¶

func (NullableWebHookNotification) MarshalJSON ¶

func (v NullableWebHookNotification) MarshalJSON() ([]byte, error)

func (*NullableWebHookNotification) Set ¶

func (*NullableWebHookNotification) UnmarshalJSON ¶

func (v *NullableWebHookNotification) UnmarshalJSON(src []byte) error

func (*NullableWebHookNotification) Unset ¶

func (v *NullableWebHookNotification) Unset()

type NullableWebHookNotificationAllOf ¶

type NullableWebHookNotificationAllOf struct {
	// contains filtered or unexported fields
}

func (NullableWebHookNotificationAllOf) Get ¶

func (NullableWebHookNotificationAllOf) IsSet ¶

func (NullableWebHookNotificationAllOf) MarshalJSON ¶

func (v NullableWebHookNotificationAllOf) MarshalJSON() ([]byte, error)

func (*NullableWebHookNotificationAllOf) Set ¶

func (*NullableWebHookNotificationAllOf) UnmarshalJSON ¶

func (v *NullableWebHookNotificationAllOf) UnmarshalJSON(src []byte) error

func (*NullableWebHookNotificationAllOf) Unset ¶

type NullableWorkflow ¶

type NullableWorkflow struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflow ¶

func NewNullableWorkflow(val *Workflow) *NullableWorkflow

func (NullableWorkflow) Get ¶

func (v NullableWorkflow) Get() *Workflow

func (NullableWorkflow) IsSet ¶

func (v NullableWorkflow) IsSet() bool

func (NullableWorkflow) MarshalJSON ¶

func (v NullableWorkflow) MarshalJSON() ([]byte, error)

func (*NullableWorkflow) Set ¶

func (v *NullableWorkflow) Set(val *Workflow)

func (*NullableWorkflow) UnmarshalJSON ¶

func (v *NullableWorkflow) UnmarshalJSON(src []byte) error

func (*NullableWorkflow) Unset ¶

func (v *NullableWorkflow) Unset()

type NullableWorkflow1 ¶ added in v1.10.3

type NullableWorkflow1 struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflow1 ¶ added in v1.10.3

func NewNullableWorkflow1(val *Workflow1) *NullableWorkflow1

func (NullableWorkflow1) Get ¶ added in v1.10.3

func (v NullableWorkflow1) Get() *Workflow1

func (NullableWorkflow1) IsSet ¶ added in v1.10.3

func (v NullableWorkflow1) IsSet() bool

func (NullableWorkflow1) MarshalJSON ¶ added in v1.10.3

func (v NullableWorkflow1) MarshalJSON() ([]byte, error)

func (*NullableWorkflow1) Set ¶ added in v1.10.3

func (v *NullableWorkflow1) Set(val *Workflow1)

func (*NullableWorkflow1) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWorkflow1) UnmarshalJSON(src []byte) error

func (*NullableWorkflow1) Unset ¶ added in v1.10.3

func (v *NullableWorkflow1) Unset()

type NullableWorkflow1AllOf ¶ added in v1.10.3

type NullableWorkflow1AllOf struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflow1AllOf ¶ added in v1.10.3

func NewNullableWorkflow1AllOf(val *Workflow1AllOf) *NullableWorkflow1AllOf

func (NullableWorkflow1AllOf) Get ¶ added in v1.10.3

func (NullableWorkflow1AllOf) IsSet ¶ added in v1.10.3

func (v NullableWorkflow1AllOf) IsSet() bool

func (NullableWorkflow1AllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableWorkflow1AllOf) MarshalJSON() ([]byte, error)

func (*NullableWorkflow1AllOf) Set ¶ added in v1.10.3

func (*NullableWorkflow1AllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWorkflow1AllOf) UnmarshalJSON(src []byte) error

func (*NullableWorkflow1AllOf) Unset ¶ added in v1.10.3

func (v *NullableWorkflow1AllOf) Unset()

type NullableWorkflowActivity ¶ added in v1.10.3

type NullableWorkflowActivity struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowActivity ¶ added in v1.10.3

func NewNullableWorkflowActivity(val *WorkflowActivity) *NullableWorkflowActivity

func (NullableWorkflowActivity) Get ¶ added in v1.10.3

func (NullableWorkflowActivity) IsSet ¶ added in v1.10.3

func (v NullableWorkflowActivity) IsSet() bool

func (NullableWorkflowActivity) MarshalJSON ¶ added in v1.10.3

func (v NullableWorkflowActivity) MarshalJSON() ([]byte, error)

func (*NullableWorkflowActivity) Set ¶ added in v1.10.3

func (*NullableWorkflowActivity) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWorkflowActivity) UnmarshalJSON(src []byte) error

func (*NullableWorkflowActivity) Unset ¶ added in v1.10.3

func (v *NullableWorkflowActivity) Unset()

type NullableWorkflowActivityAllOf ¶ added in v1.10.3

type NullableWorkflowActivityAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowActivityAllOf ¶ added in v1.10.3

func NewNullableWorkflowActivityAllOf(val *WorkflowActivityAllOf) *NullableWorkflowActivityAllOf

func (NullableWorkflowActivityAllOf) Get ¶ added in v1.10.3

func (NullableWorkflowActivityAllOf) IsSet ¶ added in v1.10.3

func (NullableWorkflowActivityAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableWorkflowActivityAllOf) MarshalJSON() ([]byte, error)

func (*NullableWorkflowActivityAllOf) Set ¶ added in v1.10.3

func (*NullableWorkflowActivityAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWorkflowActivityAllOf) UnmarshalJSON(src []byte) error

func (*NullableWorkflowActivityAllOf) Unset ¶ added in v1.10.3

func (v *NullableWorkflowActivityAllOf) Unset()

type NullableWorkflowPage ¶

type NullableWorkflowPage struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowPage ¶

func NewNullableWorkflowPage(val *WorkflowPage) *NullableWorkflowPage

func (NullableWorkflowPage) Get ¶

func (NullableWorkflowPage) IsSet ¶

func (v NullableWorkflowPage) IsSet() bool

func (NullableWorkflowPage) MarshalJSON ¶

func (v NullableWorkflowPage) MarshalJSON() ([]byte, error)

func (*NullableWorkflowPage) Set ¶

func (v *NullableWorkflowPage) Set(val *WorkflowPage)

func (*NullableWorkflowPage) UnmarshalJSON ¶

func (v *NullableWorkflowPage) UnmarshalJSON(src []byte) error

func (*NullableWorkflowPage) Unset ¶

func (v *NullableWorkflowPage) Unset()

type NullableWorkflowPageAllOf ¶

type NullableWorkflowPageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowPageAllOf ¶

func NewNullableWorkflowPageAllOf(val *WorkflowPageAllOf) *NullableWorkflowPageAllOf

func (NullableWorkflowPageAllOf) Get ¶

func (NullableWorkflowPageAllOf) IsSet ¶

func (v NullableWorkflowPageAllOf) IsSet() bool

func (NullableWorkflowPageAllOf) MarshalJSON ¶

func (v NullableWorkflowPageAllOf) MarshalJSON() ([]byte, error)

func (*NullableWorkflowPageAllOf) Set ¶

func (*NullableWorkflowPageAllOf) UnmarshalJSON ¶

func (v *NullableWorkflowPageAllOf) UnmarshalJSON(src []byte) error

func (*NullableWorkflowPageAllOf) Unset ¶

func (v *NullableWorkflowPageAllOf) Unset()

type NullableWorkflowRun ¶

type NullableWorkflowRun struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowRun ¶

func NewNullableWorkflowRun(val *WorkflowRun) *NullableWorkflowRun

func (NullableWorkflowRun) Get ¶

func (NullableWorkflowRun) IsSet ¶

func (v NullableWorkflowRun) IsSet() bool

func (NullableWorkflowRun) MarshalJSON ¶

func (v NullableWorkflowRun) MarshalJSON() ([]byte, error)

func (*NullableWorkflowRun) Set ¶

func (v *NullableWorkflowRun) Set(val *WorkflowRun)

func (*NullableWorkflowRun) UnmarshalJSON ¶

func (v *NullableWorkflowRun) UnmarshalJSON(src []byte) error

func (*NullableWorkflowRun) Unset ¶

func (v *NullableWorkflowRun) Unset()

type NullableWorkflowTask ¶

type NullableWorkflowTask struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowTask ¶

func NewNullableWorkflowTask(val *WorkflowTask) *NullableWorkflowTask

func (NullableWorkflowTask) Get ¶

func (NullableWorkflowTask) IsSet ¶

func (v NullableWorkflowTask) IsSet() bool

func (NullableWorkflowTask) MarshalJSON ¶

func (v NullableWorkflowTask) MarshalJSON() ([]byte, error)

func (*NullableWorkflowTask) Set ¶

func (v *NullableWorkflowTask) Set(val *WorkflowTask)

func (*NullableWorkflowTask) UnmarshalJSON ¶

func (v *NullableWorkflowTask) UnmarshalJSON(src []byte) error

func (*NullableWorkflowTask) Unset ¶

func (v *NullableWorkflowTask) Unset()

type NullableWorkflowTaskAllOf ¶

type NullableWorkflowTaskAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableWorkflowTaskAllOf ¶

func NewNullableWorkflowTaskAllOf(val *WorkflowTaskAllOf) *NullableWorkflowTaskAllOf

func (NullableWorkflowTaskAllOf) Get ¶

func (NullableWorkflowTaskAllOf) IsSet ¶

func (v NullableWorkflowTaskAllOf) IsSet() bool

func (NullableWorkflowTaskAllOf) MarshalJSON ¶

func (v NullableWorkflowTaskAllOf) MarshalJSON() ([]byte, error)

func (*NullableWorkflowTaskAllOf) Set ¶

func (*NullableWorkflowTaskAllOf) UnmarshalJSON ¶

func (v *NullableWorkflowTaskAllOf) UnmarshalJSON(src []byte) error

func (*NullableWorkflowTaskAllOf) Unset ¶

func (v *NullableWorkflowTaskAllOf) Unset()

type NullableWorkspace ¶ added in v1.10.3

type NullableWorkspace struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspace ¶ added in v1.10.3

func NewNullableWorkspace(val *Workspace) *NullableWorkspace

func (NullableWorkspace) Get ¶ added in v1.10.3

func (v NullableWorkspace) Get() *Workspace

func (NullableWorkspace) IsSet ¶ added in v1.10.3

func (v NullableWorkspace) IsSet() bool

func (NullableWorkspace) MarshalJSON ¶ added in v1.10.3

func (v NullableWorkspace) MarshalJSON() ([]byte, error)

func (*NullableWorkspace) Set ¶ added in v1.10.3

func (v *NullableWorkspace) Set(val *Workspace)

func (*NullableWorkspace) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWorkspace) UnmarshalJSON(src []byte) error

func (*NullableWorkspace) Unset ¶ added in v1.10.3

func (v *NullableWorkspace) Unset()

type NullableWorkspacePage ¶ added in v1.10.3

type NullableWorkspacePage struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspacePage ¶ added in v1.10.3

func NewNullableWorkspacePage(val *WorkspacePage) *NullableWorkspacePage

func (NullableWorkspacePage) Get ¶ added in v1.10.3

func (NullableWorkspacePage) IsSet ¶ added in v1.10.3

func (v NullableWorkspacePage) IsSet() bool

func (NullableWorkspacePage) MarshalJSON ¶ added in v1.10.3

func (v NullableWorkspacePage) MarshalJSON() ([]byte, error)

func (*NullableWorkspacePage) Set ¶ added in v1.10.3

func (v *NullableWorkspacePage) Set(val *WorkspacePage)

func (*NullableWorkspacePage) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWorkspacePage) UnmarshalJSON(src []byte) error

func (*NullableWorkspacePage) Unset ¶ added in v1.10.3

func (v *NullableWorkspacePage) Unset()

type NullableWorkspacePageAllOf ¶ added in v1.10.3

type NullableWorkspacePageAllOf struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspacePageAllOf ¶ added in v1.10.3

func NewNullableWorkspacePageAllOf(val *WorkspacePageAllOf) *NullableWorkspacePageAllOf

func (NullableWorkspacePageAllOf) Get ¶ added in v1.10.3

func (NullableWorkspacePageAllOf) IsSet ¶ added in v1.10.3

func (v NullableWorkspacePageAllOf) IsSet() bool

func (NullableWorkspacePageAllOf) MarshalJSON ¶ added in v1.10.3

func (v NullableWorkspacePageAllOf) MarshalJSON() ([]byte, error)

func (*NullableWorkspacePageAllOf) Set ¶ added in v1.10.3

func (*NullableWorkspacePageAllOf) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWorkspacePageAllOf) UnmarshalJSON(src []byte) error

func (*NullableWorkspacePageAllOf) Unset ¶ added in v1.10.3

func (v *NullableWorkspacePageAllOf) Unset()

type NullableWriteFileParams ¶ added in v1.10.3

type NullableWriteFileParams struct {
	// contains filtered or unexported fields
}

func NewNullableWriteFileParams ¶ added in v1.10.3

func NewNullableWriteFileParams(val *WriteFileParams) *NullableWriteFileParams

func (NullableWriteFileParams) Get ¶ added in v1.10.3

func (NullableWriteFileParams) IsSet ¶ added in v1.10.3

func (v NullableWriteFileParams) IsSet() bool

func (NullableWriteFileParams) MarshalJSON ¶ added in v1.10.3

func (v NullableWriteFileParams) MarshalJSON() ([]byte, error)

func (*NullableWriteFileParams) Set ¶ added in v1.10.3

func (*NullableWriteFileParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWriteFileParams) UnmarshalJSON(src []byte) error

func (*NullableWriteFileParams) Unset ¶ added in v1.10.3

func (v *NullableWriteFileParams) Unset()

type NullableWriteSQLParams ¶ added in v1.10.3

type NullableWriteSQLParams struct {
	// contains filtered or unexported fields
}

func NewNullableWriteSQLParams ¶ added in v1.10.3

func NewNullableWriteSQLParams(val *WriteSQLParams) *NullableWriteSQLParams

func (NullableWriteSQLParams) Get ¶ added in v1.10.3

func (NullableWriteSQLParams) IsSet ¶ added in v1.10.3

func (v NullableWriteSQLParams) IsSet() bool

func (NullableWriteSQLParams) MarshalJSON ¶ added in v1.10.3

func (v NullableWriteSQLParams) MarshalJSON() ([]byte, error)

func (*NullableWriteSQLParams) Set ¶ added in v1.10.3

func (*NullableWriteSQLParams) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWriteSQLParams) UnmarshalJSON(src []byte) error

func (*NullableWriteSQLParams) Unset ¶ added in v1.10.3

func (v *NullableWriteSQLParams) Unset()

type NullableWriteTask ¶ added in v1.10.3

type NullableWriteTask struct {
	// contains filtered or unexported fields
}

func NewNullableWriteTask ¶ added in v1.10.3

func NewNullableWriteTask(val *WriteTask) *NullableWriteTask

func (NullableWriteTask) Get ¶ added in v1.10.3

func (v NullableWriteTask) Get() *WriteTask

func (NullableWriteTask) IsSet ¶ added in v1.10.3

func (v NullableWriteTask) IsSet() bool

func (NullableWriteTask) MarshalJSON ¶ added in v1.10.3

func (v NullableWriteTask) MarshalJSON() ([]byte, error)

func (*NullableWriteTask) Set ¶ added in v1.10.3

func (v *NullableWriteTask) Set(val *WriteTask)

func (*NullableWriteTask) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWriteTask) UnmarshalJSON(src []byte) error

func (*NullableWriteTask) Unset ¶ added in v1.10.3

func (v *NullableWriteTask) Unset()

type NullableWriteTaskParameters ¶ added in v1.10.3

type NullableWriteTaskParameters struct {
	// contains filtered or unexported fields
}

func NewNullableWriteTaskParameters ¶ added in v1.10.3

func NewNullableWriteTaskParameters(val *WriteTaskParameters) *NullableWriteTaskParameters

func (NullableWriteTaskParameters) Get ¶ added in v1.10.3

func (NullableWriteTaskParameters) IsSet ¶ added in v1.10.3

func (NullableWriteTaskParameters) MarshalJSON ¶ added in v1.10.3

func (v NullableWriteTaskParameters) MarshalJSON() ([]byte, error)

func (*NullableWriteTaskParameters) Set ¶ added in v1.10.3

func (*NullableWriteTaskParameters) UnmarshalJSON ¶ added in v1.10.3

func (v *NullableWriteTaskParameters) UnmarshalJSON(src []byte) error

func (*NullableWriteTaskParameters) Unset ¶ added in v1.10.3

func (v *NullableWriteTaskParameters) Unset()

type NullableXgboostOptions ¶

type NullableXgboostOptions struct {
	// contains filtered or unexported fields
}

func NewNullableXgboostOptions ¶

func NewNullableXgboostOptions(val *XgboostOptions) *NullableXgboostOptions

func (NullableXgboostOptions) Get ¶

func (NullableXgboostOptions) IsSet ¶

func (v NullableXgboostOptions) IsSet() bool

func (NullableXgboostOptions) MarshalJSON ¶

func (v NullableXgboostOptions) MarshalJSON() ([]byte, error)

func (*NullableXgboostOptions) Set ¶

func (*NullableXgboostOptions) UnmarshalJSON ¶

func (v *NullableXgboostOptions) UnmarshalJSON(src []byte) error

func (*NullableXgboostOptions) Unset ¶

func (v *NullableXgboostOptions) Unset()

type NullableXgboostOptionsAllOf ¶

type NullableXgboostOptionsAllOf struct {
	// contains filtered or unexported fields
}

func (NullableXgboostOptionsAllOf) Get ¶

func (NullableXgboostOptionsAllOf) IsSet ¶

func (NullableXgboostOptionsAllOf) MarshalJSON ¶

func (v NullableXgboostOptionsAllOf) MarshalJSON() ([]byte, error)

func (*NullableXgboostOptionsAllOf) Set ¶

func (*NullableXgboostOptionsAllOf) UnmarshalJSON ¶

func (v *NullableXgboostOptionsAllOf) UnmarshalJSON(src []byte) error

func (*NullableXgboostOptionsAllOf) Unset ¶

func (v *NullableXgboostOptionsAllOf) Unset()

type Options ¶

type Options struct {
	IOptions
	Env          *map[string]string `json:"env,omitempty"`
	DockerImage  *string            `json:"docker_image,omitempty"`
	InstanceType *string            `json:"instance_type,omitempty"`
	Type         *string            `json:"type,omitempty"`
}

Options struct for Options

func NewOptions ¶

func NewOptions() *Options

NewOptions instantiates a new Options 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 NewOptionsWithDefaults ¶

func NewOptionsWithDefaults() *Options

NewOptionsWithDefaults instantiates a new Options 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 (*Options) GetDockerImage ¶

func (o *Options) GetDockerImage() string

GetDockerImage returns the DockerImage field value if set, zero value otherwise.

func (*Options) GetDockerImageOk ¶

func (o *Options) GetDockerImageOk() (*string, bool)

GetDockerImageOk returns a tuple with the DockerImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Options) GetEnv ¶

func (o *Options) GetEnv() map[string]string

GetEnv returns the Env field value if set, zero value otherwise.

func (*Options) GetEnvOk ¶

func (o *Options) GetEnvOk() (*map[string]string, 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 (*Options) GetInstanceType ¶

func (o *Options) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*Options) GetInstanceTypeOk ¶

func (o *Options) GetInstanceTypeOk() (*string, bool)

GetInstanceTypeOk returns a tuple with the InstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Options) GetType ¶

func (o *Options) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Options) GetTypeOk ¶

func (o *Options) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Options) HasDockerImage ¶

func (o *Options) HasDockerImage() bool

HasDockerImage returns a boolean if a field has been set.

func (*Options) HasEnv ¶

func (o *Options) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*Options) HasInstanceType ¶

func (o *Options) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (*Options) HasType ¶

func (o *Options) HasType() bool

HasType returns a boolean if a field has been set.

func (Options) MarshalJSON ¶

func (o Options) MarshalJSON() ([]byte, error)

func (*Options) SetDockerImage ¶

func (o *Options) SetDockerImage(v string)

SetDockerImage gets a reference to the given string and assigns it to the DockerImage field.

func (*Options) SetEnv ¶

func (o *Options) SetEnv(v map[string]string)

SetEnv gets a reference to the given map[string]string and assigns it to the Env field.

func (*Options) SetInstanceType ¶

func (o *Options) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (*Options) SetType ¶

func (o *Options) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Options) ToMap ¶ added in v1.10.3

func (o Options) ToMap() (map[string]interface{}, error)

type OrFilter ¶ added in v1.10.3

type OrFilter struct {
	// Operator for OR filter.
	Type *string `json:"type,omitempty"`
	// Condition for OR filter.
	Conditions []ANDConditionInner `json:"conditions"`
}

OrFilter Filter values that verify at least one condition. Attributes ---------- type : RelationalOperatorType Type of the filter. conditions : union_filter Union of all relational filters.

func NewOrFilter ¶ added in v1.10.3

func NewOrFilter(conditions []ANDConditionInner) *OrFilter

NewOrFilter instantiates a new OrFilter 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 NewOrFilterWithDefaults ¶ added in v1.10.3

func NewOrFilterWithDefaults() *OrFilter

NewOrFilterWithDefaults instantiates a new OrFilter 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 (*OrFilter) GetConditions ¶ added in v1.10.3

func (o *OrFilter) GetConditions() []ANDConditionInner

GetConditions returns the Conditions field value

func (*OrFilter) GetConditionsOk ¶ added in v1.10.3

func (o *OrFilter) GetConditionsOk() ([]ANDConditionInner, bool)

GetConditionsOk returns a tuple with the Conditions field value and a boolean to check if the value has been set.

func (*OrFilter) GetType ¶ added in v1.10.3

func (o *OrFilter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*OrFilter) GetTypeOk ¶ added in v1.10.3

func (o *OrFilter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrFilter) HasType ¶ added in v1.10.3

func (o *OrFilter) HasType() bool

HasType returns a boolean if a field has been set.

func (OrFilter) MarshalJSON ¶ added in v1.10.3

func (o OrFilter) MarshalJSON() ([]byte, error)

func (*OrFilter) SetConditions ¶ added in v1.10.3

func (o *OrFilter) SetConditions(v []ANDConditionInner)

SetConditions sets field value

func (*OrFilter) SetType ¶ added in v1.10.3

func (o *OrFilter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (OrFilter) ToMap ¶ added in v1.10.3

func (o OrFilter) ToMap() (map[string]interface{}, error)

func (*OrFilter) UnmarshalJSON ¶ added in v1.10.3

func (o *OrFilter) UnmarshalJSON(bytes []byte) (err error)

type OracleOptions ¶ added in v1.10.3

type OracleOptions struct {
	DataWarehouseOptions
	Host     *string  `json:"host,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Database *string  `json:"database,omitempty"`
	Schema   *string  `json:"schema,omitempty"`
	Type     *string  `json:"type,omitempty"`
}

OracleOptions struct for OracleOptions

func NewOracleOptions ¶ added in v1.10.3

func NewOracleOptions() *OracleOptions

NewOracleOptions instantiates a new OracleOptions 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 NewOracleOptionsWithDefaults ¶ added in v1.10.3

func NewOracleOptionsWithDefaults() *OracleOptions

NewOracleOptionsWithDefaults instantiates a new OracleOptions 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 (*OracleOptions) GetDatabase ¶ added in v1.10.3

func (o *OracleOptions) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*OracleOptions) GetDatabaseOk ¶ added in v1.10.3

func (o *OracleOptions) GetDatabaseOk() (*string, bool)

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleOptions) GetHost ¶ added in v1.10.3

func (o *OracleOptions) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*OracleOptions) GetHostOk ¶ added in v1.10.3

func (o *OracleOptions) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleOptions) GetPort ¶ added in v1.10.3

func (o *OracleOptions) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*OracleOptions) GetPortOk ¶ added in v1.10.3

func (o *OracleOptions) GetPortOk() (*float32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleOptions) GetSchema ¶ added in v1.10.3

func (o *OracleOptions) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*OracleOptions) GetSchemaOk ¶ added in v1.10.3

func (o *OracleOptions) 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 (*OracleOptions) GetType ¶ added in v1.10.3

func (o *OracleOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*OracleOptions) GetTypeOk ¶ added in v1.10.3

func (o *OracleOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleOptions) HasDatabase ¶ added in v1.10.3

func (o *OracleOptions) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*OracleOptions) HasHost ¶ added in v1.10.3

func (o *OracleOptions) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*OracleOptions) HasPort ¶ added in v1.10.3

func (o *OracleOptions) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*OracleOptions) HasSchema ¶ added in v1.10.3

func (o *OracleOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*OracleOptions) HasType ¶ added in v1.10.3

func (o *OracleOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (OracleOptions) MarshalJSON ¶ added in v1.10.3

func (o OracleOptions) MarshalJSON() ([]byte, error)

func (*OracleOptions) SetDatabase ¶ added in v1.10.3

func (o *OracleOptions) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*OracleOptions) SetHost ¶ added in v1.10.3

func (o *OracleOptions) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*OracleOptions) SetPort ¶ added in v1.10.3

func (o *OracleOptions) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

func (*OracleOptions) SetSchema ¶ added in v1.10.3

func (o *OracleOptions) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*OracleOptions) SetType ¶ added in v1.10.3

func (o *OracleOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (OracleOptions) ToMap ¶ added in v1.10.3

func (o OracleOptions) ToMap() (map[string]interface{}, error)

type OracleOptionsAllOf ¶ added in v1.10.3

type OracleOptionsAllOf struct {
	Type *string `json:"type,omitempty"`
}

OracleOptionsAllOf struct for OracleOptionsAllOf

func NewOracleOptionsAllOf ¶ added in v1.10.3

func NewOracleOptionsAllOf() *OracleOptionsAllOf

NewOracleOptionsAllOf instantiates a new OracleOptionsAllOf 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 NewOracleOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewOracleOptionsAllOfWithDefaults() *OracleOptionsAllOf

NewOracleOptionsAllOfWithDefaults instantiates a new OracleOptionsAllOf 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 (*OracleOptionsAllOf) GetType ¶ added in v1.10.3

func (o *OracleOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*OracleOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *OracleOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OracleOptionsAllOf) HasType ¶ added in v1.10.3

func (o *OracleOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (OracleOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o OracleOptionsAllOf) MarshalJSON() ([]byte, error)

func (*OracleOptionsAllOf) SetType ¶ added in v1.10.3

func (o *OracleOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type OrderParams ¶ added in v1.10.3

type OrderParams struct {
	// List of dictionary. For each element the 'name'         corresponds to the columns to order and         the 'direction' the direction for sorting (asc or desc).
	Columns []map[string]string `json:"columns"`
}

OrderParams struct for OrderParams

func NewOrderParams ¶ added in v1.10.3

func NewOrderParams(columns []map[string]string) *OrderParams

NewOrderParams instantiates a new OrderParams 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 NewOrderParamsWithDefaults ¶ added in v1.10.3

func NewOrderParamsWithDefaults() *OrderParams

NewOrderParamsWithDefaults instantiates a new OrderParams 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 (*OrderParams) GetColumns ¶ added in v1.10.3

func (o *OrderParams) GetColumns() []map[string]string

GetColumns returns the Columns field value

func (*OrderParams) GetColumnsOk ¶ added in v1.10.3

func (o *OrderParams) GetColumnsOk() ([]map[string]string, bool)

GetColumnsOk returns a tuple with the Columns field value and a boolean to check if the value has been set.

func (OrderParams) MarshalJSON ¶ added in v1.10.3

func (o OrderParams) MarshalJSON() ([]byte, error)

func (*OrderParams) SetColumns ¶ added in v1.10.3

func (o *OrderParams) SetColumns(v []map[string]string)

SetColumns sets field value

func (OrderParams) ToMap ¶ added in v1.10.3

func (o OrderParams) ToMap() (map[string]interface{}, error)

func (*OrderParams) UnmarshalJSON ¶ added in v1.10.3

func (o *OrderParams) UnmarshalJSON(bytes []byte) (err error)

type OrderTask ¶ added in v1.10.3

type OrderTask struct {
	// Identifier of the task.
	Id     string      `json:"id"`
	Params OrderParams `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the order task.
	Type *string `json:"type,omitempty"`
}

OrderTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewOrderTask ¶ added in v1.10.3

func NewOrderTask(id string, params OrderParams, dependency []string) *OrderTask

NewOrderTask instantiates a new OrderTask 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 NewOrderTaskWithDefaults ¶ added in v1.10.3

func NewOrderTaskWithDefaults() *OrderTask

NewOrderTaskWithDefaults instantiates a new OrderTask 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 (*OrderTask) GetDependency ¶ added in v1.10.3

func (o *OrderTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*OrderTask) GetDependencyOk ¶ added in v1.10.3

func (o *OrderTask) GetDependencyOk() ([]string, bool)

GetDependencyOk returns a tuple with the Dependency field value and a boolean to check if the value has been set.

func (*OrderTask) GetId ¶ added in v1.10.3

func (o *OrderTask) GetId() string

GetId returns the Id field value

func (*OrderTask) GetIdOk ¶ added in v1.10.3

func (o *OrderTask) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*OrderTask) GetParams ¶ added in v1.10.3

func (o *OrderTask) GetParams() OrderParams

GetParams returns the Params field value

func (*OrderTask) GetParamsOk ¶ added in v1.10.3

func (o *OrderTask) GetParamsOk() (*OrderParams, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (*OrderTask) GetType ¶ added in v1.10.3

func (o *OrderTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*OrderTask) GetTypeOk ¶ added in v1.10.3

func (o *OrderTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrderTask) HasType ¶ added in v1.10.3

func (o *OrderTask) HasType() bool

HasType returns a boolean if a field has been set.

func (OrderTask) MarshalJSON ¶ added in v1.10.3

func (o OrderTask) MarshalJSON() ([]byte, error)

func (*OrderTask) SetDependency ¶ added in v1.10.3

func (o *OrderTask) SetDependency(v []string)

SetDependency sets field value

func (*OrderTask) SetId ¶ added in v1.10.3

func (o *OrderTask) SetId(v string)

SetId sets field value

func (*OrderTask) SetParams ¶ added in v1.10.3

func (o *OrderTask) SetParams(v OrderParams)

SetParams sets field value

func (*OrderTask) SetType ¶ added in v1.10.3

func (o *OrderTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (OrderTask) ToMap ¶ added in v1.10.3

func (o OrderTask) ToMap() (map[string]interface{}, error)

func (*OrderTask) UnmarshalJSON ¶ added in v1.10.3

func (o *OrderTask) UnmarshalJSON(bytes []byte) (err error)

type Page ¶

type Page struct {
	Number *int32 `json:"number,omitempty"`
	Size   *int32 `json:"size,omitempty"`
}

Page minimal Page response without content property

func NewPage ¶

func NewPage() *Page

NewPage instantiates a new Page 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 NewPageWithDefaults ¶

func NewPageWithDefaults() *Page

NewPageWithDefaults instantiates a new Page 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 (*Page) GetNumber ¶

func (o *Page) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*Page) GetNumberOk ¶

func (o *Page) GetNumberOk() (*int32, bool)

GetNumberOk returns a tuple with the Number field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) GetSize ¶

func (o *Page) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*Page) GetSizeOk ¶

func (o *Page) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Page) HasNumber ¶

func (o *Page) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*Page) HasSize ¶

func (o *Page) HasSize() bool

HasSize returns a boolean if a field has been set.

func (Page) MarshalJSON ¶

func (o Page) MarshalJSON() ([]byte, error)

func (*Page) SetNumber ¶

func (o *Page) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*Page) SetSize ¶

func (o *Page) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (Page) ToMap ¶ added in v1.10.3

func (o Page) ToMap() (map[string]interface{}, error)

type Pageable ¶

type Pageable struct {
	Page *int32 `json:"page,omitempty"`
	Size *int32 `json:"size,omitempty"`
}

Pageable minimal Pageable query parameters

func NewPageable ¶

func NewPageable() *Pageable

NewPageable instantiates a new Pageable 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 NewPageableWithDefaults ¶

func NewPageableWithDefaults() *Pageable

NewPageableWithDefaults instantiates a new Pageable 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 (*Pageable) GetPage ¶

func (o *Pageable) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*Pageable) GetPageOk ¶

func (o *Pageable) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pageable) GetSize ¶

func (o *Pageable) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*Pageable) GetSizeOk ¶

func (o *Pageable) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pageable) HasPage ¶

func (o *Pageable) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*Pageable) HasSize ¶

func (o *Pageable) HasSize() bool

HasSize returns a boolean if a field has been set.

func (Pageable) MarshalJSON ¶

func (o Pageable) MarshalJSON() ([]byte, error)

func (*Pageable) SetPage ¶

func (o *Pageable) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*Pageable) SetSize ¶

func (o *Pageable) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

type Parameter ¶ added in v1.10.3

type Parameter struct {
	Name        string `json:"name"`
	Type        string `json:"type"`
	Description string `json:"description"`
	Example     string `json:"example"`
}

Parameter Parameter object.

func NewParameter ¶ added in v1.10.3

func NewParameter(name string, type_ string, description string, example string) *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 ¶ added in v1.10.3

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) GetDescription ¶ added in v1.10.3

func (o *Parameter) GetDescription() string

GetDescription returns the Description field value

func (*Parameter) GetDescriptionOk ¶ added in v1.10.3

func (o *Parameter) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*Parameter) GetExample ¶ added in v1.10.3

func (o *Parameter) GetExample() string

GetExample returns the Example field value

func (*Parameter) GetExampleOk ¶ added in v1.10.3

func (o *Parameter) GetExampleOk() (*string, bool)

GetExampleOk returns a tuple with the Example field value and a boolean to check if the value has been set.

func (*Parameter) GetName ¶ added in v1.10.3

func (o *Parameter) GetName() string

GetName returns the Name field value

func (*Parameter) GetNameOk ¶ added in v1.10.3

func (o *Parameter) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Parameter) GetType ¶ added in v1.10.3

func (o *Parameter) GetType() string

GetType returns the Type field value

func (*Parameter) GetTypeOk ¶ added in v1.10.3

func (o *Parameter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (Parameter) MarshalJSON ¶ added in v1.10.3

func (o Parameter) MarshalJSON() ([]byte, error)

func (*Parameter) SetDescription ¶ added in v1.10.3

func (o *Parameter) SetDescription(v string)

SetDescription sets field value

func (*Parameter) SetExample ¶ added in v1.10.3

func (o *Parameter) SetExample(v string)

SetExample sets field value

func (*Parameter) SetName ¶ added in v1.10.3

func (o *Parameter) SetName(v string)

SetName sets field value

func (*Parameter) SetType ¶ added in v1.10.3

func (o *Parameter) SetType(v string)

SetType sets field value

func (Parameter) ToMap ¶ added in v1.10.3

func (o Parameter) ToMap() (map[string]interface{}, error)

func (*Parameter) UnmarshalJSON ¶ added in v1.10.3

func (o *Parameter) UnmarshalJSON(bytes []byte) (err error)

type ParametersToWriteAFile ¶ added in v1.10.3

type ParametersToWriteAFile struct {
	JoblibReader *JoblibReader
	PickleReader *PickleReader
}

ParametersToWriteAFile Options for reading a file (header, file path, separator, delimiter, ...).

func (*ParametersToWriteAFile) MarshalJSON ¶ added in v1.10.3

func (src *ParametersToWriteAFile) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ParametersToWriteAFile) UnmarshalJSON ¶ added in v1.10.3

func (dst *ParametersToWriteAFile) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ParametersToWriteAFile1 ¶ added in v1.10.3

type ParametersToWriteAFile1 struct {
	CsvReader     *CsvReader
	ParquetReader *ParquetReader
}

ParametersToWriteAFile1 - Options for reading a file (header, file path, separator, delimiter, ...).

func CsvReaderAsParametersToWriteAFile1 ¶ added in v1.10.3

func CsvReaderAsParametersToWriteAFile1(v *CsvReader) ParametersToWriteAFile1

CsvReaderAsParametersToWriteAFile1 is a convenience function that returns CsvReader wrapped in ParametersToWriteAFile1

func ParquetReaderAsParametersToWriteAFile1 ¶ added in v1.10.3

func ParquetReaderAsParametersToWriteAFile1(v *ParquetReader) ParametersToWriteAFile1

ParquetReaderAsParametersToWriteAFile1 is a convenience function that returns ParquetReader wrapped in ParametersToWriteAFile1

func (*ParametersToWriteAFile1) GetActualInstance ¶ added in v1.10.3

func (obj *ParametersToWriteAFile1) GetActualInstance() interface{}

Get the actual instance

func (ParametersToWriteAFile1) MarshalJSON ¶ added in v1.10.3

func (src ParametersToWriteAFile1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ParametersToWriteAFile1) UnmarshalJSON ¶ added in v1.10.3

func (dst *ParametersToWriteAFile1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ParametersToWriteAFile2 ¶ added in v1.10.3

type ParametersToWriteAFile2 struct {
	JoblibWriter *JoblibWriter
	PickleWriter *PickleWriter
}

ParametersToWriteAFile2 Options for reading a file (header, file path, separator, delimiter, ...).

func (*ParametersToWriteAFile2) MarshalJSON ¶ added in v1.10.3

func (src *ParametersToWriteAFile2) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ParametersToWriteAFile2) UnmarshalJSON ¶ added in v1.10.3

func (dst *ParametersToWriteAFile2) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type ParametersToWriteAFile3 ¶ added in v1.10.3

type ParametersToWriteAFile3 struct {
	CsvWriter     *CsvWriter
	ParquetWriter *ParquetWriter
}

ParametersToWriteAFile3 - Options for writing a file (header, file path, separator, delimiter, ...).

func CsvWriterAsParametersToWriteAFile3 ¶ added in v1.10.3

func CsvWriterAsParametersToWriteAFile3(v *CsvWriter) ParametersToWriteAFile3

CsvWriterAsParametersToWriteAFile3 is a convenience function that returns CsvWriter wrapped in ParametersToWriteAFile3

func ParquetWriterAsParametersToWriteAFile3 ¶ added in v1.10.3

func ParquetWriterAsParametersToWriteAFile3(v *ParquetWriter) ParametersToWriteAFile3

ParquetWriterAsParametersToWriteAFile3 is a convenience function that returns ParquetWriter wrapped in ParametersToWriteAFile3

func (*ParametersToWriteAFile3) GetActualInstance ¶ added in v1.10.3

func (obj *ParametersToWriteAFile3) GetActualInstance() interface{}

Get the actual instance

func (ParametersToWriteAFile3) MarshalJSON ¶ added in v1.10.3

func (src ParametersToWriteAFile3) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ParametersToWriteAFile3) UnmarshalJSON ¶ added in v1.10.3

func (dst *ParametersToWriteAFile3) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ParquetReader ¶ added in v1.10.3

type ParquetReader struct {
	// Define file type for PARQUET.
	Type *string `json:"type,omitempty"`
	// Path to PARQUET file.
	Path string `json:"path"`
}

ParquetReader struct for ParquetReader

func NewParquetReader ¶ added in v1.10.3

func NewParquetReader(path string) *ParquetReader

NewParquetReader instantiates a new ParquetReader 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 NewParquetReaderWithDefaults ¶ added in v1.10.3

func NewParquetReaderWithDefaults() *ParquetReader

NewParquetReaderWithDefaults instantiates a new ParquetReader 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 (*ParquetReader) GetPath ¶ added in v1.10.3

func (o *ParquetReader) GetPath() string

GetPath returns the Path field value

func (*ParquetReader) GetPathOk ¶ added in v1.10.3

func (o *ParquetReader) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*ParquetReader) GetType ¶ added in v1.10.3

func (o *ParquetReader) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ParquetReader) GetTypeOk ¶ added in v1.10.3

func (o *ParquetReader) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParquetReader) HasType ¶ added in v1.10.3

func (o *ParquetReader) HasType() bool

HasType returns a boolean if a field has been set.

func (ParquetReader) MarshalJSON ¶ added in v1.10.3

func (o ParquetReader) MarshalJSON() ([]byte, error)

func (*ParquetReader) SetPath ¶ added in v1.10.3

func (o *ParquetReader) SetPath(v string)

SetPath sets field value

func (*ParquetReader) SetType ¶ added in v1.10.3

func (o *ParquetReader) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ParquetReader) ToMap ¶ added in v1.10.3

func (o ParquetReader) ToMap() (map[string]interface{}, error)

func (*ParquetReader) UnmarshalJSON ¶ added in v1.10.3

func (o *ParquetReader) UnmarshalJSON(bytes []byte) (err error)

type ParquetWriter ¶ added in v1.10.3

type ParquetWriter struct {
	// How to partition the dataset.
	PartitionBy []string  `json:"partition_by,omitempty"`
	Mode        *SaveMode `json:"mode,omitempty"`
	// Type of on-the-fly compression to use.
	Compression *string `json:"compression,omitempty"`
	// Define file type for PARQUET.
	Type *string `json:"type,omitempty"`
	// Path to PARQUET file.
	Path string `json:"path"`
}

ParquetWriter struct for ParquetWriter

func NewParquetWriter ¶ added in v1.10.3

func NewParquetWriter(path string) *ParquetWriter

NewParquetWriter instantiates a new ParquetWriter 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 NewParquetWriterWithDefaults ¶ added in v1.10.3

func NewParquetWriterWithDefaults() *ParquetWriter

NewParquetWriterWithDefaults instantiates a new ParquetWriter 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 (*ParquetWriter) GetCompression ¶ added in v1.10.3

func (o *ParquetWriter) GetCompression() string

GetCompression returns the Compression field value if set, zero value otherwise.

func (*ParquetWriter) GetCompressionOk ¶ added in v1.10.3

func (o *ParquetWriter) GetCompressionOk() (*string, bool)

GetCompressionOk returns a tuple with the Compression field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParquetWriter) GetMode ¶ added in v1.10.3

func (o *ParquetWriter) GetMode() SaveMode

GetMode returns the Mode field value if set, zero value otherwise.

func (*ParquetWriter) GetModeOk ¶ added in v1.10.3

func (o *ParquetWriter) GetModeOk() (*SaveMode, bool)

GetModeOk returns a tuple with the Mode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParquetWriter) GetPartitionBy ¶ added in v1.10.3

func (o *ParquetWriter) GetPartitionBy() []string

GetPartitionBy returns the PartitionBy field value if set, zero value otherwise.

func (*ParquetWriter) GetPartitionByOk ¶ added in v1.10.3

func (o *ParquetWriter) GetPartitionByOk() ([]string, bool)

GetPartitionByOk returns a tuple with the PartitionBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParquetWriter) GetPath ¶ added in v1.10.3

func (o *ParquetWriter) GetPath() string

GetPath returns the Path field value

func (*ParquetWriter) GetPathOk ¶ added in v1.10.3

func (o *ParquetWriter) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*ParquetWriter) GetType ¶ added in v1.10.3

func (o *ParquetWriter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ParquetWriter) GetTypeOk ¶ added in v1.10.3

func (o *ParquetWriter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParquetWriter) HasCompression ¶ added in v1.10.3

func (o *ParquetWriter) HasCompression() bool

HasCompression returns a boolean if a field has been set.

func (*ParquetWriter) HasMode ¶ added in v1.10.3

func (o *ParquetWriter) HasMode() bool

HasMode returns a boolean if a field has been set.

func (*ParquetWriter) HasPartitionBy ¶ added in v1.10.3

func (o *ParquetWriter) HasPartitionBy() bool

HasPartitionBy returns a boolean if a field has been set.

func (*ParquetWriter) HasType ¶ added in v1.10.3

func (o *ParquetWriter) HasType() bool

HasType returns a boolean if a field has been set.

func (ParquetWriter) MarshalJSON ¶ added in v1.10.3

func (o ParquetWriter) MarshalJSON() ([]byte, error)

func (*ParquetWriter) SetCompression ¶ added in v1.10.3

func (o *ParquetWriter) SetCompression(v string)

SetCompression gets a reference to the given string and assigns it to the Compression field.

func (*ParquetWriter) SetMode ¶ added in v1.10.3

func (o *ParquetWriter) SetMode(v SaveMode)

SetMode gets a reference to the given SaveMode and assigns it to the Mode field.

func (*ParquetWriter) SetPartitionBy ¶ added in v1.10.3

func (o *ParquetWriter) SetPartitionBy(v []string)

SetPartitionBy gets a reference to the given []string and assigns it to the PartitionBy field.

func (*ParquetWriter) SetPath ¶ added in v1.10.3

func (o *ParquetWriter) SetPath(v string)

SetPath sets field value

func (*ParquetWriter) SetType ¶ added in v1.10.3

func (o *ParquetWriter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ParquetWriter) ToMap ¶ added in v1.10.3

func (o ParquetWriter) ToMap() (map[string]interface{}, error)

func (*ParquetWriter) UnmarshalJSON ¶ added in v1.10.3

func (o *ParquetWriter) UnmarshalJSON(bytes []byte) (err error)

type Patch ¶

type Patch struct {
	Op    *string `json:"op,omitempty"`
	From  *string `json:"from,omitempty"`
	Path  *string `json:"path,omitempty"`
	Value *string `json:"value,omitempty"`
}

Patch struct for Patch

func NewPatch ¶

func NewPatch() *Patch

NewPatch instantiates a new Patch 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 NewPatchWithDefaults ¶

func NewPatchWithDefaults() *Patch

NewPatchWithDefaults instantiates a new Patch 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 (*Patch) GetFrom ¶

func (o *Patch) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*Patch) GetFromOk ¶

func (o *Patch) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Patch) GetOp ¶

func (o *Patch) GetOp() string

GetOp returns the Op field value if set, zero value otherwise.

func (*Patch) GetOpOk ¶

func (o *Patch) GetOpOk() (*string, bool)

GetOpOk returns a tuple with the Op field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Patch) GetPath ¶

func (o *Patch) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*Patch) GetPathOk ¶

func (o *Patch) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Patch) GetValue ¶

func (o *Patch) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Patch) GetValueOk ¶

func (o *Patch) 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 (*Patch) HasFrom ¶

func (o *Patch) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*Patch) HasOp ¶

func (o *Patch) HasOp() bool

HasOp returns a boolean if a field has been set.

func (*Patch) HasPath ¶

func (o *Patch) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*Patch) HasValue ¶

func (o *Patch) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Patch) MarshalJSON ¶

func (o Patch) MarshalJSON() ([]byte, error)

func (*Patch) SetFrom ¶

func (o *Patch) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*Patch) SetOp ¶

func (o *Patch) SetOp(v string)

SetOp gets a reference to the given string and assigns it to the Op field.

func (*Patch) SetPath ¶

func (o *Patch) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*Patch) SetValue ¶

func (o *Patch) SetValue(v string)

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (Patch) ToMap ¶ added in v1.10.3

func (o Patch) ToMap() (map[string]interface{}, error)

type Payment ¶ added in v1.10.3

type Payment struct {
	Currency               *string                           `json:"currency,omitempty"`
	Amount                 *string                           `json:"amount,omitempty"`
	Provider               *string                           `json:"provider,omitempty"`
	Status                 *string                           `json:"status,omitempty"`
	RemotePaymentHistoryId *string                           `json:"remote_payment_history_id,omitempty"`
	Metadata               map[string]map[string]interface{} `json:"metadata,omitempty"`
	Created                *time.Time                        `json:"created,omitempty"`
	Updated                *time.Time                        `json:"updated,omitempty"`
}

Payment struct for Payment

func NewPayment ¶ added in v1.10.3

func NewPayment() *Payment

NewPayment instantiates a new Payment 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 NewPaymentWithDefaults ¶ added in v1.10.3

func NewPaymentWithDefaults() *Payment

NewPaymentWithDefaults instantiates a new Payment 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 (*Payment) GetAmount ¶ added in v1.10.3

func (o *Payment) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*Payment) GetAmountOk ¶ added in v1.10.3

func (o *Payment) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Payment) GetCreated ¶ added in v1.10.3

func (o *Payment) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Payment) GetCreatedOk ¶ added in v1.10.3

func (o *Payment) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Payment) GetCurrency ¶ added in v1.10.3

func (o *Payment) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*Payment) GetCurrencyOk ¶ added in v1.10.3

func (o *Payment) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Payment) GetMetadata ¶ added in v1.10.3

func (o *Payment) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Payment) GetMetadataOk ¶ added in v1.10.3

func (o *Payment) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Payment) GetProvider ¶ added in v1.10.3

func (o *Payment) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*Payment) GetProviderOk ¶ added in v1.10.3

func (o *Payment) 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 (*Payment) GetRemotePaymentHistoryId ¶ added in v1.10.3

func (o *Payment) GetRemotePaymentHistoryId() string

GetRemotePaymentHistoryId returns the RemotePaymentHistoryId field value if set, zero value otherwise.

func (*Payment) GetRemotePaymentHistoryIdOk ¶ added in v1.10.3

func (o *Payment) GetRemotePaymentHistoryIdOk() (*string, bool)

GetRemotePaymentHistoryIdOk returns a tuple with the RemotePaymentHistoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Payment) GetStatus ¶ added in v1.10.3

func (o *Payment) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Payment) GetStatusOk ¶ added in v1.10.3

func (o *Payment) GetStatusOk() (*string, 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 (*Payment) GetUpdated ¶ added in v1.10.3

func (o *Payment) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Payment) GetUpdatedOk ¶ added in v1.10.3

func (o *Payment) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Payment) HasAmount ¶ added in v1.10.3

func (o *Payment) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*Payment) HasCreated ¶ added in v1.10.3

func (o *Payment) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Payment) HasCurrency ¶ added in v1.10.3

func (o *Payment) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*Payment) HasMetadata ¶ added in v1.10.3

func (o *Payment) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Payment) HasProvider ¶ added in v1.10.3

func (o *Payment) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*Payment) HasRemotePaymentHistoryId ¶ added in v1.10.3

func (o *Payment) HasRemotePaymentHistoryId() bool

HasRemotePaymentHistoryId returns a boolean if a field has been set.

func (*Payment) HasStatus ¶ added in v1.10.3

func (o *Payment) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Payment) HasUpdated ¶ added in v1.10.3

func (o *Payment) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Payment) MarshalJSON ¶ added in v1.10.3

func (o Payment) MarshalJSON() ([]byte, error)

func (*Payment) SetAmount ¶ added in v1.10.3

func (o *Payment) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*Payment) SetCreated ¶ added in v1.10.3

func (o *Payment) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Payment) SetCurrency ¶ added in v1.10.3

func (o *Payment) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*Payment) SetMetadata ¶ added in v1.10.3

func (o *Payment) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Payment) SetProvider ¶ added in v1.10.3

func (o *Payment) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*Payment) SetRemotePaymentHistoryId ¶ added in v1.10.3

func (o *Payment) SetRemotePaymentHistoryId(v string)

SetRemotePaymentHistoryId gets a reference to the given string and assigns it to the RemotePaymentHistoryId field.

func (*Payment) SetStatus ¶ added in v1.10.3

func (o *Payment) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Payment) SetUpdated ¶ added in v1.10.3

func (o *Payment) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Payment) ToMap ¶ added in v1.10.3

func (o Payment) ToMap() (map[string]interface{}, error)

type PaymentAPIService ¶ added in v1.10.3

type PaymentAPIService service

PaymentAPIService PaymentAPI service

func (*PaymentAPIService) FindPayments ¶ added in v1.10.3

FindPayments Retrieve all payments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPaymentsRequest

func (*PaymentAPIService) FindPaymentsExecute ¶ added in v1.10.3

func (a *PaymentAPIService) FindPaymentsExecute(r ApiFindPaymentsRequest) ([]Payment, *http.Response, error)

Execute executes the request

@return []Payment

type PaymentMethod ¶

type PaymentMethod struct {
	Id                    *string                           `json:"id,omitempty"`
	Details               *Details1                         `json:"details,omitempty"`
	Provider              *string                           `json:"provider,omitempty"`
	Status                *string                           `json:"status,omitempty"`
	RemotePaymentMethodId *string                           `json:"remote_payment_method_id,omitempty"`
	Favorite              *bool                             `json:"favorite,omitempty"`
	Metadata              map[string]map[string]interface{} `json:"metadata,omitempty"`
	Created               *time.Time                        `json:"created,omitempty"`
	Updated               *time.Time                        `json:"updated,omitempty"`
}

PaymentMethod struct for PaymentMethod

func NewPaymentMethod ¶

func NewPaymentMethod() *PaymentMethod

NewPaymentMethod instantiates a new PaymentMethod 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 NewPaymentMethodWithDefaults ¶

func NewPaymentMethodWithDefaults() *PaymentMethod

NewPaymentMethodWithDefaults instantiates a new PaymentMethod 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 (*PaymentMethod) GetCreated ¶ added in v1.10.3

func (o *PaymentMethod) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*PaymentMethod) GetCreatedOk ¶ added in v1.10.3

func (o *PaymentMethod) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetDetails ¶ added in v1.10.3

func (o *PaymentMethod) GetDetails() Details1

GetDetails returns the Details field value if set, zero value otherwise.

func (*PaymentMethod) GetDetailsOk ¶ added in v1.10.3

func (o *PaymentMethod) GetDetailsOk() (*Details1, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetFavorite ¶ added in v1.10.3

func (o *PaymentMethod) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*PaymentMethod) GetFavoriteOk ¶ added in v1.10.3

func (o *PaymentMethod) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetId ¶ added in v1.10.3

func (o *PaymentMethod) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PaymentMethod) GetIdOk ¶ added in v1.10.3

func (o *PaymentMethod) 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 (*PaymentMethod) GetMetadata ¶ added in v1.10.3

func (o *PaymentMethod) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*PaymentMethod) GetMetadataOk ¶ added in v1.10.3

func (o *PaymentMethod) GetMetadataOk() (map[string]map[string]interface{}, 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 (*PaymentMethod) GetProvider ¶ added in v1.10.3

func (o *PaymentMethod) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*PaymentMethod) GetProviderOk ¶ added in v1.10.3

func (o *PaymentMethod) 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 (*PaymentMethod) GetRemotePaymentMethodId ¶ added in v1.10.3

func (o *PaymentMethod) GetRemotePaymentMethodId() string

GetRemotePaymentMethodId returns the RemotePaymentMethodId field value if set, zero value otherwise.

func (*PaymentMethod) GetRemotePaymentMethodIdOk ¶ added in v1.10.3

func (o *PaymentMethod) GetRemotePaymentMethodIdOk() (*string, bool)

GetRemotePaymentMethodIdOk returns a tuple with the RemotePaymentMethodId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetStatus ¶ added in v1.10.3

func (o *PaymentMethod) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*PaymentMethod) GetStatusOk ¶ added in v1.10.3

func (o *PaymentMethod) GetStatusOk() (*string, 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 (*PaymentMethod) GetUpdated ¶ added in v1.10.3

func (o *PaymentMethod) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*PaymentMethod) GetUpdatedOk ¶ added in v1.10.3

func (o *PaymentMethod) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) HasCreated ¶ added in v1.10.3

func (o *PaymentMethod) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*PaymentMethod) HasDetails ¶ added in v1.10.3

func (o *PaymentMethod) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*PaymentMethod) HasFavorite ¶ added in v1.10.3

func (o *PaymentMethod) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*PaymentMethod) HasId ¶ added in v1.10.3

func (o *PaymentMethod) HasId() bool

HasId returns a boolean if a field has been set.

func (*PaymentMethod) HasMetadata ¶ added in v1.10.3

func (o *PaymentMethod) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*PaymentMethod) HasProvider ¶ added in v1.10.3

func (o *PaymentMethod) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*PaymentMethod) HasRemotePaymentMethodId ¶ added in v1.10.3

func (o *PaymentMethod) HasRemotePaymentMethodId() bool

HasRemotePaymentMethodId returns a boolean if a field has been set.

func (*PaymentMethod) HasStatus ¶ added in v1.10.3

func (o *PaymentMethod) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*PaymentMethod) HasUpdated ¶ added in v1.10.3

func (o *PaymentMethod) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (PaymentMethod) MarshalJSON ¶

func (o PaymentMethod) MarshalJSON() ([]byte, error)

func (*PaymentMethod) SetCreated ¶ added in v1.10.3

func (o *PaymentMethod) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*PaymentMethod) SetDetails ¶ added in v1.10.3

func (o *PaymentMethod) SetDetails(v Details1)

SetDetails gets a reference to the given Details1 and assigns it to the Details field.

func (*PaymentMethod) SetFavorite ¶ added in v1.10.3

func (o *PaymentMethod) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*PaymentMethod) SetId ¶ added in v1.10.3

func (o *PaymentMethod) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PaymentMethod) SetMetadata ¶ added in v1.10.3

func (o *PaymentMethod) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*PaymentMethod) SetProvider ¶ added in v1.10.3

func (o *PaymentMethod) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*PaymentMethod) SetRemotePaymentMethodId ¶ added in v1.10.3

func (o *PaymentMethod) SetRemotePaymentMethodId(v string)

SetRemotePaymentMethodId gets a reference to the given string and assigns it to the RemotePaymentMethodId field.

func (*PaymentMethod) SetStatus ¶ added in v1.10.3

func (o *PaymentMethod) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*PaymentMethod) SetUpdated ¶ added in v1.10.3

func (o *PaymentMethod) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (PaymentMethod) ToMap ¶ added in v1.10.3

func (o PaymentMethod) ToMap() (map[string]interface{}, error)

type PaymentmethodAPIService ¶ added in v1.10.3

type PaymentmethodAPIService service

PaymentmethodAPIService PaymentmethodAPI service

func (*PaymentmethodAPIService) CreatePaymentMethod ¶ added in v1.10.3

CreatePaymentMethod Create an payment method

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreatePaymentMethodRequest

func (*PaymentmethodAPIService) CreatePaymentMethodExecute ¶ added in v1.10.3

Execute executes the request

@return PaymentMethod

func (*PaymentmethodAPIService) DeletePaymentMethodById ¶ added in v1.10.3

func (a *PaymentmethodAPIService) DeletePaymentMethodById(ctx context.Context, paymentMethodId string) ApiDeletePaymentMethodByIdRequest

DeletePaymentMethodById Delete a payment method by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param paymentMethodId Id of the PaymentMethod
@return ApiDeletePaymentMethodByIdRequest

func (*PaymentmethodAPIService) DeletePaymentMethodByIdExecute ¶ added in v1.10.3

func (a *PaymentmethodAPIService) DeletePaymentMethodByIdExecute(r ApiDeletePaymentMethodByIdRequest) (*http.Response, error)

Execute executes the request

func (*PaymentmethodAPIService) FindFavoriteOrRandomValidPaymentMethod ¶ added in v1.10.3

func (a *PaymentmethodAPIService) FindFavoriteOrRandomValidPaymentMethod(ctx context.Context) ApiFindFavoriteOrRandomValidPaymentMethodRequest

FindFavoriteOrRandomValidPaymentMethod Retrieve the favorite payment method and a random valid

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindFavoriteOrRandomValidPaymentMethodRequest

func (*PaymentmethodAPIService) FindFavoriteOrRandomValidPaymentMethodExecute ¶ added in v1.10.3

func (a *PaymentmethodAPIService) FindFavoriteOrRandomValidPaymentMethodExecute(r ApiFindFavoriteOrRandomValidPaymentMethodRequest) (*PaymentMethod, *http.Response, error)

Execute executes the request

@return PaymentMethod

func (*PaymentmethodAPIService) FindPaymentMethodById ¶ added in v1.10.3

func (a *PaymentmethodAPIService) FindPaymentMethodById(ctx context.Context, paymentMethodId string) ApiFindPaymentMethodByIdRequest

FindPaymentMethodById Find paymentmethod by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param paymentMethodId Id of the payment method
@return ApiFindPaymentMethodByIdRequest

func (*PaymentmethodAPIService) FindPaymentMethodByIdExecute ¶ added in v1.10.3

Execute executes the request

@return PaymentMethod

func (*PaymentmethodAPIService) FindPaymentMethods ¶ added in v1.10.3

FindPaymentMethods Retrieve all payment methods

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPaymentMethodsRequest

func (*PaymentmethodAPIService) FindPaymentMethodsExecute ¶ added in v1.10.3

Execute executes the request

@return []PaymentMethod

func (*PaymentmethodAPIService) UpdatePaymentMethod ¶ added in v1.10.3

func (a *PaymentmethodAPIService) UpdatePaymentMethod(ctx context.Context, paymentMethodId string) ApiUpdatePaymentMethodRequest

UpdatePaymentMethod Update a payment method

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param paymentMethodId Id of the PaymentMethod
@return ApiUpdatePaymentMethodRequest

func (*PaymentmethodAPIService) UpdatePaymentMethodExecute ¶ added in v1.10.3

Execute executes the request

@return PaymentMethod

type PermissionAPIService ¶ added in v1.10.3

type PermissionAPIService service

PermissionAPIService PermissionAPI service

func (*PermissionAPIService) FindPermissions ¶ added in v1.10.3

FindPermissions Retrieve permissions for a specific principal

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPermissionsRequest

func (*PermissionAPIService) FindPermissionsExecute ¶ added in v1.10.3

func (a *PermissionAPIService) FindPermissionsExecute(r ApiFindPermissionsRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*PermissionAPIService) HasPermission ¶ added in v1.10.3

HasPermission Retrieve permissions for a specific principal

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiHasPermissionRequest

func (*PermissionAPIService) HasPermissionExecute ¶ added in v1.10.3

func (a *PermissionAPIService) HasPermissionExecute(r ApiHasPermissionRequest) (bool, *http.Response, error)

Execute executes the request

@return bool

type PickleReader ¶ added in v1.10.3

type PickleReader struct {
	// Name of the path.
	Path string `json:"path"`
	// Define file type for Pickle.
	Type *string `json:"type,omitempty"`
}

PickleReader struct for PickleReader

func NewPickleReader ¶ added in v1.10.3

func NewPickleReader(path string) *PickleReader

NewPickleReader instantiates a new PickleReader 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 NewPickleReaderWithDefaults ¶ added in v1.10.3

func NewPickleReaderWithDefaults() *PickleReader

NewPickleReaderWithDefaults instantiates a new PickleReader 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 (*PickleReader) GetPath ¶ added in v1.10.3

func (o *PickleReader) GetPath() string

GetPath returns the Path field value

func (*PickleReader) GetPathOk ¶ added in v1.10.3

func (o *PickleReader) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*PickleReader) GetType ¶ added in v1.10.3

func (o *PickleReader) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PickleReader) GetTypeOk ¶ added in v1.10.3

func (o *PickleReader) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PickleReader) HasType ¶ added in v1.10.3

func (o *PickleReader) HasType() bool

HasType returns a boolean if a field has been set.

func (PickleReader) MarshalJSON ¶ added in v1.10.3

func (o PickleReader) MarshalJSON() ([]byte, error)

func (*PickleReader) SetPath ¶ added in v1.10.3

func (o *PickleReader) SetPath(v string)

SetPath sets field value

func (*PickleReader) SetType ¶ added in v1.10.3

func (o *PickleReader) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PickleReader) ToMap ¶ added in v1.10.3

func (o PickleReader) ToMap() (map[string]interface{}, error)

func (*PickleReader) UnmarshalJSON ¶ added in v1.10.3

func (o *PickleReader) UnmarshalJSON(bytes []byte) (err error)

type PickleWriter ¶ added in v1.10.3

type PickleWriter struct {
	// Name of the path.
	Path string `json:"path"`
	// Define file type for Pickle.
	Type *string `json:"type,omitempty"`
}

PickleWriter struct for PickleWriter

func NewPickleWriter ¶ added in v1.10.3

func NewPickleWriter(path string) *PickleWriter

NewPickleWriter instantiates a new PickleWriter 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 NewPickleWriterWithDefaults ¶ added in v1.10.3

func NewPickleWriterWithDefaults() *PickleWriter

NewPickleWriterWithDefaults instantiates a new PickleWriter 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 (*PickleWriter) GetPath ¶ added in v1.10.3

func (o *PickleWriter) GetPath() string

GetPath returns the Path field value

func (*PickleWriter) GetPathOk ¶ added in v1.10.3

func (o *PickleWriter) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (*PickleWriter) GetType ¶ added in v1.10.3

func (o *PickleWriter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PickleWriter) GetTypeOk ¶ added in v1.10.3

func (o *PickleWriter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PickleWriter) HasType ¶ added in v1.10.3

func (o *PickleWriter) HasType() bool

HasType returns a boolean if a field has been set.

func (PickleWriter) MarshalJSON ¶ added in v1.10.3

func (o PickleWriter) MarshalJSON() ([]byte, error)

func (*PickleWriter) SetPath ¶ added in v1.10.3

func (o *PickleWriter) SetPath(v string)

SetPath sets field value

func (*PickleWriter) SetType ¶ added in v1.10.3

func (o *PickleWriter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PickleWriter) ToMap ¶ added in v1.10.3

func (o PickleWriter) ToMap() (map[string]interface{}, error)

func (*PickleWriter) UnmarshalJSON ¶ added in v1.10.3

func (o *PickleWriter) UnmarshalJSON(bytes []byte) (err error)

type PostgreSQLOptions ¶ added in v1.10.3

type PostgreSQLOptions struct {
	DataWarehouseOptions
	Host     *string  `json:"host,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Database *string  `json:"database,omitempty"`
	Schema   *string  `json:"schema,omitempty"`
	Type     *string  `json:"type,omitempty"`
}

PostgreSQLOptions struct for PostgreSQLOptions

func NewPostgreSQLOptions ¶ added in v1.10.3

func NewPostgreSQLOptions() *PostgreSQLOptions

NewPostgreSQLOptions instantiates a new PostgreSQLOptions 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 NewPostgreSQLOptionsWithDefaults ¶ added in v1.10.3

func NewPostgreSQLOptionsWithDefaults() *PostgreSQLOptions

NewPostgreSQLOptionsWithDefaults instantiates a new PostgreSQLOptions 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 (*PostgreSQLOptions) GetDatabase ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*PostgreSQLOptions) GetDatabaseOk ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetDatabaseOk() (*string, bool)

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgreSQLOptions) GetHost ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*PostgreSQLOptions) GetHostOk ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgreSQLOptions) GetPort ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*PostgreSQLOptions) GetPortOk ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetPortOk() (*float32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgreSQLOptions) GetSchema ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*PostgreSQLOptions) GetSchemaOk ¶ added in v1.10.3

func (o *PostgreSQLOptions) 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 (*PostgreSQLOptions) GetType ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PostgreSQLOptions) GetTypeOk ¶ added in v1.10.3

func (o *PostgreSQLOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgreSQLOptions) HasDatabase ¶ added in v1.10.3

func (o *PostgreSQLOptions) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*PostgreSQLOptions) HasHost ¶ added in v1.10.3

func (o *PostgreSQLOptions) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*PostgreSQLOptions) HasPort ¶ added in v1.10.3

func (o *PostgreSQLOptions) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*PostgreSQLOptions) HasSchema ¶ added in v1.10.3

func (o *PostgreSQLOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*PostgreSQLOptions) HasType ¶ added in v1.10.3

func (o *PostgreSQLOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (PostgreSQLOptions) MarshalJSON ¶ added in v1.10.3

func (o PostgreSQLOptions) MarshalJSON() ([]byte, error)

func (*PostgreSQLOptions) SetDatabase ¶ added in v1.10.3

func (o *PostgreSQLOptions) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*PostgreSQLOptions) SetHost ¶ added in v1.10.3

func (o *PostgreSQLOptions) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*PostgreSQLOptions) SetPort ¶ added in v1.10.3

func (o *PostgreSQLOptions) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

func (*PostgreSQLOptions) SetSchema ¶ added in v1.10.3

func (o *PostgreSQLOptions) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*PostgreSQLOptions) SetType ¶ added in v1.10.3

func (o *PostgreSQLOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PostgreSQLOptions) ToMap ¶ added in v1.10.3

func (o PostgreSQLOptions) ToMap() (map[string]interface{}, error)

type PostgreSQLOptionsAllOf ¶ added in v1.10.3

type PostgreSQLOptionsAllOf struct {
	Type *string `json:"type,omitempty"`
}

PostgreSQLOptionsAllOf struct for PostgreSQLOptionsAllOf

func NewPostgreSQLOptionsAllOf ¶ added in v1.10.3

func NewPostgreSQLOptionsAllOf() *PostgreSQLOptionsAllOf

NewPostgreSQLOptionsAllOf instantiates a new PostgreSQLOptionsAllOf 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 NewPostgreSQLOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewPostgreSQLOptionsAllOfWithDefaults() *PostgreSQLOptionsAllOf

NewPostgreSQLOptionsAllOfWithDefaults instantiates a new PostgreSQLOptionsAllOf 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 (*PostgreSQLOptionsAllOf) GetType ¶ added in v1.10.3

func (o *PostgreSQLOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PostgreSQLOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *PostgreSQLOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgreSQLOptionsAllOf) HasType ¶ added in v1.10.3

func (o *PostgreSQLOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (PostgreSQLOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o PostgreSQLOptionsAllOf) MarshalJSON() ([]byte, error)

func (*PostgreSQLOptionsAllOf) SetType ¶ added in v1.10.3

func (o *PostgreSQLOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type PredictModelTask ¶ added in v1.10.3

type PredictModelTask struct {
	// Identifier of the task.
	Id     string                 `json:"id"`
	Params map[string]interface{} `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the predict model task.
	Type *string `json:"type,omitempty"`
}

PredictModelTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewPredictModelTask ¶ added in v1.10.3

func NewPredictModelTask(id string, params map[string]interface{}, dependency []string) *PredictModelTask

NewPredictModelTask instantiates a new PredictModelTask 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 NewPredictModelTaskWithDefaults ¶ added in v1.10.3

func NewPredictModelTaskWithDefaults() *PredictModelTask

NewPredictModelTaskWithDefaults instantiates a new PredictModelTask 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 (*PredictModelTask) GetDependency ¶ added in v1.10.3

func (o *PredictModelTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*PredictModelTask) GetDependencyOk ¶ added in v1.10.3

func (o *PredictModelTask) GetDependencyOk() ([]string, bool)

GetDependencyOk returns a tuple with the Dependency field value and a boolean to check if the value has been set.

func (*PredictModelTask) GetId ¶ added in v1.10.3

func (o *PredictModelTask) GetId() string

GetId returns the Id field value

func (*PredictModelTask) GetIdOk ¶ added in v1.10.3

func (o *PredictModelTask) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*PredictModelTask) GetParams ¶ added in v1.10.3

func (o *PredictModelTask) GetParams() map[string]interface{}

GetParams returns the Params field value

func (*PredictModelTask) GetParamsOk ¶ added in v1.10.3

func (o *PredictModelTask) GetParamsOk() (map[string]interface{}, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (*PredictModelTask) GetType ¶ added in v1.10.3

func (o *PredictModelTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PredictModelTask) GetTypeOk ¶ added in v1.10.3

func (o *PredictModelTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PredictModelTask) HasType ¶ added in v1.10.3

func (o *PredictModelTask) HasType() bool

HasType returns a boolean if a field has been set.

func (PredictModelTask) MarshalJSON ¶ added in v1.10.3

func (o PredictModelTask) MarshalJSON() ([]byte, error)

func (*PredictModelTask) SetDependency ¶ added in v1.10.3

func (o *PredictModelTask) SetDependency(v []string)

SetDependency sets field value

func (*PredictModelTask) SetId ¶ added in v1.10.3

func (o *PredictModelTask) SetId(v string)

SetId sets field value

func (*PredictModelTask) SetParams ¶ added in v1.10.3

func (o *PredictModelTask) SetParams(v map[string]interface{})

SetParams sets field value

func (*PredictModelTask) SetType ¶ added in v1.10.3

func (o *PredictModelTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PredictModelTask) ToMap ¶ added in v1.10.3

func (o PredictModelTask) ToMap() (map[string]interface{}, error)

func (*PredictModelTask) UnmarshalJSON ¶ added in v1.10.3

func (o *PredictModelTask) UnmarshalJSON(bytes []byte) (err error)

type Price ¶

type Price struct {
	Id               *string                           `json:"id,omitempty"`
	Currency         *string                           `json:"currency,omitempty"`
	Amount           *string                           `json:"amount,omitempty"`
	ProductType      *string                           `json:"product_type,omitempty"`
	ProductReference *string                           `json:"product_reference,omitempty"`
	Created          *time.Time                        `json:"created,omitempty"`
	Metadata         map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Price struct for Price

func NewPrice ¶

func NewPrice() *Price

NewPrice instantiates a new Price 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 NewPriceWithDefaults ¶

func NewPriceWithDefaults() *Price

NewPriceWithDefaults instantiates a new Price 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 (*Price) GetAmount ¶

func (o *Price) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*Price) GetAmountOk ¶

func (o *Price) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Price) GetCreated ¶

func (o *Price) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Price) GetCreatedOk ¶

func (o *Price) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Price) GetCurrency ¶

func (o *Price) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*Price) GetCurrencyOk ¶

func (o *Price) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Price) GetId ¶

func (o *Price) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Price) GetIdOk ¶

func (o *Price) 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 (*Price) GetMetadata ¶

func (o *Price) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Price) GetMetadataOk ¶

func (o *Price) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Price) GetProductReference ¶

func (o *Price) GetProductReference() string

GetProductReference returns the ProductReference field value if set, zero value otherwise.

func (*Price) GetProductReferenceOk ¶

func (o *Price) GetProductReferenceOk() (*string, bool)

GetProductReferenceOk returns a tuple with the ProductReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Price) GetProductType ¶

func (o *Price) GetProductType() string

GetProductType returns the ProductType field value if set, zero value otherwise.

func (*Price) GetProductTypeOk ¶

func (o *Price) GetProductTypeOk() (*string, bool)

GetProductTypeOk returns a tuple with the ProductType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Price) HasAmount ¶

func (o *Price) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*Price) HasCreated ¶

func (o *Price) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Price) HasCurrency ¶

func (o *Price) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*Price) HasId ¶

func (o *Price) HasId() bool

HasId returns a boolean if a field has been set.

func (*Price) HasMetadata ¶

func (o *Price) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Price) HasProductReference ¶

func (o *Price) HasProductReference() bool

HasProductReference returns a boolean if a field has been set.

func (*Price) HasProductType ¶

func (o *Price) HasProductType() bool

HasProductType returns a boolean if a field has been set.

func (Price) MarshalJSON ¶

func (o Price) MarshalJSON() ([]byte, error)

func (*Price) SetAmount ¶

func (o *Price) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*Price) SetCreated ¶

func (o *Price) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Price) SetCurrency ¶

func (o *Price) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*Price) SetId ¶

func (o *Price) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Price) SetMetadata ¶

func (o *Price) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Price) SetProductReference ¶

func (o *Price) SetProductReference(v string)

SetProductReference gets a reference to the given string and assigns it to the ProductReference field.

func (*Price) SetProductType ¶

func (o *Price) SetProductType(v string)

SetProductType gets a reference to the given string and assigns it to the ProductType field.

func (Price) ToMap ¶ added in v1.10.3

func (o Price) ToMap() (map[string]interface{}, error)

type PriceAPIService ¶ added in v1.10.3

type PriceAPIService service

PriceAPIService PriceAPI service

func (*PriceAPIService) CreatePrice ¶ added in v1.10.3

CreatePrice Create an price

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreatePriceRequest

func (*PriceAPIService) CreatePriceExecute ¶ added in v1.10.3

func (a *PriceAPIService) CreatePriceExecute(r ApiCreatePriceRequest) (*Price, *http.Response, error)

Execute executes the request

@return Price

func (*PriceAPIService) DeletePriceById ¶ added in v1.10.3

func (a *PriceAPIService) DeletePriceById(ctx context.Context, priceId string) ApiDeletePriceByIdRequest

DeletePriceById Delete a price by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param priceId Id of the Price
@return ApiDeletePriceByIdRequest

func (*PriceAPIService) DeletePriceByIdExecute ¶ added in v1.10.3

func (a *PriceAPIService) DeletePriceByIdExecute(r ApiDeletePriceByIdRequest) (*http.Response, error)

Execute executes the request

func (*PriceAPIService) FindPriceById ¶ added in v1.10.3

func (a *PriceAPIService) FindPriceById(ctx context.Context, priceId string) ApiFindPriceByIdRequest

FindPriceById Find price by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param priceId Id of the price
@return ApiFindPriceByIdRequest

func (*PriceAPIService) FindPriceByIdExecute ¶ added in v1.10.3

func (a *PriceAPIService) FindPriceByIdExecute(r ApiFindPriceByIdRequest) (*Price, *http.Response, error)

Execute executes the request

@return Price

func (*PriceAPIService) FindPrices ¶ added in v1.10.3

FindPrices Retrieve all prices

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindPricesRequest

func (*PriceAPIService) FindPricesExecute ¶ added in v1.10.3

func (a *PriceAPIService) FindPricesExecute(r ApiFindPricesRequest) ([]Price, *http.Response, error)

Execute executes the request

@return []Price

func (*PriceAPIService) UpdatePrice ¶ added in v1.10.3

func (a *PriceAPIService) UpdatePrice(ctx context.Context, priceId string) ApiUpdatePriceRequest

UpdatePrice Update a price

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param priceId Id of the Price
@return ApiUpdatePriceRequest

func (*PriceAPIService) UpdatePriceExecute ¶ added in v1.10.3

func (a *PriceAPIService) UpdatePriceExecute(r ApiUpdatePriceRequest) (*Price, *http.Response, error)

Execute executes the request

@return Price

type Principal ¶

type Principal struct {
	Identity *Identity
	User     *User
}

Principal - struct for Principal

func IdentityAsPrincipal ¶

func IdentityAsPrincipal(v *Identity) Principal

IdentityAsPrincipal is a convenience function that returns Identity wrapped in Principal

func UserAsPrincipal ¶

func UserAsPrincipal(v *User) Principal

UserAsPrincipal is a convenience function that returns User wrapped in Principal

func (*Principal) GetActualInstance ¶

func (obj *Principal) GetActualInstance() interface{}

Get the actual instance

func (Principal) MarshalJSON ¶

func (src Principal) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Principal) UnmarshalJSON ¶

func (dst *Principal) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type PrintParams ¶ added in v1.10.3

type PrintParams struct {
	// Number of lines to show.
	NumberOfLines *int32 `json:"number_of_lines,omitempty"`
}

PrintParams struct for PrintParams

func NewPrintParams ¶ added in v1.10.3

func NewPrintParams() *PrintParams

NewPrintParams instantiates a new PrintParams 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 NewPrintParamsWithDefaults ¶ added in v1.10.3

func NewPrintParamsWithDefaults() *PrintParams

NewPrintParamsWithDefaults instantiates a new PrintParams 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 (*PrintParams) GetNumberOfLines ¶ added in v1.10.3

func (o *PrintParams) GetNumberOfLines() int32

GetNumberOfLines returns the NumberOfLines field value if set, zero value otherwise.

func (*PrintParams) GetNumberOfLinesOk ¶ added in v1.10.3

func (o *PrintParams) GetNumberOfLinesOk() (*int32, bool)

GetNumberOfLinesOk returns a tuple with the NumberOfLines field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrintParams) HasNumberOfLines ¶ added in v1.10.3

func (o *PrintParams) HasNumberOfLines() bool

HasNumberOfLines returns a boolean if a field has been set.

func (PrintParams) MarshalJSON ¶ added in v1.10.3

func (o PrintParams) MarshalJSON() ([]byte, error)

func (*PrintParams) SetNumberOfLines ¶ added in v1.10.3

func (o *PrintParams) SetNumberOfLines(v int32)

SetNumberOfLines gets a reference to the given int32 and assigns it to the NumberOfLines field.

func (PrintParams) ToMap ¶ added in v1.10.3

func (o PrintParams) ToMap() (map[string]interface{}, error)

type PrintTask ¶ added in v1.10.3

type PrintTask struct {
	// Identifier of the task.
	Id     string       `json:"id"`
	Params *PrintParams `json:"params,omitempty"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the printtask.
	Type *string `json:"type,omitempty"`
}

PrintTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewPrintTask ¶ added in v1.10.3

func NewPrintTask(id string, dependency []string) *PrintTask

NewPrintTask instantiates a new PrintTask 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 NewPrintTaskWithDefaults ¶ added in v1.10.3

func NewPrintTaskWithDefaults() *PrintTask

NewPrintTaskWithDefaults instantiates a new PrintTask 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 (*PrintTask) GetDependency ¶ added in v1.10.3

func (o *PrintTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*PrintTask) GetDependencyOk ¶ added in v1.10.3

func (o *PrintTask) GetDependencyOk() ([]string, bool)

GetDependencyOk returns a tuple with the Dependency field value and a boolean to check if the value has been set.

func (*PrintTask) GetId ¶ added in v1.10.3

func (o *PrintTask) GetId() string

GetId returns the Id field value

func (*PrintTask) GetIdOk ¶ added in v1.10.3

func (o *PrintTask) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*PrintTask) GetParams ¶ added in v1.10.3

func (o *PrintTask) GetParams() PrintParams

GetParams returns the Params field value if set, zero value otherwise.

func (*PrintTask) GetParamsOk ¶ added in v1.10.3

func (o *PrintTask) GetParamsOk() (*PrintParams, bool)

GetParamsOk returns a tuple with the Params field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrintTask) GetType ¶ added in v1.10.3

func (o *PrintTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PrintTask) GetTypeOk ¶ added in v1.10.3

func (o *PrintTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrintTask) HasParams ¶ added in v1.10.3

func (o *PrintTask) HasParams() bool

HasParams returns a boolean if a field has been set.

func (*PrintTask) HasType ¶ added in v1.10.3

func (o *PrintTask) HasType() bool

HasType returns a boolean if a field has been set.

func (PrintTask) MarshalJSON ¶ added in v1.10.3

func (o PrintTask) MarshalJSON() ([]byte, error)

func (*PrintTask) SetDependency ¶ added in v1.10.3

func (o *PrintTask) SetDependency(v []string)

SetDependency sets field value

func (*PrintTask) SetId ¶ added in v1.10.3

func (o *PrintTask) SetId(v string)

SetId sets field value

func (*PrintTask) SetParams ¶ added in v1.10.3

func (o *PrintTask) SetParams(v PrintParams)

SetParams gets a reference to the given PrintParams and assigns it to the Params field.

func (*PrintTask) SetType ¶ added in v1.10.3

func (o *PrintTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PrintTask) ToMap ¶ added in v1.10.3

func (o PrintTask) ToMap() (map[string]interface{}, error)

func (*PrintTask) UnmarshalJSON ¶ added in v1.10.3

func (o *PrintTask) UnmarshalJSON(bytes []byte) (err error)

type Project ¶

type Project struct {
	Id          *string                           `json:"id,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Banner      *string                           `json:"banner,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
	Labels      *map[string]string                `json:"labels,omitempty"`
	Locked      *bool                             `json:"locked,omitempty"`
	Favorite    *bool                             `json:"favorite,omitempty"`
	Badge       *string                           `json:"badge,omitempty"`
}

Project struct for Project

func NewProject ¶

func NewProject() *Project

NewProject instantiates a new Project 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 NewProjectWithDefaults ¶

func NewProjectWithDefaults() *Project

NewProjectWithDefaults instantiates a new Project 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 (*Project) GetBadge ¶ added in v1.10.3

func (o *Project) GetBadge() string

GetBadge returns the Badge field value if set, zero value otherwise.

func (*Project) GetBadgeOk ¶ added in v1.10.3

func (o *Project) GetBadgeOk() (*string, bool)

GetBadgeOk returns a tuple with the Badge field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetBanner ¶

func (o *Project) GetBanner() string

GetBanner returns the Banner field value if set, zero value otherwise.

func (*Project) GetBannerOk ¶

func (o *Project) GetBannerOk() (*string, bool)

GetBannerOk returns a tuple with the Banner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetCreated ¶

func (o *Project) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Project) GetCreatedOk ¶

func (o *Project) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetDescription ¶

func (o *Project) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Project) GetDescriptionOk ¶

func (o *Project) 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 (*Project) GetFavorite ¶ added in v1.10.3

func (o *Project) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*Project) GetFavoriteOk ¶ added in v1.10.3

func (o *Project) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetId ¶

func (o *Project) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Project) GetIdOk ¶

func (o *Project) 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 (*Project) GetLabels ¶

func (o *Project) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Project) GetLabelsOk ¶

func (o *Project) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetLocked ¶

func (o *Project) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*Project) GetLockedOk ¶

func (o *Project) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetMetadata ¶

func (o *Project) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Project) GetMetadataOk ¶

func (o *Project) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Project) GetName ¶

func (o *Project) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Project) GetNameOk ¶

func (o *Project) 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 (*Project) GetUpdated ¶

func (o *Project) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Project) GetUpdatedOk ¶

func (o *Project) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) HasBadge ¶ added in v1.10.3

func (o *Project) HasBadge() bool

HasBadge returns a boolean if a field has been set.

func (*Project) HasBanner ¶

func (o *Project) HasBanner() bool

HasBanner returns a boolean if a field has been set.

func (*Project) HasCreated ¶

func (o *Project) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Project) HasDescription ¶

func (o *Project) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Project) HasFavorite ¶ added in v1.10.3

func (o *Project) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*Project) HasId ¶

func (o *Project) HasId() bool

HasId returns a boolean if a field has been set.

func (*Project) HasLabels ¶

func (o *Project) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Project) HasLocked ¶

func (o *Project) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*Project) HasMetadata ¶

func (o *Project) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Project) HasName ¶

func (o *Project) HasName() bool

HasName returns a boolean if a field has been set.

func (*Project) HasUpdated ¶

func (o *Project) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Project) MarshalJSON ¶

func (o Project) MarshalJSON() ([]byte, error)

func (*Project) SetBadge ¶ added in v1.10.3

func (o *Project) SetBadge(v string)

SetBadge gets a reference to the given string and assigns it to the Badge field.

func (*Project) SetBanner ¶

func (o *Project) SetBanner(v string)

SetBanner gets a reference to the given string and assigns it to the Banner field.

func (*Project) SetCreated ¶

func (o *Project) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Project) SetDescription ¶

func (o *Project) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Project) SetFavorite ¶ added in v1.10.3

func (o *Project) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*Project) SetId ¶

func (o *Project) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Project) SetLabels ¶

func (o *Project) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Project) SetLocked ¶

func (o *Project) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*Project) SetMetadata ¶

func (o *Project) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Project) SetName ¶

func (o *Project) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Project) SetUpdated ¶

func (o *Project) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Project) ToMap ¶ added in v1.10.3

func (o Project) ToMap() (map[string]interface{}, error)

type Project1 ¶ added in v1.10.3

type Project1 struct {
	Id   string  `json:"id"`
	Type *string `json:"type,omitempty"`
}

Project1 Object Project.

func NewProject1 ¶ added in v1.10.3

func NewProject1(id string) *Project1

NewProject1 instantiates a new Project1 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 NewProject1WithDefaults ¶ added in v1.10.3

func NewProject1WithDefaults() *Project1

NewProject1WithDefaults instantiates a new Project1 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 (*Project1) GetId ¶ added in v1.10.3

func (o *Project1) GetId() string

GetId returns the Id field value

func (*Project1) GetIdOk ¶ added in v1.10.3

func (o *Project1) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Project1) GetType ¶ added in v1.10.3

func (o *Project1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Project1) GetTypeOk ¶ added in v1.10.3

func (o *Project1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project1) HasType ¶ added in v1.10.3

func (o *Project1) HasType() bool

HasType returns a boolean if a field has been set.

func (Project1) MarshalJSON ¶ added in v1.10.3

func (o Project1) MarshalJSON() ([]byte, error)

func (*Project1) SetId ¶ added in v1.10.3

func (o *Project1) SetId(v string)

SetId sets field value

func (*Project1) SetType ¶ added in v1.10.3

func (o *Project1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Project1) ToMap ¶ added in v1.10.3

func (o Project1) ToMap() (map[string]interface{}, error)

func (*Project1) UnmarshalJSON ¶ added in v1.10.3

func (o *Project1) UnmarshalJSON(bytes []byte) (err error)

type Project1AllOf ¶ added in v1.10.3

type Project1AllOf struct {
	Type *string `json:"type,omitempty"`
}

Project1AllOf struct for Project1AllOf

func NewProject1AllOf ¶ added in v1.10.3

func NewProject1AllOf() *Project1AllOf

NewProject1AllOf instantiates a new Project1AllOf 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 NewProject1AllOfWithDefaults ¶ added in v1.10.3

func NewProject1AllOfWithDefaults() *Project1AllOf

NewProject1AllOfWithDefaults instantiates a new Project1AllOf 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 (*Project1AllOf) GetType ¶ added in v1.10.3

func (o *Project1AllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Project1AllOf) GetTypeOk ¶ added in v1.10.3

func (o *Project1AllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project1AllOf) HasType ¶ added in v1.10.3

func (o *Project1AllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (Project1AllOf) MarshalJSON ¶ added in v1.10.3

func (o Project1AllOf) MarshalJSON() ([]byte, error)

func (*Project1AllOf) SetType ¶ added in v1.10.3

func (o *Project1AllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ProjectAPIService ¶ added in v1.10.3

type ProjectAPIService service

ProjectAPIService ProjectAPI service

func (*ProjectAPIService) CreateJobForProject ¶ added in v1.10.3

func (a *ProjectAPIService) CreateJobForProject(ctx context.Context, projectId string) ApiCreateJobForProjectRequest

CreateJobForProject Create job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiCreateJobForProjectRequest

func (*ProjectAPIService) CreateJobForProjectExecute ¶ added in v1.10.3

func (a *ProjectAPIService) CreateJobForProjectExecute(r ApiCreateJobForProjectRequest) (*Job, *http.Response, error)

Execute executes the request

@return Job

func (*ProjectAPIService) CreateProject ¶ added in v1.10.3

CreateProject Create a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateProjectRequest

func (*ProjectAPIService) CreateProjectExecute ¶ added in v1.10.3

func (a *ProjectAPIService) CreateProjectExecute(r ApiCreateProjectRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*ProjectAPIService) CreateWorkflowForProject ¶ added in v1.10.3

func (a *ProjectAPIService) CreateWorkflowForProject(ctx context.Context, projectId string) ApiCreateWorkflowForProjectRequest

CreateWorkflowForProject Create workflows

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiCreateWorkflowForProjectRequest

func (*ProjectAPIService) CreateWorkflowForProjectExecute ¶ added in v1.10.3

func (a *ProjectAPIService) CreateWorkflowForProjectExecute(r ApiCreateWorkflowForProjectRequest) (*Workflow, *http.Response, error)

Execute executes the request

@return Workflow

func (*ProjectAPIService) DeleteProjectById ¶ added in v1.10.3

func (a *ProjectAPIService) DeleteProjectById(ctx context.Context, projectId string) ApiDeleteProjectByIdRequest

DeleteProjectById Delete a project by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiDeleteProjectByIdRequest

func (*ProjectAPIService) DeleteProjectByIdExecute ¶ added in v1.10.3

func (a *ProjectAPIService) DeleteProjectByIdExecute(r ApiDeleteProjectByIdRequest) (*http.Response, error)

Execute executes the request

func (*ProjectAPIService) FindBannerByProjectId ¶ added in v1.10.3

func (a *ProjectAPIService) FindBannerByProjectId(ctx context.Context, projectId string) ApiFindBannerByProjectIdRequest

FindBannerByProjectId Get banner

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiFindBannerByProjectIdRequest

func (*ProjectAPIService) FindBannerByProjectIdExecute ¶ added in v1.10.3

func (a *ProjectAPIService) FindBannerByProjectIdExecute(r ApiFindBannerByProjectIdRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*ProjectAPIService) FindJobsByProjectId ¶ added in v1.10.3

func (a *ProjectAPIService) FindJobsByProjectId(ctx context.Context, projectId string) ApiFindJobsByProjectIdRequest

FindJobsByProjectId Retrieve all jobs for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiFindJobsByProjectIdRequest

func (*ProjectAPIService) FindJobsByProjectIdExecute ¶ added in v1.10.3

func (a *ProjectAPIService) FindJobsByProjectIdExecute(r ApiFindJobsByProjectIdRequest) ([]Job, *http.Response, error)

Execute executes the request

@return []Job

func (*ProjectAPIService) FindLatestRunsByProjectId ¶ added in v1.10.3

func (a *ProjectAPIService) FindLatestRunsByProjectId(ctx context.Context, projectId string) ApiFindLatestRunsByProjectIdRequest

FindLatestRunsByProjectId Retrieve all jobs for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiFindLatestRunsByProjectIdRequest

func (*ProjectAPIService) FindLatestRunsByProjectIdExecute ¶ added in v1.10.3

func (a *ProjectAPIService) FindLatestRunsByProjectIdExecute(r ApiFindLatestRunsByProjectIdRequest) ([]RunWithJob, *http.Response, error)

Execute executes the request

@return []RunWithJob

func (*ProjectAPIService) FindProjectById ¶ added in v1.10.3

func (a *ProjectAPIService) FindProjectById(ctx context.Context, projectId string) ApiFindProjectByIdRequest

FindProjectById Find project by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiFindProjectByIdRequest

func (*ProjectAPIService) FindProjectByIdExecute ¶ added in v1.10.3

func (a *ProjectAPIService) FindProjectByIdExecute(r ApiFindProjectByIdRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*ProjectAPIService) FindProjects ¶ added in v1.10.3

FindProjects Retrieve all projects

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindProjectsRequest

func (*ProjectAPIService) FindProjectsExecute ¶ added in v1.10.3

func (a *ProjectAPIService) FindProjectsExecute(r ApiFindProjectsRequest) ([]Project, *http.Response, error)

Execute executes the request

@return []Project

func (*ProjectAPIService) FindWorkflowsByProjectId ¶ added in v1.10.3

func (a *ProjectAPIService) FindWorkflowsByProjectId(ctx context.Context, projectId string) ApiFindWorkflowsByProjectIdRequest

FindWorkflowsByProjectId Retrieve all workflows for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiFindWorkflowsByProjectIdRequest

func (*ProjectAPIService) FindWorkflowsByProjectIdExecute ¶ added in v1.10.3

func (a *ProjectAPIService) FindWorkflowsByProjectIdExecute(r ApiFindWorkflowsByProjectIdRequest) ([]Workflow, *http.Response, error)

Execute executes the request

@return []Workflow

func (*ProjectAPIService) GetMetricsForProject ¶ added in v1.10.3

func (a *ProjectAPIService) GetMetricsForProject(ctx context.Context, projectId string) ApiGetMetricsForProjectRequest

GetMetricsForProject Find the metrics for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiGetMetricsForProjectRequest

func (*ProjectAPIService) GetMetricsForProjectExecute ¶ added in v1.10.3

func (a *ProjectAPIService) GetMetricsForProjectExecute(r ApiGetMetricsForProjectRequest) ([]Metric, *http.Response, error)

Execute executes the request

@return []Metric

func (*ProjectAPIService) GetStatsByProjectId ¶ added in v1.10.3

func (a *ProjectAPIService) GetStatsByProjectId(ctx context.Context, projectId string) ApiGetStatsByProjectIdRequest

GetStatsByProjectId Find the stats for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiGetStatsByProjectIdRequest

func (*ProjectAPIService) GetStatsByProjectIdExecute ¶ added in v1.10.3

func (a *ProjectAPIService) GetStatsByProjectIdExecute(r ApiGetStatsByProjectIdRequest) (*RunStats, *http.Response, error)

Execute executes the request

@return RunStats

func (*ProjectAPIService) UpdateProject ¶ added in v1.10.3

func (a *ProjectAPIService) UpdateProject(ctx context.Context, projectId string) ApiUpdateProjectRequest

UpdateProject Update a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiUpdateProjectRequest

func (*ProjectAPIService) UpdateProjectExecute ¶ added in v1.10.3

func (a *ProjectAPIService) UpdateProjectExecute(r ApiUpdateProjectRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*ProjectAPIService) UploadBanner ¶ added in v1.10.3

func (a *ProjectAPIService) UploadBanner(ctx context.Context, projectId string) ApiUploadBannerRequest

UploadBanner Upload a new banner

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId Id of the project
@return ApiUploadBannerRequest

func (*ProjectAPIService) UploadBannerExecute ¶ added in v1.10.3

func (a *ProjectAPIService) UploadBannerExecute(r ApiUploadBannerRequest) (*http.Response, error)

Execute executes the request

type ProjectActivity ¶ added in v1.10.3

type ProjectActivity struct {
	Data          map[string]interface{} `json:"data,omitempty"`
	Id            *string                `json:"id,omitempty"`
	Time          *time.Time             `json:"time,omitempty"`
	ReactionCount []Reaction             `json:"reaction_count,omitempty"`
	Type          *string                `json:"type,omitempty"`
	Actor         User1                  `json:"actor"`
	Target        Project1               `json:"target"`
	Verb          string                 `json:"verb"`
}

ProjectActivity Object ProjectActivity.

func NewProjectActivity ¶ added in v1.10.3

func NewProjectActivity(actor User1, target Project1, verb string) *ProjectActivity

NewProjectActivity instantiates a new ProjectActivity 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 NewProjectActivityWithDefaults ¶ added in v1.10.3

func NewProjectActivityWithDefaults() *ProjectActivity

NewProjectActivityWithDefaults instantiates a new ProjectActivity 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 (*ProjectActivity) GetActor ¶ added in v1.10.3

func (o *ProjectActivity) GetActor() User1

GetActor returns the Actor field value

func (*ProjectActivity) GetActorOk ¶ added in v1.10.3

func (o *ProjectActivity) GetActorOk() (*User1, bool)

GetActorOk returns a tuple with the Actor field value and a boolean to check if the value has been set.

func (*ProjectActivity) GetData ¶ added in v1.10.3

func (o *ProjectActivity) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*ProjectActivity) GetDataOk ¶ added in v1.10.3

func (o *ProjectActivity) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectActivity) GetId ¶ added in v1.10.3

func (o *ProjectActivity) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ProjectActivity) GetIdOk ¶ added in v1.10.3

func (o *ProjectActivity) 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 (*ProjectActivity) GetReactionCount ¶ added in v1.10.3

func (o *ProjectActivity) GetReactionCount() []Reaction

GetReactionCount returns the ReactionCount field value if set, zero value otherwise.

func (*ProjectActivity) GetReactionCountOk ¶ added in v1.10.3

func (o *ProjectActivity) GetReactionCountOk() ([]Reaction, bool)

GetReactionCountOk returns a tuple with the ReactionCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectActivity) GetTarget ¶ added in v1.10.3

func (o *ProjectActivity) GetTarget() Project1

GetTarget returns the Target field value

func (*ProjectActivity) GetTargetOk ¶ added in v1.10.3

func (o *ProjectActivity) GetTargetOk() (*Project1, bool)

GetTargetOk returns a tuple with the Target field value and a boolean to check if the value has been set.

func (*ProjectActivity) GetTime ¶ added in v1.10.3

func (o *ProjectActivity) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*ProjectActivity) GetTimeOk ¶ added in v1.10.3

func (o *ProjectActivity) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectActivity) GetType ¶ added in v1.10.3

func (o *ProjectActivity) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProjectActivity) GetTypeOk ¶ added in v1.10.3

func (o *ProjectActivity) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectActivity) GetVerb ¶ added in v1.10.3

func (o *ProjectActivity) GetVerb() string

GetVerb returns the Verb field value

func (*ProjectActivity) GetVerbOk ¶ added in v1.10.3

func (o *ProjectActivity) GetVerbOk() (*string, bool)

GetVerbOk returns a tuple with the Verb field value and a boolean to check if the value has been set.

func (*ProjectActivity) HasData ¶ added in v1.10.3

func (o *ProjectActivity) HasData() bool

HasData returns a boolean if a field has been set.

func (*ProjectActivity) HasId ¶ added in v1.10.3

func (o *ProjectActivity) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProjectActivity) HasReactionCount ¶ added in v1.10.3

func (o *ProjectActivity) HasReactionCount() bool

HasReactionCount returns a boolean if a field has been set.

func (*ProjectActivity) HasTime ¶ added in v1.10.3

func (o *ProjectActivity) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*ProjectActivity) HasType ¶ added in v1.10.3

func (o *ProjectActivity) HasType() bool

HasType returns a boolean if a field has been set.

func (ProjectActivity) MarshalJSON ¶ added in v1.10.3

func (o ProjectActivity) MarshalJSON() ([]byte, error)

func (*ProjectActivity) SetActor ¶ added in v1.10.3

func (o *ProjectActivity) SetActor(v User1)

SetActor sets field value

func (*ProjectActivity) SetData ¶ added in v1.10.3

func (o *ProjectActivity) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*ProjectActivity) SetId ¶ added in v1.10.3

func (o *ProjectActivity) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ProjectActivity) SetReactionCount ¶ added in v1.10.3

func (o *ProjectActivity) SetReactionCount(v []Reaction)

SetReactionCount gets a reference to the given []Reaction and assigns it to the ReactionCount field.

func (*ProjectActivity) SetTarget ¶ added in v1.10.3

func (o *ProjectActivity) SetTarget(v Project1)

SetTarget sets field value

func (*ProjectActivity) SetTime ¶ added in v1.10.3

func (o *ProjectActivity) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*ProjectActivity) SetType ¶ added in v1.10.3

func (o *ProjectActivity) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ProjectActivity) SetVerb ¶ added in v1.10.3

func (o *ProjectActivity) SetVerb(v string)

SetVerb sets field value

func (ProjectActivity) ToMap ¶ added in v1.10.3

func (o ProjectActivity) ToMap() (map[string]interface{}, error)

func (*ProjectActivity) UnmarshalJSON ¶ added in v1.10.3

func (o *ProjectActivity) UnmarshalJSON(bytes []byte) (err error)

type ProjectActivityAllOf ¶ added in v1.10.3

type ProjectActivityAllOf struct {
	Type   *string  `json:"type,omitempty"`
	Actor  User1    `json:"actor"`
	Target Project1 `json:"target"`
	Verb   string   `json:"verb"`
}

ProjectActivityAllOf struct for ProjectActivityAllOf

func NewProjectActivityAllOf ¶ added in v1.10.3

func NewProjectActivityAllOf(actor User1, target Project1, verb string) *ProjectActivityAllOf

NewProjectActivityAllOf instantiates a new ProjectActivityAllOf 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 NewProjectActivityAllOfWithDefaults ¶ added in v1.10.3

func NewProjectActivityAllOfWithDefaults() *ProjectActivityAllOf

NewProjectActivityAllOfWithDefaults instantiates a new ProjectActivityAllOf 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 (*ProjectActivityAllOf) GetActor ¶ added in v1.10.3

func (o *ProjectActivityAllOf) GetActor() User1

GetActor returns the Actor field value

func (*ProjectActivityAllOf) GetActorOk ¶ added in v1.10.3

func (o *ProjectActivityAllOf) GetActorOk() (*User1, bool)

GetActorOk returns a tuple with the Actor field value and a boolean to check if the value has been set.

func (*ProjectActivityAllOf) GetTarget ¶ added in v1.10.3

func (o *ProjectActivityAllOf) GetTarget() Project1

GetTarget returns the Target field value

func (*ProjectActivityAllOf) GetTargetOk ¶ added in v1.10.3

func (o *ProjectActivityAllOf) GetTargetOk() (*Project1, bool)

GetTargetOk returns a tuple with the Target field value and a boolean to check if the value has been set.

func (*ProjectActivityAllOf) GetType ¶ added in v1.10.3

func (o *ProjectActivityAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ProjectActivityAllOf) GetTypeOk ¶ added in v1.10.3

func (o *ProjectActivityAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectActivityAllOf) GetVerb ¶ added in v1.10.3

func (o *ProjectActivityAllOf) GetVerb() string

GetVerb returns the Verb field value

func (*ProjectActivityAllOf) GetVerbOk ¶ added in v1.10.3

func (o *ProjectActivityAllOf) GetVerbOk() (*string, bool)

GetVerbOk returns a tuple with the Verb field value and a boolean to check if the value has been set.

func (*ProjectActivityAllOf) HasType ¶ added in v1.10.3

func (o *ProjectActivityAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (ProjectActivityAllOf) MarshalJSON ¶ added in v1.10.3

func (o ProjectActivityAllOf) MarshalJSON() ([]byte, error)

func (*ProjectActivityAllOf) SetActor ¶ added in v1.10.3

func (o *ProjectActivityAllOf) SetActor(v User1)

SetActor sets field value

func (*ProjectActivityAllOf) SetTarget ¶ added in v1.10.3

func (o *ProjectActivityAllOf) SetTarget(v Project1)

SetTarget sets field value

func (*ProjectActivityAllOf) SetType ¶ added in v1.10.3

func (o *ProjectActivityAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ProjectActivityAllOf) SetVerb ¶ added in v1.10.3

func (o *ProjectActivityAllOf) SetVerb(v string)

SetVerb sets field value

type PyPiLibrary ¶

type PyPiLibrary struct {
	Library
	Type *string `json:"type,omitempty"`
	Dep  *string `json:"dep,omitempty"`
}

PyPiLibrary struct for PyPiLibrary

func NewPyPiLibrary ¶

func NewPyPiLibrary() *PyPiLibrary

NewPyPiLibrary instantiates a new PyPiLibrary 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 NewPyPiLibraryWithDefaults ¶

func NewPyPiLibraryWithDefaults() *PyPiLibrary

NewPyPiLibraryWithDefaults instantiates a new PyPiLibrary 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 (*PyPiLibrary) GetDep ¶

func (o *PyPiLibrary) GetDep() string

GetDep returns the Dep field value if set, zero value otherwise.

func (*PyPiLibrary) GetDepOk ¶

func (o *PyPiLibrary) GetDepOk() (*string, bool)

GetDepOk returns a tuple with the Dep field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyPiLibrary) GetType ¶

func (o *PyPiLibrary) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PyPiLibrary) GetTypeOk ¶

func (o *PyPiLibrary) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyPiLibrary) HasDep ¶

func (o *PyPiLibrary) HasDep() bool

HasDep returns a boolean if a field has been set.

func (*PyPiLibrary) HasType ¶

func (o *PyPiLibrary) HasType() bool

HasType returns a boolean if a field has been set.

func (PyPiLibrary) MarshalJSON ¶

func (o PyPiLibrary) MarshalJSON() ([]byte, error)

func (*PyPiLibrary) SetDep ¶

func (o *PyPiLibrary) SetDep(v string)

SetDep gets a reference to the given string and assigns it to the Dep field.

func (*PyPiLibrary) SetType ¶

func (o *PyPiLibrary) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PyPiLibrary) ToMap ¶ added in v1.10.3

func (o PyPiLibrary) ToMap() (map[string]interface{}, error)

type PyPiLibraryAllOf ¶

type PyPiLibraryAllOf struct {
	Type *string `json:"type,omitempty"`
	Dep  *string `json:"dep,omitempty"`
}

PyPiLibraryAllOf struct for PyPiLibraryAllOf

func NewPyPiLibraryAllOf ¶

func NewPyPiLibraryAllOf() *PyPiLibraryAllOf

NewPyPiLibraryAllOf instantiates a new PyPiLibraryAllOf 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 NewPyPiLibraryAllOfWithDefaults ¶

func NewPyPiLibraryAllOfWithDefaults() *PyPiLibraryAllOf

NewPyPiLibraryAllOfWithDefaults instantiates a new PyPiLibraryAllOf 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 (*PyPiLibraryAllOf) GetDep ¶

func (o *PyPiLibraryAllOf) GetDep() string

GetDep returns the Dep field value if set, zero value otherwise.

func (*PyPiLibraryAllOf) GetDepOk ¶

func (o *PyPiLibraryAllOf) GetDepOk() (*string, bool)

GetDepOk returns a tuple with the Dep field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyPiLibraryAllOf) GetType ¶

func (o *PyPiLibraryAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PyPiLibraryAllOf) GetTypeOk ¶

func (o *PyPiLibraryAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyPiLibraryAllOf) HasDep ¶

func (o *PyPiLibraryAllOf) HasDep() bool

HasDep returns a boolean if a field has been set.

func (*PyPiLibraryAllOf) HasType ¶

func (o *PyPiLibraryAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (PyPiLibraryAllOf) MarshalJSON ¶

func (o PyPiLibraryAllOf) MarshalJSON() ([]byte, error)

func (*PyPiLibraryAllOf) SetDep ¶

func (o *PyPiLibraryAllOf) SetDep(v string)

SetDep gets a reference to the given string and assigns it to the Dep field.

func (*PyPiLibraryAllOf) SetType ¶

func (o *PyPiLibraryAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type PyTorchOptions ¶

type PyTorchOptions struct {
	Options
	Type               *string  `json:"type,omitempty"`
	Module             *string  `json:"module,omitempty"`
	NumberReplicas     *float32 `json:"number_replicas,omitempty"`
	MasterInstanceType *string  `json:"master_instance_type,omitempty"`
	WorkerInstanceType *string  `json:"worker_instance_type,omitempty"`
}

PyTorchOptions struct for PyTorchOptions

func NewPyTorchOptions ¶

func NewPyTorchOptions() *PyTorchOptions

NewPyTorchOptions instantiates a new PyTorchOptions 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 NewPyTorchOptionsWithDefaults ¶

func NewPyTorchOptionsWithDefaults() *PyTorchOptions

NewPyTorchOptionsWithDefaults instantiates a new PyTorchOptions 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 (*PyTorchOptions) GetMasterInstanceType ¶

func (o *PyTorchOptions) GetMasterInstanceType() string

GetMasterInstanceType returns the MasterInstanceType field value if set, zero value otherwise.

func (*PyTorchOptions) GetMasterInstanceTypeOk ¶

func (o *PyTorchOptions) GetMasterInstanceTypeOk() (*string, bool)

GetMasterInstanceTypeOk returns a tuple with the MasterInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptions) GetModule ¶

func (o *PyTorchOptions) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*PyTorchOptions) GetModuleOk ¶

func (o *PyTorchOptions) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptions) GetNumberReplicas ¶

func (o *PyTorchOptions) GetNumberReplicas() float32

GetNumberReplicas returns the NumberReplicas field value if set, zero value otherwise.

func (*PyTorchOptions) GetNumberReplicasOk ¶

func (o *PyTorchOptions) GetNumberReplicasOk() (*float32, bool)

GetNumberReplicasOk returns a tuple with the NumberReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptions) GetType ¶

func (o *PyTorchOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PyTorchOptions) GetTypeOk ¶

func (o *PyTorchOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptions) GetWorkerInstanceType ¶

func (o *PyTorchOptions) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*PyTorchOptions) GetWorkerInstanceTypeOk ¶

func (o *PyTorchOptions) GetWorkerInstanceTypeOk() (*string, bool)

GetWorkerInstanceTypeOk returns a tuple with the WorkerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptions) HasMasterInstanceType ¶

func (o *PyTorchOptions) HasMasterInstanceType() bool

HasMasterInstanceType returns a boolean if a field has been set.

func (*PyTorchOptions) HasModule ¶

func (o *PyTorchOptions) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*PyTorchOptions) HasNumberReplicas ¶

func (o *PyTorchOptions) HasNumberReplicas() bool

HasNumberReplicas returns a boolean if a field has been set.

func (*PyTorchOptions) HasType ¶

func (o *PyTorchOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (*PyTorchOptions) HasWorkerInstanceType ¶

func (o *PyTorchOptions) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (PyTorchOptions) MarshalJSON ¶

func (o PyTorchOptions) MarshalJSON() ([]byte, error)

func (*PyTorchOptions) SetMasterInstanceType ¶

func (o *PyTorchOptions) SetMasterInstanceType(v string)

SetMasterInstanceType gets a reference to the given string and assigns it to the MasterInstanceType field.

func (*PyTorchOptions) SetModule ¶

func (o *PyTorchOptions) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*PyTorchOptions) SetNumberReplicas ¶

func (o *PyTorchOptions) SetNumberReplicas(v float32)

SetNumberReplicas gets a reference to the given float32 and assigns it to the NumberReplicas field.

func (*PyTorchOptions) SetType ¶

func (o *PyTorchOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*PyTorchOptions) SetWorkerInstanceType ¶

func (o *PyTorchOptions) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

func (PyTorchOptions) ToMap ¶ added in v1.10.3

func (o PyTorchOptions) ToMap() (map[string]interface{}, error)

type PyTorchOptionsAllOf ¶

type PyTorchOptionsAllOf struct {
	Type               *string  `json:"type,omitempty"`
	Module             *string  `json:"module,omitempty"`
	NumberReplicas     *float32 `json:"number_replicas,omitempty"`
	MasterInstanceType *string  `json:"master_instance_type,omitempty"`
	WorkerInstanceType *string  `json:"worker_instance_type,omitempty"`
}

PyTorchOptionsAllOf struct for PyTorchOptionsAllOf

func NewPyTorchOptionsAllOf ¶

func NewPyTorchOptionsAllOf() *PyTorchOptionsAllOf

NewPyTorchOptionsAllOf instantiates a new PyTorchOptionsAllOf 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 NewPyTorchOptionsAllOfWithDefaults ¶

func NewPyTorchOptionsAllOfWithDefaults() *PyTorchOptionsAllOf

NewPyTorchOptionsAllOfWithDefaults instantiates a new PyTorchOptionsAllOf 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 (*PyTorchOptionsAllOf) GetMasterInstanceType ¶

func (o *PyTorchOptionsAllOf) GetMasterInstanceType() string

GetMasterInstanceType returns the MasterInstanceType field value if set, zero value otherwise.

func (*PyTorchOptionsAllOf) GetMasterInstanceTypeOk ¶

func (o *PyTorchOptionsAllOf) GetMasterInstanceTypeOk() (*string, bool)

GetMasterInstanceTypeOk returns a tuple with the MasterInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptionsAllOf) GetModule ¶

func (o *PyTorchOptionsAllOf) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*PyTorchOptionsAllOf) GetModuleOk ¶

func (o *PyTorchOptionsAllOf) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptionsAllOf) GetNumberReplicas ¶

func (o *PyTorchOptionsAllOf) GetNumberReplicas() float32

GetNumberReplicas returns the NumberReplicas field value if set, zero value otherwise.

func (*PyTorchOptionsAllOf) GetNumberReplicasOk ¶

func (o *PyTorchOptionsAllOf) GetNumberReplicasOk() (*float32, bool)

GetNumberReplicasOk returns a tuple with the NumberReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptionsAllOf) GetType ¶

func (o *PyTorchOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PyTorchOptionsAllOf) GetTypeOk ¶

func (o *PyTorchOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptionsAllOf) GetWorkerInstanceType ¶

func (o *PyTorchOptionsAllOf) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*PyTorchOptionsAllOf) GetWorkerInstanceTypeOk ¶

func (o *PyTorchOptionsAllOf) GetWorkerInstanceTypeOk() (*string, bool)

GetWorkerInstanceTypeOk returns a tuple with the WorkerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PyTorchOptionsAllOf) HasMasterInstanceType ¶

func (o *PyTorchOptionsAllOf) HasMasterInstanceType() bool

HasMasterInstanceType returns a boolean if a field has been set.

func (*PyTorchOptionsAllOf) HasModule ¶

func (o *PyTorchOptionsAllOf) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*PyTorchOptionsAllOf) HasNumberReplicas ¶

func (o *PyTorchOptionsAllOf) HasNumberReplicas() bool

HasNumberReplicas returns a boolean if a field has been set.

func (*PyTorchOptionsAllOf) HasType ¶

func (o *PyTorchOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*PyTorchOptionsAllOf) HasWorkerInstanceType ¶

func (o *PyTorchOptionsAllOf) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (PyTorchOptionsAllOf) MarshalJSON ¶

func (o PyTorchOptionsAllOf) MarshalJSON() ([]byte, error)

func (*PyTorchOptionsAllOf) SetMasterInstanceType ¶

func (o *PyTorchOptionsAllOf) SetMasterInstanceType(v string)

SetMasterInstanceType gets a reference to the given string and assigns it to the MasterInstanceType field.

func (*PyTorchOptionsAllOf) SetModule ¶

func (o *PyTorchOptionsAllOf) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*PyTorchOptionsAllOf) SetNumberReplicas ¶

func (o *PyTorchOptionsAllOf) SetNumberReplicas(v float32)

SetNumberReplicas gets a reference to the given float32 and assigns it to the NumberReplicas field.

func (*PyTorchOptionsAllOf) SetType ¶

func (o *PyTorchOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*PyTorchOptionsAllOf) SetWorkerInstanceType ¶

func (o *PyTorchOptionsAllOf) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

type PythonOptions ¶

type PythonOptions struct {
	Options
	Type   *string `json:"type,omitempty"`
	Module *string `json:"module,omitempty"`
}

PythonOptions struct for PythonOptions

func NewPythonOptions ¶

func NewPythonOptions() *PythonOptions

NewPythonOptions instantiates a new PythonOptions 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 NewPythonOptionsWithDefaults ¶

func NewPythonOptionsWithDefaults() *PythonOptions

NewPythonOptionsWithDefaults instantiates a new PythonOptions 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 (*PythonOptions) GetModule ¶

func (o *PythonOptions) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*PythonOptions) GetModuleOk ¶

func (o *PythonOptions) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PythonOptions) GetType ¶

func (o *PythonOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PythonOptions) GetTypeOk ¶

func (o *PythonOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PythonOptions) HasModule ¶

func (o *PythonOptions) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*PythonOptions) HasType ¶

func (o *PythonOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (PythonOptions) MarshalJSON ¶

func (o PythonOptions) MarshalJSON() ([]byte, error)

func (*PythonOptions) SetModule ¶

func (o *PythonOptions) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*PythonOptions) SetType ¶

func (o *PythonOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PythonOptions) ToMap ¶ added in v1.10.3

func (o PythonOptions) ToMap() (map[string]interface{}, error)

type PythonOptionsAllOf ¶

type PythonOptionsAllOf struct {
	Type   *string `json:"type,omitempty"`
	Module *string `json:"module,omitempty"`
}

PythonOptionsAllOf struct for PythonOptionsAllOf

func NewPythonOptionsAllOf ¶

func NewPythonOptionsAllOf() *PythonOptionsAllOf

NewPythonOptionsAllOf instantiates a new PythonOptionsAllOf 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 NewPythonOptionsAllOfWithDefaults ¶

func NewPythonOptionsAllOfWithDefaults() *PythonOptionsAllOf

NewPythonOptionsAllOfWithDefaults instantiates a new PythonOptionsAllOf 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 (*PythonOptionsAllOf) GetModule ¶

func (o *PythonOptionsAllOf) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*PythonOptionsAllOf) GetModuleOk ¶

func (o *PythonOptionsAllOf) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PythonOptionsAllOf) GetType ¶

func (o *PythonOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PythonOptionsAllOf) GetTypeOk ¶

func (o *PythonOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PythonOptionsAllOf) HasModule ¶

func (o *PythonOptionsAllOf) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*PythonOptionsAllOf) HasType ¶

func (o *PythonOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (PythonOptionsAllOf) MarshalJSON ¶

func (o PythonOptionsAllOf) MarshalJSON() ([]byte, error)

func (*PythonOptionsAllOf) SetModule ¶

func (o *PythonOptionsAllOf) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*PythonOptionsAllOf) SetType ¶

func (o *PythonOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Quota ¶

type Quota struct {
	Id          *string    `json:"id,omitempty"`
	Key         *string    `json:"key,omitempty"`
	Level       *string    `json:"level,omitempty"`
	Scope       *string    `json:"scope,omitempty"`
	Name        *string    `json:"name,omitempty"`
	Description *string    `json:"description,omitempty"`
	Sku         *string    `json:"sku,omitempty"`
	Limit       *float32   `json:"limit,omitempty"`
	Current     *float32   `json:"current,omitempty"`
	Created     *time.Time `json:"created,omitempty"`
	Updated     *time.Time `json:"updated,omitempty"`
}

Quota struct for Quota

func NewQuota ¶

func NewQuota() *Quota

NewQuota instantiates a new Quota 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 NewQuotaWithDefaults ¶

func NewQuotaWithDefaults() *Quota

NewQuotaWithDefaults instantiates a new Quota 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 (*Quota) GetCreated ¶

func (o *Quota) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Quota) GetCreatedOk ¶

func (o *Quota) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quota) GetCurrent ¶

func (o *Quota) GetCurrent() float32

GetCurrent returns the Current field value if set, zero value otherwise.

func (*Quota) GetCurrentOk ¶

func (o *Quota) GetCurrentOk() (*float32, bool)

GetCurrentOk returns a tuple with the Current field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quota) GetDescription ¶

func (o *Quota) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Quota) GetDescriptionOk ¶

func (o *Quota) 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 (*Quota) GetId ¶

func (o *Quota) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Quota) GetIdOk ¶

func (o *Quota) 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 (*Quota) GetKey ¶

func (o *Quota) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*Quota) GetKeyOk ¶

func (o *Quota) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quota) GetLevel ¶

func (o *Quota) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*Quota) GetLevelOk ¶

func (o *Quota) GetLevelOk() (*string, bool)

GetLevelOk returns a tuple with the Level field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quota) GetLimit ¶

func (o *Quota) GetLimit() float32

GetLimit returns the Limit field value if set, zero value otherwise.

func (*Quota) GetLimitOk ¶

func (o *Quota) GetLimitOk() (*float32, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quota) GetName ¶

func (o *Quota) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Quota) GetNameOk ¶

func (o *Quota) 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 (*Quota) GetScope ¶

func (o *Quota) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*Quota) GetScopeOk ¶

func (o *Quota) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quota) GetSku ¶

func (o *Quota) GetSku() string

GetSku returns the Sku field value if set, zero value otherwise.

func (*Quota) GetSkuOk ¶

func (o *Quota) GetSkuOk() (*string, bool)

GetSkuOk returns a tuple with the Sku field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quota) GetUpdated ¶

func (o *Quota) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Quota) GetUpdatedOk ¶

func (o *Quota) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quota) HasCreated ¶

func (o *Quota) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Quota) HasCurrent ¶

func (o *Quota) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*Quota) HasDescription ¶

func (o *Quota) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Quota) HasId ¶

func (o *Quota) HasId() bool

HasId returns a boolean if a field has been set.

func (*Quota) HasKey ¶

func (o *Quota) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Quota) HasLevel ¶

func (o *Quota) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*Quota) HasLimit ¶

func (o *Quota) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*Quota) HasName ¶

func (o *Quota) HasName() bool

HasName returns a boolean if a field has been set.

func (*Quota) HasScope ¶

func (o *Quota) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*Quota) HasSku ¶

func (o *Quota) HasSku() bool

HasSku returns a boolean if a field has been set.

func (*Quota) HasUpdated ¶

func (o *Quota) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Quota) MarshalJSON ¶

func (o Quota) MarshalJSON() ([]byte, error)

func (*Quota) SetCreated ¶

func (o *Quota) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Quota) SetCurrent ¶

func (o *Quota) SetCurrent(v float32)

SetCurrent gets a reference to the given float32 and assigns it to the Current field.

func (*Quota) SetDescription ¶

func (o *Quota) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Quota) SetId ¶

func (o *Quota) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Quota) SetKey ¶

func (o *Quota) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*Quota) SetLevel ¶

func (o *Quota) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*Quota) SetLimit ¶

func (o *Quota) SetLimit(v float32)

SetLimit gets a reference to the given float32 and assigns it to the Limit field.

func (*Quota) SetName ¶

func (o *Quota) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Quota) SetScope ¶

func (o *Quota) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*Quota) SetSku ¶

func (o *Quota) SetSku(v string)

SetSku gets a reference to the given string and assigns it to the Sku field.

func (*Quota) SetUpdated ¶

func (o *Quota) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Quota) ToMap ¶ added in v1.10.3

func (o Quota) ToMap() (map[string]interface{}, error)

type QuotaAPIService ¶ added in v1.10.3

type QuotaAPIService service

QuotaAPIService QuotaAPI service

func (*QuotaAPIService) FindQuotaByKey ¶ added in v1.10.3

func (a *QuotaAPIService) FindQuotaByKey(ctx context.Context, key string) ApiFindQuotaByKeyRequest

FindQuotaByKey Find quota by key

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param key Key of the quota
@return ApiFindQuotaByKeyRequest

func (*QuotaAPIService) FindQuotaByKeyExecute ¶ added in v1.10.3

func (a *QuotaAPIService) FindQuotaByKeyExecute(r ApiFindQuotaByKeyRequest) (*Quota, *http.Response, error)

Execute executes the request

@return Quota

func (*QuotaAPIService) FindQuotas ¶ added in v1.10.3

FindQuotas Retrieve all quotas

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindQuotasRequest

func (*QuotaAPIService) FindQuotasExecute ¶ added in v1.10.3

func (a *QuotaAPIService) FindQuotasExecute(r ApiFindQuotasRequest) ([]Quota, *http.Response, error)

Execute executes the request

@return []Quota

type QuotaDetails ¶

type QuotaDetails struct {
	Details
	Type     *string  `json:"type,omitempty"`
	Scope    *string  `json:"scope,omitempty"`
	NewValue *float32 `json:"new_value,omitempty"`
}

QuotaDetails struct for QuotaDetails

func NewQuotaDetails ¶

func NewQuotaDetails() *QuotaDetails

NewQuotaDetails instantiates a new QuotaDetails 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 NewQuotaDetailsWithDefaults ¶

func NewQuotaDetailsWithDefaults() *QuotaDetails

NewQuotaDetailsWithDefaults instantiates a new QuotaDetails 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 (*QuotaDetails) GetNewValue ¶

func (o *QuotaDetails) GetNewValue() float32

GetNewValue returns the NewValue field value if set, zero value otherwise.

func (*QuotaDetails) GetNewValueOk ¶

func (o *QuotaDetails) GetNewValueOk() (*float32, bool)

GetNewValueOk returns a tuple with the NewValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuotaDetails) GetScope ¶

func (o *QuotaDetails) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*QuotaDetails) GetScopeOk ¶

func (o *QuotaDetails) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuotaDetails) GetType ¶

func (o *QuotaDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*QuotaDetails) GetTypeOk ¶

func (o *QuotaDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuotaDetails) HasNewValue ¶

func (o *QuotaDetails) HasNewValue() bool

HasNewValue returns a boolean if a field has been set.

func (*QuotaDetails) HasScope ¶

func (o *QuotaDetails) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*QuotaDetails) HasType ¶

func (o *QuotaDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (QuotaDetails) MarshalJSON ¶

func (o QuotaDetails) MarshalJSON() ([]byte, error)

func (*QuotaDetails) SetNewValue ¶

func (o *QuotaDetails) SetNewValue(v float32)

SetNewValue gets a reference to the given float32 and assigns it to the NewValue field.

func (*QuotaDetails) SetScope ¶

func (o *QuotaDetails) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*QuotaDetails) SetType ¶

func (o *QuotaDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (QuotaDetails) ToMap ¶ added in v1.10.3

func (o QuotaDetails) ToMap() (map[string]interface{}, error)

type QuotaDetailsAllOf ¶

type QuotaDetailsAllOf struct {
	Type     *string  `json:"type,omitempty"`
	Scope    *string  `json:"scope,omitempty"`
	NewValue *float32 `json:"new_value,omitempty"`
}

QuotaDetailsAllOf struct for QuotaDetailsAllOf

func NewQuotaDetailsAllOf ¶

func NewQuotaDetailsAllOf() *QuotaDetailsAllOf

NewQuotaDetailsAllOf instantiates a new QuotaDetailsAllOf 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 NewQuotaDetailsAllOfWithDefaults ¶

func NewQuotaDetailsAllOfWithDefaults() *QuotaDetailsAllOf

NewQuotaDetailsAllOfWithDefaults instantiates a new QuotaDetailsAllOf 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 (*QuotaDetailsAllOf) GetNewValue ¶

func (o *QuotaDetailsAllOf) GetNewValue() float32

GetNewValue returns the NewValue field value if set, zero value otherwise.

func (*QuotaDetailsAllOf) GetNewValueOk ¶

func (o *QuotaDetailsAllOf) GetNewValueOk() (*float32, bool)

GetNewValueOk returns a tuple with the NewValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuotaDetailsAllOf) GetScope ¶

func (o *QuotaDetailsAllOf) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*QuotaDetailsAllOf) GetScopeOk ¶

func (o *QuotaDetailsAllOf) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuotaDetailsAllOf) GetType ¶

func (o *QuotaDetailsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*QuotaDetailsAllOf) GetTypeOk ¶

func (o *QuotaDetailsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuotaDetailsAllOf) HasNewValue ¶

func (o *QuotaDetailsAllOf) HasNewValue() bool

HasNewValue returns a boolean if a field has been set.

func (*QuotaDetailsAllOf) HasScope ¶

func (o *QuotaDetailsAllOf) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*QuotaDetailsAllOf) HasType ¶

func (o *QuotaDetailsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (QuotaDetailsAllOf) MarshalJSON ¶

func (o QuotaDetailsAllOf) MarshalJSON() ([]byte, error)

func (*QuotaDetailsAllOf) SetNewValue ¶

func (o *QuotaDetailsAllOf) SetNewValue(v float32)

SetNewValue gets a reference to the given float32 and assigns it to the NewValue field.

func (*QuotaDetailsAllOf) SetScope ¶

func (o *QuotaDetailsAllOf) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*QuotaDetailsAllOf) SetType ¶

func (o *QuotaDetailsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type RandomForest ¶ added in v1.10.3

type RandomForest struct {
	// Random Forest model.
	Model *string `json:"model,omitempty"`
	// Represent the proportion of the dataset to include in the test split. [0, 1.0]
	TestSize float32 `json:"test_size"`
	// The column of the dataset to predict.
	PredictColumn string `json:"predict_column"`
	// The features columns .
	FeaturesColumn []string `json:"features_column"`
	// The number of trees in the forest.
	NumberTrees int32 `json:"number_trees"`
	// The maximum depth of the tree.
	MaxDepth int32 `json:"max_depth"`
	// Seed to set in order to have reproducible results.
	Seed *int32 `json:"seed,omitempty"`
}

RandomForest Define a logical operator for train a model. Attributes ---------- type : str Type of model (Random Forest, ...). Methods ------- accept(visitor) Enables the visitor to visit the task.

func NewRandomForest ¶ added in v1.10.3

func NewRandomForest(testSize float32, predictColumn string, featuresColumn []string, numberTrees int32, maxDepth int32) *RandomForest

NewRandomForest instantiates a new RandomForest 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 NewRandomForestWithDefaults ¶ added in v1.10.3

func NewRandomForestWithDefaults() *RandomForest

NewRandomForestWithDefaults instantiates a new RandomForest 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 (*RandomForest) GetFeaturesColumn ¶ added in v1.10.3

func (o *RandomForest) GetFeaturesColumn() []string

GetFeaturesColumn returns the FeaturesColumn field value

func (*RandomForest) GetFeaturesColumnOk ¶ added in v1.10.3

func (o *RandomForest) GetFeaturesColumnOk() ([]string, bool)

GetFeaturesColumnOk returns a tuple with the FeaturesColumn field value and a boolean to check if the value has been set.

func (*RandomForest) GetMaxDepth ¶ added in v1.10.3

func (o *RandomForest) GetMaxDepth() int32

GetMaxDepth returns the MaxDepth field value

func (*RandomForest) GetMaxDepthOk ¶ added in v1.10.3

func (o *RandomForest) GetMaxDepthOk() (*int32, bool)

GetMaxDepthOk returns a tuple with the MaxDepth field value and a boolean to check if the value has been set.

func (*RandomForest) GetModel ¶ added in v1.10.3

func (o *RandomForest) GetModel() string

GetModel returns the Model field value if set, zero value otherwise.

func (*RandomForest) GetModelOk ¶ added in v1.10.3

func (o *RandomForest) GetModelOk() (*string, bool)

GetModelOk returns a tuple with the Model field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RandomForest) GetNumberTrees ¶ added in v1.10.3

func (o *RandomForest) GetNumberTrees() int32

GetNumberTrees returns the NumberTrees field value

func (*RandomForest) GetNumberTreesOk ¶ added in v1.10.3

func (o *RandomForest) GetNumberTreesOk() (*int32, bool)

GetNumberTreesOk returns a tuple with the NumberTrees field value and a boolean to check if the value has been set.

func (*RandomForest) GetPredictColumn ¶ added in v1.10.3

func (o *RandomForest) GetPredictColumn() string

GetPredictColumn returns the PredictColumn field value

func (*RandomForest) GetPredictColumnOk ¶ added in v1.10.3

func (o *RandomForest) GetPredictColumnOk() (*string, bool)

GetPredictColumnOk returns a tuple with the PredictColumn field value and a boolean to check if the value has been set.

func (*RandomForest) GetSeed ¶ added in v1.10.3

func (o *RandomForest) GetSeed() int32

GetSeed returns the Seed field value if set, zero value otherwise.

func (*RandomForest) GetSeedOk ¶ added in v1.10.3

func (o *RandomForest) GetSeedOk() (*int32, bool)

GetSeedOk returns a tuple with the Seed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RandomForest) GetTestSize ¶ added in v1.10.3

func (o *RandomForest) GetTestSize() float32

GetTestSize returns the TestSize field value

func (*RandomForest) GetTestSizeOk ¶ added in v1.10.3

func (o *RandomForest) GetTestSizeOk() (*float32, bool)

GetTestSizeOk returns a tuple with the TestSize field value and a boolean to check if the value has been set.

func (*RandomForest) HasModel ¶ added in v1.10.3

func (o *RandomForest) HasModel() bool

HasModel returns a boolean if a field has been set.

func (*RandomForest) HasSeed ¶ added in v1.10.3

func (o *RandomForest) HasSeed() bool

HasSeed returns a boolean if a field has been set.

func (RandomForest) MarshalJSON ¶ added in v1.10.3

func (o RandomForest) MarshalJSON() ([]byte, error)

func (*RandomForest) SetFeaturesColumn ¶ added in v1.10.3

func (o *RandomForest) SetFeaturesColumn(v []string)

SetFeaturesColumn sets field value

func (*RandomForest) SetMaxDepth ¶ added in v1.10.3

func (o *RandomForest) SetMaxDepth(v int32)

SetMaxDepth sets field value

func (*RandomForest) SetModel ¶ added in v1.10.3

func (o *RandomForest) SetModel(v string)

SetModel gets a reference to the given string and assigns it to the Model field.

func (*RandomForest) SetNumberTrees ¶ added in v1.10.3

func (o *RandomForest) SetNumberTrees(v int32)

SetNumberTrees sets field value

func (*RandomForest) SetPredictColumn ¶ added in v1.10.3

func (o *RandomForest) SetPredictColumn(v string)

SetPredictColumn sets field value

func (*RandomForest) SetSeed ¶ added in v1.10.3

func (o *RandomForest) SetSeed(v int32)

SetSeed gets a reference to the given int32 and assigns it to the Seed field.

func (*RandomForest) SetTestSize ¶ added in v1.10.3

func (o *RandomForest) SetTestSize(v float32)

SetTestSize sets field value

func (RandomForest) ToMap ¶ added in v1.10.3

func (o RandomForest) ToMap() (map[string]interface{}, error)

func (*RandomForest) UnmarshalJSON ¶ added in v1.10.3

func (o *RandomForest) UnmarshalJSON(bytes []byte) (err error)

type RayOptions ¶ added in v1.10.3

type RayOptions struct {
	Options
	Type               *string  `json:"type,omitempty"`
	PackageName        *string  `json:"package_name,omitempty"`
	ModuleName         *string  `json:"module_name,omitempty"`
	FunctionName       *string  `json:"function_name,omitempty"`
	NumberWorkers      *float32 `json:"number_workers,omitempty"`
	NumberWorkersMax   *float32 `json:"number_workers_max,omitempty"`
	DriverInstanceType *string  `json:"driver_instance_type,omitempty"`
	WorkerInstanceType *string  `json:"worker_instance_type,omitempty"`
}

RayOptions struct for RayOptions

func NewRayOptions ¶ added in v1.10.3

func NewRayOptions() *RayOptions

NewRayOptions instantiates a new RayOptions 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 NewRayOptionsWithDefaults ¶ added in v1.10.3

func NewRayOptionsWithDefaults() *RayOptions

NewRayOptionsWithDefaults instantiates a new RayOptions 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 (*RayOptions) GetDriverInstanceType ¶ added in v1.10.3

func (o *RayOptions) GetDriverInstanceType() string

GetDriverInstanceType returns the DriverInstanceType field value if set, zero value otherwise.

func (*RayOptions) GetDriverInstanceTypeOk ¶ added in v1.10.3

func (o *RayOptions) GetDriverInstanceTypeOk() (*string, bool)

GetDriverInstanceTypeOk returns a tuple with the DriverInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptions) GetFunctionName ¶ added in v1.10.3

func (o *RayOptions) GetFunctionName() string

GetFunctionName returns the FunctionName field value if set, zero value otherwise.

func (*RayOptions) GetFunctionNameOk ¶ added in v1.10.3

func (o *RayOptions) GetFunctionNameOk() (*string, bool)

GetFunctionNameOk returns a tuple with the FunctionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptions) GetModuleName ¶ added in v1.10.3

func (o *RayOptions) GetModuleName() string

GetModuleName returns the ModuleName field value if set, zero value otherwise.

func (*RayOptions) GetModuleNameOk ¶ added in v1.10.3

func (o *RayOptions) GetModuleNameOk() (*string, bool)

GetModuleNameOk returns a tuple with the ModuleName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptions) GetNumberWorkers ¶ added in v1.10.3

func (o *RayOptions) GetNumberWorkers() float32

GetNumberWorkers returns the NumberWorkers field value if set, zero value otherwise.

func (*RayOptions) GetNumberWorkersMax ¶ added in v1.10.3

func (o *RayOptions) GetNumberWorkersMax() float32

GetNumberWorkersMax returns the NumberWorkersMax field value if set, zero value otherwise.

func (*RayOptions) GetNumberWorkersMaxOk ¶ added in v1.10.3

func (o *RayOptions) GetNumberWorkersMaxOk() (*float32, bool)

GetNumberWorkersMaxOk returns a tuple with the NumberWorkersMax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptions) GetNumberWorkersOk ¶ added in v1.10.3

func (o *RayOptions) GetNumberWorkersOk() (*float32, bool)

GetNumberWorkersOk returns a tuple with the NumberWorkers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptions) GetPackageName ¶ added in v1.10.3

func (o *RayOptions) GetPackageName() string

GetPackageName returns the PackageName field value if set, zero value otherwise.

func (*RayOptions) GetPackageNameOk ¶ added in v1.10.3

func (o *RayOptions) GetPackageNameOk() (*string, bool)

GetPackageNameOk returns a tuple with the PackageName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptions) GetType ¶ added in v1.10.3

func (o *RayOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RayOptions) GetTypeOk ¶ added in v1.10.3

func (o *RayOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptions) GetWorkerInstanceType ¶ added in v1.10.3

func (o *RayOptions) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*RayOptions) GetWorkerInstanceTypeOk ¶ added in v1.10.3

func (o *RayOptions) GetWorkerInstanceTypeOk() (*string, bool)

GetWorkerInstanceTypeOk returns a tuple with the WorkerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptions) HasDriverInstanceType ¶ added in v1.10.3

func (o *RayOptions) HasDriverInstanceType() bool

HasDriverInstanceType returns a boolean if a field has been set.

func (*RayOptions) HasFunctionName ¶ added in v1.10.3

func (o *RayOptions) HasFunctionName() bool

HasFunctionName returns a boolean if a field has been set.

func (*RayOptions) HasModuleName ¶ added in v1.10.3

func (o *RayOptions) HasModuleName() bool

HasModuleName returns a boolean if a field has been set.

func (*RayOptions) HasNumberWorkers ¶ added in v1.10.3

func (o *RayOptions) HasNumberWorkers() bool

HasNumberWorkers returns a boolean if a field has been set.

func (*RayOptions) HasNumberWorkersMax ¶ added in v1.10.3

func (o *RayOptions) HasNumberWorkersMax() bool

HasNumberWorkersMax returns a boolean if a field has been set.

func (*RayOptions) HasPackageName ¶ added in v1.10.3

func (o *RayOptions) HasPackageName() bool

HasPackageName returns a boolean if a field has been set.

func (*RayOptions) HasType ¶ added in v1.10.3

func (o *RayOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (*RayOptions) HasWorkerInstanceType ¶ added in v1.10.3

func (o *RayOptions) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (RayOptions) MarshalJSON ¶ added in v1.10.3

func (o RayOptions) MarshalJSON() ([]byte, error)

func (*RayOptions) SetDriverInstanceType ¶ added in v1.10.3

func (o *RayOptions) SetDriverInstanceType(v string)

SetDriverInstanceType gets a reference to the given string and assigns it to the DriverInstanceType field.

func (*RayOptions) SetFunctionName ¶ added in v1.10.3

func (o *RayOptions) SetFunctionName(v string)

SetFunctionName gets a reference to the given string and assigns it to the FunctionName field.

func (*RayOptions) SetModuleName ¶ added in v1.10.3

func (o *RayOptions) SetModuleName(v string)

SetModuleName gets a reference to the given string and assigns it to the ModuleName field.

func (*RayOptions) SetNumberWorkers ¶ added in v1.10.3

func (o *RayOptions) SetNumberWorkers(v float32)

SetNumberWorkers gets a reference to the given float32 and assigns it to the NumberWorkers field.

func (*RayOptions) SetNumberWorkersMax ¶ added in v1.10.3

func (o *RayOptions) SetNumberWorkersMax(v float32)

SetNumberWorkersMax gets a reference to the given float32 and assigns it to the NumberWorkersMax field.

func (*RayOptions) SetPackageName ¶ added in v1.10.3

func (o *RayOptions) SetPackageName(v string)

SetPackageName gets a reference to the given string and assigns it to the PackageName field.

func (*RayOptions) SetType ¶ added in v1.10.3

func (o *RayOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RayOptions) SetWorkerInstanceType ¶ added in v1.10.3

func (o *RayOptions) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

func (RayOptions) ToMap ¶ added in v1.10.3

func (o RayOptions) ToMap() (map[string]interface{}, error)

type RayOptionsAllOf ¶ added in v1.10.3

type RayOptionsAllOf struct {
	Type               *string  `json:"type,omitempty"`
	PackageName        *string  `json:"package_name,omitempty"`
	ModuleName         *string  `json:"module_name,omitempty"`
	FunctionName       *string  `json:"function_name,omitempty"`
	NumberWorkers      *float32 `json:"number_workers,omitempty"`
	NumberWorkersMax   *float32 `json:"number_workers_max,omitempty"`
	DriverInstanceType *string  `json:"driver_instance_type,omitempty"`
	WorkerInstanceType *string  `json:"worker_instance_type,omitempty"`
}

RayOptionsAllOf struct for RayOptionsAllOf

func NewRayOptionsAllOf ¶ added in v1.10.3

func NewRayOptionsAllOf() *RayOptionsAllOf

NewRayOptionsAllOf instantiates a new RayOptionsAllOf 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 NewRayOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewRayOptionsAllOfWithDefaults() *RayOptionsAllOf

NewRayOptionsAllOfWithDefaults instantiates a new RayOptionsAllOf 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 (*RayOptionsAllOf) GetDriverInstanceType ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetDriverInstanceType() string

GetDriverInstanceType returns the DriverInstanceType field value if set, zero value otherwise.

func (*RayOptionsAllOf) GetDriverInstanceTypeOk ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetDriverInstanceTypeOk() (*string, bool)

GetDriverInstanceTypeOk returns a tuple with the DriverInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptionsAllOf) GetFunctionName ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetFunctionName() string

GetFunctionName returns the FunctionName field value if set, zero value otherwise.

func (*RayOptionsAllOf) GetFunctionNameOk ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetFunctionNameOk() (*string, bool)

GetFunctionNameOk returns a tuple with the FunctionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptionsAllOf) GetModuleName ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetModuleName() string

GetModuleName returns the ModuleName field value if set, zero value otherwise.

func (*RayOptionsAllOf) GetModuleNameOk ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetModuleNameOk() (*string, bool)

GetModuleNameOk returns a tuple with the ModuleName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptionsAllOf) GetNumberWorkers ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetNumberWorkers() float32

GetNumberWorkers returns the NumberWorkers field value if set, zero value otherwise.

func (*RayOptionsAllOf) GetNumberWorkersMax ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetNumberWorkersMax() float32

GetNumberWorkersMax returns the NumberWorkersMax field value if set, zero value otherwise.

func (*RayOptionsAllOf) GetNumberWorkersMaxOk ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetNumberWorkersMaxOk() (*float32, bool)

GetNumberWorkersMaxOk returns a tuple with the NumberWorkersMax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptionsAllOf) GetNumberWorkersOk ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetNumberWorkersOk() (*float32, bool)

GetNumberWorkersOk returns a tuple with the NumberWorkers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptionsAllOf) GetPackageName ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetPackageName() string

GetPackageName returns the PackageName field value if set, zero value otherwise.

func (*RayOptionsAllOf) GetPackageNameOk ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetPackageNameOk() (*string, bool)

GetPackageNameOk returns a tuple with the PackageName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptionsAllOf) GetType ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RayOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptionsAllOf) GetWorkerInstanceType ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*RayOptionsAllOf) GetWorkerInstanceTypeOk ¶ added in v1.10.3

func (o *RayOptionsAllOf) GetWorkerInstanceTypeOk() (*string, bool)

GetWorkerInstanceTypeOk returns a tuple with the WorkerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RayOptionsAllOf) HasDriverInstanceType ¶ added in v1.10.3

func (o *RayOptionsAllOf) HasDriverInstanceType() bool

HasDriverInstanceType returns a boolean if a field has been set.

func (*RayOptionsAllOf) HasFunctionName ¶ added in v1.10.3

func (o *RayOptionsAllOf) HasFunctionName() bool

HasFunctionName returns a boolean if a field has been set.

func (*RayOptionsAllOf) HasModuleName ¶ added in v1.10.3

func (o *RayOptionsAllOf) HasModuleName() bool

HasModuleName returns a boolean if a field has been set.

func (*RayOptionsAllOf) HasNumberWorkers ¶ added in v1.10.3

func (o *RayOptionsAllOf) HasNumberWorkers() bool

HasNumberWorkers returns a boolean if a field has been set.

func (*RayOptionsAllOf) HasNumberWorkersMax ¶ added in v1.10.3

func (o *RayOptionsAllOf) HasNumberWorkersMax() bool

HasNumberWorkersMax returns a boolean if a field has been set.

func (*RayOptionsAllOf) HasPackageName ¶ added in v1.10.3

func (o *RayOptionsAllOf) HasPackageName() bool

HasPackageName returns a boolean if a field has been set.

func (*RayOptionsAllOf) HasType ¶ added in v1.10.3

func (o *RayOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*RayOptionsAllOf) HasWorkerInstanceType ¶ added in v1.10.3

func (o *RayOptionsAllOf) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (RayOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o RayOptionsAllOf) MarshalJSON() ([]byte, error)

func (*RayOptionsAllOf) SetDriverInstanceType ¶ added in v1.10.3

func (o *RayOptionsAllOf) SetDriverInstanceType(v string)

SetDriverInstanceType gets a reference to the given string and assigns it to the DriverInstanceType field.

func (*RayOptionsAllOf) SetFunctionName ¶ added in v1.10.3

func (o *RayOptionsAllOf) SetFunctionName(v string)

SetFunctionName gets a reference to the given string and assigns it to the FunctionName field.

func (*RayOptionsAllOf) SetModuleName ¶ added in v1.10.3

func (o *RayOptionsAllOf) SetModuleName(v string)

SetModuleName gets a reference to the given string and assigns it to the ModuleName field.

func (*RayOptionsAllOf) SetNumberWorkers ¶ added in v1.10.3

func (o *RayOptionsAllOf) SetNumberWorkers(v float32)

SetNumberWorkers gets a reference to the given float32 and assigns it to the NumberWorkers field.

func (*RayOptionsAllOf) SetNumberWorkersMax ¶ added in v1.10.3

func (o *RayOptionsAllOf) SetNumberWorkersMax(v float32)

SetNumberWorkersMax gets a reference to the given float32 and assigns it to the NumberWorkersMax field.

func (*RayOptionsAllOf) SetPackageName ¶ added in v1.10.3

func (o *RayOptionsAllOf) SetPackageName(v string)

SetPackageName gets a reference to the given string and assigns it to the PackageName field.

func (*RayOptionsAllOf) SetType ¶ added in v1.10.3

func (o *RayOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RayOptionsAllOf) SetWorkerInstanceType ¶ added in v1.10.3

func (o *RayOptionsAllOf) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

type Reaction ¶ added in v1.10.3

type Reaction struct {
	Id    string  `json:"id"`
	Count *int32  `json:"count,omitempty"`
	Users []User1 `json:"users,omitempty"`
}

Reaction struct for Reaction

func NewReaction ¶ added in v1.10.3

func NewReaction(id string) *Reaction

NewReaction instantiates a new Reaction 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 NewReactionWithDefaults ¶ added in v1.10.3

func NewReactionWithDefaults() *Reaction

NewReactionWithDefaults instantiates a new Reaction 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 (*Reaction) GetCount ¶ added in v1.10.3

func (o *Reaction) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*Reaction) GetCountOk ¶ added in v1.10.3

func (o *Reaction) GetCountOk() (*int32, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Reaction) GetId ¶ added in v1.10.3

func (o *Reaction) GetId() string

GetId returns the Id field value

func (*Reaction) GetIdOk ¶ added in v1.10.3

func (o *Reaction) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Reaction) GetUsers ¶ added in v1.10.3

func (o *Reaction) GetUsers() []User1

GetUsers returns the Users field value if set, zero value otherwise.

func (*Reaction) GetUsersOk ¶ added in v1.10.3

func (o *Reaction) GetUsersOk() ([]User1, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Reaction) HasCount ¶ added in v1.10.3

func (o *Reaction) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*Reaction) HasUsers ¶ added in v1.10.3

func (o *Reaction) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (Reaction) MarshalJSON ¶ added in v1.10.3

func (o Reaction) MarshalJSON() ([]byte, error)

func (*Reaction) SetCount ¶ added in v1.10.3

func (o *Reaction) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*Reaction) SetId ¶ added in v1.10.3

func (o *Reaction) SetId(v string)

SetId sets field value

func (*Reaction) SetUsers ¶ added in v1.10.3

func (o *Reaction) SetUsers(v []User1)

SetUsers gets a reference to the given []User1 and assigns it to the Users field.

func (Reaction) ToMap ¶ added in v1.10.3

func (o Reaction) ToMap() (map[string]interface{}, error)

func (*Reaction) UnmarshalJSON ¶ added in v1.10.3

func (o *Reaction) UnmarshalJSON(bytes []byte) (err error)

type ReactionCount ¶ added in v1.10.3

type ReactionCount struct {
	Id    string `json:"id"`
	Count *int32 `json:"count,omitempty"`
}

ReactionCount struct for ReactionCount

func NewReactionCount ¶ added in v1.10.3

func NewReactionCount(id string) *ReactionCount

NewReactionCount instantiates a new ReactionCount 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 NewReactionCountWithDefaults ¶ added in v1.10.3

func NewReactionCountWithDefaults() *ReactionCount

NewReactionCountWithDefaults instantiates a new ReactionCount 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 (*ReactionCount) GetCount ¶ added in v1.10.3

func (o *ReactionCount) GetCount() int32

GetCount returns the Count field value if set, zero value otherwise.

func (*ReactionCount) GetCountOk ¶ added in v1.10.3

func (o *ReactionCount) GetCountOk() (*int32, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReactionCount) GetId ¶ added in v1.10.3

func (o *ReactionCount) GetId() string

GetId returns the Id field value

func (*ReactionCount) GetIdOk ¶ added in v1.10.3

func (o *ReactionCount) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ReactionCount) HasCount ¶ added in v1.10.3

func (o *ReactionCount) HasCount() bool

HasCount returns a boolean if a field has been set.

func (ReactionCount) MarshalJSON ¶ added in v1.10.3

func (o ReactionCount) MarshalJSON() ([]byte, error)

func (*ReactionCount) SetCount ¶ added in v1.10.3

func (o *ReactionCount) SetCount(v int32)

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*ReactionCount) SetId ¶ added in v1.10.3

func (o *ReactionCount) SetId(v string)

SetId sets field value

func (ReactionCount) ToMap ¶ added in v1.10.3

func (o ReactionCount) ToMap() (map[string]interface{}, error)

func (*ReactionCount) UnmarshalJSON ¶ added in v1.10.3

func (o *ReactionCount) UnmarshalJSON(bytes []byte) (err error)

type ReadFileParams ¶ added in v1.10.3

type ReadFileParams struct {
	// Type of object file.
	Type      *string    `json:"type,omitempty"`
	Connector Connector1 `json:"connector"`
	// List of dictionaries representing the columns         (name and type). For each dictionnary the 'name' represents the column         name and the 'type' their corresponding type.
	Structure []map[string]string     `json:"structure,omitempty"`
	Object    ParametersToWriteAFile1 `json:"object"`
}

ReadFileParams struct for ReadFileParams

func NewReadFileParams ¶ added in v1.10.3

func NewReadFileParams(connector Connector1, object ParametersToWriteAFile1) *ReadFileParams

NewReadFileParams instantiates a new ReadFileParams 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 NewReadFileParamsWithDefaults ¶ added in v1.10.3

func NewReadFileParamsWithDefaults() *ReadFileParams

NewReadFileParamsWithDefaults instantiates a new ReadFileParams 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 (*ReadFileParams) GetConnector ¶ added in v1.10.3

func (o *ReadFileParams) GetConnector() Connector1

GetConnector returns the Connector field value

func (*ReadFileParams) GetConnectorOk ¶ added in v1.10.3

func (o *ReadFileParams) GetConnectorOk() (*Connector1, bool)

GetConnectorOk returns a tuple with the Connector field value and a boolean to check if the value has been set.

func (*ReadFileParams) GetObject ¶ added in v1.10.3

func (o *ReadFileParams) GetObject() ParametersToWriteAFile1

GetObject returns the Object field value

func (*ReadFileParams) GetObjectOk ¶ added in v1.10.3

func (o *ReadFileParams) GetObjectOk() (*ParametersToWriteAFile1, bool)

GetObjectOk returns a tuple with the Object field value and a boolean to check if the value has been set.

func (*ReadFileParams) GetStructure ¶ added in v1.10.3

func (o *ReadFileParams) GetStructure() []map[string]string

GetStructure returns the Structure field value if set, zero value otherwise.

func (*ReadFileParams) GetStructureOk ¶ added in v1.10.3

func (o *ReadFileParams) GetStructureOk() ([]map[string]string, bool)

GetStructureOk returns a tuple with the Structure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadFileParams) GetType ¶ added in v1.10.3

func (o *ReadFileParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ReadFileParams) GetTypeOk ¶ added in v1.10.3

func (o *ReadFileParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadFileParams) HasStructure ¶ added in v1.10.3

func (o *ReadFileParams) HasStructure() bool

HasStructure returns a boolean if a field has been set.

func (*ReadFileParams) HasType ¶ added in v1.10.3

func (o *ReadFileParams) HasType() bool

HasType returns a boolean if a field has been set.

func (ReadFileParams) MarshalJSON ¶ added in v1.10.3

func (o ReadFileParams) MarshalJSON() ([]byte, error)

func (*ReadFileParams) SetConnector ¶ added in v1.10.3

func (o *ReadFileParams) SetConnector(v Connector1)

SetConnector sets field value

func (*ReadFileParams) SetObject ¶ added in v1.10.3

func (o *ReadFileParams) SetObject(v ParametersToWriteAFile1)

SetObject sets field value

func (*ReadFileParams) SetStructure ¶ added in v1.10.3

func (o *ReadFileParams) SetStructure(v []map[string]string)

SetStructure gets a reference to the given []map[string]string and assigns it to the Structure field.

func (*ReadFileParams) SetType ¶ added in v1.10.3

func (o *ReadFileParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ReadFileParams) ToMap ¶ added in v1.10.3

func (o ReadFileParams) ToMap() (map[string]interface{}, error)

func (*ReadFileParams) UnmarshalJSON ¶ added in v1.10.3

func (o *ReadFileParams) UnmarshalJSON(bytes []byte) (err error)

type ReadSQLParams ¶ added in v1.10.3

type ReadSQLParams struct {
	// Type SQL server.
	Type   *string       `json:"type,omitempty"`
	Object SQLDataReader `json:"object"`
	// List of dictionaries representing the columns (name and type). For each dictionnary the         'name' represents the column name and the 'type' their corresponding type.
	Structure []map[string]string `json:"structure,omitempty"`
	Connector DatabaseConnector   `json:"connector"`
}

ReadSQLParams struct for ReadSQLParams

func NewReadSQLParams ¶ added in v1.10.3

func NewReadSQLParams(object SQLDataReader, connector DatabaseConnector) *ReadSQLParams

NewReadSQLParams instantiates a new ReadSQLParams 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 NewReadSQLParamsWithDefaults ¶ added in v1.10.3

func NewReadSQLParamsWithDefaults() *ReadSQLParams

NewReadSQLParamsWithDefaults instantiates a new ReadSQLParams 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 (*ReadSQLParams) GetConnector ¶ added in v1.10.3

func (o *ReadSQLParams) GetConnector() DatabaseConnector

GetConnector returns the Connector field value

func (*ReadSQLParams) GetConnectorOk ¶ added in v1.10.3

func (o *ReadSQLParams) GetConnectorOk() (*DatabaseConnector, bool)

GetConnectorOk returns a tuple with the Connector field value and a boolean to check if the value has been set.

func (*ReadSQLParams) GetObject ¶ added in v1.10.3

func (o *ReadSQLParams) GetObject() SQLDataReader

GetObject returns the Object field value

func (*ReadSQLParams) GetObjectOk ¶ added in v1.10.3

func (o *ReadSQLParams) GetObjectOk() (*SQLDataReader, bool)

GetObjectOk returns a tuple with the Object field value and a boolean to check if the value has been set.

func (*ReadSQLParams) GetStructure ¶ added in v1.10.3

func (o *ReadSQLParams) GetStructure() []map[string]string

GetStructure returns the Structure field value if set, zero value otherwise.

func (*ReadSQLParams) GetStructureOk ¶ added in v1.10.3

func (o *ReadSQLParams) GetStructureOk() ([]map[string]string, bool)

GetStructureOk returns a tuple with the Structure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadSQLParams) GetType ¶ added in v1.10.3

func (o *ReadSQLParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ReadSQLParams) GetTypeOk ¶ added in v1.10.3

func (o *ReadSQLParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadSQLParams) HasStructure ¶ added in v1.10.3

func (o *ReadSQLParams) HasStructure() bool

HasStructure returns a boolean if a field has been set.

func (*ReadSQLParams) HasType ¶ added in v1.10.3

func (o *ReadSQLParams) HasType() bool

HasType returns a boolean if a field has been set.

func (ReadSQLParams) MarshalJSON ¶ added in v1.10.3

func (o ReadSQLParams) MarshalJSON() ([]byte, error)

func (*ReadSQLParams) SetConnector ¶ added in v1.10.3

func (o *ReadSQLParams) SetConnector(v DatabaseConnector)

SetConnector sets field value

func (*ReadSQLParams) SetObject ¶ added in v1.10.3

func (o *ReadSQLParams) SetObject(v SQLDataReader)

SetObject sets field value

func (*ReadSQLParams) SetStructure ¶ added in v1.10.3

func (o *ReadSQLParams) SetStructure(v []map[string]string)

SetStructure gets a reference to the given []map[string]string and assigns it to the Structure field.

func (*ReadSQLParams) SetType ¶ added in v1.10.3

func (o *ReadSQLParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ReadSQLParams) ToMap ¶ added in v1.10.3

func (o ReadSQLParams) ToMap() (map[string]interface{}, error)

func (*ReadSQLParams) UnmarshalJSON ¶ added in v1.10.3

func (o *ReadSQLParams) UnmarshalJSON(bytes []byte) (err error)

type ReadTask ¶ added in v1.10.3

type ReadTask struct {
	Id     string             `json:"id"`
	Params ReadTaskParameters `json:"params"`
	// Type of the read task.
	Type *string `json:"type,omitempty"`
	// List of all dependencies of the task (optional).
	Dependency []string `json:"dependency,omitempty"`
}

ReadTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewReadTask ¶ added in v1.10.3

func NewReadTask(id string, params ReadTaskParameters) *ReadTask

NewReadTask instantiates a new ReadTask 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 NewReadTaskWithDefaults ¶ added in v1.10.3

func NewReadTaskWithDefaults() *ReadTask

NewReadTaskWithDefaults instantiates a new ReadTask 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 (*ReadTask) GetDependency ¶ added in v1.10.3

func (o *ReadTask) GetDependency() []string

GetDependency returns the Dependency field value if set, zero value otherwise.

func (*ReadTask) GetDependencyOk ¶ added in v1.10.3

func (o *ReadTask) GetDependencyOk() ([]string, bool)

GetDependencyOk returns a tuple with the Dependency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadTask) GetId ¶ added in v1.10.3

func (o *ReadTask) GetId() string

GetId returns the Id field value

func (*ReadTask) GetIdOk ¶ added in v1.10.3

func (o *ReadTask) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ReadTask) GetParams ¶ added in v1.10.3

func (o *ReadTask) GetParams() ReadTaskParameters

GetParams returns the Params field value

func (*ReadTask) GetParamsOk ¶ added in v1.10.3

func (o *ReadTask) GetParamsOk() (*ReadTaskParameters, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (*ReadTask) GetType ¶ added in v1.10.3

func (o *ReadTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ReadTask) GetTypeOk ¶ added in v1.10.3

func (o *ReadTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReadTask) HasDependency ¶ added in v1.10.3

func (o *ReadTask) HasDependency() bool

HasDependency returns a boolean if a field has been set.

func (*ReadTask) HasType ¶ added in v1.10.3

func (o *ReadTask) HasType() bool

HasType returns a boolean if a field has been set.

func (ReadTask) MarshalJSON ¶ added in v1.10.3

func (o ReadTask) MarshalJSON() ([]byte, error)

func (*ReadTask) SetDependency ¶ added in v1.10.3

func (o *ReadTask) SetDependency(v []string)

SetDependency gets a reference to the given []string and assigns it to the Dependency field.

func (*ReadTask) SetId ¶ added in v1.10.3

func (o *ReadTask) SetId(v string)

SetId sets field value

func (*ReadTask) SetParams ¶ added in v1.10.3

func (o *ReadTask) SetParams(v ReadTaskParameters)

SetParams sets field value

func (*ReadTask) SetType ¶ added in v1.10.3

func (o *ReadTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ReadTask) ToMap ¶ added in v1.10.3

func (o ReadTask) ToMap() (map[string]interface{}, error)

func (*ReadTask) UnmarshalJSON ¶ added in v1.10.3

func (o *ReadTask) UnmarshalJSON(bytes []byte) (err error)

type ReadTaskParameters ¶ added in v1.10.3

type ReadTaskParameters struct {
	LoadModelParams *LoadModelParams
	ReadFileParams  *ReadFileParams
	ReadSQLParams   *ReadSQLParams
}

ReadTaskParameters - Parameters of the read task.

func LoadModelParamsAsReadTaskParameters ¶ added in v1.10.3

func LoadModelParamsAsReadTaskParameters(v *LoadModelParams) ReadTaskParameters

LoadModelParamsAsReadTaskParameters is a convenience function that returns LoadModelParams wrapped in ReadTaskParameters

func ReadFileParamsAsReadTaskParameters ¶ added in v1.10.3

func ReadFileParamsAsReadTaskParameters(v *ReadFileParams) ReadTaskParameters

ReadFileParamsAsReadTaskParameters is a convenience function that returns ReadFileParams wrapped in ReadTaskParameters

func ReadSQLParamsAsReadTaskParameters ¶ added in v1.10.3

func ReadSQLParamsAsReadTaskParameters(v *ReadSQLParams) ReadTaskParameters

ReadSQLParamsAsReadTaskParameters is a convenience function that returns ReadSQLParams wrapped in ReadTaskParameters

func (*ReadTaskParameters) GetActualInstance ¶ added in v1.10.3

func (obj *ReadTaskParameters) GetActualInstance() interface{}

Get the actual instance

func (ReadTaskParameters) MarshalJSON ¶ added in v1.10.3

func (src ReadTaskParameters) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ReadTaskParameters) UnmarshalJSON ¶ added in v1.10.3

func (dst *ReadTaskParameters) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type RenameParams ¶ added in v1.10.3

type RenameParams struct {
	// Name of the column to rename.
	OldName string `json:"old_name"`
	// Replacement name for the column.
	NewName string `json:"new_name"`
}

RenameParams struct for RenameParams

func NewRenameParams ¶ added in v1.10.3

func NewRenameParams(oldName string, newName string) *RenameParams

NewRenameParams instantiates a new RenameParams 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 NewRenameParamsWithDefaults ¶ added in v1.10.3

func NewRenameParamsWithDefaults() *RenameParams

NewRenameParamsWithDefaults instantiates a new RenameParams 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 (*RenameParams) GetNewName ¶ added in v1.10.3

func (o *RenameParams) GetNewName() string

GetNewName returns the NewName field value

func (*RenameParams) GetNewNameOk ¶ added in v1.10.3

func (o *RenameParams) GetNewNameOk() (*string, bool)

GetNewNameOk returns a tuple with the NewName field value and a boolean to check if the value has been set.

func (*RenameParams) GetOldName ¶ added in v1.10.3

func (o *RenameParams) GetOldName() string

GetOldName returns the OldName field value

func (*RenameParams) GetOldNameOk ¶ added in v1.10.3

func (o *RenameParams) GetOldNameOk() (*string, bool)

GetOldNameOk returns a tuple with the OldName field value and a boolean to check if the value has been set.

func (RenameParams) MarshalJSON ¶ added in v1.10.3

func (o RenameParams) MarshalJSON() ([]byte, error)

func (*RenameParams) SetNewName ¶ added in v1.10.3

func (o *RenameParams) SetNewName(v string)

SetNewName sets field value

func (*RenameParams) SetOldName ¶ added in v1.10.3

func (o *RenameParams) SetOldName(v string)

SetOldName sets field value

func (RenameParams) ToMap ¶ added in v1.10.3

func (o RenameParams) ToMap() (map[string]interface{}, error)

func (*RenameParams) UnmarshalJSON ¶ added in v1.10.3

func (o *RenameParams) UnmarshalJSON(bytes []byte) (err error)

type RenameTask ¶ added in v1.10.3

type RenameTask struct {
	// Identifier of the task.
	Id     string       `json:"id"`
	Params RenameParams `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the rename task.
	Type *string `json:"type,omitempty"`
}

RenameTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewRenameTask ¶ added in v1.10.3

func NewRenameTask(id string, params RenameParams, dependency []string) *RenameTask

NewRenameTask instantiates a new RenameTask 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 NewRenameTaskWithDefaults ¶ added in v1.10.3

func NewRenameTaskWithDefaults() *RenameTask

NewRenameTaskWithDefaults instantiates a new RenameTask 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 (*RenameTask) GetDependency ¶ added in v1.10.3

func (o *RenameTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*RenameTask) GetDependencyOk ¶ added in v1.10.3

func (o *RenameTask) GetDependencyOk() ([]string, bool)

GetDependencyOk returns a tuple with the Dependency field value and a boolean to check if the value has been set.

func (*RenameTask) GetId ¶ added in v1.10.3

func (o *RenameTask) GetId() string

GetId returns the Id field value

func (*RenameTask) GetIdOk ¶ added in v1.10.3

func (o *RenameTask) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*RenameTask) GetParams ¶ added in v1.10.3

func (o *RenameTask) GetParams() RenameParams

GetParams returns the Params field value

func (*RenameTask) GetParamsOk ¶ added in v1.10.3

func (o *RenameTask) GetParamsOk() (*RenameParams, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (*RenameTask) GetType ¶ added in v1.10.3

func (o *RenameTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RenameTask) GetTypeOk ¶ added in v1.10.3

func (o *RenameTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RenameTask) HasType ¶ added in v1.10.3

func (o *RenameTask) HasType() bool

HasType returns a boolean if a field has been set.

func (RenameTask) MarshalJSON ¶ added in v1.10.3

func (o RenameTask) MarshalJSON() ([]byte, error)

func (*RenameTask) SetDependency ¶ added in v1.10.3

func (o *RenameTask) SetDependency(v []string)

SetDependency sets field value

func (*RenameTask) SetId ¶ added in v1.10.3

func (o *RenameTask) SetId(v string)

SetId sets field value

func (*RenameTask) SetParams ¶ added in v1.10.3

func (o *RenameTask) SetParams(v RenameParams)

SetParams sets field value

func (*RenameTask) SetType ¶ added in v1.10.3

func (o *RenameTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RenameTask) ToMap ¶ added in v1.10.3

func (o RenameTask) ToMap() (map[string]interface{}, error)

func (*RenameTask) UnmarshalJSON ¶ added in v1.10.3

func (o *RenameTask) UnmarshalJSON(bytes []byte) (err error)

type Request ¶ added in v1.10.3

type Request struct {
	Name             *string  `json:"name,omitempty"`
	Currency         *string  `json:"currency,omitempty"`
	Amount           *string  `json:"amount,omitempty"`
	ProductType      *string  `json:"product_type,omitempty"`
	ProductReference *string  `json:"product_reference,omitempty"`
	Quantity         *float32 `json:"quantity,omitempty"`
}

Request struct for Request

func NewRequest ¶ added in v1.10.3

func NewRequest() *Request

NewRequest instantiates a new Request 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 NewRequestWithDefaults ¶ added in v1.10.3

func NewRequestWithDefaults() *Request

NewRequestWithDefaults instantiates a new Request 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 (*Request) GetAmount ¶ added in v1.10.3

func (o *Request) GetAmount() string

GetAmount returns the Amount field value if set, zero value otherwise.

func (*Request) GetAmountOk ¶ added in v1.10.3

func (o *Request) GetAmountOk() (*string, bool)

GetAmountOk returns a tuple with the Amount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) GetCurrency ¶ added in v1.10.3

func (o *Request) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*Request) GetCurrencyOk ¶ added in v1.10.3

func (o *Request) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) GetName ¶ added in v1.10.3

func (o *Request) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Request) GetNameOk ¶ added in v1.10.3

func (o *Request) 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 (*Request) GetProductReference ¶ added in v1.10.3

func (o *Request) GetProductReference() string

GetProductReference returns the ProductReference field value if set, zero value otherwise.

func (*Request) GetProductReferenceOk ¶ added in v1.10.3

func (o *Request) GetProductReferenceOk() (*string, bool)

GetProductReferenceOk returns a tuple with the ProductReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) GetProductType ¶ added in v1.10.3

func (o *Request) GetProductType() string

GetProductType returns the ProductType field value if set, zero value otherwise.

func (*Request) GetProductTypeOk ¶ added in v1.10.3

func (o *Request) GetProductTypeOk() (*string, bool)

GetProductTypeOk returns a tuple with the ProductType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) GetQuantity ¶ added in v1.10.3

func (o *Request) GetQuantity() float32

GetQuantity returns the Quantity field value if set, zero value otherwise.

func (*Request) GetQuantityOk ¶ added in v1.10.3

func (o *Request) GetQuantityOk() (*float32, bool)

GetQuantityOk returns a tuple with the Quantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Request) HasAmount ¶ added in v1.10.3

func (o *Request) HasAmount() bool

HasAmount returns a boolean if a field has been set.

func (*Request) HasCurrency ¶ added in v1.10.3

func (o *Request) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*Request) HasName ¶ added in v1.10.3

func (o *Request) HasName() bool

HasName returns a boolean if a field has been set.

func (*Request) HasProductReference ¶ added in v1.10.3

func (o *Request) HasProductReference() bool

HasProductReference returns a boolean if a field has been set.

func (*Request) HasProductType ¶ added in v1.10.3

func (o *Request) HasProductType() bool

HasProductType returns a boolean if a field has been set.

func (*Request) HasQuantity ¶ added in v1.10.3

func (o *Request) HasQuantity() bool

HasQuantity returns a boolean if a field has been set.

func (Request) MarshalJSON ¶ added in v1.10.3

func (o Request) MarshalJSON() ([]byte, error)

func (*Request) SetAmount ¶ added in v1.10.3

func (o *Request) SetAmount(v string)

SetAmount gets a reference to the given string and assigns it to the Amount field.

func (*Request) SetCurrency ¶ added in v1.10.3

func (o *Request) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*Request) SetName ¶ added in v1.10.3

func (o *Request) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Request) SetProductReference ¶ added in v1.10.3

func (o *Request) SetProductReference(v string)

SetProductReference gets a reference to the given string and assigns it to the ProductReference field.

func (*Request) SetProductType ¶ added in v1.10.3

func (o *Request) SetProductType(v string)

SetProductType gets a reference to the given string and assigns it to the ProductType field.

func (*Request) SetQuantity ¶ added in v1.10.3

func (o *Request) SetQuantity(v float32)

SetQuantity gets a reference to the given float32 and assigns it to the Quantity field.

func (Request) ToMap ¶ added in v1.10.3

func (o Request) ToMap() (map[string]interface{}, error)

type Resource ¶ added in v1.10.3

type Resource struct {
	Id string `json:"id"`
}

Resource struct for Resource

func NewResource ¶ added in v1.10.3

func NewResource(id string) *Resource

NewResource instantiates a new Resource 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 NewResourceWithDefaults ¶ added in v1.10.3

func NewResourceWithDefaults() *Resource

NewResourceWithDefaults instantiates a new Resource 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 (*Resource) GetId ¶ added in v1.10.3

func (o *Resource) GetId() string

GetId returns the Id field value

func (*Resource) GetIdOk ¶ added in v1.10.3

func (o *Resource) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (Resource) MarshalJSON ¶ added in v1.10.3

func (o Resource) MarshalJSON() ([]byte, error)

func (*Resource) SetId ¶ added in v1.10.3

func (o *Resource) SetId(v string)

SetId sets field value

func (Resource) ToMap ¶ added in v1.10.3

func (o Resource) ToMap() (map[string]interface{}, error)

func (*Resource) UnmarshalJSON ¶ added in v1.10.3

func (o *Resource) UnmarshalJSON(bytes []byte) (err error)

type Resource1 ¶ added in v1.10.3

type Resource1 struct {
	Project1 *Project1
	User1    *User1
}

Resource1 - struct for Resource1

func Project1AsResource1 ¶ added in v1.10.3

func Project1AsResource1(v *Project1) Resource1

Project1AsResource1 is a convenience function that returns Project1 wrapped in Resource1

func User1AsResource1 ¶ added in v1.10.3

func User1AsResource1(v *User1) Resource1

User1AsResource1 is a convenience function that returns User1 wrapped in Resource1

func (*Resource1) GetActualInstance ¶ added in v1.10.3

func (obj *Resource1) GetActualInstance() interface{}

Get the actual instance

func (Resource1) MarshalJSON ¶ added in v1.10.3

func (src Resource1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Resource1) UnmarshalJSON ¶ added in v1.10.3

func (dst *Resource1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ResourceType ¶ added in v1.10.3

type ResourceType string

ResourceType the model 'ResourceType'

const (
	CATALOG  ResourceType = "catalog"
	DATABASE ResourceType = "database"
	JOB      ResourceType = "job"
	PROJECT  ResourceType = "project"
	TABLE    ResourceType = "table"
	USER     ResourceType = "user"
	WORKFLOW ResourceType = "workflow"
)

List of ResourceType

func NewResourceTypeFromValue ¶ added in v1.10.3

func NewResourceTypeFromValue(v string) (*ResourceType, error)

NewResourceTypeFromValue returns a pointer to a valid ResourceType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ResourceType) IsValid ¶ added in v1.10.3

func (v ResourceType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ResourceType) Ptr ¶ added in v1.10.3

func (v ResourceType) Ptr() *ResourceType

Ptr returns reference to ResourceType value

func (*ResourceType) UnmarshalJSON ¶ added in v1.10.3

func (v *ResourceType) UnmarshalJSON(src []byte) error

type ResponseGetUserFollowingUsersUserIdFollowingGetInner ¶ added in v1.10.3

type ResponseGetUserFollowingUsersUserIdFollowingGetInner struct {
	Project1 *Project1
	User1    *User1
}

ResponseGetUserFollowingUsersUserIdFollowingGetInner - struct for ResponseGetUserFollowingUsersUserIdFollowingGetInner

func Project1AsResponseGetUserFollowingUsersUserIdFollowingGetInner ¶ added in v1.10.3

func Project1AsResponseGetUserFollowingUsersUserIdFollowingGetInner(v *Project1) ResponseGetUserFollowingUsersUserIdFollowingGetInner

Project1AsResponseGetUserFollowingUsersUserIdFollowingGetInner is a convenience function that returns Project1 wrapped in ResponseGetUserFollowingUsersUserIdFollowingGetInner

func User1AsResponseGetUserFollowingUsersUserIdFollowingGetInner ¶ added in v1.10.3

func User1AsResponseGetUserFollowingUsersUserIdFollowingGetInner(v *User1) ResponseGetUserFollowingUsersUserIdFollowingGetInner

User1AsResponseGetUserFollowingUsersUserIdFollowingGetInner is a convenience function that returns User1 wrapped in ResponseGetUserFollowingUsersUserIdFollowingGetInner

func (*ResponseGetUserFollowingUsersUserIdFollowingGetInner) GetActualInstance ¶ added in v1.10.3

func (obj *ResponseGetUserFollowingUsersUserIdFollowingGetInner) GetActualInstance() interface{}

Get the actual instance

func (ResponseGetUserFollowingUsersUserIdFollowingGetInner) MarshalJSON ¶ added in v1.10.3

Marshal data from the first non-nil pointers in the struct to JSON

func (*ResponseGetUserFollowingUsersUserIdFollowingGetInner) UnmarshalJSON ¶ added in v1.10.3

Unmarshal JSON data into one of the pointers in the struct

type Result ¶

type Result struct {
	Type   *string                `json:"type,omitempty"`
	Result map[string]interface{} `json:"result,omitempty"`
}

Result struct for Result

func NewResult ¶

func NewResult() *Result

NewResult instantiates a new Result 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 NewResultWithDefaults ¶

func NewResultWithDefaults() *Result

NewResultWithDefaults instantiates a new Result 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 (*Result) GetResult ¶

func (o *Result) GetResult() map[string]interface{}

GetResult returns the Result field value if set, zero value otherwise.

func (*Result) GetResultOk ¶

func (o *Result) GetResultOk() (map[string]interface{}, bool)

GetResultOk returns a tuple with the Result field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Result) GetType ¶

func (o *Result) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Result) GetTypeOk ¶

func (o *Result) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Result) HasResult ¶

func (o *Result) HasResult() bool

HasResult returns a boolean if a field has been set.

func (*Result) HasType ¶

func (o *Result) HasType() bool

HasType returns a boolean if a field has been set.

func (Result) MarshalJSON ¶

func (o Result) MarshalJSON() ([]byte, error)

func (*Result) SetResult ¶

func (o *Result) SetResult(v map[string]interface{})

SetResult gets a reference to the given map[string]interface{} and assigns it to the Result field.

func (*Result) SetType ¶

func (o *Result) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Result) ToMap ¶ added in v1.10.3

func (o Result) ToMap() (map[string]interface{}, error)
type Right struct {
	Array  *[]string
	String *string
}

Right struct for Right

func (*Right) MarshalJSON ¶ added in v1.10.4

func (src *Right) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Right) UnmarshalJSON ¶ added in v1.10.4

func (dst *Right) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type Role ¶

type Role struct {
	Id          *string                           `json:"id,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Type        *string                           `json:"type,omitempty"`
	TenantId    *string                           `json:"tenant_id,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Role struct for Role

func NewRole ¶

func NewRole() *Role

NewRole instantiates a new Role 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 NewRoleWithDefaults ¶

func NewRoleWithDefaults() *Role

NewRoleWithDefaults instantiates a new Role 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 (*Role) GetCreated ¶

func (o *Role) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Role) GetCreatedOk ¶

func (o *Role) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetDescription ¶

func (o *Role) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Role) GetDescriptionOk ¶

func (o *Role) 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 (*Role) GetId ¶

func (o *Role) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Role) GetIdOk ¶

func (o *Role) 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 (*Role) GetMetadata ¶

func (o *Role) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Role) GetMetadataOk ¶

func (o *Role) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Role) GetName ¶

func (o *Role) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Role) GetNameOk ¶

func (o *Role) 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 (*Role) GetTenantId ¶

func (o *Role) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Role) GetTenantIdOk ¶

func (o *Role) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetType ¶

func (o *Role) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Role) GetTypeOk ¶

func (o *Role) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) GetUpdated ¶

func (o *Role) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Role) GetUpdatedOk ¶

func (o *Role) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Role) HasCreated ¶

func (o *Role) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Role) HasDescription ¶

func (o *Role) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Role) HasId ¶

func (o *Role) HasId() bool

HasId returns a boolean if a field has been set.

func (*Role) HasMetadata ¶

func (o *Role) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Role) HasName ¶

func (o *Role) HasName() bool

HasName returns a boolean if a field has been set.

func (*Role) HasTenantId ¶

func (o *Role) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Role) HasType ¶

func (o *Role) HasType() bool

HasType returns a boolean if a field has been set.

func (*Role) HasUpdated ¶

func (o *Role) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Role) MarshalJSON ¶

func (o Role) MarshalJSON() ([]byte, error)

func (*Role) SetCreated ¶

func (o *Role) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Role) SetDescription ¶

func (o *Role) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Role) SetId ¶

func (o *Role) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Role) SetMetadata ¶

func (o *Role) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Role) SetName ¶

func (o *Role) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Role) SetTenantId ¶

func (o *Role) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Role) SetType ¶

func (o *Role) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Role) SetUpdated ¶

func (o *Role) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Role) ToMap ¶ added in v1.10.3

func (o Role) ToMap() (map[string]interface{}, error)

type RoleAPIService ¶ added in v1.10.3

type RoleAPIService service

RoleAPIService RoleAPI service

func (*RoleAPIService) CreateRole ¶ added in v1.10.3

CreateRole Create a role

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateRoleRequest

func (*RoleAPIService) CreateRoleExecute ¶ added in v1.10.3

func (a *RoleAPIService) CreateRoleExecute(r ApiCreateRoleRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*RoleAPIService) DeleteRoleById ¶ added in v1.10.3

func (a *RoleAPIService) DeleteRoleById(ctx context.Context, roleId string) ApiDeleteRoleByIdRequest

DeleteRoleById Delete an role by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId Id of the role
@return ApiDeleteRoleByIdRequest

func (*RoleAPIService) DeleteRoleByIdExecute ¶ added in v1.10.3

func (a *RoleAPIService) DeleteRoleByIdExecute(r ApiDeleteRoleByIdRequest) (*http.Response, error)

Execute executes the request

func (*RoleAPIService) FindCurrentRoles ¶ added in v1.10.3

func (a *RoleAPIService) FindCurrentRoles(ctx context.Context) ApiFindCurrentRolesRequest

FindCurrentRoles Retrieve all roles for the current user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindCurrentRolesRequest

func (*RoleAPIService) FindCurrentRolesExecute ¶ added in v1.10.3

func (a *RoleAPIService) FindCurrentRolesExecute(r ApiFindCurrentRolesRequest) ([]RoleAndAssignment, *http.Response, error)

Execute executes the request

@return []RoleAndAssignment

func (*RoleAPIService) FindPermissionsByRoleId ¶ added in v1.10.3

func (a *RoleAPIService) FindPermissionsByRoleId(ctx context.Context, roleId string) ApiFindPermissionsByRoleIdRequest

FindPermissionsByRoleId Find permissions by role id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId Id of the role
@return ApiFindPermissionsByRoleIdRequest

func (*RoleAPIService) FindPermissionsByRoleIdExecute ¶ added in v1.10.3

func (a *RoleAPIService) FindPermissionsByRoleIdExecute(r ApiFindPermissionsByRoleIdRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*RoleAPIService) FindRoleById ¶ added in v1.10.3

func (a *RoleAPIService) FindRoleById(ctx context.Context, roleId string) ApiFindRoleByIdRequest

FindRoleById Find role by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleId Id of the role
@return ApiFindRoleByIdRequest

func (*RoleAPIService) FindRoleByIdExecute ¶ added in v1.10.3

func (a *RoleAPIService) FindRoleByIdExecute(r ApiFindRoleByIdRequest) (*Role, *http.Response, error)

Execute executes the request

@return Role

func (*RoleAPIService) FindRoles ¶ added in v1.10.3

FindRoles Retrieve all roles

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindRolesRequest

func (*RoleAPIService) FindRolesExecute ¶ added in v1.10.3

func (a *RoleAPIService) FindRolesExecute(r ApiFindRolesRequest) ([]Role, *http.Response, error)

Execute executes the request

@return []Role

type RoleAndAssignment ¶

type RoleAndAssignment struct {
	Role       *Role           `json:"role,omitempty"`
	Assignment *RoleAssignment `json:"assignment,omitempty"`
}

RoleAndAssignment struct for RoleAndAssignment

func NewRoleAndAssignment ¶

func NewRoleAndAssignment() *RoleAndAssignment

NewRoleAndAssignment instantiates a new RoleAndAssignment 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 NewRoleAndAssignmentWithDefaults ¶

func NewRoleAndAssignmentWithDefaults() *RoleAndAssignment

NewRoleAndAssignmentWithDefaults instantiates a new RoleAndAssignment 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 (*RoleAndAssignment) GetAssignment ¶

func (o *RoleAndAssignment) GetAssignment() RoleAssignment

GetAssignment returns the Assignment field value if set, zero value otherwise.

func (*RoleAndAssignment) GetAssignmentOk ¶

func (o *RoleAndAssignment) GetAssignmentOk() (*RoleAssignment, bool)

GetAssignmentOk returns a tuple with the Assignment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAndAssignment) GetRole ¶

func (o *RoleAndAssignment) GetRole() Role

GetRole returns the Role field value if set, zero value otherwise.

func (*RoleAndAssignment) GetRoleOk ¶

func (o *RoleAndAssignment) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAndAssignment) HasAssignment ¶

func (o *RoleAndAssignment) HasAssignment() bool

HasAssignment returns a boolean if a field has been set.

func (*RoleAndAssignment) HasRole ¶

func (o *RoleAndAssignment) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RoleAndAssignment) MarshalJSON ¶

func (o RoleAndAssignment) MarshalJSON() ([]byte, error)

func (*RoleAndAssignment) SetAssignment ¶

func (o *RoleAndAssignment) SetAssignment(v RoleAssignment)

SetAssignment gets a reference to the given RoleAssignment and assigns it to the Assignment field.

func (*RoleAndAssignment) SetRole ¶

func (o *RoleAndAssignment) SetRole(v Role)

SetRole gets a reference to the given Role and assigns it to the Role field.

func (RoleAndAssignment) ToMap ¶ added in v1.10.3

func (o RoleAndAssignment) ToMap() (map[string]interface{}, error)

type RoleAndPrincipalAndAssignment ¶

type RoleAndPrincipalAndAssignment struct {
	Role       *Role           `json:"role,omitempty"`
	Assignment *RoleAssignment `json:"assignment,omitempty"`
	Principal  *Principal      `json:"principal,omitempty"`
}

RoleAndPrincipalAndAssignment struct for RoleAndPrincipalAndAssignment

func NewRoleAndPrincipalAndAssignment ¶

func NewRoleAndPrincipalAndAssignment() *RoleAndPrincipalAndAssignment

NewRoleAndPrincipalAndAssignment instantiates a new RoleAndPrincipalAndAssignment 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 NewRoleAndPrincipalAndAssignmentWithDefaults ¶

func NewRoleAndPrincipalAndAssignmentWithDefaults() *RoleAndPrincipalAndAssignment

NewRoleAndPrincipalAndAssignmentWithDefaults instantiates a new RoleAndPrincipalAndAssignment 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 (*RoleAndPrincipalAndAssignment) GetAssignment ¶

func (o *RoleAndPrincipalAndAssignment) GetAssignment() RoleAssignment

GetAssignment returns the Assignment field value if set, zero value otherwise.

func (*RoleAndPrincipalAndAssignment) GetAssignmentOk ¶

func (o *RoleAndPrincipalAndAssignment) GetAssignmentOk() (*RoleAssignment, bool)

GetAssignmentOk returns a tuple with the Assignment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAndPrincipalAndAssignment) GetPrincipal ¶

func (o *RoleAndPrincipalAndAssignment) GetPrincipal() Principal

GetPrincipal returns the Principal field value if set, zero value otherwise.

func (*RoleAndPrincipalAndAssignment) GetPrincipalOk ¶

func (o *RoleAndPrincipalAndAssignment) GetPrincipalOk() (*Principal, bool)

GetPrincipalOk returns a tuple with the Principal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAndPrincipalAndAssignment) GetRole ¶

func (o *RoleAndPrincipalAndAssignment) GetRole() Role

GetRole returns the Role field value if set, zero value otherwise.

func (*RoleAndPrincipalAndAssignment) GetRoleOk ¶

func (o *RoleAndPrincipalAndAssignment) GetRoleOk() (*Role, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAndPrincipalAndAssignment) HasAssignment ¶

func (o *RoleAndPrincipalAndAssignment) HasAssignment() bool

HasAssignment returns a boolean if a field has been set.

func (*RoleAndPrincipalAndAssignment) HasPrincipal ¶

func (o *RoleAndPrincipalAndAssignment) HasPrincipal() bool

HasPrincipal returns a boolean if a field has been set.

func (*RoleAndPrincipalAndAssignment) HasRole ¶

func (o *RoleAndPrincipalAndAssignment) HasRole() bool

HasRole returns a boolean if a field has been set.

func (RoleAndPrincipalAndAssignment) MarshalJSON ¶

func (o RoleAndPrincipalAndAssignment) MarshalJSON() ([]byte, error)

func (*RoleAndPrincipalAndAssignment) SetAssignment ¶

func (o *RoleAndPrincipalAndAssignment) SetAssignment(v RoleAssignment)

SetAssignment gets a reference to the given RoleAssignment and assigns it to the Assignment field.

func (*RoleAndPrincipalAndAssignment) SetPrincipal ¶

func (o *RoleAndPrincipalAndAssignment) SetPrincipal(v Principal)

SetPrincipal gets a reference to the given Principal and assigns it to the Principal field.

func (*RoleAndPrincipalAndAssignment) SetRole ¶

func (o *RoleAndPrincipalAndAssignment) SetRole(v Role)

SetRole gets a reference to the given Role and assigns it to the Role field.

func (RoleAndPrincipalAndAssignment) ToMap ¶ added in v1.10.3

func (o RoleAndPrincipalAndAssignment) ToMap() (map[string]interface{}, error)

type RoleAssignment ¶

type RoleAssignment struct {
	Id            *string                           `json:"id,omitempty"`
	ResourceId    *string                           `json:"resource_id,omitempty"`
	ResourceType  *string                           `json:"resource_type,omitempty"`
	PrincipalType *string                           `json:"principal_type,omitempty"`
	PrincipalId   *string                           `json:"principal_id,omitempty"`
	RoleId        *string                           `json:"role_id,omitempty"`
	TenantId      *string                           `json:"tenant_id,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
}

RoleAssignment struct for RoleAssignment

func NewRoleAssignment ¶

func NewRoleAssignment() *RoleAssignment

NewRoleAssignment instantiates a new RoleAssignment 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 NewRoleAssignmentWithDefaults ¶

func NewRoleAssignmentWithDefaults() *RoleAssignment

NewRoleAssignmentWithDefaults instantiates a new RoleAssignment 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 (*RoleAssignment) GetCreated ¶

func (o *RoleAssignment) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*RoleAssignment) GetCreatedOk ¶

func (o *RoleAssignment) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAssignment) GetId ¶

func (o *RoleAssignment) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RoleAssignment) GetIdOk ¶

func (o *RoleAssignment) 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 (*RoleAssignment) GetMetadata ¶

func (o *RoleAssignment) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*RoleAssignment) GetMetadataOk ¶

func (o *RoleAssignment) GetMetadataOk() (map[string]map[string]interface{}, 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 (*RoleAssignment) GetPrincipalId ¶

func (o *RoleAssignment) GetPrincipalId() string

GetPrincipalId returns the PrincipalId field value if set, zero value otherwise.

func (*RoleAssignment) GetPrincipalIdOk ¶

func (o *RoleAssignment) GetPrincipalIdOk() (*string, bool)

GetPrincipalIdOk returns a tuple with the PrincipalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAssignment) GetPrincipalType ¶

func (o *RoleAssignment) GetPrincipalType() string

GetPrincipalType returns the PrincipalType field value if set, zero value otherwise.

func (*RoleAssignment) GetPrincipalTypeOk ¶

func (o *RoleAssignment) GetPrincipalTypeOk() (*string, bool)

GetPrincipalTypeOk returns a tuple with the PrincipalType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAssignment) GetResourceId ¶

func (o *RoleAssignment) GetResourceId() string

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*RoleAssignment) GetResourceIdOk ¶

func (o *RoleAssignment) GetResourceIdOk() (*string, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAssignment) GetResourceType ¶

func (o *RoleAssignment) GetResourceType() string

GetResourceType returns the ResourceType field value if set, zero value otherwise.

func (*RoleAssignment) GetResourceTypeOk ¶

func (o *RoleAssignment) GetResourceTypeOk() (*string, bool)

GetResourceTypeOk returns a tuple with the ResourceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAssignment) GetRoleId ¶

func (o *RoleAssignment) GetRoleId() string

GetRoleId returns the RoleId field value if set, zero value otherwise.

func (*RoleAssignment) GetRoleIdOk ¶

func (o *RoleAssignment) GetRoleIdOk() (*string, bool)

GetRoleIdOk returns a tuple with the RoleId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAssignment) GetTenantId ¶

func (o *RoleAssignment) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*RoleAssignment) GetTenantIdOk ¶

func (o *RoleAssignment) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAssignment) GetUpdated ¶

func (o *RoleAssignment) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*RoleAssignment) GetUpdatedOk ¶

func (o *RoleAssignment) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RoleAssignment) HasCreated ¶

func (o *RoleAssignment) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*RoleAssignment) HasId ¶

func (o *RoleAssignment) HasId() bool

HasId returns a boolean if a field has been set.

func (*RoleAssignment) HasMetadata ¶

func (o *RoleAssignment) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*RoleAssignment) HasPrincipalId ¶

func (o *RoleAssignment) HasPrincipalId() bool

HasPrincipalId returns a boolean if a field has been set.

func (*RoleAssignment) HasPrincipalType ¶

func (o *RoleAssignment) HasPrincipalType() bool

HasPrincipalType returns a boolean if a field has been set.

func (*RoleAssignment) HasResourceId ¶

func (o *RoleAssignment) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (*RoleAssignment) HasResourceType ¶

func (o *RoleAssignment) HasResourceType() bool

HasResourceType returns a boolean if a field has been set.

func (*RoleAssignment) HasRoleId ¶

func (o *RoleAssignment) HasRoleId() bool

HasRoleId returns a boolean if a field has been set.

func (*RoleAssignment) HasTenantId ¶

func (o *RoleAssignment) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*RoleAssignment) HasUpdated ¶

func (o *RoleAssignment) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (RoleAssignment) MarshalJSON ¶

func (o RoleAssignment) MarshalJSON() ([]byte, error)

func (*RoleAssignment) SetCreated ¶

func (o *RoleAssignment) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*RoleAssignment) SetId ¶

func (o *RoleAssignment) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RoleAssignment) SetMetadata ¶

func (o *RoleAssignment) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*RoleAssignment) SetPrincipalId ¶

func (o *RoleAssignment) SetPrincipalId(v string)

SetPrincipalId gets a reference to the given string and assigns it to the PrincipalId field.

func (*RoleAssignment) SetPrincipalType ¶

func (o *RoleAssignment) SetPrincipalType(v string)

SetPrincipalType gets a reference to the given string and assigns it to the PrincipalType field.

func (*RoleAssignment) SetResourceId ¶

func (o *RoleAssignment) SetResourceId(v string)

SetResourceId gets a reference to the given string and assigns it to the ResourceId field.

func (*RoleAssignment) SetResourceType ¶

func (o *RoleAssignment) SetResourceType(v string)

SetResourceType gets a reference to the given string and assigns it to the ResourceType field.

func (*RoleAssignment) SetRoleId ¶

func (o *RoleAssignment) SetRoleId(v string)

SetRoleId gets a reference to the given string and assigns it to the RoleId field.

func (*RoleAssignment) SetTenantId ¶

func (o *RoleAssignment) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*RoleAssignment) SetUpdated ¶

func (o *RoleAssignment) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (RoleAssignment) ToMap ¶ added in v1.10.3

func (o RoleAssignment) ToMap() (map[string]interface{}, error)

type RunAPIService ¶ added in v1.10.3

type RunAPIService service

RunAPIService RunAPI service

func (*RunAPIService) CreateRunForJob ¶ added in v1.10.3

func (a *RunAPIService) CreateRunForJob(ctx context.Context, jobId string) ApiCreateRunForJobRequest

CreateRunForJob Create a run for a job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@return ApiCreateRunForJobRequest

func (*RunAPIService) CreateRunForJobExecute ¶ added in v1.10.3

func (a *RunAPIService) CreateRunForJobExecute(r ApiCreateRunForJobRequest) (*JobRun, *http.Response, error)

Execute executes the request

@return JobRun

func (*RunAPIService) CreateRunForWorkflow ¶ added in v1.10.3

func (a *RunAPIService) CreateRunForWorkflow(ctx context.Context, workflowId string) ApiCreateRunForWorkflowRequest

CreateRunForWorkflow Create a run for a workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the Workflow
@return ApiCreateRunForWorkflowRequest

func (*RunAPIService) CreateRunForWorkflowExecute ¶ added in v1.10.3

func (a *RunAPIService) CreateRunForWorkflowExecute(r ApiCreateRunForWorkflowRequest) (*Workflow, *http.Response, error)

Execute executes the request

@return Workflow

func (*RunAPIService) DeleteRunByJobIdAndRunId ¶ added in v1.10.3

func (a *RunAPIService) DeleteRunByJobIdAndRunId(ctx context.Context, jobId string, runId string) ApiDeleteRunByJobIdAndRunIdRequest

DeleteRunByJobIdAndRunId Delete a run by a jobId and a runId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@return ApiDeleteRunByJobIdAndRunIdRequest

func (*RunAPIService) DeleteRunByJobIdAndRunIdExecute ¶ added in v1.10.3

func (a *RunAPIService) DeleteRunByJobIdAndRunIdExecute(r ApiDeleteRunByJobIdAndRunIdRequest) (*http.Response, error)

Execute executes the request

func (*RunAPIService) DeleteRunByWorkflowIdAndRunId ¶ added in v1.10.3

func (a *RunAPIService) DeleteRunByWorkflowIdAndRunId(ctx context.Context, workflowId string, runId string) ApiDeleteRunByWorkflowIdAndRunIdRequest

DeleteRunByWorkflowIdAndRunId Delete a run by a workflowId and a runId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the Workflow
@param runId Id of the Run
@return ApiDeleteRunByWorkflowIdAndRunIdRequest

func (*RunAPIService) DeleteRunByWorkflowIdAndRunIdExecute ¶ added in v1.10.3

func (a *RunAPIService) DeleteRunByWorkflowIdAndRunIdExecute(r ApiDeleteRunByWorkflowIdAndRunIdRequest) (*http.Response, error)

Execute executes the request

func (*RunAPIService) FindLatestRuns ¶ added in v1.10.3

func (a *RunAPIService) FindLatestRuns(ctx context.Context) ApiFindLatestRunsRequest

FindLatestRuns Find the latest runs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindLatestRunsRequest

func (*RunAPIService) FindLatestRunsExecute ¶ added in v1.10.3

func (a *RunAPIService) FindLatestRunsExecute(r ApiFindLatestRunsRequest) ([]RunWithJob, *http.Response, error)

Execute executes the request

@return []RunWithJob

func (*RunAPIService) FindRunByJobIdAndRunId ¶ added in v1.10.3

func (a *RunAPIService) FindRunByJobIdAndRunId(ctx context.Context, jobId string, runId string) ApiFindRunByJobIdAndRunIdRequest

FindRunByJobIdAndRunId Find the run by a jobId and a runId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@return ApiFindRunByJobIdAndRunIdRequest

func (*RunAPIService) FindRunByJobIdAndRunIdExecute ¶ added in v1.10.3

func (a *RunAPIService) FindRunByJobIdAndRunIdExecute(r ApiFindRunByJobIdAndRunIdRequest) (*JobRun, *http.Response, error)

Execute executes the request

@return JobRun

func (*RunAPIService) FindRunsByJobId ¶ added in v1.10.3

func (a *RunAPIService) FindRunsByJobId(ctx context.Context, jobId string) ApiFindRunsByJobIdRequest

FindRunsByJobId Find the runs for a job

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@return ApiFindRunsByJobIdRequest

func (*RunAPIService) FindRunsByJobIdExecute ¶ added in v1.10.3

func (a *RunAPIService) FindRunsByJobIdExecute(r ApiFindRunsByJobIdRequest) ([]JobRun, *http.Response, error)

Execute executes the request

@return []JobRun

func (*RunAPIService) FindRunsByWorkflowId ¶ added in v1.10.3

func (a *RunAPIService) FindRunsByWorkflowId(ctx context.Context, workflowId string) ApiFindRunsByWorkflowIdRequest

FindRunsByWorkflowId Find the runs for a workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the Workflow
@return ApiFindRunsByWorkflowIdRequest

func (*RunAPIService) FindRunsByWorkflowIdExecute ¶ added in v1.10.3

func (a *RunAPIService) FindRunsByWorkflowIdExecute(r ApiFindRunsByWorkflowIdRequest) ([]WorkflowRun, *http.Response, error)

Execute executes the request

@return []WorkflowRun

func (*RunAPIService) GetFile ¶ added in v1.10.3

func (a *RunAPIService) GetFile(ctx context.Context, jobId string, runId string, filename string) ApiGetFileRequest

GetFile Get file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@param filename Name of the file
@return ApiGetFileRequest

func (*RunAPIService) GetFileExecute ¶ added in v1.10.3

func (a *RunAPIService) GetFileExecute(r ApiGetFileRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*RunAPIService) GetLogs ¶ added in v1.10.3

func (a *RunAPIService) GetLogs(ctx context.Context, jobId string, runId string) ApiGetLogsRequest

GetLogs Get logs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@return ApiGetLogsRequest

func (*RunAPIService) GetLogsExecute ¶ added in v1.10.3

func (a *RunAPIService) GetLogsExecute(r ApiGetLogsRequest) ([]LogEntry, *http.Response, error)

Execute executes the request

@return []LogEntry

func (*RunAPIService) GetMetricsForRun ¶ added in v1.10.3

func (a *RunAPIService) GetMetricsForRun(ctx context.Context, jobId string, runId string) ApiGetMetricsForRunRequest

GetMetricsForRun Find the metrics for a run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@return ApiGetMetricsForRunRequest

func (*RunAPIService) GetMetricsForRunExecute ¶ added in v1.10.3

func (a *RunAPIService) GetMetricsForRunExecute(r ApiGetMetricsForRunRequest) ([]Metric, *http.Response, error)

Execute executes the request

@return []Metric

func (*RunAPIService) GetRunFiles ¶ added in v1.10.3

func (a *RunAPIService) GetRunFiles(ctx context.Context, jobId string, runId string) ApiGetRunFilesRequest

GetRunFiles Get files

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@return ApiGetRunFilesRequest

func (*RunAPIService) GetRunFilesExecute ¶ added in v1.10.3

func (a *RunAPIService) GetRunFilesExecute(r ApiGetRunFilesRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*RunAPIService) UpdateRun ¶ added in v1.10.3

func (a *RunAPIService) UpdateRun(ctx context.Context, jobId string, runId string) ApiUpdateRunRequest

UpdateRun Update a run

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param jobId Id of the Job
@param runId Id of the Run
@return ApiUpdateRunRequest

func (*RunAPIService) UpdateRunExecute ¶ added in v1.10.3

func (a *RunAPIService) UpdateRunExecute(r ApiUpdateRunRequest) (*JobRun, *http.Response, error)

Execute executes the request

@return JobRun

type RunOnceSchedule ¶

type RunOnceSchedule struct {
	Schedule
	Type *string `json:"type,omitempty"`
}

RunOnceSchedule struct for RunOnceSchedule

func NewRunOnceSchedule ¶

func NewRunOnceSchedule() *RunOnceSchedule

NewRunOnceSchedule instantiates a new RunOnceSchedule 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 NewRunOnceScheduleWithDefaults ¶

func NewRunOnceScheduleWithDefaults() *RunOnceSchedule

NewRunOnceScheduleWithDefaults instantiates a new RunOnceSchedule 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 (*RunOnceSchedule) GetType ¶

func (o *RunOnceSchedule) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RunOnceSchedule) GetTypeOk ¶

func (o *RunOnceSchedule) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunOnceSchedule) HasType ¶

func (o *RunOnceSchedule) HasType() bool

HasType returns a boolean if a field has been set.

func (RunOnceSchedule) MarshalJSON ¶

func (o RunOnceSchedule) MarshalJSON() ([]byte, error)

func (*RunOnceSchedule) SetType ¶

func (o *RunOnceSchedule) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (RunOnceSchedule) ToMap ¶ added in v1.10.3

func (o RunOnceSchedule) ToMap() (map[string]interface{}, error)

type RunOnceScheduleAllOf ¶

type RunOnceScheduleAllOf struct {
	Type *string `json:"type,omitempty"`
}

RunOnceScheduleAllOf struct for RunOnceScheduleAllOf

func NewRunOnceScheduleAllOf ¶

func NewRunOnceScheduleAllOf() *RunOnceScheduleAllOf

NewRunOnceScheduleAllOf instantiates a new RunOnceScheduleAllOf 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 NewRunOnceScheduleAllOfWithDefaults ¶

func NewRunOnceScheduleAllOfWithDefaults() *RunOnceScheduleAllOf

NewRunOnceScheduleAllOfWithDefaults instantiates a new RunOnceScheduleAllOf 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 (*RunOnceScheduleAllOf) GetType ¶

func (o *RunOnceScheduleAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RunOnceScheduleAllOf) GetTypeOk ¶

func (o *RunOnceScheduleAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunOnceScheduleAllOf) HasType ¶

func (o *RunOnceScheduleAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (RunOnceScheduleAllOf) MarshalJSON ¶

func (o RunOnceScheduleAllOf) MarshalJSON() ([]byte, error)

func (*RunOnceScheduleAllOf) SetType ¶

func (o *RunOnceScheduleAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type RunStats ¶

type RunStats struct {
	Total     *float32 `json:"total,omitempty"`
	Completed *float32 `json:"completed,omitempty"`
	Failed    *float32 `json:"failed,omitempty"`
	Unknown   *float32 `json:"unknown,omitempty"`
	Running   *float32 `json:"running,omitempty"`
}

RunStats struct for RunStats

func NewRunStats ¶

func NewRunStats() *RunStats

NewRunStats instantiates a new RunStats 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 NewRunStatsWithDefaults ¶

func NewRunStatsWithDefaults() *RunStats

NewRunStatsWithDefaults instantiates a new RunStats 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 (*RunStats) GetCompleted ¶

func (o *RunStats) GetCompleted() float32

GetCompleted returns the Completed field value if set, zero value otherwise.

func (*RunStats) GetCompletedOk ¶

func (o *RunStats) GetCompletedOk() (*float32, bool)

GetCompletedOk returns a tuple with the Completed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunStats) GetFailed ¶

func (o *RunStats) GetFailed() float32

GetFailed returns the Failed field value if set, zero value otherwise.

func (*RunStats) GetFailedOk ¶

func (o *RunStats) GetFailedOk() (*float32, bool)

GetFailedOk returns a tuple with the Failed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunStats) GetRunning ¶

func (o *RunStats) GetRunning() float32

GetRunning returns the Running field value if set, zero value otherwise.

func (*RunStats) GetRunningOk ¶

func (o *RunStats) GetRunningOk() (*float32, bool)

GetRunningOk returns a tuple with the Running field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunStats) GetTotal ¶

func (o *RunStats) GetTotal() float32

GetTotal returns the Total field value if set, zero value otherwise.

func (*RunStats) GetTotalOk ¶

func (o *RunStats) GetTotalOk() (*float32, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunStats) GetUnknown ¶

func (o *RunStats) GetUnknown() float32

GetUnknown returns the Unknown field value if set, zero value otherwise.

func (*RunStats) GetUnknownOk ¶

func (o *RunStats) GetUnknownOk() (*float32, bool)

GetUnknownOk returns a tuple with the Unknown field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunStats) HasCompleted ¶

func (o *RunStats) HasCompleted() bool

HasCompleted returns a boolean if a field has been set.

func (*RunStats) HasFailed ¶

func (o *RunStats) HasFailed() bool

HasFailed returns a boolean if a field has been set.

func (*RunStats) HasRunning ¶

func (o *RunStats) HasRunning() bool

HasRunning returns a boolean if a field has been set.

func (*RunStats) HasTotal ¶

func (o *RunStats) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*RunStats) HasUnknown ¶

func (o *RunStats) HasUnknown() bool

HasUnknown returns a boolean if a field has been set.

func (RunStats) MarshalJSON ¶

func (o RunStats) MarshalJSON() ([]byte, error)

func (*RunStats) SetCompleted ¶

func (o *RunStats) SetCompleted(v float32)

SetCompleted gets a reference to the given float32 and assigns it to the Completed field.

func (*RunStats) SetFailed ¶

func (o *RunStats) SetFailed(v float32)

SetFailed gets a reference to the given float32 and assigns it to the Failed field.

func (*RunStats) SetRunning ¶

func (o *RunStats) SetRunning(v float32)

SetRunning gets a reference to the given float32 and assigns it to the Running field.

func (*RunStats) SetTotal ¶

func (o *RunStats) SetTotal(v float32)

SetTotal gets a reference to the given float32 and assigns it to the Total field.

func (*RunStats) SetUnknown ¶

func (o *RunStats) SetUnknown(v float32)

SetUnknown gets a reference to the given float32 and assigns it to the Unknown field.

func (RunStats) ToMap ¶ added in v1.10.3

func (o RunStats) ToMap() (map[string]interface{}, error)

type RunWithJob ¶

type RunWithJob struct {
	Run *JobRun `json:"run,omitempty"`
	Job *Job    `json:"job,omitempty"`
}

RunWithJob struct for RunWithJob

func NewRunWithJob ¶

func NewRunWithJob() *RunWithJob

NewRunWithJob instantiates a new RunWithJob 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 NewRunWithJobWithDefaults ¶

func NewRunWithJobWithDefaults() *RunWithJob

NewRunWithJobWithDefaults instantiates a new RunWithJob 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 (*RunWithJob) GetJob ¶

func (o *RunWithJob) GetJob() Job

GetJob returns the Job field value if set, zero value otherwise.

func (*RunWithJob) GetJobOk ¶

func (o *RunWithJob) GetJobOk() (*Job, bool)

GetJobOk returns a tuple with the Job field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunWithJob) GetRun ¶

func (o *RunWithJob) GetRun() JobRun

GetRun returns the Run field value if set, zero value otherwise.

func (*RunWithJob) GetRunOk ¶

func (o *RunWithJob) GetRunOk() (*JobRun, bool)

GetRunOk returns a tuple with the Run field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunWithJob) HasJob ¶

func (o *RunWithJob) HasJob() bool

HasJob returns a boolean if a field has been set.

func (*RunWithJob) HasRun ¶

func (o *RunWithJob) HasRun() bool

HasRun returns a boolean if a field has been set.

func (RunWithJob) MarshalJSON ¶

func (o RunWithJob) MarshalJSON() ([]byte, error)

func (*RunWithJob) SetJob ¶

func (o *RunWithJob) SetJob(v Job)

SetJob gets a reference to the given Job and assigns it to the Job field.

func (*RunWithJob) SetRun ¶

func (o *RunWithJob) SetRun(v JobRun)

SetRun gets a reference to the given JobRun and assigns it to the Run field.

func (RunWithJob) ToMap ¶ added in v1.10.3

func (o RunWithJob) ToMap() (map[string]interface{}, error)

type Runtime ¶

type Runtime struct {
	Id            *string                           `json:"id,omitempty"`
	Name          *string                           `json:"name,omitempty"`
	TechnicalName *string                           `json:"technical_name,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	Icon          *string                           `json:"icon,omitempty"`
	IconSize      *string                           `json:"icon_size,omitempty"`
	Status        *string                           `json:"status,omitempty"`
	Enabled       *bool                             `json:"enabled,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Labels        *map[string]string                `json:"labels,omitempty"`
	Dockerfile    *string                           `json:"dockerfile,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Runtime struct for Runtime

func NewRuntime ¶

func NewRuntime() *Runtime

NewRuntime instantiates a new Runtime 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 NewRuntimeWithDefaults ¶

func NewRuntimeWithDefaults() *Runtime

NewRuntimeWithDefaults instantiates a new Runtime 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 (*Runtime) GetCreated ¶

func (o *Runtime) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Runtime) GetCreatedOk ¶

func (o *Runtime) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Runtime) GetDescription ¶

func (o *Runtime) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Runtime) GetDescriptionOk ¶

func (o *Runtime) 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 (*Runtime) GetDockerfile ¶

func (o *Runtime) GetDockerfile() string

GetDockerfile returns the Dockerfile field value if set, zero value otherwise.

func (*Runtime) GetDockerfileOk ¶

func (o *Runtime) GetDockerfileOk() (*string, bool)

GetDockerfileOk returns a tuple with the Dockerfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Runtime) GetEnabled ¶

func (o *Runtime) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*Runtime) GetEnabledOk ¶

func (o *Runtime) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Runtime) GetIcon ¶

func (o *Runtime) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*Runtime) GetIconOk ¶

func (o *Runtime) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Runtime) GetIconSize ¶

func (o *Runtime) GetIconSize() string

GetIconSize returns the IconSize field value if set, zero value otherwise.

func (*Runtime) GetIconSizeOk ¶

func (o *Runtime) GetIconSizeOk() (*string, bool)

GetIconSizeOk returns a tuple with the IconSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Runtime) GetId ¶

func (o *Runtime) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Runtime) GetIdOk ¶

func (o *Runtime) 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 (*Runtime) GetLabels ¶

func (o *Runtime) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Runtime) GetLabelsOk ¶

func (o *Runtime) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Runtime) GetMetadata ¶

func (o *Runtime) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Runtime) GetMetadataOk ¶

func (o *Runtime) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Runtime) GetName ¶

func (o *Runtime) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Runtime) GetNameOk ¶

func (o *Runtime) 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 (*Runtime) GetStatus ¶

func (o *Runtime) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Runtime) GetStatusOk ¶

func (o *Runtime) GetStatusOk() (*string, 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 (*Runtime) GetTechnicalName ¶

func (o *Runtime) GetTechnicalName() string

GetTechnicalName returns the TechnicalName field value if set, zero value otherwise.

func (*Runtime) GetTechnicalNameOk ¶

func (o *Runtime) GetTechnicalNameOk() (*string, bool)

GetTechnicalNameOk returns a tuple with the TechnicalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Runtime) GetUpdated ¶

func (o *Runtime) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Runtime) GetUpdatedOk ¶

func (o *Runtime) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Runtime) HasCreated ¶

func (o *Runtime) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Runtime) HasDescription ¶

func (o *Runtime) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Runtime) HasDockerfile ¶

func (o *Runtime) HasDockerfile() bool

HasDockerfile returns a boolean if a field has been set.

func (*Runtime) HasEnabled ¶

func (o *Runtime) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*Runtime) HasIcon ¶

func (o *Runtime) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*Runtime) HasIconSize ¶

func (o *Runtime) HasIconSize() bool

HasIconSize returns a boolean if a field has been set.

func (*Runtime) HasId ¶

func (o *Runtime) HasId() bool

HasId returns a boolean if a field has been set.

func (*Runtime) HasLabels ¶

func (o *Runtime) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Runtime) HasMetadata ¶

func (o *Runtime) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Runtime) HasName ¶

func (o *Runtime) HasName() bool

HasName returns a boolean if a field has been set.

func (*Runtime) HasStatus ¶

func (o *Runtime) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Runtime) HasTechnicalName ¶

func (o *Runtime) HasTechnicalName() bool

HasTechnicalName returns a boolean if a field has been set.

func (*Runtime) HasUpdated ¶

func (o *Runtime) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Runtime) MarshalJSON ¶

func (o Runtime) MarshalJSON() ([]byte, error)

func (*Runtime) SetCreated ¶

func (o *Runtime) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Runtime) SetDescription ¶

func (o *Runtime) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Runtime) SetDockerfile ¶

func (o *Runtime) SetDockerfile(v string)

SetDockerfile gets a reference to the given string and assigns it to the Dockerfile field.

func (*Runtime) SetEnabled ¶

func (o *Runtime) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*Runtime) SetIcon ¶

func (o *Runtime) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*Runtime) SetIconSize ¶

func (o *Runtime) SetIconSize(v string)

SetIconSize gets a reference to the given string and assigns it to the IconSize field.

func (*Runtime) SetId ¶

func (o *Runtime) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Runtime) SetLabels ¶

func (o *Runtime) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Runtime) SetMetadata ¶

func (o *Runtime) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Runtime) SetName ¶

func (o *Runtime) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Runtime) SetStatus ¶

func (o *Runtime) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Runtime) SetTechnicalName ¶

func (o *Runtime) SetTechnicalName(v string)

SetTechnicalName gets a reference to the given string and assigns it to the TechnicalName field.

func (*Runtime) SetUpdated ¶

func (o *Runtime) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Runtime) ToMap ¶ added in v1.10.3

func (o Runtime) ToMap() (map[string]interface{}, error)

type RuntimeAPIService ¶ added in v1.10.3

type RuntimeAPIService service

RuntimeAPIService RuntimeAPI service

func (*RuntimeAPIService) BuildRuntimeById ¶ added in v1.10.3

func (a *RuntimeAPIService) BuildRuntimeById(ctx context.Context, runtimeId string) ApiBuildRuntimeByIdRequest

BuildRuntimeById Find runtime by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@return ApiBuildRuntimeByIdRequest

func (*RuntimeAPIService) BuildRuntimeByIdExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) BuildRuntimeByIdExecute(r ApiBuildRuntimeByIdRequest) (*Build, *http.Response, error)

Execute executes the request

@return Build

func (*RuntimeAPIService) CreateRuntime ¶ added in v1.10.3

CreateRuntime Create runtime

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateRuntimeRequest

func (*RuntimeAPIService) CreateRuntimeExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) CreateRuntimeExecute(r ApiCreateRuntimeRequest) (*Runtime, *http.Response, error)

Execute executes the request

@return Runtime

func (*RuntimeAPIService) DeleteRuntimeById ¶ added in v1.10.3

func (a *RuntimeAPIService) DeleteRuntimeById(ctx context.Context, runtimeId string) ApiDeleteRuntimeByIdRequest

DeleteRuntimeById Delete a runtime by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@return ApiDeleteRuntimeByIdRequest

func (*RuntimeAPIService) DeleteRuntimeByIdExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) DeleteRuntimeByIdExecute(r ApiDeleteRuntimeByIdRequest) (*http.Response, error)

Execute executes the request

func (*RuntimeAPIService) FindBuildByRuntimeIdAndBuildId ¶ added in v1.10.3

func (a *RuntimeAPIService) FindBuildByRuntimeIdAndBuildId(ctx context.Context, runtimeId string, buildId string) ApiFindBuildByRuntimeIdAndBuildIdRequest

FindBuildByRuntimeIdAndBuildId Find the build by a runtimeId and a buildId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@param buildId Id of the build
@return ApiFindBuildByRuntimeIdAndBuildIdRequest

func (*RuntimeAPIService) FindBuildByRuntimeIdAndBuildIdExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) FindBuildByRuntimeIdAndBuildIdExecute(r ApiFindBuildByRuntimeIdAndBuildIdRequest) (*Build, *http.Response, error)

Execute executes the request

@return Build

func (*RuntimeAPIService) FindBuildsForRuntime ¶ added in v1.10.3

func (a *RuntimeAPIService) FindBuildsForRuntime(ctx context.Context, runtimeId string) ApiFindBuildsForRuntimeRequest

FindBuildsForRuntime Retrieve all builds for a runtime

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@return ApiFindBuildsForRuntimeRequest

func (*RuntimeAPIService) FindBuildsForRuntimeExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) FindBuildsForRuntimeExecute(r ApiFindBuildsForRuntimeRequest) ([]Build, *http.Response, error)

Execute executes the request

@return []Build

func (*RuntimeAPIService) FindDependenciesByRuntimeIdAndVersionId ¶ added in v1.10.3

func (a *RuntimeAPIService) FindDependenciesByRuntimeIdAndVersionId(ctx context.Context, runtimeId string, versionId string) ApiFindDependenciesByRuntimeIdAndVersionIdRequest

FindDependenciesByRuntimeIdAndVersionId Find the dependencies by a runtimeId and a versionId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@param versionId Id of the version
@return ApiFindDependenciesByRuntimeIdAndVersionIdRequest

func (*RuntimeAPIService) FindDependenciesByRuntimeIdAndVersionIdExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) FindDependenciesByRuntimeIdAndVersionIdExecute(r ApiFindDependenciesByRuntimeIdAndVersionIdRequest) ([]Dependency, *http.Response, error)

Execute executes the request

@return []Dependency

func (*RuntimeAPIService) FindRuntimeById ¶ added in v1.10.3

func (a *RuntimeAPIService) FindRuntimeById(ctx context.Context, runtimeId string) ApiFindRuntimeByIdRequest

FindRuntimeById Find runtime by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@return ApiFindRuntimeByIdRequest

func (*RuntimeAPIService) FindRuntimeByIdExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) FindRuntimeByIdExecute(r ApiFindRuntimeByIdRequest) (*Runtime, *http.Response, error)

Execute executes the request

@return Runtime

func (*RuntimeAPIService) FindRuntimes ¶ added in v1.10.3

FindRuntimes Retrieve all runtimes

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindRuntimesRequest

func (*RuntimeAPIService) FindRuntimesExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) FindRuntimesExecute(r ApiFindRuntimesRequest) ([]Runtime, *http.Response, error)

Execute executes the request

@return []Runtime

func (*RuntimeAPIService) FindVersionByRuntimeIdAndVersionId ¶ added in v1.10.3

func (a *RuntimeAPIService) FindVersionByRuntimeIdAndVersionId(ctx context.Context, runtimeId string, versionId string) ApiFindVersionByRuntimeIdAndVersionIdRequest

FindVersionByRuntimeIdAndVersionId Find the build by a runtimeId and a versionId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@param versionId Id of the version
@return ApiFindVersionByRuntimeIdAndVersionIdRequest

func (*RuntimeAPIService) FindVersionByRuntimeIdAndVersionIdExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) FindVersionByRuntimeIdAndVersionIdExecute(r ApiFindVersionByRuntimeIdAndVersionIdRequest) (*RuntimeVersion, *http.Response, error)

Execute executes the request

@return RuntimeVersion

func (*RuntimeAPIService) FindVersionsForRuntime ¶ added in v1.10.3

func (a *RuntimeAPIService) FindVersionsForRuntime(ctx context.Context, runtimeId string) ApiFindVersionsForRuntimeRequest

FindVersionsForRuntime Retrieve all versions for a runtime

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@return ApiFindVersionsForRuntimeRequest

func (*RuntimeAPIService) FindVersionsForRuntimeExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) FindVersionsForRuntimeExecute(r ApiFindVersionsForRuntimeRequest) ([]RuntimeVersion, *http.Response, error)

Execute executes the request

@return []RuntimeVersion

func (*RuntimeAPIService) GetLogsForBuild ¶ added in v1.10.3

func (a *RuntimeAPIService) GetLogsForBuild(ctx context.Context, runtimeId string, buildId string) ApiGetLogsForBuildRequest

GetLogsForBuild Get logs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param runtimeId Id of the runtime
@param buildId Id of the build
@return ApiGetLogsForBuildRequest

func (*RuntimeAPIService) GetLogsForBuildExecute ¶ added in v1.10.3

func (a *RuntimeAPIService) GetLogsForBuildExecute(r ApiGetLogsForBuildRequest) ([]LogEntry, *http.Response, error)

Execute executes the request

@return []LogEntry

type RuntimeVersion ¶

type RuntimeVersion struct {
	Id            *string                           `json:"id,omitempty"`
	Name          *string                           `json:"name,omitempty"`
	TechnicalName *string                           `json:"technical_name,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
}

RuntimeVersion struct for RuntimeVersion

func NewRuntimeVersion ¶

func NewRuntimeVersion() *RuntimeVersion

NewRuntimeVersion instantiates a new RuntimeVersion 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 NewRuntimeVersionWithDefaults ¶

func NewRuntimeVersionWithDefaults() *RuntimeVersion

NewRuntimeVersionWithDefaults instantiates a new RuntimeVersion 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 (*RuntimeVersion) GetCreated ¶

func (o *RuntimeVersion) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*RuntimeVersion) GetCreatedOk ¶

func (o *RuntimeVersion) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeVersion) GetDescription ¶

func (o *RuntimeVersion) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RuntimeVersion) GetDescriptionOk ¶

func (o *RuntimeVersion) 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 (*RuntimeVersion) GetId ¶

func (o *RuntimeVersion) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RuntimeVersion) GetIdOk ¶

func (o *RuntimeVersion) 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 (*RuntimeVersion) GetMetadata ¶

func (o *RuntimeVersion) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*RuntimeVersion) GetMetadataOk ¶

func (o *RuntimeVersion) GetMetadataOk() (map[string]map[string]interface{}, 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 (*RuntimeVersion) GetName ¶

func (o *RuntimeVersion) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RuntimeVersion) GetNameOk ¶

func (o *RuntimeVersion) 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 (*RuntimeVersion) GetTechnicalName ¶

func (o *RuntimeVersion) GetTechnicalName() string

GetTechnicalName returns the TechnicalName field value if set, zero value otherwise.

func (*RuntimeVersion) GetTechnicalNameOk ¶

func (o *RuntimeVersion) GetTechnicalNameOk() (*string, bool)

GetTechnicalNameOk returns a tuple with the TechnicalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeVersion) GetUpdated ¶

func (o *RuntimeVersion) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*RuntimeVersion) GetUpdatedOk ¶

func (o *RuntimeVersion) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RuntimeVersion) HasCreated ¶

func (o *RuntimeVersion) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*RuntimeVersion) HasDescription ¶

func (o *RuntimeVersion) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RuntimeVersion) HasId ¶

func (o *RuntimeVersion) HasId() bool

HasId returns a boolean if a field has been set.

func (*RuntimeVersion) HasMetadata ¶

func (o *RuntimeVersion) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*RuntimeVersion) HasName ¶

func (o *RuntimeVersion) HasName() bool

HasName returns a boolean if a field has been set.

func (*RuntimeVersion) HasTechnicalName ¶

func (o *RuntimeVersion) HasTechnicalName() bool

HasTechnicalName returns a boolean if a field has been set.

func (*RuntimeVersion) HasUpdated ¶

func (o *RuntimeVersion) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (RuntimeVersion) MarshalJSON ¶

func (o RuntimeVersion) MarshalJSON() ([]byte, error)

func (*RuntimeVersion) SetCreated ¶

func (o *RuntimeVersion) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*RuntimeVersion) SetDescription ¶

func (o *RuntimeVersion) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RuntimeVersion) SetId ¶

func (o *RuntimeVersion) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RuntimeVersion) SetMetadata ¶

func (o *RuntimeVersion) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*RuntimeVersion) SetName ¶

func (o *RuntimeVersion) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RuntimeVersion) SetTechnicalName ¶

func (o *RuntimeVersion) SetTechnicalName(v string)

SetTechnicalName gets a reference to the given string and assigns it to the TechnicalName field.

func (*RuntimeVersion) SetUpdated ¶

func (o *RuntimeVersion) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (RuntimeVersion) ToMap ¶ added in v1.10.3

func (o RuntimeVersion) ToMap() (map[string]interface{}, error)

type S3Connector ¶ added in v1.10.3

type S3Connector struct {
	// Connection to a S3 bucket.
	Type    *string            `json:"type,omitempty"`
	Options S3ConnectorOptions `json:"options"`
}

S3Connector Connect to a S3 bucket. Attributes ---------- type : ConnectorType S3 connector type. options : S3ConnectorOptions Options to connect to a S3 bucket (i.e. credentials). _prefix : str Prefix of the S3 bucket.

func NewS3Connector ¶ added in v1.10.3

func NewS3Connector(options S3ConnectorOptions) *S3Connector

NewS3Connector instantiates a new S3Connector 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 NewS3ConnectorWithDefaults ¶ added in v1.10.3

func NewS3ConnectorWithDefaults() *S3Connector

NewS3ConnectorWithDefaults instantiates a new S3Connector 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 (*S3Connector) GetOptions ¶ added in v1.10.3

func (o *S3Connector) GetOptions() S3ConnectorOptions

GetOptions returns the Options field value

func (*S3Connector) GetOptionsOk ¶ added in v1.10.3

func (o *S3Connector) GetOptionsOk() (*S3ConnectorOptions, bool)

GetOptionsOk returns a tuple with the Options field value and a boolean to check if the value has been set.

func (*S3Connector) GetType ¶ added in v1.10.3

func (o *S3Connector) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*S3Connector) GetTypeOk ¶ added in v1.10.3

func (o *S3Connector) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3Connector) HasType ¶ added in v1.10.3

func (o *S3Connector) HasType() bool

HasType returns a boolean if a field has been set.

func (S3Connector) MarshalJSON ¶ added in v1.10.3

func (o S3Connector) MarshalJSON() ([]byte, error)

func (*S3Connector) SetOptions ¶ added in v1.10.3

func (o *S3Connector) SetOptions(v S3ConnectorOptions)

SetOptions sets field value

func (*S3Connector) SetType ¶ added in v1.10.3

func (o *S3Connector) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (S3Connector) ToMap ¶ added in v1.10.3

func (o S3Connector) ToMap() (map[string]interface{}, error)

func (*S3Connector) UnmarshalJSON ¶ added in v1.10.3

func (o *S3Connector) UnmarshalJSON(bytes []byte) (err error)

type S3ConnectorOptions ¶ added in v1.10.3

type S3ConnectorOptions struct {
	// The bucket to be connected to.
	Bucket string `json:"bucket"`
	// S3 access key to access to AWS.
	AccessKey string `json:"access_key"`
	// S3 secret key to access to AWS.
	SecretKey string `json:"secret_key"`
	// S3 session token to access to AWS.
	SessionToken *string `json:"session_token,omitempty"`
	// The endpoint to be connected to.
	Endpoint *string `json:"endpoint,omitempty"`
	// The region of the endpoint.
	RegionName *string `json:"region_name,omitempty"`
}

S3ConnectorOptions Options to connect to a S3 bucket. Attributes ---------- bucket : str Bucket name. access_key : str Access key for S3. secret_key : str Secret key for S3. session_token : str Session token for S3. endpoint : str URL endpoint.

func NewS3ConnectorOptions ¶ added in v1.10.3

func NewS3ConnectorOptions(bucket string, accessKey string, secretKey string) *S3ConnectorOptions

NewS3ConnectorOptions instantiates a new S3ConnectorOptions 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 NewS3ConnectorOptionsWithDefaults ¶ added in v1.10.3

func NewS3ConnectorOptionsWithDefaults() *S3ConnectorOptions

NewS3ConnectorOptionsWithDefaults instantiates a new S3ConnectorOptions 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 (*S3ConnectorOptions) GetAccessKey ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetAccessKey() string

GetAccessKey returns the AccessKey field value

func (*S3ConnectorOptions) GetAccessKeyOk ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetAccessKeyOk() (*string, bool)

GetAccessKeyOk returns a tuple with the AccessKey field value and a boolean to check if the value has been set.

func (*S3ConnectorOptions) GetBucket ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetBucket() string

GetBucket returns the Bucket field value

func (*S3ConnectorOptions) GetBucketOk ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetBucketOk() (*string, bool)

GetBucketOk returns a tuple with the Bucket field value and a boolean to check if the value has been set.

func (*S3ConnectorOptions) GetEndpoint ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetEndpoint() string

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*S3ConnectorOptions) GetEndpointOk ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetEndpointOk() (*string, bool)

GetEndpointOk returns a tuple with the Endpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ConnectorOptions) GetRegionName ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetRegionName() string

GetRegionName returns the RegionName field value if set, zero value otherwise.

func (*S3ConnectorOptions) GetRegionNameOk ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetRegionNameOk() (*string, bool)

GetRegionNameOk returns a tuple with the RegionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ConnectorOptions) GetSecretKey ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetSecretKey() string

GetSecretKey returns the SecretKey field value

func (*S3ConnectorOptions) GetSecretKeyOk ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetSecretKeyOk() (*string, bool)

GetSecretKeyOk returns a tuple with the SecretKey field value and a boolean to check if the value has been set.

func (*S3ConnectorOptions) GetSessionToken ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetSessionToken() string

GetSessionToken returns the SessionToken field value if set, zero value otherwise.

func (*S3ConnectorOptions) GetSessionTokenOk ¶ added in v1.10.3

func (o *S3ConnectorOptions) GetSessionTokenOk() (*string, bool)

GetSessionTokenOk returns a tuple with the SessionToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3ConnectorOptions) HasEndpoint ¶ added in v1.10.3

func (o *S3ConnectorOptions) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*S3ConnectorOptions) HasRegionName ¶ added in v1.10.3

func (o *S3ConnectorOptions) HasRegionName() bool

HasRegionName returns a boolean if a field has been set.

func (*S3ConnectorOptions) HasSessionToken ¶ added in v1.10.3

func (o *S3ConnectorOptions) HasSessionToken() bool

HasSessionToken returns a boolean if a field has been set.

func (S3ConnectorOptions) MarshalJSON ¶ added in v1.10.3

func (o S3ConnectorOptions) MarshalJSON() ([]byte, error)

func (*S3ConnectorOptions) SetAccessKey ¶ added in v1.10.3

func (o *S3ConnectorOptions) SetAccessKey(v string)

SetAccessKey sets field value

func (*S3ConnectorOptions) SetBucket ¶ added in v1.10.3

func (o *S3ConnectorOptions) SetBucket(v string)

SetBucket sets field value

func (*S3ConnectorOptions) SetEndpoint ¶ added in v1.10.3

func (o *S3ConnectorOptions) SetEndpoint(v string)

SetEndpoint gets a reference to the given string and assigns it to the Endpoint field.

func (*S3ConnectorOptions) SetRegionName ¶ added in v1.10.3

func (o *S3ConnectorOptions) SetRegionName(v string)

SetRegionName gets a reference to the given string and assigns it to the RegionName field.

func (*S3ConnectorOptions) SetSecretKey ¶ added in v1.10.3

func (o *S3ConnectorOptions) SetSecretKey(v string)

SetSecretKey sets field value

func (*S3ConnectorOptions) SetSessionToken ¶ added in v1.10.3

func (o *S3ConnectorOptions) SetSessionToken(v string)

SetSessionToken gets a reference to the given string and assigns it to the SessionToken field.

func (S3ConnectorOptions) ToMap ¶ added in v1.10.3

func (o S3ConnectorOptions) ToMap() (map[string]interface{}, error)

func (*S3ConnectorOptions) UnmarshalJSON ¶ added in v1.10.3

func (o *S3ConnectorOptions) UnmarshalJSON(bytes []byte) (err error)

type S3Uri ¶ added in v1.10.3

type S3Uri struct {
	Uri
	Type      *string `json:"type,omitempty"`
	AccessKey *string `json:"access_key,omitempty"`
	SecretKey *string `json:"secret_key,omitempty"`
	Endpoint  *string `json:"endpoint,omitempty"`
	Region    *string `json:"region,omitempty"`
}

S3Uri struct for S3Uri

func NewS3Uri ¶ added in v1.10.3

func NewS3Uri() *S3Uri

NewS3Uri instantiates a new S3Uri 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 NewS3UriWithDefaults ¶ added in v1.10.3

func NewS3UriWithDefaults() *S3Uri

NewS3UriWithDefaults instantiates a new S3Uri 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 (*S3Uri) GetAccessKey ¶ added in v1.10.3

func (o *S3Uri) GetAccessKey() string

GetAccessKey returns the AccessKey field value if set, zero value otherwise.

func (*S3Uri) GetAccessKeyOk ¶ added in v1.10.3

func (o *S3Uri) GetAccessKeyOk() (*string, bool)

GetAccessKeyOk returns a tuple with the AccessKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3Uri) GetEndpoint ¶ added in v1.10.3

func (o *S3Uri) GetEndpoint() string

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*S3Uri) GetEndpointOk ¶ added in v1.10.3

func (o *S3Uri) GetEndpointOk() (*string, bool)

GetEndpointOk returns a tuple with the Endpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3Uri) GetRegion ¶ added in v1.10.3

func (o *S3Uri) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*S3Uri) GetRegionOk ¶ added in v1.10.3

func (o *S3Uri) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3Uri) GetSecretKey ¶ added in v1.10.3

func (o *S3Uri) GetSecretKey() string

GetSecretKey returns the SecretKey field value if set, zero value otherwise.

func (*S3Uri) GetSecretKeyOk ¶ added in v1.10.3

func (o *S3Uri) GetSecretKeyOk() (*string, bool)

GetSecretKeyOk returns a tuple with the SecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3Uri) GetType ¶ added in v1.10.3

func (o *S3Uri) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*S3Uri) GetTypeOk ¶ added in v1.10.3

func (o *S3Uri) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3Uri) HasAccessKey ¶ added in v1.10.3

func (o *S3Uri) HasAccessKey() bool

HasAccessKey returns a boolean if a field has been set.

func (*S3Uri) HasEndpoint ¶ added in v1.10.3

func (o *S3Uri) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*S3Uri) HasRegion ¶ added in v1.10.3

func (o *S3Uri) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*S3Uri) HasSecretKey ¶ added in v1.10.3

func (o *S3Uri) HasSecretKey() bool

HasSecretKey returns a boolean if a field has been set.

func (*S3Uri) HasType ¶ added in v1.10.3

func (o *S3Uri) HasType() bool

HasType returns a boolean if a field has been set.

func (S3Uri) MarshalJSON ¶ added in v1.10.3

func (o S3Uri) MarshalJSON() ([]byte, error)

func (*S3Uri) SetAccessKey ¶ added in v1.10.3

func (o *S3Uri) SetAccessKey(v string)

SetAccessKey gets a reference to the given string and assigns it to the AccessKey field.

func (*S3Uri) SetEndpoint ¶ added in v1.10.3

func (o *S3Uri) SetEndpoint(v string)

SetEndpoint gets a reference to the given string and assigns it to the Endpoint field.

func (*S3Uri) SetRegion ¶ added in v1.10.3

func (o *S3Uri) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*S3Uri) SetSecretKey ¶ added in v1.10.3

func (o *S3Uri) SetSecretKey(v string)

SetSecretKey gets a reference to the given string and assigns it to the SecretKey field.

func (*S3Uri) SetType ¶ added in v1.10.3

func (o *S3Uri) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (S3Uri) ToMap ¶ added in v1.10.3

func (o S3Uri) ToMap() (map[string]interface{}, error)

type S3UriAllOf ¶ added in v1.10.3

type S3UriAllOf struct {
	Type      *string `json:"type,omitempty"`
	AccessKey *string `json:"access_key,omitempty"`
	SecretKey *string `json:"secret_key,omitempty"`
	Endpoint  *string `json:"endpoint,omitempty"`
	Region    *string `json:"region,omitempty"`
}

S3UriAllOf struct for S3UriAllOf

func NewS3UriAllOf ¶ added in v1.10.3

func NewS3UriAllOf() *S3UriAllOf

NewS3UriAllOf instantiates a new S3UriAllOf 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 NewS3UriAllOfWithDefaults ¶ added in v1.10.3

func NewS3UriAllOfWithDefaults() *S3UriAllOf

NewS3UriAllOfWithDefaults instantiates a new S3UriAllOf 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 (*S3UriAllOf) GetAccessKey ¶ added in v1.10.3

func (o *S3UriAllOf) GetAccessKey() string

GetAccessKey returns the AccessKey field value if set, zero value otherwise.

func (*S3UriAllOf) GetAccessKeyOk ¶ added in v1.10.3

func (o *S3UriAllOf) GetAccessKeyOk() (*string, bool)

GetAccessKeyOk returns a tuple with the AccessKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3UriAllOf) GetEndpoint ¶ added in v1.10.3

func (o *S3UriAllOf) GetEndpoint() string

GetEndpoint returns the Endpoint field value if set, zero value otherwise.

func (*S3UriAllOf) GetEndpointOk ¶ added in v1.10.3

func (o *S3UriAllOf) GetEndpointOk() (*string, bool)

GetEndpointOk returns a tuple with the Endpoint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3UriAllOf) GetRegion ¶ added in v1.10.3

func (o *S3UriAllOf) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*S3UriAllOf) GetRegionOk ¶ added in v1.10.3

func (o *S3UriAllOf) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3UriAllOf) GetSecretKey ¶ added in v1.10.3

func (o *S3UriAllOf) GetSecretKey() string

GetSecretKey returns the SecretKey field value if set, zero value otherwise.

func (*S3UriAllOf) GetSecretKeyOk ¶ added in v1.10.3

func (o *S3UriAllOf) GetSecretKeyOk() (*string, bool)

GetSecretKeyOk returns a tuple with the SecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3UriAllOf) GetType ¶ added in v1.10.3

func (o *S3UriAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*S3UriAllOf) GetTypeOk ¶ added in v1.10.3

func (o *S3UriAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3UriAllOf) HasAccessKey ¶ added in v1.10.3

func (o *S3UriAllOf) HasAccessKey() bool

HasAccessKey returns a boolean if a field has been set.

func (*S3UriAllOf) HasEndpoint ¶ added in v1.10.3

func (o *S3UriAllOf) HasEndpoint() bool

HasEndpoint returns a boolean if a field has been set.

func (*S3UriAllOf) HasRegion ¶ added in v1.10.3

func (o *S3UriAllOf) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*S3UriAllOf) HasSecretKey ¶ added in v1.10.3

func (o *S3UriAllOf) HasSecretKey() bool

HasSecretKey returns a boolean if a field has been set.

func (*S3UriAllOf) HasType ¶ added in v1.10.3

func (o *S3UriAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (S3UriAllOf) MarshalJSON ¶ added in v1.10.3

func (o S3UriAllOf) MarshalJSON() ([]byte, error)

func (*S3UriAllOf) SetAccessKey ¶ added in v1.10.3

func (o *S3UriAllOf) SetAccessKey(v string)

SetAccessKey gets a reference to the given string and assigns it to the AccessKey field.

func (*S3UriAllOf) SetEndpoint ¶ added in v1.10.3

func (o *S3UriAllOf) SetEndpoint(v string)

SetEndpoint gets a reference to the given string and assigns it to the Endpoint field.

func (*S3UriAllOf) SetRegion ¶ added in v1.10.3

func (o *S3UriAllOf) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*S3UriAllOf) SetSecretKey ¶ added in v1.10.3

func (o *S3UriAllOf) SetSecretKey(v string)

SetSecretKey gets a reference to the given string and assigns it to the SecretKey field.

func (*S3UriAllOf) SetType ¶ added in v1.10.3

func (o *S3UriAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type SASOptions ¶ added in v1.10.3

type SASOptions struct {
	Options
	Type  *string  `json:"type,omitempty"`
	Lines []string `json:"lines,omitempty"`
}

SASOptions struct for SASOptions

func NewSASOptions ¶ added in v1.10.3

func NewSASOptions() *SASOptions

NewSASOptions instantiates a new SASOptions 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 NewSASOptionsWithDefaults ¶ added in v1.10.3

func NewSASOptionsWithDefaults() *SASOptions

NewSASOptionsWithDefaults instantiates a new SASOptions 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 (*SASOptions) GetLines ¶ added in v1.10.3

func (o *SASOptions) GetLines() []string

GetLines returns the Lines field value if set, zero value otherwise.

func (*SASOptions) GetLinesOk ¶ added in v1.10.3

func (o *SASOptions) GetLinesOk() ([]string, bool)

GetLinesOk returns a tuple with the Lines field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SASOptions) GetType ¶ added in v1.10.3

func (o *SASOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SASOptions) GetTypeOk ¶ added in v1.10.3

func (o *SASOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SASOptions) HasLines ¶ added in v1.10.3

func (o *SASOptions) HasLines() bool

HasLines returns a boolean if a field has been set.

func (*SASOptions) HasType ¶ added in v1.10.3

func (o *SASOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (SASOptions) MarshalJSON ¶ added in v1.10.3

func (o SASOptions) MarshalJSON() ([]byte, error)

func (*SASOptions) SetLines ¶ added in v1.10.3

func (o *SASOptions) SetLines(v []string)

SetLines gets a reference to the given []string and assigns it to the Lines field.

func (*SASOptions) SetType ¶ added in v1.10.3

func (o *SASOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SASOptions) ToMap ¶ added in v1.10.3

func (o SASOptions) ToMap() (map[string]interface{}, error)

type SASOptionsAllOf ¶ added in v1.10.3

type SASOptionsAllOf struct {
	Type  *string   `json:"type,omitempty"`
	Lines *[]string `json:"lines,omitempty"`
}

SASOptionsAllOf struct for SASOptionsAllOf

func NewSASOptionsAllOf ¶ added in v1.10.3

func NewSASOptionsAllOf() *SASOptionsAllOf

NewSASOptionsAllOf instantiates a new SASOptionsAllOf 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 NewSASOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewSASOptionsAllOfWithDefaults() *SASOptionsAllOf

NewSASOptionsAllOfWithDefaults instantiates a new SASOptionsAllOf 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 (*SASOptionsAllOf) GetLines ¶ added in v1.10.3

func (o *SASOptionsAllOf) GetLines() []string

GetLines returns the Lines field value if set, zero value otherwise.

func (*SASOptionsAllOf) GetLinesOk ¶ added in v1.10.3

func (o *SASOptionsAllOf) GetLinesOk() (*[]string, bool)

GetLinesOk returns a tuple with the Lines field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SASOptionsAllOf) GetType ¶ added in v1.10.3

func (o *SASOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SASOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *SASOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SASOptionsAllOf) HasLines ¶ added in v1.10.3

func (o *SASOptionsAllOf) HasLines() bool

HasLines returns a boolean if a field has been set.

func (*SASOptionsAllOf) HasType ¶ added in v1.10.3

func (o *SASOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (SASOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o SASOptionsAllOf) MarshalJSON() ([]byte, error)

func (*SASOptionsAllOf) SetLines ¶ added in v1.10.3

func (o *SASOptionsAllOf) SetLines(v []string)

SetLines gets a reference to the given []string and assigns it to the Lines field.

func (*SASOptionsAllOf) SetType ¶ added in v1.10.3

func (o *SASOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type SQLConnector ¶ added in v1.10.3

type SQLConnector struct {
	// Connection to a SQL server.
	Type *string `json:"type,omitempty"`
	// Options to connect to a SQL server.
	Options map[string]interface{} `json:"options,omitempty"`
}

SQLConnector Connect to a SQL server. Attributes ---------- type : ConnectorType SQL connector type. options : SQLConnectorOptions Options to connect to a SQL server.

func NewSQLConnector ¶ added in v1.10.3

func NewSQLConnector() *SQLConnector

NewSQLConnector instantiates a new SQLConnector 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 NewSQLConnectorWithDefaults ¶ added in v1.10.3

func NewSQLConnectorWithDefaults() *SQLConnector

NewSQLConnectorWithDefaults instantiates a new SQLConnector 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 (*SQLConnector) GetOptions ¶ added in v1.10.3

func (o *SQLConnector) GetOptions() map[string]interface{}

GetOptions returns the Options field value if set, zero value otherwise.

func (*SQLConnector) GetOptionsOk ¶ added in v1.10.3

func (o *SQLConnector) GetOptionsOk() (map[string]interface{}, 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.

func (*SQLConnector) GetType ¶ added in v1.10.3

func (o *SQLConnector) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SQLConnector) GetTypeOk ¶ added in v1.10.3

func (o *SQLConnector) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SQLConnector) HasOptions ¶ added in v1.10.3

func (o *SQLConnector) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*SQLConnector) HasType ¶ added in v1.10.3

func (o *SQLConnector) HasType() bool

HasType returns a boolean if a field has been set.

func (SQLConnector) MarshalJSON ¶ added in v1.10.3

func (o SQLConnector) MarshalJSON() ([]byte, error)

func (*SQLConnector) SetOptions ¶ added in v1.10.3

func (o *SQLConnector) SetOptions(v map[string]interface{})

SetOptions gets a reference to the given map[string]interface{} and assigns it to the Options field.

func (*SQLConnector) SetType ¶ added in v1.10.3

func (o *SQLConnector) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SQLConnector) ToMap ¶ added in v1.10.3

func (o SQLConnector) ToMap() (map[string]interface{}, error)

type SQLDataReader ¶ added in v1.10.3

type SQLDataReader struct {
	// URL to connect to the SQL server.
	Url string `json:"url"`
	// Port to connect to the SQL server.
	Port *string `json:"port,omitempty"`
	// Name of the database in the SQL server.
	Db string `json:"db"`
	// Logical structure defining the organization,         relationships, and attributes of the database. The public schema is the         default schema where all the new tables are created.
	SchemaDb *string `json:"schema_db,omitempty"`
	// Name of the table in the database.
	Table string `json:"table"`
	// Username to connect to the SQL server.
	User string `json:"user"`
	// Password to connect to the SQL server.
	Password string `json:"password"`
	// Type of database connection
	Type *string `json:"type,omitempty"`
}

SQLDataReader struct for SQLDataReader

func NewSQLDataReader ¶ added in v1.10.3

func NewSQLDataReader(url string, db string, table string, user string, password string) *SQLDataReader

NewSQLDataReader instantiates a new SQLDataReader 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 NewSQLDataReaderWithDefaults ¶ added in v1.10.3

func NewSQLDataReaderWithDefaults() *SQLDataReader

NewSQLDataReaderWithDefaults instantiates a new SQLDataReader 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 (*SQLDataReader) GetDb ¶ added in v1.10.3

func (o *SQLDataReader) GetDb() string

GetDb returns the Db field value

func (*SQLDataReader) GetDbOk ¶ added in v1.10.3

func (o *SQLDataReader) GetDbOk() (*string, bool)

GetDbOk returns a tuple with the Db field value and a boolean to check if the value has been set.

func (*SQLDataReader) GetPassword ¶ added in v1.10.3

func (o *SQLDataReader) GetPassword() string

GetPassword returns the Password field value

func (*SQLDataReader) GetPasswordOk ¶ added in v1.10.3

func (o *SQLDataReader) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*SQLDataReader) GetPort ¶ added in v1.10.3

func (o *SQLDataReader) GetPort() string

GetPort returns the Port field value if set, zero value otherwise.

func (*SQLDataReader) GetPortOk ¶ added in v1.10.3

func (o *SQLDataReader) GetPortOk() (*string, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SQLDataReader) GetSchemaDb ¶ added in v1.10.3

func (o *SQLDataReader) GetSchemaDb() string

GetSchemaDb returns the SchemaDb field value if set, zero value otherwise.

func (*SQLDataReader) GetSchemaDbOk ¶ added in v1.10.3

func (o *SQLDataReader) GetSchemaDbOk() (*string, bool)

GetSchemaDbOk returns a tuple with the SchemaDb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SQLDataReader) GetTable ¶ added in v1.10.3

func (o *SQLDataReader) GetTable() string

GetTable returns the Table field value

func (*SQLDataReader) GetTableOk ¶ added in v1.10.3

func (o *SQLDataReader) GetTableOk() (*string, bool)

GetTableOk returns a tuple with the Table field value and a boolean to check if the value has been set.

func (*SQLDataReader) GetType ¶ added in v1.10.3

func (o *SQLDataReader) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SQLDataReader) GetTypeOk ¶ added in v1.10.3

func (o *SQLDataReader) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SQLDataReader) GetUrl ¶ added in v1.10.3

func (o *SQLDataReader) GetUrl() string

GetUrl returns the Url field value

func (*SQLDataReader) GetUrlOk ¶ added in v1.10.3

func (o *SQLDataReader) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*SQLDataReader) GetUser ¶ added in v1.10.3

func (o *SQLDataReader) GetUser() string

GetUser returns the User field value

func (*SQLDataReader) GetUserOk ¶ added in v1.10.3

func (o *SQLDataReader) GetUserOk() (*string, bool)

GetUserOk returns a tuple with the User field value and a boolean to check if the value has been set.

func (*SQLDataReader) HasPort ¶ added in v1.10.3

func (o *SQLDataReader) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*SQLDataReader) HasSchemaDb ¶ added in v1.10.3

func (o *SQLDataReader) HasSchemaDb() bool

HasSchemaDb returns a boolean if a field has been set.

func (*SQLDataReader) HasType ¶ added in v1.10.3

func (o *SQLDataReader) HasType() bool

HasType returns a boolean if a field has been set.

func (SQLDataReader) MarshalJSON ¶ added in v1.10.3

func (o SQLDataReader) MarshalJSON() ([]byte, error)

func (*SQLDataReader) SetDb ¶ added in v1.10.3

func (o *SQLDataReader) SetDb(v string)

SetDb sets field value

func (*SQLDataReader) SetPassword ¶ added in v1.10.3

func (o *SQLDataReader) SetPassword(v string)

SetPassword sets field value

func (*SQLDataReader) SetPort ¶ added in v1.10.3

func (o *SQLDataReader) SetPort(v string)

SetPort gets a reference to the given string and assigns it to the Port field.

func (*SQLDataReader) SetSchemaDb ¶ added in v1.10.3

func (o *SQLDataReader) SetSchemaDb(v string)

SetSchemaDb gets a reference to the given string and assigns it to the SchemaDb field.

func (*SQLDataReader) SetTable ¶ added in v1.10.3

func (o *SQLDataReader) SetTable(v string)

SetTable sets field value

func (*SQLDataReader) SetType ¶ added in v1.10.3

func (o *SQLDataReader) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*SQLDataReader) SetUrl ¶ added in v1.10.3

func (o *SQLDataReader) SetUrl(v string)

SetUrl sets field value

func (*SQLDataReader) SetUser ¶ added in v1.10.3

func (o *SQLDataReader) SetUser(v string)

SetUser sets field value

func (SQLDataReader) ToMap ¶ added in v1.10.3

func (o SQLDataReader) ToMap() (map[string]interface{}, error)

func (*SQLDataReader) UnmarshalJSON ¶ added in v1.10.3

func (o *SQLDataReader) UnmarshalJSON(bytes []byte) (err error)

type SQLDataWriter ¶ added in v1.10.3

type SQLDataWriter struct {
	// URL to connect to the SQL server.
	Url string `json:"url"`
	// Port to connect to the SQL server.
	Port *string `json:"port,omitempty"`
	// Name of the database in the SQL server.
	Db string `json:"db"`
	// Logical structure defining the organization,         relationships, and attributes of the database. The public schema is the         default schema where all the new tables are created.
	SchemaDb *string `json:"schema_db,omitempty"`
	// Name of the table in the database.
	Table string `json:"table"`
	// Username to connect to the SQL server.
	User string `json:"user"`
	// Password to connect to the SQL server.
	Password string `json:"password"`
	// Type of database connection
	Type *string `json:"type,omitempty"`
}

SQLDataWriter struct for SQLDataWriter

func NewSQLDataWriter ¶ added in v1.10.3

func NewSQLDataWriter(url string, db string, table string, user string, password string) *SQLDataWriter

NewSQLDataWriter instantiates a new SQLDataWriter 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 NewSQLDataWriterWithDefaults ¶ added in v1.10.3

func NewSQLDataWriterWithDefaults() *SQLDataWriter

NewSQLDataWriterWithDefaults instantiates a new SQLDataWriter 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 (*SQLDataWriter) GetDb ¶ added in v1.10.3

func (o *SQLDataWriter) GetDb() string

GetDb returns the Db field value

func (*SQLDataWriter) GetDbOk ¶ added in v1.10.3

func (o *SQLDataWriter) GetDbOk() (*string, bool)

GetDbOk returns a tuple with the Db field value and a boolean to check if the value has been set.

func (*SQLDataWriter) GetPassword ¶ added in v1.10.3

func (o *SQLDataWriter) GetPassword() string

GetPassword returns the Password field value

func (*SQLDataWriter) GetPasswordOk ¶ added in v1.10.3

func (o *SQLDataWriter) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*SQLDataWriter) GetPort ¶ added in v1.10.3

func (o *SQLDataWriter) GetPort() string

GetPort returns the Port field value if set, zero value otherwise.

func (*SQLDataWriter) GetPortOk ¶ added in v1.10.3

func (o *SQLDataWriter) GetPortOk() (*string, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SQLDataWriter) GetSchemaDb ¶ added in v1.10.3

func (o *SQLDataWriter) GetSchemaDb() string

GetSchemaDb returns the SchemaDb field value if set, zero value otherwise.

func (*SQLDataWriter) GetSchemaDbOk ¶ added in v1.10.3

func (o *SQLDataWriter) GetSchemaDbOk() (*string, bool)

GetSchemaDbOk returns a tuple with the SchemaDb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SQLDataWriter) GetTable ¶ added in v1.10.3

func (o *SQLDataWriter) GetTable() string

GetTable returns the Table field value

func (*SQLDataWriter) GetTableOk ¶ added in v1.10.3

func (o *SQLDataWriter) GetTableOk() (*string, bool)

GetTableOk returns a tuple with the Table field value and a boolean to check if the value has been set.

func (*SQLDataWriter) GetType ¶ added in v1.10.3

func (o *SQLDataWriter) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SQLDataWriter) GetTypeOk ¶ added in v1.10.3

func (o *SQLDataWriter) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SQLDataWriter) GetUrl ¶ added in v1.10.3

func (o *SQLDataWriter) GetUrl() string

GetUrl returns the Url field value

func (*SQLDataWriter) GetUrlOk ¶ added in v1.10.3

func (o *SQLDataWriter) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value and a boolean to check if the value has been set.

func (*SQLDataWriter) GetUser ¶ added in v1.10.3

func (o *SQLDataWriter) GetUser() string

GetUser returns the User field value

func (*SQLDataWriter) GetUserOk ¶ added in v1.10.3

func (o *SQLDataWriter) GetUserOk() (*string, bool)

GetUserOk returns a tuple with the User field value and a boolean to check if the value has been set.

func (*SQLDataWriter) HasPort ¶ added in v1.10.3

func (o *SQLDataWriter) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*SQLDataWriter) HasSchemaDb ¶ added in v1.10.3

func (o *SQLDataWriter) HasSchemaDb() bool

HasSchemaDb returns a boolean if a field has been set.

func (*SQLDataWriter) HasType ¶ added in v1.10.3

func (o *SQLDataWriter) HasType() bool

HasType returns a boolean if a field has been set.

func (SQLDataWriter) MarshalJSON ¶ added in v1.10.3

func (o SQLDataWriter) MarshalJSON() ([]byte, error)

func (*SQLDataWriter) SetDb ¶ added in v1.10.3

func (o *SQLDataWriter) SetDb(v string)

SetDb sets field value

func (*SQLDataWriter) SetPassword ¶ added in v1.10.3

func (o *SQLDataWriter) SetPassword(v string)

SetPassword sets field value

func (*SQLDataWriter) SetPort ¶ added in v1.10.3

func (o *SQLDataWriter) SetPort(v string)

SetPort gets a reference to the given string and assigns it to the Port field.

func (*SQLDataWriter) SetSchemaDb ¶ added in v1.10.3

func (o *SQLDataWriter) SetSchemaDb(v string)

SetSchemaDb gets a reference to the given string and assigns it to the SchemaDb field.

func (*SQLDataWriter) SetTable ¶ added in v1.10.3

func (o *SQLDataWriter) SetTable(v string)

SetTable sets field value

func (*SQLDataWriter) SetType ¶ added in v1.10.3

func (o *SQLDataWriter) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*SQLDataWriter) SetUrl ¶ added in v1.10.3

func (o *SQLDataWriter) SetUrl(v string)

SetUrl sets field value

func (*SQLDataWriter) SetUser ¶ added in v1.10.3

func (o *SQLDataWriter) SetUser(v string)

SetUser sets field value

func (SQLDataWriter) ToMap ¶ added in v1.10.3

func (o SQLDataWriter) ToMap() (map[string]interface{}, error)

func (*SQLDataWriter) UnmarshalJSON ¶ added in v1.10.3

func (o *SQLDataWriter) UnmarshalJSON(bytes []byte) (err error)

type SaveMode ¶ added in v1.10.3

type SaveMode string

SaveMode Map the SaveMode object to a string object.

const (
	OVERWRITE SaveMode = "overwrite"
	APPEND    SaveMode = "append"
)

List of SaveMode

func NewSaveModeFromValue ¶ added in v1.10.3

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 ¶ added in v1.10.3

func (v SaveMode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SaveMode) Ptr ¶ added in v1.10.3

func (v SaveMode) Ptr() *SaveMode

Ptr returns reference to SaveMode value

func (*SaveMode) UnmarshalJSON ¶ added in v1.10.3

func (v *SaveMode) UnmarshalJSON(src []byte) error

type SaveModelParams ¶ added in v1.10.3

type SaveModelParams struct {
	// Type of object model.
	Type      *string                 `json:"type,omitempty"`
	Connector Connector               `json:"connector"`
	Object    ParametersToWriteAFile2 `json:"object"`
}

SaveModelParams struct for SaveModelParams

func NewSaveModelParams ¶ added in v1.10.3

func NewSaveModelParams(connector Connector, object ParametersToWriteAFile2) *SaveModelParams

NewSaveModelParams instantiates a new SaveModelParams 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 NewSaveModelParamsWithDefaults ¶ added in v1.10.3

func NewSaveModelParamsWithDefaults() *SaveModelParams

NewSaveModelParamsWithDefaults instantiates a new SaveModelParams 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 (*SaveModelParams) GetConnector ¶ added in v1.10.3

func (o *SaveModelParams) GetConnector() Connector

GetConnector returns the Connector field value

func (*SaveModelParams) GetConnectorOk ¶ added in v1.10.3

func (o *SaveModelParams) GetConnectorOk() (*Connector, bool)

GetConnectorOk returns a tuple with the Connector field value and a boolean to check if the value has been set.

func (*SaveModelParams) GetObject ¶ added in v1.10.3

GetObject returns the Object field value

func (*SaveModelParams) GetObjectOk ¶ added in v1.10.3

func (o *SaveModelParams) GetObjectOk() (*ParametersToWriteAFile2, bool)

GetObjectOk returns a tuple with the Object field value and a boolean to check if the value has been set.

func (*SaveModelParams) GetType ¶ added in v1.10.3

func (o *SaveModelParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SaveModelParams) GetTypeOk ¶ added in v1.10.3

func (o *SaveModelParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SaveModelParams) HasType ¶ added in v1.10.3

func (o *SaveModelParams) HasType() bool

HasType returns a boolean if a field has been set.

func (SaveModelParams) MarshalJSON ¶ added in v1.10.3

func (o SaveModelParams) MarshalJSON() ([]byte, error)

func (*SaveModelParams) SetConnector ¶ added in v1.10.3

func (o *SaveModelParams) SetConnector(v Connector)

SetConnector sets field value

func (*SaveModelParams) SetObject ¶ added in v1.10.3

func (o *SaveModelParams) SetObject(v ParametersToWriteAFile2)

SetObject sets field value

func (*SaveModelParams) SetType ¶ added in v1.10.3

func (o *SaveModelParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SaveModelParams) ToMap ¶ added in v1.10.3

func (o SaveModelParams) ToMap() (map[string]interface{}, error)

func (*SaveModelParams) UnmarshalJSON ¶ added in v1.10.3

func (o *SaveModelParams) UnmarshalJSON(bytes []byte) (err error)

type Schedule ¶

type Schedule struct {
	ISchedule
	Type *string `json:"type,omitempty"`
}

Schedule struct for Schedule

func NewSchedule ¶

func NewSchedule() *Schedule

NewSchedule instantiates a new Schedule 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 NewScheduleWithDefaults ¶

func NewScheduleWithDefaults() *Schedule

NewScheduleWithDefaults instantiates a new Schedule 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 (*Schedule) GetType ¶

func (o *Schedule) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Schedule) GetTypeOk ¶

func (o *Schedule) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Schedule) HasType ¶

func (o *Schedule) HasType() bool

HasType returns a boolean if a field has been set.

func (Schedule) MarshalJSON ¶

func (o Schedule) MarshalJSON() ([]byte, error)

func (*Schedule) SetType ¶

func (o *Schedule) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Schedule) ToMap ¶ added in v1.10.3

func (o Schedule) ToMap() (map[string]interface{}, error)

type ScriptTask ¶

type ScriptTask struct {
	Task
	Type   *string `json:"type,omitempty"`
	Script *string `json:"script,omitempty"`
}

ScriptTask struct for ScriptTask

func NewScriptTask ¶

func NewScriptTask() *ScriptTask

NewScriptTask instantiates a new ScriptTask 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 NewScriptTaskWithDefaults ¶

func NewScriptTaskWithDefaults() *ScriptTask

NewScriptTaskWithDefaults instantiates a new ScriptTask 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 (*ScriptTask) GetScript ¶

func (o *ScriptTask) GetScript() string

GetScript returns the Script field value if set, zero value otherwise.

func (*ScriptTask) GetScriptOk ¶

func (o *ScriptTask) GetScriptOk() (*string, bool)

GetScriptOk returns a tuple with the Script field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScriptTask) GetType ¶

func (o *ScriptTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ScriptTask) GetTypeOk ¶

func (o *ScriptTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScriptTask) HasScript ¶

func (o *ScriptTask) HasScript() bool

HasScript returns a boolean if a field has been set.

func (*ScriptTask) HasType ¶

func (o *ScriptTask) HasType() bool

HasType returns a boolean if a field has been set.

func (ScriptTask) MarshalJSON ¶

func (o ScriptTask) MarshalJSON() ([]byte, error)

func (*ScriptTask) SetScript ¶

func (o *ScriptTask) SetScript(v string)

SetScript gets a reference to the given string and assigns it to the Script field.

func (*ScriptTask) SetType ¶

func (o *ScriptTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ScriptTask) ToMap ¶ added in v1.10.3

func (o ScriptTask) ToMap() (map[string]interface{}, error)

type ScriptTaskAllOf ¶

type ScriptTaskAllOf struct {
	Type   *string `json:"type,omitempty"`
	Script *string `json:"script,omitempty"`
}

ScriptTaskAllOf struct for ScriptTaskAllOf

func NewScriptTaskAllOf ¶

func NewScriptTaskAllOf() *ScriptTaskAllOf

NewScriptTaskAllOf instantiates a new ScriptTaskAllOf 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 NewScriptTaskAllOfWithDefaults ¶

func NewScriptTaskAllOfWithDefaults() *ScriptTaskAllOf

NewScriptTaskAllOfWithDefaults instantiates a new ScriptTaskAllOf 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 (*ScriptTaskAllOf) GetScript ¶

func (o *ScriptTaskAllOf) GetScript() string

GetScript returns the Script field value if set, zero value otherwise.

func (*ScriptTaskAllOf) GetScriptOk ¶

func (o *ScriptTaskAllOf) GetScriptOk() (*string, bool)

GetScriptOk returns a tuple with the Script field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScriptTaskAllOf) GetType ¶

func (o *ScriptTaskAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ScriptTaskAllOf) GetTypeOk ¶

func (o *ScriptTaskAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScriptTaskAllOf) HasScript ¶

func (o *ScriptTaskAllOf) HasScript() bool

HasScript returns a boolean if a field has been set.

func (*ScriptTaskAllOf) HasType ¶

func (o *ScriptTaskAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (ScriptTaskAllOf) MarshalJSON ¶

func (o ScriptTaskAllOf) MarshalJSON() ([]byte, error)

func (*ScriptTaskAllOf) SetScript ¶

func (o *ScriptTaskAllOf) SetScript(v string)

SetScript gets a reference to the given string and assigns it to the Script field.

func (*ScriptTaskAllOf) SetType ¶

func (o *ScriptTaskAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type SearchAPIService ¶ added in v1.10.3

type SearchAPIService service

SearchAPIService SearchAPI service

func (*SearchAPIService) Search ¶ added in v1.10.3

Search Search

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchRequest

func (*SearchAPIService) SearchExecute ¶ added in v1.10.3

func (a *SearchAPIService) SearchExecute(r ApiSearchRequest) ([]Result, *http.Response, error)

Execute executes the request

@return []Result

type SearchHistory ¶

type SearchHistory struct {
	Id      *string    `json:"id,omitempty"`
	Term    *string    `json:"term,omitempty"`
	Created *time.Time `json:"created,omitempty"`
}

SearchHistory struct for SearchHistory

func NewSearchHistory ¶

func NewSearchHistory() *SearchHistory

NewSearchHistory instantiates a new SearchHistory 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 NewSearchHistoryWithDefaults ¶

func NewSearchHistoryWithDefaults() *SearchHistory

NewSearchHistoryWithDefaults instantiates a new SearchHistory 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 (*SearchHistory) GetCreated ¶

func (o *SearchHistory) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*SearchHistory) GetCreatedOk ¶

func (o *SearchHistory) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHistory) GetId ¶

func (o *SearchHistory) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SearchHistory) GetIdOk ¶

func (o *SearchHistory) 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 (*SearchHistory) GetTerm ¶

func (o *SearchHistory) GetTerm() string

GetTerm returns the Term field value if set, zero value otherwise.

func (*SearchHistory) GetTermOk ¶

func (o *SearchHistory) GetTermOk() (*string, bool)

GetTermOk returns a tuple with the Term field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SearchHistory) HasCreated ¶

func (o *SearchHistory) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*SearchHistory) HasId ¶

func (o *SearchHistory) HasId() bool

HasId returns a boolean if a field has been set.

func (*SearchHistory) HasTerm ¶

func (o *SearchHistory) HasTerm() bool

HasTerm returns a boolean if a field has been set.

func (SearchHistory) MarshalJSON ¶

func (o SearchHistory) MarshalJSON() ([]byte, error)

func (*SearchHistory) SetCreated ¶

func (o *SearchHistory) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*SearchHistory) SetId ¶

func (o *SearchHistory) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SearchHistory) SetTerm ¶

func (o *SearchHistory) SetTerm(v string)

SetTerm gets a reference to the given string and assigns it to the Term field.

func (SearchHistory) ToMap ¶ added in v1.10.3

func (o SearchHistory) ToMap() (map[string]interface{}, error)

type Secret ¶

type Secret struct {
	Id          *string                           `json:"id,omitempty"`
	Data        *string                           `json:"data,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Labels      *map[string]string                `json:"labels,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Secret struct for Secret

func NewSecret ¶

func NewSecret() *Secret

NewSecret instantiates a new Secret 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 NewSecretWithDefaults ¶

func NewSecretWithDefaults() *Secret

NewSecretWithDefaults instantiates a new Secret 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 (*Secret) GetCreated ¶

func (o *Secret) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Secret) GetCreatedOk ¶

func (o *Secret) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetData ¶

func (o *Secret) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*Secret) GetDataOk ¶

func (o *Secret) GetDataOk() (*string, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetDescription ¶

func (o *Secret) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Secret) GetDescriptionOk ¶

func (o *Secret) 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 (*Secret) GetId ¶

func (o *Secret) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Secret) GetIdOk ¶

func (o *Secret) 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 (*Secret) GetLabels ¶

func (o *Secret) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Secret) GetLabelsOk ¶

func (o *Secret) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetMetadata ¶

func (o *Secret) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Secret) GetMetadataOk ¶

func (o *Secret) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Secret) GetName ¶

func (o *Secret) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Secret) GetNameOk ¶

func (o *Secret) 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 (*Secret) GetUpdated ¶

func (o *Secret) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Secret) GetUpdatedOk ¶

func (o *Secret) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) HasCreated ¶

func (o *Secret) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Secret) HasData ¶

func (o *Secret) HasData() bool

HasData returns a boolean if a field has been set.

func (*Secret) HasDescription ¶

func (o *Secret) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Secret) HasId ¶

func (o *Secret) HasId() bool

HasId returns a boolean if a field has been set.

func (*Secret) HasLabels ¶

func (o *Secret) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Secret) HasMetadata ¶

func (o *Secret) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Secret) HasName ¶

func (o *Secret) HasName() bool

HasName returns a boolean if a field has been set.

func (*Secret) HasUpdated ¶

func (o *Secret) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Secret) MarshalJSON ¶

func (o Secret) MarshalJSON() ([]byte, error)

func (*Secret) SetCreated ¶

func (o *Secret) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Secret) SetData ¶

func (o *Secret) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

func (*Secret) SetDescription ¶

func (o *Secret) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Secret) SetId ¶

func (o *Secret) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Secret) SetLabels ¶

func (o *Secret) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Secret) SetMetadata ¶

func (o *Secret) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Secret) SetName ¶

func (o *Secret) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Secret) SetUpdated ¶

func (o *Secret) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Secret) ToMap ¶ added in v1.10.3

func (o Secret) ToMap() (map[string]interface{}, error)

type SecretAPIService ¶ added in v1.10.3

type SecretAPIService service

SecretAPIService SecretAPI service

func (*SecretAPIService) CreateSecret ¶ added in v1.10.3

CreateSecret Create a secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateSecretRequest

func (*SecretAPIService) CreateSecretExecute ¶ added in v1.10.3

func (a *SecretAPIService) CreateSecretExecute(r ApiCreateSecretRequest) (*Secret, *http.Response, error)

Execute executes the request

@return Secret

func (*SecretAPIService) DeleteSecretById ¶ added in v1.10.3

func (a *SecretAPIService) DeleteSecretById(ctx context.Context, secretId string) ApiDeleteSecretByIdRequest

DeleteSecretById Delete a secret by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId Id of the secret
@return ApiDeleteSecretByIdRequest

func (*SecretAPIService) DeleteSecretByIdExecute ¶ added in v1.10.3

func (a *SecretAPIService) DeleteSecretByIdExecute(r ApiDeleteSecretByIdRequest) (*http.Response, error)

Execute executes the request

func (*SecretAPIService) FindSecretById ¶ added in v1.10.3

func (a *SecretAPIService) FindSecretById(ctx context.Context, secretId string) ApiFindSecretByIdRequest

FindSecretById Find secret by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId Id of the secret
@return ApiFindSecretByIdRequest

func (*SecretAPIService) FindSecretByIdExecute ¶ added in v1.10.3

func (a *SecretAPIService) FindSecretByIdExecute(r ApiFindSecretByIdRequest) (*Secret, *http.Response, error)

Execute executes the request

@return Secret

func (*SecretAPIService) FindSecretDataById ¶ added in v1.10.3

func (a *SecretAPIService) FindSecretDataById(ctx context.Context, secretId string) ApiFindSecretDataByIdRequest

FindSecretDataById Find secret data by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId Id of the secret
@return ApiFindSecretDataByIdRequest

func (*SecretAPIService) FindSecretDataByIdExecute ¶ added in v1.10.3

func (a *SecretAPIService) FindSecretDataByIdExecute(r ApiFindSecretDataByIdRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*SecretAPIService) FindSecrets ¶ added in v1.10.3

FindSecrets Retrieve all secrets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindSecretsRequest

func (*SecretAPIService) FindSecretsExecute ¶ added in v1.10.3

func (a *SecretAPIService) FindSecretsExecute(r ApiFindSecretsRequest) ([]Secret, *http.Response, error)

Execute executes the request

@return []Secret

func (*SecretAPIService) UpdateSecret ¶ added in v1.10.3

func (a *SecretAPIService) UpdateSecret(ctx context.Context, secretId string) ApiUpdateSecretRequest

UpdateSecret Update a secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param secretId Id of the secret
@return ApiUpdateSecretRequest

func (*SecretAPIService) UpdateSecretExecute ¶ added in v1.10.3

func (a *SecretAPIService) UpdateSecretExecute(r ApiUpdateSecretRequest) (*Secret, *http.Response, error)

Execute executes the request

@return Secret

type SepaDetails ¶ added in v1.10.3

type SepaDetails struct {
	Details1
	Type       *string `json:"type,omitempty"`
	Iban       *string `json:"iban,omitempty"`
	BankCode   *string `json:"bank_code,omitempty"`
	Country    *string `json:"country,omitempty"`
	BranchCode *string `json:"branch_code,omitempty"`
}

SepaDetails struct for SepaDetails

func NewSepaDetails ¶ added in v1.10.3

func NewSepaDetails() *SepaDetails

NewSepaDetails instantiates a new SepaDetails 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 NewSepaDetailsWithDefaults ¶ added in v1.10.3

func NewSepaDetailsWithDefaults() *SepaDetails

NewSepaDetailsWithDefaults instantiates a new SepaDetails 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 (*SepaDetails) GetBankCode ¶ added in v1.10.3

func (o *SepaDetails) GetBankCode() string

GetBankCode returns the BankCode field value if set, zero value otherwise.

func (*SepaDetails) GetBankCodeOk ¶ added in v1.10.3

func (o *SepaDetails) GetBankCodeOk() (*string, bool)

GetBankCodeOk returns a tuple with the BankCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetails) GetBranchCode ¶ added in v1.10.3

func (o *SepaDetails) GetBranchCode() string

GetBranchCode returns the BranchCode field value if set, zero value otherwise.

func (*SepaDetails) GetBranchCodeOk ¶ added in v1.10.3

func (o *SepaDetails) GetBranchCodeOk() (*string, bool)

GetBranchCodeOk returns a tuple with the BranchCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetails) GetCountry ¶ added in v1.10.3

func (o *SepaDetails) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*SepaDetails) GetCountryOk ¶ added in v1.10.3

func (o *SepaDetails) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetails) GetIban ¶ added in v1.10.3

func (o *SepaDetails) GetIban() string

GetIban returns the Iban field value if set, zero value otherwise.

func (*SepaDetails) GetIbanOk ¶ added in v1.10.3

func (o *SepaDetails) GetIbanOk() (*string, bool)

GetIbanOk returns a tuple with the Iban field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetails) GetType ¶ added in v1.10.3

func (o *SepaDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SepaDetails) GetTypeOk ¶ added in v1.10.3

func (o *SepaDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetails) HasBankCode ¶ added in v1.10.3

func (o *SepaDetails) HasBankCode() bool

HasBankCode returns a boolean if a field has been set.

func (*SepaDetails) HasBranchCode ¶ added in v1.10.3

func (o *SepaDetails) HasBranchCode() bool

HasBranchCode returns a boolean if a field has been set.

func (*SepaDetails) HasCountry ¶ added in v1.10.3

func (o *SepaDetails) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*SepaDetails) HasIban ¶ added in v1.10.3

func (o *SepaDetails) HasIban() bool

HasIban returns a boolean if a field has been set.

func (*SepaDetails) HasType ¶ added in v1.10.3

func (o *SepaDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (SepaDetails) MarshalJSON ¶ added in v1.10.3

func (o SepaDetails) MarshalJSON() ([]byte, error)

func (*SepaDetails) SetBankCode ¶ added in v1.10.3

func (o *SepaDetails) SetBankCode(v string)

SetBankCode gets a reference to the given string and assigns it to the BankCode field.

func (*SepaDetails) SetBranchCode ¶ added in v1.10.3

func (o *SepaDetails) SetBranchCode(v string)

SetBranchCode gets a reference to the given string and assigns it to the BranchCode field.

func (*SepaDetails) SetCountry ¶ added in v1.10.3

func (o *SepaDetails) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*SepaDetails) SetIban ¶ added in v1.10.3

func (o *SepaDetails) SetIban(v string)

SetIban gets a reference to the given string and assigns it to the Iban field.

func (*SepaDetails) SetType ¶ added in v1.10.3

func (o *SepaDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SepaDetails) ToMap ¶ added in v1.10.3

func (o SepaDetails) ToMap() (map[string]interface{}, error)

type SepaDetailsAllOf ¶ added in v1.10.3

type SepaDetailsAllOf struct {
	Type       *string `json:"type,omitempty"`
	Iban       *string `json:"iban,omitempty"`
	BankCode   *string `json:"bank_code,omitempty"`
	Country    *string `json:"country,omitempty"`
	BranchCode *string `json:"branch_code,omitempty"`
}

SepaDetailsAllOf struct for SepaDetailsAllOf

func NewSepaDetailsAllOf ¶ added in v1.10.3

func NewSepaDetailsAllOf() *SepaDetailsAllOf

NewSepaDetailsAllOf instantiates a new SepaDetailsAllOf 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 NewSepaDetailsAllOfWithDefaults ¶ added in v1.10.3

func NewSepaDetailsAllOfWithDefaults() *SepaDetailsAllOf

NewSepaDetailsAllOfWithDefaults instantiates a new SepaDetailsAllOf 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 (*SepaDetailsAllOf) GetBankCode ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetBankCode() string

GetBankCode returns the BankCode field value if set, zero value otherwise.

func (*SepaDetailsAllOf) GetBankCodeOk ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetBankCodeOk() (*string, bool)

GetBankCodeOk returns a tuple with the BankCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetailsAllOf) GetBranchCode ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetBranchCode() string

GetBranchCode returns the BranchCode field value if set, zero value otherwise.

func (*SepaDetailsAllOf) GetBranchCodeOk ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetBranchCodeOk() (*string, bool)

GetBranchCodeOk returns a tuple with the BranchCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetailsAllOf) GetCountry ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*SepaDetailsAllOf) GetCountryOk ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetailsAllOf) GetIban ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetIban() string

GetIban returns the Iban field value if set, zero value otherwise.

func (*SepaDetailsAllOf) GetIbanOk ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetIbanOk() (*string, bool)

GetIbanOk returns a tuple with the Iban field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetailsAllOf) GetType ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SepaDetailsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *SepaDetailsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaDetailsAllOf) HasBankCode ¶ added in v1.10.3

func (o *SepaDetailsAllOf) HasBankCode() bool

HasBankCode returns a boolean if a field has been set.

func (*SepaDetailsAllOf) HasBranchCode ¶ added in v1.10.3

func (o *SepaDetailsAllOf) HasBranchCode() bool

HasBranchCode returns a boolean if a field has been set.

func (*SepaDetailsAllOf) HasCountry ¶ added in v1.10.3

func (o *SepaDetailsAllOf) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*SepaDetailsAllOf) HasIban ¶ added in v1.10.3

func (o *SepaDetailsAllOf) HasIban() bool

HasIban returns a boolean if a field has been set.

func (*SepaDetailsAllOf) HasType ¶ added in v1.10.3

func (o *SepaDetailsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (SepaDetailsAllOf) MarshalJSON ¶ added in v1.10.3

func (o SepaDetailsAllOf) MarshalJSON() ([]byte, error)

func (*SepaDetailsAllOf) SetBankCode ¶ added in v1.10.3

func (o *SepaDetailsAllOf) SetBankCode(v string)

SetBankCode gets a reference to the given string and assigns it to the BankCode field.

func (*SepaDetailsAllOf) SetBranchCode ¶ added in v1.10.3

func (o *SepaDetailsAllOf) SetBranchCode(v string)

SetBranchCode gets a reference to the given string and assigns it to the BranchCode field.

func (*SepaDetailsAllOf) SetCountry ¶ added in v1.10.3

func (o *SepaDetailsAllOf) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*SepaDetailsAllOf) SetIban ¶ added in v1.10.3

func (o *SepaDetailsAllOf) SetIban(v string)

SetIban gets a reference to the given string and assigns it to the Iban field.

func (*SepaDetailsAllOf) SetType ¶ added in v1.10.3

func (o *SepaDetailsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type SepaPaymentMethod ¶

type SepaPaymentMethod struct {
	PaymentMethod
	Type *string `json:"type,omitempty"`
	Iban *string `json:"iban,omitempty"`
}

SepaPaymentMethod struct for SepaPaymentMethod

func NewSepaPaymentMethod ¶

func NewSepaPaymentMethod() *SepaPaymentMethod

NewSepaPaymentMethod instantiates a new SepaPaymentMethod 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 NewSepaPaymentMethodWithDefaults ¶

func NewSepaPaymentMethodWithDefaults() *SepaPaymentMethod

NewSepaPaymentMethodWithDefaults instantiates a new SepaPaymentMethod 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 (*SepaPaymentMethod) GetIban ¶

func (o *SepaPaymentMethod) GetIban() string

GetIban returns the Iban field value if set, zero value otherwise.

func (*SepaPaymentMethod) GetIbanOk ¶

func (o *SepaPaymentMethod) GetIbanOk() (*string, bool)

GetIbanOk returns a tuple with the Iban field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaPaymentMethod) GetType ¶

func (o *SepaPaymentMethod) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SepaPaymentMethod) GetTypeOk ¶

func (o *SepaPaymentMethod) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaPaymentMethod) HasIban ¶

func (o *SepaPaymentMethod) HasIban() bool

HasIban returns a boolean if a field has been set.

func (*SepaPaymentMethod) HasType ¶

func (o *SepaPaymentMethod) HasType() bool

HasType returns a boolean if a field has been set.

func (SepaPaymentMethod) MarshalJSON ¶

func (o SepaPaymentMethod) MarshalJSON() ([]byte, error)

func (*SepaPaymentMethod) SetIban ¶

func (o *SepaPaymentMethod) SetIban(v string)

SetIban gets a reference to the given string and assigns it to the Iban field.

func (*SepaPaymentMethod) SetType ¶

func (o *SepaPaymentMethod) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type SepaPaymentMethodAllOf ¶

type SepaPaymentMethodAllOf struct {
	Type *string `json:"type,omitempty"`
	Iban *string `json:"iban,omitempty"`
}

SepaPaymentMethodAllOf struct for SepaPaymentMethodAllOf

func NewSepaPaymentMethodAllOf ¶

func NewSepaPaymentMethodAllOf() *SepaPaymentMethodAllOf

NewSepaPaymentMethodAllOf instantiates a new SepaPaymentMethodAllOf 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 NewSepaPaymentMethodAllOfWithDefaults ¶

func NewSepaPaymentMethodAllOfWithDefaults() *SepaPaymentMethodAllOf

NewSepaPaymentMethodAllOfWithDefaults instantiates a new SepaPaymentMethodAllOf 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 (*SepaPaymentMethodAllOf) GetIban ¶

func (o *SepaPaymentMethodAllOf) GetIban() string

GetIban returns the Iban field value if set, zero value otherwise.

func (*SepaPaymentMethodAllOf) GetIbanOk ¶

func (o *SepaPaymentMethodAllOf) GetIbanOk() (*string, bool)

GetIbanOk returns a tuple with the Iban field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaPaymentMethodAllOf) GetType ¶

func (o *SepaPaymentMethodAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SepaPaymentMethodAllOf) GetTypeOk ¶

func (o *SepaPaymentMethodAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SepaPaymentMethodAllOf) HasIban ¶

func (o *SepaPaymentMethodAllOf) HasIban() bool

HasIban returns a boolean if a field has been set.

func (*SepaPaymentMethodAllOf) HasType ¶

func (o *SepaPaymentMethodAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (SepaPaymentMethodAllOf) MarshalJSON ¶

func (o SepaPaymentMethodAllOf) MarshalJSON() ([]byte, error)

func (*SepaPaymentMethodAllOf) SetIban ¶

func (o *SepaPaymentMethodAllOf) SetIban(v string)

SetIban gets a reference to the given string and assigns it to the Iban field.

func (*SepaPaymentMethodAllOf) SetType ¶

func (o *SepaPaymentMethodAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

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 Services ¶ added in v1.10.3

type Services struct {
	Logging   *bool             `json:"logging,omitempty"`
	Workflow  *bool             `json:"workflow,omitempty"`
	Nvidia    *bool             `json:"nvidia,omitempty"`
	Scheduler *bool             `json:"scheduler,omitempty"`
	Runtimes  *ServicesRuntimes `json:"runtimes,omitempty"`
}

Services struct for Services

func NewServices ¶ added in v1.10.3

func NewServices() *Services

NewServices instantiates a new Services 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 NewServicesWithDefaults ¶ added in v1.10.3

func NewServicesWithDefaults() *Services

NewServicesWithDefaults instantiates a new Services 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 (*Services) GetLogging ¶ added in v1.10.3

func (o *Services) GetLogging() bool

GetLogging returns the Logging field value if set, zero value otherwise.

func (*Services) GetLoggingOk ¶ added in v1.10.3

func (o *Services) GetLoggingOk() (*bool, bool)

GetLoggingOk returns a tuple with the Logging field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Services) GetNvidia ¶ added in v1.10.3

func (o *Services) GetNvidia() bool

GetNvidia returns the Nvidia field value if set, zero value otherwise.

func (*Services) GetNvidiaOk ¶ added in v1.10.3

func (o *Services) GetNvidiaOk() (*bool, bool)

GetNvidiaOk returns a tuple with the Nvidia field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Services) GetRuntimes ¶ added in v1.10.3

func (o *Services) GetRuntimes() ServicesRuntimes

GetRuntimes returns the Runtimes field value if set, zero value otherwise.

func (*Services) GetRuntimesOk ¶ added in v1.10.3

func (o *Services) GetRuntimesOk() (*ServicesRuntimes, bool)

GetRuntimesOk returns a tuple with the Runtimes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Services) GetScheduler ¶ added in v1.10.3

func (o *Services) GetScheduler() bool

GetScheduler returns the Scheduler field value if set, zero value otherwise.

func (*Services) GetSchedulerOk ¶ added in v1.10.3

func (o *Services) GetSchedulerOk() (*bool, bool)

GetSchedulerOk returns a tuple with the Scheduler field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Services) GetWorkflow ¶ added in v1.10.3

func (o *Services) GetWorkflow() bool

GetWorkflow returns the Workflow field value if set, zero value otherwise.

func (*Services) GetWorkflowOk ¶ added in v1.10.3

func (o *Services) GetWorkflowOk() (*bool, bool)

GetWorkflowOk returns a tuple with the Workflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Services) HasLogging ¶ added in v1.10.3

func (o *Services) HasLogging() bool

HasLogging returns a boolean if a field has been set.

func (*Services) HasNvidia ¶ added in v1.10.3

func (o *Services) HasNvidia() bool

HasNvidia returns a boolean if a field has been set.

func (*Services) HasRuntimes ¶ added in v1.10.3

func (o *Services) HasRuntimes() bool

HasRuntimes returns a boolean if a field has been set.

func (*Services) HasScheduler ¶ added in v1.10.3

func (o *Services) HasScheduler() bool

HasScheduler returns a boolean if a field has been set.

func (*Services) HasWorkflow ¶ added in v1.10.3

func (o *Services) HasWorkflow() bool

HasWorkflow returns a boolean if a field has been set.

func (Services) MarshalJSON ¶ added in v1.10.3

func (o Services) MarshalJSON() ([]byte, error)

func (*Services) SetLogging ¶ added in v1.10.3

func (o *Services) SetLogging(v bool)

SetLogging gets a reference to the given bool and assigns it to the Logging field.

func (*Services) SetNvidia ¶ added in v1.10.3

func (o *Services) SetNvidia(v bool)

SetNvidia gets a reference to the given bool and assigns it to the Nvidia field.

func (*Services) SetRuntimes ¶ added in v1.10.3

func (o *Services) SetRuntimes(v ServicesRuntimes)

SetRuntimes gets a reference to the given ServicesRuntimes and assigns it to the Runtimes field.

func (*Services) SetScheduler ¶ added in v1.10.3

func (o *Services) SetScheduler(v bool)

SetScheduler gets a reference to the given bool and assigns it to the Scheduler field.

func (*Services) SetWorkflow ¶ added in v1.10.3

func (o *Services) SetWorkflow(v bool)

SetWorkflow gets a reference to the given bool and assigns it to the Workflow field.

func (Services) ToMap ¶ added in v1.10.3

func (o Services) ToMap() (map[string]interface{}, error)

type ServicesRuntimes ¶ added in v1.10.3

type ServicesRuntimes struct {
	Spark      *bool                  `json:"spark,omitempty"`
	Mxnet      *bool                  `json:"mxnet,omitempty"`
	Tensorflow *bool                  `json:"tensorflow,omitempty"`
	Xgboost    *bool                  `json:"xgboost,omitempty"`
	Mpi        map[string]interface{} `json:"mpi,omitempty"`
	Pytorch    map[string]interface{} `json:"pytorch,omitempty"`
}

ServicesRuntimes struct for ServicesRuntimes

func NewServicesRuntimes ¶ added in v1.10.3

func NewServicesRuntimes() *ServicesRuntimes

NewServicesRuntimes instantiates a new ServicesRuntimes 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 NewServicesRuntimesWithDefaults ¶ added in v1.10.3

func NewServicesRuntimesWithDefaults() *ServicesRuntimes

NewServicesRuntimesWithDefaults instantiates a new ServicesRuntimes 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 (*ServicesRuntimes) GetMpi ¶ added in v1.10.3

func (o *ServicesRuntimes) GetMpi() map[string]interface{}

GetMpi returns the Mpi field value if set, zero value otherwise.

func (*ServicesRuntimes) GetMpiOk ¶ added in v1.10.3

func (o *ServicesRuntimes) GetMpiOk() (map[string]interface{}, bool)

GetMpiOk returns a tuple with the Mpi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesRuntimes) GetMxnet ¶ added in v1.10.3

func (o *ServicesRuntimes) GetMxnet() bool

GetMxnet returns the Mxnet field value if set, zero value otherwise.

func (*ServicesRuntimes) GetMxnetOk ¶ added in v1.10.3

func (o *ServicesRuntimes) GetMxnetOk() (*bool, bool)

GetMxnetOk returns a tuple with the Mxnet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesRuntimes) GetPytorch ¶ added in v1.10.3

func (o *ServicesRuntimes) GetPytorch() map[string]interface{}

GetPytorch returns the Pytorch field value if set, zero value otherwise.

func (*ServicesRuntimes) GetPytorchOk ¶ added in v1.10.3

func (o *ServicesRuntimes) GetPytorchOk() (map[string]interface{}, bool)

GetPytorchOk returns a tuple with the Pytorch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesRuntimes) GetSpark ¶ added in v1.10.3

func (o *ServicesRuntimes) GetSpark() bool

GetSpark returns the Spark field value if set, zero value otherwise.

func (*ServicesRuntimes) GetSparkOk ¶ added in v1.10.3

func (o *ServicesRuntimes) GetSparkOk() (*bool, bool)

GetSparkOk returns a tuple with the Spark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesRuntimes) GetTensorflow ¶ added in v1.10.3

func (o *ServicesRuntimes) GetTensorflow() bool

GetTensorflow returns the Tensorflow field value if set, zero value otherwise.

func (*ServicesRuntimes) GetTensorflowOk ¶ added in v1.10.3

func (o *ServicesRuntimes) GetTensorflowOk() (*bool, bool)

GetTensorflowOk returns a tuple with the Tensorflow field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesRuntimes) GetXgboost ¶ added in v1.10.3

func (o *ServicesRuntimes) GetXgboost() bool

GetXgboost returns the Xgboost field value if set, zero value otherwise.

func (*ServicesRuntimes) GetXgboostOk ¶ added in v1.10.3

func (o *ServicesRuntimes) GetXgboostOk() (*bool, bool)

GetXgboostOk returns a tuple with the Xgboost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServicesRuntimes) HasMpi ¶ added in v1.10.3

func (o *ServicesRuntimes) HasMpi() bool

HasMpi returns a boolean if a field has been set.

func (*ServicesRuntimes) HasMxnet ¶ added in v1.10.3

func (o *ServicesRuntimes) HasMxnet() bool

HasMxnet returns a boolean if a field has been set.

func (*ServicesRuntimes) HasPytorch ¶ added in v1.10.3

func (o *ServicesRuntimes) HasPytorch() bool

HasPytorch returns a boolean if a field has been set.

func (*ServicesRuntimes) HasSpark ¶ added in v1.10.3

func (o *ServicesRuntimes) HasSpark() bool

HasSpark returns a boolean if a field has been set.

func (*ServicesRuntimes) HasTensorflow ¶ added in v1.10.3

func (o *ServicesRuntimes) HasTensorflow() bool

HasTensorflow returns a boolean if a field has been set.

func (*ServicesRuntimes) HasXgboost ¶ added in v1.10.3

func (o *ServicesRuntimes) HasXgboost() bool

HasXgboost returns a boolean if a field has been set.

func (ServicesRuntimes) MarshalJSON ¶ added in v1.10.3

func (o ServicesRuntimes) MarshalJSON() ([]byte, error)

func (*ServicesRuntimes) SetMpi ¶ added in v1.10.3

func (o *ServicesRuntimes) SetMpi(v map[string]interface{})

SetMpi gets a reference to the given map[string]interface{} and assigns it to the Mpi field.

func (*ServicesRuntimes) SetMxnet ¶ added in v1.10.3

func (o *ServicesRuntimes) SetMxnet(v bool)

SetMxnet gets a reference to the given bool and assigns it to the Mxnet field.

func (*ServicesRuntimes) SetPytorch ¶ added in v1.10.3

func (o *ServicesRuntimes) SetPytorch(v map[string]interface{})

SetPytorch gets a reference to the given map[string]interface{} and assigns it to the Pytorch field.

func (*ServicesRuntimes) SetSpark ¶ added in v1.10.3

func (o *ServicesRuntimes) SetSpark(v bool)

SetSpark gets a reference to the given bool and assigns it to the Spark field.

func (*ServicesRuntimes) SetTensorflow ¶ added in v1.10.3

func (o *ServicesRuntimes) SetTensorflow(v bool)

SetTensorflow gets a reference to the given bool and assigns it to the Tensorflow field.

func (*ServicesRuntimes) SetXgboost ¶ added in v1.10.3

func (o *ServicesRuntimes) SetXgboost(v bool)

SetXgboost gets a reference to the given bool and assigns it to the Xgboost field.

func (ServicesRuntimes) ToMap ¶ added in v1.10.3

func (o ServicesRuntimes) ToMap() (map[string]interface{}, error)

type Session ¶ added in v1.10.3

type Session struct {
	TenantId     string    `json:"tenant_id"`
	Address      *string   `json:"address,omitempty"`
	WorkspaceId  string    `json:"workspace_id"`
	Id           string    `json:"id"`
	LastTimeUsed time.Time `json:"last_time_used"`
	NotebookId   *string   `json:"notebook_id,omitempty"`
}

Session Object that allows you to conserve an instance of a session.

func NewSession ¶ added in v1.10.3

func NewSession(tenantId string, workspaceId string, id string, lastTimeUsed time.Time) *Session

NewSession instantiates a new Session 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 NewSessionWithDefaults ¶ added in v1.10.3

func NewSessionWithDefaults() *Session

NewSessionWithDefaults instantiates a new Session 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 (*Session) GetAddress ¶ added in v1.10.3

func (o *Session) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*Session) GetAddressOk ¶ added in v1.10.3

func (o *Session) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetId ¶ added in v1.10.3

func (o *Session) GetId() string

GetId returns the Id field value

func (*Session) GetIdOk ¶ added in v1.10.3

func (o *Session) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Session) GetLastTimeUsed ¶ added in v1.10.3

func (o *Session) GetLastTimeUsed() time.Time

GetLastTimeUsed returns the LastTimeUsed field value

func (*Session) GetLastTimeUsedOk ¶ added in v1.10.3

func (o *Session) GetLastTimeUsedOk() (*time.Time, bool)

GetLastTimeUsedOk returns a tuple with the LastTimeUsed field value and a boolean to check if the value has been set.

func (*Session) GetNotebookId ¶ added in v1.10.3

func (o *Session) GetNotebookId() string

GetNotebookId returns the NotebookId field value if set, zero value otherwise.

func (*Session) GetNotebookIdOk ¶ added in v1.10.3

func (o *Session) GetNotebookIdOk() (*string, bool)

GetNotebookIdOk returns a tuple with the NotebookId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Session) GetTenantId ¶ added in v1.10.3

func (o *Session) GetTenantId() string

GetTenantId returns the TenantId field value

func (*Session) GetTenantIdOk ¶ added in v1.10.3

func (o *Session) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value and a boolean to check if the value has been set.

func (*Session) GetWorkspaceId ¶ added in v1.10.3

func (o *Session) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*Session) GetWorkspaceIdOk ¶ added in v1.10.3

func (o *Session) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*Session) HasAddress ¶ added in v1.10.3

func (o *Session) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*Session) HasNotebookId ¶ added in v1.10.3

func (o *Session) HasNotebookId() bool

HasNotebookId returns a boolean if a field has been set.

func (Session) MarshalJSON ¶ added in v1.10.3

func (o Session) MarshalJSON() ([]byte, error)

func (*Session) SetAddress ¶ added in v1.10.3

func (o *Session) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*Session) SetId ¶ added in v1.10.3

func (o *Session) SetId(v string)

SetId sets field value

func (*Session) SetLastTimeUsed ¶ added in v1.10.3

func (o *Session) SetLastTimeUsed(v time.Time)

SetLastTimeUsed sets field value

func (*Session) SetNotebookId ¶ added in v1.10.3

func (o *Session) SetNotebookId(v string)

SetNotebookId gets a reference to the given string and assigns it to the NotebookId field.

func (*Session) SetTenantId ¶ added in v1.10.3

func (o *Session) SetTenantId(v string)

SetTenantId sets field value

func (*Session) SetWorkspaceId ¶ added in v1.10.3

func (o *Session) SetWorkspaceId(v string)

SetWorkspaceId sets field value

func (Session) ToMap ¶ added in v1.10.3

func (o Session) ToMap() (map[string]interface{}, error)

func (*Session) UnmarshalJSON ¶ added in v1.10.3

func (o *Session) UnmarshalJSON(bytes []byte) (err error)

type SessionsAPIService ¶ added in v1.10.3

type SessionsAPIService service

SessionsAPIService SessionsAPI service

func (*SessionsAPIService) CreateSession ¶ added in v1.10.3

CreateSession Create a new workspace and corresponding session

Generates a session from live-coding information.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateSessionRequest

func (*SessionsAPIService) CreateSessionExecute ¶ added in v1.10.3

func (a *SessionsAPIService) CreateSessionExecute(r ApiCreateSessionRequest) (interface{}, *http.Response, error)

Execute executes the request

@return interface{}

func (*SessionsAPIService) DeleteSession ¶ added in v1.10.3

func (a *SessionsAPIService) DeleteSession(ctx context.Context, sessionId string) ApiDeleteSessionRequest

DeleteSession Delete a session

Delete a Session from a Zeppelin environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId
@return ApiDeleteSessionRequest

func (*SessionsAPIService) DeleteSessionExecute ¶ added in v1.10.3

func (a *SessionsAPIService) DeleteSessionExecute(r ApiDeleteSessionRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*SessionsAPIService) GetSession ¶ added in v1.10.3

func (a *SessionsAPIService) GetSession(ctx context.Context, sessionId string) ApiGetSessionRequest

GetSession Get a workspace

Get a Workspace from Graal environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId
@return ApiGetSessionRequest

func (*SessionsAPIService) GetSessionExecute ¶ added in v1.10.3

func (a *SessionsAPIService) GetSessionExecute(r ApiGetSessionRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*SessionsAPIService) GetSessions ¶ added in v1.10.3

GetSessions Get existing Sessions, used for live-coding.

Returns a list of session id that you can filter depending on their status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSessionsRequest

func (*SessionsAPIService) GetSessionsExecute ¶ added in v1.10.3

func (a *SessionsAPIService) GetSessionsExecute(r ApiGetSessionsRequest) ([]Session, *http.Response, error)

Execute executes the request

@return []Session

func (*SessionsAPIService) RunSession ¶ added in v1.10.3

func (a *SessionsAPIService) RunSession(ctx context.Context, sessionId string) ApiRunSessionRequest

RunSession Run a session

Run a Session in a Zeppelin environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId
@return ApiRunSessionRequest

func (*SessionsAPIService) RunSessionExecute ¶ added in v1.10.3

func (a *SessionsAPIService) RunSessionExecute(r ApiRunSessionRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*SessionsAPIService) UpdateSession ¶ added in v1.10.3

func (a *SessionsAPIService) UpdateSession(ctx context.Context, sessionId string) ApiUpdateSessionRequest

UpdateSession Update a session

Update a Session from a Zeppelin environment.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param sessionId
@return ApiUpdateSessionRequest

func (*SessionsAPIService) UpdateSessionExecute ¶ added in v1.10.3

func (a *SessionsAPIService) UpdateSessionExecute(r ApiUpdateSessionRequest) (string, *http.Response, error)

Execute executes the request

@return string

type SnowflakeOptions ¶ added in v1.10.3

type SnowflakeOptions struct {
	DataWarehouseOptions
	Host     *string  `json:"host,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Database *string  `json:"database,omitempty"`
	Schema   *string  `json:"schema,omitempty"`
	Type     *string  `json:"type,omitempty"`
}

SnowflakeOptions struct for SnowflakeOptions

func NewSnowflakeOptions ¶ added in v1.10.3

func NewSnowflakeOptions() *SnowflakeOptions

NewSnowflakeOptions instantiates a new SnowflakeOptions 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 NewSnowflakeOptionsWithDefaults ¶ added in v1.10.3

func NewSnowflakeOptionsWithDefaults() *SnowflakeOptions

NewSnowflakeOptionsWithDefaults instantiates a new SnowflakeOptions 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 (*SnowflakeOptions) GetDatabase ¶ added in v1.10.3

func (o *SnowflakeOptions) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*SnowflakeOptions) GetDatabaseOk ¶ added in v1.10.3

func (o *SnowflakeOptions) GetDatabaseOk() (*string, bool)

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeOptions) GetHost ¶ added in v1.10.3

func (o *SnowflakeOptions) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*SnowflakeOptions) GetHostOk ¶ added in v1.10.3

func (o *SnowflakeOptions) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeOptions) GetPort ¶ added in v1.10.3

func (o *SnowflakeOptions) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*SnowflakeOptions) GetPortOk ¶ added in v1.10.3

func (o *SnowflakeOptions) GetPortOk() (*float32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeOptions) GetSchema ¶ added in v1.10.3

func (o *SnowflakeOptions) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*SnowflakeOptions) GetSchemaOk ¶ added in v1.10.3

func (o *SnowflakeOptions) 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 (*SnowflakeOptions) GetType ¶ added in v1.10.3

func (o *SnowflakeOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SnowflakeOptions) GetTypeOk ¶ added in v1.10.3

func (o *SnowflakeOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeOptions) HasDatabase ¶ added in v1.10.3

func (o *SnowflakeOptions) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*SnowflakeOptions) HasHost ¶ added in v1.10.3

func (o *SnowflakeOptions) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*SnowflakeOptions) HasPort ¶ added in v1.10.3

func (o *SnowflakeOptions) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*SnowflakeOptions) HasSchema ¶ added in v1.10.3

func (o *SnowflakeOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*SnowflakeOptions) HasType ¶ added in v1.10.3

func (o *SnowflakeOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (SnowflakeOptions) MarshalJSON ¶ added in v1.10.3

func (o SnowflakeOptions) MarshalJSON() ([]byte, error)

func (*SnowflakeOptions) SetDatabase ¶ added in v1.10.3

func (o *SnowflakeOptions) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*SnowflakeOptions) SetHost ¶ added in v1.10.3

func (o *SnowflakeOptions) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*SnowflakeOptions) SetPort ¶ added in v1.10.3

func (o *SnowflakeOptions) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

func (*SnowflakeOptions) SetSchema ¶ added in v1.10.3

func (o *SnowflakeOptions) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*SnowflakeOptions) SetType ¶ added in v1.10.3

func (o *SnowflakeOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SnowflakeOptions) ToMap ¶ added in v1.10.3

func (o SnowflakeOptions) ToMap() (map[string]interface{}, error)

type SnowflakeOptionsAllOf ¶ added in v1.10.3

type SnowflakeOptionsAllOf struct {
	Type *string `json:"type,omitempty"`
}

SnowflakeOptionsAllOf struct for SnowflakeOptionsAllOf

func NewSnowflakeOptionsAllOf ¶ added in v1.10.3

func NewSnowflakeOptionsAllOf() *SnowflakeOptionsAllOf

NewSnowflakeOptionsAllOf instantiates a new SnowflakeOptionsAllOf 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 NewSnowflakeOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewSnowflakeOptionsAllOfWithDefaults() *SnowflakeOptionsAllOf

NewSnowflakeOptionsAllOfWithDefaults instantiates a new SnowflakeOptionsAllOf 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 (*SnowflakeOptionsAllOf) GetType ¶ added in v1.10.3

func (o *SnowflakeOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SnowflakeOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *SnowflakeOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SnowflakeOptionsAllOf) HasType ¶ added in v1.10.3

func (o *SnowflakeOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (SnowflakeOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o SnowflakeOptionsAllOf) MarshalJSON() ([]byte, error)

func (*SnowflakeOptionsAllOf) SetType ¶ added in v1.10.3

func (o *SnowflakeOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type SparkOptions ¶

type SparkOptions struct {
	Options
	Type                 *string                           `json:"type,omitempty"`
	Libraries            []string                          `json:"libraries,omitempty"`
	Conf                 map[string]map[string]interface{} `json:"conf,omitempty"`
	MainLibrary          *Library                          `json:"main_library,omitempty"`
	PyFiles              []Library                         `json:"py_files,omitempty"`
	MainClassName        *string                           `json:"main_class_name,omitempty"`
	Loggers              []string                          `json:"loggers,omitempty"`
	ExecutorInstanceType *string                           `json:"executor_instance_type,omitempty"`
	DriverInstanceType   *string                           `json:"driver_instance_type,omitempty"`
	NumberExecutors      *float32                          `json:"number_executors,omitempty"`
}

SparkOptions struct for SparkOptions

func NewSparkOptions ¶

func NewSparkOptions() *SparkOptions

NewSparkOptions instantiates a new SparkOptions 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 NewSparkOptionsWithDefaults ¶

func NewSparkOptionsWithDefaults() *SparkOptions

NewSparkOptionsWithDefaults instantiates a new SparkOptions 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 (*SparkOptions) GetConf ¶

func (o *SparkOptions) GetConf() map[string]map[string]interface{}

GetConf returns the Conf field value if set, zero value otherwise.

func (*SparkOptions) GetConfOk ¶

func (o *SparkOptions) GetConfOk() (map[string]map[string]interface{}, bool)

GetConfOk returns a tuple with the Conf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetDriverInstanceType ¶

func (o *SparkOptions) GetDriverInstanceType() string

GetDriverInstanceType returns the DriverInstanceType field value if set, zero value otherwise.

func (*SparkOptions) GetDriverInstanceTypeOk ¶

func (o *SparkOptions) GetDriverInstanceTypeOk() (*string, bool)

GetDriverInstanceTypeOk returns a tuple with the DriverInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetExecutorInstanceType ¶

func (o *SparkOptions) GetExecutorInstanceType() string

GetExecutorInstanceType returns the ExecutorInstanceType field value if set, zero value otherwise.

func (*SparkOptions) GetExecutorInstanceTypeOk ¶

func (o *SparkOptions) GetExecutorInstanceTypeOk() (*string, bool)

GetExecutorInstanceTypeOk returns a tuple with the ExecutorInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetLibraries ¶

func (o *SparkOptions) GetLibraries() []string

GetLibraries returns the Libraries field value if set, zero value otherwise.

func (*SparkOptions) GetLibrariesOk ¶

func (o *SparkOptions) GetLibrariesOk() ([]string, bool)

GetLibrariesOk returns a tuple with the Libraries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetLoggers ¶

func (o *SparkOptions) GetLoggers() []string

GetLoggers returns the Loggers field value if set, zero value otherwise.

func (*SparkOptions) GetLoggersOk ¶

func (o *SparkOptions) GetLoggersOk() ([]string, bool)

GetLoggersOk returns a tuple with the Loggers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetMainClassName ¶

func (o *SparkOptions) GetMainClassName() string

GetMainClassName returns the MainClassName field value if set, zero value otherwise.

func (*SparkOptions) GetMainClassNameOk ¶

func (o *SparkOptions) GetMainClassNameOk() (*string, bool)

GetMainClassNameOk returns a tuple with the MainClassName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetMainLibrary ¶

func (o *SparkOptions) GetMainLibrary() Library

GetMainLibrary returns the MainLibrary field value if set, zero value otherwise.

func (*SparkOptions) GetMainLibraryOk ¶

func (o *SparkOptions) GetMainLibraryOk() (*Library, bool)

GetMainLibraryOk returns a tuple with the MainLibrary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetNumberExecutors ¶

func (o *SparkOptions) GetNumberExecutors() float32

GetNumberExecutors returns the NumberExecutors field value if set, zero value otherwise.

func (*SparkOptions) GetNumberExecutorsOk ¶

func (o *SparkOptions) GetNumberExecutorsOk() (*float32, bool)

GetNumberExecutorsOk returns a tuple with the NumberExecutors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetPyFiles ¶

func (o *SparkOptions) GetPyFiles() []Library

GetPyFiles returns the PyFiles field value if set, zero value otherwise.

func (*SparkOptions) GetPyFilesOk ¶

func (o *SparkOptions) GetPyFilesOk() ([]Library, bool)

GetPyFilesOk returns a tuple with the PyFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) GetType ¶

func (o *SparkOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SparkOptions) GetTypeOk ¶

func (o *SparkOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptions) HasConf ¶

func (o *SparkOptions) HasConf() bool

HasConf returns a boolean if a field has been set.

func (*SparkOptions) HasDriverInstanceType ¶

func (o *SparkOptions) HasDriverInstanceType() bool

HasDriverInstanceType returns a boolean if a field has been set.

func (*SparkOptions) HasExecutorInstanceType ¶

func (o *SparkOptions) HasExecutorInstanceType() bool

HasExecutorInstanceType returns a boolean if a field has been set.

func (*SparkOptions) HasLibraries ¶

func (o *SparkOptions) HasLibraries() bool

HasLibraries returns a boolean if a field has been set.

func (*SparkOptions) HasLoggers ¶

func (o *SparkOptions) HasLoggers() bool

HasLoggers returns a boolean if a field has been set.

func (*SparkOptions) HasMainClassName ¶

func (o *SparkOptions) HasMainClassName() bool

HasMainClassName returns a boolean if a field has been set.

func (*SparkOptions) HasMainLibrary ¶

func (o *SparkOptions) HasMainLibrary() bool

HasMainLibrary returns a boolean if a field has been set.

func (*SparkOptions) HasNumberExecutors ¶

func (o *SparkOptions) HasNumberExecutors() bool

HasNumberExecutors returns a boolean if a field has been set.

func (*SparkOptions) HasPyFiles ¶

func (o *SparkOptions) HasPyFiles() bool

HasPyFiles returns a boolean if a field has been set.

func (*SparkOptions) HasType ¶

func (o *SparkOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (SparkOptions) MarshalJSON ¶

func (o SparkOptions) MarshalJSON() ([]byte, error)

func (*SparkOptions) SetConf ¶

func (o *SparkOptions) SetConf(v map[string]map[string]interface{})

SetConf gets a reference to the given map[string]map[string]interface{} and assigns it to the Conf field.

func (*SparkOptions) SetDriverInstanceType ¶

func (o *SparkOptions) SetDriverInstanceType(v string)

SetDriverInstanceType gets a reference to the given string and assigns it to the DriverInstanceType field.

func (*SparkOptions) SetExecutorInstanceType ¶

func (o *SparkOptions) SetExecutorInstanceType(v string)

SetExecutorInstanceType gets a reference to the given string and assigns it to the ExecutorInstanceType field.

func (*SparkOptions) SetLibraries ¶

func (o *SparkOptions) SetLibraries(v []string)

SetLibraries gets a reference to the given []string and assigns it to the Libraries field.

func (*SparkOptions) SetLoggers ¶

func (o *SparkOptions) SetLoggers(v []string)

SetLoggers gets a reference to the given []string and assigns it to the Loggers field.

func (*SparkOptions) SetMainClassName ¶

func (o *SparkOptions) SetMainClassName(v string)

SetMainClassName gets a reference to the given string and assigns it to the MainClassName field.

func (*SparkOptions) SetMainLibrary ¶

func (o *SparkOptions) SetMainLibrary(v Library)

SetMainLibrary gets a reference to the given Library and assigns it to the MainLibrary field.

func (*SparkOptions) SetNumberExecutors ¶

func (o *SparkOptions) SetNumberExecutors(v float32)

SetNumberExecutors gets a reference to the given float32 and assigns it to the NumberExecutors field.

func (*SparkOptions) SetPyFiles ¶

func (o *SparkOptions) SetPyFiles(v []Library)

SetPyFiles gets a reference to the given []Library and assigns it to the PyFiles field.

func (*SparkOptions) SetType ¶

func (o *SparkOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SparkOptions) ToMap ¶ added in v1.10.3

func (o SparkOptions) ToMap() (map[string]interface{}, error)

type SparkOptionsAllOf ¶

type SparkOptionsAllOf struct {
	Type                 *string                            `json:"type,omitempty"`
	Libraries            *[]string                          `json:"libraries,omitempty"`
	Conf                 *map[string]map[string]interface{} `json:"conf,omitempty"`
	MainLibrary          *Library                           `json:"main_library,omitempty"`
	PyFiles              *[]Library                         `json:"py_files,omitempty"`
	MainClassName        *string                            `json:"main_class_name,omitempty"`
	Loggers              *[]string                          `json:"loggers,omitempty"`
	ExecutorInstanceType *string                            `json:"executor_instance_type,omitempty"`
	DriverInstanceType   *string                            `json:"driver_instance_type,omitempty"`
	NumberExecutors      *float32                           `json:"number_executors,omitempty"`
}

SparkOptionsAllOf struct for SparkOptionsAllOf

func NewSparkOptionsAllOf ¶

func NewSparkOptionsAllOf() *SparkOptionsAllOf

NewSparkOptionsAllOf instantiates a new SparkOptionsAllOf 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 NewSparkOptionsAllOfWithDefaults ¶

func NewSparkOptionsAllOfWithDefaults() *SparkOptionsAllOf

NewSparkOptionsAllOfWithDefaults instantiates a new SparkOptionsAllOf 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 (*SparkOptionsAllOf) GetConf ¶

func (o *SparkOptionsAllOf) GetConf() map[string]map[string]interface{}

GetConf returns the Conf field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetConfOk ¶

func (o *SparkOptionsAllOf) GetConfOk() (*map[string]map[string]interface{}, bool)

GetConfOk returns a tuple with the Conf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetDriverInstanceType ¶

func (o *SparkOptionsAllOf) GetDriverInstanceType() string

GetDriverInstanceType returns the DriverInstanceType field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetDriverInstanceTypeOk ¶

func (o *SparkOptionsAllOf) GetDriverInstanceTypeOk() (*string, bool)

GetDriverInstanceTypeOk returns a tuple with the DriverInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetExecutorInstanceType ¶

func (o *SparkOptionsAllOf) GetExecutorInstanceType() string

GetExecutorInstanceType returns the ExecutorInstanceType field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetExecutorInstanceTypeOk ¶

func (o *SparkOptionsAllOf) GetExecutorInstanceTypeOk() (*string, bool)

GetExecutorInstanceTypeOk returns a tuple with the ExecutorInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetLibraries ¶

func (o *SparkOptionsAllOf) GetLibraries() []string

GetLibraries returns the Libraries field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetLibrariesOk ¶

func (o *SparkOptionsAllOf) GetLibrariesOk() (*[]string, bool)

GetLibrariesOk returns a tuple with the Libraries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetLoggers ¶

func (o *SparkOptionsAllOf) GetLoggers() []string

GetLoggers returns the Loggers field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetLoggersOk ¶

func (o *SparkOptionsAllOf) GetLoggersOk() (*[]string, bool)

GetLoggersOk returns a tuple with the Loggers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetMainClassName ¶

func (o *SparkOptionsAllOf) GetMainClassName() string

GetMainClassName returns the MainClassName field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetMainClassNameOk ¶

func (o *SparkOptionsAllOf) GetMainClassNameOk() (*string, bool)

GetMainClassNameOk returns a tuple with the MainClassName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetMainLibrary ¶

func (o *SparkOptionsAllOf) GetMainLibrary() Library

GetMainLibrary returns the MainLibrary field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetMainLibraryOk ¶

func (o *SparkOptionsAllOf) GetMainLibraryOk() (*Library, bool)

GetMainLibraryOk returns a tuple with the MainLibrary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetNumberExecutors ¶

func (o *SparkOptionsAllOf) GetNumberExecutors() float32

GetNumberExecutors returns the NumberExecutors field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetNumberExecutorsOk ¶

func (o *SparkOptionsAllOf) GetNumberExecutorsOk() (*float32, bool)

GetNumberExecutorsOk returns a tuple with the NumberExecutors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetPyFiles ¶

func (o *SparkOptionsAllOf) GetPyFiles() []Library

GetPyFiles returns the PyFiles field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetPyFilesOk ¶

func (o *SparkOptionsAllOf) GetPyFilesOk() (*[]Library, bool)

GetPyFilesOk returns a tuple with the PyFiles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) GetType ¶

func (o *SparkOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SparkOptionsAllOf) GetTypeOk ¶

func (o *SparkOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SparkOptionsAllOf) HasConf ¶

func (o *SparkOptionsAllOf) HasConf() bool

HasConf returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasDriverInstanceType ¶

func (o *SparkOptionsAllOf) HasDriverInstanceType() bool

HasDriverInstanceType returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasExecutorInstanceType ¶

func (o *SparkOptionsAllOf) HasExecutorInstanceType() bool

HasExecutorInstanceType returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasLibraries ¶

func (o *SparkOptionsAllOf) HasLibraries() bool

HasLibraries returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasLoggers ¶

func (o *SparkOptionsAllOf) HasLoggers() bool

HasLoggers returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasMainClassName ¶

func (o *SparkOptionsAllOf) HasMainClassName() bool

HasMainClassName returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasMainLibrary ¶

func (o *SparkOptionsAllOf) HasMainLibrary() bool

HasMainLibrary returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasNumberExecutors ¶

func (o *SparkOptionsAllOf) HasNumberExecutors() bool

HasNumberExecutors returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasPyFiles ¶

func (o *SparkOptionsAllOf) HasPyFiles() bool

HasPyFiles returns a boolean if a field has been set.

func (*SparkOptionsAllOf) HasType ¶

func (o *SparkOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (SparkOptionsAllOf) MarshalJSON ¶

func (o SparkOptionsAllOf) MarshalJSON() ([]byte, error)

func (*SparkOptionsAllOf) SetConf ¶

func (o *SparkOptionsAllOf) SetConf(v map[string]map[string]interface{})

SetConf gets a reference to the given map[string]map[string]interface{} and assigns it to the Conf field.

func (*SparkOptionsAllOf) SetDriverInstanceType ¶

func (o *SparkOptionsAllOf) SetDriverInstanceType(v string)

SetDriverInstanceType gets a reference to the given string and assigns it to the DriverInstanceType field.

func (*SparkOptionsAllOf) SetExecutorInstanceType ¶

func (o *SparkOptionsAllOf) SetExecutorInstanceType(v string)

SetExecutorInstanceType gets a reference to the given string and assigns it to the ExecutorInstanceType field.

func (*SparkOptionsAllOf) SetLibraries ¶

func (o *SparkOptionsAllOf) SetLibraries(v []string)

SetLibraries gets a reference to the given []string and assigns it to the Libraries field.

func (*SparkOptionsAllOf) SetLoggers ¶

func (o *SparkOptionsAllOf) SetLoggers(v []string)

SetLoggers gets a reference to the given []string and assigns it to the Loggers field.

func (*SparkOptionsAllOf) SetMainClassName ¶

func (o *SparkOptionsAllOf) SetMainClassName(v string)

SetMainClassName gets a reference to the given string and assigns it to the MainClassName field.

func (*SparkOptionsAllOf) SetMainLibrary ¶

func (o *SparkOptionsAllOf) SetMainLibrary(v Library)

SetMainLibrary gets a reference to the given Library and assigns it to the MainLibrary field.

func (*SparkOptionsAllOf) SetNumberExecutors ¶

func (o *SparkOptionsAllOf) SetNumberExecutors(v float32)

SetNumberExecutors gets a reference to the given float32 and assigns it to the NumberExecutors field.

func (*SparkOptionsAllOf) SetPyFiles ¶

func (o *SparkOptionsAllOf) SetPyFiles(v []Library)

SetPyFiles gets a reference to the given []Library and assigns it to the PyFiles field.

func (*SparkOptionsAllOf) SetType ¶

func (o *SparkOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type StarburstOptions ¶ added in v1.10.3

type StarburstOptions struct {
	DataWarehouseOptions
	Env                  *map[string]string                `json:"env,omitempty"`
	InstanceType         *string                           `json:"instance_type,omitempty"`
	Type                 *string                           `json:"type,omitempty"`
	Licence              *string                           `json:"licence,omitempty"`
	NumberWorkers        *float32                          `json:"number_workers,omitempty"`
	DatabaseInstanceType *string                           `json:"database_instance_type,omitempty"`
	DatabaseType         *string                           `json:"database_type,omitempty"`
	Conf                 map[string]map[string]interface{} `json:"conf,omitempty"`
}

StarburstOptions struct for StarburstOptions

func NewStarburstOptions ¶ added in v1.10.3

func NewStarburstOptions() *StarburstOptions

NewStarburstOptions instantiates a new StarburstOptions 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 NewStarburstOptionsWithDefaults ¶ added in v1.10.3

func NewStarburstOptionsWithDefaults() *StarburstOptions

NewStarburstOptionsWithDefaults instantiates a new StarburstOptions 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 (*StarburstOptions) GetConf ¶ added in v1.10.3

func (o *StarburstOptions) GetConf() map[string]map[string]interface{}

GetConf returns the Conf field value if set, zero value otherwise.

func (*StarburstOptions) GetConfOk ¶ added in v1.10.3

func (o *StarburstOptions) GetConfOk() (map[string]map[string]interface{}, bool)

GetConfOk returns a tuple with the Conf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptions) GetDatabaseInstanceType ¶ added in v1.10.3

func (o *StarburstOptions) GetDatabaseInstanceType() string

GetDatabaseInstanceType returns the DatabaseInstanceType field value if set, zero value otherwise.

func (*StarburstOptions) GetDatabaseInstanceTypeOk ¶ added in v1.10.3

func (o *StarburstOptions) GetDatabaseInstanceTypeOk() (*string, bool)

GetDatabaseInstanceTypeOk returns a tuple with the DatabaseInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptions) GetDatabaseType ¶ added in v1.10.3

func (o *StarburstOptions) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise.

func (*StarburstOptions) GetDatabaseTypeOk ¶ added in v1.10.3

func (o *StarburstOptions) GetDatabaseTypeOk() (*string, bool)

GetDatabaseTypeOk returns a tuple with the DatabaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptions) GetEnv ¶ added in v1.10.3

func (o *StarburstOptions) GetEnv() map[string]string

GetEnv returns the Env field value if set, zero value otherwise.

func (*StarburstOptions) GetEnvOk ¶ added in v1.10.3

func (o *StarburstOptions) GetEnvOk() (*map[string]string, 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 (*StarburstOptions) GetInstanceType ¶ added in v1.10.3

func (o *StarburstOptions) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*StarburstOptions) GetInstanceTypeOk ¶ added in v1.10.3

func (o *StarburstOptions) GetInstanceTypeOk() (*string, bool)

GetInstanceTypeOk returns a tuple with the InstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptions) GetLicence ¶ added in v1.10.3

func (o *StarburstOptions) GetLicence() string

GetLicence returns the Licence field value if set, zero value otherwise.

func (*StarburstOptions) GetLicenceOk ¶ added in v1.10.3

func (o *StarburstOptions) GetLicenceOk() (*string, bool)

GetLicenceOk returns a tuple with the Licence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptions) GetNumberWorkers ¶ added in v1.10.3

func (o *StarburstOptions) GetNumberWorkers() float32

GetNumberWorkers returns the NumberWorkers field value if set, zero value otherwise.

func (*StarburstOptions) GetNumberWorkersOk ¶ added in v1.10.3

func (o *StarburstOptions) GetNumberWorkersOk() (*float32, bool)

GetNumberWorkersOk returns a tuple with the NumberWorkers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptions) GetType ¶ added in v1.10.3

func (o *StarburstOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*StarburstOptions) GetTypeOk ¶ added in v1.10.3

func (o *StarburstOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptions) HasConf ¶ added in v1.10.3

func (o *StarburstOptions) HasConf() bool

HasConf returns a boolean if a field has been set.

func (*StarburstOptions) HasDatabaseInstanceType ¶ added in v1.10.3

func (o *StarburstOptions) HasDatabaseInstanceType() bool

HasDatabaseInstanceType returns a boolean if a field has been set.

func (*StarburstOptions) HasDatabaseType ¶ added in v1.10.3

func (o *StarburstOptions) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*StarburstOptions) HasEnv ¶ added in v1.10.3

func (o *StarburstOptions) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*StarburstOptions) HasInstanceType ¶ added in v1.10.3

func (o *StarburstOptions) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (*StarburstOptions) HasLicence ¶ added in v1.10.3

func (o *StarburstOptions) HasLicence() bool

HasLicence returns a boolean if a field has been set.

func (*StarburstOptions) HasNumberWorkers ¶ added in v1.10.3

func (o *StarburstOptions) HasNumberWorkers() bool

HasNumberWorkers returns a boolean if a field has been set.

func (*StarburstOptions) HasType ¶ added in v1.10.3

func (o *StarburstOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (StarburstOptions) MarshalJSON ¶ added in v1.10.3

func (o StarburstOptions) MarshalJSON() ([]byte, error)

func (*StarburstOptions) SetConf ¶ added in v1.10.3

func (o *StarburstOptions) SetConf(v map[string]map[string]interface{})

SetConf gets a reference to the given map[string]map[string]interface{} and assigns it to the Conf field.

func (*StarburstOptions) SetDatabaseInstanceType ¶ added in v1.10.3

func (o *StarburstOptions) SetDatabaseInstanceType(v string)

SetDatabaseInstanceType gets a reference to the given string and assigns it to the DatabaseInstanceType field.

func (*StarburstOptions) SetDatabaseType ¶ added in v1.10.3

func (o *StarburstOptions) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given string and assigns it to the DatabaseType field.

func (*StarburstOptions) SetEnv ¶ added in v1.10.3

func (o *StarburstOptions) SetEnv(v map[string]string)

SetEnv gets a reference to the given map[string]string and assigns it to the Env field.

func (*StarburstOptions) SetInstanceType ¶ added in v1.10.3

func (o *StarburstOptions) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (*StarburstOptions) SetLicence ¶ added in v1.10.3

func (o *StarburstOptions) SetLicence(v string)

SetLicence gets a reference to the given string and assigns it to the Licence field.

func (*StarburstOptions) SetNumberWorkers ¶ added in v1.10.3

func (o *StarburstOptions) SetNumberWorkers(v float32)

SetNumberWorkers gets a reference to the given float32 and assigns it to the NumberWorkers field.

func (*StarburstOptions) SetType ¶ added in v1.10.3

func (o *StarburstOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (StarburstOptions) ToMap ¶ added in v1.10.3

func (o StarburstOptions) ToMap() (map[string]interface{}, error)

type StarburstOptionsAllOf ¶ added in v1.10.3

type StarburstOptionsAllOf struct {
	Type                 *string                            `json:"type,omitempty"`
	Licence              *string                            `json:"licence,omitempty"`
	NumberWorkers        *float32                           `json:"number_workers,omitempty"`
	DatabaseInstanceType *string                            `json:"database_instance_type,omitempty"`
	DatabaseType         *string                            `json:"database_type,omitempty"`
	Conf                 *map[string]map[string]interface{} `json:"conf,omitempty"`
}

StarburstOptionsAllOf struct for StarburstOptionsAllOf

func NewStarburstOptionsAllOf ¶ added in v1.10.3

func NewStarburstOptionsAllOf() *StarburstOptionsAllOf

NewStarburstOptionsAllOf instantiates a new StarburstOptionsAllOf 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 NewStarburstOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewStarburstOptionsAllOfWithDefaults() *StarburstOptionsAllOf

NewStarburstOptionsAllOfWithDefaults instantiates a new StarburstOptionsAllOf 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 (*StarburstOptionsAllOf) GetConf ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetConf() map[string]map[string]interface{}

GetConf returns the Conf field value if set, zero value otherwise.

func (*StarburstOptionsAllOf) GetConfOk ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetConfOk() (*map[string]map[string]interface{}, bool)

GetConfOk returns a tuple with the Conf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptionsAllOf) GetDatabaseInstanceType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetDatabaseInstanceType() string

GetDatabaseInstanceType returns the DatabaseInstanceType field value if set, zero value otherwise.

func (*StarburstOptionsAllOf) GetDatabaseInstanceTypeOk ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetDatabaseInstanceTypeOk() (*string, bool)

GetDatabaseInstanceTypeOk returns a tuple with the DatabaseInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptionsAllOf) GetDatabaseType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetDatabaseType() string

GetDatabaseType returns the DatabaseType field value if set, zero value otherwise.

func (*StarburstOptionsAllOf) GetDatabaseTypeOk ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetDatabaseTypeOk() (*string, bool)

GetDatabaseTypeOk returns a tuple with the DatabaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptionsAllOf) GetLicence ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetLicence() string

GetLicence returns the Licence field value if set, zero value otherwise.

func (*StarburstOptionsAllOf) GetLicenceOk ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetLicenceOk() (*string, bool)

GetLicenceOk returns a tuple with the Licence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptionsAllOf) GetNumberWorkers ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetNumberWorkers() float32

GetNumberWorkers returns the NumberWorkers field value if set, zero value otherwise.

func (*StarburstOptionsAllOf) GetNumberWorkersOk ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetNumberWorkersOk() (*float32, bool)

GetNumberWorkersOk returns a tuple with the NumberWorkers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptionsAllOf) GetType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*StarburstOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StarburstOptionsAllOf) HasConf ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) HasConf() bool

HasConf returns a boolean if a field has been set.

func (*StarburstOptionsAllOf) HasDatabaseInstanceType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) HasDatabaseInstanceType() bool

HasDatabaseInstanceType returns a boolean if a field has been set.

func (*StarburstOptionsAllOf) HasDatabaseType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

func (*StarburstOptionsAllOf) HasLicence ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) HasLicence() bool

HasLicence returns a boolean if a field has been set.

func (*StarburstOptionsAllOf) HasNumberWorkers ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) HasNumberWorkers() bool

HasNumberWorkers returns a boolean if a field has been set.

func (*StarburstOptionsAllOf) HasType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (StarburstOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o StarburstOptionsAllOf) MarshalJSON() ([]byte, error)

func (*StarburstOptionsAllOf) SetConf ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) SetConf(v map[string]map[string]interface{})

SetConf gets a reference to the given map[string]map[string]interface{} and assigns it to the Conf field.

func (*StarburstOptionsAllOf) SetDatabaseInstanceType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) SetDatabaseInstanceType(v string)

SetDatabaseInstanceType gets a reference to the given string and assigns it to the DatabaseInstanceType field.

func (*StarburstOptionsAllOf) SetDatabaseType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) SetDatabaseType(v string)

SetDatabaseType gets a reference to the given string and assigns it to the DatabaseType field.

func (*StarburstOptionsAllOf) SetLicence ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) SetLicence(v string)

SetLicence gets a reference to the given string and assigns it to the Licence field.

func (*StarburstOptionsAllOf) SetNumberWorkers ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) SetNumberWorkers(v float32)

SetNumberWorkers gets a reference to the given float32 and assigns it to the NumberWorkers field.

func (*StarburstOptionsAllOf) SetType ¶ added in v1.10.3

func (o *StarburstOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type StartTask ¶ added in v1.10.3

type StartTask struct {
	Task
	Type *string `json:"type,omitempty"`
}

StartTask struct for StartTask

func NewStartTask ¶ added in v1.10.3

func NewStartTask() *StartTask

NewStartTask instantiates a new StartTask 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 NewStartTaskWithDefaults ¶ added in v1.10.3

func NewStartTaskWithDefaults() *StartTask

NewStartTaskWithDefaults instantiates a new StartTask 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 (*StartTask) GetType ¶ added in v1.10.3

func (o *StartTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*StartTask) GetTypeOk ¶ added in v1.10.3

func (o *StartTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartTask) HasType ¶ added in v1.10.3

func (o *StartTask) HasType() bool

HasType returns a boolean if a field has been set.

func (StartTask) MarshalJSON ¶ added in v1.10.3

func (o StartTask) MarshalJSON() ([]byte, error)

func (*StartTask) SetType ¶ added in v1.10.3

func (o *StartTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (StartTask) ToMap ¶ added in v1.10.3

func (o StartTask) ToMap() (map[string]interface{}, error)

type StartTaskAllOf ¶ added in v1.10.3

type StartTaskAllOf struct {
	Type *string `json:"type,omitempty"`
}

StartTaskAllOf struct for StartTaskAllOf

func NewStartTaskAllOf ¶ added in v1.10.3

func NewStartTaskAllOf() *StartTaskAllOf

NewStartTaskAllOf instantiates a new StartTaskAllOf 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 NewStartTaskAllOfWithDefaults ¶ added in v1.10.3

func NewStartTaskAllOfWithDefaults() *StartTaskAllOf

NewStartTaskAllOfWithDefaults instantiates a new StartTaskAllOf 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 (*StartTaskAllOf) GetType ¶ added in v1.10.3

func (o *StartTaskAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*StartTaskAllOf) GetTypeOk ¶ added in v1.10.3

func (o *StartTaskAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StartTaskAllOf) HasType ¶ added in v1.10.3

func (o *StartTaskAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (StartTaskAllOf) MarshalJSON ¶ added in v1.10.3

func (o StartTaskAllOf) MarshalJSON() ([]byte, error)

func (*StartTaskAllOf) SetType ¶ added in v1.10.3

func (o *StartTaskAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Stream ¶

type Stream struct {
	Id          *string    `json:"id,omitempty"`
	Name        *string    `json:"name,omitempty"`
	Description *string    `json:"description,omitempty"`
	Scope       *string    `json:"scope,omitempty"`
	Created     *time.Time `json:"created,omitempty"`
	Updated     *time.Time `json:"updated,omitempty"`
}

Stream struct for Stream

func NewStream ¶

func NewStream() *Stream

NewStream instantiates a new Stream 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 NewStreamWithDefaults ¶

func NewStreamWithDefaults() *Stream

NewStreamWithDefaults instantiates a new Stream 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 (*Stream) GetCreated ¶

func (o *Stream) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Stream) GetCreatedOk ¶

func (o *Stream) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stream) GetDescription ¶

func (o *Stream) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Stream) GetDescriptionOk ¶

func (o *Stream) 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 (*Stream) GetId ¶

func (o *Stream) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Stream) GetIdOk ¶

func (o *Stream) 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 (*Stream) GetName ¶

func (o *Stream) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Stream) GetNameOk ¶

func (o *Stream) 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 (*Stream) GetScope ¶

func (o *Stream) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*Stream) GetScopeOk ¶

func (o *Stream) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stream) GetUpdated ¶

func (o *Stream) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Stream) GetUpdatedOk ¶

func (o *Stream) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stream) HasCreated ¶

func (o *Stream) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Stream) HasDescription ¶

func (o *Stream) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Stream) HasId ¶

func (o *Stream) HasId() bool

HasId returns a boolean if a field has been set.

func (*Stream) HasName ¶

func (o *Stream) HasName() bool

HasName returns a boolean if a field has been set.

func (*Stream) HasScope ¶

func (o *Stream) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*Stream) HasUpdated ¶

func (o *Stream) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Stream) MarshalJSON ¶

func (o Stream) MarshalJSON() ([]byte, error)

func (*Stream) SetCreated ¶

func (o *Stream) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Stream) SetDescription ¶

func (o *Stream) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Stream) SetId ¶

func (o *Stream) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Stream) SetName ¶

func (o *Stream) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Stream) SetScope ¶

func (o *Stream) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*Stream) SetUpdated ¶

func (o *Stream) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Stream) ToMap ¶ added in v1.10.3

func (o Stream) ToMap() (map[string]interface{}, error)

type StreamAPIService ¶ added in v1.10.3

type StreamAPIService service

StreamAPIService StreamAPI service

func (*StreamAPIService) CreateStream ¶ added in v1.10.3

CreateStream Create a stream

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateStreamRequest

func (*StreamAPIService) CreateStreamExecute ¶ added in v1.10.3

func (a *StreamAPIService) CreateStreamExecute(r ApiCreateStreamRequest) (*Stream, *http.Response, error)

Execute executes the request

@return Stream

func (*StreamAPIService) DeleteStreamById ¶ added in v1.10.3

func (a *StreamAPIService) DeleteStreamById(ctx context.Context, streamId string) ApiDeleteStreamByIdRequest

DeleteStreamById Delete a stream by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param streamId Id of the stream
@return ApiDeleteStreamByIdRequest

func (*StreamAPIService) DeleteStreamByIdExecute ¶ added in v1.10.3

func (a *StreamAPIService) DeleteStreamByIdExecute(r ApiDeleteStreamByIdRequest) (*http.Response, error)

Execute executes the request

func (*StreamAPIService) FindStreamById ¶ added in v1.10.3

func (a *StreamAPIService) FindStreamById(ctx context.Context, streamId string) ApiFindStreamByIdRequest

FindStreamById Find stream by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param streamId Id of the stream
@return ApiFindStreamByIdRequest

func (*StreamAPIService) FindStreamByIdExecute ¶ added in v1.10.3

func (a *StreamAPIService) FindStreamByIdExecute(r ApiFindStreamByIdRequest) (*Stream, *http.Response, error)

Execute executes the request

@return Stream

func (*StreamAPIService) FindStreams ¶ added in v1.10.3

FindStreams Retrieve all streams

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindStreamsRequest

func (*StreamAPIService) FindStreamsExecute ¶ added in v1.10.3

func (a *StreamAPIService) FindStreamsExecute(r ApiFindStreamsRequest) ([]Stream, *http.Response, error)

Execute executes the request

@return []Stream

func (*StreamAPIService) UpdateStream ¶ added in v1.10.3

func (a *StreamAPIService) UpdateStream(ctx context.Context, streamId string) ApiUpdateStreamRequest

UpdateStream Update a stream

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param streamId Id of the stream
@return ApiUpdateStreamRequest

func (*StreamAPIService) UpdateStreamExecute ¶ added in v1.10.3

func (a *StreamAPIService) UpdateStreamExecute(r ApiUpdateStreamRequest) (*Stream, *http.Response, error)

Execute executes the request

@return Stream

type StripeAPIService ¶ added in v1.10.3

type StripeAPIService service

StripeAPIService StripeAPI service

func (*StripeAPIService) StripeCreateSetupIntent ¶ added in v1.10.3

func (a *StripeAPIService) StripeCreateSetupIntent(ctx context.Context) ApiStripeCreateSetupIntentRequest

StripeCreateSetupIntent create setup intent on Stripe

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStripeCreateSetupIntentRequest

func (*StripeAPIService) StripeCreateSetupIntentExecute ¶ added in v1.10.3

Execute executes the request

@return StripeCreateSetupIntent200Response

func (*StripeAPIService) StripePublicKey ¶ added in v1.10.3

StripePublicKey get Stripe public key

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStripePublicKeyRequest

func (*StripeAPIService) StripePublicKeyExecute ¶ added in v1.10.3

Execute executes the request

@return StripePublicKey200Response

type StripeCreateSetupIntent200Response ¶ added in v1.10.3

type StripeCreateSetupIntent200Response struct {
	ClientSecret *string `json:"client_secret,omitempty"`
}

StripeCreateSetupIntent200Response struct for StripeCreateSetupIntent200Response

func NewStripeCreateSetupIntent200Response ¶ added in v1.10.3

func NewStripeCreateSetupIntent200Response() *StripeCreateSetupIntent200Response

NewStripeCreateSetupIntent200Response instantiates a new StripeCreateSetupIntent200Response 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 NewStripeCreateSetupIntent200ResponseWithDefaults ¶ added in v1.10.3

func NewStripeCreateSetupIntent200ResponseWithDefaults() *StripeCreateSetupIntent200Response

NewStripeCreateSetupIntent200ResponseWithDefaults instantiates a new StripeCreateSetupIntent200Response 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 (*StripeCreateSetupIntent200Response) GetClientSecret ¶ added in v1.10.3

func (o *StripeCreateSetupIntent200Response) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*StripeCreateSetupIntent200Response) GetClientSecretOk ¶ added in v1.10.3

func (o *StripeCreateSetupIntent200Response) GetClientSecretOk() (*string, bool)

GetClientSecretOk returns a tuple with the ClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StripeCreateSetupIntent200Response) HasClientSecret ¶ added in v1.10.3

func (o *StripeCreateSetupIntent200Response) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (StripeCreateSetupIntent200Response) MarshalJSON ¶ added in v1.10.3

func (o StripeCreateSetupIntent200Response) MarshalJSON() ([]byte, error)

func (*StripeCreateSetupIntent200Response) SetClientSecret ¶ added in v1.10.3

func (o *StripeCreateSetupIntent200Response) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (StripeCreateSetupIntent200Response) ToMap ¶ added in v1.10.3

func (o StripeCreateSetupIntent200Response) ToMap() (map[string]interface{}, error)

type StripePublicKey200Response ¶ added in v1.10.3

type StripePublicKey200Response struct {
	PublicKey *string `json:"public_key,omitempty"`
}

StripePublicKey200Response struct for StripePublicKey200Response

func NewStripePublicKey200Response ¶ added in v1.10.3

func NewStripePublicKey200Response() *StripePublicKey200Response

NewStripePublicKey200Response instantiates a new StripePublicKey200Response 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 NewStripePublicKey200ResponseWithDefaults ¶ added in v1.10.3

func NewStripePublicKey200ResponseWithDefaults() *StripePublicKey200Response

NewStripePublicKey200ResponseWithDefaults instantiates a new StripePublicKey200Response 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 (*StripePublicKey200Response) GetPublicKey ¶ added in v1.10.3

func (o *StripePublicKey200Response) GetPublicKey() string

GetPublicKey returns the PublicKey field value if set, zero value otherwise.

func (*StripePublicKey200Response) GetPublicKeyOk ¶ added in v1.10.3

func (o *StripePublicKey200Response) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StripePublicKey200Response) HasPublicKey ¶ added in v1.10.3

func (o *StripePublicKey200Response) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set.

func (StripePublicKey200Response) MarshalJSON ¶ added in v1.10.3

func (o StripePublicKey200Response) MarshalJSON() ([]byte, error)

func (*StripePublicKey200Response) SetPublicKey ¶ added in v1.10.3

func (o *StripePublicKey200Response) SetPublicKey(v string)

SetPublicKey gets a reference to the given string and assigns it to the PublicKey field.

func (StripePublicKey200Response) ToMap ¶ added in v1.10.3

func (o StripePublicKey200Response) ToMap() (map[string]interface{}, error)

type Style ¶

type Style struct {
	Created  *time.Time                        `json:"created,omitempty"`
	Updated  *time.Time                        `json:"updated,omitempty"`
	Metadata map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Style struct for Style

func NewStyle ¶

func NewStyle() *Style

NewStyle instantiates a new Style 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 NewStyleWithDefaults ¶

func NewStyleWithDefaults() *Style

NewStyleWithDefaults instantiates a new Style 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 (*Style) GetCreated ¶

func (o *Style) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Style) GetCreatedOk ¶

func (o *Style) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Style) GetMetadata ¶

func (o *Style) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Style) GetMetadataOk ¶

func (o *Style) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Style) GetUpdated ¶

func (o *Style) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Style) GetUpdatedOk ¶

func (o *Style) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Style) HasCreated ¶

func (o *Style) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Style) HasMetadata ¶

func (o *Style) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Style) HasUpdated ¶

func (o *Style) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Style) MarshalJSON ¶

func (o Style) MarshalJSON() ([]byte, error)

func (*Style) SetCreated ¶

func (o *Style) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Style) SetMetadata ¶

func (o *Style) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Style) SetUpdated ¶

func (o *Style) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Style) ToMap ¶ added in v1.10.3

func (o Style) ToMap() (map[string]interface{}, error)

type StyleAPIService ¶ added in v1.10.3

type StyleAPIService service

StyleAPIService StyleAPI service

func (*StyleAPIService) FindStyleByTenantId ¶ added in v1.10.3

func (a *StyleAPIService) FindStyleByTenantId(ctx context.Context) ApiFindStyleByTenantIdRequest

FindStyleByTenantId Find style by tenant id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindStyleByTenantIdRequest

func (*StyleAPIService) FindStyleByTenantIdExecute ¶ added in v1.10.3

func (a *StyleAPIService) FindStyleByTenantIdExecute(r ApiFindStyleByTenantIdRequest) (*Style, *http.Response, error)

Execute executes the request

@return Style

func (*StyleAPIService) UpdateStyle ¶ added in v1.10.3

UpdateStyle Update the current style

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateStyleRequest

func (*StyleAPIService) UpdateStyleExecute ¶ added in v1.10.3

func (a *StyleAPIService) UpdateStyleExecute(r ApiUpdateStyleRequest) (*Style, *http.Response, error)

Execute executes the request

@return Style

type Subscription ¶

type Subscription struct {
	Id      *string    `json:"id,omitempty"`
	Created *time.Time `json:"created,omitempty"`
	Status  *string    `json:"status,omitempty"`
	Company *Company   `json:"company,omitempty"`
	Contact *Contact   `json:"contact,omitempty"`
}

Subscription struct for Subscription

func NewSubscription ¶

func NewSubscription() *Subscription

NewSubscription instantiates a new Subscription 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 NewSubscriptionWithDefaults ¶

func NewSubscriptionWithDefaults() *Subscription

NewSubscriptionWithDefaults instantiates a new Subscription 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 (*Subscription) GetCompany ¶

func (o *Subscription) GetCompany() Company

GetCompany returns the Company field value if set, zero value otherwise.

func (*Subscription) GetCompanyOk ¶

func (o *Subscription) GetCompanyOk() (*Company, bool)

GetCompanyOk returns a tuple with the Company field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetContact ¶

func (o *Subscription) GetContact() Contact

GetContact returns the Contact field value if set, zero value otherwise.

func (*Subscription) GetContactOk ¶

func (o *Subscription) GetContactOk() (*Contact, bool)

GetContactOk returns a tuple with the Contact field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetCreated ¶

func (o *Subscription) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Subscription) GetCreatedOk ¶

func (o *Subscription) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetId ¶

func (o *Subscription) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Subscription) GetIdOk ¶

func (o *Subscription) 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 (*Subscription) GetStatus ¶ added in v1.10.3

func (o *Subscription) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Subscription) GetStatusOk ¶ added in v1.10.3

func (o *Subscription) GetStatusOk() (*string, 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 (*Subscription) HasCompany ¶

func (o *Subscription) HasCompany() bool

HasCompany returns a boolean if a field has been set.

func (*Subscription) HasContact ¶

func (o *Subscription) HasContact() bool

HasContact returns a boolean if a field has been set.

func (*Subscription) HasCreated ¶

func (o *Subscription) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Subscription) HasId ¶

func (o *Subscription) HasId() bool

HasId returns a boolean if a field has been set.

func (*Subscription) HasStatus ¶ added in v1.10.3

func (o *Subscription) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Subscription) MarshalJSON ¶

func (o Subscription) MarshalJSON() ([]byte, error)

func (*Subscription) SetCompany ¶

func (o *Subscription) SetCompany(v Company)

SetCompany gets a reference to the given Company and assigns it to the Company field.

func (*Subscription) SetContact ¶

func (o *Subscription) SetContact(v Contact)

SetContact gets a reference to the given Contact and assigns it to the Contact field.

func (*Subscription) SetCreated ¶

func (o *Subscription) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Subscription) SetId ¶

func (o *Subscription) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Subscription) SetStatus ¶ added in v1.10.3

func (o *Subscription) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (Subscription) ToMap ¶ added in v1.10.3

func (o Subscription) ToMap() (map[string]interface{}, error)

type SubscriptionAPIService ¶ added in v1.10.3

type SubscriptionAPIService service

SubscriptionAPIService SubscriptionAPI service

func (*SubscriptionAPIService) CreateSubscription ¶ added in v1.10.3

CreateSubscription Create an subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateSubscriptionRequest

func (*SubscriptionAPIService) CreateSubscriptionExecute ¶ added in v1.10.3

Execute executes the request

@return Subscription

func (*SubscriptionAPIService) DeleteSubscriptionById ¶ added in v1.10.3

func (a *SubscriptionAPIService) DeleteSubscriptionById(ctx context.Context, subscriptionId string) ApiDeleteSubscriptionByIdRequest

DeleteSubscriptionById Delete a subscription by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Id of the Subscription
@return ApiDeleteSubscriptionByIdRequest

func (*SubscriptionAPIService) DeleteSubscriptionByIdExecute ¶ added in v1.10.3

func (a *SubscriptionAPIService) DeleteSubscriptionByIdExecute(r ApiDeleteSubscriptionByIdRequest) (*http.Response, error)

Execute executes the request

func (*SubscriptionAPIService) FindSubscription ¶ added in v1.10.3

FindSubscription Retrieve all subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindSubscriptionRequest

func (*SubscriptionAPIService) FindSubscriptionById ¶ added in v1.10.3

func (a *SubscriptionAPIService) FindSubscriptionById(ctx context.Context, subscriptionId string) ApiFindSubscriptionByIdRequest

FindSubscriptionById Find subscription by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Id of the subscription
@return ApiFindSubscriptionByIdRequest

func (*SubscriptionAPIService) FindSubscriptionByIdExecute ¶ added in v1.10.3

func (a *SubscriptionAPIService) FindSubscriptionByIdExecute(r ApiFindSubscriptionByIdRequest) (*Subscription, *http.Response, error)

Execute executes the request

@return Subscription

func (*SubscriptionAPIService) FindSubscriptionExecute ¶ added in v1.10.3

Execute executes the request

@return []Subscription

func (*SubscriptionAPIService) UpdateSubscription ¶ added in v1.10.3

func (a *SubscriptionAPIService) UpdateSubscription(ctx context.Context, subscriptionId string) ApiUpdateSubscriptionRequest

UpdateSubscription Update a subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Id of the Subscription
@return ApiUpdateSubscriptionRequest

func (*SubscriptionAPIService) UpdateSubscriptionExecute ¶ added in v1.10.3

Execute executes the request

@return Subscription

type SubscriptionDetails ¶

type SubscriptionDetails struct {
	Details
	Type          *string        `json:"type,omitempty"`
	SupportPlan   *string        `json:"support_plan,omitempty"`
	Account       *string        `json:"account,omitempty"`
	Company       *Company       `json:"company,omitempty"`
	Contact       *Contact       `json:"contact,omitempty"`
	PaymentMethod *PaymentMethod `json:"payment_method,omitempty"`
}

SubscriptionDetails struct for SubscriptionDetails

func NewSubscriptionDetails ¶

func NewSubscriptionDetails() *SubscriptionDetails

NewSubscriptionDetails instantiates a new SubscriptionDetails 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 NewSubscriptionDetailsWithDefaults ¶

func NewSubscriptionDetailsWithDefaults() *SubscriptionDetails

NewSubscriptionDetailsWithDefaults instantiates a new SubscriptionDetails 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 (*SubscriptionDetails) GetAccount ¶

func (o *SubscriptionDetails) GetAccount() string

GetAccount returns the Account field value if set, zero value otherwise.

func (*SubscriptionDetails) GetAccountOk ¶

func (o *SubscriptionDetails) GetAccountOk() (*string, bool)

GetAccountOk returns a tuple with the Account field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetails) GetCompany ¶

func (o *SubscriptionDetails) GetCompany() Company

GetCompany returns the Company field value if set, zero value otherwise.

func (*SubscriptionDetails) GetCompanyOk ¶

func (o *SubscriptionDetails) GetCompanyOk() (*Company, bool)

GetCompanyOk returns a tuple with the Company field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetails) GetContact ¶

func (o *SubscriptionDetails) GetContact() Contact

GetContact returns the Contact field value if set, zero value otherwise.

func (*SubscriptionDetails) GetContactOk ¶

func (o *SubscriptionDetails) GetContactOk() (*Contact, bool)

GetContactOk returns a tuple with the Contact field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetails) GetPaymentMethod ¶

func (o *SubscriptionDetails) GetPaymentMethod() PaymentMethod

GetPaymentMethod returns the PaymentMethod field value if set, zero value otherwise.

func (*SubscriptionDetails) GetPaymentMethodOk ¶

func (o *SubscriptionDetails) GetPaymentMethodOk() (*PaymentMethod, bool)

GetPaymentMethodOk returns a tuple with the PaymentMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetails) GetSupportPlan ¶

func (o *SubscriptionDetails) GetSupportPlan() string

GetSupportPlan returns the SupportPlan field value if set, zero value otherwise.

func (*SubscriptionDetails) GetSupportPlanOk ¶

func (o *SubscriptionDetails) GetSupportPlanOk() (*string, bool)

GetSupportPlanOk returns a tuple with the SupportPlan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetails) GetType ¶

func (o *SubscriptionDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SubscriptionDetails) GetTypeOk ¶

func (o *SubscriptionDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetails) HasAccount ¶

func (o *SubscriptionDetails) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (*SubscriptionDetails) HasCompany ¶

func (o *SubscriptionDetails) HasCompany() bool

HasCompany returns a boolean if a field has been set.

func (*SubscriptionDetails) HasContact ¶

func (o *SubscriptionDetails) HasContact() bool

HasContact returns a boolean if a field has been set.

func (*SubscriptionDetails) HasPaymentMethod ¶

func (o *SubscriptionDetails) HasPaymentMethod() bool

HasPaymentMethod returns a boolean if a field has been set.

func (*SubscriptionDetails) HasSupportPlan ¶

func (o *SubscriptionDetails) HasSupportPlan() bool

HasSupportPlan returns a boolean if a field has been set.

func (*SubscriptionDetails) HasType ¶

func (o *SubscriptionDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (SubscriptionDetails) MarshalJSON ¶

func (o SubscriptionDetails) MarshalJSON() ([]byte, error)

func (*SubscriptionDetails) SetAccount ¶

func (o *SubscriptionDetails) SetAccount(v string)

SetAccount gets a reference to the given string and assigns it to the Account field.

func (*SubscriptionDetails) SetCompany ¶

func (o *SubscriptionDetails) SetCompany(v Company)

SetCompany gets a reference to the given Company and assigns it to the Company field.

func (*SubscriptionDetails) SetContact ¶

func (o *SubscriptionDetails) SetContact(v Contact)

SetContact gets a reference to the given Contact and assigns it to the Contact field.

func (*SubscriptionDetails) SetPaymentMethod ¶

func (o *SubscriptionDetails) SetPaymentMethod(v PaymentMethod)

SetPaymentMethod gets a reference to the given PaymentMethod and assigns it to the PaymentMethod field.

func (*SubscriptionDetails) SetSupportPlan ¶

func (o *SubscriptionDetails) SetSupportPlan(v string)

SetSupportPlan gets a reference to the given string and assigns it to the SupportPlan field.

func (*SubscriptionDetails) SetType ¶

func (o *SubscriptionDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SubscriptionDetails) ToMap ¶ added in v1.10.3

func (o SubscriptionDetails) ToMap() (map[string]interface{}, error)

type SubscriptionDetailsAllOf ¶

type SubscriptionDetailsAllOf struct {
	Type          *string        `json:"type,omitempty"`
	SupportPlan   *string        `json:"support_plan,omitempty"`
	Account       *string        `json:"account,omitempty"`
	Company       *Company       `json:"company,omitempty"`
	Contact       *Contact       `json:"contact,omitempty"`
	PaymentMethod *PaymentMethod `json:"payment_method,omitempty"`
}

SubscriptionDetailsAllOf struct for SubscriptionDetailsAllOf

func NewSubscriptionDetailsAllOf ¶

func NewSubscriptionDetailsAllOf() *SubscriptionDetailsAllOf

NewSubscriptionDetailsAllOf instantiates a new SubscriptionDetailsAllOf 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 NewSubscriptionDetailsAllOfWithDefaults ¶

func NewSubscriptionDetailsAllOfWithDefaults() *SubscriptionDetailsAllOf

NewSubscriptionDetailsAllOfWithDefaults instantiates a new SubscriptionDetailsAllOf 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 (*SubscriptionDetailsAllOf) GetAccount ¶

func (o *SubscriptionDetailsAllOf) GetAccount() string

GetAccount returns the Account field value if set, zero value otherwise.

func (*SubscriptionDetailsAllOf) GetAccountOk ¶

func (o *SubscriptionDetailsAllOf) GetAccountOk() (*string, bool)

GetAccountOk returns a tuple with the Account field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetailsAllOf) GetCompany ¶

func (o *SubscriptionDetailsAllOf) GetCompany() Company

GetCompany returns the Company field value if set, zero value otherwise.

func (*SubscriptionDetailsAllOf) GetCompanyOk ¶

func (o *SubscriptionDetailsAllOf) GetCompanyOk() (*Company, bool)

GetCompanyOk returns a tuple with the Company field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetailsAllOf) GetContact ¶

func (o *SubscriptionDetailsAllOf) GetContact() Contact

GetContact returns the Contact field value if set, zero value otherwise.

func (*SubscriptionDetailsAllOf) GetContactOk ¶

func (o *SubscriptionDetailsAllOf) GetContactOk() (*Contact, bool)

GetContactOk returns a tuple with the Contact field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetailsAllOf) GetPaymentMethod ¶

func (o *SubscriptionDetailsAllOf) GetPaymentMethod() PaymentMethod

GetPaymentMethod returns the PaymentMethod field value if set, zero value otherwise.

func (*SubscriptionDetailsAllOf) GetPaymentMethodOk ¶

func (o *SubscriptionDetailsAllOf) GetPaymentMethodOk() (*PaymentMethod, bool)

GetPaymentMethodOk returns a tuple with the PaymentMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetailsAllOf) GetSupportPlan ¶

func (o *SubscriptionDetailsAllOf) GetSupportPlan() string

GetSupportPlan returns the SupportPlan field value if set, zero value otherwise.

func (*SubscriptionDetailsAllOf) GetSupportPlanOk ¶

func (o *SubscriptionDetailsAllOf) GetSupportPlanOk() (*string, bool)

GetSupportPlanOk returns a tuple with the SupportPlan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetailsAllOf) GetType ¶

func (o *SubscriptionDetailsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SubscriptionDetailsAllOf) GetTypeOk ¶

func (o *SubscriptionDetailsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionDetailsAllOf) HasAccount ¶

func (o *SubscriptionDetailsAllOf) HasAccount() bool

HasAccount returns a boolean if a field has been set.

func (*SubscriptionDetailsAllOf) HasCompany ¶

func (o *SubscriptionDetailsAllOf) HasCompany() bool

HasCompany returns a boolean if a field has been set.

func (*SubscriptionDetailsAllOf) HasContact ¶

func (o *SubscriptionDetailsAllOf) HasContact() bool

HasContact returns a boolean if a field has been set.

func (*SubscriptionDetailsAllOf) HasPaymentMethod ¶

func (o *SubscriptionDetailsAllOf) HasPaymentMethod() bool

HasPaymentMethod returns a boolean if a field has been set.

func (*SubscriptionDetailsAllOf) HasSupportPlan ¶

func (o *SubscriptionDetailsAllOf) HasSupportPlan() bool

HasSupportPlan returns a boolean if a field has been set.

func (*SubscriptionDetailsAllOf) HasType ¶

func (o *SubscriptionDetailsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (SubscriptionDetailsAllOf) MarshalJSON ¶

func (o SubscriptionDetailsAllOf) MarshalJSON() ([]byte, error)

func (*SubscriptionDetailsAllOf) SetAccount ¶

func (o *SubscriptionDetailsAllOf) SetAccount(v string)

SetAccount gets a reference to the given string and assigns it to the Account field.

func (*SubscriptionDetailsAllOf) SetCompany ¶

func (o *SubscriptionDetailsAllOf) SetCompany(v Company)

SetCompany gets a reference to the given Company and assigns it to the Company field.

func (*SubscriptionDetailsAllOf) SetContact ¶

func (o *SubscriptionDetailsAllOf) SetContact(v Contact)

SetContact gets a reference to the given Contact and assigns it to the Contact field.

func (*SubscriptionDetailsAllOf) SetPaymentMethod ¶

func (o *SubscriptionDetailsAllOf) SetPaymentMethod(v PaymentMethod)

SetPaymentMethod gets a reference to the given PaymentMethod and assigns it to the PaymentMethod field.

func (*SubscriptionDetailsAllOf) SetSupportPlan ¶

func (o *SubscriptionDetailsAllOf) SetSupportPlan(v string)

SetSupportPlan gets a reference to the given string and assigns it to the SupportPlan field.

func (*SubscriptionDetailsAllOf) SetType ¶

func (o *SubscriptionDetailsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type SumParams ¶ added in v1.10.3

type SumParams struct {
	// Sum aggregation.
	Type *string `json:"type,omitempty"`
	// Columns to sum.
	Columns []string `json:"columns"`
}

SumParams struct for SumParams

func NewSumParams ¶ added in v1.10.3

func NewSumParams(columns []string) *SumParams

NewSumParams instantiates a new SumParams 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 NewSumParamsWithDefaults ¶ added in v1.10.3

func NewSumParamsWithDefaults() *SumParams

NewSumParamsWithDefaults instantiates a new SumParams 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 (*SumParams) GetColumns ¶ added in v1.10.3

func (o *SumParams) GetColumns() []string

GetColumns returns the Columns field value

func (*SumParams) GetColumnsOk ¶ added in v1.10.3

func (o *SumParams) GetColumnsOk() ([]string, bool)

GetColumnsOk returns a tuple with the Columns field value and a boolean to check if the value has been set.

func (*SumParams) GetType ¶ added in v1.10.3

func (o *SumParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SumParams) GetTypeOk ¶ added in v1.10.3

func (o *SumParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SumParams) HasType ¶ added in v1.10.3

func (o *SumParams) HasType() bool

HasType returns a boolean if a field has been set.

func (SumParams) MarshalJSON ¶ added in v1.10.3

func (o SumParams) MarshalJSON() ([]byte, error)

func (*SumParams) SetColumns ¶ added in v1.10.3

func (o *SumParams) SetColumns(v []string)

SetColumns sets field value

func (*SumParams) SetType ¶ added in v1.10.3

func (o *SumParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SumParams) ToMap ¶ added in v1.10.3

func (o SumParams) ToMap() (map[string]interface{}, error)

func (*SumParams) UnmarshalJSON ¶ added in v1.10.3

func (o *SumParams) UnmarshalJSON(bytes []byte) (err error)

type SynapseOptions ¶ added in v1.10.3

type SynapseOptions struct {
	DataWarehouseOptions
	Host     *string  `json:"host,omitempty"`
	Port     *float32 `json:"port,omitempty"`
	Database *string  `json:"database,omitempty"`
	Schema   *string  `json:"schema,omitempty"`
	Type     *string  `json:"type,omitempty"`
}

SynapseOptions struct for SynapseOptions

func NewSynapseOptions ¶ added in v1.10.3

func NewSynapseOptions() *SynapseOptions

NewSynapseOptions instantiates a new SynapseOptions 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 NewSynapseOptionsWithDefaults ¶ added in v1.10.3

func NewSynapseOptionsWithDefaults() *SynapseOptions

NewSynapseOptionsWithDefaults instantiates a new SynapseOptions 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 (*SynapseOptions) GetDatabase ¶ added in v1.10.3

func (o *SynapseOptions) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*SynapseOptions) GetDatabaseOk ¶ added in v1.10.3

func (o *SynapseOptions) GetDatabaseOk() (*string, bool)

GetDatabaseOk returns a tuple with the Database field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SynapseOptions) GetHost ¶ added in v1.10.3

func (o *SynapseOptions) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*SynapseOptions) GetHostOk ¶ added in v1.10.3

func (o *SynapseOptions) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SynapseOptions) GetPort ¶ added in v1.10.3

func (o *SynapseOptions) GetPort() float32

GetPort returns the Port field value if set, zero value otherwise.

func (*SynapseOptions) GetPortOk ¶ added in v1.10.3

func (o *SynapseOptions) GetPortOk() (*float32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SynapseOptions) GetSchema ¶ added in v1.10.3

func (o *SynapseOptions) GetSchema() string

GetSchema returns the Schema field value if set, zero value otherwise.

func (*SynapseOptions) GetSchemaOk ¶ added in v1.10.3

func (o *SynapseOptions) 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 (*SynapseOptions) GetType ¶ added in v1.10.3

func (o *SynapseOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SynapseOptions) GetTypeOk ¶ added in v1.10.3

func (o *SynapseOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SynapseOptions) HasDatabase ¶ added in v1.10.3

func (o *SynapseOptions) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*SynapseOptions) HasHost ¶ added in v1.10.3

func (o *SynapseOptions) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*SynapseOptions) HasPort ¶ added in v1.10.3

func (o *SynapseOptions) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*SynapseOptions) HasSchema ¶ added in v1.10.3

func (o *SynapseOptions) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*SynapseOptions) HasType ¶ added in v1.10.3

func (o *SynapseOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (SynapseOptions) MarshalJSON ¶ added in v1.10.3

func (o SynapseOptions) MarshalJSON() ([]byte, error)

func (*SynapseOptions) SetDatabase ¶ added in v1.10.3

func (o *SynapseOptions) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*SynapseOptions) SetHost ¶ added in v1.10.3

func (o *SynapseOptions) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*SynapseOptions) SetPort ¶ added in v1.10.3

func (o *SynapseOptions) SetPort(v float32)

SetPort gets a reference to the given float32 and assigns it to the Port field.

func (*SynapseOptions) SetSchema ¶ added in v1.10.3

func (o *SynapseOptions) SetSchema(v string)

SetSchema gets a reference to the given string and assigns it to the Schema field.

func (*SynapseOptions) SetType ¶ added in v1.10.3

func (o *SynapseOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (SynapseOptions) ToMap ¶ added in v1.10.3

func (o SynapseOptions) ToMap() (map[string]interface{}, error)

type SynapseOptionsAllOf ¶ added in v1.10.3

type SynapseOptionsAllOf struct {
	Type *string `json:"type,omitempty"`
}

SynapseOptionsAllOf struct for SynapseOptionsAllOf

func NewSynapseOptionsAllOf ¶ added in v1.10.3

func NewSynapseOptionsAllOf() *SynapseOptionsAllOf

NewSynapseOptionsAllOf instantiates a new SynapseOptionsAllOf 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 NewSynapseOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewSynapseOptionsAllOfWithDefaults() *SynapseOptionsAllOf

NewSynapseOptionsAllOfWithDefaults instantiates a new SynapseOptionsAllOf 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 (*SynapseOptionsAllOf) GetType ¶ added in v1.10.3

func (o *SynapseOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*SynapseOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *SynapseOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SynapseOptionsAllOf) HasType ¶ added in v1.10.3

func (o *SynapseOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (SynapseOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o SynapseOptionsAllOf) MarshalJSON() ([]byte, error)

func (*SynapseOptionsAllOf) SetType ¶ added in v1.10.3

func (o *SynapseOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Table ¶ added in v1.10.3

type Table struct {
	Name *string `json:"name,omitempty"`
}

Table struct for Table

func NewTable ¶ added in v1.10.3

func NewTable() *Table

NewTable instantiates a new Table 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 NewTableWithDefaults ¶ added in v1.10.3

func NewTableWithDefaults() *Table

NewTableWithDefaults instantiates a new Table 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 (*Table) GetName ¶ added in v1.10.3

func (o *Table) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Table) GetNameOk ¶ added in v1.10.3

func (o *Table) 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 (*Table) HasName ¶ added in v1.10.3

func (o *Table) HasName() bool

HasName returns a boolean if a field has been set.

func (Table) MarshalJSON ¶ added in v1.10.3

func (o Table) MarshalJSON() ([]byte, error)

func (*Table) SetName ¶ added in v1.10.3

func (o *Table) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (Table) ToMap ¶ added in v1.10.3

func (o Table) ToMap() (map[string]interface{}, error)

type Table1 ¶ added in v1.10.3

type Table1 struct {
	Id            *string                           `json:"id,omitempty"`
	TechnicalName *string                           `json:"technical_name,omitempty"`
	Name          *string                           `json:"name,omitempty"`
	Uri           *string                           `json:"uri,omitempty"`
	PublicUri     *string                           `json:"public_uri,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Table1 struct for Table1

func NewTable1 ¶ added in v1.10.3

func NewTable1() *Table1

NewTable1 instantiates a new Table1 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 NewTable1WithDefaults ¶ added in v1.10.3

func NewTable1WithDefaults() *Table1

NewTable1WithDefaults instantiates a new Table1 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 (*Table1) GetCreated ¶ added in v1.10.3

func (o *Table1) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Table1) GetCreatedOk ¶ added in v1.10.3

func (o *Table1) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Table1) GetDescription ¶ added in v1.10.3

func (o *Table1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Table1) GetDescriptionOk ¶ added in v1.10.3

func (o *Table1) 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 (*Table1) GetId ¶ added in v1.10.3

func (o *Table1) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Table1) GetIdOk ¶ added in v1.10.3

func (o *Table1) 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 (*Table1) GetMetadata ¶ added in v1.10.3

func (o *Table1) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Table1) GetMetadataOk ¶ added in v1.10.3

func (o *Table1) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Table1) GetName ¶ added in v1.10.3

func (o *Table1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Table1) GetNameOk ¶ added in v1.10.3

func (o *Table1) 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 (*Table1) GetPublicUri ¶ added in v1.10.3

func (o *Table1) GetPublicUri() string

GetPublicUri returns the PublicUri field value if set, zero value otherwise.

func (*Table1) GetPublicUriOk ¶ added in v1.10.3

func (o *Table1) GetPublicUriOk() (*string, bool)

GetPublicUriOk returns a tuple with the PublicUri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Table1) GetTechnicalName ¶ added in v1.10.3

func (o *Table1) GetTechnicalName() string

GetTechnicalName returns the TechnicalName field value if set, zero value otherwise.

func (*Table1) GetTechnicalNameOk ¶ added in v1.10.3

func (o *Table1) GetTechnicalNameOk() (*string, bool)

GetTechnicalNameOk returns a tuple with the TechnicalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Table1) GetUpdated ¶ added in v1.10.3

func (o *Table1) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Table1) GetUpdatedOk ¶ added in v1.10.3

func (o *Table1) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Table1) GetUri ¶ added in v1.10.3

func (o *Table1) GetUri() string

GetUri returns the Uri field value if set, zero value otherwise.

func (*Table1) GetUriOk ¶ added in v1.10.3

func (o *Table1) 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 (*Table1) HasCreated ¶ added in v1.10.3

func (o *Table1) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Table1) HasDescription ¶ added in v1.10.3

func (o *Table1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Table1) HasId ¶ added in v1.10.3

func (o *Table1) HasId() bool

HasId returns a boolean if a field has been set.

func (*Table1) HasMetadata ¶ added in v1.10.3

func (o *Table1) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Table1) HasName ¶ added in v1.10.3

func (o *Table1) HasName() bool

HasName returns a boolean if a field has been set.

func (*Table1) HasPublicUri ¶ added in v1.10.3

func (o *Table1) HasPublicUri() bool

HasPublicUri returns a boolean if a field has been set.

func (*Table1) HasTechnicalName ¶ added in v1.10.3

func (o *Table1) HasTechnicalName() bool

HasTechnicalName returns a boolean if a field has been set.

func (*Table1) HasUpdated ¶ added in v1.10.3

func (o *Table1) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*Table1) HasUri ¶ added in v1.10.3

func (o *Table1) HasUri() bool

HasUri returns a boolean if a field has been set.

func (Table1) MarshalJSON ¶ added in v1.10.3

func (o Table1) MarshalJSON() ([]byte, error)

func (*Table1) SetCreated ¶ added in v1.10.3

func (o *Table1) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Table1) SetDescription ¶ added in v1.10.3

func (o *Table1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Table1) SetId ¶ added in v1.10.3

func (o *Table1) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Table1) SetMetadata ¶ added in v1.10.3

func (o *Table1) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Table1) SetName ¶ added in v1.10.3

func (o *Table1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Table1) SetPublicUri ¶ added in v1.10.3

func (o *Table1) SetPublicUri(v string)

SetPublicUri gets a reference to the given string and assigns it to the PublicUri field.

func (*Table1) SetTechnicalName ¶ added in v1.10.3

func (o *Table1) SetTechnicalName(v string)

SetTechnicalName gets a reference to the given string and assigns it to the TechnicalName field.

func (*Table1) SetUpdated ¶ added in v1.10.3

func (o *Table1) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*Table1) SetUri ¶ added in v1.10.3

func (o *Table1) SetUri(v string)

SetUri gets a reference to the given string and assigns it to the Uri field.

func (Table1) ToMap ¶ added in v1.10.3

func (o Table1) ToMap() (map[string]interface{}, error)

type TableAPIService ¶ added in v1.10.3

type TableAPIService service

TableAPIService TableAPI service

func (*TableAPIService) CreateTable ¶ added in v1.10.3

func (a *TableAPIService) CreateTable(ctx context.Context, layerName string, databaseName string) ApiCreateTableRequest

CreateTable Create a table

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Name of the layer
@param databaseName Name of the database
@return ApiCreateTableRequest

func (*TableAPIService) CreateTableExecute ¶ added in v1.10.3

func (a *TableAPIService) CreateTableExecute(r ApiCreateTableRequest) (*Table1, *http.Response, error)

Execute executes the request

@return Table1

func (*TableAPIService) DeleteTableById ¶ added in v1.10.3

func (a *TableAPIService) DeleteTableById(ctx context.Context, layerName string, databaseName string, tableName string) ApiDeleteTableByIdRequest

DeleteTableById Delete a table by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Id of the layer
@param databaseName Id of the database
@param tableName Id of the table
@return ApiDeleteTableByIdRequest

func (*TableAPIService) DeleteTableByIdExecute ¶ added in v1.10.3

func (a *TableAPIService) DeleteTableByIdExecute(r ApiDeleteTableByIdRequest) (*http.Response, error)

Execute executes the request

func (*TableAPIService) FindTableById ¶ added in v1.10.3

func (a *TableAPIService) FindTableById(ctx context.Context, layerName string, databaseName string, tableName string) ApiFindTableByIdRequest

FindTableById Find table by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Id of the layer
@param databaseName Id of the database
@param tableName Id of the table
@return ApiFindTableByIdRequest

func (*TableAPIService) FindTableByIdExecute ¶ added in v1.10.3

func (a *TableAPIService) FindTableByIdExecute(r ApiFindTableByIdRequest) (*Table1, *http.Response, error)

Execute executes the request

@return Table1

func (*TableAPIService) FindTables1 ¶ added in v1.10.3

func (a *TableAPIService) FindTables1(ctx context.Context, layerName string, databaseName string) ApiFindTables1Request

FindTables1 Retrieve all tables

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Name of the layer
@param databaseName Name of the database
@return ApiFindTables1Request

func (*TableAPIService) FindTables1Execute ¶ added in v1.10.3

func (a *TableAPIService) FindTables1Execute(r ApiFindTables1Request) ([]Table1, *http.Response, error)

Execute executes the request

@return []Table1

func (*TableAPIService) UpdateTable ¶ added in v1.10.3

func (a *TableAPIService) UpdateTable(ctx context.Context, layerName string, databaseName string, tableName string) ApiUpdateTableRequest

UpdateTable Update a table

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param layerName Id of the layer
@param databaseName Id of the database
@param tableName Id of the table
@return ApiUpdateTableRequest

func (*TableAPIService) UpdateTableExecute ¶ added in v1.10.3

func (a *TableAPIService) UpdateTableExecute(r ApiUpdateTableRequest) (*Table1, *http.Response, error)

Execute executes the request

@return Table1

type Target ¶

type Target struct {
	Type     *string                           `json:"type,omitempty"`
	Metadata map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Target struct for Target

func NewTarget ¶

func NewTarget() *Target

NewTarget instantiates a new Target 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 NewTargetWithDefaults ¶

func NewTargetWithDefaults() *Target

NewTargetWithDefaults instantiates a new Target 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 (*Target) GetMetadata ¶

func (o *Target) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Target) GetMetadataOk ¶

func (o *Target) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Target) GetType ¶

func (o *Target) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Target) GetTypeOk ¶

func (o *Target) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Target) HasMetadata ¶

func (o *Target) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Target) HasType ¶

func (o *Target) HasType() bool

HasType returns a boolean if a field has been set.

func (Target) MarshalJSON ¶

func (o Target) MarshalJSON() ([]byte, error)

func (*Target) SetMetadata ¶

func (o *Target) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Target) SetType ¶

func (o *Target) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Target) ToMap ¶ added in v1.10.3

func (o Target) ToMap() (map[string]interface{}, error)

type Target1 ¶ added in v1.10.3

type Target1 struct {
	Project1 *Project1
	User1    *User1
}

Target1 - struct for Target1

func Project1AsTarget1 ¶ added in v1.10.3

func Project1AsTarget1(v *Project1) Target1

Project1AsTarget1 is a convenience function that returns Project1 wrapped in Target1

func User1AsTarget1 ¶ added in v1.10.3

func User1AsTarget1(v *User1) Target1

User1AsTarget1 is a convenience function that returns User1 wrapped in Target1

func (*Target1) GetActualInstance ¶ added in v1.10.3

func (obj *Target1) GetActualInstance() interface{}

Get the actual instance

func (Target1) MarshalJSON ¶ added in v1.10.3

func (src Target1) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*Target1) UnmarshalJSON ¶ added in v1.10.3

func (dst *Target1) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type TargetInfo ¶

type TargetInfo struct {
	TotalNodes        *Capacity     `json:"total_nodes,omitempty"`
	TotalCpus         *Capacity     `json:"total_cpus,omitempty"`
	TotalMemory       *ByteCapacity `json:"total_memory,omitempty"`
	AvailabilityZones []string      `json:"availability_zones,omitempty"`
}

TargetInfo struct for TargetInfo

func NewTargetInfo ¶

func NewTargetInfo() *TargetInfo

NewTargetInfo instantiates a new TargetInfo 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 NewTargetInfoWithDefaults ¶

func NewTargetInfoWithDefaults() *TargetInfo

NewTargetInfoWithDefaults instantiates a new TargetInfo 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 (*TargetInfo) GetAvailabilityZones ¶

func (o *TargetInfo) GetAvailabilityZones() []string

GetAvailabilityZones returns the AvailabilityZones field value if set, zero value otherwise.

func (*TargetInfo) GetAvailabilityZonesOk ¶

func (o *TargetInfo) GetAvailabilityZonesOk() ([]string, bool)

GetAvailabilityZonesOk returns a tuple with the AvailabilityZones field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetInfo) GetTotalCpus ¶

func (o *TargetInfo) GetTotalCpus() Capacity

GetTotalCpus returns the TotalCpus field value if set, zero value otherwise.

func (*TargetInfo) GetTotalCpusOk ¶

func (o *TargetInfo) GetTotalCpusOk() (*Capacity, bool)

GetTotalCpusOk returns a tuple with the TotalCpus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetInfo) GetTotalMemory ¶

func (o *TargetInfo) GetTotalMemory() ByteCapacity

GetTotalMemory returns the TotalMemory field value if set, zero value otherwise.

func (*TargetInfo) GetTotalMemoryOk ¶

func (o *TargetInfo) GetTotalMemoryOk() (*ByteCapacity, bool)

GetTotalMemoryOk returns a tuple with the TotalMemory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetInfo) GetTotalNodes ¶

func (o *TargetInfo) GetTotalNodes() Capacity

GetTotalNodes returns the TotalNodes field value if set, zero value otherwise.

func (*TargetInfo) GetTotalNodesOk ¶

func (o *TargetInfo) GetTotalNodesOk() (*Capacity, bool)

GetTotalNodesOk returns a tuple with the TotalNodes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TargetInfo) HasAvailabilityZones ¶

func (o *TargetInfo) HasAvailabilityZones() bool

HasAvailabilityZones returns a boolean if a field has been set.

func (*TargetInfo) HasTotalCpus ¶

func (o *TargetInfo) HasTotalCpus() bool

HasTotalCpus returns a boolean if a field has been set.

func (*TargetInfo) HasTotalMemory ¶

func (o *TargetInfo) HasTotalMemory() bool

HasTotalMemory returns a boolean if a field has been set.

func (*TargetInfo) HasTotalNodes ¶

func (o *TargetInfo) HasTotalNodes() bool

HasTotalNodes returns a boolean if a field has been set.

func (TargetInfo) MarshalJSON ¶

func (o TargetInfo) MarshalJSON() ([]byte, error)

func (*TargetInfo) SetAvailabilityZones ¶

func (o *TargetInfo) SetAvailabilityZones(v []string)

SetAvailabilityZones gets a reference to the given []string and assigns it to the AvailabilityZones field.

func (*TargetInfo) SetTotalCpus ¶

func (o *TargetInfo) SetTotalCpus(v Capacity)

SetTotalCpus gets a reference to the given Capacity and assigns it to the TotalCpus field.

func (*TargetInfo) SetTotalMemory ¶

func (o *TargetInfo) SetTotalMemory(v ByteCapacity)

SetTotalMemory gets a reference to the given ByteCapacity and assigns it to the TotalMemory field.

func (*TargetInfo) SetTotalNodes ¶

func (o *TargetInfo) SetTotalNodes(v Capacity)

SetTotalNodes gets a reference to the given Capacity and assigns it to the TotalNodes field.

func (TargetInfo) ToMap ¶ added in v1.10.3

func (o TargetInfo) ToMap() (map[string]interface{}, error)

type Task ¶

type Task struct {
	ITask
	Depends []string `json:"depends,omitempty"`
	Name    *string  `json:"name,omitempty"`
	Type    *string  `json:"type,omitempty"`
}

Task struct for Task

func NewTask ¶

func NewTask() *Task

NewTask instantiates a new Task 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 NewTaskWithDefaults ¶

func NewTaskWithDefaults() *Task

NewTaskWithDefaults instantiates a new Task 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 (*Task) GetDepends ¶

func (o *Task) GetDepends() []string

GetDepends returns the Depends field value if set, zero value otherwise.

func (*Task) GetDependsOk ¶

func (o *Task) GetDependsOk() ([]string, bool)

GetDependsOk returns a tuple with the Depends field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetName ¶

func (o *Task) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Task) GetNameOk ¶

func (o *Task) 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 (*Task) GetType ¶

func (o *Task) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Task) GetTypeOk ¶

func (o *Task) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) HasDepends ¶

func (o *Task) HasDepends() bool

HasDepends returns a boolean if a field has been set.

func (*Task) HasName ¶

func (o *Task) HasName() bool

HasName returns a boolean if a field has been set.

func (*Task) HasType ¶

func (o *Task) HasType() bool

HasType returns a boolean if a field has been set.

func (Task) MarshalJSON ¶

func (o Task) MarshalJSON() ([]byte, error)

func (*Task) SetDepends ¶

func (o *Task) SetDepends(v []string)

SetDepends gets a reference to the given []string and assigns it to the Depends field.

func (*Task) SetName ¶

func (o *Task) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Task) SetType ¶

func (o *Task) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Task) ToMap ¶ added in v1.10.3

func (o Task) ToMap() (map[string]interface{}, error)

type TaskListInner ¶ added in v1.10.3

type TaskListInner struct {
	AggTask          *AggTask
	DistinctTask     *DistinctTask
	DropTask         *DropTask
	FilterTask       *FilterTask
	JoinTask         *JoinTask
	OrderTask        *OrderTask
	PredictModelTask *PredictModelTask
	PrintTask        *PrintTask
	ReadTask         *ReadTask
	RenameTask       *RenameTask
	TrainModelTask   *TrainModelTask
	WriteTask        *WriteTask
}

TaskListInner - struct for TaskListInner

func AggTaskAsTaskListInner ¶ added in v1.10.3

func AggTaskAsTaskListInner(v *AggTask) TaskListInner

AggTaskAsTaskListInner is a convenience function that returns AggTask wrapped in TaskListInner

func DistinctTaskAsTaskListInner ¶ added in v1.10.3

func DistinctTaskAsTaskListInner(v *DistinctTask) TaskListInner

DistinctTaskAsTaskListInner is a convenience function that returns DistinctTask wrapped in TaskListInner

func DropTaskAsTaskListInner ¶ added in v1.10.3

func DropTaskAsTaskListInner(v *DropTask) TaskListInner

DropTaskAsTaskListInner is a convenience function that returns DropTask wrapped in TaskListInner

func FilterTaskAsTaskListInner ¶ added in v1.10.3

func FilterTaskAsTaskListInner(v *FilterTask) TaskListInner

FilterTaskAsTaskListInner is a convenience function that returns FilterTask wrapped in TaskListInner

func JoinTaskAsTaskListInner ¶ added in v1.10.3

func JoinTaskAsTaskListInner(v *JoinTask) TaskListInner

JoinTaskAsTaskListInner is a convenience function that returns JoinTask wrapped in TaskListInner

func OrderTaskAsTaskListInner ¶ added in v1.10.3

func OrderTaskAsTaskListInner(v *OrderTask) TaskListInner

OrderTaskAsTaskListInner is a convenience function that returns OrderTask wrapped in TaskListInner

func PredictModelTaskAsTaskListInner ¶ added in v1.10.3

func PredictModelTaskAsTaskListInner(v *PredictModelTask) TaskListInner

PredictModelTaskAsTaskListInner is a convenience function that returns PredictModelTask wrapped in TaskListInner

func PrintTaskAsTaskListInner ¶ added in v1.10.3

func PrintTaskAsTaskListInner(v *PrintTask) TaskListInner

PrintTaskAsTaskListInner is a convenience function that returns PrintTask wrapped in TaskListInner

func ReadTaskAsTaskListInner ¶ added in v1.10.3

func ReadTaskAsTaskListInner(v *ReadTask) TaskListInner

ReadTaskAsTaskListInner is a convenience function that returns ReadTask wrapped in TaskListInner

func RenameTaskAsTaskListInner ¶ added in v1.10.3

func RenameTaskAsTaskListInner(v *RenameTask) TaskListInner

RenameTaskAsTaskListInner is a convenience function that returns RenameTask wrapped in TaskListInner

func TrainModelTaskAsTaskListInner ¶ added in v1.10.3

func TrainModelTaskAsTaskListInner(v *TrainModelTask) TaskListInner

TrainModelTaskAsTaskListInner is a convenience function that returns TrainModelTask wrapped in TaskListInner

func WriteTaskAsTaskListInner ¶ added in v1.10.3

func WriteTaskAsTaskListInner(v *WriteTask) TaskListInner

WriteTaskAsTaskListInner is a convenience function that returns WriteTask wrapped in TaskListInner

func (*TaskListInner) GetActualInstance ¶ added in v1.10.3

func (obj *TaskListInner) GetActualInstance() interface{}

Get the actual instance

func (TaskListInner) MarshalJSON ¶ added in v1.10.3

func (src TaskListInner) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*TaskListInner) UnmarshalJSON ¶ added in v1.10.3

func (dst *TaskListInner) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Tenant ¶

type Tenant struct {
	Id          *string                           `json:"id,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Type        *string                           `json:"type,omitempty"`
	Sku         *string                           `json:"sku,omitempty"`
	Email       *string                           `json:"email,omitempty"`
	Realm       *string                           `json:"realm,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Tenant struct for Tenant

func NewTenant ¶

func NewTenant() *Tenant

NewTenant instantiates a new Tenant 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 NewTenantWithDefaults ¶

func NewTenantWithDefaults() *Tenant

NewTenantWithDefaults instantiates a new Tenant 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 (*Tenant) GetCreated ¶

func (o *Tenant) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Tenant) GetCreatedOk ¶

func (o *Tenant) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetDescription ¶

func (o *Tenant) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Tenant) GetDescriptionOk ¶

func (o *Tenant) 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 (*Tenant) GetEmail ¶

func (o *Tenant) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*Tenant) GetEmailOk ¶

func (o *Tenant) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetId ¶

func (o *Tenant) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Tenant) GetIdOk ¶

func (o *Tenant) 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 (*Tenant) GetMetadata ¶

func (o *Tenant) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Tenant) GetMetadataOk ¶

func (o *Tenant) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Tenant) GetName ¶

func (o *Tenant) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Tenant) GetNameOk ¶

func (o *Tenant) 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 (*Tenant) GetRealm ¶

func (o *Tenant) GetRealm() string

GetRealm returns the Realm field value if set, zero value otherwise.

func (*Tenant) GetRealmOk ¶

func (o *Tenant) GetRealmOk() (*string, bool)

GetRealmOk returns a tuple with the Realm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetSku ¶

func (o *Tenant) GetSku() string

GetSku returns the Sku field value if set, zero value otherwise.

func (*Tenant) GetSkuOk ¶

func (o *Tenant) GetSkuOk() (*string, bool)

GetSkuOk returns a tuple with the Sku field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetType ¶

func (o *Tenant) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Tenant) GetTypeOk ¶

func (o *Tenant) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) GetUpdated ¶

func (o *Tenant) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Tenant) GetUpdatedOk ¶

func (o *Tenant) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant) HasCreated ¶

func (o *Tenant) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Tenant) HasDescription ¶

func (o *Tenant) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Tenant) HasEmail ¶

func (o *Tenant) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Tenant) HasId ¶

func (o *Tenant) HasId() bool

HasId returns a boolean if a field has been set.

func (*Tenant) HasMetadata ¶

func (o *Tenant) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Tenant) HasName ¶

func (o *Tenant) HasName() bool

HasName returns a boolean if a field has been set.

func (*Tenant) HasRealm ¶

func (o *Tenant) HasRealm() bool

HasRealm returns a boolean if a field has been set.

func (*Tenant) HasSku ¶

func (o *Tenant) HasSku() bool

HasSku returns a boolean if a field has been set.

func (*Tenant) HasType ¶

func (o *Tenant) HasType() bool

HasType returns a boolean if a field has been set.

func (*Tenant) HasUpdated ¶

func (o *Tenant) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Tenant) MarshalJSON ¶

func (o Tenant) MarshalJSON() ([]byte, error)

func (*Tenant) SetCreated ¶

func (o *Tenant) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Tenant) SetDescription ¶

func (o *Tenant) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Tenant) SetEmail ¶

func (o *Tenant) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*Tenant) SetId ¶

func (o *Tenant) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Tenant) SetMetadata ¶

func (o *Tenant) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Tenant) SetName ¶

func (o *Tenant) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Tenant) SetRealm ¶

func (o *Tenant) SetRealm(v string)

SetRealm gets a reference to the given string and assigns it to the Realm field.

func (*Tenant) SetSku ¶

func (o *Tenant) SetSku(v string)

SetSku gets a reference to the given string and assigns it to the Sku field.

func (*Tenant) SetType ¶

func (o *Tenant) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Tenant) SetUpdated ¶

func (o *Tenant) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Tenant) ToMap ¶ added in v1.10.3

func (o Tenant) ToMap() (map[string]interface{}, error)

type Tenant1 ¶

type Tenant1 struct {
	Id          *string                           `json:"id,omitempty"`
	Name        *string                           `json:"name,omitempty"`
	Type        *string                           `json:"type,omitempty"`
	Sku         *string                           `json:"sku,omitempty"`
	Email       *string                           `json:"email,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Tenant1 struct for Tenant1

func NewTenant1 ¶

func NewTenant1() *Tenant1

NewTenant1 instantiates a new Tenant1 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 NewTenant1WithDefaults ¶

func NewTenant1WithDefaults() *Tenant1

NewTenant1WithDefaults instantiates a new Tenant1 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 (*Tenant1) GetCreated ¶

func (o *Tenant1) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Tenant1) GetCreatedOk ¶

func (o *Tenant1) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant1) GetDescription ¶

func (o *Tenant1) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Tenant1) GetDescriptionOk ¶

func (o *Tenant1) 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 (*Tenant1) GetEmail ¶

func (o *Tenant1) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*Tenant1) GetEmailOk ¶

func (o *Tenant1) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant1) GetId ¶

func (o *Tenant1) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Tenant1) GetIdOk ¶

func (o *Tenant1) 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 (*Tenant1) GetMetadata ¶

func (o *Tenant1) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Tenant1) GetMetadataOk ¶

func (o *Tenant1) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Tenant1) GetName ¶

func (o *Tenant1) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Tenant1) GetNameOk ¶

func (o *Tenant1) 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 (*Tenant1) GetSku ¶

func (o *Tenant1) GetSku() string

GetSku returns the Sku field value if set, zero value otherwise.

func (*Tenant1) GetSkuOk ¶

func (o *Tenant1) GetSkuOk() (*string, bool)

GetSkuOk returns a tuple with the Sku field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant1) GetType ¶

func (o *Tenant1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Tenant1) GetTypeOk ¶

func (o *Tenant1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant1) GetUpdated ¶

func (o *Tenant1) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Tenant1) GetUpdatedOk ¶

func (o *Tenant1) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Tenant1) HasCreated ¶

func (o *Tenant1) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Tenant1) HasDescription ¶

func (o *Tenant1) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Tenant1) HasEmail ¶

func (o *Tenant1) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*Tenant1) HasId ¶

func (o *Tenant1) HasId() bool

HasId returns a boolean if a field has been set.

func (*Tenant1) HasMetadata ¶

func (o *Tenant1) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Tenant1) HasName ¶

func (o *Tenant1) HasName() bool

HasName returns a boolean if a field has been set.

func (*Tenant1) HasSku ¶

func (o *Tenant1) HasSku() bool

HasSku returns a boolean if a field has been set.

func (*Tenant1) HasType ¶

func (o *Tenant1) HasType() bool

HasType returns a boolean if a field has been set.

func (*Tenant1) HasUpdated ¶

func (o *Tenant1) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Tenant1) MarshalJSON ¶

func (o Tenant1) MarshalJSON() ([]byte, error)

func (*Tenant1) SetCreated ¶

func (o *Tenant1) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Tenant1) SetDescription ¶

func (o *Tenant1) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Tenant1) SetEmail ¶

func (o *Tenant1) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*Tenant1) SetId ¶

func (o *Tenant1) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Tenant1) SetMetadata ¶

func (o *Tenant1) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Tenant1) SetName ¶

func (o *Tenant1) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Tenant1) SetSku ¶

func (o *Tenant1) SetSku(v string)

SetSku gets a reference to the given string and assigns it to the Sku field.

func (*Tenant1) SetType ¶

func (o *Tenant1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Tenant1) SetUpdated ¶

func (o *Tenant1) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Tenant1) ToMap ¶ added in v1.10.3

func (o Tenant1) ToMap() (map[string]interface{}, error)

type TenantAPIService ¶ added in v1.10.3

type TenantAPIService service

TenantAPIService TenantAPI service

func (*TenantAPIService) CreateTenant ¶ added in v1.10.3

CreateTenant Create a tenant

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateTenantRequest

func (*TenantAPIService) CreateTenantExecute ¶ added in v1.10.3

func (a *TenantAPIService) CreateTenantExecute(r ApiCreateTenantRequest) (*Tenant, *http.Response, error)

Execute executes the request

@return Tenant

func (*TenantAPIService) DeleteTenantById ¶ added in v1.10.3

func (a *TenantAPIService) DeleteTenantById(ctx context.Context, tenantId string) ApiDeleteTenantByIdRequest

DeleteTenantById Delete a tenant by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tenantId Id of the Tenant
@return ApiDeleteTenantByIdRequest

func (*TenantAPIService) DeleteTenantByIdExecute ¶ added in v1.10.3

func (a *TenantAPIService) DeleteTenantByIdExecute(r ApiDeleteTenantByIdRequest) (*http.Response, error)

Execute executes the request

func (*TenantAPIService) FindRealmByTenantId ¶ added in v1.10.3

func (a *TenantAPIService) FindRealmByTenantId(ctx context.Context, tenantId string) ApiFindRealmByTenantIdRequest

FindRealmByTenantId Find realm by tenant id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tenantId Id of the tenant
@return ApiFindRealmByTenantIdRequest

func (*TenantAPIService) FindRealmByTenantIdExecute ¶ added in v1.10.3

func (a *TenantAPIService) FindRealmByTenantIdExecute(r ApiFindRealmByTenantIdRequest) (*Tenant, *http.Response, error)

Execute executes the request

@return Tenant

func (*TenantAPIService) FindTenantById ¶ added in v1.10.3

func (a *TenantAPIService) FindTenantById(ctx context.Context, tenantId string) ApiFindTenantByIdRequest

FindTenantById Find tenant by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tenantId Id of the tenant
@return ApiFindTenantByIdRequest

func (*TenantAPIService) FindTenantByIdExecute ¶ added in v1.10.3

func (a *TenantAPIService) FindTenantByIdExecute(r ApiFindTenantByIdRequest) (*Tenant, *http.Response, error)

Execute executes the request

@return Tenant

func (*TenantAPIService) FindTenants ¶ added in v1.10.3

FindTenants Retrieve all tenants

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindTenantsRequest

func (*TenantAPIService) FindTenantsExecute ¶ added in v1.10.3

func (a *TenantAPIService) FindTenantsExecute(r ApiFindTenantsRequest) ([]Tenant, *http.Response, error)

Execute executes the request

@return []Tenant

func (*TenantAPIService) UpdateTenant ¶ added in v1.10.3

func (a *TenantAPIService) UpdateTenant(ctx context.Context, tenantId string) ApiUpdateTenantRequest

UpdateTenant Update a tenant

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param tenantId Id of the Tenant
@return ApiUpdateTenantRequest

func (*TenantAPIService) UpdateTenantExecute ¶ added in v1.10.3

func (a *TenantAPIService) UpdateTenantExecute(r ApiUpdateTenantRequest) (*Tenant, *http.Response, error)

Execute executes the request

@return Tenant

type TensorflowOptions ¶

type TensorflowOptions struct {
	Options
	Type                *string  `json:"type,omitempty"`
	NumberReplicas      *float32 `json:"number_replicas,omitempty"`
	Module              *string  `json:"module,omitempty"`
	ReplicaInstanceType *string  `json:"replica_instance_type,omitempty"`
}

TensorflowOptions struct for TensorflowOptions

func NewTensorflowOptions ¶

func NewTensorflowOptions() *TensorflowOptions

NewTensorflowOptions instantiates a new TensorflowOptions 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 NewTensorflowOptionsWithDefaults ¶

func NewTensorflowOptionsWithDefaults() *TensorflowOptions

NewTensorflowOptionsWithDefaults instantiates a new TensorflowOptions 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 (*TensorflowOptions) GetModule ¶

func (o *TensorflowOptions) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*TensorflowOptions) GetModuleOk ¶

func (o *TensorflowOptions) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TensorflowOptions) GetNumberReplicas ¶

func (o *TensorflowOptions) GetNumberReplicas() float32

GetNumberReplicas returns the NumberReplicas field value if set, zero value otherwise.

func (*TensorflowOptions) GetNumberReplicasOk ¶

func (o *TensorflowOptions) GetNumberReplicasOk() (*float32, bool)

GetNumberReplicasOk returns a tuple with the NumberReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TensorflowOptions) GetReplicaInstanceType ¶

func (o *TensorflowOptions) GetReplicaInstanceType() string

GetReplicaInstanceType returns the ReplicaInstanceType field value if set, zero value otherwise.

func (*TensorflowOptions) GetReplicaInstanceTypeOk ¶

func (o *TensorflowOptions) GetReplicaInstanceTypeOk() (*string, bool)

GetReplicaInstanceTypeOk returns a tuple with the ReplicaInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TensorflowOptions) GetType ¶

func (o *TensorflowOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TensorflowOptions) GetTypeOk ¶

func (o *TensorflowOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TensorflowOptions) HasModule ¶

func (o *TensorflowOptions) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*TensorflowOptions) HasNumberReplicas ¶

func (o *TensorflowOptions) HasNumberReplicas() bool

HasNumberReplicas returns a boolean if a field has been set.

func (*TensorflowOptions) HasReplicaInstanceType ¶

func (o *TensorflowOptions) HasReplicaInstanceType() bool

HasReplicaInstanceType returns a boolean if a field has been set.

func (*TensorflowOptions) HasType ¶

func (o *TensorflowOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (TensorflowOptions) MarshalJSON ¶

func (o TensorflowOptions) MarshalJSON() ([]byte, error)

func (*TensorflowOptions) SetModule ¶

func (o *TensorflowOptions) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*TensorflowOptions) SetNumberReplicas ¶

func (o *TensorflowOptions) SetNumberReplicas(v float32)

SetNumberReplicas gets a reference to the given float32 and assigns it to the NumberReplicas field.

func (*TensorflowOptions) SetReplicaInstanceType ¶

func (o *TensorflowOptions) SetReplicaInstanceType(v string)

SetReplicaInstanceType gets a reference to the given string and assigns it to the ReplicaInstanceType field.

func (*TensorflowOptions) SetType ¶

func (o *TensorflowOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TensorflowOptions) ToMap ¶ added in v1.10.3

func (o TensorflowOptions) ToMap() (map[string]interface{}, error)

type TensorflowOptionsAllOf ¶

type TensorflowOptionsAllOf struct {
	Type                *string  `json:"type,omitempty"`
	NumberReplicas      *float32 `json:"number_replicas,omitempty"`
	Module              *string  `json:"module,omitempty"`
	ReplicaInstanceType *string  `json:"replica_instance_type,omitempty"`
}

TensorflowOptionsAllOf struct for TensorflowOptionsAllOf

func NewTensorflowOptionsAllOf ¶

func NewTensorflowOptionsAllOf() *TensorflowOptionsAllOf

NewTensorflowOptionsAllOf instantiates a new TensorflowOptionsAllOf 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 NewTensorflowOptionsAllOfWithDefaults ¶

func NewTensorflowOptionsAllOfWithDefaults() *TensorflowOptionsAllOf

NewTensorflowOptionsAllOfWithDefaults instantiates a new TensorflowOptionsAllOf 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 (*TensorflowOptionsAllOf) GetModule ¶

func (o *TensorflowOptionsAllOf) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*TensorflowOptionsAllOf) GetModuleOk ¶

func (o *TensorflowOptionsAllOf) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TensorflowOptionsAllOf) GetNumberReplicas ¶

func (o *TensorflowOptionsAllOf) GetNumberReplicas() float32

GetNumberReplicas returns the NumberReplicas field value if set, zero value otherwise.

func (*TensorflowOptionsAllOf) GetNumberReplicasOk ¶

func (o *TensorflowOptionsAllOf) GetNumberReplicasOk() (*float32, bool)

GetNumberReplicasOk returns a tuple with the NumberReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TensorflowOptionsAllOf) GetReplicaInstanceType ¶

func (o *TensorflowOptionsAllOf) GetReplicaInstanceType() string

GetReplicaInstanceType returns the ReplicaInstanceType field value if set, zero value otherwise.

func (*TensorflowOptionsAllOf) GetReplicaInstanceTypeOk ¶

func (o *TensorflowOptionsAllOf) GetReplicaInstanceTypeOk() (*string, bool)

GetReplicaInstanceTypeOk returns a tuple with the ReplicaInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TensorflowOptionsAllOf) GetType ¶

func (o *TensorflowOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TensorflowOptionsAllOf) GetTypeOk ¶

func (o *TensorflowOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TensorflowOptionsAllOf) HasModule ¶

func (o *TensorflowOptionsAllOf) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*TensorflowOptionsAllOf) HasNumberReplicas ¶

func (o *TensorflowOptionsAllOf) HasNumberReplicas() bool

HasNumberReplicas returns a boolean if a field has been set.

func (*TensorflowOptionsAllOf) HasReplicaInstanceType ¶

func (o *TensorflowOptionsAllOf) HasReplicaInstanceType() bool

HasReplicaInstanceType returns a boolean if a field has been set.

func (*TensorflowOptionsAllOf) HasType ¶

func (o *TensorflowOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (TensorflowOptionsAllOf) MarshalJSON ¶

func (o TensorflowOptionsAllOf) MarshalJSON() ([]byte, error)

func (*TensorflowOptionsAllOf) SetModule ¶

func (o *TensorflowOptionsAllOf) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*TensorflowOptionsAllOf) SetNumberReplicas ¶

func (o *TensorflowOptionsAllOf) SetNumberReplicas(v float32)

SetNumberReplicas gets a reference to the given float32 and assigns it to the NumberReplicas field.

func (*TensorflowOptionsAllOf) SetReplicaInstanceType ¶

func (o *TensorflowOptionsAllOf) SetReplicaInstanceType(v string)

SetReplicaInstanceType gets a reference to the given string and assigns it to the ReplicaInstanceType field.

func (*TensorflowOptionsAllOf) SetType ¶

func (o *TensorflowOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Ticket ¶

type Ticket struct {
	Id          *string                           `json:"id,omitempty"`
	TenantId    *string                           `json:"tenant_id,omitempty"`
	Status      *string                           `json:"status,omitempty"`
	Title       *string                           `json:"title,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Details     *Details                          `json:"details,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Ticket struct for Ticket

func NewTicket ¶

func NewTicket() *Ticket

NewTicket instantiates a new Ticket 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 NewTicketWithDefaults ¶

func NewTicketWithDefaults() *Ticket

NewTicketWithDefaults instantiates a new Ticket 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 (*Ticket) GetCreated ¶

func (o *Ticket) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Ticket) GetCreatedOk ¶

func (o *Ticket) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ticket) GetDescription ¶

func (o *Ticket) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Ticket) GetDescriptionOk ¶

func (o *Ticket) 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 (*Ticket) GetDetails ¶

func (o *Ticket) GetDetails() Details

GetDetails returns the Details field value if set, zero value otherwise.

func (*Ticket) GetDetailsOk ¶

func (o *Ticket) GetDetailsOk() (*Details, bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ticket) GetId ¶

func (o *Ticket) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Ticket) GetIdOk ¶

func (o *Ticket) 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 (*Ticket) GetMetadata ¶

func (o *Ticket) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Ticket) GetMetadataOk ¶

func (o *Ticket) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Ticket) GetStatus ¶

func (o *Ticket) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Ticket) GetStatusOk ¶

func (o *Ticket) GetStatusOk() (*string, 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 (*Ticket) GetTenantId ¶

func (o *Ticket) GetTenantId() string

GetTenantId returns the TenantId field value if set, zero value otherwise.

func (*Ticket) GetTenantIdOk ¶

func (o *Ticket) GetTenantIdOk() (*string, bool)

GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ticket) GetTitle ¶

func (o *Ticket) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*Ticket) GetTitleOk ¶

func (o *Ticket) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ticket) GetUpdated ¶

func (o *Ticket) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Ticket) GetUpdatedOk ¶

func (o *Ticket) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Ticket) HasCreated ¶

func (o *Ticket) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Ticket) HasDescription ¶

func (o *Ticket) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Ticket) HasDetails ¶

func (o *Ticket) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*Ticket) HasId ¶

func (o *Ticket) HasId() bool

HasId returns a boolean if a field has been set.

func (*Ticket) HasMetadata ¶

func (o *Ticket) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Ticket) HasStatus ¶

func (o *Ticket) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Ticket) HasTenantId ¶

func (o *Ticket) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

func (*Ticket) HasTitle ¶

func (o *Ticket) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*Ticket) HasUpdated ¶

func (o *Ticket) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Ticket) MarshalJSON ¶

func (o Ticket) MarshalJSON() ([]byte, error)

func (*Ticket) SetCreated ¶

func (o *Ticket) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Ticket) SetDescription ¶

func (o *Ticket) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Ticket) SetDetails ¶

func (o *Ticket) SetDetails(v Details)

SetDetails gets a reference to the given Details and assigns it to the Details field.

func (*Ticket) SetId ¶

func (o *Ticket) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Ticket) SetMetadata ¶

func (o *Ticket) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Ticket) SetStatus ¶

func (o *Ticket) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Ticket) SetTenantId ¶

func (o *Ticket) SetTenantId(v string)

SetTenantId gets a reference to the given string and assigns it to the TenantId field.

func (*Ticket) SetTitle ¶

func (o *Ticket) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*Ticket) SetUpdated ¶

func (o *Ticket) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Ticket) ToMap ¶ added in v1.10.3

func (o Ticket) ToMap() (map[string]interface{}, error)

type TicketAPIService ¶ added in v1.10.3

type TicketAPIService service

TicketAPIService TicketAPI service

func (*TicketAPIService) CreateTicket ¶ added in v1.10.3

CreateTicket Create a ticket

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateTicketRequest

func (*TicketAPIService) CreateTicketExecute ¶ added in v1.10.3

func (a *TicketAPIService) CreateTicketExecute(r ApiCreateTicketRequest) (*Ticket, *http.Response, error)

Execute executes the request

@return Ticket

func (*TicketAPIService) DeleteTicketById ¶ added in v1.10.3

func (a *TicketAPIService) DeleteTicketById(ctx context.Context, ticketId string) ApiDeleteTicketByIdRequest

DeleteTicketById Delete a ticket by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ticketId Id of the Ticket
@return ApiDeleteTicketByIdRequest

func (*TicketAPIService) DeleteTicketByIdExecute ¶ added in v1.10.3

func (a *TicketAPIService) DeleteTicketByIdExecute(r ApiDeleteTicketByIdRequest) (*http.Response, error)

Execute executes the request

func (*TicketAPIService) ExecuteAction1 ¶ added in v1.10.3

func (a *TicketAPIService) ExecuteAction1(ctx context.Context, ticketId string) ApiExecuteAction1Request

ExecuteAction1 Execute an action

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ticketId Id of the ticket
@return ApiExecuteAction1Request

func (*TicketAPIService) ExecuteAction1Execute ¶ added in v1.10.3

func (a *TicketAPIService) ExecuteAction1Execute(r ApiExecuteAction1Request) (*http.Response, error)

Execute executes the request

func (*TicketAPIService) FindTicketById ¶ added in v1.10.3

func (a *TicketAPIService) FindTicketById(ctx context.Context, ticketId string) ApiFindTicketByIdRequest

FindTicketById Find ticket by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ticketId Id of the ticket
@return ApiFindTicketByIdRequest

func (*TicketAPIService) FindTicketByIdExecute ¶ added in v1.10.3

func (a *TicketAPIService) FindTicketByIdExecute(r ApiFindTicketByIdRequest) (*Ticket, *http.Response, error)

Execute executes the request

@return Ticket

func (*TicketAPIService) FindTickets ¶ added in v1.10.3

FindTickets Retrieve all tickets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindTicketsRequest

func (*TicketAPIService) FindTicketsExecute ¶ added in v1.10.3

func (a *TicketAPIService) FindTicketsExecute(r ApiFindTicketsRequest) ([]Ticket, *http.Response, error)

Execute executes the request

@return []Ticket

func (*TicketAPIService) UpdateTicket ¶ added in v1.10.3

func (a *TicketAPIService) UpdateTicket(ctx context.Context, ticketId string) ApiUpdateTicketRequest

UpdateTicket Update a ticket

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param ticketId Id of the Ticket
@return ApiUpdateTicketRequest

func (*TicketAPIService) UpdateTicketExecute ¶ added in v1.10.3

func (a *TicketAPIService) UpdateTicketExecute(r ApiUpdateTicketRequest) (*Ticket, *http.Response, error)

Execute executes the request

@return Ticket

type TrainModelTask ¶ added in v1.10.3

type TrainModelTask struct {
	// Identifier of the task.
	Id     string       `json:"id"`
	Params RandomForest `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the train model task.
	Type *string `json:"type,omitempty"`
}

TrainModelTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewTrainModelTask ¶ added in v1.10.3

func NewTrainModelTask(id string, params RandomForest, dependency []string) *TrainModelTask

NewTrainModelTask instantiates a new TrainModelTask 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 NewTrainModelTaskWithDefaults ¶ added in v1.10.3

func NewTrainModelTaskWithDefaults() *TrainModelTask

NewTrainModelTaskWithDefaults instantiates a new TrainModelTask 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 (*TrainModelTask) GetDependency ¶ added in v1.10.3

func (o *TrainModelTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*TrainModelTask) GetDependencyOk ¶ added in v1.10.3

func (o *TrainModelTask) GetDependencyOk() ([]string, bool)

GetDependencyOk returns a tuple with the Dependency field value and a boolean to check if the value has been set.

func (*TrainModelTask) GetId ¶ added in v1.10.3

func (o *TrainModelTask) GetId() string

GetId returns the Id field value

func (*TrainModelTask) GetIdOk ¶ added in v1.10.3

func (o *TrainModelTask) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*TrainModelTask) GetParams ¶ added in v1.10.3

func (o *TrainModelTask) GetParams() RandomForest

GetParams returns the Params field value

func (*TrainModelTask) GetParamsOk ¶ added in v1.10.3

func (o *TrainModelTask) GetParamsOk() (*RandomForest, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (*TrainModelTask) GetType ¶ added in v1.10.3

func (o *TrainModelTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TrainModelTask) GetTypeOk ¶ added in v1.10.3

func (o *TrainModelTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrainModelTask) HasType ¶ added in v1.10.3

func (o *TrainModelTask) HasType() bool

HasType returns a boolean if a field has been set.

func (TrainModelTask) MarshalJSON ¶ added in v1.10.3

func (o TrainModelTask) MarshalJSON() ([]byte, error)

func (*TrainModelTask) SetDependency ¶ added in v1.10.3

func (o *TrainModelTask) SetDependency(v []string)

SetDependency sets field value

func (*TrainModelTask) SetId ¶ added in v1.10.3

func (o *TrainModelTask) SetId(v string)

SetId sets field value

func (*TrainModelTask) SetParams ¶ added in v1.10.3

func (o *TrainModelTask) SetParams(v RandomForest)

SetParams sets field value

func (*TrainModelTask) SetType ¶ added in v1.10.3

func (o *TrainModelTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TrainModelTask) ToMap ¶ added in v1.10.3

func (o TrainModelTask) ToMap() (map[string]interface{}, error)

func (*TrainModelTask) UnmarshalJSON ¶ added in v1.10.3

func (o *TrainModelTask) UnmarshalJSON(bytes []byte) (err error)

type TrialDetails ¶ added in v1.10.3

type TrialDetails struct {
	Details1
	Type   *string    `json:"type,omitempty"`
	Expire *time.Time `json:"expire,omitempty"`
}

TrialDetails struct for TrialDetails

func NewTrialDetails ¶ added in v1.10.3

func NewTrialDetails() *TrialDetails

NewTrialDetails instantiates a new TrialDetails 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 NewTrialDetailsWithDefaults ¶ added in v1.10.3

func NewTrialDetailsWithDefaults() *TrialDetails

NewTrialDetailsWithDefaults instantiates a new TrialDetails 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 (*TrialDetails) GetExpire ¶ added in v1.10.3

func (o *TrialDetails) GetExpire() time.Time

GetExpire returns the Expire field value if set, zero value otherwise.

func (*TrialDetails) GetExpireOk ¶ added in v1.10.3

func (o *TrialDetails) GetExpireOk() (*time.Time, bool)

GetExpireOk returns a tuple with the Expire field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrialDetails) GetType ¶ added in v1.10.3

func (o *TrialDetails) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TrialDetails) GetTypeOk ¶ added in v1.10.3

func (o *TrialDetails) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrialDetails) HasExpire ¶ added in v1.10.3

func (o *TrialDetails) HasExpire() bool

HasExpire returns a boolean if a field has been set.

func (*TrialDetails) HasType ¶ added in v1.10.3

func (o *TrialDetails) HasType() bool

HasType returns a boolean if a field has been set.

func (TrialDetails) MarshalJSON ¶ added in v1.10.3

func (o TrialDetails) MarshalJSON() ([]byte, error)

func (*TrialDetails) SetExpire ¶ added in v1.10.3

func (o *TrialDetails) SetExpire(v time.Time)

SetExpire gets a reference to the given time.Time and assigns it to the Expire field.

func (*TrialDetails) SetType ¶ added in v1.10.3

func (o *TrialDetails) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TrialDetails) ToMap ¶ added in v1.10.3

func (o TrialDetails) ToMap() (map[string]interface{}, error)

type TrialDetailsAllOf ¶ added in v1.10.3

type TrialDetailsAllOf struct {
	Type   *string    `json:"type,omitempty"`
	Expire *time.Time `json:"expire,omitempty"`
}

TrialDetailsAllOf struct for TrialDetailsAllOf

func NewTrialDetailsAllOf ¶ added in v1.10.3

func NewTrialDetailsAllOf() *TrialDetailsAllOf

NewTrialDetailsAllOf instantiates a new TrialDetailsAllOf 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 NewTrialDetailsAllOfWithDefaults ¶ added in v1.10.3

func NewTrialDetailsAllOfWithDefaults() *TrialDetailsAllOf

NewTrialDetailsAllOfWithDefaults instantiates a new TrialDetailsAllOf 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 (*TrialDetailsAllOf) GetExpire ¶ added in v1.10.3

func (o *TrialDetailsAllOf) GetExpire() time.Time

GetExpire returns the Expire field value if set, zero value otherwise.

func (*TrialDetailsAllOf) GetExpireOk ¶ added in v1.10.3

func (o *TrialDetailsAllOf) GetExpireOk() (*time.Time, bool)

GetExpireOk returns a tuple with the Expire field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrialDetailsAllOf) GetType ¶ added in v1.10.3

func (o *TrialDetailsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TrialDetailsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *TrialDetailsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrialDetailsAllOf) HasExpire ¶ added in v1.10.3

func (o *TrialDetailsAllOf) HasExpire() bool

HasExpire returns a boolean if a field has been set.

func (*TrialDetailsAllOf) HasType ¶ added in v1.10.3

func (o *TrialDetailsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (TrialDetailsAllOf) MarshalJSON ¶ added in v1.10.3

func (o TrialDetailsAllOf) MarshalJSON() ([]byte, error)

func (*TrialDetailsAllOf) SetExpire ¶ added in v1.10.3

func (o *TrialDetailsAllOf) SetExpire(v time.Time)

SetExpire gets a reference to the given time.Time and assigns it to the Expire field.

func (*TrialDetailsAllOf) SetType ¶ added in v1.10.3

func (o *TrialDetailsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type TrialPaymentMethod ¶

type TrialPaymentMethod struct {
	PaymentMethod
	Type   *string    `json:"type,omitempty"`
	Expire *time.Time `json:"expire,omitempty"`
}

TrialPaymentMethod struct for TrialPaymentMethod

func NewTrialPaymentMethod ¶

func NewTrialPaymentMethod() *TrialPaymentMethod

NewTrialPaymentMethod instantiates a new TrialPaymentMethod 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 NewTrialPaymentMethodWithDefaults ¶

func NewTrialPaymentMethodWithDefaults() *TrialPaymentMethod

NewTrialPaymentMethodWithDefaults instantiates a new TrialPaymentMethod 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 (*TrialPaymentMethod) GetExpire ¶

func (o *TrialPaymentMethod) GetExpire() time.Time

GetExpire returns the Expire field value if set, zero value otherwise.

func (*TrialPaymentMethod) GetExpireOk ¶

func (o *TrialPaymentMethod) GetExpireOk() (*time.Time, bool)

GetExpireOk returns a tuple with the Expire field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrialPaymentMethod) GetType ¶

func (o *TrialPaymentMethod) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TrialPaymentMethod) GetTypeOk ¶

func (o *TrialPaymentMethod) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrialPaymentMethod) HasExpire ¶

func (o *TrialPaymentMethod) HasExpire() bool

HasExpire returns a boolean if a field has been set.

func (*TrialPaymentMethod) HasType ¶

func (o *TrialPaymentMethod) HasType() bool

HasType returns a boolean if a field has been set.

func (TrialPaymentMethod) MarshalJSON ¶

func (o TrialPaymentMethod) MarshalJSON() ([]byte, error)

func (*TrialPaymentMethod) SetExpire ¶

func (o *TrialPaymentMethod) SetExpire(v time.Time)

SetExpire gets a reference to the given time.Time and assigns it to the Expire field.

func (*TrialPaymentMethod) SetType ¶

func (o *TrialPaymentMethod) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type TrialPaymentMethodAllOf ¶

type TrialPaymentMethodAllOf struct {
	Type   *string    `json:"type,omitempty"`
	Expire *time.Time `json:"expire,omitempty"`
}

TrialPaymentMethodAllOf struct for TrialPaymentMethodAllOf

func NewTrialPaymentMethodAllOf ¶

func NewTrialPaymentMethodAllOf() *TrialPaymentMethodAllOf

NewTrialPaymentMethodAllOf instantiates a new TrialPaymentMethodAllOf 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 NewTrialPaymentMethodAllOfWithDefaults ¶

func NewTrialPaymentMethodAllOfWithDefaults() *TrialPaymentMethodAllOf

NewTrialPaymentMethodAllOfWithDefaults instantiates a new TrialPaymentMethodAllOf 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 (*TrialPaymentMethodAllOf) GetExpire ¶

func (o *TrialPaymentMethodAllOf) GetExpire() time.Time

GetExpire returns the Expire field value if set, zero value otherwise.

func (*TrialPaymentMethodAllOf) GetExpireOk ¶

func (o *TrialPaymentMethodAllOf) GetExpireOk() (*time.Time, bool)

GetExpireOk returns a tuple with the Expire field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrialPaymentMethodAllOf) GetType ¶

func (o *TrialPaymentMethodAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TrialPaymentMethodAllOf) GetTypeOk ¶

func (o *TrialPaymentMethodAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrialPaymentMethodAllOf) HasExpire ¶

func (o *TrialPaymentMethodAllOf) HasExpire() bool

HasExpire returns a boolean if a field has been set.

func (*TrialPaymentMethodAllOf) HasType ¶

func (o *TrialPaymentMethodAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (TrialPaymentMethodAllOf) MarshalJSON ¶

func (o TrialPaymentMethodAllOf) MarshalJSON() ([]byte, error)

func (*TrialPaymentMethodAllOf) SetExpire ¶

func (o *TrialPaymentMethodAllOf) SetExpire(v time.Time)

SetExpire gets a reference to the given time.Time and assigns it to the Expire field.

func (*TrialPaymentMethodAllOf) SetType ¶

func (o *TrialPaymentMethodAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type TrinoOptions ¶ added in v1.10.3

type TrinoOptions struct {
	DataWarehouseOptions
	Env           *map[string]string                `json:"env,omitempty"`
	InstanceType  *string                           `json:"instance_type,omitempty"`
	Type          *string                           `json:"type,omitempty"`
	NumberWorkers *float32                          `json:"number_workers,omitempty"`
	Conf          map[string]map[string]interface{} `json:"conf,omitempty"`
}

TrinoOptions struct for TrinoOptions

func NewTrinoOptions ¶ added in v1.10.3

func NewTrinoOptions() *TrinoOptions

NewTrinoOptions instantiates a new TrinoOptions 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 NewTrinoOptionsWithDefaults ¶ added in v1.10.3

func NewTrinoOptionsWithDefaults() *TrinoOptions

NewTrinoOptionsWithDefaults instantiates a new TrinoOptions 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 (*TrinoOptions) GetConf ¶ added in v1.10.3

func (o *TrinoOptions) GetConf() map[string]map[string]interface{}

GetConf returns the Conf field value if set, zero value otherwise.

func (*TrinoOptions) GetConfOk ¶ added in v1.10.3

func (o *TrinoOptions) GetConfOk() (map[string]map[string]interface{}, bool)

GetConfOk returns a tuple with the Conf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrinoOptions) GetEnv ¶ added in v1.10.3

func (o *TrinoOptions) GetEnv() map[string]string

GetEnv returns the Env field value if set, zero value otherwise.

func (*TrinoOptions) GetEnvOk ¶ added in v1.10.3

func (o *TrinoOptions) GetEnvOk() (*map[string]string, 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 (*TrinoOptions) GetInstanceType ¶ added in v1.10.3

func (o *TrinoOptions) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*TrinoOptions) GetInstanceTypeOk ¶ added in v1.10.3

func (o *TrinoOptions) GetInstanceTypeOk() (*string, bool)

GetInstanceTypeOk returns a tuple with the InstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrinoOptions) GetNumberWorkers ¶ added in v1.10.3

func (o *TrinoOptions) GetNumberWorkers() float32

GetNumberWorkers returns the NumberWorkers field value if set, zero value otherwise.

func (*TrinoOptions) GetNumberWorkersOk ¶ added in v1.10.3

func (o *TrinoOptions) GetNumberWorkersOk() (*float32, bool)

GetNumberWorkersOk returns a tuple with the NumberWorkers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrinoOptions) GetType ¶ added in v1.10.3

func (o *TrinoOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TrinoOptions) GetTypeOk ¶ added in v1.10.3

func (o *TrinoOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrinoOptions) HasConf ¶ added in v1.10.3

func (o *TrinoOptions) HasConf() bool

HasConf returns a boolean if a field has been set.

func (*TrinoOptions) HasEnv ¶ added in v1.10.3

func (o *TrinoOptions) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*TrinoOptions) HasInstanceType ¶ added in v1.10.3

func (o *TrinoOptions) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (*TrinoOptions) HasNumberWorkers ¶ added in v1.10.3

func (o *TrinoOptions) HasNumberWorkers() bool

HasNumberWorkers returns a boolean if a field has been set.

func (*TrinoOptions) HasType ¶ added in v1.10.3

func (o *TrinoOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (TrinoOptions) MarshalJSON ¶ added in v1.10.3

func (o TrinoOptions) MarshalJSON() ([]byte, error)

func (*TrinoOptions) SetConf ¶ added in v1.10.3

func (o *TrinoOptions) SetConf(v map[string]map[string]interface{})

SetConf gets a reference to the given map[string]map[string]interface{} and assigns it to the Conf field.

func (*TrinoOptions) SetEnv ¶ added in v1.10.3

func (o *TrinoOptions) SetEnv(v map[string]string)

SetEnv gets a reference to the given map[string]string and assigns it to the Env field.

func (*TrinoOptions) SetInstanceType ¶ added in v1.10.3

func (o *TrinoOptions) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (*TrinoOptions) SetNumberWorkers ¶ added in v1.10.3

func (o *TrinoOptions) SetNumberWorkers(v float32)

SetNumberWorkers gets a reference to the given float32 and assigns it to the NumberWorkers field.

func (*TrinoOptions) SetType ¶ added in v1.10.3

func (o *TrinoOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (TrinoOptions) ToMap ¶ added in v1.10.3

func (o TrinoOptions) ToMap() (map[string]interface{}, error)

type TrinoOptionsAllOf ¶ added in v1.10.3

type TrinoOptionsAllOf struct {
	Type          *string                            `json:"type,omitempty"`
	NumberWorkers *float32                           `json:"number_workers,omitempty"`
	Conf          *map[string]map[string]interface{} `json:"conf,omitempty"`
}

TrinoOptionsAllOf struct for TrinoOptionsAllOf

func NewTrinoOptionsAllOf ¶ added in v1.10.3

func NewTrinoOptionsAllOf() *TrinoOptionsAllOf

NewTrinoOptionsAllOf instantiates a new TrinoOptionsAllOf 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 NewTrinoOptionsAllOfWithDefaults ¶ added in v1.10.3

func NewTrinoOptionsAllOfWithDefaults() *TrinoOptionsAllOf

NewTrinoOptionsAllOfWithDefaults instantiates a new TrinoOptionsAllOf 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 (*TrinoOptionsAllOf) GetConf ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) GetConf() map[string]map[string]interface{}

GetConf returns the Conf field value if set, zero value otherwise.

func (*TrinoOptionsAllOf) GetConfOk ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) GetConfOk() (*map[string]map[string]interface{}, bool)

GetConfOk returns a tuple with the Conf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrinoOptionsAllOf) GetNumberWorkers ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) GetNumberWorkers() float32

GetNumberWorkers returns the NumberWorkers field value if set, zero value otherwise.

func (*TrinoOptionsAllOf) GetNumberWorkersOk ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) GetNumberWorkersOk() (*float32, bool)

GetNumberWorkersOk returns a tuple with the NumberWorkers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrinoOptionsAllOf) GetType ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*TrinoOptionsAllOf) GetTypeOk ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrinoOptionsAllOf) HasConf ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) HasConf() bool

HasConf returns a boolean if a field has been set.

func (*TrinoOptionsAllOf) HasNumberWorkers ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) HasNumberWorkers() bool

HasNumberWorkers returns a boolean if a field has been set.

func (*TrinoOptionsAllOf) HasType ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (TrinoOptionsAllOf) MarshalJSON ¶ added in v1.10.3

func (o TrinoOptionsAllOf) MarshalJSON() ([]byte, error)

func (*TrinoOptionsAllOf) SetConf ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) SetConf(v map[string]map[string]interface{})

SetConf gets a reference to the given map[string]map[string]interface{} and assigns it to the Conf field.

func (*TrinoOptionsAllOf) SetNumberWorkers ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) SetNumberWorkers(v float32)

SetNumberWorkers gets a reference to the given float32 and assigns it to the NumberWorkers field.

func (*TrinoOptionsAllOf) SetType ¶ added in v1.10.3

func (o *TrinoOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Uri ¶ added in v1.10.3

type Uri struct {
	Type *string `json:"type,omitempty"`
	Path *string `json:"path,omitempty"`
}

Uri struct for Uri

func NewUri ¶ added in v1.10.3

func NewUri() *Uri

NewUri instantiates a new Uri 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 NewUriWithDefaults ¶ added in v1.10.3

func NewUriWithDefaults() *Uri

NewUriWithDefaults instantiates a new Uri 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 (*Uri) GetPath ¶ added in v1.10.3

func (o *Uri) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*Uri) GetPathOk ¶ added in v1.10.3

func (o *Uri) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Uri) GetType ¶ added in v1.10.3

func (o *Uri) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Uri) GetTypeOk ¶ added in v1.10.3

func (o *Uri) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Uri) HasPath ¶ added in v1.10.3

func (o *Uri) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*Uri) HasType ¶ added in v1.10.3

func (o *Uri) HasType() bool

HasType returns a boolean if a field has been set.

func (Uri) MarshalJSON ¶ added in v1.10.3

func (o Uri) MarshalJSON() ([]byte, error)

func (*Uri) SetPath ¶ added in v1.10.3

func (o *Uri) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*Uri) SetType ¶ added in v1.10.3

func (o *Uri) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Uri) ToMap ¶ added in v1.10.3

func (o Uri) ToMap() (map[string]interface{}, error)

type Usage ¶

type Usage struct {
	ProductType      *string            `json:"product_type,omitempty"`
	Quantity         *float32           `json:"quantity,omitempty"`
	ProductReference *string            `json:"product_reference,omitempty"`
	Created          *time.Time         `json:"created,omitempty"`
	Dimensions       *map[string]string `json:"dimensions,omitempty"`
}

Usage struct for Usage

func NewUsage ¶

func NewUsage() *Usage

NewUsage instantiates a new Usage 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 NewUsageWithDefaults ¶

func NewUsageWithDefaults() *Usage

NewUsageWithDefaults instantiates a new Usage 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 (*Usage) GetCreated ¶

func (o *Usage) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Usage) GetCreatedOk ¶

func (o *Usage) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Usage) GetDimensions ¶

func (o *Usage) GetDimensions() map[string]string

GetDimensions returns the Dimensions field value if set, zero value otherwise.

func (*Usage) GetDimensionsOk ¶

func (o *Usage) GetDimensionsOk() (*map[string]string, bool)

GetDimensionsOk returns a tuple with the Dimensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Usage) GetProductReference ¶

func (o *Usage) GetProductReference() string

GetProductReference returns the ProductReference field value if set, zero value otherwise.

func (*Usage) GetProductReferenceOk ¶

func (o *Usage) GetProductReferenceOk() (*string, bool)

GetProductReferenceOk returns a tuple with the ProductReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Usage) GetProductType ¶

func (o *Usage) GetProductType() string

GetProductType returns the ProductType field value if set, zero value otherwise.

func (*Usage) GetProductTypeOk ¶

func (o *Usage) GetProductTypeOk() (*string, bool)

GetProductTypeOk returns a tuple with the ProductType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Usage) GetQuantity ¶

func (o *Usage) GetQuantity() float32

GetQuantity returns the Quantity field value if set, zero value otherwise.

func (*Usage) GetQuantityOk ¶

func (o *Usage) GetQuantityOk() (*float32, bool)

GetQuantityOk returns a tuple with the Quantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Usage) HasCreated ¶

func (o *Usage) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Usage) HasDimensions ¶

func (o *Usage) HasDimensions() bool

HasDimensions returns a boolean if a field has been set.

func (*Usage) HasProductReference ¶

func (o *Usage) HasProductReference() bool

HasProductReference returns a boolean if a field has been set.

func (*Usage) HasProductType ¶

func (o *Usage) HasProductType() bool

HasProductType returns a boolean if a field has been set.

func (*Usage) HasQuantity ¶

func (o *Usage) HasQuantity() bool

HasQuantity returns a boolean if a field has been set.

func (Usage) MarshalJSON ¶

func (o Usage) MarshalJSON() ([]byte, error)

func (*Usage) SetCreated ¶

func (o *Usage) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Usage) SetDimensions ¶

func (o *Usage) SetDimensions(v map[string]string)

SetDimensions gets a reference to the given map[string]string and assigns it to the Dimensions field.

func (*Usage) SetProductReference ¶

func (o *Usage) SetProductReference(v string)

SetProductReference gets a reference to the given string and assigns it to the ProductReference field.

func (*Usage) SetProductType ¶

func (o *Usage) SetProductType(v string)

SetProductType gets a reference to the given string and assigns it to the ProductType field.

func (*Usage) SetQuantity ¶

func (o *Usage) SetQuantity(v float32)

SetQuantity gets a reference to the given float32 and assigns it to the Quantity field.

func (Usage) ToMap ¶ added in v1.10.3

func (o Usage) ToMap() (map[string]interface{}, error)

type UsageAPIService ¶ added in v1.10.3

type UsageAPIService service

UsageAPIService UsageAPI service

func (*UsageAPIService) CreateUsage ¶ added in v1.10.3

CreateUsage Create an usage

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUsageRequest

func (*UsageAPIService) CreateUsageExecute ¶ added in v1.10.3

func (a *UsageAPIService) CreateUsageExecute(r ApiCreateUsageRequest) (*Usage, *http.Response, error)

Execute executes the request

@return Usage

func (*UsageAPIService) FindUsages ¶ added in v1.10.3

FindUsages Retrieve all usages

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindUsagesRequest

func (*UsageAPIService) FindUsagesExecute ¶ added in v1.10.3

func (a *UsageAPIService) FindUsagesExecute(r ApiFindUsagesRequest) ([]Usage, *http.Response, error)

Execute executes the request

@return []Usage

type User ¶

type User struct {
	Id          *string                           `json:"id,omitempty"`
	Username    *string                           `json:"username,omitempty"`
	Firstname   *string                           `json:"firstname,omitempty"`
	Lastname    *string                           `json:"lastname,omitempty"`
	Email       *string                           `json:"email,omitempty"`
	Description *string                           `json:"description,omitempty"`
	Password    *string                           `json:"password,omitempty"`
	Created     *time.Time                        `json:"created,omitempty"`
	Updated     *time.Time                        `json:"updated,omitempty"`
	Metadata    map[string]map[string]interface{} `json:"metadata,omitempty"`
	Locked      *bool                             `json:"locked,omitempty"`
}

User struct for User

func NewUser ¶

func NewUser() *User

NewUser instantiates a new User 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 NewUserWithDefaults ¶

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User 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 (*User) GetCreated ¶

func (o *User) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*User) GetCreatedOk ¶

func (o *User) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetDescription ¶

func (o *User) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*User) GetDescriptionOk ¶

func (o *User) 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 (*User) GetEmail ¶

func (o *User) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*User) GetEmailOk ¶

func (o *User) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetFirstname ¶

func (o *User) GetFirstname() string

GetFirstname returns the Firstname field value if set, zero value otherwise.

func (*User) GetFirstnameOk ¶

func (o *User) GetFirstnameOk() (*string, bool)

GetFirstnameOk returns a tuple with the Firstname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetId ¶

func (o *User) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*User) GetIdOk ¶

func (o *User) 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 (*User) GetLastname ¶

func (o *User) GetLastname() string

GetLastname returns the Lastname field value if set, zero value otherwise.

func (*User) GetLastnameOk ¶

func (o *User) GetLastnameOk() (*string, bool)

GetLastnameOk returns a tuple with the Lastname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetLocked ¶

func (o *User) GetLocked() bool

GetLocked returns the Locked field value if set, zero value otherwise.

func (*User) GetLockedOk ¶

func (o *User) GetLockedOk() (*bool, bool)

GetLockedOk returns a tuple with the Locked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetMetadata ¶

func (o *User) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*User) GetMetadataOk ¶

func (o *User) GetMetadataOk() (map[string]map[string]interface{}, 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 (*User) GetPassword ¶

func (o *User) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*User) GetPasswordOk ¶

func (o *User) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetUpdated ¶

func (o *User) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*User) GetUpdatedOk ¶

func (o *User) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetUsername ¶

func (o *User) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*User) GetUsernameOk ¶

func (o *User) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) HasCreated ¶

func (o *User) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*User) HasDescription ¶

func (o *User) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*User) HasEmail ¶

func (o *User) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*User) HasFirstname ¶

func (o *User) HasFirstname() bool

HasFirstname returns a boolean if a field has been set.

func (*User) HasId ¶

func (o *User) HasId() bool

HasId returns a boolean if a field has been set.

func (*User) HasLastname ¶

func (o *User) HasLastname() bool

HasLastname returns a boolean if a field has been set.

func (*User) HasLocked ¶

func (o *User) HasLocked() bool

HasLocked returns a boolean if a field has been set.

func (*User) HasMetadata ¶

func (o *User) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*User) HasPassword ¶

func (o *User) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*User) HasUpdated ¶

func (o *User) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*User) HasUsername ¶

func (o *User) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (User) MarshalJSON ¶

func (o User) MarshalJSON() ([]byte, error)

func (*User) SetCreated ¶

func (o *User) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*User) SetDescription ¶

func (o *User) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*User) SetEmail ¶

func (o *User) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*User) SetFirstname ¶

func (o *User) SetFirstname(v string)

SetFirstname gets a reference to the given string and assigns it to the Firstname field.

func (*User) SetId ¶

func (o *User) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*User) SetLastname ¶

func (o *User) SetLastname(v string)

SetLastname gets a reference to the given string and assigns it to the Lastname field.

func (*User) SetLocked ¶

func (o *User) SetLocked(v bool)

SetLocked gets a reference to the given bool and assigns it to the Locked field.

func (*User) SetMetadata ¶

func (o *User) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*User) SetPassword ¶

func (o *User) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*User) SetUpdated ¶

func (o *User) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*User) SetUsername ¶

func (o *User) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (User) ToMap ¶ added in v1.10.3

func (o User) ToMap() (map[string]interface{}, error)

type User1 ¶ added in v1.10.3

type User1 struct {
	Id   string  `json:"id"`
	Type *string `json:"type,omitempty"`
}

User1 Object User.

func NewUser1 ¶ added in v1.10.3

func NewUser1(id string) *User1

NewUser1 instantiates a new User1 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 NewUser1WithDefaults ¶ added in v1.10.3

func NewUser1WithDefaults() *User1

NewUser1WithDefaults instantiates a new User1 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 (*User1) GetId ¶ added in v1.10.3

func (o *User1) GetId() string

GetId returns the Id field value

func (*User1) GetIdOk ¶ added in v1.10.3

func (o *User1) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*User1) GetType ¶ added in v1.10.3

func (o *User1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*User1) GetTypeOk ¶ added in v1.10.3

func (o *User1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User1) HasType ¶ added in v1.10.3

func (o *User1) HasType() bool

HasType returns a boolean if a field has been set.

func (User1) MarshalJSON ¶ added in v1.10.3

func (o User1) MarshalJSON() ([]byte, error)

func (*User1) SetId ¶ added in v1.10.3

func (o *User1) SetId(v string)

SetId sets field value

func (*User1) SetType ¶ added in v1.10.3

func (o *User1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (User1) ToMap ¶ added in v1.10.3

func (o User1) ToMap() (map[string]interface{}, error)

func (*User1) UnmarshalJSON ¶ added in v1.10.3

func (o *User1) UnmarshalJSON(bytes []byte) (err error)

type User1AllOf ¶ added in v1.10.3

type User1AllOf struct {
	Type *string `json:"type,omitempty"`
}

User1AllOf struct for User1AllOf

func NewUser1AllOf ¶ added in v1.10.3

func NewUser1AllOf() *User1AllOf

NewUser1AllOf instantiates a new User1AllOf 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 NewUser1AllOfWithDefaults ¶ added in v1.10.3

func NewUser1AllOfWithDefaults() *User1AllOf

NewUser1AllOfWithDefaults instantiates a new User1AllOf 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 (*User1AllOf) GetType ¶ added in v1.10.3

func (o *User1AllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*User1AllOf) GetTypeOk ¶ added in v1.10.3

func (o *User1AllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User1AllOf) HasType ¶ added in v1.10.3

func (o *User1AllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (User1AllOf) MarshalJSON ¶ added in v1.10.3

func (o User1AllOf) MarshalJSON() ([]byte, error)

func (*User1AllOf) SetType ¶ added in v1.10.3

func (o *User1AllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type UserAPIService ¶ added in v1.10.3

type UserAPIService service

UserAPIService UserAPI service

func (*UserAPIService) CreateUser ¶ added in v1.10.3

CreateUser Create a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateUserRequest

func (*UserAPIService) CreateUserExecute ¶ added in v1.10.3

func (a *UserAPIService) CreateUserExecute(r ApiCreateUserRequest) (*User, *http.Response, error)

Execute executes the request

@return User

func (*UserAPIService) DeleteUserById ¶ added in v1.10.3

func (a *UserAPIService) DeleteUserById(ctx context.Context, userId string) ApiDeleteUserByIdRequest

DeleteUserById Delete a user by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId Id of the user
@return ApiDeleteUserByIdRequest

func (*UserAPIService) DeleteUserByIdExecute ¶ added in v1.10.3

func (a *UserAPIService) DeleteUserByIdExecute(r ApiDeleteUserByIdRequest) (*http.Response, error)

Execute executes the request

func (*UserAPIService) FindCurrentUser ¶ added in v1.10.3

func (a *UserAPIService) FindCurrentUser(ctx context.Context) ApiFindCurrentUserRequest

FindCurrentUser Just... me

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindCurrentUserRequest

func (*UserAPIService) FindCurrentUserExecute ¶ added in v1.10.3

func (a *UserAPIService) FindCurrentUserExecute(r ApiFindCurrentUserRequest) (*User, *http.Response, error)

Execute executes the request

@return User

func (*UserAPIService) FindLogsByUserId ¶ added in v1.10.3

func (a *UserAPIService) FindLogsByUserId(ctx context.Context, userId string) ApiFindLogsByUserIdRequest

FindLogsByUserId Find logs by a user id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId Id of the user
@return ApiFindLogsByUserIdRequest

func (*UserAPIService) FindLogsByUserIdExecute ¶ added in v1.10.3

func (a *UserAPIService) FindLogsByUserIdExecute(r ApiFindLogsByUserIdRequest) ([]AuditLog, *http.Response, error)

Execute executes the request

@return []AuditLog

func (*UserAPIService) FindRolesByUserId ¶ added in v1.10.3

func (a *UserAPIService) FindRolesByUserId(ctx context.Context, userId string) ApiFindRolesByUserIdRequest

FindRolesByUserId Find roles by a user id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId Id of the user
@return ApiFindRolesByUserIdRequest

func (*UserAPIService) FindRolesByUserIdExecute ¶ added in v1.10.3

func (a *UserAPIService) FindRolesByUserIdExecute(r ApiFindRolesByUserIdRequest) ([]RoleAndAssignment, *http.Response, error)

Execute executes the request

@return []RoleAndAssignment

func (*UserAPIService) FindUserById ¶ added in v1.10.3

func (a *UserAPIService) FindUserById(ctx context.Context, userId string) ApiFindUserByIdRequest

FindUserById Find user by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId Id of the user
@return ApiFindUserByIdRequest

func (*UserAPIService) FindUserByIdExecute ¶ added in v1.10.3

func (a *UserAPIService) FindUserByIdExecute(r ApiFindUserByIdRequest) (*User, *http.Response, error)

Execute executes the request

@return User

func (*UserAPIService) FindUserByRemoteUserId ¶ added in v1.10.3

func (a *UserAPIService) FindUserByRemoteUserId(ctx context.Context, remoteUserId string) ApiFindUserByRemoteUserIdRequest

FindUserByRemoteUserId Find user by remote user id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param remoteUserId Remote id of the user
@return ApiFindUserByRemoteUserIdRequest

func (*UserAPIService) FindUserByRemoteUserIdExecute ¶ added in v1.10.3

func (a *UserAPIService) FindUserByRemoteUserIdExecute(r ApiFindUserByRemoteUserIdRequest) (*User, *http.Response, error)

Execute executes the request

@return User

func (*UserAPIService) FindUsers ¶ added in v1.10.3

FindUsers Retrieve all users

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindUsersRequest

func (*UserAPIService) FindUsersExecute ¶ added in v1.10.3

func (a *UserAPIService) FindUsersExecute(r ApiFindUsersRequest) ([]User, *http.Response, error)

Execute executes the request

@return []User

func (*UserAPIService) GetAuditLogs ¶ added in v1.10.3

GetAuditLogs Find logs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetAuditLogsRequest

func (*UserAPIService) GetAuditLogsExecute ¶ added in v1.10.3

func (a *UserAPIService) GetAuditLogsExecute(r ApiGetAuditLogsRequest) ([]AuditLog, *http.Response, error)

Execute executes the request

@return []AuditLog

func (*UserAPIService) UpdateUser ¶ added in v1.10.3

func (a *UserAPIService) UpdateUser(ctx context.Context, userId string) ApiUpdateUserRequest

UpdateUser Update a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param userId Id of the user
@return ApiUpdateUserRequest

func (*UserAPIService) UpdateUserExecute ¶ added in v1.10.3

func (a *UserAPIService) UpdateUserExecute(r ApiUpdateUserRequest) (*User, *http.Response, error)

Execute executes the request

@return User

type UserActivity ¶ added in v1.10.3

type UserActivity struct {
	Data          map[string]interface{} `json:"data,omitempty"`
	Id            *string                `json:"id,omitempty"`
	Time          *time.Time             `json:"time,omitempty"`
	ReactionCount []Reaction             `json:"reaction_count,omitempty"`
	Type          *string                `json:"type,omitempty"`
	Actor         User1                  `json:"actor"`
	Target        Target1                `json:"target"`
	Verb          string                 `json:"verb"`
}

UserActivity Object UserActivity.

func NewUserActivity ¶ added in v1.10.3

func NewUserActivity(actor User1, target Target1, verb string) *UserActivity

NewUserActivity instantiates a new UserActivity 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 NewUserActivityWithDefaults ¶ added in v1.10.3

func NewUserActivityWithDefaults() *UserActivity

NewUserActivityWithDefaults instantiates a new UserActivity 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 (*UserActivity) GetActor ¶ added in v1.10.3

func (o *UserActivity) GetActor() User1

GetActor returns the Actor field value

func (*UserActivity) GetActorOk ¶ added in v1.10.3

func (o *UserActivity) GetActorOk() (*User1, bool)

GetActorOk returns a tuple with the Actor field value and a boolean to check if the value has been set.

func (*UserActivity) GetData ¶ added in v1.10.3

func (o *UserActivity) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*UserActivity) GetDataOk ¶ added in v1.10.3

func (o *UserActivity) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserActivity) GetId ¶ added in v1.10.3

func (o *UserActivity) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UserActivity) GetIdOk ¶ added in v1.10.3

func (o *UserActivity) 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 (*UserActivity) GetReactionCount ¶ added in v1.10.3

func (o *UserActivity) GetReactionCount() []Reaction

GetReactionCount returns the ReactionCount field value if set, zero value otherwise.

func (*UserActivity) GetReactionCountOk ¶ added in v1.10.3

func (o *UserActivity) GetReactionCountOk() ([]Reaction, bool)

GetReactionCountOk returns a tuple with the ReactionCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserActivity) GetTarget ¶ added in v1.10.3

func (o *UserActivity) GetTarget() Target1

GetTarget returns the Target field value

func (*UserActivity) GetTargetOk ¶ added in v1.10.3

func (o *UserActivity) GetTargetOk() (*Target1, bool)

GetTargetOk returns a tuple with the Target field value and a boolean to check if the value has been set.

func (*UserActivity) GetTime ¶ added in v1.10.3

func (o *UserActivity) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*UserActivity) GetTimeOk ¶ added in v1.10.3

func (o *UserActivity) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserActivity) GetType ¶ added in v1.10.3

func (o *UserActivity) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*UserActivity) GetTypeOk ¶ added in v1.10.3

func (o *UserActivity) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserActivity) GetVerb ¶ added in v1.10.3

func (o *UserActivity) GetVerb() string

GetVerb returns the Verb field value

func (*UserActivity) GetVerbOk ¶ added in v1.10.3

func (o *UserActivity) GetVerbOk() (*string, bool)

GetVerbOk returns a tuple with the Verb field value and a boolean to check if the value has been set.

func (*UserActivity) HasData ¶ added in v1.10.3

func (o *UserActivity) HasData() bool

HasData returns a boolean if a field has been set.

func (*UserActivity) HasId ¶ added in v1.10.3

func (o *UserActivity) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserActivity) HasReactionCount ¶ added in v1.10.3

func (o *UserActivity) HasReactionCount() bool

HasReactionCount returns a boolean if a field has been set.

func (*UserActivity) HasTime ¶ added in v1.10.3

func (o *UserActivity) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*UserActivity) HasType ¶ added in v1.10.3

func (o *UserActivity) HasType() bool

HasType returns a boolean if a field has been set.

func (UserActivity) MarshalJSON ¶ added in v1.10.3

func (o UserActivity) MarshalJSON() ([]byte, error)

func (*UserActivity) SetActor ¶ added in v1.10.3

func (o *UserActivity) SetActor(v User1)

SetActor sets field value

func (*UserActivity) SetData ¶ added in v1.10.3

func (o *UserActivity) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*UserActivity) SetId ¶ added in v1.10.3

func (o *UserActivity) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UserActivity) SetReactionCount ¶ added in v1.10.3

func (o *UserActivity) SetReactionCount(v []Reaction)

SetReactionCount gets a reference to the given []Reaction and assigns it to the ReactionCount field.

func (*UserActivity) SetTarget ¶ added in v1.10.3

func (o *UserActivity) SetTarget(v Target1)

SetTarget sets field value

func (*UserActivity) SetTime ¶ added in v1.10.3

func (o *UserActivity) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*UserActivity) SetType ¶ added in v1.10.3

func (o *UserActivity) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*UserActivity) SetVerb ¶ added in v1.10.3

func (o *UserActivity) SetVerb(v string)

SetVerb sets field value

func (UserActivity) ToMap ¶ added in v1.10.3

func (o UserActivity) ToMap() (map[string]interface{}, error)

func (*UserActivity) UnmarshalJSON ¶ added in v1.10.3

func (o *UserActivity) UnmarshalJSON(bytes []byte) (err error)

type ValidationError ¶ added in v1.10.3

type ValidationError struct {
	Loc  []Location1Inner `json:"loc"`
	Msg  string           `json:"msg"`
	Type string           `json:"type"`
}

ValidationError struct for ValidationError

func NewValidationError ¶ added in v1.10.3

func NewValidationError(loc []Location1Inner, msg string, type_ string) *ValidationError

NewValidationError instantiates a new ValidationError 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 NewValidationErrorWithDefaults ¶ added in v1.10.3

func NewValidationErrorWithDefaults() *ValidationError

NewValidationErrorWithDefaults instantiates a new ValidationError 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 (*ValidationError) GetLoc ¶ added in v1.10.3

func (o *ValidationError) GetLoc() []Location1Inner

GetLoc returns the Loc field value

func (*ValidationError) GetLocOk ¶ added in v1.10.3

func (o *ValidationError) GetLocOk() ([]Location1Inner, bool)

GetLocOk returns a tuple with the Loc field value and a boolean to check if the value has been set.

func (*ValidationError) GetMsg ¶ added in v1.10.3

func (o *ValidationError) GetMsg() string

GetMsg returns the Msg field value

func (*ValidationError) GetMsgOk ¶ added in v1.10.3

func (o *ValidationError) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value and a boolean to check if the value has been set.

func (*ValidationError) GetType ¶ added in v1.10.3

func (o *ValidationError) GetType() string

GetType returns the Type field value

func (*ValidationError) GetTypeOk ¶ added in v1.10.3

func (o *ValidationError) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (ValidationError) MarshalJSON ¶ added in v1.10.3

func (o ValidationError) MarshalJSON() ([]byte, error)

func (*ValidationError) SetLoc ¶ added in v1.10.3

func (o *ValidationError) SetLoc(v []Location1Inner)

SetLoc sets field value

func (*ValidationError) SetMsg ¶ added in v1.10.3

func (o *ValidationError) SetMsg(v string)

SetMsg sets field value

func (*ValidationError) SetType ¶ added in v1.10.3

func (o *ValidationError) SetType(v string)

SetType sets field value

func (ValidationError) ToMap ¶ added in v1.10.3

func (o ValidationError) ToMap() (map[string]interface{}, error)

func (*ValidationError) UnmarshalJSON ¶ added in v1.10.3

func (o *ValidationError) UnmarshalJSON(bytes []byte) (err error)

type ValidityAction ¶ added in v1.10.3

type ValidityAction struct {
	Type     *string                         `json:"type,omitempty"`
	Language *EtlDagSchemasEnumsLanguageType `json:"language,omitempty"`
	Dag      Dag                             `json:"dag"`
}

ValidityAction Validity Request.

func NewValidityAction ¶ added in v1.10.3

func NewValidityAction(dag Dag) *ValidityAction

NewValidityAction instantiates a new ValidityAction 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 NewValidityActionWithDefaults ¶ added in v1.10.3

func NewValidityActionWithDefaults() *ValidityAction

NewValidityActionWithDefaults instantiates a new ValidityAction 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 (*ValidityAction) GetDag ¶ added in v1.10.3

func (o *ValidityAction) GetDag() Dag

GetDag returns the Dag field value

func (*ValidityAction) GetDagOk ¶ added in v1.10.3

func (o *ValidityAction) GetDagOk() (*Dag, bool)

GetDagOk returns a tuple with the Dag field value and a boolean to check if the value has been set.

func (*ValidityAction) GetLanguage ¶ added in v1.10.3

GetLanguage returns the Language field value if set, zero value otherwise.

func (*ValidityAction) GetLanguageOk ¶ added in v1.10.3

func (o *ValidityAction) GetLanguageOk() (*EtlDagSchemasEnumsLanguageType, 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 (*ValidityAction) GetType ¶ added in v1.10.3

func (o *ValidityAction) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ValidityAction) GetTypeOk ¶ added in v1.10.3

func (o *ValidityAction) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidityAction) HasLanguage ¶ added in v1.10.3

func (o *ValidityAction) HasLanguage() bool

HasLanguage returns a boolean if a field has been set.

func (*ValidityAction) HasType ¶ added in v1.10.3

func (o *ValidityAction) HasType() bool

HasType returns a boolean if a field has been set.

func (ValidityAction) MarshalJSON ¶ added in v1.10.3

func (o ValidityAction) MarshalJSON() ([]byte, error)

func (*ValidityAction) SetDag ¶ added in v1.10.3

func (o *ValidityAction) SetDag(v Dag)

SetDag sets field value

func (*ValidityAction) SetLanguage ¶ added in v1.10.3

SetLanguage gets a reference to the given EtlDagSchemasEnumsLanguageType and assigns it to the Language field.

func (*ValidityAction) SetType ¶ added in v1.10.3

func (o *ValidityAction) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (ValidityAction) ToMap ¶ added in v1.10.3

func (o ValidityAction) ToMap() (map[string]interface{}, error)

func (*ValidityAction) UnmarshalJSON ¶ added in v1.10.3

func (o *ValidityAction) UnmarshalJSON(bytes []byte) (err error)

type VerificationAPIService ¶ added in v1.10.3

type VerificationAPIService service

VerificationAPIService VerificationAPI service

func (*VerificationAPIService) CreateVerification ¶ added in v1.10.3

CreateVerification Create a verification

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateVerificationRequest

func (*VerificationAPIService) CreateVerificationExecute ¶ added in v1.10.3

func (a *VerificationAPIService) CreateVerificationExecute(r ApiCreateVerificationRequest) (*http.Response, error)

Execute executes the request

func (*VerificationAPIService) FindVerificationByCode ¶ added in v1.10.3

FindVerificationByCode Find a verification by code

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindVerificationByCodeRequest

func (*VerificationAPIService) FindVerificationByCodeExecute ¶ added in v1.10.3

Execute executes the request

@return FindVerificationByCode200Response

type WebHookNotification ¶

type WebHookNotification struct {
	Notification
	Type    *string            `json:"type,omitempty"`
	Url     *string            `json:"url,omitempty"`
	Method  *string            `json:"method,omitempty"`
	Headers *map[string]string `json:"headers,omitempty"`
}

WebHookNotification struct for WebHookNotification

func NewWebHookNotification ¶

func NewWebHookNotification() *WebHookNotification

NewWebHookNotification instantiates a new WebHookNotification 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 NewWebHookNotificationWithDefaults ¶

func NewWebHookNotificationWithDefaults() *WebHookNotification

NewWebHookNotificationWithDefaults instantiates a new WebHookNotification 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 (*WebHookNotification) GetHeaders ¶

func (o *WebHookNotification) GetHeaders() map[string]string

GetHeaders returns the Headers field value if set, zero value otherwise.

func (*WebHookNotification) GetHeadersOk ¶

func (o *WebHookNotification) GetHeadersOk() (*map[string]string, bool)

GetHeadersOk returns a tuple with the Headers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookNotification) GetMethod ¶

func (o *WebHookNotification) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*WebHookNotification) GetMethodOk ¶

func (o *WebHookNotification) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookNotification) GetType ¶

func (o *WebHookNotification) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WebHookNotification) GetTypeOk ¶

func (o *WebHookNotification) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookNotification) GetUrl ¶

func (o *WebHookNotification) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*WebHookNotification) GetUrlOk ¶

func (o *WebHookNotification) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookNotification) HasHeaders ¶

func (o *WebHookNotification) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*WebHookNotification) HasMethod ¶

func (o *WebHookNotification) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*WebHookNotification) HasType ¶

func (o *WebHookNotification) HasType() bool

HasType returns a boolean if a field has been set.

func (*WebHookNotification) HasUrl ¶

func (o *WebHookNotification) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (WebHookNotification) MarshalJSON ¶

func (o WebHookNotification) MarshalJSON() ([]byte, error)

func (*WebHookNotification) SetHeaders ¶

func (o *WebHookNotification) SetHeaders(v map[string]string)

SetHeaders gets a reference to the given map[string]string and assigns it to the Headers field.

func (*WebHookNotification) SetMethod ¶

func (o *WebHookNotification) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*WebHookNotification) SetType ¶

func (o *WebHookNotification) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WebHookNotification) SetUrl ¶

func (o *WebHookNotification) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (WebHookNotification) ToMap ¶ added in v1.10.3

func (o WebHookNotification) ToMap() (map[string]interface{}, error)

type WebHookNotificationAllOf ¶

type WebHookNotificationAllOf struct {
	Type    *string            `json:"type,omitempty"`
	Url     *string            `json:"url,omitempty"`
	Method  *string            `json:"method,omitempty"`
	Headers *map[string]string `json:"headers,omitempty"`
}

WebHookNotificationAllOf struct for WebHookNotificationAllOf

func NewWebHookNotificationAllOf ¶

func NewWebHookNotificationAllOf() *WebHookNotificationAllOf

NewWebHookNotificationAllOf instantiates a new WebHookNotificationAllOf 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 NewWebHookNotificationAllOfWithDefaults ¶

func NewWebHookNotificationAllOfWithDefaults() *WebHookNotificationAllOf

NewWebHookNotificationAllOfWithDefaults instantiates a new WebHookNotificationAllOf 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 (*WebHookNotificationAllOf) GetHeaders ¶

func (o *WebHookNotificationAllOf) GetHeaders() map[string]string

GetHeaders returns the Headers field value if set, zero value otherwise.

func (*WebHookNotificationAllOf) GetHeadersOk ¶

func (o *WebHookNotificationAllOf) GetHeadersOk() (*map[string]string, bool)

GetHeadersOk returns a tuple with the Headers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookNotificationAllOf) GetMethod ¶

func (o *WebHookNotificationAllOf) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*WebHookNotificationAllOf) GetMethodOk ¶

func (o *WebHookNotificationAllOf) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookNotificationAllOf) GetType ¶

func (o *WebHookNotificationAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WebHookNotificationAllOf) GetTypeOk ¶

func (o *WebHookNotificationAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookNotificationAllOf) GetUrl ¶

func (o *WebHookNotificationAllOf) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*WebHookNotificationAllOf) GetUrlOk ¶

func (o *WebHookNotificationAllOf) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebHookNotificationAllOf) HasHeaders ¶

func (o *WebHookNotificationAllOf) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*WebHookNotificationAllOf) HasMethod ¶

func (o *WebHookNotificationAllOf) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*WebHookNotificationAllOf) HasType ¶

func (o *WebHookNotificationAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*WebHookNotificationAllOf) HasUrl ¶

func (o *WebHookNotificationAllOf) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (WebHookNotificationAllOf) MarshalJSON ¶

func (o WebHookNotificationAllOf) MarshalJSON() ([]byte, error)

func (*WebHookNotificationAllOf) SetHeaders ¶

func (o *WebHookNotificationAllOf) SetHeaders(v map[string]string)

SetHeaders gets a reference to the given map[string]string and assigns it to the Headers field.

func (*WebHookNotificationAllOf) SetMethod ¶

func (o *WebHookNotificationAllOf) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*WebHookNotificationAllOf) SetType ¶

func (o *WebHookNotificationAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WebHookNotificationAllOf) SetUrl ¶

func (o *WebHookNotificationAllOf) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type Workflow ¶

type Workflow struct {
	Id            *string                           `json:"id,omitempty"`
	Name          *string                           `json:"name,omitempty"`
	Description   *string                           `json:"description,omitempty"`
	ProjectId     *string                           `json:"project_id,omitempty"`
	IdentityId    *string                           `json:"identity_id,omitempty"`
	Created       *time.Time                        `json:"created,omitempty"`
	Updated       *time.Time                        `json:"updated,omitempty"`
	Tasks         []ITask                           `json:"tasks,omitempty"`
	Schedule      *ISchedule                        `json:"schedule,omitempty"`
	Notifications *Notifications                    `json:"notifications,omitempty"`
	Parameters    *map[string]string                `json:"parameters,omitempty"`
	Labels        *map[string]string                `json:"labels,omitempty"`
	Metadata      map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Workflow struct for Workflow

func NewWorkflow ¶

func NewWorkflow() *Workflow

NewWorkflow instantiates a new Workflow 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 NewWorkflowWithDefaults ¶

func NewWorkflowWithDefaults() *Workflow

NewWorkflowWithDefaults instantiates a new Workflow 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 (*Workflow) GetCreated ¶

func (o *Workflow) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Workflow) GetCreatedOk ¶

func (o *Workflow) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetDescription ¶

func (o *Workflow) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Workflow) GetDescriptionOk ¶

func (o *Workflow) 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 (*Workflow) GetId ¶

func (o *Workflow) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Workflow) GetIdOk ¶

func (o *Workflow) 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 (*Workflow) GetIdentityId ¶

func (o *Workflow) GetIdentityId() string

GetIdentityId returns the IdentityId field value if set, zero value otherwise.

func (*Workflow) GetIdentityIdOk ¶

func (o *Workflow) GetIdentityIdOk() (*string, bool)

GetIdentityIdOk returns a tuple with the IdentityId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetLabels ¶

func (o *Workflow) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Workflow) GetLabelsOk ¶

func (o *Workflow) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetMetadata ¶

func (o *Workflow) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Workflow) GetMetadataOk ¶

func (o *Workflow) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Workflow) GetName ¶

func (o *Workflow) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Workflow) GetNameOk ¶

func (o *Workflow) 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 (*Workflow) GetNotifications ¶

func (o *Workflow) GetNotifications() Notifications

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*Workflow) GetNotificationsOk ¶

func (o *Workflow) GetNotificationsOk() (*Notifications, bool)

GetNotificationsOk returns a tuple with the Notifications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetParameters ¶

func (o *Workflow) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*Workflow) GetParametersOk ¶

func (o *Workflow) GetParametersOk() (map[string]string, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetProjectId ¶

func (o *Workflow) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*Workflow) GetProjectIdOk ¶

func (o *Workflow) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetSchedule ¶

func (o *Workflow) GetSchedule() ISchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*Workflow) GetScheduleOk ¶

func (o *Workflow) GetScheduleOk() (*ISchedule, bool)

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) GetTasks ¶

func (o *Workflow) GetTasks() []ITask

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*Workflow) GetTasksOk ¶

func (o *Workflow) GetTasksOk() ([]ITask, 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 (*Workflow) GetUpdated ¶

func (o *Workflow) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Workflow) GetUpdatedOk ¶

func (o *Workflow) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow) HasCreated ¶

func (o *Workflow) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Workflow) HasDescription ¶

func (o *Workflow) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Workflow) HasId ¶

func (o *Workflow) HasId() bool

HasId returns a boolean if a field has been set.

func (*Workflow) HasIdentityId ¶

func (o *Workflow) HasIdentityId() bool

HasIdentityId returns a boolean if a field has been set.

func (*Workflow) HasLabels ¶

func (o *Workflow) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Workflow) HasMetadata ¶

func (o *Workflow) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Workflow) HasName ¶

func (o *Workflow) HasName() bool

HasName returns a boolean if a field has been set.

func (*Workflow) HasNotifications ¶

func (o *Workflow) HasNotifications() bool

HasNotifications returns a boolean if a field has been set.

func (*Workflow) HasParameters ¶

func (o *Workflow) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*Workflow) HasProjectId ¶

func (o *Workflow) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*Workflow) HasSchedule ¶

func (o *Workflow) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*Workflow) HasTasks ¶

func (o *Workflow) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (*Workflow) HasUpdated ¶

func (o *Workflow) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (Workflow) MarshalJSON ¶

func (o Workflow) MarshalJSON() ([]byte, error)

func (*Workflow) SetCreated ¶

func (o *Workflow) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Workflow) SetDescription ¶

func (o *Workflow) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Workflow) SetId ¶

func (o *Workflow) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Workflow) SetIdentityId ¶

func (o *Workflow) SetIdentityId(v string)

SetIdentityId gets a reference to the given string and assigns it to the IdentityId field.

func (*Workflow) SetLabels ¶

func (o *Workflow) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Workflow) SetMetadata ¶

func (o *Workflow) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Workflow) SetName ¶

func (o *Workflow) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Workflow) SetNotifications ¶

func (o *Workflow) SetNotifications(v Notifications)

SetNotifications gets a reference to the given Notifications and assigns it to the Notifications field.

func (*Workflow) SetParameters ¶

func (o *Workflow) SetParameters(v map[string]string)

SetParameters gets a reference to the given []string and assigns it to the Parameters field.

func (*Workflow) SetProjectId ¶

func (o *Workflow) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*Workflow) SetSchedule ¶

func (o *Workflow) SetSchedule(v ISchedule)

SetSchedule gets a reference to the given Schedule and assigns it to the Schedule field.

func (*Workflow) SetTasks ¶

func (o *Workflow) SetTasks(v []ITask)

SetTasks gets a reference to the given []Task and assigns it to the Tasks field.

func (*Workflow) SetUpdated ¶

func (o *Workflow) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (Workflow) ToMap ¶ added in v1.10.3

func (o Workflow) ToMap() (map[string]interface{}, error)

type Workflow1 ¶ added in v1.10.3

type Workflow1 struct {
	Id     string    `json:"id"`
	Type   *string   `json:"type,omitempty"`
	Parent *Project1 `json:"parent,omitempty"`
}

Workflow1 Object Workflow.

func NewWorkflow1 ¶ added in v1.10.3

func NewWorkflow1(id string) *Workflow1

NewWorkflow1 instantiates a new Workflow1 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 NewWorkflow1WithDefaults ¶ added in v1.10.3

func NewWorkflow1WithDefaults() *Workflow1

NewWorkflow1WithDefaults instantiates a new Workflow1 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 (*Workflow1) GetId ¶ added in v1.10.3

func (o *Workflow1) GetId() string

GetId returns the Id field value

func (*Workflow1) GetIdOk ¶ added in v1.10.3

func (o *Workflow1) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Workflow1) GetParent ¶ added in v1.10.3

func (o *Workflow1) GetParent() Project1

GetParent returns the Parent field value if set, zero value otherwise.

func (*Workflow1) GetParentOk ¶ added in v1.10.3

func (o *Workflow1) GetParentOk() (*Project1, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow1) GetType ¶ added in v1.10.3

func (o *Workflow1) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Workflow1) GetTypeOk ¶ added in v1.10.3

func (o *Workflow1) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow1) HasParent ¶ added in v1.10.3

func (o *Workflow1) HasParent() bool

HasParent returns a boolean if a field has been set.

func (*Workflow1) HasType ¶ added in v1.10.3

func (o *Workflow1) HasType() bool

HasType returns a boolean if a field has been set.

func (Workflow1) MarshalJSON ¶ added in v1.10.3

func (o Workflow1) MarshalJSON() ([]byte, error)

func (*Workflow1) SetId ¶ added in v1.10.3

func (o *Workflow1) SetId(v string)

SetId sets field value

func (*Workflow1) SetParent ¶ added in v1.10.3

func (o *Workflow1) SetParent(v Project1)

SetParent gets a reference to the given Project1 and assigns it to the Parent field.

func (*Workflow1) SetType ¶ added in v1.10.3

func (o *Workflow1) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (Workflow1) ToMap ¶ added in v1.10.3

func (o Workflow1) ToMap() (map[string]interface{}, error)

func (*Workflow1) UnmarshalJSON ¶ added in v1.10.3

func (o *Workflow1) UnmarshalJSON(bytes []byte) (err error)

type Workflow1AllOf ¶ added in v1.10.3

type Workflow1AllOf struct {
	Type   *string   `json:"type,omitempty"`
	Parent *Project1 `json:"parent,omitempty"`
}

Workflow1AllOf struct for Workflow1AllOf

func NewWorkflow1AllOf ¶ added in v1.10.3

func NewWorkflow1AllOf() *Workflow1AllOf

NewWorkflow1AllOf instantiates a new Workflow1AllOf 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 NewWorkflow1AllOfWithDefaults ¶ added in v1.10.3

func NewWorkflow1AllOfWithDefaults() *Workflow1AllOf

NewWorkflow1AllOfWithDefaults instantiates a new Workflow1AllOf 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 (*Workflow1AllOf) GetParent ¶ added in v1.10.3

func (o *Workflow1AllOf) GetParent() Project1

GetParent returns the Parent field value if set, zero value otherwise.

func (*Workflow1AllOf) GetParentOk ¶ added in v1.10.3

func (o *Workflow1AllOf) GetParentOk() (*Project1, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow1AllOf) GetType ¶ added in v1.10.3

func (o *Workflow1AllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Workflow1AllOf) GetTypeOk ¶ added in v1.10.3

func (o *Workflow1AllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workflow1AllOf) HasParent ¶ added in v1.10.3

func (o *Workflow1AllOf) HasParent() bool

HasParent returns a boolean if a field has been set.

func (*Workflow1AllOf) HasType ¶ added in v1.10.3

func (o *Workflow1AllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (Workflow1AllOf) MarshalJSON ¶ added in v1.10.3

func (o Workflow1AllOf) MarshalJSON() ([]byte, error)

func (*Workflow1AllOf) SetParent ¶ added in v1.10.3

func (o *Workflow1AllOf) SetParent(v Project1)

SetParent gets a reference to the given Project1 and assigns it to the Parent field.

func (*Workflow1AllOf) SetType ¶ added in v1.10.3

func (o *Workflow1AllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type WorkflowAPIService ¶ added in v1.10.3

type WorkflowAPIService service

WorkflowAPIService WorkflowAPI service

func (*WorkflowAPIService) DeleteWorkflowById ¶ added in v1.10.3

func (a *WorkflowAPIService) DeleteWorkflowById(ctx context.Context, workflowId string) ApiDeleteWorkflowByIdRequest

DeleteWorkflowById Delete a workflow by its id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the workflow
@return ApiDeleteWorkflowByIdRequest

func (*WorkflowAPIService) DeleteWorkflowByIdExecute ¶ added in v1.10.3

func (a *WorkflowAPIService) DeleteWorkflowByIdExecute(r ApiDeleteWorkflowByIdRequest) (*http.Response, error)

Execute executes the request

func (*WorkflowAPIService) FindRunByWorkflowIdAndRunId ¶ added in v1.10.3

func (a *WorkflowAPIService) FindRunByWorkflowIdAndRunId(ctx context.Context, workflowId string, runId string) ApiFindRunByWorkflowIdAndRunIdRequest

FindRunByWorkflowIdAndRunId Find the run by a workflowId and a runId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the Workflow
@param runId Id of the Run
@return ApiFindRunByWorkflowIdAndRunIdRequest

func (*WorkflowAPIService) FindRunByWorkflowIdAndRunIdExecute ¶ added in v1.10.3

func (a *WorkflowAPIService) FindRunByWorkflowIdAndRunIdExecute(r ApiFindRunByWorkflowIdAndRunIdRequest) (*WorkflowRun, *http.Response, error)

Execute executes the request

@return WorkflowRun

func (*WorkflowAPIService) FindWorkflowById ¶ added in v1.10.3

func (a *WorkflowAPIService) FindWorkflowById(ctx context.Context, workflowId string) ApiFindWorkflowByIdRequest

FindWorkflowById Find workflow by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the workflow
@return ApiFindWorkflowByIdRequest

func (*WorkflowAPIService) FindWorkflowByIdExecute ¶ added in v1.10.3

func (a *WorkflowAPIService) FindWorkflowByIdExecute(r ApiFindWorkflowByIdRequest) (*Workflow, *http.Response, error)

Execute executes the request

@return Workflow

func (*WorkflowAPIService) FindWorkflows ¶ added in v1.10.3

FindWorkflows Retrieve all workflows

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindWorkflowsRequest

func (*WorkflowAPIService) FindWorkflowsExecute ¶ added in v1.10.3

func (a *WorkflowAPIService) FindWorkflowsExecute(r ApiFindWorkflowsRequest) (*WorkflowPage, *http.Response, error)

Execute executes the request

@return WorkflowPage

func (*WorkflowAPIService) GetStatsByWorkflowId ¶ added in v1.10.3

func (a *WorkflowAPIService) GetStatsByWorkflowId(ctx context.Context, workflowId string) ApiGetStatsByWorkflowIdRequest

GetStatsByWorkflowId Find the stats for a workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the Workflow
@return ApiGetStatsByWorkflowIdRequest

func (*WorkflowAPIService) GetStatsByWorkflowIdExecute ¶ added in v1.10.3

func (a *WorkflowAPIService) GetStatsByWorkflowIdExecute(r ApiGetStatsByWorkflowIdRequest) (*RunStats, *http.Response, error)

Execute executes the request

@return RunStats

func (*WorkflowAPIService) UpdateWorkflow ¶ added in v1.10.3

func (a *WorkflowAPIService) UpdateWorkflow(ctx context.Context, workflowId string) ApiUpdateWorkflowRequest

UpdateWorkflow Update a workflow

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workflowId Id of the workflow
@return ApiUpdateWorkflowRequest

func (*WorkflowAPIService) UpdateWorkflowExecute ¶ added in v1.10.3

func (a *WorkflowAPIService) UpdateWorkflowExecute(r ApiUpdateWorkflowRequest) (*Workflow, *http.Response, error)

Execute executes the request

@return Workflow

type WorkflowActivity ¶ added in v1.10.3

type WorkflowActivity struct {
	Data          map[string]interface{} `json:"data,omitempty"`
	Id            *string                `json:"id,omitempty"`
	Time          *time.Time             `json:"time,omitempty"`
	ReactionCount []Reaction             `json:"reaction_count,omitempty"`
	Type          *string                `json:"type,omitempty"`
	Actor         User1                  `json:"actor"`
	Target        Workflow1              `json:"target"`
	Verb          string                 `json:"verb"`
}

WorkflowActivity Object JobActivity.

func NewWorkflowActivity ¶ added in v1.10.3

func NewWorkflowActivity(actor User1, target Workflow1, verb string) *WorkflowActivity

NewWorkflowActivity instantiates a new WorkflowActivity 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 NewWorkflowActivityWithDefaults ¶ added in v1.10.3

func NewWorkflowActivityWithDefaults() *WorkflowActivity

NewWorkflowActivityWithDefaults instantiates a new WorkflowActivity 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 (*WorkflowActivity) GetActor ¶ added in v1.10.3

func (o *WorkflowActivity) GetActor() User1

GetActor returns the Actor field value

func (*WorkflowActivity) GetActorOk ¶ added in v1.10.3

func (o *WorkflowActivity) GetActorOk() (*User1, bool)

GetActorOk returns a tuple with the Actor field value and a boolean to check if the value has been set.

func (*WorkflowActivity) GetData ¶ added in v1.10.3

func (o *WorkflowActivity) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*WorkflowActivity) GetDataOk ¶ added in v1.10.3

func (o *WorkflowActivity) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActivity) GetId ¶ added in v1.10.3

func (o *WorkflowActivity) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowActivity) GetIdOk ¶ added in v1.10.3

func (o *WorkflowActivity) 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 (*WorkflowActivity) GetReactionCount ¶ added in v1.10.3

func (o *WorkflowActivity) GetReactionCount() []Reaction

GetReactionCount returns the ReactionCount field value if set, zero value otherwise.

func (*WorkflowActivity) GetReactionCountOk ¶ added in v1.10.3

func (o *WorkflowActivity) GetReactionCountOk() ([]Reaction, bool)

GetReactionCountOk returns a tuple with the ReactionCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActivity) GetTarget ¶ added in v1.10.3

func (o *WorkflowActivity) GetTarget() Workflow1

GetTarget returns the Target field value

func (*WorkflowActivity) GetTargetOk ¶ added in v1.10.3

func (o *WorkflowActivity) GetTargetOk() (*Workflow1, bool)

GetTargetOk returns a tuple with the Target field value and a boolean to check if the value has been set.

func (*WorkflowActivity) GetTime ¶ added in v1.10.3

func (o *WorkflowActivity) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*WorkflowActivity) GetTimeOk ¶ added in v1.10.3

func (o *WorkflowActivity) GetTimeOk() (*time.Time, bool)

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActivity) GetType ¶ added in v1.10.3

func (o *WorkflowActivity) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowActivity) GetTypeOk ¶ added in v1.10.3

func (o *WorkflowActivity) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActivity) GetVerb ¶ added in v1.10.3

func (o *WorkflowActivity) GetVerb() string

GetVerb returns the Verb field value

func (*WorkflowActivity) GetVerbOk ¶ added in v1.10.3

func (o *WorkflowActivity) GetVerbOk() (*string, bool)

GetVerbOk returns a tuple with the Verb field value and a boolean to check if the value has been set.

func (*WorkflowActivity) HasData ¶ added in v1.10.3

func (o *WorkflowActivity) HasData() bool

HasData returns a boolean if a field has been set.

func (*WorkflowActivity) HasId ¶ added in v1.10.3

func (o *WorkflowActivity) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowActivity) HasReactionCount ¶ added in v1.10.3

func (o *WorkflowActivity) HasReactionCount() bool

HasReactionCount returns a boolean if a field has been set.

func (*WorkflowActivity) HasTime ¶ added in v1.10.3

func (o *WorkflowActivity) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*WorkflowActivity) HasType ¶ added in v1.10.3

func (o *WorkflowActivity) HasType() bool

HasType returns a boolean if a field has been set.

func (WorkflowActivity) MarshalJSON ¶ added in v1.10.3

func (o WorkflowActivity) MarshalJSON() ([]byte, error)

func (*WorkflowActivity) SetActor ¶ added in v1.10.3

func (o *WorkflowActivity) SetActor(v User1)

SetActor sets field value

func (*WorkflowActivity) SetData ¶ added in v1.10.3

func (o *WorkflowActivity) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*WorkflowActivity) SetId ¶ added in v1.10.3

func (o *WorkflowActivity) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowActivity) SetReactionCount ¶ added in v1.10.3

func (o *WorkflowActivity) SetReactionCount(v []Reaction)

SetReactionCount gets a reference to the given []Reaction and assigns it to the ReactionCount field.

func (*WorkflowActivity) SetTarget ¶ added in v1.10.3

func (o *WorkflowActivity) SetTarget(v Workflow1)

SetTarget sets field value

func (*WorkflowActivity) SetTime ¶ added in v1.10.3

func (o *WorkflowActivity) SetTime(v time.Time)

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (*WorkflowActivity) SetType ¶ added in v1.10.3

func (o *WorkflowActivity) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowActivity) SetVerb ¶ added in v1.10.3

func (o *WorkflowActivity) SetVerb(v string)

SetVerb sets field value

func (WorkflowActivity) ToMap ¶ added in v1.10.3

func (o WorkflowActivity) ToMap() (map[string]interface{}, error)

func (*WorkflowActivity) UnmarshalJSON ¶ added in v1.10.3

func (o *WorkflowActivity) UnmarshalJSON(bytes []byte) (err error)

type WorkflowActivityAllOf ¶ added in v1.10.3

type WorkflowActivityAllOf struct {
	Type   *string   `json:"type,omitempty"`
	Actor  User1     `json:"actor"`
	Target Workflow1 `json:"target"`
	Verb   string    `json:"verb"`
}

WorkflowActivityAllOf struct for WorkflowActivityAllOf

func NewWorkflowActivityAllOf ¶ added in v1.10.3

func NewWorkflowActivityAllOf(actor User1, target Workflow1, verb string) *WorkflowActivityAllOf

NewWorkflowActivityAllOf instantiates a new WorkflowActivityAllOf 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 NewWorkflowActivityAllOfWithDefaults ¶ added in v1.10.3

func NewWorkflowActivityAllOfWithDefaults() *WorkflowActivityAllOf

NewWorkflowActivityAllOfWithDefaults instantiates a new WorkflowActivityAllOf 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 (*WorkflowActivityAllOf) GetActor ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) GetActor() User1

GetActor returns the Actor field value

func (*WorkflowActivityAllOf) GetActorOk ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) GetActorOk() (*User1, bool)

GetActorOk returns a tuple with the Actor field value and a boolean to check if the value has been set.

func (*WorkflowActivityAllOf) GetTarget ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) GetTarget() Workflow1

GetTarget returns the Target field value

func (*WorkflowActivityAllOf) GetTargetOk ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) GetTargetOk() (*Workflow1, bool)

GetTargetOk returns a tuple with the Target field value and a boolean to check if the value has been set.

func (*WorkflowActivityAllOf) GetType ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowActivityAllOf) GetTypeOk ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowActivityAllOf) GetVerb ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) GetVerb() string

GetVerb returns the Verb field value

func (*WorkflowActivityAllOf) GetVerbOk ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) GetVerbOk() (*string, bool)

GetVerbOk returns a tuple with the Verb field value and a boolean to check if the value has been set.

func (*WorkflowActivityAllOf) HasType ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (WorkflowActivityAllOf) MarshalJSON ¶ added in v1.10.3

func (o WorkflowActivityAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowActivityAllOf) SetActor ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) SetActor(v User1)

SetActor sets field value

func (*WorkflowActivityAllOf) SetTarget ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) SetTarget(v Workflow1)

SetTarget sets field value

func (*WorkflowActivityAllOf) SetType ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*WorkflowActivityAllOf) SetVerb ¶ added in v1.10.3

func (o *WorkflowActivityAllOf) SetVerb(v string)

SetVerb sets field value

type WorkflowPage ¶

type WorkflowPage struct {
	Number  *int32     `json:"number,omitempty"`
	Size    *int32     `json:"size,omitempty"`
	Content []Workflow `json:"content,omitempty"`
}

WorkflowPage typed Page

func NewWorkflowPage ¶

func NewWorkflowPage() *WorkflowPage

NewWorkflowPage instantiates a new WorkflowPage 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 NewWorkflowPageWithDefaults ¶

func NewWorkflowPageWithDefaults() *WorkflowPage

NewWorkflowPageWithDefaults instantiates a new WorkflowPage 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 (*WorkflowPage) GetContent ¶

func (o *WorkflowPage) GetContent() []Workflow

GetContent returns the Content field value if set, zero value otherwise.

func (*WorkflowPage) GetContentOk ¶

func (o *WorkflowPage) GetContentOk() ([]Workflow, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowPage) GetNumber ¶

func (o *WorkflowPage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*WorkflowPage) GetNumberOk ¶

func (o *WorkflowPage) GetNumberOk() (*int32, bool)

GetNumberOk returns a tuple with the Number field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowPage) GetSize ¶

func (o *WorkflowPage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*WorkflowPage) GetSizeOk ¶

func (o *WorkflowPage) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowPage) HasContent ¶

func (o *WorkflowPage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*WorkflowPage) HasNumber ¶

func (o *WorkflowPage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*WorkflowPage) HasSize ¶

func (o *WorkflowPage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (WorkflowPage) MarshalJSON ¶

func (o WorkflowPage) MarshalJSON() ([]byte, error)

func (*WorkflowPage) SetContent ¶

func (o *WorkflowPage) SetContent(v []Workflow)

SetContent gets a reference to the given []Workflow and assigns it to the Content field.

func (*WorkflowPage) SetNumber ¶

func (o *WorkflowPage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*WorkflowPage) SetSize ¶

func (o *WorkflowPage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (WorkflowPage) ToMap ¶ added in v1.10.3

func (o WorkflowPage) ToMap() (map[string]interface{}, error)

type WorkflowPageAllOf ¶

type WorkflowPageAllOf struct {
	Content *[]Workflow `json:"content,omitempty"`
}

WorkflowPageAllOf struct for WorkflowPageAllOf

func NewWorkflowPageAllOf ¶

func NewWorkflowPageAllOf() *WorkflowPageAllOf

NewWorkflowPageAllOf instantiates a new WorkflowPageAllOf 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 NewWorkflowPageAllOfWithDefaults ¶

func NewWorkflowPageAllOfWithDefaults() *WorkflowPageAllOf

NewWorkflowPageAllOfWithDefaults instantiates a new WorkflowPageAllOf 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 (*WorkflowPageAllOf) GetContent ¶

func (o *WorkflowPageAllOf) GetContent() []Workflow

GetContent returns the Content field value if set, zero value otherwise.

func (*WorkflowPageAllOf) GetContentOk ¶

func (o *WorkflowPageAllOf) GetContentOk() (*[]Workflow, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowPageAllOf) HasContent ¶

func (o *WorkflowPageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (WorkflowPageAllOf) MarshalJSON ¶

func (o WorkflowPageAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowPageAllOf) SetContent ¶

func (o *WorkflowPageAllOf) SetContent(v []Workflow)

SetContent gets a reference to the given []Workflow and assigns it to the Content field.

type WorkflowRun ¶

type WorkflowRun struct {
	Id               *string                           `json:"id,omitempty"`
	InfrastructureId *string                           `json:"infrastructure_id,omitempty"`
	DeviceId         *string                           `json:"device_id,omitempty"`
	WorkflowId       *string                           `json:"workflow_id,omitempty"`
	ProjectId        *string                           `json:"project_id,omitempty"`
	Name             *string                           `json:"name,omitempty"`
	Description      *string                           `json:"description,omitempty"`
	Status           *string                           `json:"status,omitempty"`
	Created          *time.Time                        `json:"created,omitempty"`
	Updated          *time.Time                        `json:"updated,omitempty"`
	Metadata         map[string]map[string]interface{} `json:"metadata,omitempty"`
}

WorkflowRun struct for WorkflowRun

func NewWorkflowRun ¶

func NewWorkflowRun() *WorkflowRun

NewWorkflowRun instantiates a new WorkflowRun 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 NewWorkflowRunWithDefaults ¶

func NewWorkflowRunWithDefaults() *WorkflowRun

NewWorkflowRunWithDefaults instantiates a new WorkflowRun 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 (*WorkflowRun) GetCreated ¶

func (o *WorkflowRun) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*WorkflowRun) GetCreatedOk ¶

func (o *WorkflowRun) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowRun) GetDescription ¶

func (o *WorkflowRun) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*WorkflowRun) GetDescriptionOk ¶

func (o *WorkflowRun) 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 (*WorkflowRun) GetDeviceId ¶ added in v1.10.3

func (o *WorkflowRun) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*WorkflowRun) GetDeviceIdOk ¶ added in v1.10.3

func (o *WorkflowRun) GetDeviceIdOk() (*string, bool)

GetDeviceIdOk returns a tuple with the DeviceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowRun) GetId ¶

func (o *WorkflowRun) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*WorkflowRun) GetIdOk ¶

func (o *WorkflowRun) 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 (*WorkflowRun) GetInfrastructureId ¶

func (o *WorkflowRun) GetInfrastructureId() string

GetInfrastructureId returns the InfrastructureId field value if set, zero value otherwise.

func (*WorkflowRun) GetInfrastructureIdOk ¶

func (o *WorkflowRun) GetInfrastructureIdOk() (*string, bool)

GetInfrastructureIdOk returns a tuple with the InfrastructureId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowRun) GetMetadata ¶

func (o *WorkflowRun) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*WorkflowRun) GetMetadataOk ¶

func (o *WorkflowRun) GetMetadataOk() (map[string]map[string]interface{}, 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 (*WorkflowRun) GetName ¶

func (o *WorkflowRun) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WorkflowRun) GetNameOk ¶

func (o *WorkflowRun) 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 (*WorkflowRun) GetProjectId ¶

func (o *WorkflowRun) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*WorkflowRun) GetProjectIdOk ¶

func (o *WorkflowRun) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowRun) GetStatus ¶

func (o *WorkflowRun) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*WorkflowRun) GetStatusOk ¶

func (o *WorkflowRun) GetStatusOk() (*string, 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 (*WorkflowRun) GetUpdated ¶

func (o *WorkflowRun) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*WorkflowRun) GetUpdatedOk ¶

func (o *WorkflowRun) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowRun) GetWorkflowId ¶

func (o *WorkflowRun) GetWorkflowId() string

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*WorkflowRun) GetWorkflowIdOk ¶

func (o *WorkflowRun) GetWorkflowIdOk() (*string, bool)

GetWorkflowIdOk returns a tuple with the WorkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowRun) HasCreated ¶

func (o *WorkflowRun) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*WorkflowRun) HasDescription ¶

func (o *WorkflowRun) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*WorkflowRun) HasDeviceId ¶ added in v1.10.3

func (o *WorkflowRun) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*WorkflowRun) HasId ¶

func (o *WorkflowRun) HasId() bool

HasId returns a boolean if a field has been set.

func (*WorkflowRun) HasInfrastructureId ¶

func (o *WorkflowRun) HasInfrastructureId() bool

HasInfrastructureId returns a boolean if a field has been set.

func (*WorkflowRun) HasMetadata ¶

func (o *WorkflowRun) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*WorkflowRun) HasName ¶

func (o *WorkflowRun) HasName() bool

HasName returns a boolean if a field has been set.

func (*WorkflowRun) HasProjectId ¶

func (o *WorkflowRun) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*WorkflowRun) HasStatus ¶

func (o *WorkflowRun) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*WorkflowRun) HasUpdated ¶

func (o *WorkflowRun) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*WorkflowRun) HasWorkflowId ¶

func (o *WorkflowRun) HasWorkflowId() bool

HasWorkflowId returns a boolean if a field has been set.

func (WorkflowRun) MarshalJSON ¶

func (o WorkflowRun) MarshalJSON() ([]byte, error)

func (*WorkflowRun) SetCreated ¶

func (o *WorkflowRun) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*WorkflowRun) SetDescription ¶

func (o *WorkflowRun) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*WorkflowRun) SetDeviceId ¶ added in v1.10.3

func (o *WorkflowRun) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*WorkflowRun) SetId ¶

func (o *WorkflowRun) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*WorkflowRun) SetInfrastructureId ¶

func (o *WorkflowRun) SetInfrastructureId(v string)

SetInfrastructureId gets a reference to the given string and assigns it to the InfrastructureId field.

func (*WorkflowRun) SetMetadata ¶

func (o *WorkflowRun) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*WorkflowRun) SetName ¶

func (o *WorkflowRun) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WorkflowRun) SetProjectId ¶

func (o *WorkflowRun) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*WorkflowRun) SetStatus ¶

func (o *WorkflowRun) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*WorkflowRun) SetUpdated ¶

func (o *WorkflowRun) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*WorkflowRun) SetWorkflowId ¶

func (o *WorkflowRun) SetWorkflowId(v string)

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

func (WorkflowRun) ToMap ¶ added in v1.10.3

func (o WorkflowRun) ToMap() (map[string]interface{}, error)

type WorkflowTask ¶

type WorkflowTask struct {
	Task
	Type *string `json:"type,omitempty"`
	Ref  *string `json:"ref,omitempty"`
}

WorkflowTask struct for WorkflowTask

func NewWorkflowTask ¶

func NewWorkflowTask() *WorkflowTask

NewWorkflowTask instantiates a new WorkflowTask 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 NewWorkflowTaskWithDefaults ¶

func NewWorkflowTaskWithDefaults() *WorkflowTask

NewWorkflowTaskWithDefaults instantiates a new WorkflowTask 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 (*WorkflowTask) GetRef ¶

func (o *WorkflowTask) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*WorkflowTask) GetRefOk ¶

func (o *WorkflowTask) GetRefOk() (*string, bool)

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTask) GetType ¶

func (o *WorkflowTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowTask) GetTypeOk ¶

func (o *WorkflowTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTask) HasRef ¶

func (o *WorkflowTask) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*WorkflowTask) HasType ¶

func (o *WorkflowTask) HasType() bool

HasType returns a boolean if a field has been set.

func (WorkflowTask) MarshalJSON ¶

func (o WorkflowTask) MarshalJSON() ([]byte, error)

func (*WorkflowTask) SetRef ¶

func (o *WorkflowTask) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*WorkflowTask) SetType ¶

func (o *WorkflowTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (WorkflowTask) ToMap ¶ added in v1.10.3

func (o WorkflowTask) ToMap() (map[string]interface{}, error)

type WorkflowTaskAllOf ¶

type WorkflowTaskAllOf struct {
	Type *string `json:"type,omitempty"`
	Ref  *string `json:"ref,omitempty"`
}

WorkflowTaskAllOf struct for WorkflowTaskAllOf

func NewWorkflowTaskAllOf ¶

func NewWorkflowTaskAllOf() *WorkflowTaskAllOf

NewWorkflowTaskAllOf instantiates a new WorkflowTaskAllOf 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 NewWorkflowTaskAllOfWithDefaults ¶

func NewWorkflowTaskAllOfWithDefaults() *WorkflowTaskAllOf

NewWorkflowTaskAllOfWithDefaults instantiates a new WorkflowTaskAllOf 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 (*WorkflowTaskAllOf) GetRef ¶

func (o *WorkflowTaskAllOf) GetRef() string

GetRef returns the Ref field value if set, zero value otherwise.

func (*WorkflowTaskAllOf) GetRefOk ¶

func (o *WorkflowTaskAllOf) GetRefOk() (*string, bool)

GetRefOk returns a tuple with the Ref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTaskAllOf) GetType ¶

func (o *WorkflowTaskAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WorkflowTaskAllOf) GetTypeOk ¶

func (o *WorkflowTaskAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkflowTaskAllOf) HasRef ¶

func (o *WorkflowTaskAllOf) HasRef() bool

HasRef returns a boolean if a field has been set.

func (*WorkflowTaskAllOf) HasType ¶

func (o *WorkflowTaskAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (WorkflowTaskAllOf) MarshalJSON ¶

func (o WorkflowTaskAllOf) MarshalJSON() ([]byte, error)

func (*WorkflowTaskAllOf) SetRef ¶

func (o *WorkflowTaskAllOf) SetRef(v string)

SetRef gets a reference to the given string and assigns it to the Ref field.

func (*WorkflowTaskAllOf) SetType ¶

func (o *WorkflowTaskAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Workspace ¶ added in v1.10.3

type Workspace struct {
	Id               *string                           `json:"id,omitempty"`
	Name             *string                           `json:"name,omitempty"`
	Description      *string                           `json:"description,omitempty"`
	Version          *string                           `json:"version,omitempty"`
	Type             *string                           `json:"type,omitempty"`
	InstanceType     *string                           `json:"instance_type,omitempty"`
	Owner            *string                           `json:"owner,omitempty"`
	InfrastructureId *string                           `json:"infrastructure_id,omitempty"`
	DeviceId         *string                           `json:"device_id,omitempty"`
	PublicUrl        *string                           `json:"public_url,omitempty"`
	Status           *string                           `json:"status,omitempty"`
	Created          *time.Time                        `json:"created,omitempty"`
	Updated          *time.Time                        `json:"updated,omitempty"`
	Labels           *map[string]string                `json:"labels,omitempty"`
	Metadata         map[string]map[string]interface{} `json:"metadata,omitempty"`
}

Workspace struct for Workspace

func NewWorkspace ¶ added in v1.10.3

func NewWorkspace() *Workspace

NewWorkspace instantiates a new Workspace 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 NewWorkspaceWithDefaults ¶ added in v1.10.3

func NewWorkspaceWithDefaults() *Workspace

NewWorkspaceWithDefaults instantiates a new Workspace 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 (*Workspace) GetCreated ¶ added in v1.10.3

func (o *Workspace) GetCreated() time.Time

GetCreated returns the Created field value if set, zero value otherwise.

func (*Workspace) GetCreatedOk ¶ added in v1.10.3

func (o *Workspace) GetCreatedOk() (*time.Time, bool)

GetCreatedOk returns a tuple with the Created field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) GetDescription ¶ added in v1.10.3

func (o *Workspace) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Workspace) GetDescriptionOk ¶ added in v1.10.3

func (o *Workspace) 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 (*Workspace) GetDeviceId ¶ added in v1.10.3

func (o *Workspace) GetDeviceId() string

GetDeviceId returns the DeviceId field value if set, zero value otherwise.

func (*Workspace) GetDeviceIdOk ¶ added in v1.10.3

func (o *Workspace) GetDeviceIdOk() (*string, bool)

GetDeviceIdOk returns a tuple with the DeviceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) GetId ¶ added in v1.10.3

func (o *Workspace) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Workspace) GetIdOk ¶ added in v1.10.3

func (o *Workspace) 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 (*Workspace) GetInfrastructureId ¶ added in v1.10.3

func (o *Workspace) GetInfrastructureId() string

GetInfrastructureId returns the InfrastructureId field value if set, zero value otherwise.

func (*Workspace) GetInfrastructureIdOk ¶ added in v1.10.3

func (o *Workspace) GetInfrastructureIdOk() (*string, bool)

GetInfrastructureIdOk returns a tuple with the InfrastructureId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) GetInstanceType ¶ added in v1.10.3

func (o *Workspace) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*Workspace) GetInstanceTypeOk ¶ added in v1.10.3

func (o *Workspace) GetInstanceTypeOk() (*string, bool)

GetInstanceTypeOk returns a tuple with the InstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) GetLabels ¶ added in v1.10.3

func (o *Workspace) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Workspace) GetLabelsOk ¶ added in v1.10.3

func (o *Workspace) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) GetMetadata ¶ added in v1.10.3

func (o *Workspace) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Workspace) GetMetadataOk ¶ added in v1.10.3

func (o *Workspace) GetMetadataOk() (map[string]map[string]interface{}, 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 (*Workspace) GetName ¶ added in v1.10.3

func (o *Workspace) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Workspace) GetNameOk ¶ added in v1.10.3

func (o *Workspace) 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 (*Workspace) GetOwner ¶ added in v1.10.3

func (o *Workspace) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*Workspace) GetOwnerOk ¶ added in v1.10.3

func (o *Workspace) 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 (*Workspace) GetPublicUrl ¶ added in v1.10.3

func (o *Workspace) GetPublicUrl() string

GetPublicUrl returns the PublicUrl field value if set, zero value otherwise.

func (*Workspace) GetPublicUrlOk ¶ added in v1.10.3

func (o *Workspace) GetPublicUrlOk() (*string, bool)

GetPublicUrlOk returns a tuple with the PublicUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) GetStatus ¶ added in v1.10.3

func (o *Workspace) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Workspace) GetStatusOk ¶ added in v1.10.3

func (o *Workspace) GetStatusOk() (*string, 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 (*Workspace) GetType ¶ added in v1.10.3

func (o *Workspace) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Workspace) GetTypeOk ¶ added in v1.10.3

func (o *Workspace) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) GetUpdated ¶ added in v1.10.3

func (o *Workspace) GetUpdated() time.Time

GetUpdated returns the Updated field value if set, zero value otherwise.

func (*Workspace) GetUpdatedOk ¶ added in v1.10.3

func (o *Workspace) GetUpdatedOk() (*time.Time, bool)

GetUpdatedOk returns a tuple with the Updated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) GetVersion ¶ added in v1.10.3

func (o *Workspace) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Workspace) GetVersionOk ¶ added in v1.10.3

func (o *Workspace) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Workspace) HasCreated ¶ added in v1.10.3

func (o *Workspace) HasCreated() bool

HasCreated returns a boolean if a field has been set.

func (*Workspace) HasDescription ¶ added in v1.10.3

func (o *Workspace) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Workspace) HasDeviceId ¶ added in v1.10.3

func (o *Workspace) HasDeviceId() bool

HasDeviceId returns a boolean if a field has been set.

func (*Workspace) HasId ¶ added in v1.10.3

func (o *Workspace) HasId() bool

HasId returns a boolean if a field has been set.

func (*Workspace) HasInfrastructureId ¶ added in v1.10.3

func (o *Workspace) HasInfrastructureId() bool

HasInfrastructureId returns a boolean if a field has been set.

func (*Workspace) HasInstanceType ¶ added in v1.10.3

func (o *Workspace) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (*Workspace) HasLabels ¶ added in v1.10.3

func (o *Workspace) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Workspace) HasMetadata ¶ added in v1.10.3

func (o *Workspace) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Workspace) HasName ¶ added in v1.10.3

func (o *Workspace) HasName() bool

HasName returns a boolean if a field has been set.

func (*Workspace) HasOwner ¶ added in v1.10.3

func (o *Workspace) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Workspace) HasPublicUrl ¶ added in v1.10.3

func (o *Workspace) HasPublicUrl() bool

HasPublicUrl returns a boolean if a field has been set.

func (*Workspace) HasStatus ¶ added in v1.10.3

func (o *Workspace) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Workspace) HasType ¶ added in v1.10.3

func (o *Workspace) HasType() bool

HasType returns a boolean if a field has been set.

func (*Workspace) HasUpdated ¶ added in v1.10.3

func (o *Workspace) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

func (*Workspace) HasVersion ¶ added in v1.10.3

func (o *Workspace) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Workspace) MarshalJSON ¶ added in v1.10.3

func (o Workspace) MarshalJSON() ([]byte, error)

func (*Workspace) SetCreated ¶ added in v1.10.3

func (o *Workspace) SetCreated(v time.Time)

SetCreated gets a reference to the given time.Time and assigns it to the Created field.

func (*Workspace) SetDescription ¶ added in v1.10.3

func (o *Workspace) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Workspace) SetDeviceId ¶ added in v1.10.3

func (o *Workspace) SetDeviceId(v string)

SetDeviceId gets a reference to the given string and assigns it to the DeviceId field.

func (*Workspace) SetId ¶ added in v1.10.3

func (o *Workspace) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Workspace) SetInfrastructureId ¶ added in v1.10.3

func (o *Workspace) SetInfrastructureId(v string)

SetInfrastructureId gets a reference to the given string and assigns it to the InfrastructureId field.

func (*Workspace) SetInstanceType ¶ added in v1.10.3

func (o *Workspace) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (*Workspace) SetLabels ¶ added in v1.10.3

func (o *Workspace) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*Workspace) SetMetadata ¶ added in v1.10.3

func (o *Workspace) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*Workspace) SetName ¶ added in v1.10.3

func (o *Workspace) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Workspace) SetOwner ¶ added in v1.10.3

func (o *Workspace) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*Workspace) SetPublicUrl ¶ added in v1.10.3

func (o *Workspace) SetPublicUrl(v string)

SetPublicUrl gets a reference to the given string and assigns it to the PublicUrl field.

func (*Workspace) SetStatus ¶ added in v1.10.3

func (o *Workspace) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*Workspace) SetType ¶ added in v1.10.3

func (o *Workspace) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Workspace) SetUpdated ¶ added in v1.10.3

func (o *Workspace) SetUpdated(v time.Time)

SetUpdated gets a reference to the given time.Time and assigns it to the Updated field.

func (*Workspace) SetVersion ¶ added in v1.10.3

func (o *Workspace) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (Workspace) ToMap ¶ added in v1.10.3

func (o Workspace) ToMap() (map[string]interface{}, error)

type WorkspaceAPIService ¶ added in v1.10.3

type WorkspaceAPIService service

WorkspaceAPIService WorkspaceAPI service

func (*WorkspaceAPIService) CreateWorkspace ¶ added in v1.10.3

CreateWorkspace Create workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateWorkspaceRequest

func (*WorkspaceAPIService) CreateWorkspaceExecute ¶ added in v1.10.3

func (a *WorkspaceAPIService) CreateWorkspaceExecute(r ApiCreateWorkspaceRequest) (*Workspace, *http.Response, error)

Execute executes the request

@return Workspace

func (*WorkspaceAPIService) DeleteWorkspaceById ¶ added in v1.10.3

func (a *WorkspaceAPIService) DeleteWorkspaceById(ctx context.Context, workspaceId string) ApiDeleteWorkspaceByIdRequest

DeleteWorkspaceById Delete a workspace by an id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workspaceId Id of the workspace
@return ApiDeleteWorkspaceByIdRequest

func (*WorkspaceAPIService) DeleteWorkspaceByIdExecute ¶ added in v1.10.3

func (a *WorkspaceAPIService) DeleteWorkspaceByIdExecute(r ApiDeleteWorkspaceByIdRequest) (*http.Response, error)

Execute executes the request

func (*WorkspaceAPIService) FindWorkspaceById ¶ added in v1.10.3

func (a *WorkspaceAPIService) FindWorkspaceById(ctx context.Context, workspaceId string) ApiFindWorkspaceByIdRequest

FindWorkspaceById Find workspace by Id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workspaceId Id of the workspace
@return ApiFindWorkspaceByIdRequest

func (*WorkspaceAPIService) FindWorkspaceByIdExecute ¶ added in v1.10.3

func (a *WorkspaceAPIService) FindWorkspaceByIdExecute(r ApiFindWorkspaceByIdRequest) (*Workspace, *http.Response, error)

Execute executes the request

@return Workspace

func (*WorkspaceAPIService) FindWorkspaces ¶ added in v1.10.3

FindWorkspaces Retrieve all workspaces

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiFindWorkspacesRequest

func (*WorkspaceAPIService) FindWorkspacesExecute ¶ added in v1.10.3

Execute executes the request

@return WorkspacePage

func (*WorkspaceAPIService) GetLogsForWorkspace ¶ added in v1.10.3

func (a *WorkspaceAPIService) GetLogsForWorkspace(ctx context.Context, workspaceId string) ApiGetLogsForWorkspaceRequest

GetLogsForWorkspace Get logs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workspaceId Id of the workspace
@return ApiGetLogsForWorkspaceRequest

func (*WorkspaceAPIService) GetLogsForWorkspaceExecute ¶ added in v1.10.3

func (a *WorkspaceAPIService) GetLogsForWorkspaceExecute(r ApiGetLogsForWorkspaceRequest) ([]LogEntry, *http.Response, error)

Execute executes the request

@return []LogEntry

func (*WorkspaceAPIService) UpdateWorkspace ¶ added in v1.10.3

func (a *WorkspaceAPIService) UpdateWorkspace(ctx context.Context, workspaceId string) ApiUpdateWorkspaceRequest

UpdateWorkspace Update a workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workspaceId Id of the workspace
@return ApiUpdateWorkspaceRequest

func (*WorkspaceAPIService) UpdateWorkspaceExecute ¶ added in v1.10.3

func (a *WorkspaceAPIService) UpdateWorkspaceExecute(r ApiUpdateWorkspaceRequest) (*Workspace, *http.Response, error)

Execute executes the request

@return Workspace

func (*WorkspaceAPIService) UploadFileInWorkspace ¶ added in v1.10.3

func (a *WorkspaceAPIService) UploadFileInWorkspace(ctx context.Context, workspaceId string) ApiUploadFileInWorkspaceRequest

UploadFileInWorkspace Upload files in a workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param workspaceId Id of the bucket
@return ApiUploadFileInWorkspaceRequest

func (*WorkspaceAPIService) UploadFileInWorkspaceExecute ¶ added in v1.10.3

func (a *WorkspaceAPIService) UploadFileInWorkspaceExecute(r ApiUploadFileInWorkspaceRequest) (*http.Response, error)

Execute executes the request

type WorkspacePage ¶ added in v1.10.3

type WorkspacePage struct {
	Number  *int32      `json:"number,omitempty"`
	Size    *int32      `json:"size,omitempty"`
	Content []Workspace `json:"content,omitempty"`
}

WorkspacePage typed Page

func NewWorkspacePage ¶ added in v1.10.3

func NewWorkspacePage() *WorkspacePage

NewWorkspacePage instantiates a new WorkspacePage 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 NewWorkspacePageWithDefaults ¶ added in v1.10.3

func NewWorkspacePageWithDefaults() *WorkspacePage

NewWorkspacePageWithDefaults instantiates a new WorkspacePage 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 (*WorkspacePage) GetContent ¶ added in v1.10.3

func (o *WorkspacePage) GetContent() []Workspace

GetContent returns the Content field value if set, zero value otherwise.

func (*WorkspacePage) GetContentOk ¶ added in v1.10.3

func (o *WorkspacePage) GetContentOk() ([]Workspace, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspacePage) GetNumber ¶ added in v1.10.3

func (o *WorkspacePage) GetNumber() int32

GetNumber returns the Number field value if set, zero value otherwise.

func (*WorkspacePage) GetNumberOk ¶ added in v1.10.3

func (o *WorkspacePage) GetNumberOk() (*int32, bool)

GetNumberOk returns a tuple with the Number field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspacePage) GetSize ¶ added in v1.10.3

func (o *WorkspacePage) GetSize() int32

GetSize returns the Size field value if set, zero value otherwise.

func (*WorkspacePage) GetSizeOk ¶ added in v1.10.3

func (o *WorkspacePage) GetSizeOk() (*int32, bool)

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspacePage) HasContent ¶ added in v1.10.3

func (o *WorkspacePage) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*WorkspacePage) HasNumber ¶ added in v1.10.3

func (o *WorkspacePage) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (*WorkspacePage) HasSize ¶ added in v1.10.3

func (o *WorkspacePage) HasSize() bool

HasSize returns a boolean if a field has been set.

func (WorkspacePage) MarshalJSON ¶ added in v1.10.3

func (o WorkspacePage) MarshalJSON() ([]byte, error)

func (*WorkspacePage) SetContent ¶ added in v1.10.3

func (o *WorkspacePage) SetContent(v []Workspace)

SetContent gets a reference to the given []Workspace and assigns it to the Content field.

func (*WorkspacePage) SetNumber ¶ added in v1.10.3

func (o *WorkspacePage) SetNumber(v int32)

SetNumber gets a reference to the given int32 and assigns it to the Number field.

func (*WorkspacePage) SetSize ¶ added in v1.10.3

func (o *WorkspacePage) SetSize(v int32)

SetSize gets a reference to the given int32 and assigns it to the Size field.

func (WorkspacePage) ToMap ¶ added in v1.10.3

func (o WorkspacePage) ToMap() (map[string]interface{}, error)

type WorkspacePageAllOf ¶ added in v1.10.3

type WorkspacePageAllOf struct {
	Content *[]Workspace `json:"content,omitempty"`
}

WorkspacePageAllOf struct for WorkspacePageAllOf

func NewWorkspacePageAllOf ¶ added in v1.10.3

func NewWorkspacePageAllOf() *WorkspacePageAllOf

NewWorkspacePageAllOf instantiates a new WorkspacePageAllOf 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 NewWorkspacePageAllOfWithDefaults ¶ added in v1.10.3

func NewWorkspacePageAllOfWithDefaults() *WorkspacePageAllOf

NewWorkspacePageAllOfWithDefaults instantiates a new WorkspacePageAllOf 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 (*WorkspacePageAllOf) GetContent ¶ added in v1.10.3

func (o *WorkspacePageAllOf) GetContent() []Workspace

GetContent returns the Content field value if set, zero value otherwise.

func (*WorkspacePageAllOf) GetContentOk ¶ added in v1.10.3

func (o *WorkspacePageAllOf) GetContentOk() (*[]Workspace, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspacePageAllOf) HasContent ¶ added in v1.10.3

func (o *WorkspacePageAllOf) HasContent() bool

HasContent returns a boolean if a field has been set.

func (WorkspacePageAllOf) MarshalJSON ¶ added in v1.10.3

func (o WorkspacePageAllOf) MarshalJSON() ([]byte, error)

func (*WorkspacePageAllOf) SetContent ¶ added in v1.10.3

func (o *WorkspacePageAllOf) SetContent(v []Workspace)

SetContent gets a reference to the given []Workspace and assigns it to the Content field.

type WriteFileParams ¶ added in v1.10.3

type WriteFileParams struct {
	// Type of object file.
	Type      *string    `json:"type,omitempty"`
	Connector Connector1 `json:"connector"`
	// List of dictionaries representing the columns         (name and type). For each dictionnary the 'name' represents the column         name and the 'type' their corresponding type.
	Structure []map[string]string     `json:"structure,omitempty"`
	Object    ParametersToWriteAFile3 `json:"object"`
}

WriteFileParams struct for WriteFileParams

func NewWriteFileParams ¶ added in v1.10.3

func NewWriteFileParams(connector Connector1, object ParametersToWriteAFile3) *WriteFileParams

NewWriteFileParams instantiates a new WriteFileParams 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 NewWriteFileParamsWithDefaults ¶ added in v1.10.3

func NewWriteFileParamsWithDefaults() *WriteFileParams

NewWriteFileParamsWithDefaults instantiates a new WriteFileParams 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 (*WriteFileParams) GetConnector ¶ added in v1.10.3

func (o *WriteFileParams) GetConnector() Connector1

GetConnector returns the Connector field value

func (*WriteFileParams) GetConnectorOk ¶ added in v1.10.3

func (o *WriteFileParams) GetConnectorOk() (*Connector1, bool)

GetConnectorOk returns a tuple with the Connector field value and a boolean to check if the value has been set.

func (*WriteFileParams) GetObject ¶ added in v1.10.3

GetObject returns the Object field value

func (*WriteFileParams) GetObjectOk ¶ added in v1.10.3

func (o *WriteFileParams) GetObjectOk() (*ParametersToWriteAFile3, bool)

GetObjectOk returns a tuple with the Object field value and a boolean to check if the value has been set.

func (*WriteFileParams) GetStructure ¶ added in v1.10.3

func (o *WriteFileParams) GetStructure() []map[string]string

GetStructure returns the Structure field value if set, zero value otherwise.

func (*WriteFileParams) GetStructureOk ¶ added in v1.10.3

func (o *WriteFileParams) GetStructureOk() ([]map[string]string, bool)

GetStructureOk returns a tuple with the Structure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WriteFileParams) GetType ¶ added in v1.10.3

func (o *WriteFileParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WriteFileParams) GetTypeOk ¶ added in v1.10.3

func (o *WriteFileParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WriteFileParams) HasStructure ¶ added in v1.10.3

func (o *WriteFileParams) HasStructure() bool

HasStructure returns a boolean if a field has been set.

func (*WriteFileParams) HasType ¶ added in v1.10.3

func (o *WriteFileParams) HasType() bool

HasType returns a boolean if a field has been set.

func (WriteFileParams) MarshalJSON ¶ added in v1.10.3

func (o WriteFileParams) MarshalJSON() ([]byte, error)

func (*WriteFileParams) SetConnector ¶ added in v1.10.3

func (o *WriteFileParams) SetConnector(v Connector1)

SetConnector sets field value

func (*WriteFileParams) SetObject ¶ added in v1.10.3

func (o *WriteFileParams) SetObject(v ParametersToWriteAFile3)

SetObject sets field value

func (*WriteFileParams) SetStructure ¶ added in v1.10.3

func (o *WriteFileParams) SetStructure(v []map[string]string)

SetStructure gets a reference to the given []map[string]string and assigns it to the Structure field.

func (*WriteFileParams) SetType ¶ added in v1.10.3

func (o *WriteFileParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (WriteFileParams) ToMap ¶ added in v1.10.3

func (o WriteFileParams) ToMap() (map[string]interface{}, error)

func (*WriteFileParams) UnmarshalJSON ¶ added in v1.10.3

func (o *WriteFileParams) UnmarshalJSON(bytes []byte) (err error)

type WriteSQLParams ¶ added in v1.10.3

type WriteSQLParams struct {
	// Type SQL server.
	Type   *string       `json:"type,omitempty"`
	Object SQLDataWriter `json:"object"`
	// List of dictionaries representing the columns (name and type). For each dictionnary the         'name' represents the column name and the 'type' their corresponding type.
	Structure []map[string]string `json:"structure,omitempty"`
	Connector DatabaseConnector   `json:"connector"`
}

WriteSQLParams struct for WriteSQLParams

func NewWriteSQLParams ¶ added in v1.10.3

func NewWriteSQLParams(object SQLDataWriter, connector DatabaseConnector) *WriteSQLParams

NewWriteSQLParams instantiates a new WriteSQLParams 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 NewWriteSQLParamsWithDefaults ¶ added in v1.10.3

func NewWriteSQLParamsWithDefaults() *WriteSQLParams

NewWriteSQLParamsWithDefaults instantiates a new WriteSQLParams 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 (*WriteSQLParams) GetConnector ¶ added in v1.10.3

func (o *WriteSQLParams) GetConnector() DatabaseConnector

GetConnector returns the Connector field value

func (*WriteSQLParams) GetConnectorOk ¶ added in v1.10.3

func (o *WriteSQLParams) GetConnectorOk() (*DatabaseConnector, bool)

GetConnectorOk returns a tuple with the Connector field value and a boolean to check if the value has been set.

func (*WriteSQLParams) GetObject ¶ added in v1.10.3

func (o *WriteSQLParams) GetObject() SQLDataWriter

GetObject returns the Object field value

func (*WriteSQLParams) GetObjectOk ¶ added in v1.10.3

func (o *WriteSQLParams) GetObjectOk() (*SQLDataWriter, bool)

GetObjectOk returns a tuple with the Object field value and a boolean to check if the value has been set.

func (*WriteSQLParams) GetStructure ¶ added in v1.10.3

func (o *WriteSQLParams) GetStructure() []map[string]string

GetStructure returns the Structure field value if set, zero value otherwise.

func (*WriteSQLParams) GetStructureOk ¶ added in v1.10.3

func (o *WriteSQLParams) GetStructureOk() ([]map[string]string, bool)

GetStructureOk returns a tuple with the Structure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WriteSQLParams) GetType ¶ added in v1.10.3

func (o *WriteSQLParams) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WriteSQLParams) GetTypeOk ¶ added in v1.10.3

func (o *WriteSQLParams) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WriteSQLParams) HasStructure ¶ added in v1.10.3

func (o *WriteSQLParams) HasStructure() bool

HasStructure returns a boolean if a field has been set.

func (*WriteSQLParams) HasType ¶ added in v1.10.3

func (o *WriteSQLParams) HasType() bool

HasType returns a boolean if a field has been set.

func (WriteSQLParams) MarshalJSON ¶ added in v1.10.3

func (o WriteSQLParams) MarshalJSON() ([]byte, error)

func (*WriteSQLParams) SetConnector ¶ added in v1.10.3

func (o *WriteSQLParams) SetConnector(v DatabaseConnector)

SetConnector sets field value

func (*WriteSQLParams) SetObject ¶ added in v1.10.3

func (o *WriteSQLParams) SetObject(v SQLDataWriter)

SetObject sets field value

func (*WriteSQLParams) SetStructure ¶ added in v1.10.3

func (o *WriteSQLParams) SetStructure(v []map[string]string)

SetStructure gets a reference to the given []map[string]string and assigns it to the Structure field.

func (*WriteSQLParams) SetType ¶ added in v1.10.3

func (o *WriteSQLParams) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (WriteSQLParams) ToMap ¶ added in v1.10.3

func (o WriteSQLParams) ToMap() (map[string]interface{}, error)

func (*WriteSQLParams) UnmarshalJSON ¶ added in v1.10.3

func (o *WriteSQLParams) UnmarshalJSON(bytes []byte) (err error)

type WriteTask ¶ added in v1.10.3

type WriteTask struct {
	Id     string              `json:"id"`
	Params WriteTaskParameters `json:"params"`
	// List of all dependencies of the task.
	Dependency []string `json:"dependency"`
	// Type of the write task.
	Type *string `json:"type,omitempty"`
}

WriteTask Defines a task in a DAG. Attributes ---------- id : str Identifier of a task. params : Params Parameters of a task. Methods ------- accept(visitor) Visit a task using a specified visitor. to_node() Returns the information about the task (id and parameters). to_edge() Gets all the dependencies of the task.

func NewWriteTask ¶ added in v1.10.3

func NewWriteTask(id string, params WriteTaskParameters, dependency []string) *WriteTask

NewWriteTask instantiates a new WriteTask 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 NewWriteTaskWithDefaults ¶ added in v1.10.3

func NewWriteTaskWithDefaults() *WriteTask

NewWriteTaskWithDefaults instantiates a new WriteTask 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 (*WriteTask) GetDependency ¶ added in v1.10.3

func (o *WriteTask) GetDependency() []string

GetDependency returns the Dependency field value

func (*WriteTask) GetDependencyOk ¶ added in v1.10.3

func (o *WriteTask) GetDependencyOk() ([]string, bool)

GetDependencyOk returns a tuple with the Dependency field value and a boolean to check if the value has been set.

func (*WriteTask) GetId ¶ added in v1.10.3

func (o *WriteTask) GetId() string

GetId returns the Id field value

func (*WriteTask) GetIdOk ¶ added in v1.10.3

func (o *WriteTask) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*WriteTask) GetParams ¶ added in v1.10.3

func (o *WriteTask) GetParams() WriteTaskParameters

GetParams returns the Params field value

func (*WriteTask) GetParamsOk ¶ added in v1.10.3

func (o *WriteTask) GetParamsOk() (*WriteTaskParameters, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (*WriteTask) GetType ¶ added in v1.10.3

func (o *WriteTask) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*WriteTask) GetTypeOk ¶ added in v1.10.3

func (o *WriteTask) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WriteTask) HasType ¶ added in v1.10.3

func (o *WriteTask) HasType() bool

HasType returns a boolean if a field has been set.

func (WriteTask) MarshalJSON ¶ added in v1.10.3

func (o WriteTask) MarshalJSON() ([]byte, error)

func (*WriteTask) SetDependency ¶ added in v1.10.3

func (o *WriteTask) SetDependency(v []string)

SetDependency sets field value

func (*WriteTask) SetId ¶ added in v1.10.3

func (o *WriteTask) SetId(v string)

SetId sets field value

func (*WriteTask) SetParams ¶ added in v1.10.3

func (o *WriteTask) SetParams(v WriteTaskParameters)

SetParams sets field value

func (*WriteTask) SetType ¶ added in v1.10.3

func (o *WriteTask) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (WriteTask) ToMap ¶ added in v1.10.3

func (o WriteTask) ToMap() (map[string]interface{}, error)

func (*WriteTask) UnmarshalJSON ¶ added in v1.10.3

func (o *WriteTask) UnmarshalJSON(bytes []byte) (err error)

type WriteTaskParameters ¶ added in v1.10.3

type WriteTaskParameters struct {
	SaveModelParams *SaveModelParams
	WriteFileParams *WriteFileParams
	WriteSQLParams  *WriteSQLParams
}

WriteTaskParameters - Parameters of the write task.

func SaveModelParamsAsWriteTaskParameters ¶ added in v1.10.3

func SaveModelParamsAsWriteTaskParameters(v *SaveModelParams) WriteTaskParameters

SaveModelParamsAsWriteTaskParameters is a convenience function that returns SaveModelParams wrapped in WriteTaskParameters

func WriteFileParamsAsWriteTaskParameters ¶ added in v1.10.3

func WriteFileParamsAsWriteTaskParameters(v *WriteFileParams) WriteTaskParameters

WriteFileParamsAsWriteTaskParameters is a convenience function that returns WriteFileParams wrapped in WriteTaskParameters

func WriteSQLParamsAsWriteTaskParameters ¶ added in v1.10.3

func WriteSQLParamsAsWriteTaskParameters(v *WriteSQLParams) WriteTaskParameters

WriteSQLParamsAsWriteTaskParameters is a convenience function that returns WriteSQLParams wrapped in WriteTaskParameters

func (*WriteTaskParameters) GetActualInstance ¶ added in v1.10.3

func (obj *WriteTaskParameters) GetActualInstance() interface{}

Get the actual instance

func (WriteTaskParameters) MarshalJSON ¶ added in v1.10.3

func (src WriteTaskParameters) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WriteTaskParameters) UnmarshalJSON ¶ added in v1.10.3

func (dst *WriteTaskParameters) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type XgboostOptions ¶

type XgboostOptions struct {
	Options
	Type               *string  `json:"type,omitempty"`
	Module             *string  `json:"module,omitempty"`
	NumberReplicas     *float32 `json:"number_replicas,omitempty"`
	MasterInstanceType *string  `json:"master_instance_type,omitempty"`
	WorkerInstanceType *string  `json:"worker_instance_type,omitempty"`
}

XgboostOptions struct for XgboostOptions

func NewXgboostOptions ¶

func NewXgboostOptions() *XgboostOptions

NewXgboostOptions instantiates a new XgboostOptions 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 NewXgboostOptionsWithDefaults ¶

func NewXgboostOptionsWithDefaults() *XgboostOptions

NewXgboostOptionsWithDefaults instantiates a new XgboostOptions 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 (*XgboostOptions) GetMasterInstanceType ¶

func (o *XgboostOptions) GetMasterInstanceType() string

GetMasterInstanceType returns the MasterInstanceType field value if set, zero value otherwise.

func (*XgboostOptions) GetMasterInstanceTypeOk ¶

func (o *XgboostOptions) GetMasterInstanceTypeOk() (*string, bool)

GetMasterInstanceTypeOk returns a tuple with the MasterInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptions) GetModule ¶

func (o *XgboostOptions) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*XgboostOptions) GetModuleOk ¶

func (o *XgboostOptions) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptions) GetNumberReplicas ¶

func (o *XgboostOptions) GetNumberReplicas() float32

GetNumberReplicas returns the NumberReplicas field value if set, zero value otherwise.

func (*XgboostOptions) GetNumberReplicasOk ¶

func (o *XgboostOptions) GetNumberReplicasOk() (*float32, bool)

GetNumberReplicasOk returns a tuple with the NumberReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptions) GetType ¶

func (o *XgboostOptions) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*XgboostOptions) GetTypeOk ¶

func (o *XgboostOptions) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptions) GetWorkerInstanceType ¶

func (o *XgboostOptions) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*XgboostOptions) GetWorkerInstanceTypeOk ¶

func (o *XgboostOptions) GetWorkerInstanceTypeOk() (*string, bool)

GetWorkerInstanceTypeOk returns a tuple with the WorkerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptions) HasMasterInstanceType ¶

func (o *XgboostOptions) HasMasterInstanceType() bool

HasMasterInstanceType returns a boolean if a field has been set.

func (*XgboostOptions) HasModule ¶

func (o *XgboostOptions) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*XgboostOptions) HasNumberReplicas ¶

func (o *XgboostOptions) HasNumberReplicas() bool

HasNumberReplicas returns a boolean if a field has been set.

func (*XgboostOptions) HasType ¶

func (o *XgboostOptions) HasType() bool

HasType returns a boolean if a field has been set.

func (*XgboostOptions) HasWorkerInstanceType ¶

func (o *XgboostOptions) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (XgboostOptions) MarshalJSON ¶

func (o XgboostOptions) MarshalJSON() ([]byte, error)

func (*XgboostOptions) SetMasterInstanceType ¶

func (o *XgboostOptions) SetMasterInstanceType(v string)

SetMasterInstanceType gets a reference to the given string and assigns it to the MasterInstanceType field.

func (*XgboostOptions) SetModule ¶

func (o *XgboostOptions) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*XgboostOptions) SetNumberReplicas ¶

func (o *XgboostOptions) SetNumberReplicas(v float32)

SetNumberReplicas gets a reference to the given float32 and assigns it to the NumberReplicas field.

func (*XgboostOptions) SetType ¶

func (o *XgboostOptions) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*XgboostOptions) SetWorkerInstanceType ¶

func (o *XgboostOptions) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

func (XgboostOptions) ToMap ¶ added in v1.10.3

func (o XgboostOptions) ToMap() (map[string]interface{}, error)

type XgboostOptionsAllOf ¶

type XgboostOptionsAllOf struct {
	Type               *string  `json:"type,omitempty"`
	Module             *string  `json:"module,omitempty"`
	NumberReplicas     *float32 `json:"number_replicas,omitempty"`
	MasterInstanceType *string  `json:"master_instance_type,omitempty"`
	WorkerInstanceType *string  `json:"worker_instance_type,omitempty"`
}

XgboostOptionsAllOf struct for XgboostOptionsAllOf

func NewXgboostOptionsAllOf ¶

func NewXgboostOptionsAllOf() *XgboostOptionsAllOf

NewXgboostOptionsAllOf instantiates a new XgboostOptionsAllOf 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 NewXgboostOptionsAllOfWithDefaults ¶

func NewXgboostOptionsAllOfWithDefaults() *XgboostOptionsAllOf

NewXgboostOptionsAllOfWithDefaults instantiates a new XgboostOptionsAllOf 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 (*XgboostOptionsAllOf) GetMasterInstanceType ¶

func (o *XgboostOptionsAllOf) GetMasterInstanceType() string

GetMasterInstanceType returns the MasterInstanceType field value if set, zero value otherwise.

func (*XgboostOptionsAllOf) GetMasterInstanceTypeOk ¶

func (o *XgboostOptionsAllOf) GetMasterInstanceTypeOk() (*string, bool)

GetMasterInstanceTypeOk returns a tuple with the MasterInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptionsAllOf) GetModule ¶

func (o *XgboostOptionsAllOf) GetModule() string

GetModule returns the Module field value if set, zero value otherwise.

func (*XgboostOptionsAllOf) GetModuleOk ¶

func (o *XgboostOptionsAllOf) GetModuleOk() (*string, bool)

GetModuleOk returns a tuple with the Module field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptionsAllOf) GetNumberReplicas ¶

func (o *XgboostOptionsAllOf) GetNumberReplicas() float32

GetNumberReplicas returns the NumberReplicas field value if set, zero value otherwise.

func (*XgboostOptionsAllOf) GetNumberReplicasOk ¶

func (o *XgboostOptionsAllOf) GetNumberReplicasOk() (*float32, bool)

GetNumberReplicasOk returns a tuple with the NumberReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptionsAllOf) GetType ¶

func (o *XgboostOptionsAllOf) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*XgboostOptionsAllOf) GetTypeOk ¶

func (o *XgboostOptionsAllOf) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptionsAllOf) GetWorkerInstanceType ¶

func (o *XgboostOptionsAllOf) GetWorkerInstanceType() string

GetWorkerInstanceType returns the WorkerInstanceType field value if set, zero value otherwise.

func (*XgboostOptionsAllOf) GetWorkerInstanceTypeOk ¶

func (o *XgboostOptionsAllOf) GetWorkerInstanceTypeOk() (*string, bool)

GetWorkerInstanceTypeOk returns a tuple with the WorkerInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XgboostOptionsAllOf) HasMasterInstanceType ¶

func (o *XgboostOptionsAllOf) HasMasterInstanceType() bool

HasMasterInstanceType returns a boolean if a field has been set.

func (*XgboostOptionsAllOf) HasModule ¶

func (o *XgboostOptionsAllOf) HasModule() bool

HasModule returns a boolean if a field has been set.

func (*XgboostOptionsAllOf) HasNumberReplicas ¶

func (o *XgboostOptionsAllOf) HasNumberReplicas() bool

HasNumberReplicas returns a boolean if a field has been set.

func (*XgboostOptionsAllOf) HasType ¶

func (o *XgboostOptionsAllOf) HasType() bool

HasType returns a boolean if a field has been set.

func (*XgboostOptionsAllOf) HasWorkerInstanceType ¶

func (o *XgboostOptionsAllOf) HasWorkerInstanceType() bool

HasWorkerInstanceType returns a boolean if a field has been set.

func (XgboostOptionsAllOf) MarshalJSON ¶

func (o XgboostOptionsAllOf) MarshalJSON() ([]byte, error)

func (*XgboostOptionsAllOf) SetMasterInstanceType ¶

func (o *XgboostOptionsAllOf) SetMasterInstanceType(v string)

SetMasterInstanceType gets a reference to the given string and assigns it to the MasterInstanceType field.

func (*XgboostOptionsAllOf) SetModule ¶

func (o *XgboostOptionsAllOf) SetModule(v string)

SetModule gets a reference to the given string and assigns it to the Module field.

func (*XgboostOptionsAllOf) SetNumberReplicas ¶

func (o *XgboostOptionsAllOf) SetNumberReplicas(v float32)

SetNumberReplicas gets a reference to the given float32 and assigns it to the NumberReplicas field.

func (*XgboostOptionsAllOf) SetType ¶

func (o *XgboostOptionsAllOf) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*XgboostOptionsAllOf) SetWorkerInstanceType ¶

func (o *XgboostOptionsAllOf) SetWorkerInstanceType(v string)

SetWorkerInstanceType gets a reference to the given string and assigns it to the WorkerInstanceType field.

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL