airflow

package module
v0.0.0-...-51fd424 Latest Latest
Warning

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

Go to latest
Published: Aug 25, 2022 License: Apache-2.0 Imports: 22 Imported by: 0

README

Go API client for airflow

Overview

To facilitate management, Apache Airflow supports a range of REST API endpoints across its objects. This section provides an overview of the API design, methods, and supported use cases.

Most of the endpoints accept JSON as input and return JSON responses. This means that you must usually add the following headers to your request:

Content-type: application/json
Accept: application/json

Resources

The term resource refers to a single type of object in the Airflow metadata. An API is broken up by its endpoint's corresponding resource. The name of a resource is typically plural and expressed in camelCase. Example: dagRuns.

Resource names are used as part of endpoint URLs, as well as in API parameters and responses.

CRUD Operations

The platform supports Create, Read, Update, and Delete operations on most resources. You can review the standards for these operations and their standard parameters below.

Some endpoints have special behavior as exceptions.

Create

To create a resource, you typically submit an HTTP POST request with the resource's required metadata in the request body. The response returns a 201 Created response code upon success with the resource's metadata, including its internal id, in the response body.

Read

The HTTP GET request can be used to read a resource or to list a number of resources.

A resource's id can be submitted in the request parameters to read a specific resource. The response usually returns a 200 OK response code upon success, with the resource's metadata in the response body.

If a GET request does not include a specific resource id, it is treated as a list request. The response usually returns a 200 OK response code upon success, with an object containing a list of resources' metadata in the response body.

When reading resources, some common query parameters are usually available. e.g.:

v1/connections?limit=25&offset=25
Query Parameter Type Description
limit integer Maximum number of objects to fetch. Usually 25 by default
offset integer Offset after which to start returning objects. For use with limit query parameter.
Update

Updating a resource requires the resource id, and is typically done using an HTTP PATCH request, with the fields to modify in the request body. The response usually returns a 200 OK response code upon success, with information about the modified resource in the response body.

Delete

Deleting a resource requires the resource id and is typically executing via an HTTP DELETE request. The response usually returns a 204 No Content response code upon success.

Conventions

  • Resource names are plural and expressed in camelCase.

  • Names are consistent between URL parameter name and field name.

  • Field names are in snake_case.

{
    \"name\": \"string\",
    \"slots\": 0,
    \"occupied_slots\": 0,
    \"used_slots\": 0,
    \"queued_slots\": 0,
    \"open_slots\": 0
}
Update Mask

Update mask is available as a query parameter in patch endpoints. It is used to notify the API which fields you want to update. Using update_mask makes it easier to update objects by helping the server know which fields to update in an object instead of updating all fields. The update request ignores any fields that aren't specified in the field mask, leaving them with their current values.

Example:

  resource = request.get('/resource/my-id').json()
  resource['my_field'] = 'new-value'
  request.patch('/resource/my-id?update_mask=my_field', data=json.dumps(resource))

Versioning and Endpoint Lifecycle

  • API versioning is not synchronized to specific releases of the Apache Airflow.
  • APIs are designed to be backward compatible.
  • Any changes to the API will first go through a deprecation phase.

Trying the API

You can use a third party client, such as curl, HTTPie, Postman or the Insomnia rest client to test the Apache Airflow API.

Note that you will need to pass credentials data.

For e.g., here is how to pause a DAG with curl, when basic authorization is used:

curl -X PATCH 'https://example.com/api/v1/dags/{dag_id}?update_mask=is_paused' \\
-H 'Content-Type: application/json' \\
--user \"username:password\" \\
-d '{
    \"is_paused\": true
}'

Using a graphical tool such as Postman or Insomnia, it is possible to import the API specifications directly:

  1. Download the API specification by clicking the Download button at top of this document
  2. Import the JSON specification in the graphical tool of your choice.
  • In Postman, you can click the import button at the top
  • With Insomnia, you can just drag-and-drop the file on the UI

Note that with Postman, you can also generate code snippets by selecting a request and clicking on the Code button.

Enabling CORS

Cross-origin resource sharing (CORS) is a browser security feature that restricts HTTP requests that are initiated from scripts running in the browser.

For details on enabling/configuring CORS, see Enabling CORS.

Authentication

To be able to meet the requirements of many organizations, Airflow supports many authentication methods, and it is even possible to add your own method.

If you want to check which auth backend is currently set, you can use airflow config get-value api auth_backends command as in the example below.

$ airflow config get-value api auth_backends
airflow.api.auth.backend.basic_auth

The default is to deny all requests.

For details on configuring the authentication, see API Authorization.

Errors

We follow the error response format proposed in RFC 7807 also known as Problem Details for HTTP APIs. As with our normal API responses, your client must be prepared to gracefully handle additional members of the response.

Unauthenticated

This indicates that the request has not been applied because it lacks valid authentication credentials for the target resource. Please check that you have valid credentials.

PermissionDenied

This response means that the server understood the request but refuses to authorize it because it lacks sufficient rights to the resource. It happens when you do not have the necessary permission to execute the action you performed. You need to get the appropriate permissions in other to resolve this error.

BadRequest

This response means that the server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). To resolve this, please ensure that your syntax is correct.

NotFound

This client error response indicates that the server cannot find the requested resource.

MethodNotAllowed

Indicates that the request method is known by the server but is not supported by the target resource.

NotAcceptable

The target resource does not have a current representation that would be acceptable to the user agent, according to the proactive negotiation header fields received in the request, and the server is unwilling to supply a default representation.

AlreadyExists

The request could not be completed due to a conflict with the current state of the target resource, e.g. the resource it tries to create already exists.

Unknown

This means that the server encountered an unexpected condition that prevented it from fulfilling the request.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0.0
  • Package version: 2.1.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://airflow.apache.org

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sw "./airflow"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), sw.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), sw.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost/api/v1

Class Method HTTP request Description
ConfigApi GetConfig Get /config Get current configuration
ConnectionApi DeleteConnection Delete /connections/{connection_id} Delete a connection
ConnectionApi GetConnection Get /connections/{connection_id} Get a connection
ConnectionApi GetConnections Get /connections List connections
ConnectionApi PatchConnection Patch /connections/{connection_id} Update a connection
ConnectionApi PostConnection Post /connections Create a connection
ConnectionApi TestConnection Post /connections/test Test a connection
DAGApi DeleteDag Delete /dags/{dag_id} Delete a DAG
DAGApi GetDag Get /dags/{dag_id} Get basic information about a DAG
DAGApi GetDagDetails Get /dags/{dag_id}/details Get a simplified representation of DAG
DAGApi GetDagSource Get /dagSources/{file_token} Get a source code
DAGApi GetDags Get /dags List DAGs
DAGApi GetTask Get /dags/{dag_id}/tasks/{task_id} Get simplified representation of a task
DAGApi GetTasks Get /dags/{dag_id}/tasks Get tasks for DAG
DAGApi PatchDag Patch /dags/{dag_id} Update a DAG
DAGApi PatchDags Patch /dags Update DAGs
DAGApi PostClearTaskInstances Post /dags/{dag_id}/clearTaskInstances Clear a set of task instances
DAGApi PostSetTaskInstancesState Post /dags/{dag_id}/updateTaskInstancesState Set a state of task instances
DAGRunApi DeleteDagRun Delete /dags/{dag_id}/dagRuns/{dag_run_id} Delete a DAG run
DAGRunApi GetDagRun Get /dags/{dag_id}/dagRuns/{dag_run_id} Get a DAG run
DAGRunApi GetDagRuns Get /dags/{dag_id}/dagRuns List DAG runs
DAGRunApi GetDagRunsBatch Post /dags/~/dagRuns/list List DAG runs (batch)
DAGRunApi PostDagRun Post /dags/{dag_id}/dagRuns Trigger a new DAG run
DAGRunApi UpdateDagRunState Patch /dags/{dag_id}/dagRuns/{dag_run_id} Modify a DAG run
EventLogApi GetEventLog Get /eventLogs/{event_log_id} Get a log entry
EventLogApi GetEventLogs Get /eventLogs List log entries
ImportErrorApi GetImportError Get /importErrors/{import_error_id} Get an import error
ImportErrorApi GetImportErrors Get /importErrors List import errors
MonitoringApi GetHealth Get /health Get instance status
MonitoringApi GetVersion Get /version Get version information
PermissionApi GetPermissions Get /permissions List permissions
PluginApi GetPlugins Get /plugins Get a list of loaded plugins
PoolApi DeletePool Delete /pools/{pool_name} Delete a pool
PoolApi GetPool Get /pools/{pool_name} Get a pool
PoolApi GetPools Get /pools List pools
PoolApi PatchPool Patch /pools/{pool_name} Update a pool
PoolApi PostPool Post /pools Create a pool
ProviderApi GetProviders Get /providers List providers
RoleApi DeleteRole Delete /roles/{role_name} Delete a role
RoleApi GetRole Get /roles/{role_name} Get a role
RoleApi GetRoles Get /roles List roles
RoleApi PatchRole Patch /roles/{role_name} Update a role
RoleApi PostRole Post /roles Create a role
TaskInstanceApi GetExtraLinks Get /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/links List extra links
TaskInstanceApi GetLog Get /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/logs/{task_try_number} Get logs
TaskInstanceApi GetMappedTaskInstance Get /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/{map_index} Get a mapped task instance
TaskInstanceApi GetMappedTaskInstances Get /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/listMapped List mapped task instances
TaskInstanceApi GetTaskInstance Get /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id} Get a task instance
TaskInstanceApi GetTaskInstances Get /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances List task instances
TaskInstanceApi GetTaskInstancesBatch Post /dags//dagRuns//taskInstances/list List task instances (batch)
UserApi DeleteUser Delete /users/{username} Delete a user
UserApi GetUser Get /users/{username} Get a user
UserApi GetUsers Get /users List users
UserApi PatchUser Patch /users/{username} Update a user
UserApi PostUser Post /users Create a user
VariableApi DeleteVariable Delete /variables/{variable_key} Delete a variable
VariableApi GetVariable Get /variables/{variable_key} Get a variable
VariableApi GetVariables Get /variables List variables
VariableApi PatchVariable Patch /variables/{variable_key} Update a variable
VariableApi PostVariables Post /variables Create a variable
XComApi GetXcomEntries Get /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/xcomEntries List XCom entries
XComApi GetXcomEntry Get /dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/xcomEntries/{xcom_key} Get an XCom entry

Documentation For Models

Documentation For Authorization

Basic
  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
    UserName: "username",
    Password: "password",
})
r, err := client.Service.Operation(auth, args)
Kerberos

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

dev@airflow.apache.org

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

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

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// 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 AllowedDagStateEnumValues = []DagState{
	"queued",
	"running",
	"success",
	"failed",
}

All allowed values of DagState enum

View Source
var AllowedHealthStatusEnumValues = []HealthStatus{
	"healthy",
	"unhealthy",
}

All allowed values of HealthStatus enum

View Source
var AllowedTaskStateEnumValues = []TaskState{
	"success",
	"running",
	"failed",
	"upstream_failed",
	"skipped",
	"up_for_retry",
	"up_for_reschedule",
	"queued",
	"none",
	"scheduled",
	"deferred",
	"sensing",
	"removed",
}

All allowed values of TaskState enum

View Source
var AllowedTriggerRuleEnumValues = []TriggerRule{
	"all_success",
	"all_failed",
	"all_done",
	"one_success",
	"one_failed",
	"none_failed",
	"none_skipped",
	"none_failed_or_skipped",
	"none_failed_min_one_success",
	"dummy",
}

All allowed values of TriggerRule enum

View Source
var AllowedWeightRuleEnumValues = []WeightRule{
	"downstream",
	"upstream",
	"absolute",
}

All allowed values of WeightRule enum

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ConfigApi *ConfigApiService

	ConnectionApi *ConnectionApiService

	DAGApi *DAGApiService

	DAGRunApi *DAGRunApiService

	EventLogApi *EventLogApiService

	ImportErrorApi *ImportErrorApiService

	MonitoringApi *MonitoringApiService

	PermissionApi *PermissionApiService

	PluginApi *PluginApiService

	PoolApi *PoolApiService

	ProviderApi *ProviderApiService

	RoleApi *RoleApiService

	TaskInstanceApi *TaskInstanceApiService

	UserApi *UserApiService

	VariableApi *VariableApiService

	XComApi *XComApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Airflow API (Stable) API v1.0.0 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 {
	// The name of the permission \"action\"
	Name *string `json:"name,omitempty"`
}

Action An action Item. *New in version 2.1.0*

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

func (o *Action) GetName() string

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

func (*Action) GetNameOk

func (o *Action) 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 (*Action) HasName

func (o *Action) HasName() bool

HasName returns a boolean if a field has been set.

func (Action) MarshalJSON

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

func (*Action) SetName

func (o *Action) SetName(v string)

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

type ActionCollection

type ActionCollection struct {
	Actions *[]Action `json:"actions,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

ActionCollection A collection of actions. *New in version 2.1.0*

func NewActionCollection

func NewActionCollection() *ActionCollection

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

func NewActionCollectionWithDefaults

func NewActionCollectionWithDefaults() *ActionCollection

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

func (*ActionCollection) GetActions

func (o *ActionCollection) GetActions() []Action

GetActions returns the Actions field value if set, zero value otherwise.

func (*ActionCollection) GetActionsOk

func (o *ActionCollection) GetActionsOk() (*[]Action, bool)

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

func (*ActionCollection) GetTotalEntries

func (o *ActionCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*ActionCollection) GetTotalEntriesOk

func (o *ActionCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*ActionCollection) HasActions

func (o *ActionCollection) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*ActionCollection) HasTotalEntries

func (o *ActionCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (ActionCollection) MarshalJSON

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

func (*ActionCollection) SetActions

func (o *ActionCollection) SetActions(v []Action)

SetActions gets a reference to the given []Action and assigns it to the Actions field.

func (*ActionCollection) SetTotalEntries

func (o *ActionCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type ActionCollectionAllOf

type ActionCollectionAllOf struct {
	Actions *[]Action `json:"actions,omitempty"`
}

ActionCollectionAllOf struct for ActionCollectionAllOf

func NewActionCollectionAllOf

func NewActionCollectionAllOf() *ActionCollectionAllOf

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

func NewActionCollectionAllOfWithDefaults

func NewActionCollectionAllOfWithDefaults() *ActionCollectionAllOf

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

func (*ActionCollectionAllOf) GetActions

func (o *ActionCollectionAllOf) GetActions() []Action

GetActions returns the Actions field value if set, zero value otherwise.

func (*ActionCollectionAllOf) GetActionsOk

func (o *ActionCollectionAllOf) GetActionsOk() (*[]Action, bool)

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

func (*ActionCollectionAllOf) HasActions

func (o *ActionCollectionAllOf) HasActions() bool

HasActions returns a boolean if a field has been set.

func (ActionCollectionAllOf) MarshalJSON

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

func (*ActionCollectionAllOf) SetActions

func (o *ActionCollectionAllOf) SetActions(v []Action)

SetActions gets a reference to the given []Action and assigns it to the Actions field.

type ActionResource

type ActionResource struct {
	Action   *Action   `json:"action,omitempty"`
	Resource *Resource `json:"resource,omitempty"`
}

ActionResource The Action-Resource item. *New in version 2.1.0*

func NewActionResource

func NewActionResource() *ActionResource

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

func NewActionResourceWithDefaults

func NewActionResourceWithDefaults() *ActionResource

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

func (*ActionResource) GetAction

func (o *ActionResource) GetAction() Action

GetAction returns the Action field value if set, zero value otherwise.

func (*ActionResource) GetActionOk

func (o *ActionResource) GetActionOk() (*Action, bool)

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

func (*ActionResource) GetResource

func (o *ActionResource) GetResource() Resource

GetResource returns the Resource field value if set, zero value otherwise.

func (*ActionResource) GetResourceOk

func (o *ActionResource) GetResourceOk() (*Resource, 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 (*ActionResource) HasAction

func (o *ActionResource) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*ActionResource) HasResource

func (o *ActionResource) HasResource() bool

HasResource returns a boolean if a field has been set.

func (ActionResource) MarshalJSON

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

func (*ActionResource) SetAction

func (o *ActionResource) SetAction(v Action)

SetAction gets a reference to the given Action and assigns it to the Action field.

func (*ActionResource) SetResource

func (o *ActionResource) SetResource(v Resource)

SetResource gets a reference to the given Resource and assigns it to the Resource field.

type ApiDeleteConnectionRequest

type ApiDeleteConnectionRequest struct {
	ApiService *ConnectionApiService
	// contains filtered or unexported fields
}

func (ApiDeleteConnectionRequest) Execute

type ApiDeleteDagRequest

type ApiDeleteDagRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDagRequest) Execute

func (r ApiDeleteDagRequest) Execute() (*_nethttp.Response, error)

type ApiDeleteDagRunRequest

type ApiDeleteDagRunRequest struct {
	ApiService *DAGRunApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDagRunRequest) Execute

type ApiDeletePoolRequest

type ApiDeletePoolRequest struct {
	ApiService *PoolApiService
	// contains filtered or unexported fields
}

func (ApiDeletePoolRequest) Execute

func (r ApiDeletePoolRequest) Execute() (*_nethttp.Response, error)

type ApiDeleteRoleRequest

type ApiDeleteRoleRequest struct {
	ApiService *RoleApiService
	// contains filtered or unexported fields
}

func (ApiDeleteRoleRequest) Execute

func (r ApiDeleteRoleRequest) Execute() (*_nethttp.Response, error)

type ApiDeleteUserRequest

type ApiDeleteUserRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiDeleteUserRequest) Execute

func (r ApiDeleteUserRequest) Execute() (*_nethttp.Response, error)

type ApiDeleteVariableRequest

type ApiDeleteVariableRequest struct {
	ApiService *VariableApiService
	// contains filtered or unexported fields
}

func (ApiDeleteVariableRequest) Execute

type ApiGetConfigRequest

type ApiGetConfigRequest struct {
	ApiService *ConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetConfigRequest) Execute

type ApiGetConnectionRequest

type ApiGetConnectionRequest struct {
	ApiService *ConnectionApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectionRequest) Execute

type ApiGetConnectionsRequest

type ApiGetConnectionsRequest struct {
	ApiService *ConnectionApiService
	// contains filtered or unexported fields
}

func (ApiGetConnectionsRequest) Execute

func (ApiGetConnectionsRequest) Limit

The numbers of items to return.

func (ApiGetConnectionsRequest) Offset

The number of items to skip before starting to collect the result set.

func (ApiGetConnectionsRequest) OrderBy

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

type ApiGetDagDetailsRequest

type ApiGetDagDetailsRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiGetDagDetailsRequest) Execute

type ApiGetDagRequest

type ApiGetDagRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiGetDagRequest) Execute

func (r ApiGetDagRequest) Execute() (DAG, *_nethttp.Response, error)

type ApiGetDagRunRequest

type ApiGetDagRunRequest struct {
	ApiService *DAGRunApiService
	// contains filtered or unexported fields
}

func (ApiGetDagRunRequest) Execute

type ApiGetDagRunsBatchRequest

type ApiGetDagRunsBatchRequest struct {
	ApiService *DAGRunApiService
	// contains filtered or unexported fields
}

func (ApiGetDagRunsBatchRequest) Execute

func (ApiGetDagRunsBatchRequest) ListDagRunsForm

func (r ApiGetDagRunsBatchRequest) ListDagRunsForm(listDagRunsForm ListDagRunsForm) ApiGetDagRunsBatchRequest

type ApiGetDagRunsRequest

type ApiGetDagRunsRequest struct {
	ApiService *DAGRunApiService
	// contains filtered or unexported fields
}

func (ApiGetDagRunsRequest) EndDateGte

func (r ApiGetDagRunsRequest) EndDateGte(endDateGte time.Time) ApiGetDagRunsRequest

Returns objects greater or equal the specified date. This can be combined with start_date_lte parameter to receive only the selected period.

func (ApiGetDagRunsRequest) EndDateLte

func (r ApiGetDagRunsRequest) EndDateLte(endDateLte time.Time) ApiGetDagRunsRequest

Returns objects less than or equal to the specified date. This can be combined with start_date_gte parameter to receive only the selected period.

func (ApiGetDagRunsRequest) Execute

func (ApiGetDagRunsRequest) ExecutionDateGte

func (r ApiGetDagRunsRequest) ExecutionDateGte(executionDateGte time.Time) ApiGetDagRunsRequest

Returns objects greater or equal to the specified date. This can be combined with execution_date_lte parameter to receive only the selected period.

func (ApiGetDagRunsRequest) ExecutionDateLte

func (r ApiGetDagRunsRequest) ExecutionDateLte(executionDateLte time.Time) ApiGetDagRunsRequest

Returns objects less than or equal to the specified date. This can be combined with execution_date_gte parameter to receive only the selected period.

func (ApiGetDagRunsRequest) Limit

The numbers of items to return.

func (ApiGetDagRunsRequest) Offset

The number of items to skip before starting to collect the result set.

func (ApiGetDagRunsRequest) OrderBy

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

func (ApiGetDagRunsRequest) StartDateGte

func (r ApiGetDagRunsRequest) StartDateGte(startDateGte time.Time) ApiGetDagRunsRequest

Returns objects greater or equal the specified date. This can be combined with start_date_lte parameter to receive only the selected period.

func (ApiGetDagRunsRequest) StartDateLte

func (r ApiGetDagRunsRequest) StartDateLte(startDateLte time.Time) ApiGetDagRunsRequest

Returns objects less or equal the specified date. This can be combined with start_date_gte parameter to receive only the selected period.

func (ApiGetDagRunsRequest) State

The value can be repeated to retrieve multiple matching values (OR condition).

type ApiGetDagSourceRequest

type ApiGetDagSourceRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiGetDagSourceRequest) Execute

type ApiGetDagsRequest

type ApiGetDagsRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiGetDagsRequest) DagIdPattern

func (r ApiGetDagsRequest) DagIdPattern(dagIdPattern string) ApiGetDagsRequest

If set, only return DAGs with dag_ids matching this pattern.

func (ApiGetDagsRequest) Execute

func (ApiGetDagsRequest) Limit

func (r ApiGetDagsRequest) Limit(limit int32) ApiGetDagsRequest

The numbers of items to return.

func (ApiGetDagsRequest) Offset

func (r ApiGetDagsRequest) Offset(offset int32) ApiGetDagsRequest

The number of items to skip before starting to collect the result set.

func (ApiGetDagsRequest) OnlyActive

func (r ApiGetDagsRequest) OnlyActive(onlyActive bool) ApiGetDagsRequest

Only filter active DAGs. *New in version 2.1.1*

func (ApiGetDagsRequest) OrderBy

func (r ApiGetDagsRequest) OrderBy(orderBy string) ApiGetDagsRequest

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

func (ApiGetDagsRequest) Tags

List of tags to filter results. *New in version 2.2.0*

type ApiGetEventLogRequest

type ApiGetEventLogRequest struct {
	ApiService *EventLogApiService
	// contains filtered or unexported fields
}

func (ApiGetEventLogRequest) Execute

type ApiGetEventLogsRequest

type ApiGetEventLogsRequest struct {
	ApiService *EventLogApiService
	// contains filtered or unexported fields
}

func (ApiGetEventLogsRequest) Execute

func (ApiGetEventLogsRequest) Limit

The numbers of items to return.

func (ApiGetEventLogsRequest) Offset

The number of items to skip before starting to collect the result set.

func (ApiGetEventLogsRequest) OrderBy

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

type ApiGetExtraLinksRequest

type ApiGetExtraLinksRequest struct {
	ApiService *TaskInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetExtraLinksRequest) Execute

type ApiGetHealthRequest

type ApiGetHealthRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiGetHealthRequest) Execute

type ApiGetImportErrorRequest

type ApiGetImportErrorRequest struct {
	ApiService *ImportErrorApiService
	// contains filtered or unexported fields
}

func (ApiGetImportErrorRequest) Execute

type ApiGetImportErrorsRequest

type ApiGetImportErrorsRequest struct {
	ApiService *ImportErrorApiService
	// contains filtered or unexported fields
}

func (ApiGetImportErrorsRequest) Execute

func (ApiGetImportErrorsRequest) Limit

The numbers of items to return.

func (ApiGetImportErrorsRequest) Offset

The number of items to skip before starting to collect the result set.

func (ApiGetImportErrorsRequest) OrderBy

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

type ApiGetLogRequest

type ApiGetLogRequest struct {
	ApiService *TaskInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetLogRequest) Execute

func (ApiGetLogRequest) FullContent

func (r ApiGetLogRequest) FullContent(fullContent bool) ApiGetLogRequest

A full content will be returned. By default, only the first fragment will be returned.

func (ApiGetLogRequest) Token

func (r ApiGetLogRequest) Token(token string) ApiGetLogRequest

A token that allows you to continue fetching logs. If passed, it will specify the location from which the download should be continued.

type ApiGetMappedTaskInstanceRequest

type ApiGetMappedTaskInstanceRequest struct {
	ApiService *TaskInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetMappedTaskInstanceRequest) Execute

type ApiGetMappedTaskInstancesRequest

type ApiGetMappedTaskInstancesRequest struct {
	ApiService *TaskInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetMappedTaskInstancesRequest) DurationGte

Returns objects greater than or equal to the specified values. This can be combined with duration_lte parameter to receive only the selected period.

func (ApiGetMappedTaskInstancesRequest) DurationLte

Returns objects less than or equal to the specified values. This can be combined with duration_gte parameter to receive only the selected range.

func (ApiGetMappedTaskInstancesRequest) EndDateGte

Returns objects greater or equal the specified date. This can be combined with start_date_lte parameter to receive only the selected period.

func (ApiGetMappedTaskInstancesRequest) EndDateLte

Returns objects less than or equal to the specified date. This can be combined with start_date_gte parameter to receive only the selected period.

func (ApiGetMappedTaskInstancesRequest) Execute

func (ApiGetMappedTaskInstancesRequest) ExecutionDateGte

func (r ApiGetMappedTaskInstancesRequest) ExecutionDateGte(executionDateGte time.Time) ApiGetMappedTaskInstancesRequest

Returns objects greater or equal to the specified date. This can be combined with execution_date_lte parameter to receive only the selected period.

func (ApiGetMappedTaskInstancesRequest) ExecutionDateLte

func (r ApiGetMappedTaskInstancesRequest) ExecutionDateLte(executionDateLte time.Time) ApiGetMappedTaskInstancesRequest

Returns objects less than or equal to the specified date. This can be combined with execution_date_gte parameter to receive only the selected period.

func (ApiGetMappedTaskInstancesRequest) Limit

The numbers of items to return.

func (ApiGetMappedTaskInstancesRequest) Offset

The number of items to skip before starting to collect the result set.

func (ApiGetMappedTaskInstancesRequest) OrderBy

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

func (ApiGetMappedTaskInstancesRequest) Pool

The value can be repeated to retrieve multiple matching values (OR condition).

func (ApiGetMappedTaskInstancesRequest) Queue

The value can be repeated to retrieve multiple matching values (OR condition).

func (ApiGetMappedTaskInstancesRequest) StartDateGte

Returns objects greater or equal the specified date. This can be combined with start_date_lte parameter to receive only the selected period.

func (ApiGetMappedTaskInstancesRequest) StartDateLte

Returns objects less or equal the specified date. This can be combined with start_date_gte parameter to receive only the selected period.

func (ApiGetMappedTaskInstancesRequest) State

The value can be repeated to retrieve multiple matching values (OR condition).

type ApiGetPermissionsRequest

type ApiGetPermissionsRequest struct {
	ApiService *PermissionApiService
	// contains filtered or unexported fields
}

func (ApiGetPermissionsRequest) Execute

func (ApiGetPermissionsRequest) Limit

The numbers of items to return.

func (ApiGetPermissionsRequest) Offset

The number of items to skip before starting to collect the result set.

type ApiGetPluginsRequest

type ApiGetPluginsRequest struct {
	ApiService *PluginApiService
	// contains filtered or unexported fields
}

func (ApiGetPluginsRequest) Execute

func (ApiGetPluginsRequest) Limit

The numbers of items to return.

func (ApiGetPluginsRequest) Offset

The number of items to skip before starting to collect the result set.

type ApiGetPoolRequest

type ApiGetPoolRequest struct {
	ApiService *PoolApiService
	// contains filtered or unexported fields
}

func (ApiGetPoolRequest) Execute

func (r ApiGetPoolRequest) Execute() (Pool, *_nethttp.Response, error)

type ApiGetPoolsRequest

type ApiGetPoolsRequest struct {
	ApiService *PoolApiService
	// contains filtered or unexported fields
}

func (ApiGetPoolsRequest) Execute

func (ApiGetPoolsRequest) Limit

The numbers of items to return.

func (ApiGetPoolsRequest) Offset

func (r ApiGetPoolsRequest) Offset(offset int32) ApiGetPoolsRequest

The number of items to skip before starting to collect the result set.

func (ApiGetPoolsRequest) OrderBy

func (r ApiGetPoolsRequest) OrderBy(orderBy string) ApiGetPoolsRequest

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

type ApiGetProvidersRequest

type ApiGetProvidersRequest struct {
	ApiService *ProviderApiService
	// contains filtered or unexported fields
}

func (ApiGetProvidersRequest) Execute

type ApiGetRoleRequest

type ApiGetRoleRequest struct {
	ApiService *RoleApiService
	// contains filtered or unexported fields
}

func (ApiGetRoleRequest) Execute

func (r ApiGetRoleRequest) Execute() (Role, *_nethttp.Response, error)

type ApiGetRolesRequest

type ApiGetRolesRequest struct {
	ApiService *RoleApiService
	// contains filtered or unexported fields
}

func (ApiGetRolesRequest) Execute

func (ApiGetRolesRequest) Limit

The numbers of items to return.

func (ApiGetRolesRequest) Offset

func (r ApiGetRolesRequest) Offset(offset int32) ApiGetRolesRequest

The number of items to skip before starting to collect the result set.

func (ApiGetRolesRequest) OrderBy

func (r ApiGetRolesRequest) OrderBy(orderBy string) ApiGetRolesRequest

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

type ApiGetTaskInstanceRequest

type ApiGetTaskInstanceRequest struct {
	ApiService *TaskInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetTaskInstanceRequest) Execute

type ApiGetTaskInstancesBatchRequest

type ApiGetTaskInstancesBatchRequest struct {
	ApiService *TaskInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetTaskInstancesBatchRequest) Execute

func (ApiGetTaskInstancesBatchRequest) ListTaskInstanceForm

func (r ApiGetTaskInstancesBatchRequest) ListTaskInstanceForm(listTaskInstanceForm ListTaskInstanceForm) ApiGetTaskInstancesBatchRequest

type ApiGetTaskInstancesRequest

type ApiGetTaskInstancesRequest struct {
	ApiService *TaskInstanceApiService
	// contains filtered or unexported fields
}

func (ApiGetTaskInstancesRequest) DurationGte

Returns objects greater than or equal to the specified values. This can be combined with duration_lte parameter to receive only the selected period.

func (ApiGetTaskInstancesRequest) DurationLte

Returns objects less than or equal to the specified values. This can be combined with duration_gte parameter to receive only the selected range.

func (ApiGetTaskInstancesRequest) EndDateGte

Returns objects greater or equal the specified date. This can be combined with start_date_lte parameter to receive only the selected period.

func (ApiGetTaskInstancesRequest) EndDateLte

Returns objects less than or equal to the specified date. This can be combined with start_date_gte parameter to receive only the selected period.

func (ApiGetTaskInstancesRequest) Execute

func (ApiGetTaskInstancesRequest) ExecutionDateGte

func (r ApiGetTaskInstancesRequest) ExecutionDateGte(executionDateGte time.Time) ApiGetTaskInstancesRequest

Returns objects greater or equal to the specified date. This can be combined with execution_date_lte parameter to receive only the selected period.

func (ApiGetTaskInstancesRequest) ExecutionDateLte

func (r ApiGetTaskInstancesRequest) ExecutionDateLte(executionDateLte time.Time) ApiGetTaskInstancesRequest

Returns objects less than or equal to the specified date. This can be combined with execution_date_gte parameter to receive only the selected period.

func (ApiGetTaskInstancesRequest) Limit

The numbers of items to return.

func (ApiGetTaskInstancesRequest) Offset

The number of items to skip before starting to collect the result set.

func (ApiGetTaskInstancesRequest) Pool

The value can be repeated to retrieve multiple matching values (OR condition).

func (ApiGetTaskInstancesRequest) Queue

The value can be repeated to retrieve multiple matching values (OR condition).

func (ApiGetTaskInstancesRequest) StartDateGte

func (r ApiGetTaskInstancesRequest) StartDateGte(startDateGte time.Time) ApiGetTaskInstancesRequest

Returns objects greater or equal the specified date. This can be combined with start_date_lte parameter to receive only the selected period.

func (ApiGetTaskInstancesRequest) StartDateLte

func (r ApiGetTaskInstancesRequest) StartDateLte(startDateLte time.Time) ApiGetTaskInstancesRequest

Returns objects less or equal the specified date. This can be combined with start_date_gte parameter to receive only the selected period.

func (ApiGetTaskInstancesRequest) State

The value can be repeated to retrieve multiple matching values (OR condition).

type ApiGetTaskRequest

type ApiGetTaskRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiGetTaskRequest) Execute

func (r ApiGetTaskRequest) Execute() (Task, *_nethttp.Response, error)

type ApiGetTasksRequest

type ApiGetTasksRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiGetTasksRequest) Execute

func (ApiGetTasksRequest) OrderBy

func (r ApiGetTasksRequest) OrderBy(orderBy string) ApiGetTasksRequest

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

type ApiGetUserRequest

type ApiGetUserRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiGetUserRequest) Execute

type ApiGetUsersRequest

type ApiGetUsersRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiGetUsersRequest) Execute

func (ApiGetUsersRequest) Limit

The numbers of items to return.

func (ApiGetUsersRequest) Offset

func (r ApiGetUsersRequest) Offset(offset int32) ApiGetUsersRequest

The number of items to skip before starting to collect the result set.

func (ApiGetUsersRequest) OrderBy

func (r ApiGetUsersRequest) OrderBy(orderBy string) ApiGetUsersRequest

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

type ApiGetVariableRequest

type ApiGetVariableRequest struct {
	ApiService *VariableApiService
	// contains filtered or unexported fields
}

func (ApiGetVariableRequest) Execute

type ApiGetVariablesRequest

type ApiGetVariablesRequest struct {
	ApiService *VariableApiService
	// contains filtered or unexported fields
}

func (ApiGetVariablesRequest) Execute

func (ApiGetVariablesRequest) Limit

The numbers of items to return.

func (ApiGetVariablesRequest) Offset

The number of items to skip before starting to collect the result set.

func (ApiGetVariablesRequest) OrderBy

The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order. *New in version 2.1.0*

type ApiGetVersionRequest

type ApiGetVersionRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiGetVersionRequest) Execute

type ApiGetXcomEntriesRequest

type ApiGetXcomEntriesRequest struct {
	ApiService *XComApiService
	// contains filtered or unexported fields
}

func (ApiGetXcomEntriesRequest) Execute

func (ApiGetXcomEntriesRequest) Limit

The numbers of items to return.

func (ApiGetXcomEntriesRequest) Offset

The number of items to skip before starting to collect the result set.

type ApiGetXcomEntryRequest

type ApiGetXcomEntryRequest struct {
	ApiService *XComApiService
	// contains filtered or unexported fields
}

func (ApiGetXcomEntryRequest) Execute

type ApiPatchConnectionRequest

type ApiPatchConnectionRequest struct {
	ApiService *ConnectionApiService
	// contains filtered or unexported fields
}

func (ApiPatchConnectionRequest) Connection

func (ApiPatchConnectionRequest) Execute

func (ApiPatchConnectionRequest) UpdateMask

func (r ApiPatchConnectionRequest) UpdateMask(updateMask []string) ApiPatchConnectionRequest

The fields to update on the resource. If absent or empty, all modifiable fields are updated. A comma-separated list of fully qualified names of fields.

type ApiPatchDagRequest

type ApiPatchDagRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiPatchDagRequest) DAG

func (ApiPatchDagRequest) Execute

func (r ApiPatchDagRequest) Execute() (DAG, *_nethttp.Response, error)

func (ApiPatchDagRequest) UpdateMask

func (r ApiPatchDagRequest) UpdateMask(updateMask []string) ApiPatchDagRequest

The fields to update on the resource. If absent or empty, all modifiable fields are updated. A comma-separated list of fully qualified names of fields.

type ApiPatchDagsRequest

type ApiPatchDagsRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiPatchDagsRequest) DAG

func (ApiPatchDagsRequest) DagIdPattern

func (r ApiPatchDagsRequest) DagIdPattern(dagIdPattern string) ApiPatchDagsRequest

If set, only update DAGs with dag_ids matching this pattern.

func (ApiPatchDagsRequest) Execute

func (ApiPatchDagsRequest) Limit

The numbers of items to return.

func (ApiPatchDagsRequest) Offset

The number of items to skip before starting to collect the result set.

func (ApiPatchDagsRequest) OnlyActive

func (r ApiPatchDagsRequest) OnlyActive(onlyActive bool) ApiPatchDagsRequest

Only filter active DAGs. *New in version 2.1.1*

func (ApiPatchDagsRequest) Tags

List of tags to filter results. *New in version 2.2.0*

func (ApiPatchDagsRequest) UpdateMask

func (r ApiPatchDagsRequest) UpdateMask(updateMask []string) ApiPatchDagsRequest

The fields to update on the resource. If absent or empty, all modifiable fields are updated. A comma-separated list of fully qualified names of fields.

type ApiPatchPoolRequest

type ApiPatchPoolRequest struct {
	ApiService *PoolApiService
	// contains filtered or unexported fields
}

func (ApiPatchPoolRequest) Execute

func (r ApiPatchPoolRequest) Execute() (Pool, *_nethttp.Response, error)

func (ApiPatchPoolRequest) Pool

func (ApiPatchPoolRequest) UpdateMask

func (r ApiPatchPoolRequest) UpdateMask(updateMask []string) ApiPatchPoolRequest

The fields to update on the resource. If absent or empty, all modifiable fields are updated. A comma-separated list of fully qualified names of fields.

type ApiPatchRoleRequest

type ApiPatchRoleRequest struct {
	ApiService *RoleApiService
	// contains filtered or unexported fields
}

func (ApiPatchRoleRequest) Execute

func (r ApiPatchRoleRequest) Execute() (Role, *_nethttp.Response, error)

func (ApiPatchRoleRequest) Role

func (ApiPatchRoleRequest) UpdateMask

func (r ApiPatchRoleRequest) UpdateMask(updateMask []string) ApiPatchRoleRequest

The fields to update on the resource. If absent or empty, all modifiable fields are updated. A comma-separated list of fully qualified names of fields.

type ApiPatchUserRequest

type ApiPatchUserRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiPatchUserRequest) Execute

func (r ApiPatchUserRequest) Execute() (Role, *_nethttp.Response, error)

func (ApiPatchUserRequest) UpdateMask

func (r ApiPatchUserRequest) UpdateMask(updateMask []string) ApiPatchUserRequest

The fields to update on the resource. If absent or empty, all modifiable fields are updated. A comma-separated list of fully qualified names of fields.

func (ApiPatchUserRequest) User

type ApiPatchVariableRequest

type ApiPatchVariableRequest struct {
	ApiService *VariableApiService
	// contains filtered or unexported fields
}

func (ApiPatchVariableRequest) Execute

func (ApiPatchVariableRequest) UpdateMask

func (r ApiPatchVariableRequest) UpdateMask(updateMask []string) ApiPatchVariableRequest

The fields to update on the resource. If absent or empty, all modifiable fields are updated. A comma-separated list of fully qualified names of fields.

func (ApiPatchVariableRequest) Variable

type ApiPostClearTaskInstancesRequest

type ApiPostClearTaskInstancesRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiPostClearTaskInstancesRequest) ClearTaskInstance

Parameters of action

func (ApiPostClearTaskInstancesRequest) Execute

type ApiPostConnectionRequest

type ApiPostConnectionRequest struct {
	ApiService *ConnectionApiService
	// contains filtered or unexported fields
}

func (ApiPostConnectionRequest) Connection

func (ApiPostConnectionRequest) Execute

type ApiPostDagRunRequest

type ApiPostDagRunRequest struct {
	ApiService *DAGRunApiService
	// contains filtered or unexported fields
}

func (ApiPostDagRunRequest) DAGRun

func (ApiPostDagRunRequest) Execute

type ApiPostPoolRequest

type ApiPostPoolRequest struct {
	ApiService *PoolApiService
	// contains filtered or unexported fields
}

func (ApiPostPoolRequest) Execute

func (r ApiPostPoolRequest) Execute() (Pool, *_nethttp.Response, error)

func (ApiPostPoolRequest) Pool

type ApiPostRoleRequest

type ApiPostRoleRequest struct {
	ApiService *RoleApiService
	// contains filtered or unexported fields
}

func (ApiPostRoleRequest) Execute

func (r ApiPostRoleRequest) Execute() (Role, *_nethttp.Response, error)

func (ApiPostRoleRequest) Role

type ApiPostSetTaskInstancesStateRequest

type ApiPostSetTaskInstancesStateRequest struct {
	ApiService *DAGApiService
	// contains filtered or unexported fields
}

func (ApiPostSetTaskInstancesStateRequest) Execute

func (ApiPostSetTaskInstancesStateRequest) UpdateTaskInstancesState

func (r ApiPostSetTaskInstancesStateRequest) UpdateTaskInstancesState(updateTaskInstancesState UpdateTaskInstancesState) ApiPostSetTaskInstancesStateRequest

Parameters of action

type ApiPostUserRequest

type ApiPostUserRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiPostUserRequest) Execute

func (r ApiPostUserRequest) Execute() (User, *_nethttp.Response, error)

func (ApiPostUserRequest) User

type ApiPostVariablesRequest

type ApiPostVariablesRequest struct {
	ApiService *VariableApiService
	// contains filtered or unexported fields
}

func (ApiPostVariablesRequest) Execute

func (ApiPostVariablesRequest) Variable

type ApiTestConnectionRequest

type ApiTestConnectionRequest struct {
	ApiService *ConnectionApiService
	// contains filtered or unexported fields
}

func (ApiTestConnectionRequest) Connection

func (ApiTestConnectionRequest) Execute

type ApiUpdateDagRunStateRequest

type ApiUpdateDagRunStateRequest struct {
	ApiService *DAGRunApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDagRunStateRequest) Execute

func (ApiUpdateDagRunStateRequest) UpdateDagRunState

func (r ApiUpdateDagRunStateRequest) UpdateDagRunState(updateDagRunState UpdateDagRunState) ApiUpdateDagRunStateRequest

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 ClassReference

type ClassReference struct {
	ModulePath *string `json:"module_path,omitempty"`
	ClassName  *string `json:"class_name,omitempty"`
}

ClassReference Class reference

func NewClassReference

func NewClassReference() *ClassReference

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

func NewClassReferenceWithDefaults

func NewClassReferenceWithDefaults() *ClassReference

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

func (*ClassReference) GetClassName

func (o *ClassReference) GetClassName() string

GetClassName returns the ClassName field value if set, zero value otherwise.

func (*ClassReference) GetClassNameOk

func (o *ClassReference) GetClassNameOk() (*string, bool)

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

func (*ClassReference) GetModulePath

func (o *ClassReference) GetModulePath() string

GetModulePath returns the ModulePath field value if set, zero value otherwise.

func (*ClassReference) GetModulePathOk

func (o *ClassReference) GetModulePathOk() (*string, bool)

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

func (*ClassReference) HasClassName

func (o *ClassReference) HasClassName() bool

HasClassName returns a boolean if a field has been set.

func (*ClassReference) HasModulePath

func (o *ClassReference) HasModulePath() bool

HasModulePath returns a boolean if a field has been set.

func (ClassReference) MarshalJSON

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

func (*ClassReference) SetClassName

func (o *ClassReference) SetClassName(v string)

SetClassName gets a reference to the given string and assigns it to the ClassName field.

func (*ClassReference) SetModulePath

func (o *ClassReference) SetModulePath(v string)

SetModulePath gets a reference to the given string and assigns it to the ModulePath field.

type ClearTaskInstance

type ClearTaskInstance struct {
	// If set, don't actually run this operation. The response will contain a list of task instances planned to be cleaned, but not modified in any way.
	DryRun *bool `json:"dry_run,omitempty"`
	// A list of task ids to clear.  *New in version 2.1.0*
	TaskIds *[]string `json:"task_ids,omitempty"`
	// The minimum execution date to clear.
	StartDate *string `json:"start_date,omitempty"`
	// The maximum execution date to clear.
	EndDate *string `json:"end_date,omitempty"`
	// Only clear failed tasks.
	OnlyFailed *bool `json:"only_failed,omitempty"`
	// Only clear running tasks.
	OnlyRunning *bool `json:"only_running,omitempty"`
	// Clear tasks in subdags and clear external tasks indicated by ExternalTaskMarker.
	IncludeSubdags *bool `json:"include_subdags,omitempty"`
	// Clear tasks in the parent dag of the subdag.
	IncludeParentdag *bool `json:"include_parentdag,omitempty"`
	// Set state of DAG runs to RUNNING.
	ResetDagRuns *bool `json:"reset_dag_runs,omitempty"`
}

ClearTaskInstance struct for ClearTaskInstance

func NewClearTaskInstance

func NewClearTaskInstance() *ClearTaskInstance

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

func NewClearTaskInstanceWithDefaults

func NewClearTaskInstanceWithDefaults() *ClearTaskInstance

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

func (*ClearTaskInstance) GetDryRun

func (o *ClearTaskInstance) GetDryRun() bool

GetDryRun returns the DryRun field value if set, zero value otherwise.

func (*ClearTaskInstance) GetDryRunOk

func (o *ClearTaskInstance) GetDryRunOk() (*bool, bool)

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

func (*ClearTaskInstance) GetEndDate

func (o *ClearTaskInstance) GetEndDate() string

GetEndDate returns the EndDate field value if set, zero value otherwise.

func (*ClearTaskInstance) GetEndDateOk

func (o *ClearTaskInstance) GetEndDateOk() (*string, bool)

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

func (*ClearTaskInstance) GetIncludeParentdag

func (o *ClearTaskInstance) GetIncludeParentdag() bool

GetIncludeParentdag returns the IncludeParentdag field value if set, zero value otherwise.

func (*ClearTaskInstance) GetIncludeParentdagOk

func (o *ClearTaskInstance) GetIncludeParentdagOk() (*bool, bool)

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

func (*ClearTaskInstance) GetIncludeSubdags

func (o *ClearTaskInstance) GetIncludeSubdags() bool

GetIncludeSubdags returns the IncludeSubdags field value if set, zero value otherwise.

func (*ClearTaskInstance) GetIncludeSubdagsOk

func (o *ClearTaskInstance) GetIncludeSubdagsOk() (*bool, bool)

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

func (*ClearTaskInstance) GetOnlyFailed

func (o *ClearTaskInstance) GetOnlyFailed() bool

GetOnlyFailed returns the OnlyFailed field value if set, zero value otherwise.

func (*ClearTaskInstance) GetOnlyFailedOk

func (o *ClearTaskInstance) GetOnlyFailedOk() (*bool, bool)

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

func (*ClearTaskInstance) GetOnlyRunning

func (o *ClearTaskInstance) GetOnlyRunning() bool

GetOnlyRunning returns the OnlyRunning field value if set, zero value otherwise.

func (*ClearTaskInstance) GetOnlyRunningOk

func (o *ClearTaskInstance) GetOnlyRunningOk() (*bool, bool)

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

func (*ClearTaskInstance) GetResetDagRuns

func (o *ClearTaskInstance) GetResetDagRuns() bool

GetResetDagRuns returns the ResetDagRuns field value if set, zero value otherwise.

func (*ClearTaskInstance) GetResetDagRunsOk

func (o *ClearTaskInstance) GetResetDagRunsOk() (*bool, bool)

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

func (*ClearTaskInstance) GetStartDate

func (o *ClearTaskInstance) GetStartDate() string

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*ClearTaskInstance) GetStartDateOk

func (o *ClearTaskInstance) GetStartDateOk() (*string, bool)

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

func (*ClearTaskInstance) GetTaskIds

func (o *ClearTaskInstance) GetTaskIds() []string

GetTaskIds returns the TaskIds field value if set, zero value otherwise.

func (*ClearTaskInstance) GetTaskIdsOk

func (o *ClearTaskInstance) GetTaskIdsOk() (*[]string, bool)

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

func (*ClearTaskInstance) HasDryRun

func (o *ClearTaskInstance) HasDryRun() bool

HasDryRun returns a boolean if a field has been set.

func (*ClearTaskInstance) HasEndDate

func (o *ClearTaskInstance) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*ClearTaskInstance) HasIncludeParentdag

func (o *ClearTaskInstance) HasIncludeParentdag() bool

HasIncludeParentdag returns a boolean if a field has been set.

func (*ClearTaskInstance) HasIncludeSubdags

func (o *ClearTaskInstance) HasIncludeSubdags() bool

HasIncludeSubdags returns a boolean if a field has been set.

func (*ClearTaskInstance) HasOnlyFailed

func (o *ClearTaskInstance) HasOnlyFailed() bool

HasOnlyFailed returns a boolean if a field has been set.

func (*ClearTaskInstance) HasOnlyRunning

func (o *ClearTaskInstance) HasOnlyRunning() bool

HasOnlyRunning returns a boolean if a field has been set.

func (*ClearTaskInstance) HasResetDagRuns

func (o *ClearTaskInstance) HasResetDagRuns() bool

HasResetDagRuns returns a boolean if a field has been set.

func (*ClearTaskInstance) HasStartDate

func (o *ClearTaskInstance) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*ClearTaskInstance) HasTaskIds

func (o *ClearTaskInstance) HasTaskIds() bool

HasTaskIds returns a boolean if a field has been set.

func (ClearTaskInstance) MarshalJSON

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

func (*ClearTaskInstance) SetDryRun

func (o *ClearTaskInstance) SetDryRun(v bool)

SetDryRun gets a reference to the given bool and assigns it to the DryRun field.

func (*ClearTaskInstance) SetEndDate

func (o *ClearTaskInstance) SetEndDate(v string)

SetEndDate gets a reference to the given string and assigns it to the EndDate field.

func (*ClearTaskInstance) SetIncludeParentdag

func (o *ClearTaskInstance) SetIncludeParentdag(v bool)

SetIncludeParentdag gets a reference to the given bool and assigns it to the IncludeParentdag field.

func (*ClearTaskInstance) SetIncludeSubdags

func (o *ClearTaskInstance) SetIncludeSubdags(v bool)

SetIncludeSubdags gets a reference to the given bool and assigns it to the IncludeSubdags field.

func (*ClearTaskInstance) SetOnlyFailed

func (o *ClearTaskInstance) SetOnlyFailed(v bool)

SetOnlyFailed gets a reference to the given bool and assigns it to the OnlyFailed field.

func (*ClearTaskInstance) SetOnlyRunning

func (o *ClearTaskInstance) SetOnlyRunning(v bool)

SetOnlyRunning gets a reference to the given bool and assigns it to the OnlyRunning field.

func (*ClearTaskInstance) SetResetDagRuns

func (o *ClearTaskInstance) SetResetDagRuns(v bool)

SetResetDagRuns gets a reference to the given bool and assigns it to the ResetDagRuns field.

func (*ClearTaskInstance) SetStartDate

func (o *ClearTaskInstance) SetStartDate(v string)

SetStartDate gets a reference to the given string and assigns it to the StartDate field.

func (*ClearTaskInstance) SetTaskIds

func (o *ClearTaskInstance) SetTaskIds(v []string)

SetTaskIds gets a reference to the given []string and assigns it to the TaskIds field.

type CollectionInfo

type CollectionInfo struct {
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

CollectionInfo Metadata about collection.

func NewCollectionInfo

func NewCollectionInfo() *CollectionInfo

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

func NewCollectionInfoWithDefaults

func NewCollectionInfoWithDefaults() *CollectionInfo

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

func (*CollectionInfo) GetTotalEntries

func (o *CollectionInfo) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*CollectionInfo) GetTotalEntriesOk

func (o *CollectionInfo) GetTotalEntriesOk() (*int32, bool)

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

func (*CollectionInfo) HasTotalEntries

func (o *CollectionInfo) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (CollectionInfo) MarshalJSON

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

func (*CollectionInfo) SetTotalEntries

func (o *CollectionInfo) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type Config

type Config struct {
	Sections *[]ConfigSection `json:"sections,omitempty"`
}

Config The configuration.

func NewConfig

func NewConfig() *Config

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

func NewConfigWithDefaults

func NewConfigWithDefaults() *Config

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

func (*Config) GetSections

func (o *Config) GetSections() []ConfigSection

GetSections returns the Sections field value if set, zero value otherwise.

func (*Config) GetSectionsOk

func (o *Config) GetSectionsOk() (*[]ConfigSection, bool)

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

func (*Config) HasSections

func (o *Config) HasSections() bool

HasSections returns a boolean if a field has been set.

func (Config) MarshalJSON

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

func (*Config) SetSections

func (o *Config) SetSections(v []ConfigSection)

SetSections gets a reference to the given []ConfigSection and assigns it to the Sections field.

type ConfigApiService

type ConfigApiService service

ConfigApiService ConfigApi service

func (*ConfigApiService) GetConfig

GetConfig Get current configuration

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

func (*ConfigApiService) GetConfigExecute

func (a *ConfigApiService) GetConfigExecute(r ApiGetConfigRequest) (Config, *_nethttp.Response, error)

Execute executes the request

@return Config

type ConfigOption

type ConfigOption struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
}

ConfigOption The option of configuration.

func NewConfigOption

func NewConfigOption() *ConfigOption

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

func NewConfigOptionWithDefaults

func NewConfigOptionWithDefaults() *ConfigOption

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

func (*ConfigOption) GetKey

func (o *ConfigOption) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*ConfigOption) GetKeyOk

func (o *ConfigOption) 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 (*ConfigOption) GetValue

func (o *ConfigOption) GetValue() string

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

func (*ConfigOption) GetValueOk

func (o *ConfigOption) 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 (*ConfigOption) HasKey

func (o *ConfigOption) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*ConfigOption) HasValue

func (o *ConfigOption) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ConfigOption) MarshalJSON

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

func (*ConfigOption) SetKey

func (o *ConfigOption) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*ConfigOption) SetValue

func (o *ConfigOption) SetValue(v string)

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

type ConfigSection

type ConfigSection struct {
	Name    *string         `json:"name,omitempty"`
	Options *[]ConfigOption `json:"options,omitempty"`
}

ConfigSection The section of configuration.

func NewConfigSection

func NewConfigSection() *ConfigSection

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

func NewConfigSectionWithDefaults

func NewConfigSectionWithDefaults() *ConfigSection

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

func (*ConfigSection) GetName

func (o *ConfigSection) GetName() string

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

func (*ConfigSection) GetNameOk

func (o *ConfigSection) 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 (*ConfigSection) GetOptions

func (o *ConfigSection) GetOptions() []ConfigOption

GetOptions returns the Options field value if set, zero value otherwise.

func (*ConfigSection) GetOptionsOk

func (o *ConfigSection) GetOptionsOk() (*[]ConfigOption, 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 (*ConfigSection) HasName

func (o *ConfigSection) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConfigSection) HasOptions

func (o *ConfigSection) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (ConfigSection) MarshalJSON

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

func (*ConfigSection) SetName

func (o *ConfigSection) SetName(v string)

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

func (*ConfigSection) SetOptions

func (o *ConfigSection) SetOptions(v []ConfigOption)

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

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 Connection

type Connection struct {
	// The connection ID.
	ConnectionId *string `json:"connection_id,omitempty"`
	// The connection type.
	ConnType *string `json:"conn_type,omitempty"`
	// Host of the connection.
	Host NullableString `json:"host,omitempty"`
	// Login of the connection.
	Login NullableString `json:"login,omitempty"`
	// Schema of the connection.
	Schema NullableString `json:"schema,omitempty"`
	// Port of the connection.
	Port NullableInt32 `json:"port,omitempty"`
	// Password of the connection.
	Password *string `json:"password,omitempty"`
	// Other values that cannot be put into another field, e.g. RSA keys.
	Extra NullableString `json:"extra,omitempty"`
}

Connection Full representation of the connection.

func NewConnection

func NewConnection() *Connection

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

func NewConnectionWithDefaults

func NewConnectionWithDefaults() *Connection

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

func (*Connection) GetConnType

func (o *Connection) GetConnType() string

GetConnType returns the ConnType field value if set, zero value otherwise.

func (*Connection) GetConnTypeOk

func (o *Connection) GetConnTypeOk() (*string, bool)

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

func (*Connection) GetConnectionId

func (o *Connection) GetConnectionId() string

GetConnectionId returns the ConnectionId field value if set, zero value otherwise.

func (*Connection) GetConnectionIdOk

func (o *Connection) GetConnectionIdOk() (*string, bool)

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

func (*Connection) GetExtra

func (o *Connection) GetExtra() string

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

func (*Connection) GetExtraOk

func (o *Connection) GetExtraOk() (*string, bool)

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

func (*Connection) GetHost

func (o *Connection) GetHost() string

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

func (*Connection) GetHostOk

func (o *Connection) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Connection) GetLogin

func (o *Connection) GetLogin() string

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

func (*Connection) GetLoginOk

func (o *Connection) GetLoginOk() (*string, bool)

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

func (*Connection) GetPassword

func (o *Connection) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*Connection) GetPasswordOk

func (o *Connection) 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 (*Connection) GetPort

func (o *Connection) GetPort() int32

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

func (*Connection) GetPortOk

func (o *Connection) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Connection) GetSchema

func (o *Connection) GetSchema() string

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

func (*Connection) GetSchemaOk

func (o *Connection) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Connection) HasConnType

func (o *Connection) HasConnType() bool

HasConnType returns a boolean if a field has been set.

func (*Connection) HasConnectionId

func (o *Connection) HasConnectionId() bool

HasConnectionId returns a boolean if a field has been set.

func (*Connection) HasExtra

func (o *Connection) HasExtra() bool

HasExtra returns a boolean if a field has been set.

func (*Connection) HasHost

func (o *Connection) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*Connection) HasLogin

func (o *Connection) HasLogin() bool

HasLogin returns a boolean if a field has been set.

func (*Connection) HasPassword

func (o *Connection) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*Connection) HasPort

func (o *Connection) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*Connection) HasSchema

func (o *Connection) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (Connection) MarshalJSON

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

func (*Connection) SetConnType

func (o *Connection) SetConnType(v string)

SetConnType gets a reference to the given string and assigns it to the ConnType field.

func (*Connection) SetConnectionId

func (o *Connection) SetConnectionId(v string)

SetConnectionId gets a reference to the given string and assigns it to the ConnectionId field.

func (*Connection) SetExtra

func (o *Connection) SetExtra(v string)

SetExtra gets a reference to the given NullableString and assigns it to the Extra field.

func (*Connection) SetExtraNil

func (o *Connection) SetExtraNil()

SetExtraNil sets the value for Extra to be an explicit nil

func (*Connection) SetHost

func (o *Connection) SetHost(v string)

SetHost gets a reference to the given NullableString and assigns it to the Host field.

func (*Connection) SetHostNil

func (o *Connection) SetHostNil()

SetHostNil sets the value for Host to be an explicit nil

func (*Connection) SetLogin

func (o *Connection) SetLogin(v string)

SetLogin gets a reference to the given NullableString and assigns it to the Login field.

func (*Connection) SetLoginNil

func (o *Connection) SetLoginNil()

SetLoginNil sets the value for Login to be an explicit nil

func (*Connection) SetPassword

func (o *Connection) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*Connection) SetPort

func (o *Connection) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*Connection) SetPortNil

func (o *Connection) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*Connection) SetSchema

func (o *Connection) SetSchema(v string)

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

func (*Connection) SetSchemaNil

func (o *Connection) SetSchemaNil()

SetSchemaNil sets the value for Schema to be an explicit nil

func (*Connection) UnsetExtra

func (o *Connection) UnsetExtra()

UnsetExtra ensures that no value is present for Extra, not even an explicit nil

func (*Connection) UnsetHost

func (o *Connection) UnsetHost()

UnsetHost ensures that no value is present for Host, not even an explicit nil

func (*Connection) UnsetLogin

func (o *Connection) UnsetLogin()

UnsetLogin ensures that no value is present for Login, not even an explicit nil

func (*Connection) UnsetPort

func (o *Connection) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*Connection) UnsetSchema

func (o *Connection) UnsetSchema()

UnsetSchema ensures that no value is present for Schema, not even an explicit nil

type ConnectionAllOf

type ConnectionAllOf struct {
	// Password of the connection.
	Password *string `json:"password,omitempty"`
	// Other values that cannot be put into another field, e.g. RSA keys.
	Extra NullableString `json:"extra,omitempty"`
}

ConnectionAllOf struct for ConnectionAllOf

func NewConnectionAllOf

func NewConnectionAllOf() *ConnectionAllOf

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

func NewConnectionAllOfWithDefaults

func NewConnectionAllOfWithDefaults() *ConnectionAllOf

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

func (*ConnectionAllOf) GetExtra

func (o *ConnectionAllOf) GetExtra() string

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

func (*ConnectionAllOf) GetExtraOk

func (o *ConnectionAllOf) GetExtraOk() (*string, bool)

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

func (*ConnectionAllOf) GetPassword

func (o *ConnectionAllOf) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ConnectionAllOf) GetPasswordOk

func (o *ConnectionAllOf) 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 (*ConnectionAllOf) HasExtra

func (o *ConnectionAllOf) HasExtra() bool

HasExtra returns a boolean if a field has been set.

func (*ConnectionAllOf) HasPassword

func (o *ConnectionAllOf) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (ConnectionAllOf) MarshalJSON

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

func (*ConnectionAllOf) SetExtra

func (o *ConnectionAllOf) SetExtra(v string)

SetExtra gets a reference to the given NullableString and assigns it to the Extra field.

func (*ConnectionAllOf) SetExtraNil

func (o *ConnectionAllOf) SetExtraNil()

SetExtraNil sets the value for Extra to be an explicit nil

func (*ConnectionAllOf) SetPassword

func (o *ConnectionAllOf) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ConnectionAllOf) UnsetExtra

func (o *ConnectionAllOf) UnsetExtra()

UnsetExtra ensures that no value is present for Extra, not even an explicit nil

type ConnectionApiService

type ConnectionApiService service

ConnectionApiService ConnectionApi service

func (*ConnectionApiService) DeleteConnection

func (a *ConnectionApiService) DeleteConnection(ctx _context.Context, connectionId string) ApiDeleteConnectionRequest

DeleteConnection Delete a connection

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectionId The connection ID.
@return ApiDeleteConnectionRequest

func (*ConnectionApiService) DeleteConnectionExecute

func (a *ConnectionApiService) DeleteConnectionExecute(r ApiDeleteConnectionRequest) (*_nethttp.Response, error)

Execute executes the request

func (*ConnectionApiService) GetConnection

func (a *ConnectionApiService) GetConnection(ctx _context.Context, connectionId string) ApiGetConnectionRequest

GetConnection Get a connection

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectionId The connection ID.
@return ApiGetConnectionRequest

func (*ConnectionApiService) GetConnectionExecute

Execute executes the request

@return Connection

func (*ConnectionApiService) GetConnections

GetConnections List connections

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

func (*ConnectionApiService) GetConnectionsExecute

Execute executes the request

@return ConnectionCollection

func (*ConnectionApiService) PatchConnection

func (a *ConnectionApiService) PatchConnection(ctx _context.Context, connectionId string) ApiPatchConnectionRequest

PatchConnection Update a connection

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param connectionId The connection ID.
@return ApiPatchConnectionRequest

func (*ConnectionApiService) PatchConnectionExecute

Execute executes the request

@return Connection

func (*ConnectionApiService) PostConnection

PostConnection Create a connection

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

func (*ConnectionApiService) PostConnectionExecute

Execute executes the request

@return Connection

func (*ConnectionApiService) TestConnection

TestConnection Test a connection

Test a connection.

*New in version 2.2.0*

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

func (*ConnectionApiService) TestConnectionExecute

Execute executes the request

@return ConnectionTest

type ConnectionCollection

type ConnectionCollection struct {
	Connections *[]ConnectionCollectionItem `json:"connections,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

ConnectionCollection Collection of connections. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewConnectionCollection

func NewConnectionCollection() *ConnectionCollection

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

func NewConnectionCollectionWithDefaults

func NewConnectionCollectionWithDefaults() *ConnectionCollection

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

func (*ConnectionCollection) GetConnections

func (o *ConnectionCollection) GetConnections() []ConnectionCollectionItem

GetConnections returns the Connections field value if set, zero value otherwise.

func (*ConnectionCollection) GetConnectionsOk

func (o *ConnectionCollection) GetConnectionsOk() (*[]ConnectionCollectionItem, bool)

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

func (*ConnectionCollection) GetTotalEntries

func (o *ConnectionCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*ConnectionCollection) GetTotalEntriesOk

func (o *ConnectionCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*ConnectionCollection) HasConnections

func (o *ConnectionCollection) HasConnections() bool

HasConnections returns a boolean if a field has been set.

func (*ConnectionCollection) HasTotalEntries

func (o *ConnectionCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (ConnectionCollection) MarshalJSON

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

func (*ConnectionCollection) SetConnections

func (o *ConnectionCollection) SetConnections(v []ConnectionCollectionItem)

SetConnections gets a reference to the given []ConnectionCollectionItem and assigns it to the Connections field.

func (*ConnectionCollection) SetTotalEntries

func (o *ConnectionCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type ConnectionCollectionAllOf

type ConnectionCollectionAllOf struct {
	Connections *[]ConnectionCollectionItem `json:"connections,omitempty"`
}

ConnectionCollectionAllOf struct for ConnectionCollectionAllOf

func NewConnectionCollectionAllOf

func NewConnectionCollectionAllOf() *ConnectionCollectionAllOf

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

func NewConnectionCollectionAllOfWithDefaults

func NewConnectionCollectionAllOfWithDefaults() *ConnectionCollectionAllOf

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

func (*ConnectionCollectionAllOf) GetConnections

GetConnections returns the Connections field value if set, zero value otherwise.

func (*ConnectionCollectionAllOf) GetConnectionsOk

func (o *ConnectionCollectionAllOf) GetConnectionsOk() (*[]ConnectionCollectionItem, bool)

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

func (*ConnectionCollectionAllOf) HasConnections

func (o *ConnectionCollectionAllOf) HasConnections() bool

HasConnections returns a boolean if a field has been set.

func (ConnectionCollectionAllOf) MarshalJSON

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

func (*ConnectionCollectionAllOf) SetConnections

func (o *ConnectionCollectionAllOf) SetConnections(v []ConnectionCollectionItem)

SetConnections gets a reference to the given []ConnectionCollectionItem and assigns it to the Connections field.

type ConnectionCollectionItem

type ConnectionCollectionItem struct {
	// The connection ID.
	ConnectionId *string `json:"connection_id,omitempty"`
	// The connection type.
	ConnType *string `json:"conn_type,omitempty"`
	// Host of the connection.
	Host NullableString `json:"host,omitempty"`
	// Login of the connection.
	Login NullableString `json:"login,omitempty"`
	// Schema of the connection.
	Schema NullableString `json:"schema,omitempty"`
	// Port of the connection.
	Port NullableInt32 `json:"port,omitempty"`
}

ConnectionCollectionItem Connection collection item. The password and extra fields are only available when retrieving a single object due to the sensitivity of this data.

func NewConnectionCollectionItem

func NewConnectionCollectionItem() *ConnectionCollectionItem

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

func NewConnectionCollectionItemWithDefaults

func NewConnectionCollectionItemWithDefaults() *ConnectionCollectionItem

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

func (*ConnectionCollectionItem) GetConnType

func (o *ConnectionCollectionItem) GetConnType() string

GetConnType returns the ConnType field value if set, zero value otherwise.

func (*ConnectionCollectionItem) GetConnTypeOk

func (o *ConnectionCollectionItem) GetConnTypeOk() (*string, bool)

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

func (*ConnectionCollectionItem) GetConnectionId

func (o *ConnectionCollectionItem) GetConnectionId() string

GetConnectionId returns the ConnectionId field value if set, zero value otherwise.

func (*ConnectionCollectionItem) GetConnectionIdOk

func (o *ConnectionCollectionItem) GetConnectionIdOk() (*string, bool)

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

func (*ConnectionCollectionItem) GetHost

func (o *ConnectionCollectionItem) GetHost() string

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

func (*ConnectionCollectionItem) GetHostOk

func (o *ConnectionCollectionItem) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ConnectionCollectionItem) GetLogin

func (o *ConnectionCollectionItem) GetLogin() string

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

func (*ConnectionCollectionItem) GetLoginOk

func (o *ConnectionCollectionItem) GetLoginOk() (*string, bool)

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

func (*ConnectionCollectionItem) GetPort

func (o *ConnectionCollectionItem) GetPort() int32

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

func (*ConnectionCollectionItem) GetPortOk

func (o *ConnectionCollectionItem) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ConnectionCollectionItem) GetSchema

func (o *ConnectionCollectionItem) GetSchema() string

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

func (*ConnectionCollectionItem) GetSchemaOk

func (o *ConnectionCollectionItem) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ConnectionCollectionItem) HasConnType

func (o *ConnectionCollectionItem) HasConnType() bool

HasConnType returns a boolean if a field has been set.

func (*ConnectionCollectionItem) HasConnectionId

func (o *ConnectionCollectionItem) HasConnectionId() bool

HasConnectionId returns a boolean if a field has been set.

func (*ConnectionCollectionItem) HasHost

func (o *ConnectionCollectionItem) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*ConnectionCollectionItem) HasLogin

func (o *ConnectionCollectionItem) HasLogin() bool

HasLogin returns a boolean if a field has been set.

func (*ConnectionCollectionItem) HasPort

func (o *ConnectionCollectionItem) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*ConnectionCollectionItem) HasSchema

func (o *ConnectionCollectionItem) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (ConnectionCollectionItem) MarshalJSON

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

func (*ConnectionCollectionItem) SetConnType

func (o *ConnectionCollectionItem) SetConnType(v string)

SetConnType gets a reference to the given string and assigns it to the ConnType field.

func (*ConnectionCollectionItem) SetConnectionId

func (o *ConnectionCollectionItem) SetConnectionId(v string)

SetConnectionId gets a reference to the given string and assigns it to the ConnectionId field.

func (*ConnectionCollectionItem) SetHost

func (o *ConnectionCollectionItem) SetHost(v string)

SetHost gets a reference to the given NullableString and assigns it to the Host field.

func (*ConnectionCollectionItem) SetHostNil

func (o *ConnectionCollectionItem) SetHostNil()

SetHostNil sets the value for Host to be an explicit nil

func (*ConnectionCollectionItem) SetLogin

func (o *ConnectionCollectionItem) SetLogin(v string)

SetLogin gets a reference to the given NullableString and assigns it to the Login field.

func (*ConnectionCollectionItem) SetLoginNil

func (o *ConnectionCollectionItem) SetLoginNil()

SetLoginNil sets the value for Login to be an explicit nil

func (*ConnectionCollectionItem) SetPort

func (o *ConnectionCollectionItem) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*ConnectionCollectionItem) SetPortNil

func (o *ConnectionCollectionItem) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*ConnectionCollectionItem) SetSchema

func (o *ConnectionCollectionItem) SetSchema(v string)

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

func (*ConnectionCollectionItem) SetSchemaNil

func (o *ConnectionCollectionItem) SetSchemaNil()

SetSchemaNil sets the value for Schema to be an explicit nil

func (*ConnectionCollectionItem) UnsetHost

func (o *ConnectionCollectionItem) UnsetHost()

UnsetHost ensures that no value is present for Host, not even an explicit nil

func (*ConnectionCollectionItem) UnsetLogin

func (o *ConnectionCollectionItem) UnsetLogin()

UnsetLogin ensures that no value is present for Login, not even an explicit nil

func (*ConnectionCollectionItem) UnsetPort

func (o *ConnectionCollectionItem) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*ConnectionCollectionItem) UnsetSchema

func (o *ConnectionCollectionItem) UnsetSchema()

UnsetSchema ensures that no value is present for Schema, not even an explicit nil

type ConnectionTest

type ConnectionTest struct {
	// The status of the request.
	Status *bool `json:"status,omitempty"`
	// The success or failure message of the request.
	Message *string `json:"message,omitempty"`
}

ConnectionTest Connection test results. *New in version 2.2.0*

func NewConnectionTest

func NewConnectionTest() *ConnectionTest

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

func NewConnectionTestWithDefaults

func NewConnectionTestWithDefaults() *ConnectionTest

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

func (*ConnectionTest) GetMessage

func (o *ConnectionTest) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ConnectionTest) GetMessageOk

func (o *ConnectionTest) 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 (*ConnectionTest) GetStatus

func (o *ConnectionTest) GetStatus() bool

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

func (*ConnectionTest) GetStatusOk

func (o *ConnectionTest) GetStatusOk() (*bool, 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 (*ConnectionTest) HasMessage

func (o *ConnectionTest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ConnectionTest) HasStatus

func (o *ConnectionTest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectionTest) MarshalJSON

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

func (*ConnectionTest) SetMessage

func (o *ConnectionTest) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ConnectionTest) SetStatus

func (o *ConnectionTest) SetStatus(v bool)

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

type CronExpression

type CronExpression struct {
	Type  string `json:"__type"`
	Value string `json:"value"`
}

CronExpression Cron expression

func NewCronExpression

func NewCronExpression(type_ string, value string) *CronExpression

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

func NewCronExpressionWithDefaults

func NewCronExpressionWithDefaults() *CronExpression

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

func (*CronExpression) GetType

func (o *CronExpression) GetType() string

GetType returns the Type field value

func (*CronExpression) GetTypeOk

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

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

func (*CronExpression) GetValue

func (o *CronExpression) GetValue() string

GetValue returns the Value field value

func (*CronExpression) GetValueOk

func (o *CronExpression) GetValueOk() (*string, bool)

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

func (CronExpression) MarshalJSON

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

func (*CronExpression) SetType

func (o *CronExpression) SetType(v string)

SetType sets field value

func (*CronExpression) SetValue

func (o *CronExpression) SetValue(v string)

SetValue sets field value

type DAG

type DAG struct {
	// The ID of the DAG.
	DagId *string `json:"dag_id,omitempty"`
	// If the DAG is SubDAG then it is the top level DAG identifier. Otherwise, null.
	RootDagId NullableString `json:"root_dag_id,omitempty"`
	// Whether the DAG is paused.
	IsPaused NullableBool `json:"is_paused,omitempty"`
	// Whether the DAG is currently seen by the scheduler(s).  *New in version 2.1.1*  *Changed in version 2.2.0*: Field is read-only.
	IsActive NullableBool `json:"is_active,omitempty"`
	// Whether the DAG is SubDAG.
	IsSubdag *bool `json:"is_subdag,omitempty"`
	// The last time the DAG was parsed.  *New in version 2.3.0*
	LastParsedTime NullableTime `json:"last_parsed_time,omitempty"`
	// The last time the DAG was pickled.  *New in version 2.3.0*
	LastPickled NullableTime `json:"last_pickled,omitempty"`
	// Time when the DAG last received a refresh signal (e.g. the DAG's \"refresh\" button was clicked in the web UI)  *New in version 2.3.0*
	LastExpired NullableTime `json:"last_expired,omitempty"`
	// Whether (one of) the scheduler is scheduling this DAG at the moment  *New in version 2.3.0*
	SchedulerLock NullableBool `json:"scheduler_lock,omitempty"`
	// Foreign key to the latest pickle_id  *New in version 2.3.0*
	PickleId NullableString `json:"pickle_id,omitempty"`
	// Default view of the DAG inside the webserver  *New in version 2.3.0*
	DefaultView NullableString `json:"default_view,omitempty"`
	// The absolute path to the file.
	Fileloc *string `json:"fileloc,omitempty"`
	// The key containing the encrypted path to the file. Encryption and decryption take place only on the server. This prevents the client from reading an non-DAG file. This also ensures API extensibility, because the format of encrypted data may change.
	FileToken *string   `json:"file_token,omitempty"`
	Owners    *[]string `json:"owners,omitempty"`
	// User-provided DAG description, which can consist of several sentences or paragraphs that describe DAG contents.
	Description      NullableString    `json:"description,omitempty"`
	ScheduleInterval *ScheduleInterval `json:"schedule_interval,omitempty"`
	// Timetable/Schedule Interval description.  *New in version 2.3.0*
	TimetableDescription NullableString `json:"timetable_description,omitempty"`
	// List of tags.
	Tags []Tag `json:"tags,omitempty"`
	// Maximum number of active tasks that can be run on the DAG  *New in version 2.3.0*
	MaxActiveTasks NullableInt32 `json:"max_active_tasks,omitempty"`
	// Maximum number of active DAG runs for the DAG  *New in version 2.3.0*
	MaxActiveRuns NullableInt32 `json:"max_active_runs,omitempty"`
	// Whether the DAG has task concurrency limits  *New in version 2.3.0*
	HasTaskConcurrencyLimits NullableBool `json:"has_task_concurrency_limits,omitempty"`
	// Whether the DAG has import errors  *New in version 2.3.0*
	HasImportErrors NullableBool `json:"has_import_errors,omitempty"`
	// The logical date of the next dag run.  *New in version 2.3.0*
	NextDagrun NullableTime `json:"next_dagrun,omitempty"`
	// The start of the interval of the next dag run.  *New in version 2.3.0*
	NextDagrunDataIntervalStart NullableTime `json:"next_dagrun_data_interval_start,omitempty"`
	// The end of the interval of the next dag run.  *New in version 2.3.0*
	NextDagrunDataIntervalEnd NullableTime `json:"next_dagrun_data_interval_end,omitempty"`
	// Earliest time at which this “next_dagrun“ can be created.  *New in version 2.3.0*
	NextDagrunCreateAfter NullableTime `json:"next_dagrun_create_after,omitempty"`
}

DAG DAG

func NewDAG

func NewDAG() *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

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

func (o *DAG) GetDagId() string

GetDagId returns the DagId field value if set, zero value otherwise.

func (*DAG) GetDagIdOk

func (o *DAG) GetDagIdOk() (*string, bool)

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

func (*DAG) GetDefaultView

func (o *DAG) GetDefaultView() string

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

func (*DAG) GetDefaultViewOk

func (o *DAG) GetDefaultViewOk() (*string, bool)

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

func (*DAG) GetDescription

func (o *DAG) GetDescription() string

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

func (*DAG) GetDescriptionOk

func (o *DAG) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DAG) GetFileToken

func (o *DAG) GetFileToken() string

GetFileToken returns the FileToken field value if set, zero value otherwise.

func (*DAG) GetFileTokenOk

func (o *DAG) GetFileTokenOk() (*string, bool)

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

func (*DAG) GetFileloc

func (o *DAG) GetFileloc() string

GetFileloc returns the Fileloc field value if set, zero value otherwise.

func (*DAG) GetFilelocOk

func (o *DAG) GetFilelocOk() (*string, bool)

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

func (*DAG) GetHasImportErrors

func (o *DAG) GetHasImportErrors() bool

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

func (*DAG) GetHasImportErrorsOk

func (o *DAG) GetHasImportErrorsOk() (*bool, bool)

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

func (*DAG) GetHasTaskConcurrencyLimits

func (o *DAG) GetHasTaskConcurrencyLimits() bool

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

func (*DAG) GetHasTaskConcurrencyLimitsOk

func (o *DAG) GetHasTaskConcurrencyLimitsOk() (*bool, bool)

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

func (*DAG) GetIsActive

func (o *DAG) GetIsActive() bool

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

func (*DAG) GetIsActiveOk

func (o *DAG) GetIsActiveOk() (*bool, bool)

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

func (*DAG) GetIsPaused

func (o *DAG) GetIsPaused() bool

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

func (*DAG) GetIsPausedOk

func (o *DAG) GetIsPausedOk() (*bool, bool)

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

func (*DAG) GetIsSubdag

func (o *DAG) GetIsSubdag() bool

GetIsSubdag returns the IsSubdag field value if set, zero value otherwise.

func (*DAG) GetIsSubdagOk

func (o *DAG) GetIsSubdagOk() (*bool, bool)

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

func (*DAG) GetLastExpired

func (o *DAG) GetLastExpired() time.Time

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

func (*DAG) GetLastExpiredOk

func (o *DAG) GetLastExpiredOk() (*time.Time, bool)

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

func (*DAG) GetLastParsedTime

func (o *DAG) GetLastParsedTime() time.Time

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

func (*DAG) GetLastParsedTimeOk

func (o *DAG) GetLastParsedTimeOk() (*time.Time, bool)

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

func (*DAG) GetLastPickled

func (o *DAG) GetLastPickled() time.Time

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

func (*DAG) GetLastPickledOk

func (o *DAG) GetLastPickledOk() (*time.Time, bool)

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

func (*DAG) GetMaxActiveRuns

func (o *DAG) GetMaxActiveRuns() int32

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

func (*DAG) GetMaxActiveRunsOk

func (o *DAG) GetMaxActiveRunsOk() (*int32, bool)

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

func (*DAG) GetMaxActiveTasks

func (o *DAG) GetMaxActiveTasks() int32

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

func (*DAG) GetMaxActiveTasksOk

func (o *DAG) GetMaxActiveTasksOk() (*int32, bool)

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

func (*DAG) GetNextDagrun

func (o *DAG) GetNextDagrun() time.Time

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

func (*DAG) GetNextDagrunCreateAfter

func (o *DAG) GetNextDagrunCreateAfter() time.Time

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

func (*DAG) GetNextDagrunCreateAfterOk

func (o *DAG) GetNextDagrunCreateAfterOk() (*time.Time, bool)

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

func (*DAG) GetNextDagrunDataIntervalEnd

func (o *DAG) GetNextDagrunDataIntervalEnd() time.Time

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

func (*DAG) GetNextDagrunDataIntervalEndOk

func (o *DAG) GetNextDagrunDataIntervalEndOk() (*time.Time, bool)

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

func (*DAG) GetNextDagrunDataIntervalStart

func (o *DAG) GetNextDagrunDataIntervalStart() time.Time

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

func (*DAG) GetNextDagrunDataIntervalStartOk

func (o *DAG) GetNextDagrunDataIntervalStartOk() (*time.Time, bool)

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

func (*DAG) GetNextDagrunOk

func (o *DAG) GetNextDagrunOk() (*time.Time, bool)

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

func (*DAG) GetOwners

func (o *DAG) GetOwners() []string

GetOwners returns the Owners field value if set, zero value otherwise.

func (*DAG) GetOwnersOk

func (o *DAG) GetOwnersOk() (*[]string, bool)

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

func (*DAG) GetPickleId

func (o *DAG) GetPickleId() string

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

func (*DAG) GetPickleIdOk

func (o *DAG) GetPickleIdOk() (*string, bool)

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

func (*DAG) GetRootDagId

func (o *DAG) GetRootDagId() string

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

func (*DAG) GetRootDagIdOk

func (o *DAG) GetRootDagIdOk() (*string, bool)

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

func (*DAG) GetScheduleInterval

func (o *DAG) GetScheduleInterval() ScheduleInterval

GetScheduleInterval returns the ScheduleInterval field value if set, zero value otherwise.

func (*DAG) GetScheduleIntervalOk

func (o *DAG) GetScheduleIntervalOk() (*ScheduleInterval, bool)

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

func (*DAG) GetSchedulerLock

func (o *DAG) GetSchedulerLock() bool

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

func (*DAG) GetSchedulerLockOk

func (o *DAG) GetSchedulerLockOk() (*bool, bool)

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

func (*DAG) GetTags

func (o *DAG) GetTags() []Tag

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

func (*DAG) GetTagsOk

func (o *DAG) GetTagsOk() (*[]Tag, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DAG) GetTimetableDescription

func (o *DAG) GetTimetableDescription() string

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

func (*DAG) GetTimetableDescriptionOk

func (o *DAG) GetTimetableDescriptionOk() (*string, bool)

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

func (*DAG) HasDagId

func (o *DAG) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*DAG) HasDefaultView

func (o *DAG) HasDefaultView() bool

HasDefaultView returns a boolean if a field has been set.

func (*DAG) HasDescription

func (o *DAG) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DAG) HasFileToken

func (o *DAG) HasFileToken() bool

HasFileToken returns a boolean if a field has been set.

func (*DAG) HasFileloc

func (o *DAG) HasFileloc() bool

HasFileloc returns a boolean if a field has been set.

func (*DAG) HasHasImportErrors

func (o *DAG) HasHasImportErrors() bool

HasHasImportErrors returns a boolean if a field has been set.

func (*DAG) HasHasTaskConcurrencyLimits

func (o *DAG) HasHasTaskConcurrencyLimits() bool

HasHasTaskConcurrencyLimits returns a boolean if a field has been set.

func (*DAG) HasIsActive

func (o *DAG) HasIsActive() bool

HasIsActive returns a boolean if a field has been set.

func (*DAG) HasIsPaused

func (o *DAG) HasIsPaused() bool

HasIsPaused returns a boolean if a field has been set.

func (*DAG) HasIsSubdag

func (o *DAG) HasIsSubdag() bool

HasIsSubdag returns a boolean if a field has been set.

func (*DAG) HasLastExpired

func (o *DAG) HasLastExpired() bool

HasLastExpired returns a boolean if a field has been set.

func (*DAG) HasLastParsedTime

func (o *DAG) HasLastParsedTime() bool

HasLastParsedTime returns a boolean if a field has been set.

func (*DAG) HasLastPickled

func (o *DAG) HasLastPickled() bool

HasLastPickled returns a boolean if a field has been set.

func (*DAG) HasMaxActiveRuns

func (o *DAG) HasMaxActiveRuns() bool

HasMaxActiveRuns returns a boolean if a field has been set.

func (*DAG) HasMaxActiveTasks

func (o *DAG) HasMaxActiveTasks() bool

HasMaxActiveTasks returns a boolean if a field has been set.

func (*DAG) HasNextDagrun

func (o *DAG) HasNextDagrun() bool

HasNextDagrun returns a boolean if a field has been set.

func (*DAG) HasNextDagrunCreateAfter

func (o *DAG) HasNextDagrunCreateAfter() bool

HasNextDagrunCreateAfter returns a boolean if a field has been set.

func (*DAG) HasNextDagrunDataIntervalEnd

func (o *DAG) HasNextDagrunDataIntervalEnd() bool

HasNextDagrunDataIntervalEnd returns a boolean if a field has been set.

func (*DAG) HasNextDagrunDataIntervalStart

func (o *DAG) HasNextDagrunDataIntervalStart() bool

HasNextDagrunDataIntervalStart returns a boolean if a field has been set.

func (*DAG) HasOwners

func (o *DAG) HasOwners() bool

HasOwners returns a boolean if a field has been set.

func (*DAG) HasPickleId

func (o *DAG) HasPickleId() bool

HasPickleId returns a boolean if a field has been set.

func (*DAG) HasRootDagId

func (o *DAG) HasRootDagId() bool

HasRootDagId returns a boolean if a field has been set.

func (*DAG) HasScheduleInterval

func (o *DAG) HasScheduleInterval() bool

HasScheduleInterval returns a boolean if a field has been set.

func (*DAG) HasSchedulerLock

func (o *DAG) HasSchedulerLock() bool

HasSchedulerLock returns a boolean if a field has been set.

func (*DAG) HasTags

func (o *DAG) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*DAG) HasTimetableDescription

func (o *DAG) HasTimetableDescription() bool

HasTimetableDescription returns a boolean if a field has been set.

func (DAG) MarshalJSON

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

func (*DAG) SetDagId

func (o *DAG) SetDagId(v string)

SetDagId gets a reference to the given string and assigns it to the DagId field.

func (*DAG) SetDefaultView

func (o *DAG) SetDefaultView(v string)

SetDefaultView gets a reference to the given NullableString and assigns it to the DefaultView field.

func (*DAG) SetDefaultViewNil

func (o *DAG) SetDefaultViewNil()

SetDefaultViewNil sets the value for DefaultView to be an explicit nil

func (*DAG) SetDescription

func (o *DAG) SetDescription(v string)

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

func (*DAG) SetDescriptionNil

func (o *DAG) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*DAG) SetFileToken

func (o *DAG) SetFileToken(v string)

SetFileToken gets a reference to the given string and assigns it to the FileToken field.

func (*DAG) SetFileloc

func (o *DAG) SetFileloc(v string)

SetFileloc gets a reference to the given string and assigns it to the Fileloc field.

func (*DAG) SetHasImportErrors

func (o *DAG) SetHasImportErrors(v bool)

SetHasImportErrors gets a reference to the given NullableBool and assigns it to the HasImportErrors field.

func (*DAG) SetHasImportErrorsNil

func (o *DAG) SetHasImportErrorsNil()

SetHasImportErrorsNil sets the value for HasImportErrors to be an explicit nil

func (*DAG) SetHasTaskConcurrencyLimits

func (o *DAG) SetHasTaskConcurrencyLimits(v bool)

SetHasTaskConcurrencyLimits gets a reference to the given NullableBool and assigns it to the HasTaskConcurrencyLimits field.

func (*DAG) SetHasTaskConcurrencyLimitsNil

func (o *DAG) SetHasTaskConcurrencyLimitsNil()

SetHasTaskConcurrencyLimitsNil sets the value for HasTaskConcurrencyLimits to be an explicit nil

func (*DAG) SetIsActive

func (o *DAG) SetIsActive(v bool)

SetIsActive gets a reference to the given NullableBool and assigns it to the IsActive field.

func (*DAG) SetIsActiveNil

func (o *DAG) SetIsActiveNil()

SetIsActiveNil sets the value for IsActive to be an explicit nil

func (*DAG) SetIsPaused

func (o *DAG) SetIsPaused(v bool)

SetIsPaused gets a reference to the given NullableBool and assigns it to the IsPaused field.

func (*DAG) SetIsPausedNil

func (o *DAG) SetIsPausedNil()

SetIsPausedNil sets the value for IsPaused to be an explicit nil

func (*DAG) SetIsSubdag

func (o *DAG) SetIsSubdag(v bool)

SetIsSubdag gets a reference to the given bool and assigns it to the IsSubdag field.

func (*DAG) SetLastExpired

func (o *DAG) SetLastExpired(v time.Time)

SetLastExpired gets a reference to the given NullableTime and assigns it to the LastExpired field.

func (*DAG) SetLastExpiredNil

func (o *DAG) SetLastExpiredNil()

SetLastExpiredNil sets the value for LastExpired to be an explicit nil

func (*DAG) SetLastParsedTime

func (o *DAG) SetLastParsedTime(v time.Time)

SetLastParsedTime gets a reference to the given NullableTime and assigns it to the LastParsedTime field.

func (*DAG) SetLastParsedTimeNil

func (o *DAG) SetLastParsedTimeNil()

SetLastParsedTimeNil sets the value for LastParsedTime to be an explicit nil

func (*DAG) SetLastPickled

func (o *DAG) SetLastPickled(v time.Time)

SetLastPickled gets a reference to the given NullableTime and assigns it to the LastPickled field.

func (*DAG) SetLastPickledNil

func (o *DAG) SetLastPickledNil()

SetLastPickledNil sets the value for LastPickled to be an explicit nil

func (*DAG) SetMaxActiveRuns

func (o *DAG) SetMaxActiveRuns(v int32)

SetMaxActiveRuns gets a reference to the given NullableInt32 and assigns it to the MaxActiveRuns field.

func (*DAG) SetMaxActiveRunsNil

func (o *DAG) SetMaxActiveRunsNil()

SetMaxActiveRunsNil sets the value for MaxActiveRuns to be an explicit nil

func (*DAG) SetMaxActiveTasks

func (o *DAG) SetMaxActiveTasks(v int32)

SetMaxActiveTasks gets a reference to the given NullableInt32 and assigns it to the MaxActiveTasks field.

func (*DAG) SetMaxActiveTasksNil

func (o *DAG) SetMaxActiveTasksNil()

SetMaxActiveTasksNil sets the value for MaxActiveTasks to be an explicit nil

func (*DAG) SetNextDagrun

func (o *DAG) SetNextDagrun(v time.Time)

SetNextDagrun gets a reference to the given NullableTime and assigns it to the NextDagrun field.

func (*DAG) SetNextDagrunCreateAfter

func (o *DAG) SetNextDagrunCreateAfter(v time.Time)

SetNextDagrunCreateAfter gets a reference to the given NullableTime and assigns it to the NextDagrunCreateAfter field.

func (*DAG) SetNextDagrunCreateAfterNil

func (o *DAG) SetNextDagrunCreateAfterNil()

SetNextDagrunCreateAfterNil sets the value for NextDagrunCreateAfter to be an explicit nil

func (*DAG) SetNextDagrunDataIntervalEnd

func (o *DAG) SetNextDagrunDataIntervalEnd(v time.Time)

SetNextDagrunDataIntervalEnd gets a reference to the given NullableTime and assigns it to the NextDagrunDataIntervalEnd field.

func (*DAG) SetNextDagrunDataIntervalEndNil

func (o *DAG) SetNextDagrunDataIntervalEndNil()

SetNextDagrunDataIntervalEndNil sets the value for NextDagrunDataIntervalEnd to be an explicit nil

func (*DAG) SetNextDagrunDataIntervalStart

func (o *DAG) SetNextDagrunDataIntervalStart(v time.Time)

SetNextDagrunDataIntervalStart gets a reference to the given NullableTime and assigns it to the NextDagrunDataIntervalStart field.

func (*DAG) SetNextDagrunDataIntervalStartNil

func (o *DAG) SetNextDagrunDataIntervalStartNil()

SetNextDagrunDataIntervalStartNil sets the value for NextDagrunDataIntervalStart to be an explicit nil

func (*DAG) SetNextDagrunNil

func (o *DAG) SetNextDagrunNil()

SetNextDagrunNil sets the value for NextDagrun to be an explicit nil

func (*DAG) SetOwners

func (o *DAG) SetOwners(v []string)

SetOwners gets a reference to the given []string and assigns it to the Owners field.

func (*DAG) SetPickleId

func (o *DAG) SetPickleId(v string)

SetPickleId gets a reference to the given NullableString and assigns it to the PickleId field.

func (*DAG) SetPickleIdNil

func (o *DAG) SetPickleIdNil()

SetPickleIdNil sets the value for PickleId to be an explicit nil

func (*DAG) SetRootDagId

func (o *DAG) SetRootDagId(v string)

SetRootDagId gets a reference to the given NullableString and assigns it to the RootDagId field.

func (*DAG) SetRootDagIdNil

func (o *DAG) SetRootDagIdNil()

SetRootDagIdNil sets the value for RootDagId to be an explicit nil

func (*DAG) SetScheduleInterval

func (o *DAG) SetScheduleInterval(v ScheduleInterval)

SetScheduleInterval gets a reference to the given ScheduleInterval and assigns it to the ScheduleInterval field.

func (*DAG) SetSchedulerLock

func (o *DAG) SetSchedulerLock(v bool)

SetSchedulerLock gets a reference to the given NullableBool and assigns it to the SchedulerLock field.

func (*DAG) SetSchedulerLockNil

func (o *DAG) SetSchedulerLockNil()

SetSchedulerLockNil sets the value for SchedulerLock to be an explicit nil

func (*DAG) SetTags

func (o *DAG) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*DAG) SetTimetableDescription

func (o *DAG) SetTimetableDescription(v string)

SetTimetableDescription gets a reference to the given NullableString and assigns it to the TimetableDescription field.

func (*DAG) SetTimetableDescriptionNil

func (o *DAG) SetTimetableDescriptionNil()

SetTimetableDescriptionNil sets the value for TimetableDescription to be an explicit nil

func (*DAG) UnsetDefaultView

func (o *DAG) UnsetDefaultView()

UnsetDefaultView ensures that no value is present for DefaultView, not even an explicit nil

func (*DAG) UnsetDescription

func (o *DAG) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*DAG) UnsetHasImportErrors

func (o *DAG) UnsetHasImportErrors()

UnsetHasImportErrors ensures that no value is present for HasImportErrors, not even an explicit nil

func (*DAG) UnsetHasTaskConcurrencyLimits

func (o *DAG) UnsetHasTaskConcurrencyLimits()

UnsetHasTaskConcurrencyLimits ensures that no value is present for HasTaskConcurrencyLimits, not even an explicit nil

func (*DAG) UnsetIsActive

func (o *DAG) UnsetIsActive()

UnsetIsActive ensures that no value is present for IsActive, not even an explicit nil

func (*DAG) UnsetIsPaused

func (o *DAG) UnsetIsPaused()

UnsetIsPaused ensures that no value is present for IsPaused, not even an explicit nil

func (*DAG) UnsetLastExpired

func (o *DAG) UnsetLastExpired()

UnsetLastExpired ensures that no value is present for LastExpired, not even an explicit nil

func (*DAG) UnsetLastParsedTime

func (o *DAG) UnsetLastParsedTime()

UnsetLastParsedTime ensures that no value is present for LastParsedTime, not even an explicit nil

func (*DAG) UnsetLastPickled

func (o *DAG) UnsetLastPickled()

UnsetLastPickled ensures that no value is present for LastPickled, not even an explicit nil

func (*DAG) UnsetMaxActiveRuns

func (o *DAG) UnsetMaxActiveRuns()

UnsetMaxActiveRuns ensures that no value is present for MaxActiveRuns, not even an explicit nil

func (*DAG) UnsetMaxActiveTasks

func (o *DAG) UnsetMaxActiveTasks()

UnsetMaxActiveTasks ensures that no value is present for MaxActiveTasks, not even an explicit nil

func (*DAG) UnsetNextDagrun

func (o *DAG) UnsetNextDagrun()

UnsetNextDagrun ensures that no value is present for NextDagrun, not even an explicit nil

func (*DAG) UnsetNextDagrunCreateAfter

func (o *DAG) UnsetNextDagrunCreateAfter()

UnsetNextDagrunCreateAfter ensures that no value is present for NextDagrunCreateAfter, not even an explicit nil

func (*DAG) UnsetNextDagrunDataIntervalEnd

func (o *DAG) UnsetNextDagrunDataIntervalEnd()

UnsetNextDagrunDataIntervalEnd ensures that no value is present for NextDagrunDataIntervalEnd, not even an explicit nil

func (*DAG) UnsetNextDagrunDataIntervalStart

func (o *DAG) UnsetNextDagrunDataIntervalStart()

UnsetNextDagrunDataIntervalStart ensures that no value is present for NextDagrunDataIntervalStart, not even an explicit nil

func (*DAG) UnsetPickleId

func (o *DAG) UnsetPickleId()

UnsetPickleId ensures that no value is present for PickleId, not even an explicit nil

func (*DAG) UnsetRootDagId

func (o *DAG) UnsetRootDagId()

UnsetRootDagId ensures that no value is present for RootDagId, not even an explicit nil

func (*DAG) UnsetSchedulerLock

func (o *DAG) UnsetSchedulerLock()

UnsetSchedulerLock ensures that no value is present for SchedulerLock, not even an explicit nil

func (*DAG) UnsetTimetableDescription

func (o *DAG) UnsetTimetableDescription()

UnsetTimetableDescription ensures that no value is present for TimetableDescription, not even an explicit nil

type DAGApiService

type DAGApiService service

DAGApiService DAGApi service

func (*DAGApiService) DeleteDag

func (a *DAGApiService) DeleteDag(ctx _context.Context, dagId string) ApiDeleteDagRequest

DeleteDag Delete a DAG

Deletes all metadata related to the DAG, including finished DAG Runs and Tasks. Logs are not deleted. This action cannot be undone.

*New in version 2.2.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiDeleteDagRequest

func (*DAGApiService) DeleteDagExecute

func (a *DAGApiService) DeleteDagExecute(r ApiDeleteDagRequest) (*_nethttp.Response, error)

Execute executes the request

func (*DAGApiService) GetDag

func (a *DAGApiService) GetDag(ctx _context.Context, dagId string) ApiGetDagRequest

GetDag Get basic information about a DAG

Presents only information available in database (DAGModel). If you need detailed information, consider using GET /dags/{dag_id}/details.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiGetDagRequest

func (*DAGApiService) GetDagDetails

func (a *DAGApiService) GetDagDetails(ctx _context.Context, dagId string) ApiGetDagDetailsRequest

GetDagDetails Get a simplified representation of DAG

The response contains many DAG attributes, so the response can be large. If possible, consider using GET /dags/{dag_id}.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiGetDagDetailsRequest

func (*DAGApiService) GetDagDetailsExecute

func (a *DAGApiService) GetDagDetailsExecute(r ApiGetDagDetailsRequest) (DAGDetail, *_nethttp.Response, error)

Execute executes the request

@return DAGDetail

func (*DAGApiService) GetDagExecute

func (a *DAGApiService) GetDagExecute(r ApiGetDagRequest) (DAG, *_nethttp.Response, error)

Execute executes the request

@return DAG

func (*DAGApiService) GetDagSource

func (a *DAGApiService) GetDagSource(ctx _context.Context, fileToken string) ApiGetDagSourceRequest

GetDagSource Get a source code

Get a source code using file token.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param fileToken The key containing the encrypted path to the file. Encryption and decryption take place only on the server. This prevents the client from reading an non-DAG file. This also ensures API extensibility, because the format of encrypted data may change.
@return ApiGetDagSourceRequest

func (*DAGApiService) GetDagSourceExecute

Execute executes the request

@return InlineResponse2001

func (*DAGApiService) GetDags

GetDags List DAGs

List DAGs in the database. `dag_id_pattern` can be set to match dags of a specific pattern

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

func (*DAGApiService) GetDagsExecute

Execute executes the request

@return DAGCollection

func (*DAGApiService) GetTask

func (a *DAGApiService) GetTask(ctx _context.Context, dagId string, taskId string) ApiGetTaskRequest

GetTask Get simplified representation of a task

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param taskId The task ID.
@return ApiGetTaskRequest

func (*DAGApiService) GetTaskExecute

func (a *DAGApiService) GetTaskExecute(r ApiGetTaskRequest) (Task, *_nethttp.Response, error)

Execute executes the request

@return Task

func (*DAGApiService) GetTasks

func (a *DAGApiService) GetTasks(ctx _context.Context, dagId string) ApiGetTasksRequest

GetTasks Get tasks for DAG

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiGetTasksRequest

func (*DAGApiService) GetTasksExecute

Execute executes the request

@return TaskCollection

func (*DAGApiService) PatchDag

func (a *DAGApiService) PatchDag(ctx _context.Context, dagId string) ApiPatchDagRequest

PatchDag Update a DAG

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiPatchDagRequest

func (*DAGApiService) PatchDagExecute

func (a *DAGApiService) PatchDagExecute(r ApiPatchDagRequest) (DAG, *_nethttp.Response, error)

Execute executes the request

@return DAG

func (*DAGApiService) PatchDags

PatchDags Update DAGs

Update DAGs of a given dag_id_pattern using UpdateMask. This endpoint allows specifying `~` as the dag_id_pattern to update all DAGs. *New in version 2.3.0*

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

func (*DAGApiService) PatchDagsExecute

Execute executes the request

@return DAGCollection

func (*DAGApiService) PostClearTaskInstances

func (a *DAGApiService) PostClearTaskInstances(ctx _context.Context, dagId string) ApiPostClearTaskInstancesRequest

PostClearTaskInstances Clear a set of task instances

Clears a set of task instances associated with the DAG for a specified date range.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiPostClearTaskInstancesRequest

func (*DAGApiService) PostClearTaskInstancesExecute

Execute executes the request

@return TaskInstanceReferenceCollection

func (*DAGApiService) PostSetTaskInstancesState

func (a *DAGApiService) PostSetTaskInstancesState(ctx _context.Context, dagId string) ApiPostSetTaskInstancesStateRequest

PostSetTaskInstancesState Set a state of task instances

Updates the state for multiple task instances simultaneously.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiPostSetTaskInstancesStateRequest

func (*DAGApiService) PostSetTaskInstancesStateExecute

Execute executes the request

@return TaskInstanceReferenceCollection

type DAGCollection

type DAGCollection struct {
	Dags *[]DAG `json:"dags,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

DAGCollection Collection of DAGs. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewDAGCollection

func NewDAGCollection() *DAGCollection

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

func NewDAGCollectionWithDefaults

func NewDAGCollectionWithDefaults() *DAGCollection

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

func (*DAGCollection) GetDags

func (o *DAGCollection) GetDags() []DAG

GetDags returns the Dags field value if set, zero value otherwise.

func (*DAGCollection) GetDagsOk

func (o *DAGCollection) GetDagsOk() (*[]DAG, bool)

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

func (*DAGCollection) GetTotalEntries

func (o *DAGCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*DAGCollection) GetTotalEntriesOk

func (o *DAGCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*DAGCollection) HasDags

func (o *DAGCollection) HasDags() bool

HasDags returns a boolean if a field has been set.

func (*DAGCollection) HasTotalEntries

func (o *DAGCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (DAGCollection) MarshalJSON

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

func (*DAGCollection) SetDags

func (o *DAGCollection) SetDags(v []DAG)

SetDags gets a reference to the given []DAG and assigns it to the Dags field.

func (*DAGCollection) SetTotalEntries

func (o *DAGCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type DAGCollectionAllOf

type DAGCollectionAllOf struct {
	Dags *[]DAG `json:"dags,omitempty"`
}

DAGCollectionAllOf struct for DAGCollectionAllOf

func NewDAGCollectionAllOf

func NewDAGCollectionAllOf() *DAGCollectionAllOf

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

func NewDAGCollectionAllOfWithDefaults

func NewDAGCollectionAllOfWithDefaults() *DAGCollectionAllOf

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

func (*DAGCollectionAllOf) GetDags

func (o *DAGCollectionAllOf) GetDags() []DAG

GetDags returns the Dags field value if set, zero value otherwise.

func (*DAGCollectionAllOf) GetDagsOk

func (o *DAGCollectionAllOf) GetDagsOk() (*[]DAG, bool)

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

func (*DAGCollectionAllOf) HasDags

func (o *DAGCollectionAllOf) HasDags() bool

HasDags returns a boolean if a field has been set.

func (DAGCollectionAllOf) MarshalJSON

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

func (*DAGCollectionAllOf) SetDags

func (o *DAGCollectionAllOf) SetDags(v []DAG)

SetDags gets a reference to the given []DAG and assigns it to the Dags field.

type DAGDetail

type DAGDetail struct {
	// The ID of the DAG.
	DagId *string `json:"dag_id,omitempty"`
	// If the DAG is SubDAG then it is the top level DAG identifier. Otherwise, null.
	RootDagId NullableString `json:"root_dag_id,omitempty"`
	// Whether the DAG is paused.
	IsPaused NullableBool `json:"is_paused,omitempty"`
	// Whether the DAG is currently seen by the scheduler(s).  *New in version 2.1.1*  *Changed in version 2.2.0*: Field is read-only.
	IsActive NullableBool `json:"is_active,omitempty"`
	// Whether the DAG is SubDAG.
	IsSubdag *bool `json:"is_subdag,omitempty"`
	// The last time the DAG was parsed.  *New in version 2.3.0*
	LastParsedTime NullableTime `json:"last_parsed_time,omitempty"`
	// The last time the DAG was pickled.  *New in version 2.3.0*
	LastPickled NullableTime `json:"last_pickled,omitempty"`
	// Time when the DAG last received a refresh signal (e.g. the DAG's \"refresh\" button was clicked in the web UI)  *New in version 2.3.0*
	LastExpired NullableTime `json:"last_expired,omitempty"`
	// Whether (one of) the scheduler is scheduling this DAG at the moment  *New in version 2.3.0*
	SchedulerLock NullableBool `json:"scheduler_lock,omitempty"`
	// Foreign key to the latest pickle_id  *New in version 2.3.0*
	PickleId    NullableString `json:"pickle_id,omitempty"`
	DefaultView *string        `json:"default_view,omitempty"`
	// The absolute path to the file.
	Fileloc *string `json:"fileloc,omitempty"`
	// The key containing the encrypted path to the file. Encryption and decryption take place only on the server. This prevents the client from reading an non-DAG file. This also ensures API extensibility, because the format of encrypted data may change.
	FileToken *string   `json:"file_token,omitempty"`
	Owners    *[]string `json:"owners,omitempty"`
	// User-provided DAG description, which can consist of several sentences or paragraphs that describe DAG contents.
	Description      NullableString    `json:"description,omitempty"`
	ScheduleInterval *ScheduleInterval `json:"schedule_interval,omitempty"`
	// Timetable/Schedule Interval description.  *New in version 2.3.0*
	TimetableDescription NullableString `json:"timetable_description,omitempty"`
	// List of tags.
	Tags []Tag `json:"tags,omitempty"`
	// Maximum number of active tasks that can be run on the DAG  *New in version 2.3.0*
	MaxActiveTasks NullableInt32 `json:"max_active_tasks,omitempty"`
	// Maximum number of active DAG runs for the DAG  *New in version 2.3.0*
	MaxActiveRuns NullableInt32 `json:"max_active_runs,omitempty"`
	// Whether the DAG has task concurrency limits  *New in version 2.3.0*
	HasTaskConcurrencyLimits NullableBool `json:"has_task_concurrency_limits,omitempty"`
	// Whether the DAG has import errors  *New in version 2.3.0*
	HasImportErrors NullableBool `json:"has_import_errors,omitempty"`
	// The logical date of the next dag run.  *New in version 2.3.0*
	NextDagrun NullableTime `json:"next_dagrun,omitempty"`
	// The start of the interval of the next dag run.  *New in version 2.3.0*
	NextDagrunDataIntervalStart NullableTime `json:"next_dagrun_data_interval_start,omitempty"`
	// The end of the interval of the next dag run.  *New in version 2.3.0*
	NextDagrunDataIntervalEnd NullableTime `json:"next_dagrun_data_interval_end,omitempty"`
	// Earliest time at which this “next_dagrun“ can be created.  *New in version 2.3.0*
	NextDagrunCreateAfter NullableTime `json:"next_dagrun_create_after,omitempty"`
	Timezone              *string      `json:"timezone,omitempty"`
	Catchup               *bool        `json:"catchup,omitempty"`
	Orientation           *string      `json:"orientation,omitempty"`
	Concurrency           *float32     `json:"concurrency,omitempty"`
	// The DAG's start date.  *Changed in version 2.0.1*: Field becomes nullable.
	StartDate     NullableTime   `json:"start_date,omitempty"`
	DagRunTimeout *TimeDelta     `json:"dag_run_timeout,omitempty"`
	DocMd         NullableString `json:"doc_md,omitempty"`
	// User-specified DAG params.  *New in version 2.0.1*
	Params *map[string]interface{} `json:"params,omitempty"`
	// The DAG's end date.  *New in version 2.3.0*.
	EndDate NullableTime `json:"end_date,omitempty"`
	// Whether the DAG is paused upon creation.  *New in version 2.3.0*
	IsPausedUponCreation NullableBool `json:"is_paused_upon_creation,omitempty"`
	// The last time the DAG was parsed.  *New in version 2.3.0*
	LastParsed NullableTime `json:"last_parsed,omitempty"`
	// The template search path.  *New in version 2.3.0*
	TemplateSearchPath []string `json:"template_search_path,omitempty"`
	// Whether to render templates as native Python objects.  *New in version 2.3.0*
	RenderTemplateAsNativeObj NullableBool `json:"render_template_as_native_obj,omitempty"`
}

DAGDetail DAG details. For details see: [airflow.models.DAG](https://airflow.apache.org/docs/apache-airflow/stable/_api/airflow/models/index.html#airflow.models.DAG)

func NewDAGDetail

func NewDAGDetail() *DAGDetail

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

func NewDAGDetailWithDefaults

func NewDAGDetailWithDefaults() *DAGDetail

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

func (*DAGDetail) GetCatchup

func (o *DAGDetail) GetCatchup() bool

GetCatchup returns the Catchup field value if set, zero value otherwise.

func (*DAGDetail) GetCatchupOk

func (o *DAGDetail) GetCatchupOk() (*bool, bool)

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

func (*DAGDetail) GetConcurrency

func (o *DAGDetail) GetConcurrency() float32

GetConcurrency returns the Concurrency field value if set, zero value otherwise.

func (*DAGDetail) GetConcurrencyOk

func (o *DAGDetail) GetConcurrencyOk() (*float32, bool)

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

func (*DAGDetail) GetDagId

func (o *DAGDetail) GetDagId() string

GetDagId returns the DagId field value if set, zero value otherwise.

func (*DAGDetail) GetDagIdOk

func (o *DAGDetail) GetDagIdOk() (*string, bool)

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

func (*DAGDetail) GetDagRunTimeout

func (o *DAGDetail) GetDagRunTimeout() TimeDelta

GetDagRunTimeout returns the DagRunTimeout field value if set, zero value otherwise.

func (*DAGDetail) GetDagRunTimeoutOk

func (o *DAGDetail) GetDagRunTimeoutOk() (*TimeDelta, bool)

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

func (*DAGDetail) GetDefaultView

func (o *DAGDetail) GetDefaultView() string

GetDefaultView returns the DefaultView field value if set, zero value otherwise.

func (*DAGDetail) GetDefaultViewOk

func (o *DAGDetail) GetDefaultViewOk() (*string, bool)

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

func (*DAGDetail) GetDescription

func (o *DAGDetail) GetDescription() string

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

func (*DAGDetail) GetDescriptionOk

func (o *DAGDetail) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DAGDetail) GetDocMd

func (o *DAGDetail) GetDocMd() string

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

func (*DAGDetail) GetDocMdOk

func (o *DAGDetail) GetDocMdOk() (*string, bool)

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

func (*DAGDetail) GetEndDate

func (o *DAGDetail) GetEndDate() time.Time

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

func (*DAGDetail) GetEndDateOk

func (o *DAGDetail) GetEndDateOk() (*time.Time, bool)

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

func (*DAGDetail) GetFileToken

func (o *DAGDetail) GetFileToken() string

GetFileToken returns the FileToken field value if set, zero value otherwise.

func (*DAGDetail) GetFileTokenOk

func (o *DAGDetail) GetFileTokenOk() (*string, bool)

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

func (*DAGDetail) GetFileloc

func (o *DAGDetail) GetFileloc() string

GetFileloc returns the Fileloc field value if set, zero value otherwise.

func (*DAGDetail) GetFilelocOk

func (o *DAGDetail) GetFilelocOk() (*string, bool)

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

func (*DAGDetail) GetHasImportErrors

func (o *DAGDetail) GetHasImportErrors() bool

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

func (*DAGDetail) GetHasImportErrorsOk

func (o *DAGDetail) GetHasImportErrorsOk() (*bool, bool)

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

func (*DAGDetail) GetHasTaskConcurrencyLimits

func (o *DAGDetail) GetHasTaskConcurrencyLimits() bool

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

func (*DAGDetail) GetHasTaskConcurrencyLimitsOk

func (o *DAGDetail) GetHasTaskConcurrencyLimitsOk() (*bool, bool)

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

func (*DAGDetail) GetIsActive

func (o *DAGDetail) GetIsActive() bool

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

func (*DAGDetail) GetIsActiveOk

func (o *DAGDetail) GetIsActiveOk() (*bool, bool)

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

func (*DAGDetail) GetIsPaused

func (o *DAGDetail) GetIsPaused() bool

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

func (*DAGDetail) GetIsPausedOk

func (o *DAGDetail) GetIsPausedOk() (*bool, bool)

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

func (*DAGDetail) GetIsPausedUponCreation

func (o *DAGDetail) GetIsPausedUponCreation() bool

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

func (*DAGDetail) GetIsPausedUponCreationOk

func (o *DAGDetail) GetIsPausedUponCreationOk() (*bool, bool)

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

func (*DAGDetail) GetIsSubdag

func (o *DAGDetail) GetIsSubdag() bool

GetIsSubdag returns the IsSubdag field value if set, zero value otherwise.

func (*DAGDetail) GetIsSubdagOk

func (o *DAGDetail) GetIsSubdagOk() (*bool, bool)

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

func (*DAGDetail) GetLastExpired

func (o *DAGDetail) GetLastExpired() time.Time

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

func (*DAGDetail) GetLastExpiredOk

func (o *DAGDetail) GetLastExpiredOk() (*time.Time, bool)

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

func (*DAGDetail) GetLastParsed

func (o *DAGDetail) GetLastParsed() time.Time

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

func (*DAGDetail) GetLastParsedOk

func (o *DAGDetail) GetLastParsedOk() (*time.Time, bool)

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

func (*DAGDetail) GetLastParsedTime

func (o *DAGDetail) GetLastParsedTime() time.Time

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

func (*DAGDetail) GetLastParsedTimeOk

func (o *DAGDetail) GetLastParsedTimeOk() (*time.Time, bool)

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

func (*DAGDetail) GetLastPickled

func (o *DAGDetail) GetLastPickled() time.Time

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

func (*DAGDetail) GetLastPickledOk

func (o *DAGDetail) GetLastPickledOk() (*time.Time, bool)

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

func (*DAGDetail) GetMaxActiveRuns

func (o *DAGDetail) GetMaxActiveRuns() int32

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

func (*DAGDetail) GetMaxActiveRunsOk

func (o *DAGDetail) GetMaxActiveRunsOk() (*int32, bool)

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

func (*DAGDetail) GetMaxActiveTasks

func (o *DAGDetail) GetMaxActiveTasks() int32

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

func (*DAGDetail) GetMaxActiveTasksOk

func (o *DAGDetail) GetMaxActiveTasksOk() (*int32, bool)

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

func (*DAGDetail) GetNextDagrun

func (o *DAGDetail) GetNextDagrun() time.Time

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

func (*DAGDetail) GetNextDagrunCreateAfter

func (o *DAGDetail) GetNextDagrunCreateAfter() time.Time

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

func (*DAGDetail) GetNextDagrunCreateAfterOk

func (o *DAGDetail) GetNextDagrunCreateAfterOk() (*time.Time, bool)

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

func (*DAGDetail) GetNextDagrunDataIntervalEnd

func (o *DAGDetail) GetNextDagrunDataIntervalEnd() time.Time

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

func (*DAGDetail) GetNextDagrunDataIntervalEndOk

func (o *DAGDetail) GetNextDagrunDataIntervalEndOk() (*time.Time, bool)

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

func (*DAGDetail) GetNextDagrunDataIntervalStart

func (o *DAGDetail) GetNextDagrunDataIntervalStart() time.Time

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

func (*DAGDetail) GetNextDagrunDataIntervalStartOk

func (o *DAGDetail) GetNextDagrunDataIntervalStartOk() (*time.Time, bool)

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

func (*DAGDetail) GetNextDagrunOk

func (o *DAGDetail) GetNextDagrunOk() (*time.Time, bool)

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

func (*DAGDetail) GetOrientation

func (o *DAGDetail) GetOrientation() string

GetOrientation returns the Orientation field value if set, zero value otherwise.

func (*DAGDetail) GetOrientationOk

func (o *DAGDetail) GetOrientationOk() (*string, bool)

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

func (*DAGDetail) GetOwners

func (o *DAGDetail) GetOwners() []string

GetOwners returns the Owners field value if set, zero value otherwise.

func (*DAGDetail) GetOwnersOk

func (o *DAGDetail) GetOwnersOk() (*[]string, bool)

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

func (*DAGDetail) GetParams

func (o *DAGDetail) GetParams() map[string]interface{}

GetParams returns the Params field value if set, zero value otherwise.

func (*DAGDetail) GetParamsOk

func (o *DAGDetail) GetParamsOk() (*map[string]interface{}, 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 (*DAGDetail) GetPickleId

func (o *DAGDetail) GetPickleId() string

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

func (*DAGDetail) GetPickleIdOk

func (o *DAGDetail) GetPickleIdOk() (*string, bool)

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

func (*DAGDetail) GetRenderTemplateAsNativeObj

func (o *DAGDetail) GetRenderTemplateAsNativeObj() bool

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

func (*DAGDetail) GetRenderTemplateAsNativeObjOk

func (o *DAGDetail) GetRenderTemplateAsNativeObjOk() (*bool, bool)

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

func (*DAGDetail) GetRootDagId

func (o *DAGDetail) GetRootDagId() string

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

func (*DAGDetail) GetRootDagIdOk

func (o *DAGDetail) GetRootDagIdOk() (*string, bool)

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

func (*DAGDetail) GetScheduleInterval

func (o *DAGDetail) GetScheduleInterval() ScheduleInterval

GetScheduleInterval returns the ScheduleInterval field value if set, zero value otherwise.

func (*DAGDetail) GetScheduleIntervalOk

func (o *DAGDetail) GetScheduleIntervalOk() (*ScheduleInterval, bool)

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

func (*DAGDetail) GetSchedulerLock

func (o *DAGDetail) GetSchedulerLock() bool

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

func (*DAGDetail) GetSchedulerLockOk

func (o *DAGDetail) GetSchedulerLockOk() (*bool, bool)

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

func (*DAGDetail) GetStartDate

func (o *DAGDetail) GetStartDate() time.Time

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

func (*DAGDetail) GetStartDateOk

func (o *DAGDetail) GetStartDateOk() (*time.Time, bool)

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

func (*DAGDetail) GetTags

func (o *DAGDetail) GetTags() []Tag

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

func (*DAGDetail) GetTagsOk

func (o *DAGDetail) GetTagsOk() (*[]Tag, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DAGDetail) GetTemplateSearchPath

func (o *DAGDetail) GetTemplateSearchPath() []string

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

func (*DAGDetail) GetTemplateSearchPathOk

func (o *DAGDetail) GetTemplateSearchPathOk() (*[]string, bool)

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

func (*DAGDetail) GetTimetableDescription

func (o *DAGDetail) GetTimetableDescription() string

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

func (*DAGDetail) GetTimetableDescriptionOk

func (o *DAGDetail) GetTimetableDescriptionOk() (*string, bool)

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

func (*DAGDetail) GetTimezone

func (o *DAGDetail) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*DAGDetail) GetTimezoneOk

func (o *DAGDetail) 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 (*DAGDetail) HasCatchup

func (o *DAGDetail) HasCatchup() bool

HasCatchup returns a boolean if a field has been set.

func (*DAGDetail) HasConcurrency

func (o *DAGDetail) HasConcurrency() bool

HasConcurrency returns a boolean if a field has been set.

func (*DAGDetail) HasDagId

func (o *DAGDetail) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*DAGDetail) HasDagRunTimeout

func (o *DAGDetail) HasDagRunTimeout() bool

HasDagRunTimeout returns a boolean if a field has been set.

func (*DAGDetail) HasDefaultView

func (o *DAGDetail) HasDefaultView() bool

HasDefaultView returns a boolean if a field has been set.

func (*DAGDetail) HasDescription

func (o *DAGDetail) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DAGDetail) HasDocMd

func (o *DAGDetail) HasDocMd() bool

HasDocMd returns a boolean if a field has been set.

func (*DAGDetail) HasEndDate

func (o *DAGDetail) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*DAGDetail) HasFileToken

func (o *DAGDetail) HasFileToken() bool

HasFileToken returns a boolean if a field has been set.

func (*DAGDetail) HasFileloc

func (o *DAGDetail) HasFileloc() bool

HasFileloc returns a boolean if a field has been set.

func (*DAGDetail) HasHasImportErrors

func (o *DAGDetail) HasHasImportErrors() bool

HasHasImportErrors returns a boolean if a field has been set.

func (*DAGDetail) HasHasTaskConcurrencyLimits

func (o *DAGDetail) HasHasTaskConcurrencyLimits() bool

HasHasTaskConcurrencyLimits returns a boolean if a field has been set.

func (*DAGDetail) HasIsActive

func (o *DAGDetail) HasIsActive() bool

HasIsActive returns a boolean if a field has been set.

func (*DAGDetail) HasIsPaused

func (o *DAGDetail) HasIsPaused() bool

HasIsPaused returns a boolean if a field has been set.

func (*DAGDetail) HasIsPausedUponCreation

func (o *DAGDetail) HasIsPausedUponCreation() bool

HasIsPausedUponCreation returns a boolean if a field has been set.

func (*DAGDetail) HasIsSubdag

func (o *DAGDetail) HasIsSubdag() bool

HasIsSubdag returns a boolean if a field has been set.

func (*DAGDetail) HasLastExpired

func (o *DAGDetail) HasLastExpired() bool

HasLastExpired returns a boolean if a field has been set.

func (*DAGDetail) HasLastParsed

func (o *DAGDetail) HasLastParsed() bool

HasLastParsed returns a boolean if a field has been set.

func (*DAGDetail) HasLastParsedTime

func (o *DAGDetail) HasLastParsedTime() bool

HasLastParsedTime returns a boolean if a field has been set.

func (*DAGDetail) HasLastPickled

func (o *DAGDetail) HasLastPickled() bool

HasLastPickled returns a boolean if a field has been set.

func (*DAGDetail) HasMaxActiveRuns

func (o *DAGDetail) HasMaxActiveRuns() bool

HasMaxActiveRuns returns a boolean if a field has been set.

func (*DAGDetail) HasMaxActiveTasks

func (o *DAGDetail) HasMaxActiveTasks() bool

HasMaxActiveTasks returns a boolean if a field has been set.

func (*DAGDetail) HasNextDagrun

func (o *DAGDetail) HasNextDagrun() bool

HasNextDagrun returns a boolean if a field has been set.

func (*DAGDetail) HasNextDagrunCreateAfter

func (o *DAGDetail) HasNextDagrunCreateAfter() bool

HasNextDagrunCreateAfter returns a boolean if a field has been set.

func (*DAGDetail) HasNextDagrunDataIntervalEnd

func (o *DAGDetail) HasNextDagrunDataIntervalEnd() bool

HasNextDagrunDataIntervalEnd returns a boolean if a field has been set.

func (*DAGDetail) HasNextDagrunDataIntervalStart

func (o *DAGDetail) HasNextDagrunDataIntervalStart() bool

HasNextDagrunDataIntervalStart returns a boolean if a field has been set.

func (*DAGDetail) HasOrientation

func (o *DAGDetail) HasOrientation() bool

HasOrientation returns a boolean if a field has been set.

func (*DAGDetail) HasOwners

func (o *DAGDetail) HasOwners() bool

HasOwners returns a boolean if a field has been set.

func (*DAGDetail) HasParams

func (o *DAGDetail) HasParams() bool

HasParams returns a boolean if a field has been set.

func (*DAGDetail) HasPickleId

func (o *DAGDetail) HasPickleId() bool

HasPickleId returns a boolean if a field has been set.

func (*DAGDetail) HasRenderTemplateAsNativeObj

func (o *DAGDetail) HasRenderTemplateAsNativeObj() bool

HasRenderTemplateAsNativeObj returns a boolean if a field has been set.

func (*DAGDetail) HasRootDagId

func (o *DAGDetail) HasRootDagId() bool

HasRootDagId returns a boolean if a field has been set.

func (*DAGDetail) HasScheduleInterval

func (o *DAGDetail) HasScheduleInterval() bool

HasScheduleInterval returns a boolean if a field has been set.

func (*DAGDetail) HasSchedulerLock

func (o *DAGDetail) HasSchedulerLock() bool

HasSchedulerLock returns a boolean if a field has been set.

func (*DAGDetail) HasStartDate

func (o *DAGDetail) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*DAGDetail) HasTags

func (o *DAGDetail) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*DAGDetail) HasTemplateSearchPath

func (o *DAGDetail) HasTemplateSearchPath() bool

HasTemplateSearchPath returns a boolean if a field has been set.

func (*DAGDetail) HasTimetableDescription

func (o *DAGDetail) HasTimetableDescription() bool

HasTimetableDescription returns a boolean if a field has been set.

func (*DAGDetail) HasTimezone

func (o *DAGDetail) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (DAGDetail) MarshalJSON

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

func (*DAGDetail) SetCatchup

func (o *DAGDetail) SetCatchup(v bool)

SetCatchup gets a reference to the given bool and assigns it to the Catchup field.

func (*DAGDetail) SetConcurrency

func (o *DAGDetail) SetConcurrency(v float32)

SetConcurrency gets a reference to the given float32 and assigns it to the Concurrency field.

func (*DAGDetail) SetDagId

func (o *DAGDetail) SetDagId(v string)

SetDagId gets a reference to the given string and assigns it to the DagId field.

func (*DAGDetail) SetDagRunTimeout

func (o *DAGDetail) SetDagRunTimeout(v TimeDelta)

SetDagRunTimeout gets a reference to the given TimeDelta and assigns it to the DagRunTimeout field.

func (*DAGDetail) SetDefaultView

func (o *DAGDetail) SetDefaultView(v string)

SetDefaultView gets a reference to the given string and assigns it to the DefaultView field.

func (*DAGDetail) SetDescription

func (o *DAGDetail) SetDescription(v string)

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

func (*DAGDetail) SetDescriptionNil

func (o *DAGDetail) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*DAGDetail) SetDocMd

func (o *DAGDetail) SetDocMd(v string)

SetDocMd gets a reference to the given NullableString and assigns it to the DocMd field.

func (*DAGDetail) SetDocMdNil

func (o *DAGDetail) SetDocMdNil()

SetDocMdNil sets the value for DocMd to be an explicit nil

func (*DAGDetail) SetEndDate

func (o *DAGDetail) SetEndDate(v time.Time)

SetEndDate gets a reference to the given NullableTime and assigns it to the EndDate field.

func (*DAGDetail) SetEndDateNil

func (o *DAGDetail) SetEndDateNil()

SetEndDateNil sets the value for EndDate to be an explicit nil

func (*DAGDetail) SetFileToken

func (o *DAGDetail) SetFileToken(v string)

SetFileToken gets a reference to the given string and assigns it to the FileToken field.

func (*DAGDetail) SetFileloc

func (o *DAGDetail) SetFileloc(v string)

SetFileloc gets a reference to the given string and assigns it to the Fileloc field.

func (*DAGDetail) SetHasImportErrors

func (o *DAGDetail) SetHasImportErrors(v bool)

SetHasImportErrors gets a reference to the given NullableBool and assigns it to the HasImportErrors field.

func (*DAGDetail) SetHasImportErrorsNil

func (o *DAGDetail) SetHasImportErrorsNil()

SetHasImportErrorsNil sets the value for HasImportErrors to be an explicit nil

func (*DAGDetail) SetHasTaskConcurrencyLimits

func (o *DAGDetail) SetHasTaskConcurrencyLimits(v bool)

SetHasTaskConcurrencyLimits gets a reference to the given NullableBool and assigns it to the HasTaskConcurrencyLimits field.

func (*DAGDetail) SetHasTaskConcurrencyLimitsNil

func (o *DAGDetail) SetHasTaskConcurrencyLimitsNil()

SetHasTaskConcurrencyLimitsNil sets the value for HasTaskConcurrencyLimits to be an explicit nil

func (*DAGDetail) SetIsActive

func (o *DAGDetail) SetIsActive(v bool)

SetIsActive gets a reference to the given NullableBool and assigns it to the IsActive field.

func (*DAGDetail) SetIsActiveNil

func (o *DAGDetail) SetIsActiveNil()

SetIsActiveNil sets the value for IsActive to be an explicit nil

func (*DAGDetail) SetIsPaused

func (o *DAGDetail) SetIsPaused(v bool)

SetIsPaused gets a reference to the given NullableBool and assigns it to the IsPaused field.

func (*DAGDetail) SetIsPausedNil

func (o *DAGDetail) SetIsPausedNil()

SetIsPausedNil sets the value for IsPaused to be an explicit nil

func (*DAGDetail) SetIsPausedUponCreation

func (o *DAGDetail) SetIsPausedUponCreation(v bool)

SetIsPausedUponCreation gets a reference to the given NullableBool and assigns it to the IsPausedUponCreation field.

func (*DAGDetail) SetIsPausedUponCreationNil

func (o *DAGDetail) SetIsPausedUponCreationNil()

SetIsPausedUponCreationNil sets the value for IsPausedUponCreation to be an explicit nil

func (*DAGDetail) SetIsSubdag

func (o *DAGDetail) SetIsSubdag(v bool)

SetIsSubdag gets a reference to the given bool and assigns it to the IsSubdag field.

func (*DAGDetail) SetLastExpired

func (o *DAGDetail) SetLastExpired(v time.Time)

SetLastExpired gets a reference to the given NullableTime and assigns it to the LastExpired field.

func (*DAGDetail) SetLastExpiredNil

func (o *DAGDetail) SetLastExpiredNil()

SetLastExpiredNil sets the value for LastExpired to be an explicit nil

func (*DAGDetail) SetLastParsed

func (o *DAGDetail) SetLastParsed(v time.Time)

SetLastParsed gets a reference to the given NullableTime and assigns it to the LastParsed field.

func (*DAGDetail) SetLastParsedNil

func (o *DAGDetail) SetLastParsedNil()

SetLastParsedNil sets the value for LastParsed to be an explicit nil

func (*DAGDetail) SetLastParsedTime

func (o *DAGDetail) SetLastParsedTime(v time.Time)

SetLastParsedTime gets a reference to the given NullableTime and assigns it to the LastParsedTime field.

func (*DAGDetail) SetLastParsedTimeNil

func (o *DAGDetail) SetLastParsedTimeNil()

SetLastParsedTimeNil sets the value for LastParsedTime to be an explicit nil

func (*DAGDetail) SetLastPickled

func (o *DAGDetail) SetLastPickled(v time.Time)

SetLastPickled gets a reference to the given NullableTime and assigns it to the LastPickled field.

func (*DAGDetail) SetLastPickledNil

func (o *DAGDetail) SetLastPickledNil()

SetLastPickledNil sets the value for LastPickled to be an explicit nil

func (*DAGDetail) SetMaxActiveRuns

func (o *DAGDetail) SetMaxActiveRuns(v int32)

SetMaxActiveRuns gets a reference to the given NullableInt32 and assigns it to the MaxActiveRuns field.

func (*DAGDetail) SetMaxActiveRunsNil

func (o *DAGDetail) SetMaxActiveRunsNil()

SetMaxActiveRunsNil sets the value for MaxActiveRuns to be an explicit nil

func (*DAGDetail) SetMaxActiveTasks

func (o *DAGDetail) SetMaxActiveTasks(v int32)

SetMaxActiveTasks gets a reference to the given NullableInt32 and assigns it to the MaxActiveTasks field.

func (*DAGDetail) SetMaxActiveTasksNil

func (o *DAGDetail) SetMaxActiveTasksNil()

SetMaxActiveTasksNil sets the value for MaxActiveTasks to be an explicit nil

func (*DAGDetail) SetNextDagrun

func (o *DAGDetail) SetNextDagrun(v time.Time)

SetNextDagrun gets a reference to the given NullableTime and assigns it to the NextDagrun field.

func (*DAGDetail) SetNextDagrunCreateAfter

func (o *DAGDetail) SetNextDagrunCreateAfter(v time.Time)

SetNextDagrunCreateAfter gets a reference to the given NullableTime and assigns it to the NextDagrunCreateAfter field.

func (*DAGDetail) SetNextDagrunCreateAfterNil

func (o *DAGDetail) SetNextDagrunCreateAfterNil()

SetNextDagrunCreateAfterNil sets the value for NextDagrunCreateAfter to be an explicit nil

func (*DAGDetail) SetNextDagrunDataIntervalEnd

func (o *DAGDetail) SetNextDagrunDataIntervalEnd(v time.Time)

SetNextDagrunDataIntervalEnd gets a reference to the given NullableTime and assigns it to the NextDagrunDataIntervalEnd field.

func (*DAGDetail) SetNextDagrunDataIntervalEndNil

func (o *DAGDetail) SetNextDagrunDataIntervalEndNil()

SetNextDagrunDataIntervalEndNil sets the value for NextDagrunDataIntervalEnd to be an explicit nil

func (*DAGDetail) SetNextDagrunDataIntervalStart

func (o *DAGDetail) SetNextDagrunDataIntervalStart(v time.Time)

SetNextDagrunDataIntervalStart gets a reference to the given NullableTime and assigns it to the NextDagrunDataIntervalStart field.

func (*DAGDetail) SetNextDagrunDataIntervalStartNil

func (o *DAGDetail) SetNextDagrunDataIntervalStartNil()

SetNextDagrunDataIntervalStartNil sets the value for NextDagrunDataIntervalStart to be an explicit nil

func (*DAGDetail) SetNextDagrunNil

func (o *DAGDetail) SetNextDagrunNil()

SetNextDagrunNil sets the value for NextDagrun to be an explicit nil

func (*DAGDetail) SetOrientation

func (o *DAGDetail) SetOrientation(v string)

SetOrientation gets a reference to the given string and assigns it to the Orientation field.

func (*DAGDetail) SetOwners

func (o *DAGDetail) SetOwners(v []string)

SetOwners gets a reference to the given []string and assigns it to the Owners field.

func (*DAGDetail) SetParams

func (o *DAGDetail) SetParams(v map[string]interface{})

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

func (*DAGDetail) SetPickleId

func (o *DAGDetail) SetPickleId(v string)

SetPickleId gets a reference to the given NullableString and assigns it to the PickleId field.

func (*DAGDetail) SetPickleIdNil

func (o *DAGDetail) SetPickleIdNil()

SetPickleIdNil sets the value for PickleId to be an explicit nil

func (*DAGDetail) SetRenderTemplateAsNativeObj

func (o *DAGDetail) SetRenderTemplateAsNativeObj(v bool)

SetRenderTemplateAsNativeObj gets a reference to the given NullableBool and assigns it to the RenderTemplateAsNativeObj field.

func (*DAGDetail) SetRenderTemplateAsNativeObjNil

func (o *DAGDetail) SetRenderTemplateAsNativeObjNil()

SetRenderTemplateAsNativeObjNil sets the value for RenderTemplateAsNativeObj to be an explicit nil

func (*DAGDetail) SetRootDagId

func (o *DAGDetail) SetRootDagId(v string)

SetRootDagId gets a reference to the given NullableString and assigns it to the RootDagId field.

func (*DAGDetail) SetRootDagIdNil

func (o *DAGDetail) SetRootDagIdNil()

SetRootDagIdNil sets the value for RootDagId to be an explicit nil

func (*DAGDetail) SetScheduleInterval

func (o *DAGDetail) SetScheduleInterval(v ScheduleInterval)

SetScheduleInterval gets a reference to the given ScheduleInterval and assigns it to the ScheduleInterval field.

func (*DAGDetail) SetSchedulerLock

func (o *DAGDetail) SetSchedulerLock(v bool)

SetSchedulerLock gets a reference to the given NullableBool and assigns it to the SchedulerLock field.

func (*DAGDetail) SetSchedulerLockNil

func (o *DAGDetail) SetSchedulerLockNil()

SetSchedulerLockNil sets the value for SchedulerLock to be an explicit nil

func (*DAGDetail) SetStartDate

func (o *DAGDetail) SetStartDate(v time.Time)

SetStartDate gets a reference to the given NullableTime and assigns it to the StartDate field.

func (*DAGDetail) SetStartDateNil

func (o *DAGDetail) SetStartDateNil()

SetStartDateNil sets the value for StartDate to be an explicit nil

func (*DAGDetail) SetTags

func (o *DAGDetail) SetTags(v []Tag)

SetTags gets a reference to the given []Tag and assigns it to the Tags field.

func (*DAGDetail) SetTemplateSearchPath

func (o *DAGDetail) SetTemplateSearchPath(v []string)

SetTemplateSearchPath gets a reference to the given []string and assigns it to the TemplateSearchPath field.

func (*DAGDetail) SetTimetableDescription

func (o *DAGDetail) SetTimetableDescription(v string)

SetTimetableDescription gets a reference to the given NullableString and assigns it to the TimetableDescription field.

func (*DAGDetail) SetTimetableDescriptionNil

func (o *DAGDetail) SetTimetableDescriptionNil()

SetTimetableDescriptionNil sets the value for TimetableDescription to be an explicit nil

func (*DAGDetail) SetTimezone

func (o *DAGDetail) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*DAGDetail) UnsetDescription

func (o *DAGDetail) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*DAGDetail) UnsetDocMd

func (o *DAGDetail) UnsetDocMd()

UnsetDocMd ensures that no value is present for DocMd, not even an explicit nil

func (*DAGDetail) UnsetEndDate

func (o *DAGDetail) UnsetEndDate()

UnsetEndDate ensures that no value is present for EndDate, not even an explicit nil

func (*DAGDetail) UnsetHasImportErrors

func (o *DAGDetail) UnsetHasImportErrors()

UnsetHasImportErrors ensures that no value is present for HasImportErrors, not even an explicit nil

func (*DAGDetail) UnsetHasTaskConcurrencyLimits

func (o *DAGDetail) UnsetHasTaskConcurrencyLimits()

UnsetHasTaskConcurrencyLimits ensures that no value is present for HasTaskConcurrencyLimits, not even an explicit nil

func (*DAGDetail) UnsetIsActive

func (o *DAGDetail) UnsetIsActive()

UnsetIsActive ensures that no value is present for IsActive, not even an explicit nil

func (*DAGDetail) UnsetIsPaused

func (o *DAGDetail) UnsetIsPaused()

UnsetIsPaused ensures that no value is present for IsPaused, not even an explicit nil

func (*DAGDetail) UnsetIsPausedUponCreation

func (o *DAGDetail) UnsetIsPausedUponCreation()

UnsetIsPausedUponCreation ensures that no value is present for IsPausedUponCreation, not even an explicit nil

func (*DAGDetail) UnsetLastExpired

func (o *DAGDetail) UnsetLastExpired()

UnsetLastExpired ensures that no value is present for LastExpired, not even an explicit nil

func (*DAGDetail) UnsetLastParsed

func (o *DAGDetail) UnsetLastParsed()

UnsetLastParsed ensures that no value is present for LastParsed, not even an explicit nil

func (*DAGDetail) UnsetLastParsedTime

func (o *DAGDetail) UnsetLastParsedTime()

UnsetLastParsedTime ensures that no value is present for LastParsedTime, not even an explicit nil

func (*DAGDetail) UnsetLastPickled

func (o *DAGDetail) UnsetLastPickled()

UnsetLastPickled ensures that no value is present for LastPickled, not even an explicit nil

func (*DAGDetail) UnsetMaxActiveRuns

func (o *DAGDetail) UnsetMaxActiveRuns()

UnsetMaxActiveRuns ensures that no value is present for MaxActiveRuns, not even an explicit nil

func (*DAGDetail) UnsetMaxActiveTasks

func (o *DAGDetail) UnsetMaxActiveTasks()

UnsetMaxActiveTasks ensures that no value is present for MaxActiveTasks, not even an explicit nil

func (*DAGDetail) UnsetNextDagrun

func (o *DAGDetail) UnsetNextDagrun()

UnsetNextDagrun ensures that no value is present for NextDagrun, not even an explicit nil

func (*DAGDetail) UnsetNextDagrunCreateAfter

func (o *DAGDetail) UnsetNextDagrunCreateAfter()

UnsetNextDagrunCreateAfter ensures that no value is present for NextDagrunCreateAfter, not even an explicit nil

func (*DAGDetail) UnsetNextDagrunDataIntervalEnd

func (o *DAGDetail) UnsetNextDagrunDataIntervalEnd()

UnsetNextDagrunDataIntervalEnd ensures that no value is present for NextDagrunDataIntervalEnd, not even an explicit nil

func (*DAGDetail) UnsetNextDagrunDataIntervalStart

func (o *DAGDetail) UnsetNextDagrunDataIntervalStart()

UnsetNextDagrunDataIntervalStart ensures that no value is present for NextDagrunDataIntervalStart, not even an explicit nil

func (*DAGDetail) UnsetPickleId

func (o *DAGDetail) UnsetPickleId()

UnsetPickleId ensures that no value is present for PickleId, not even an explicit nil

func (*DAGDetail) UnsetRenderTemplateAsNativeObj

func (o *DAGDetail) UnsetRenderTemplateAsNativeObj()

UnsetRenderTemplateAsNativeObj ensures that no value is present for RenderTemplateAsNativeObj, not even an explicit nil

func (*DAGDetail) UnsetRootDagId

func (o *DAGDetail) UnsetRootDagId()

UnsetRootDagId ensures that no value is present for RootDagId, not even an explicit nil

func (*DAGDetail) UnsetSchedulerLock

func (o *DAGDetail) UnsetSchedulerLock()

UnsetSchedulerLock ensures that no value is present for SchedulerLock, not even an explicit nil

func (*DAGDetail) UnsetStartDate

func (o *DAGDetail) UnsetStartDate()

UnsetStartDate ensures that no value is present for StartDate, not even an explicit nil

func (*DAGDetail) UnsetTimetableDescription

func (o *DAGDetail) UnsetTimetableDescription()

UnsetTimetableDescription ensures that no value is present for TimetableDescription, not even an explicit nil

type DAGDetailAllOf

type DAGDetailAllOf struct {
	Timezone    *string  `json:"timezone,omitempty"`
	Catchup     *bool    `json:"catchup,omitempty"`
	Orientation *string  `json:"orientation,omitempty"`
	Concurrency *float32 `json:"concurrency,omitempty"`
	// The DAG's start date.  *Changed in version 2.0.1*: Field becomes nullable.
	StartDate     NullableTime   `json:"start_date,omitempty"`
	DagRunTimeout *TimeDelta     `json:"dag_run_timeout,omitempty"`
	DocMd         NullableString `json:"doc_md,omitempty"`
	DefaultView   *string        `json:"default_view,omitempty"`
	// User-specified DAG params.  *New in version 2.0.1*
	Params *map[string]interface{} `json:"params,omitempty"`
	// The DAG's end date.  *New in version 2.3.0*.
	EndDate NullableTime `json:"end_date,omitempty"`
	// Whether the DAG is paused upon creation.  *New in version 2.3.0*
	IsPausedUponCreation NullableBool `json:"is_paused_upon_creation,omitempty"`
	// The last time the DAG was parsed.  *New in version 2.3.0*
	LastParsed NullableTime `json:"last_parsed,omitempty"`
	// The template search path.  *New in version 2.3.0*
	TemplateSearchPath []string `json:"template_search_path,omitempty"`
	// Whether to render templates as native Python objects.  *New in version 2.3.0*
	RenderTemplateAsNativeObj NullableBool `json:"render_template_as_native_obj,omitempty"`
}

DAGDetailAllOf struct for DAGDetailAllOf

func NewDAGDetailAllOf

func NewDAGDetailAllOf() *DAGDetailAllOf

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

func NewDAGDetailAllOfWithDefaults

func NewDAGDetailAllOfWithDefaults() *DAGDetailAllOf

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

func (*DAGDetailAllOf) GetCatchup

func (o *DAGDetailAllOf) GetCatchup() bool

GetCatchup returns the Catchup field value if set, zero value otherwise.

func (*DAGDetailAllOf) GetCatchupOk

func (o *DAGDetailAllOf) GetCatchupOk() (*bool, bool)

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

func (*DAGDetailAllOf) GetConcurrency

func (o *DAGDetailAllOf) GetConcurrency() float32

GetConcurrency returns the Concurrency field value if set, zero value otherwise.

func (*DAGDetailAllOf) GetConcurrencyOk

func (o *DAGDetailAllOf) GetConcurrencyOk() (*float32, bool)

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

func (*DAGDetailAllOf) GetDagRunTimeout

func (o *DAGDetailAllOf) GetDagRunTimeout() TimeDelta

GetDagRunTimeout returns the DagRunTimeout field value if set, zero value otherwise.

func (*DAGDetailAllOf) GetDagRunTimeoutOk

func (o *DAGDetailAllOf) GetDagRunTimeoutOk() (*TimeDelta, bool)

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

func (*DAGDetailAllOf) GetDefaultView

func (o *DAGDetailAllOf) GetDefaultView() string

GetDefaultView returns the DefaultView field value if set, zero value otherwise.

func (*DAGDetailAllOf) GetDefaultViewOk

func (o *DAGDetailAllOf) GetDefaultViewOk() (*string, bool)

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

func (*DAGDetailAllOf) GetDocMd

func (o *DAGDetailAllOf) GetDocMd() string

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

func (*DAGDetailAllOf) GetDocMdOk

func (o *DAGDetailAllOf) GetDocMdOk() (*string, bool)

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

func (*DAGDetailAllOf) GetEndDate

func (o *DAGDetailAllOf) GetEndDate() time.Time

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

func (*DAGDetailAllOf) GetEndDateOk

func (o *DAGDetailAllOf) GetEndDateOk() (*time.Time, bool)

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

func (*DAGDetailAllOf) GetIsPausedUponCreation

func (o *DAGDetailAllOf) GetIsPausedUponCreation() bool

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

func (*DAGDetailAllOf) GetIsPausedUponCreationOk

func (o *DAGDetailAllOf) GetIsPausedUponCreationOk() (*bool, bool)

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

func (*DAGDetailAllOf) GetLastParsed

func (o *DAGDetailAllOf) GetLastParsed() time.Time

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

func (*DAGDetailAllOf) GetLastParsedOk

func (o *DAGDetailAllOf) GetLastParsedOk() (*time.Time, bool)

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

func (*DAGDetailAllOf) GetOrientation

func (o *DAGDetailAllOf) GetOrientation() string

GetOrientation returns the Orientation field value if set, zero value otherwise.

func (*DAGDetailAllOf) GetOrientationOk

func (o *DAGDetailAllOf) GetOrientationOk() (*string, bool)

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

func (*DAGDetailAllOf) GetParams

func (o *DAGDetailAllOf) GetParams() map[string]interface{}

GetParams returns the Params field value if set, zero value otherwise.

func (*DAGDetailAllOf) GetParamsOk

func (o *DAGDetailAllOf) GetParamsOk() (*map[string]interface{}, 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 (*DAGDetailAllOf) GetRenderTemplateAsNativeObj

func (o *DAGDetailAllOf) GetRenderTemplateAsNativeObj() bool

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

func (*DAGDetailAllOf) GetRenderTemplateAsNativeObjOk

func (o *DAGDetailAllOf) GetRenderTemplateAsNativeObjOk() (*bool, bool)

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

func (*DAGDetailAllOf) GetStartDate

func (o *DAGDetailAllOf) GetStartDate() time.Time

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

func (*DAGDetailAllOf) GetStartDateOk

func (o *DAGDetailAllOf) GetStartDateOk() (*time.Time, bool)

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

func (*DAGDetailAllOf) GetTemplateSearchPath

func (o *DAGDetailAllOf) GetTemplateSearchPath() []string

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

func (*DAGDetailAllOf) GetTemplateSearchPathOk

func (o *DAGDetailAllOf) GetTemplateSearchPathOk() (*[]string, bool)

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

func (*DAGDetailAllOf) GetTimezone

func (o *DAGDetailAllOf) GetTimezone() string

GetTimezone returns the Timezone field value if set, zero value otherwise.

func (*DAGDetailAllOf) GetTimezoneOk

func (o *DAGDetailAllOf) 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 (*DAGDetailAllOf) HasCatchup

func (o *DAGDetailAllOf) HasCatchup() bool

HasCatchup returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasConcurrency

func (o *DAGDetailAllOf) HasConcurrency() bool

HasConcurrency returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasDagRunTimeout

func (o *DAGDetailAllOf) HasDagRunTimeout() bool

HasDagRunTimeout returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasDefaultView

func (o *DAGDetailAllOf) HasDefaultView() bool

HasDefaultView returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasDocMd

func (o *DAGDetailAllOf) HasDocMd() bool

HasDocMd returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasEndDate

func (o *DAGDetailAllOf) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasIsPausedUponCreation

func (o *DAGDetailAllOf) HasIsPausedUponCreation() bool

HasIsPausedUponCreation returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasLastParsed

func (o *DAGDetailAllOf) HasLastParsed() bool

HasLastParsed returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasOrientation

func (o *DAGDetailAllOf) HasOrientation() bool

HasOrientation returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasParams

func (o *DAGDetailAllOf) HasParams() bool

HasParams returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasRenderTemplateAsNativeObj

func (o *DAGDetailAllOf) HasRenderTemplateAsNativeObj() bool

HasRenderTemplateAsNativeObj returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasStartDate

func (o *DAGDetailAllOf) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasTemplateSearchPath

func (o *DAGDetailAllOf) HasTemplateSearchPath() bool

HasTemplateSearchPath returns a boolean if a field has been set.

func (*DAGDetailAllOf) HasTimezone

func (o *DAGDetailAllOf) HasTimezone() bool

HasTimezone returns a boolean if a field has been set.

func (DAGDetailAllOf) MarshalJSON

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

func (*DAGDetailAllOf) SetCatchup

func (o *DAGDetailAllOf) SetCatchup(v bool)

SetCatchup gets a reference to the given bool and assigns it to the Catchup field.

func (*DAGDetailAllOf) SetConcurrency

func (o *DAGDetailAllOf) SetConcurrency(v float32)

SetConcurrency gets a reference to the given float32 and assigns it to the Concurrency field.

func (*DAGDetailAllOf) SetDagRunTimeout

func (o *DAGDetailAllOf) SetDagRunTimeout(v TimeDelta)

SetDagRunTimeout gets a reference to the given TimeDelta and assigns it to the DagRunTimeout field.

func (*DAGDetailAllOf) SetDefaultView

func (o *DAGDetailAllOf) SetDefaultView(v string)

SetDefaultView gets a reference to the given string and assigns it to the DefaultView field.

func (*DAGDetailAllOf) SetDocMd

func (o *DAGDetailAllOf) SetDocMd(v string)

SetDocMd gets a reference to the given NullableString and assigns it to the DocMd field.

func (*DAGDetailAllOf) SetDocMdNil

func (o *DAGDetailAllOf) SetDocMdNil()

SetDocMdNil sets the value for DocMd to be an explicit nil

func (*DAGDetailAllOf) SetEndDate

func (o *DAGDetailAllOf) SetEndDate(v time.Time)

SetEndDate gets a reference to the given NullableTime and assigns it to the EndDate field.

func (*DAGDetailAllOf) SetEndDateNil

func (o *DAGDetailAllOf) SetEndDateNil()

SetEndDateNil sets the value for EndDate to be an explicit nil

func (*DAGDetailAllOf) SetIsPausedUponCreation

func (o *DAGDetailAllOf) SetIsPausedUponCreation(v bool)

SetIsPausedUponCreation gets a reference to the given NullableBool and assigns it to the IsPausedUponCreation field.

func (*DAGDetailAllOf) SetIsPausedUponCreationNil

func (o *DAGDetailAllOf) SetIsPausedUponCreationNil()

SetIsPausedUponCreationNil sets the value for IsPausedUponCreation to be an explicit nil

func (*DAGDetailAllOf) SetLastParsed

func (o *DAGDetailAllOf) SetLastParsed(v time.Time)

SetLastParsed gets a reference to the given NullableTime and assigns it to the LastParsed field.

func (*DAGDetailAllOf) SetLastParsedNil

func (o *DAGDetailAllOf) SetLastParsedNil()

SetLastParsedNil sets the value for LastParsed to be an explicit nil

func (*DAGDetailAllOf) SetOrientation

func (o *DAGDetailAllOf) SetOrientation(v string)

SetOrientation gets a reference to the given string and assigns it to the Orientation field.

func (*DAGDetailAllOf) SetParams

func (o *DAGDetailAllOf) SetParams(v map[string]interface{})

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

func (*DAGDetailAllOf) SetRenderTemplateAsNativeObj

func (o *DAGDetailAllOf) SetRenderTemplateAsNativeObj(v bool)

SetRenderTemplateAsNativeObj gets a reference to the given NullableBool and assigns it to the RenderTemplateAsNativeObj field.

func (*DAGDetailAllOf) SetRenderTemplateAsNativeObjNil

func (o *DAGDetailAllOf) SetRenderTemplateAsNativeObjNil()

SetRenderTemplateAsNativeObjNil sets the value for RenderTemplateAsNativeObj to be an explicit nil

func (*DAGDetailAllOf) SetStartDate

func (o *DAGDetailAllOf) SetStartDate(v time.Time)

SetStartDate gets a reference to the given NullableTime and assigns it to the StartDate field.

func (*DAGDetailAllOf) SetStartDateNil

func (o *DAGDetailAllOf) SetStartDateNil()

SetStartDateNil sets the value for StartDate to be an explicit nil

func (*DAGDetailAllOf) SetTemplateSearchPath

func (o *DAGDetailAllOf) SetTemplateSearchPath(v []string)

SetTemplateSearchPath gets a reference to the given []string and assigns it to the TemplateSearchPath field.

func (*DAGDetailAllOf) SetTimezone

func (o *DAGDetailAllOf) SetTimezone(v string)

SetTimezone gets a reference to the given string and assigns it to the Timezone field.

func (*DAGDetailAllOf) UnsetDocMd

func (o *DAGDetailAllOf) UnsetDocMd()

UnsetDocMd ensures that no value is present for DocMd, not even an explicit nil

func (*DAGDetailAllOf) UnsetEndDate

func (o *DAGDetailAllOf) UnsetEndDate()

UnsetEndDate ensures that no value is present for EndDate, not even an explicit nil

func (*DAGDetailAllOf) UnsetIsPausedUponCreation

func (o *DAGDetailAllOf) UnsetIsPausedUponCreation()

UnsetIsPausedUponCreation ensures that no value is present for IsPausedUponCreation, not even an explicit nil

func (*DAGDetailAllOf) UnsetLastParsed

func (o *DAGDetailAllOf) UnsetLastParsed()

UnsetLastParsed ensures that no value is present for LastParsed, not even an explicit nil

func (*DAGDetailAllOf) UnsetRenderTemplateAsNativeObj

func (o *DAGDetailAllOf) UnsetRenderTemplateAsNativeObj()

UnsetRenderTemplateAsNativeObj ensures that no value is present for RenderTemplateAsNativeObj, not even an explicit nil

func (*DAGDetailAllOf) UnsetStartDate

func (o *DAGDetailAllOf) UnsetStartDate()

UnsetStartDate ensures that no value is present for StartDate, not even an explicit nil

type DAGRun

type DAGRun struct {
	// Run ID.  The value of this field can be set only when creating the object. If you try to modify the field of an existing object, the request fails with an BAD_REQUEST error.  If not provided, a value will be generated based on execution_date.  If the specified dag_run_id is in use, the creation request fails with an ALREADY_EXISTS error.  This together with DAG_ID are a unique key.
	DagRunId NullableString `json:"dag_run_id,omitempty"`
	DagId    *string        `json:"dag_id,omitempty"`
	// The logical date (previously called execution date). This is the time or interval covered by this DAG run, according to the DAG definition.  The value of this field can be set only when creating the object. If you try to modify the field of an existing object, the request fails with an BAD_REQUEST error.  This together with DAG_ID are a unique key.  *New in version 2.2.0*
	LogicalDate NullableTime `json:"logical_date,omitempty"`
	// The execution date. This is the same as logical_date, kept for backwards compatibility. If both this field and logical_date are provided but with different values, the request will fail with an BAD_REQUEST error.  *Changed in version 2.2.0*: Field becomes nullable.  *Deprecated since version 2.2.0*: Use 'logical_date' instead.
	// Deprecated
	ExecutionDate NullableTime `json:"execution_date,omitempty"`
	// The start time. The time when DAG run was actually created.  *Changed in version 2.1.3*: Field becomes nullable.
	StartDate              NullableTime `json:"start_date,omitempty"`
	EndDate                NullableTime `json:"end_date,omitempty"`
	DataIntervalStart      NullableTime `json:"data_interval_start,omitempty"`
	DataIntervalEnd        NullableTime `json:"data_interval_end,omitempty"`
	LastSchedulingDecision NullableTime `json:"last_scheduling_decision,omitempty"`
	RunType                *string      `json:"run_type,omitempty"`
	State                  *DagState    `json:"state,omitempty"`
	ExternalTrigger        *bool        `json:"external_trigger,omitempty"`
	// JSON object describing additional configuration parameters.  The value of this field can be set only when creating the object. If you try to modify the field of an existing object, the request fails with an BAD_REQUEST error.
	Conf *map[string]interface{} `json:"conf,omitempty"`
}

DAGRun struct for DAGRun

func NewDAGRun

func NewDAGRun() *DAGRun

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

func NewDAGRunWithDefaults

func NewDAGRunWithDefaults() *DAGRun

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

func (*DAGRun) GetConf

func (o *DAGRun) GetConf() map[string]interface{}

GetConf returns the Conf field value if set, zero value otherwise.

func (*DAGRun) GetConfOk

func (o *DAGRun) GetConfOk() (*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 (*DAGRun) GetDagId

func (o *DAGRun) GetDagId() string

GetDagId returns the DagId field value if set, zero value otherwise.

func (*DAGRun) GetDagIdOk

func (o *DAGRun) GetDagIdOk() (*string, bool)

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

func (*DAGRun) GetDagRunId

func (o *DAGRun) GetDagRunId() string

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

func (*DAGRun) GetDagRunIdOk

func (o *DAGRun) GetDagRunIdOk() (*string, bool)

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

func (*DAGRun) GetDataIntervalEnd

func (o *DAGRun) GetDataIntervalEnd() time.Time

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

func (*DAGRun) GetDataIntervalEndOk

func (o *DAGRun) GetDataIntervalEndOk() (*time.Time, bool)

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

func (*DAGRun) GetDataIntervalStart

func (o *DAGRun) GetDataIntervalStart() time.Time

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

func (*DAGRun) GetDataIntervalStartOk

func (o *DAGRun) GetDataIntervalStartOk() (*time.Time, bool)

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

func (*DAGRun) GetEndDate

func (o *DAGRun) GetEndDate() time.Time

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

func (*DAGRun) GetEndDateOk

func (o *DAGRun) GetEndDateOk() (*time.Time, bool)

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

func (*DAGRun) GetExecutionDate

func (o *DAGRun) GetExecutionDate() time.Time

GetExecutionDate returns the ExecutionDate field value if set, zero value otherwise (both if not set or set to explicit null). Deprecated

func (*DAGRun) GetExecutionDateOk

func (o *DAGRun) GetExecutionDateOk() (*time.Time, bool)

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

func (*DAGRun) GetExternalTrigger

func (o *DAGRun) GetExternalTrigger() bool

GetExternalTrigger returns the ExternalTrigger field value if set, zero value otherwise.

func (*DAGRun) GetExternalTriggerOk

func (o *DAGRun) GetExternalTriggerOk() (*bool, bool)

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

func (*DAGRun) GetLastSchedulingDecision

func (o *DAGRun) GetLastSchedulingDecision() time.Time

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

func (*DAGRun) GetLastSchedulingDecisionOk

func (o *DAGRun) GetLastSchedulingDecisionOk() (*time.Time, bool)

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

func (*DAGRun) GetLogicalDate

func (o *DAGRun) GetLogicalDate() time.Time

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

func (*DAGRun) GetLogicalDateOk

func (o *DAGRun) GetLogicalDateOk() (*time.Time, bool)

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

func (*DAGRun) GetRunType

func (o *DAGRun) GetRunType() string

GetRunType returns the RunType field value if set, zero value otherwise.

func (*DAGRun) GetRunTypeOk

func (o *DAGRun) GetRunTypeOk() (*string, bool)

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

func (*DAGRun) GetStartDate

func (o *DAGRun) GetStartDate() time.Time

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

func (*DAGRun) GetStartDateOk

func (o *DAGRun) GetStartDateOk() (*time.Time, bool)

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

func (*DAGRun) GetState

func (o *DAGRun) GetState() DagState

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

func (*DAGRun) GetStateOk

func (o *DAGRun) GetStateOk() (*DagState, 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 (*DAGRun) HasConf

func (o *DAGRun) HasConf() bool

HasConf returns a boolean if a field has been set.

func (*DAGRun) HasDagId

func (o *DAGRun) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*DAGRun) HasDagRunId

func (o *DAGRun) HasDagRunId() bool

HasDagRunId returns a boolean if a field has been set.

func (*DAGRun) HasDataIntervalEnd

func (o *DAGRun) HasDataIntervalEnd() bool

HasDataIntervalEnd returns a boolean if a field has been set.

func (*DAGRun) HasDataIntervalStart

func (o *DAGRun) HasDataIntervalStart() bool

HasDataIntervalStart returns a boolean if a field has been set.

func (*DAGRun) HasEndDate

func (o *DAGRun) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*DAGRun) HasExecutionDate

func (o *DAGRun) HasExecutionDate() bool

HasExecutionDate returns a boolean if a field has been set.

func (*DAGRun) HasExternalTrigger

func (o *DAGRun) HasExternalTrigger() bool

HasExternalTrigger returns a boolean if a field has been set.

func (*DAGRun) HasLastSchedulingDecision

func (o *DAGRun) HasLastSchedulingDecision() bool

HasLastSchedulingDecision returns a boolean if a field has been set.

func (*DAGRun) HasLogicalDate

func (o *DAGRun) HasLogicalDate() bool

HasLogicalDate returns a boolean if a field has been set.

func (*DAGRun) HasRunType

func (o *DAGRun) HasRunType() bool

HasRunType returns a boolean if a field has been set.

func (*DAGRun) HasStartDate

func (o *DAGRun) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*DAGRun) HasState

func (o *DAGRun) HasState() bool

HasState returns a boolean if a field has been set.

func (DAGRun) MarshalJSON

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

func (*DAGRun) SetConf

func (o *DAGRun) SetConf(v map[string]interface{})

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

func (*DAGRun) SetDagId

func (o *DAGRun) SetDagId(v string)

SetDagId gets a reference to the given string and assigns it to the DagId field.

func (*DAGRun) SetDagRunId

func (o *DAGRun) SetDagRunId(v string)

SetDagRunId gets a reference to the given NullableString and assigns it to the DagRunId field.

func (*DAGRun) SetDagRunIdNil

func (o *DAGRun) SetDagRunIdNil()

SetDagRunIdNil sets the value for DagRunId to be an explicit nil

func (*DAGRun) SetDataIntervalEnd

func (o *DAGRun) SetDataIntervalEnd(v time.Time)

SetDataIntervalEnd gets a reference to the given NullableTime and assigns it to the DataIntervalEnd field.

func (*DAGRun) SetDataIntervalEndNil

func (o *DAGRun) SetDataIntervalEndNil()

SetDataIntervalEndNil sets the value for DataIntervalEnd to be an explicit nil

func (*DAGRun) SetDataIntervalStart

func (o *DAGRun) SetDataIntervalStart(v time.Time)

SetDataIntervalStart gets a reference to the given NullableTime and assigns it to the DataIntervalStart field.

func (*DAGRun) SetDataIntervalStartNil

func (o *DAGRun) SetDataIntervalStartNil()

SetDataIntervalStartNil sets the value for DataIntervalStart to be an explicit nil

func (*DAGRun) SetEndDate

func (o *DAGRun) SetEndDate(v time.Time)

SetEndDate gets a reference to the given NullableTime and assigns it to the EndDate field.

func (*DAGRun) SetEndDateNil

func (o *DAGRun) SetEndDateNil()

SetEndDateNil sets the value for EndDate to be an explicit nil

func (*DAGRun) SetExecutionDate

func (o *DAGRun) SetExecutionDate(v time.Time)

SetExecutionDate gets a reference to the given NullableTime and assigns it to the ExecutionDate field. Deprecated

func (*DAGRun) SetExecutionDateNil

func (o *DAGRun) SetExecutionDateNil()

SetExecutionDateNil sets the value for ExecutionDate to be an explicit nil

func (*DAGRun) SetExternalTrigger

func (o *DAGRun) SetExternalTrigger(v bool)

SetExternalTrigger gets a reference to the given bool and assigns it to the ExternalTrigger field.

func (*DAGRun) SetLastSchedulingDecision

func (o *DAGRun) SetLastSchedulingDecision(v time.Time)

SetLastSchedulingDecision gets a reference to the given NullableTime and assigns it to the LastSchedulingDecision field.

func (*DAGRun) SetLastSchedulingDecisionNil

func (o *DAGRun) SetLastSchedulingDecisionNil()

SetLastSchedulingDecisionNil sets the value for LastSchedulingDecision to be an explicit nil

func (*DAGRun) SetLogicalDate

func (o *DAGRun) SetLogicalDate(v time.Time)

SetLogicalDate gets a reference to the given NullableTime and assigns it to the LogicalDate field.

func (*DAGRun) SetLogicalDateNil

func (o *DAGRun) SetLogicalDateNil()

SetLogicalDateNil sets the value for LogicalDate to be an explicit nil

func (*DAGRun) SetRunType

func (o *DAGRun) SetRunType(v string)

SetRunType gets a reference to the given string and assigns it to the RunType field.

func (*DAGRun) SetStartDate

func (o *DAGRun) SetStartDate(v time.Time)

SetStartDate gets a reference to the given NullableTime and assigns it to the StartDate field.

func (*DAGRun) SetStartDateNil

func (o *DAGRun) SetStartDateNil()

SetStartDateNil sets the value for StartDate to be an explicit nil

func (*DAGRun) SetState

func (o *DAGRun) SetState(v DagState)

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

func (*DAGRun) UnsetDagRunId

func (o *DAGRun) UnsetDagRunId()

UnsetDagRunId ensures that no value is present for DagRunId, not even an explicit nil

func (*DAGRun) UnsetDataIntervalEnd

func (o *DAGRun) UnsetDataIntervalEnd()

UnsetDataIntervalEnd ensures that no value is present for DataIntervalEnd, not even an explicit nil

func (*DAGRun) UnsetDataIntervalStart

func (o *DAGRun) UnsetDataIntervalStart()

UnsetDataIntervalStart ensures that no value is present for DataIntervalStart, not even an explicit nil

func (*DAGRun) UnsetEndDate

func (o *DAGRun) UnsetEndDate()

UnsetEndDate ensures that no value is present for EndDate, not even an explicit nil

func (*DAGRun) UnsetExecutionDate

func (o *DAGRun) UnsetExecutionDate()

UnsetExecutionDate ensures that no value is present for ExecutionDate, not even an explicit nil

func (*DAGRun) UnsetLastSchedulingDecision

func (o *DAGRun) UnsetLastSchedulingDecision()

UnsetLastSchedulingDecision ensures that no value is present for LastSchedulingDecision, not even an explicit nil

func (*DAGRun) UnsetLogicalDate

func (o *DAGRun) UnsetLogicalDate()

UnsetLogicalDate ensures that no value is present for LogicalDate, not even an explicit nil

func (*DAGRun) UnsetStartDate

func (o *DAGRun) UnsetStartDate()

UnsetStartDate ensures that no value is present for StartDate, not even an explicit nil

type DAGRunApiService

type DAGRunApiService service

DAGRunApiService DAGRunApi service

func (*DAGRunApiService) DeleteDagRun

func (a *DAGRunApiService) DeleteDagRun(ctx _context.Context, dagId string, dagRunId string) ApiDeleteDagRunRequest

DeleteDagRun Delete a DAG run

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@return ApiDeleteDagRunRequest

func (*DAGRunApiService) DeleteDagRunExecute

func (a *DAGRunApiService) DeleteDagRunExecute(r ApiDeleteDagRunRequest) (*_nethttp.Response, error)

Execute executes the request

func (*DAGRunApiService) GetDagRun

func (a *DAGRunApiService) GetDagRun(ctx _context.Context, dagId string, dagRunId string) ApiGetDagRunRequest

GetDagRun Get a DAG run

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@return ApiGetDagRunRequest

func (*DAGRunApiService) GetDagRunExecute

func (a *DAGRunApiService) GetDagRunExecute(r ApiGetDagRunRequest) (DAGRun, *_nethttp.Response, error)

Execute executes the request

@return DAGRun

func (*DAGRunApiService) GetDagRuns

func (a *DAGRunApiService) GetDagRuns(ctx _context.Context, dagId string) ApiGetDagRunsRequest

GetDagRuns List DAG runs

This endpoint allows specifying `~` as the dag_id to retrieve DAG runs for all DAGs.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiGetDagRunsRequest

func (*DAGRunApiService) GetDagRunsBatch

GetDagRunsBatch List DAG runs (batch)

This endpoint is a POST to allow filtering across a large number of DAG IDs, where as a GET it would run in to maximum HTTP request URL length limit.

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

func (*DAGRunApiService) GetDagRunsBatchExecute

Execute executes the request

@return DAGRunCollection

func (*DAGRunApiService) GetDagRunsExecute

Execute executes the request

@return DAGRunCollection

func (*DAGRunApiService) PostDagRun

func (a *DAGRunApiService) PostDagRun(ctx _context.Context, dagId string) ApiPostDagRunRequest

PostDagRun Trigger a new DAG run

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@return ApiPostDagRunRequest

func (*DAGRunApiService) PostDagRunExecute

func (a *DAGRunApiService) PostDagRunExecute(r ApiPostDagRunRequest) (DAGRun, *_nethttp.Response, error)

Execute executes the request

@return DAGRun

func (*DAGRunApiService) UpdateDagRunState

func (a *DAGRunApiService) UpdateDagRunState(ctx _context.Context, dagId string, dagRunId string) ApiUpdateDagRunStateRequest

UpdateDagRunState Modify a DAG run

Modify a DAG run.

*New in version 2.2.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@return ApiUpdateDagRunStateRequest

func (*DAGRunApiService) UpdateDagRunStateExecute

func (a *DAGRunApiService) UpdateDagRunStateExecute(r ApiUpdateDagRunStateRequest) (DAGRun, *_nethttp.Response, error)

Execute executes the request

@return DAGRun

type DAGRunCollection

type DAGRunCollection struct {
	DagRuns *[]DAGRun `json:"dag_runs,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

DAGRunCollection Collection of DAG runs. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewDAGRunCollection

func NewDAGRunCollection() *DAGRunCollection

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

func NewDAGRunCollectionWithDefaults

func NewDAGRunCollectionWithDefaults() *DAGRunCollection

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

func (*DAGRunCollection) GetDagRuns

func (o *DAGRunCollection) GetDagRuns() []DAGRun

GetDagRuns returns the DagRuns field value if set, zero value otherwise.

func (*DAGRunCollection) GetDagRunsOk

func (o *DAGRunCollection) GetDagRunsOk() (*[]DAGRun, bool)

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

func (*DAGRunCollection) GetTotalEntries

func (o *DAGRunCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*DAGRunCollection) GetTotalEntriesOk

func (o *DAGRunCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*DAGRunCollection) HasDagRuns

func (o *DAGRunCollection) HasDagRuns() bool

HasDagRuns returns a boolean if a field has been set.

func (*DAGRunCollection) HasTotalEntries

func (o *DAGRunCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (DAGRunCollection) MarshalJSON

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

func (*DAGRunCollection) SetDagRuns

func (o *DAGRunCollection) SetDagRuns(v []DAGRun)

SetDagRuns gets a reference to the given []DAGRun and assigns it to the DagRuns field.

func (*DAGRunCollection) SetTotalEntries

func (o *DAGRunCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type DAGRunCollectionAllOf

type DAGRunCollectionAllOf struct {
	DagRuns *[]DAGRun `json:"dag_runs,omitempty"`
}

DAGRunCollectionAllOf struct for DAGRunCollectionAllOf

func NewDAGRunCollectionAllOf

func NewDAGRunCollectionAllOf() *DAGRunCollectionAllOf

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

func NewDAGRunCollectionAllOfWithDefaults

func NewDAGRunCollectionAllOfWithDefaults() *DAGRunCollectionAllOf

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

func (*DAGRunCollectionAllOf) GetDagRuns

func (o *DAGRunCollectionAllOf) GetDagRuns() []DAGRun

GetDagRuns returns the DagRuns field value if set, zero value otherwise.

func (*DAGRunCollectionAllOf) GetDagRunsOk

func (o *DAGRunCollectionAllOf) GetDagRunsOk() (*[]DAGRun, bool)

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

func (*DAGRunCollectionAllOf) HasDagRuns

func (o *DAGRunCollectionAllOf) HasDagRuns() bool

HasDagRuns returns a boolean if a field has been set.

func (DAGRunCollectionAllOf) MarshalJSON

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

func (*DAGRunCollectionAllOf) SetDagRuns

func (o *DAGRunCollectionAllOf) SetDagRuns(v []DAGRun)

SetDagRuns gets a reference to the given []DAGRun and assigns it to the DagRuns field.

type DagState

type DagState string

DagState DAG State. *Changed in version 2.1.3*: 'queued' is added as a possible value.

const (
	DAGSTATE_QUEUED  DagState = "queued"
	DAGSTATE_RUNNING DagState = "running"
	DAGSTATE_SUCCESS DagState = "success"
	DAGSTATE_FAILED  DagState = "failed"
)

List of DagState

func NewDagStateFromValue

func NewDagStateFromValue(v string) (*DagState, error)

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

func (DagState) IsValid

func (v DagState) IsValid() bool

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

func (DagState) Ptr

func (v DagState) Ptr() *DagState

Ptr returns reference to DagState value

func (*DagState) UnmarshalJSON

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

type Error

type Error struct {
	// A URI reference [RFC3986] that identifies the problem type. This specification encourages that, when dereferenced, it provide human-readable documentation for the problem type.
	Type string `json:"type"`
	// A short, human-readable summary of the problem type.
	Title string `json:"title"`
	// The HTTP status code generated by the API server for this occurrence of the problem.
	Status float32 `json:"status"`
	// A human-readable explanation specific to this occurrence of the problem.
	Detail *string `json:"detail,omitempty"`
	// A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
	Instance *string `json:"instance,omitempty"`
}

Error [RFC7807](https://tools.ietf.org/html/rfc7807) compliant response.

func NewError

func NewError(type_ string, title string, status float32) *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) GetDetail

func (o *Error) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*Error) GetDetailOk

func (o *Error) GetDetailOk() (*string, 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 (*Error) GetInstance

func (o *Error) GetInstance() string

GetInstance returns the Instance field value if set, zero value otherwise.

func (*Error) GetInstanceOk

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

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

func (*Error) GetStatus

func (o *Error) GetStatus() float32

GetStatus returns the Status field value

func (*Error) GetStatusOk

func (o *Error) GetStatusOk() (*float32, bool)

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

func (*Error) GetTitle

func (o *Error) GetTitle() string

GetTitle returns the Title field value

func (*Error) GetTitleOk

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

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

func (*Error) GetType

func (o *Error) GetType() string

GetType returns the Type field value

func (*Error) GetTypeOk

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

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

func (*Error) HasDetail

func (o *Error) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*Error) HasInstance

func (o *Error) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (Error) MarshalJSON

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

func (*Error) SetDetail

func (o *Error) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*Error) SetInstance

func (o *Error) SetInstance(v string)

SetInstance gets a reference to the given string and assigns it to the Instance field.

func (*Error) SetStatus

func (o *Error) SetStatus(v float32)

SetStatus sets field value

func (*Error) SetTitle

func (o *Error) SetTitle(v string)

SetTitle sets field value

func (*Error) SetType

func (o *Error) SetType(v string)

SetType sets field value

type EventLog

type EventLog struct {
	// The event log ID
	EventLogId *int32 `json:"event_log_id,omitempty"`
	// The time when these events happened.
	When *time.Time `json:"when,omitempty"`
	// The DAG ID
	DagId NullableString `json:"dag_id,omitempty"`
	// The DAG ID
	TaskId NullableString `json:"task_id,omitempty"`
	// A key describing the type of event.
	Event *string `json:"event,omitempty"`
	// When the event was dispatched for an object having execution_date, the value of this field.
	ExecutionDate NullableTime `json:"execution_date,omitempty"`
	// Name of the user who triggered these events a.
	Owner *string `json:"owner,omitempty"`
	// Other information that was not included in the other fields, e.g. the complete CLI command.
	Extra NullableString `json:"extra,omitempty"`
}

EventLog Log of user operations via CLI or Web UI.

func NewEventLog

func NewEventLog() *EventLog

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

func NewEventLogWithDefaults

func NewEventLogWithDefaults() *EventLog

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

func (*EventLog) GetDagId

func (o *EventLog) GetDagId() string

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

func (*EventLog) GetDagIdOk

func (o *EventLog) GetDagIdOk() (*string, bool)

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

func (*EventLog) GetEvent

func (o *EventLog) GetEvent() string

GetEvent returns the Event field value if set, zero value otherwise.

func (*EventLog) GetEventLogId

func (o *EventLog) GetEventLogId() int32

GetEventLogId returns the EventLogId field value if set, zero value otherwise.

func (*EventLog) GetEventLogIdOk

func (o *EventLog) GetEventLogIdOk() (*int32, bool)

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

func (*EventLog) GetEventOk

func (o *EventLog) GetEventOk() (*string, bool)

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

func (*EventLog) GetExecutionDate

func (o *EventLog) GetExecutionDate() time.Time

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

func (*EventLog) GetExecutionDateOk

func (o *EventLog) GetExecutionDateOk() (*time.Time, bool)

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

func (*EventLog) GetExtra

func (o *EventLog) GetExtra() string

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

func (*EventLog) GetExtraOk

func (o *EventLog) GetExtraOk() (*string, bool)

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

func (*EventLog) GetOwner

func (o *EventLog) GetOwner() string

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

func (*EventLog) GetOwnerOk

func (o *EventLog) 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 (*EventLog) GetTaskId

func (o *EventLog) GetTaskId() string

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

func (*EventLog) GetTaskIdOk

func (o *EventLog) GetTaskIdOk() (*string, bool)

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

func (*EventLog) GetWhen

func (o *EventLog) GetWhen() time.Time

GetWhen returns the When field value if set, zero value otherwise.

func (*EventLog) GetWhenOk

func (o *EventLog) GetWhenOk() (*time.Time, bool)

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

func (*EventLog) HasDagId

func (o *EventLog) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*EventLog) HasEvent

func (o *EventLog) HasEvent() bool

HasEvent returns a boolean if a field has been set.

func (*EventLog) HasEventLogId

func (o *EventLog) HasEventLogId() bool

HasEventLogId returns a boolean if a field has been set.

func (*EventLog) HasExecutionDate

func (o *EventLog) HasExecutionDate() bool

HasExecutionDate returns a boolean if a field has been set.

func (*EventLog) HasExtra

func (o *EventLog) HasExtra() bool

HasExtra returns a boolean if a field has been set.

func (*EventLog) HasOwner

func (o *EventLog) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*EventLog) HasTaskId

func (o *EventLog) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*EventLog) HasWhen

func (o *EventLog) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (EventLog) MarshalJSON

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

func (*EventLog) SetDagId

func (o *EventLog) SetDagId(v string)

SetDagId gets a reference to the given NullableString and assigns it to the DagId field.

func (*EventLog) SetDagIdNil

func (o *EventLog) SetDagIdNil()

SetDagIdNil sets the value for DagId to be an explicit nil

func (*EventLog) SetEvent

func (o *EventLog) SetEvent(v string)

SetEvent gets a reference to the given string and assigns it to the Event field.

func (*EventLog) SetEventLogId

func (o *EventLog) SetEventLogId(v int32)

SetEventLogId gets a reference to the given int32 and assigns it to the EventLogId field.

func (*EventLog) SetExecutionDate

func (o *EventLog) SetExecutionDate(v time.Time)

SetExecutionDate gets a reference to the given NullableTime and assigns it to the ExecutionDate field.

func (*EventLog) SetExecutionDateNil

func (o *EventLog) SetExecutionDateNil()

SetExecutionDateNil sets the value for ExecutionDate to be an explicit nil

func (*EventLog) SetExtra

func (o *EventLog) SetExtra(v string)

SetExtra gets a reference to the given NullableString and assigns it to the Extra field.

func (*EventLog) SetExtraNil

func (o *EventLog) SetExtraNil()

SetExtraNil sets the value for Extra to be an explicit nil

func (*EventLog) SetOwner

func (o *EventLog) SetOwner(v string)

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

func (*EventLog) SetTaskId

func (o *EventLog) SetTaskId(v string)

SetTaskId gets a reference to the given NullableString and assigns it to the TaskId field.

func (*EventLog) SetTaskIdNil

func (o *EventLog) SetTaskIdNil()

SetTaskIdNil sets the value for TaskId to be an explicit nil

func (*EventLog) SetWhen

func (o *EventLog) SetWhen(v time.Time)

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

func (*EventLog) UnsetDagId

func (o *EventLog) UnsetDagId()

UnsetDagId ensures that no value is present for DagId, not even an explicit nil

func (*EventLog) UnsetExecutionDate

func (o *EventLog) UnsetExecutionDate()

UnsetExecutionDate ensures that no value is present for ExecutionDate, not even an explicit nil

func (*EventLog) UnsetExtra

func (o *EventLog) UnsetExtra()

UnsetExtra ensures that no value is present for Extra, not even an explicit nil

func (*EventLog) UnsetTaskId

func (o *EventLog) UnsetTaskId()

UnsetTaskId ensures that no value is present for TaskId, not even an explicit nil

type EventLogApiService

type EventLogApiService service

EventLogApiService EventLogApi service

func (*EventLogApiService) GetEventLog

func (a *EventLogApiService) GetEventLog(ctx _context.Context, eventLogId int32) ApiGetEventLogRequest

GetEventLog Get a log entry

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param eventLogId The event log ID.
@return ApiGetEventLogRequest

func (*EventLogApiService) GetEventLogExecute

Execute executes the request

@return EventLog

func (*EventLogApiService) GetEventLogs

GetEventLogs List log entries

List log entries from event log.

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

func (*EventLogApiService) GetEventLogsExecute

Execute executes the request

@return EventLogCollection

type EventLogCollection

type EventLogCollection struct {
	EventLogs *[]EventLog `json:"event_logs,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

EventLogCollection Collection of event logs. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewEventLogCollection

func NewEventLogCollection() *EventLogCollection

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

func NewEventLogCollectionWithDefaults

func NewEventLogCollectionWithDefaults() *EventLogCollection

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

func (*EventLogCollection) GetEventLogs

func (o *EventLogCollection) GetEventLogs() []EventLog

GetEventLogs returns the EventLogs field value if set, zero value otherwise.

func (*EventLogCollection) GetEventLogsOk

func (o *EventLogCollection) GetEventLogsOk() (*[]EventLog, bool)

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

func (*EventLogCollection) GetTotalEntries

func (o *EventLogCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*EventLogCollection) GetTotalEntriesOk

func (o *EventLogCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*EventLogCollection) HasEventLogs

func (o *EventLogCollection) HasEventLogs() bool

HasEventLogs returns a boolean if a field has been set.

func (*EventLogCollection) HasTotalEntries

func (o *EventLogCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (EventLogCollection) MarshalJSON

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

func (*EventLogCollection) SetEventLogs

func (o *EventLogCollection) SetEventLogs(v []EventLog)

SetEventLogs gets a reference to the given []EventLog and assigns it to the EventLogs field.

func (*EventLogCollection) SetTotalEntries

func (o *EventLogCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type EventLogCollectionAllOf

type EventLogCollectionAllOf struct {
	EventLogs *[]EventLog `json:"event_logs,omitempty"`
}

EventLogCollectionAllOf struct for EventLogCollectionAllOf

func NewEventLogCollectionAllOf

func NewEventLogCollectionAllOf() *EventLogCollectionAllOf

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

func NewEventLogCollectionAllOfWithDefaults

func NewEventLogCollectionAllOfWithDefaults() *EventLogCollectionAllOf

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

func (*EventLogCollectionAllOf) GetEventLogs

func (o *EventLogCollectionAllOf) GetEventLogs() []EventLog

GetEventLogs returns the EventLogs field value if set, zero value otherwise.

func (*EventLogCollectionAllOf) GetEventLogsOk

func (o *EventLogCollectionAllOf) GetEventLogsOk() (*[]EventLog, bool)

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

func (*EventLogCollectionAllOf) HasEventLogs

func (o *EventLogCollectionAllOf) HasEventLogs() bool

HasEventLogs returns a boolean if a field has been set.

func (EventLogCollectionAllOf) MarshalJSON

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

func (*EventLogCollectionAllOf) SetEventLogs

func (o *EventLogCollectionAllOf) SetEventLogs(v []EventLog)

SetEventLogs gets a reference to the given []EventLog and assigns it to the EventLogs field.

type ExtraLink struct {
	ClassRef *ClassReference `json:"class_ref,omitempty"`
	Name     *string         `json:"name,omitempty"`
	Href     *string         `json:"href,omitempty"`
}

ExtraLink Additional links containing additional information about the task.

func NewExtraLink() *ExtraLink

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

func NewExtraLinkWithDefaults

func NewExtraLinkWithDefaults() *ExtraLink

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

func (*ExtraLink) GetClassRef

func (o *ExtraLink) GetClassRef() ClassReference

GetClassRef returns the ClassRef field value if set, zero value otherwise.

func (*ExtraLink) GetClassRefOk

func (o *ExtraLink) GetClassRefOk() (*ClassReference, bool)

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

func (*ExtraLink) GetHref

func (o *ExtraLink) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*ExtraLink) GetHrefOk

func (o *ExtraLink) GetHrefOk() (*string, bool)

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

func (*ExtraLink) GetName

func (o *ExtraLink) GetName() string

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

func (*ExtraLink) GetNameOk

func (o *ExtraLink) 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 (*ExtraLink) HasClassRef

func (o *ExtraLink) HasClassRef() bool

HasClassRef returns a boolean if a field has been set.

func (*ExtraLink) HasHref

func (o *ExtraLink) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ExtraLink) HasName

func (o *ExtraLink) HasName() bool

HasName returns a boolean if a field has been set.

func (ExtraLink) MarshalJSON

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

func (*ExtraLink) SetClassRef

func (o *ExtraLink) SetClassRef(v ClassReference)

SetClassRef gets a reference to the given ClassReference and assigns it to the ClassRef field.

func (*ExtraLink) SetHref

func (o *ExtraLink) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*ExtraLink) SetName

func (o *ExtraLink) SetName(v string)

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

type ExtraLinkCollection

type ExtraLinkCollection struct {
	ExtraLinks *[]ExtraLink `json:"extra_links,omitempty"`
}

ExtraLinkCollection The collection of extra links.

func NewExtraLinkCollection

func NewExtraLinkCollection() *ExtraLinkCollection

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

func NewExtraLinkCollectionWithDefaults

func NewExtraLinkCollectionWithDefaults() *ExtraLinkCollection

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

func (o *ExtraLinkCollection) GetExtraLinks() []ExtraLink

GetExtraLinks returns the ExtraLinks field value if set, zero value otherwise.

func (*ExtraLinkCollection) GetExtraLinksOk

func (o *ExtraLinkCollection) GetExtraLinksOk() (*[]ExtraLink, bool)

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

func (o *ExtraLinkCollection) HasExtraLinks() bool

HasExtraLinks returns a boolean if a field has been set.

func (ExtraLinkCollection) MarshalJSON

func (o ExtraLinkCollection) MarshalJSON() ([]byte, error)
func (o *ExtraLinkCollection) SetExtraLinks(v []ExtraLink)

SetExtraLinks gets a reference to the given []ExtraLink and assigns it to the ExtraLinks field.

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 HealthInfo

type HealthInfo struct {
	Metadatabase *MetadatabaseStatus `json:"metadatabase,omitempty"`
	Scheduler    *SchedulerStatus    `json:"scheduler,omitempty"`
}

HealthInfo Instance status information.

func NewHealthInfo

func NewHealthInfo() *HealthInfo

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

func NewHealthInfoWithDefaults

func NewHealthInfoWithDefaults() *HealthInfo

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

func (*HealthInfo) GetMetadatabase

func (o *HealthInfo) GetMetadatabase() MetadatabaseStatus

GetMetadatabase returns the Metadatabase field value if set, zero value otherwise.

func (*HealthInfo) GetMetadatabaseOk

func (o *HealthInfo) GetMetadatabaseOk() (*MetadatabaseStatus, bool)

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

func (*HealthInfo) GetScheduler

func (o *HealthInfo) GetScheduler() SchedulerStatus

GetScheduler returns the Scheduler field value if set, zero value otherwise.

func (*HealthInfo) GetSchedulerOk

func (o *HealthInfo) GetSchedulerOk() (*SchedulerStatus, 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 (*HealthInfo) HasMetadatabase

func (o *HealthInfo) HasMetadatabase() bool

HasMetadatabase returns a boolean if a field has been set.

func (*HealthInfo) HasScheduler

func (o *HealthInfo) HasScheduler() bool

HasScheduler returns a boolean if a field has been set.

func (HealthInfo) MarshalJSON

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

func (*HealthInfo) SetMetadatabase

func (o *HealthInfo) SetMetadatabase(v MetadatabaseStatus)

SetMetadatabase gets a reference to the given MetadatabaseStatus and assigns it to the Metadatabase field.

func (*HealthInfo) SetScheduler

func (o *HealthInfo) SetScheduler(v SchedulerStatus)

SetScheduler gets a reference to the given SchedulerStatus and assigns it to the Scheduler field.

type HealthStatus

type HealthStatus string

HealthStatus Health status

const (
	HEALTHSTATUS_HEALTHY   HealthStatus = "healthy"
	HEALTHSTATUS_UNHEALTHY HealthStatus = "unhealthy"
)

List of HealthStatus

func NewHealthStatusFromValue

func NewHealthStatusFromValue(v string) (*HealthStatus, error)

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

func (HealthStatus) IsValid

func (v HealthStatus) IsValid() bool

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

func (HealthStatus) Ptr

func (v HealthStatus) Ptr() *HealthStatus

Ptr returns reference to HealthStatus value

func (*HealthStatus) UnmarshalJSON

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

type ImportError

type ImportError struct {
	// The import error ID.
	ImportErrorId *int32 `json:"import_error_id,omitempty"`
	// The time when this error was created.
	Timestamp *string `json:"timestamp,omitempty"`
	// The filename
	Filename *string `json:"filename,omitempty"`
	// The full stackstrace..
	StackTrace *string `json:"stack_trace,omitempty"`
}

ImportError struct for ImportError

func NewImportError

func NewImportError() *ImportError

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

func NewImportErrorWithDefaults

func NewImportErrorWithDefaults() *ImportError

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

func (*ImportError) GetFilename

func (o *ImportError) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise.

func (*ImportError) GetFilenameOk

func (o *ImportError) 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 (*ImportError) GetImportErrorId

func (o *ImportError) GetImportErrorId() int32

GetImportErrorId returns the ImportErrorId field value if set, zero value otherwise.

func (*ImportError) GetImportErrorIdOk

func (o *ImportError) GetImportErrorIdOk() (*int32, bool)

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

func (*ImportError) GetStackTrace

func (o *ImportError) GetStackTrace() string

GetStackTrace returns the StackTrace field value if set, zero value otherwise.

func (*ImportError) GetStackTraceOk

func (o *ImportError) GetStackTraceOk() (*string, bool)

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

func (*ImportError) GetTimestamp

func (o *ImportError) GetTimestamp() string

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

func (*ImportError) GetTimestampOk

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

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

func (*ImportError) HasFilename

func (o *ImportError) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (*ImportError) HasImportErrorId

func (o *ImportError) HasImportErrorId() bool

HasImportErrorId returns a boolean if a field has been set.

func (*ImportError) HasStackTrace

func (o *ImportError) HasStackTrace() bool

HasStackTrace returns a boolean if a field has been set.

func (*ImportError) HasTimestamp

func (o *ImportError) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ImportError) MarshalJSON

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

func (*ImportError) SetFilename

func (o *ImportError) SetFilename(v string)

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (*ImportError) SetImportErrorId

func (o *ImportError) SetImportErrorId(v int32)

SetImportErrorId gets a reference to the given int32 and assigns it to the ImportErrorId field.

func (*ImportError) SetStackTrace

func (o *ImportError) SetStackTrace(v string)

SetStackTrace gets a reference to the given string and assigns it to the StackTrace field.

func (*ImportError) SetTimestamp

func (o *ImportError) SetTimestamp(v string)

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

type ImportErrorApiService

type ImportErrorApiService service

ImportErrorApiService ImportErrorApi service

func (*ImportErrorApiService) GetImportError

func (a *ImportErrorApiService) GetImportError(ctx _context.Context, importErrorId int32) ApiGetImportErrorRequest

GetImportError Get an import error

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param importErrorId The import error ID.
@return ApiGetImportErrorRequest

func (*ImportErrorApiService) GetImportErrorExecute

Execute executes the request

@return ImportError

func (*ImportErrorApiService) GetImportErrors

GetImportErrors List import errors

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

func (*ImportErrorApiService) GetImportErrorsExecute

Execute executes the request

@return ImportErrorCollection

type ImportErrorCollection

type ImportErrorCollection struct {
	ImportErrors *[]ImportError `json:"import_errors,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

ImportErrorCollection Collection of import errors. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewImportErrorCollection

func NewImportErrorCollection() *ImportErrorCollection

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

func NewImportErrorCollectionWithDefaults

func NewImportErrorCollectionWithDefaults() *ImportErrorCollection

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

func (*ImportErrorCollection) GetImportErrors

func (o *ImportErrorCollection) GetImportErrors() []ImportError

GetImportErrors returns the ImportErrors field value if set, zero value otherwise.

func (*ImportErrorCollection) GetImportErrorsOk

func (o *ImportErrorCollection) GetImportErrorsOk() (*[]ImportError, bool)

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

func (*ImportErrorCollection) GetTotalEntries

func (o *ImportErrorCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*ImportErrorCollection) GetTotalEntriesOk

func (o *ImportErrorCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*ImportErrorCollection) HasImportErrors

func (o *ImportErrorCollection) HasImportErrors() bool

HasImportErrors returns a boolean if a field has been set.

func (*ImportErrorCollection) HasTotalEntries

func (o *ImportErrorCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (ImportErrorCollection) MarshalJSON

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

func (*ImportErrorCollection) SetImportErrors

func (o *ImportErrorCollection) SetImportErrors(v []ImportError)

SetImportErrors gets a reference to the given []ImportError and assigns it to the ImportErrors field.

func (*ImportErrorCollection) SetTotalEntries

func (o *ImportErrorCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type ImportErrorCollectionAllOf

type ImportErrorCollectionAllOf struct {
	ImportErrors *[]ImportError `json:"import_errors,omitempty"`
}

ImportErrorCollectionAllOf struct for ImportErrorCollectionAllOf

func NewImportErrorCollectionAllOf

func NewImportErrorCollectionAllOf() *ImportErrorCollectionAllOf

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

func NewImportErrorCollectionAllOfWithDefaults

func NewImportErrorCollectionAllOfWithDefaults() *ImportErrorCollectionAllOf

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

func (*ImportErrorCollectionAllOf) GetImportErrors

func (o *ImportErrorCollectionAllOf) GetImportErrors() []ImportError

GetImportErrors returns the ImportErrors field value if set, zero value otherwise.

func (*ImportErrorCollectionAllOf) GetImportErrorsOk

func (o *ImportErrorCollectionAllOf) GetImportErrorsOk() (*[]ImportError, bool)

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

func (*ImportErrorCollectionAllOf) HasImportErrors

func (o *ImportErrorCollectionAllOf) HasImportErrors() bool

HasImportErrors returns a boolean if a field has been set.

func (ImportErrorCollectionAllOf) MarshalJSON

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

func (*ImportErrorCollectionAllOf) SetImportErrors

func (o *ImportErrorCollectionAllOf) SetImportErrors(v []ImportError)

SetImportErrors gets a reference to the given []ImportError and assigns it to the ImportErrors field.

type InlineResponse200

type InlineResponse200 struct {
	ContinuationToken *string `json:"continuation_token,omitempty"`
	Content           *string `json:"content,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) GetContent

func (o *InlineResponse200) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*InlineResponse200) GetContentOk

func (o *InlineResponse200) GetContentOk() (*string, 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 (*InlineResponse200) GetContinuationToken

func (o *InlineResponse200) GetContinuationToken() string

GetContinuationToken returns the ContinuationToken field value if set, zero value otherwise.

func (*InlineResponse200) GetContinuationTokenOk

func (o *InlineResponse200) GetContinuationTokenOk() (*string, bool)

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

func (*InlineResponse200) HasContent

func (o *InlineResponse200) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*InlineResponse200) HasContinuationToken

func (o *InlineResponse200) HasContinuationToken() bool

HasContinuationToken returns a boolean if a field has been set.

func (InlineResponse200) MarshalJSON

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

func (*InlineResponse200) SetContent

func (o *InlineResponse200) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*InlineResponse200) SetContinuationToken

func (o *InlineResponse200) SetContinuationToken(v string)

SetContinuationToken gets a reference to the given string and assigns it to the ContinuationToken field.

type InlineResponse2001

type InlineResponse2001 struct {
	Content *string `json:"content,omitempty"`
}

InlineResponse2001 struct for InlineResponse2001

func NewInlineResponse2001

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

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

func (o *InlineResponse2001) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*InlineResponse2001) GetContentOk

func (o *InlineResponse2001) GetContentOk() (*string, 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 (*InlineResponse2001) HasContent

func (o *InlineResponse2001) HasContent() bool

HasContent returns a boolean if a field has been set.

func (InlineResponse2001) MarshalJSON

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

func (*InlineResponse2001) SetContent

func (o *InlineResponse2001) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

type ListDagRunsForm

type ListDagRunsForm struct {
	// The name of the field to order the results by. Prefix a field name with `-` to reverse the sort order.  *New in version 2.1.0*
	OrderBy *string `json:"order_by,omitempty"`
	// The number of items to skip before starting to collect the result set.
	PageOffset *int32 `json:"page_offset,omitempty"`
	// The numbers of items to return.
	PageLimit *int32 `json:"page_limit,omitempty"`
	// Return objects with specific DAG IDs. The value can be repeated to retrieve multiple matching values (OR condition).
	DagIds *[]string `json:"dag_ids,omitempty"`
	// Return objects with specific states. The value can be repeated to retrieve multiple matching values (OR condition).
	States *[]string `json:"states,omitempty"`
	// Returns objects greater or equal to the specified date.  This can be combined with execution_date_lte key to receive only the selected period.
	ExecutionDateGte *time.Time `json:"execution_date_gte,omitempty"`
	// Returns objects less than or equal to the specified date.  This can be combined with execution_date_gte key to receive only the selected period.
	ExecutionDateLte *time.Time `json:"execution_date_lte,omitempty"`
	// Returns objects greater or equal the specified date.  This can be combined with start_date_lte key to receive only the selected period.
	StartDateGte *time.Time `json:"start_date_gte,omitempty"`
	// Returns objects less or equal the specified date.  This can be combined with start_date_gte parameter to receive only the selected period
	StartDateLte *time.Time `json:"start_date_lte,omitempty"`
	// Returns objects greater or equal the specified date.  This can be combined with end_date_lte parameter to receive only the selected period.
	EndDateGte *time.Time `json:"end_date_gte,omitempty"`
	// Returns objects less than or equal to the specified date.  This can be combined with end_date_gte parameter to receive only the selected period.
	EndDateLte *time.Time `json:"end_date_lte,omitempty"`
}

ListDagRunsForm struct for ListDagRunsForm

func NewListDagRunsForm

func NewListDagRunsForm() *ListDagRunsForm

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

func NewListDagRunsFormWithDefaults

func NewListDagRunsFormWithDefaults() *ListDagRunsForm

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

func (*ListDagRunsForm) GetDagIds

func (o *ListDagRunsForm) GetDagIds() []string

GetDagIds returns the DagIds field value if set, zero value otherwise.

func (*ListDagRunsForm) GetDagIdsOk

func (o *ListDagRunsForm) GetDagIdsOk() (*[]string, bool)

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

func (*ListDagRunsForm) GetEndDateGte

func (o *ListDagRunsForm) GetEndDateGte() time.Time

GetEndDateGte returns the EndDateGte field value if set, zero value otherwise.

func (*ListDagRunsForm) GetEndDateGteOk

func (o *ListDagRunsForm) GetEndDateGteOk() (*time.Time, bool)

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

func (*ListDagRunsForm) GetEndDateLte

func (o *ListDagRunsForm) GetEndDateLte() time.Time

GetEndDateLte returns the EndDateLte field value if set, zero value otherwise.

func (*ListDagRunsForm) GetEndDateLteOk

func (o *ListDagRunsForm) GetEndDateLteOk() (*time.Time, bool)

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

func (*ListDagRunsForm) GetExecutionDateGte

func (o *ListDagRunsForm) GetExecutionDateGte() time.Time

GetExecutionDateGte returns the ExecutionDateGte field value if set, zero value otherwise.

func (*ListDagRunsForm) GetExecutionDateGteOk

func (o *ListDagRunsForm) GetExecutionDateGteOk() (*time.Time, bool)

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

func (*ListDagRunsForm) GetExecutionDateLte

func (o *ListDagRunsForm) GetExecutionDateLte() time.Time

GetExecutionDateLte returns the ExecutionDateLte field value if set, zero value otherwise.

func (*ListDagRunsForm) GetExecutionDateLteOk

func (o *ListDagRunsForm) GetExecutionDateLteOk() (*time.Time, bool)

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

func (*ListDagRunsForm) GetOrderBy

func (o *ListDagRunsForm) GetOrderBy() string

GetOrderBy returns the OrderBy field value if set, zero value otherwise.

func (*ListDagRunsForm) GetOrderByOk

func (o *ListDagRunsForm) GetOrderByOk() (*string, bool)

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

func (*ListDagRunsForm) GetPageLimit

func (o *ListDagRunsForm) GetPageLimit() int32

GetPageLimit returns the PageLimit field value if set, zero value otherwise.

func (*ListDagRunsForm) GetPageLimitOk

func (o *ListDagRunsForm) GetPageLimitOk() (*int32, bool)

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

func (*ListDagRunsForm) GetPageOffset

func (o *ListDagRunsForm) GetPageOffset() int32

GetPageOffset returns the PageOffset field value if set, zero value otherwise.

func (*ListDagRunsForm) GetPageOffsetOk

func (o *ListDagRunsForm) GetPageOffsetOk() (*int32, bool)

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

func (*ListDagRunsForm) GetStartDateGte

func (o *ListDagRunsForm) GetStartDateGte() time.Time

GetStartDateGte returns the StartDateGte field value if set, zero value otherwise.

func (*ListDagRunsForm) GetStartDateGteOk

func (o *ListDagRunsForm) GetStartDateGteOk() (*time.Time, bool)

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

func (*ListDagRunsForm) GetStartDateLte

func (o *ListDagRunsForm) GetStartDateLte() time.Time

GetStartDateLte returns the StartDateLte field value if set, zero value otherwise.

func (*ListDagRunsForm) GetStartDateLteOk

func (o *ListDagRunsForm) GetStartDateLteOk() (*time.Time, bool)

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

func (*ListDagRunsForm) GetStates

func (o *ListDagRunsForm) GetStates() []string

GetStates returns the States field value if set, zero value otherwise.

func (*ListDagRunsForm) GetStatesOk

func (o *ListDagRunsForm) GetStatesOk() (*[]string, bool)

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

func (*ListDagRunsForm) HasDagIds

func (o *ListDagRunsForm) HasDagIds() bool

HasDagIds returns a boolean if a field has been set.

func (*ListDagRunsForm) HasEndDateGte

func (o *ListDagRunsForm) HasEndDateGte() bool

HasEndDateGte returns a boolean if a field has been set.

func (*ListDagRunsForm) HasEndDateLte

func (o *ListDagRunsForm) HasEndDateLte() bool

HasEndDateLte returns a boolean if a field has been set.

func (*ListDagRunsForm) HasExecutionDateGte

func (o *ListDagRunsForm) HasExecutionDateGte() bool

HasExecutionDateGte returns a boolean if a field has been set.

func (*ListDagRunsForm) HasExecutionDateLte

func (o *ListDagRunsForm) HasExecutionDateLte() bool

HasExecutionDateLte returns a boolean if a field has been set.

func (*ListDagRunsForm) HasOrderBy

func (o *ListDagRunsForm) HasOrderBy() bool

HasOrderBy returns a boolean if a field has been set.

func (*ListDagRunsForm) HasPageLimit

func (o *ListDagRunsForm) HasPageLimit() bool

HasPageLimit returns a boolean if a field has been set.

func (*ListDagRunsForm) HasPageOffset

func (o *ListDagRunsForm) HasPageOffset() bool

HasPageOffset returns a boolean if a field has been set.

func (*ListDagRunsForm) HasStartDateGte

func (o *ListDagRunsForm) HasStartDateGte() bool

HasStartDateGte returns a boolean if a field has been set.

func (*ListDagRunsForm) HasStartDateLte

func (o *ListDagRunsForm) HasStartDateLte() bool

HasStartDateLte returns a boolean if a field has been set.

func (*ListDagRunsForm) HasStates

func (o *ListDagRunsForm) HasStates() bool

HasStates returns a boolean if a field has been set.

func (ListDagRunsForm) MarshalJSON

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

func (*ListDagRunsForm) SetDagIds

func (o *ListDagRunsForm) SetDagIds(v []string)

SetDagIds gets a reference to the given []string and assigns it to the DagIds field.

func (*ListDagRunsForm) SetEndDateGte

func (o *ListDagRunsForm) SetEndDateGte(v time.Time)

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

func (*ListDagRunsForm) SetEndDateLte

func (o *ListDagRunsForm) SetEndDateLte(v time.Time)

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

func (*ListDagRunsForm) SetExecutionDateGte

func (o *ListDagRunsForm) SetExecutionDateGte(v time.Time)

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

func (*ListDagRunsForm) SetExecutionDateLte

func (o *ListDagRunsForm) SetExecutionDateLte(v time.Time)

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

func (*ListDagRunsForm) SetOrderBy

func (o *ListDagRunsForm) SetOrderBy(v string)

SetOrderBy gets a reference to the given string and assigns it to the OrderBy field.

func (*ListDagRunsForm) SetPageLimit

func (o *ListDagRunsForm) SetPageLimit(v int32)

SetPageLimit gets a reference to the given int32 and assigns it to the PageLimit field.

func (*ListDagRunsForm) SetPageOffset

func (o *ListDagRunsForm) SetPageOffset(v int32)

SetPageOffset gets a reference to the given int32 and assigns it to the PageOffset field.

func (*ListDagRunsForm) SetStartDateGte

func (o *ListDagRunsForm) SetStartDateGte(v time.Time)

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

func (*ListDagRunsForm) SetStartDateLte

func (o *ListDagRunsForm) SetStartDateLte(v time.Time)

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

func (*ListDagRunsForm) SetStates

func (o *ListDagRunsForm) SetStates(v []string)

SetStates gets a reference to the given []string and assigns it to the States field.

type ListTaskInstanceForm

type ListTaskInstanceForm struct {
	// Return objects with specific DAG IDs. The value can be repeated to retrieve multiple matching values (OR condition).
	DagIds *[]string `json:"dag_ids,omitempty"`
	// Returns objects greater or equal to the specified date.  This can be combined with execution_date_lte parameter to receive only the selected period.
	ExecutionDateGte *time.Time `json:"execution_date_gte,omitempty"`
	// Returns objects less than or equal to the specified date.  This can be combined with execution_date_gte parameter to receive only the selected period.
	ExecutionDateLte *time.Time `json:"execution_date_lte,omitempty"`
	// Returns objects greater or equal the specified date.  This can be combined with start_date_lte parameter to receive only the selected period.
	StartDateGte *time.Time `json:"start_date_gte,omitempty"`
	// Returns objects less or equal the specified date.  This can be combined with start_date_gte parameter to receive only the selected period.
	StartDateLte *time.Time `json:"start_date_lte,omitempty"`
	// Returns objects greater or equal the specified date.  This can be combined with start_date_lte parameter to receive only the selected period.
	EndDateGte *time.Time `json:"end_date_gte,omitempty"`
	// Returns objects less than or equal to the specified date.  This can be combined with start_date_gte parameter to receive only the selected period.
	EndDateLte *time.Time `json:"end_date_lte,omitempty"`
	// Returns objects greater than or equal to the specified values.  This can be combined with duration_lte parameter to receive only the selected period.
	DurationGte *float32 `json:"duration_gte,omitempty"`
	// Returns objects less than or equal to the specified values.  This can be combined with duration_gte parameter to receive only the selected range.
	DurationLte *float32 `json:"duration_lte,omitempty"`
	// The value can be repeated to retrieve multiple matching values (OR condition).
	State *[]TaskState `json:"state,omitempty"`
	// The value can be repeated to retrieve multiple matching values (OR condition).
	Pool *[]string `json:"pool,omitempty"`
	// The value can be repeated to retrieve multiple matching values (OR condition).
	Queue *[]string `json:"queue,omitempty"`
}

ListTaskInstanceForm struct for ListTaskInstanceForm

func NewListTaskInstanceForm

func NewListTaskInstanceForm() *ListTaskInstanceForm

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

func NewListTaskInstanceFormWithDefaults

func NewListTaskInstanceFormWithDefaults() *ListTaskInstanceForm

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

func (*ListTaskInstanceForm) GetDagIds

func (o *ListTaskInstanceForm) GetDagIds() []string

GetDagIds returns the DagIds field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetDagIdsOk

func (o *ListTaskInstanceForm) GetDagIdsOk() (*[]string, bool)

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

func (*ListTaskInstanceForm) GetDurationGte

func (o *ListTaskInstanceForm) GetDurationGte() float32

GetDurationGte returns the DurationGte field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetDurationGteOk

func (o *ListTaskInstanceForm) GetDurationGteOk() (*float32, bool)

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

func (*ListTaskInstanceForm) GetDurationLte

func (o *ListTaskInstanceForm) GetDurationLte() float32

GetDurationLte returns the DurationLte field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetDurationLteOk

func (o *ListTaskInstanceForm) GetDurationLteOk() (*float32, bool)

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

func (*ListTaskInstanceForm) GetEndDateGte

func (o *ListTaskInstanceForm) GetEndDateGte() time.Time

GetEndDateGte returns the EndDateGte field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetEndDateGteOk

func (o *ListTaskInstanceForm) GetEndDateGteOk() (*time.Time, bool)

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

func (*ListTaskInstanceForm) GetEndDateLte

func (o *ListTaskInstanceForm) GetEndDateLte() time.Time

GetEndDateLte returns the EndDateLte field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetEndDateLteOk

func (o *ListTaskInstanceForm) GetEndDateLteOk() (*time.Time, bool)

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

func (*ListTaskInstanceForm) GetExecutionDateGte

func (o *ListTaskInstanceForm) GetExecutionDateGte() time.Time

GetExecutionDateGte returns the ExecutionDateGte field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetExecutionDateGteOk

func (o *ListTaskInstanceForm) GetExecutionDateGteOk() (*time.Time, bool)

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

func (*ListTaskInstanceForm) GetExecutionDateLte

func (o *ListTaskInstanceForm) GetExecutionDateLte() time.Time

GetExecutionDateLte returns the ExecutionDateLte field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetExecutionDateLteOk

func (o *ListTaskInstanceForm) GetExecutionDateLteOk() (*time.Time, bool)

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

func (*ListTaskInstanceForm) GetPool

func (o *ListTaskInstanceForm) GetPool() []string

GetPool returns the Pool field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetPoolOk

func (o *ListTaskInstanceForm) GetPoolOk() (*[]string, bool)

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

func (*ListTaskInstanceForm) GetQueue

func (o *ListTaskInstanceForm) GetQueue() []string

GetQueue returns the Queue field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetQueueOk

func (o *ListTaskInstanceForm) GetQueueOk() (*[]string, bool)

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

func (*ListTaskInstanceForm) GetStartDateGte

func (o *ListTaskInstanceForm) GetStartDateGte() time.Time

GetStartDateGte returns the StartDateGte field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetStartDateGteOk

func (o *ListTaskInstanceForm) GetStartDateGteOk() (*time.Time, bool)

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

func (*ListTaskInstanceForm) GetStartDateLte

func (o *ListTaskInstanceForm) GetStartDateLte() time.Time

GetStartDateLte returns the StartDateLte field value if set, zero value otherwise.

func (*ListTaskInstanceForm) GetStartDateLteOk

func (o *ListTaskInstanceForm) GetStartDateLteOk() (*time.Time, bool)

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

func (*ListTaskInstanceForm) GetState

func (o *ListTaskInstanceForm) GetState() []TaskState

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

func (*ListTaskInstanceForm) GetStateOk

func (o *ListTaskInstanceForm) GetStateOk() (*[]TaskState, 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 (*ListTaskInstanceForm) HasDagIds

func (o *ListTaskInstanceForm) HasDagIds() bool

HasDagIds returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasDurationGte

func (o *ListTaskInstanceForm) HasDurationGte() bool

HasDurationGte returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasDurationLte

func (o *ListTaskInstanceForm) HasDurationLte() bool

HasDurationLte returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasEndDateGte

func (o *ListTaskInstanceForm) HasEndDateGte() bool

HasEndDateGte returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasEndDateLte

func (o *ListTaskInstanceForm) HasEndDateLte() bool

HasEndDateLte returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasExecutionDateGte

func (o *ListTaskInstanceForm) HasExecutionDateGte() bool

HasExecutionDateGte returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasExecutionDateLte

func (o *ListTaskInstanceForm) HasExecutionDateLte() bool

HasExecutionDateLte returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasPool

func (o *ListTaskInstanceForm) HasPool() bool

HasPool returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasQueue

func (o *ListTaskInstanceForm) HasQueue() bool

HasQueue returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasStartDateGte

func (o *ListTaskInstanceForm) HasStartDateGte() bool

HasStartDateGte returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasStartDateLte

func (o *ListTaskInstanceForm) HasStartDateLte() bool

HasStartDateLte returns a boolean if a field has been set.

func (*ListTaskInstanceForm) HasState

func (o *ListTaskInstanceForm) HasState() bool

HasState returns a boolean if a field has been set.

func (ListTaskInstanceForm) MarshalJSON

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

func (*ListTaskInstanceForm) SetDagIds

func (o *ListTaskInstanceForm) SetDagIds(v []string)

SetDagIds gets a reference to the given []string and assigns it to the DagIds field.

func (*ListTaskInstanceForm) SetDurationGte

func (o *ListTaskInstanceForm) SetDurationGte(v float32)

SetDurationGte gets a reference to the given float32 and assigns it to the DurationGte field.

func (*ListTaskInstanceForm) SetDurationLte

func (o *ListTaskInstanceForm) SetDurationLte(v float32)

SetDurationLte gets a reference to the given float32 and assigns it to the DurationLte field.

func (*ListTaskInstanceForm) SetEndDateGte

func (o *ListTaskInstanceForm) SetEndDateGte(v time.Time)

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

func (*ListTaskInstanceForm) SetEndDateLte

func (o *ListTaskInstanceForm) SetEndDateLte(v time.Time)

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

func (*ListTaskInstanceForm) SetExecutionDateGte

func (o *ListTaskInstanceForm) SetExecutionDateGte(v time.Time)

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

func (*ListTaskInstanceForm) SetExecutionDateLte

func (o *ListTaskInstanceForm) SetExecutionDateLte(v time.Time)

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

func (*ListTaskInstanceForm) SetPool

func (o *ListTaskInstanceForm) SetPool(v []string)

SetPool gets a reference to the given []string and assigns it to the Pool field.

func (*ListTaskInstanceForm) SetQueue

func (o *ListTaskInstanceForm) SetQueue(v []string)

SetQueue gets a reference to the given []string and assigns it to the Queue field.

func (*ListTaskInstanceForm) SetStartDateGte

func (o *ListTaskInstanceForm) SetStartDateGte(v time.Time)

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

func (*ListTaskInstanceForm) SetStartDateLte

func (o *ListTaskInstanceForm) SetStartDateLte(v time.Time)

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

func (*ListTaskInstanceForm) SetState

func (o *ListTaskInstanceForm) SetState(v []TaskState)

SetState gets a reference to the given []TaskState and assigns it to the State field.

type MetadatabaseStatus

type MetadatabaseStatus struct {
	Status *HealthStatus `json:"status,omitempty"`
}

MetadatabaseStatus The status of the metadatabase.

func NewMetadatabaseStatus

func NewMetadatabaseStatus() *MetadatabaseStatus

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

func NewMetadatabaseStatusWithDefaults

func NewMetadatabaseStatusWithDefaults() *MetadatabaseStatus

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

func (*MetadatabaseStatus) GetStatus

func (o *MetadatabaseStatus) GetStatus() HealthStatus

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

func (*MetadatabaseStatus) GetStatusOk

func (o *MetadatabaseStatus) GetStatusOk() (*HealthStatus, 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 (*MetadatabaseStatus) HasStatus

func (o *MetadatabaseStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (MetadatabaseStatus) MarshalJSON

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

func (*MetadatabaseStatus) SetStatus

func (o *MetadatabaseStatus) SetStatus(v HealthStatus)

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

type MonitoringApiService

type MonitoringApiService service

MonitoringApiService MonitoringApi service

func (*MonitoringApiService) GetHealth

GetHealth Get instance status

Get the status of Airflow's metadatabase and scheduler. It includes info about metadatabase and last heartbeat of scheduler.

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

func (*MonitoringApiService) GetHealthExecute

Execute executes the request

@return HealthInfo

func (*MonitoringApiService) GetVersion

GetVersion Get version information

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

func (*MonitoringApiService) GetVersionExecute

Execute executes the request

@return VersionInfo

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 NullableActionCollection

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

func NewNullableActionCollection

func NewNullableActionCollection(val *ActionCollection) *NullableActionCollection

func (NullableActionCollection) Get

func (NullableActionCollection) IsSet

func (v NullableActionCollection) IsSet() bool

func (NullableActionCollection) MarshalJSON

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

func (*NullableActionCollection) Set

func (*NullableActionCollection) UnmarshalJSON

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

func (*NullableActionCollection) Unset

func (v *NullableActionCollection) Unset()

type NullableActionCollectionAllOf

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

func (NullableActionCollectionAllOf) Get

func (NullableActionCollectionAllOf) IsSet

func (NullableActionCollectionAllOf) MarshalJSON

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

func (*NullableActionCollectionAllOf) Set

func (*NullableActionCollectionAllOf) UnmarshalJSON

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

func (*NullableActionCollectionAllOf) Unset

func (v *NullableActionCollectionAllOf) Unset()

type NullableActionResource

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

func NewNullableActionResource

func NewNullableActionResource(val *ActionResource) *NullableActionResource

func (NullableActionResource) Get

func (NullableActionResource) IsSet

func (v NullableActionResource) IsSet() bool

func (NullableActionResource) MarshalJSON

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

func (*NullableActionResource) Set

func (*NullableActionResource) UnmarshalJSON

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

func (*NullableActionResource) Unset

func (v *NullableActionResource) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableClassReference

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

func NewNullableClassReference

func NewNullableClassReference(val *ClassReference) *NullableClassReference

func (NullableClassReference) Get

func (NullableClassReference) IsSet

func (v NullableClassReference) IsSet() bool

func (NullableClassReference) MarshalJSON

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

func (*NullableClassReference) Set

func (*NullableClassReference) UnmarshalJSON

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

func (*NullableClassReference) Unset

func (v *NullableClassReference) Unset()

type NullableClearTaskInstance

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

func NewNullableClearTaskInstance

func NewNullableClearTaskInstance(val *ClearTaskInstance) *NullableClearTaskInstance

func (NullableClearTaskInstance) Get

func (NullableClearTaskInstance) IsSet

func (v NullableClearTaskInstance) IsSet() bool

func (NullableClearTaskInstance) MarshalJSON

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

func (*NullableClearTaskInstance) Set

func (*NullableClearTaskInstance) UnmarshalJSON

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

func (*NullableClearTaskInstance) Unset

func (v *NullableClearTaskInstance) Unset()

type NullableCollectionInfo

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

func NewNullableCollectionInfo

func NewNullableCollectionInfo(val *CollectionInfo) *NullableCollectionInfo

func (NullableCollectionInfo) Get

func (NullableCollectionInfo) IsSet

func (v NullableCollectionInfo) IsSet() bool

func (NullableCollectionInfo) MarshalJSON

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

func (*NullableCollectionInfo) Set

func (*NullableCollectionInfo) UnmarshalJSON

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

func (*NullableCollectionInfo) Unset

func (v *NullableCollectionInfo) Unset()

type NullableConfig

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

func NewNullableConfig

func NewNullableConfig(val *Config) *NullableConfig

func (NullableConfig) Get

func (v NullableConfig) Get() *Config

func (NullableConfig) IsSet

func (v NullableConfig) IsSet() bool

func (NullableConfig) MarshalJSON

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

func (*NullableConfig) Set

func (v *NullableConfig) Set(val *Config)

func (*NullableConfig) UnmarshalJSON

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

func (*NullableConfig) Unset

func (v *NullableConfig) Unset()

type NullableConfigOption

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

func NewNullableConfigOption

func NewNullableConfigOption(val *ConfigOption) *NullableConfigOption

func (NullableConfigOption) Get

func (NullableConfigOption) IsSet

func (v NullableConfigOption) IsSet() bool

func (NullableConfigOption) MarshalJSON

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

func (*NullableConfigOption) Set

func (v *NullableConfigOption) Set(val *ConfigOption)

func (*NullableConfigOption) UnmarshalJSON

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

func (*NullableConfigOption) Unset

func (v *NullableConfigOption) Unset()

type NullableConfigSection

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

func NewNullableConfigSection

func NewNullableConfigSection(val *ConfigSection) *NullableConfigSection

func (NullableConfigSection) Get

func (NullableConfigSection) IsSet

func (v NullableConfigSection) IsSet() bool

func (NullableConfigSection) MarshalJSON

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

func (*NullableConfigSection) Set

func (v *NullableConfigSection) Set(val *ConfigSection)

func (*NullableConfigSection) UnmarshalJSON

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

func (*NullableConfigSection) Unset

func (v *NullableConfigSection) Unset()

type NullableConnection

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

func NewNullableConnection

func NewNullableConnection(val *Connection) *NullableConnection

func (NullableConnection) Get

func (v NullableConnection) Get() *Connection

func (NullableConnection) IsSet

func (v NullableConnection) IsSet() bool

func (NullableConnection) MarshalJSON

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

func (*NullableConnection) Set

func (v *NullableConnection) Set(val *Connection)

func (*NullableConnection) UnmarshalJSON

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

func (*NullableConnection) Unset

func (v *NullableConnection) Unset()

type NullableConnectionAllOf

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

func NewNullableConnectionAllOf

func NewNullableConnectionAllOf(val *ConnectionAllOf) *NullableConnectionAllOf

func (NullableConnectionAllOf) Get

func (NullableConnectionAllOf) IsSet

func (v NullableConnectionAllOf) IsSet() bool

func (NullableConnectionAllOf) MarshalJSON

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

func (*NullableConnectionAllOf) Set

func (*NullableConnectionAllOf) UnmarshalJSON

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

func (*NullableConnectionAllOf) Unset

func (v *NullableConnectionAllOf) Unset()

type NullableConnectionCollection

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

func NewNullableConnectionCollection

func NewNullableConnectionCollection(val *ConnectionCollection) *NullableConnectionCollection

func (NullableConnectionCollection) Get

func (NullableConnectionCollection) IsSet

func (NullableConnectionCollection) MarshalJSON

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

func (*NullableConnectionCollection) Set

func (*NullableConnectionCollection) UnmarshalJSON

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

func (*NullableConnectionCollection) Unset

func (v *NullableConnectionCollection) Unset()

type NullableConnectionCollectionAllOf

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

func (NullableConnectionCollectionAllOf) Get

func (NullableConnectionCollectionAllOf) IsSet

func (NullableConnectionCollectionAllOf) MarshalJSON

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

func (*NullableConnectionCollectionAllOf) Set

func (*NullableConnectionCollectionAllOf) UnmarshalJSON

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

func (*NullableConnectionCollectionAllOf) Unset

type NullableConnectionCollectionItem

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

func (NullableConnectionCollectionItem) Get

func (NullableConnectionCollectionItem) IsSet

func (NullableConnectionCollectionItem) MarshalJSON

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

func (*NullableConnectionCollectionItem) Set

func (*NullableConnectionCollectionItem) UnmarshalJSON

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

func (*NullableConnectionCollectionItem) Unset

type NullableConnectionTest

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

func NewNullableConnectionTest

func NewNullableConnectionTest(val *ConnectionTest) *NullableConnectionTest

func (NullableConnectionTest) Get

func (NullableConnectionTest) IsSet

func (v NullableConnectionTest) IsSet() bool

func (NullableConnectionTest) MarshalJSON

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

func (*NullableConnectionTest) Set

func (*NullableConnectionTest) UnmarshalJSON

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

func (*NullableConnectionTest) Unset

func (v *NullableConnectionTest) Unset()

type NullableCronExpression

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

func NewNullableCronExpression

func NewNullableCronExpression(val *CronExpression) *NullableCronExpression

func (NullableCronExpression) Get

func (NullableCronExpression) IsSet

func (v NullableCronExpression) IsSet() bool

func (NullableCronExpression) MarshalJSON

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

func (*NullableCronExpression) Set

func (*NullableCronExpression) UnmarshalJSON

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

func (*NullableCronExpression) Unset

func (v *NullableCronExpression) Unset()

type NullableDAG

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

func NewNullableDAG

func NewNullableDAG(val *DAG) *NullableDAG

func (NullableDAG) Get

func (v NullableDAG) Get() *DAG

func (NullableDAG) IsSet

func (v NullableDAG) IsSet() bool

func (NullableDAG) MarshalJSON

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

func (*NullableDAG) Set

func (v *NullableDAG) Set(val *DAG)

func (*NullableDAG) UnmarshalJSON

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

func (*NullableDAG) Unset

func (v *NullableDAG) Unset()

type NullableDAGCollection

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

func NewNullableDAGCollection

func NewNullableDAGCollection(val *DAGCollection) *NullableDAGCollection

func (NullableDAGCollection) Get

func (NullableDAGCollection) IsSet

func (v NullableDAGCollection) IsSet() bool

func (NullableDAGCollection) MarshalJSON

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

func (*NullableDAGCollection) Set

func (v *NullableDAGCollection) Set(val *DAGCollection)

func (*NullableDAGCollection) UnmarshalJSON

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

func (*NullableDAGCollection) Unset

func (v *NullableDAGCollection) Unset()

type NullableDAGCollectionAllOf

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

func NewNullableDAGCollectionAllOf

func NewNullableDAGCollectionAllOf(val *DAGCollectionAllOf) *NullableDAGCollectionAllOf

func (NullableDAGCollectionAllOf) Get

func (NullableDAGCollectionAllOf) IsSet

func (v NullableDAGCollectionAllOf) IsSet() bool

func (NullableDAGCollectionAllOf) MarshalJSON

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

func (*NullableDAGCollectionAllOf) Set

func (*NullableDAGCollectionAllOf) UnmarshalJSON

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

func (*NullableDAGCollectionAllOf) Unset

func (v *NullableDAGCollectionAllOf) Unset()

type NullableDAGDetail

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

func NewNullableDAGDetail

func NewNullableDAGDetail(val *DAGDetail) *NullableDAGDetail

func (NullableDAGDetail) Get

func (v NullableDAGDetail) Get() *DAGDetail

func (NullableDAGDetail) IsSet

func (v NullableDAGDetail) IsSet() bool

func (NullableDAGDetail) MarshalJSON

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

func (*NullableDAGDetail) Set

func (v *NullableDAGDetail) Set(val *DAGDetail)

func (*NullableDAGDetail) UnmarshalJSON

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

func (*NullableDAGDetail) Unset

func (v *NullableDAGDetail) Unset()

type NullableDAGDetailAllOf

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

func NewNullableDAGDetailAllOf

func NewNullableDAGDetailAllOf(val *DAGDetailAllOf) *NullableDAGDetailAllOf

func (NullableDAGDetailAllOf) Get

func (NullableDAGDetailAllOf) IsSet

func (v NullableDAGDetailAllOf) IsSet() bool

func (NullableDAGDetailAllOf) MarshalJSON

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

func (*NullableDAGDetailAllOf) Set

func (*NullableDAGDetailAllOf) UnmarshalJSON

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

func (*NullableDAGDetailAllOf) Unset

func (v *NullableDAGDetailAllOf) Unset()

type NullableDAGRun

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

func NewNullableDAGRun

func NewNullableDAGRun(val *DAGRun) *NullableDAGRun

func (NullableDAGRun) Get

func (v NullableDAGRun) Get() *DAGRun

func (NullableDAGRun) IsSet

func (v NullableDAGRun) IsSet() bool

func (NullableDAGRun) MarshalJSON

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

func (*NullableDAGRun) Set

func (v *NullableDAGRun) Set(val *DAGRun)

func (*NullableDAGRun) UnmarshalJSON

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

func (*NullableDAGRun) Unset

func (v *NullableDAGRun) Unset()

type NullableDAGRunCollection

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

func NewNullableDAGRunCollection

func NewNullableDAGRunCollection(val *DAGRunCollection) *NullableDAGRunCollection

func (NullableDAGRunCollection) Get

func (NullableDAGRunCollection) IsSet

func (v NullableDAGRunCollection) IsSet() bool

func (NullableDAGRunCollection) MarshalJSON

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

func (*NullableDAGRunCollection) Set

func (*NullableDAGRunCollection) UnmarshalJSON

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

func (*NullableDAGRunCollection) Unset

func (v *NullableDAGRunCollection) Unset()

type NullableDAGRunCollectionAllOf

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

func (NullableDAGRunCollectionAllOf) Get

func (NullableDAGRunCollectionAllOf) IsSet

func (NullableDAGRunCollectionAllOf) MarshalJSON

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

func (*NullableDAGRunCollectionAllOf) Set

func (*NullableDAGRunCollectionAllOf) UnmarshalJSON

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

func (*NullableDAGRunCollectionAllOf) Unset

func (v *NullableDAGRunCollectionAllOf) Unset()

type NullableDagState

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

func NewNullableDagState

func NewNullableDagState(val *DagState) *NullableDagState

func (NullableDagState) Get

func (v NullableDagState) Get() *DagState

func (NullableDagState) IsSet

func (v NullableDagState) IsSet() bool

func (NullableDagState) MarshalJSON

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

func (*NullableDagState) Set

func (v *NullableDagState) Set(val *DagState)

func (*NullableDagState) UnmarshalJSON

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

func (*NullableDagState) Unset

func (v *NullableDagState) 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 NullableEventLog

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

func NewNullableEventLog

func NewNullableEventLog(val *EventLog) *NullableEventLog

func (NullableEventLog) Get

func (v NullableEventLog) Get() *EventLog

func (NullableEventLog) IsSet

func (v NullableEventLog) IsSet() bool

func (NullableEventLog) MarshalJSON

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

func (*NullableEventLog) Set

func (v *NullableEventLog) Set(val *EventLog)

func (*NullableEventLog) UnmarshalJSON

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

func (*NullableEventLog) Unset

func (v *NullableEventLog) Unset()

type NullableEventLogCollection

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

func NewNullableEventLogCollection

func NewNullableEventLogCollection(val *EventLogCollection) *NullableEventLogCollection

func (NullableEventLogCollection) Get

func (NullableEventLogCollection) IsSet

func (v NullableEventLogCollection) IsSet() bool

func (NullableEventLogCollection) MarshalJSON

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

func (*NullableEventLogCollection) Set

func (*NullableEventLogCollection) UnmarshalJSON

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

func (*NullableEventLogCollection) Unset

func (v *NullableEventLogCollection) Unset()

type NullableEventLogCollectionAllOf

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

func (NullableEventLogCollectionAllOf) Get

func (NullableEventLogCollectionAllOf) IsSet

func (NullableEventLogCollectionAllOf) MarshalJSON

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

func (*NullableEventLogCollectionAllOf) Set

func (*NullableEventLogCollectionAllOf) UnmarshalJSON

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

func (*NullableEventLogCollectionAllOf) Unset

type NullableExtraLink struct {
	// contains filtered or unexported fields
}
func NewNullableExtraLink(val *ExtraLink) *NullableExtraLink

func (NullableExtraLink) Get

func (v NullableExtraLink) Get() *ExtraLink

func (NullableExtraLink) IsSet

func (v NullableExtraLink) IsSet() bool

func (NullableExtraLink) MarshalJSON

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

func (*NullableExtraLink) Set

func (v *NullableExtraLink) Set(val *ExtraLink)

func (*NullableExtraLink) UnmarshalJSON

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

func (*NullableExtraLink) Unset

func (v *NullableExtraLink) Unset()

type NullableExtraLinkCollection

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

func NewNullableExtraLinkCollection

func NewNullableExtraLinkCollection(val *ExtraLinkCollection) *NullableExtraLinkCollection

func (NullableExtraLinkCollection) Get

func (NullableExtraLinkCollection) IsSet

func (NullableExtraLinkCollection) MarshalJSON

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

func (*NullableExtraLinkCollection) Set

func (*NullableExtraLinkCollection) UnmarshalJSON

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

func (*NullableExtraLinkCollection) Unset

func (v *NullableExtraLinkCollection) 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 NullableHealthInfo

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

func NewNullableHealthInfo

func NewNullableHealthInfo(val *HealthInfo) *NullableHealthInfo

func (NullableHealthInfo) Get

func (v NullableHealthInfo) Get() *HealthInfo

func (NullableHealthInfo) IsSet

func (v NullableHealthInfo) IsSet() bool

func (NullableHealthInfo) MarshalJSON

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

func (*NullableHealthInfo) Set

func (v *NullableHealthInfo) Set(val *HealthInfo)

func (*NullableHealthInfo) UnmarshalJSON

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

func (*NullableHealthInfo) Unset

func (v *NullableHealthInfo) Unset()

type NullableHealthStatus

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

func NewNullableHealthStatus

func NewNullableHealthStatus(val *HealthStatus) *NullableHealthStatus

func (NullableHealthStatus) Get

func (NullableHealthStatus) IsSet

func (v NullableHealthStatus) IsSet() bool

func (NullableHealthStatus) MarshalJSON

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

func (*NullableHealthStatus) Set

func (v *NullableHealthStatus) Set(val *HealthStatus)

func (*NullableHealthStatus) UnmarshalJSON

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

func (*NullableHealthStatus) Unset

func (v *NullableHealthStatus) Unset()

type NullableImportError

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

func NewNullableImportError

func NewNullableImportError(val *ImportError) *NullableImportError

func (NullableImportError) Get

func (NullableImportError) IsSet

func (v NullableImportError) IsSet() bool

func (NullableImportError) MarshalJSON

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

func (*NullableImportError) Set

func (v *NullableImportError) Set(val *ImportError)

func (*NullableImportError) UnmarshalJSON

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

func (*NullableImportError) Unset

func (v *NullableImportError) Unset()

type NullableImportErrorCollection

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

func (NullableImportErrorCollection) Get

func (NullableImportErrorCollection) IsSet

func (NullableImportErrorCollection) MarshalJSON

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

func (*NullableImportErrorCollection) Set

func (*NullableImportErrorCollection) UnmarshalJSON

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

func (*NullableImportErrorCollection) Unset

func (v *NullableImportErrorCollection) Unset()

type NullableImportErrorCollectionAllOf

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

func (NullableImportErrorCollectionAllOf) Get

func (NullableImportErrorCollectionAllOf) IsSet

func (NullableImportErrorCollectionAllOf) MarshalJSON

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

func (*NullableImportErrorCollectionAllOf) Set

func (*NullableImportErrorCollectionAllOf) UnmarshalJSON

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

func (*NullableImportErrorCollectionAllOf) 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

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

func NewNullableInlineResponse2001

func NewNullableInlineResponse2001(val *InlineResponse2001) *NullableInlineResponse2001

func (NullableInlineResponse2001) Get

func (NullableInlineResponse2001) IsSet

func (v NullableInlineResponse2001) IsSet() bool

func (NullableInlineResponse2001) MarshalJSON

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

func (*NullableInlineResponse2001) Set

func (*NullableInlineResponse2001) UnmarshalJSON

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

func (*NullableInlineResponse2001) Unset

func (v *NullableInlineResponse2001) 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 NullableListDagRunsForm

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

func NewNullableListDagRunsForm

func NewNullableListDagRunsForm(val *ListDagRunsForm) *NullableListDagRunsForm

func (NullableListDagRunsForm) Get

func (NullableListDagRunsForm) IsSet

func (v NullableListDagRunsForm) IsSet() bool

func (NullableListDagRunsForm) MarshalJSON

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

func (*NullableListDagRunsForm) Set

func (*NullableListDagRunsForm) UnmarshalJSON

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

func (*NullableListDagRunsForm) Unset

func (v *NullableListDagRunsForm) Unset()

type NullableListTaskInstanceForm

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

func NewNullableListTaskInstanceForm

func NewNullableListTaskInstanceForm(val *ListTaskInstanceForm) *NullableListTaskInstanceForm

func (NullableListTaskInstanceForm) Get

func (NullableListTaskInstanceForm) IsSet

func (NullableListTaskInstanceForm) MarshalJSON

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

func (*NullableListTaskInstanceForm) Set

func (*NullableListTaskInstanceForm) UnmarshalJSON

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

func (*NullableListTaskInstanceForm) Unset

func (v *NullableListTaskInstanceForm) Unset()

type NullableMetadatabaseStatus

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

func NewNullableMetadatabaseStatus

func NewNullableMetadatabaseStatus(val *MetadatabaseStatus) *NullableMetadatabaseStatus

func (NullableMetadatabaseStatus) Get

func (NullableMetadatabaseStatus) IsSet

func (v NullableMetadatabaseStatus) IsSet() bool

func (NullableMetadatabaseStatus) MarshalJSON

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

func (*NullableMetadatabaseStatus) Set

func (*NullableMetadatabaseStatus) UnmarshalJSON

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

func (*NullableMetadatabaseStatus) Unset

func (v *NullableMetadatabaseStatus) Unset()

type NullablePluginCollection

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

func NewNullablePluginCollection

func NewNullablePluginCollection(val *PluginCollection) *NullablePluginCollection

func (NullablePluginCollection) Get

func (NullablePluginCollection) IsSet

func (v NullablePluginCollection) IsSet() bool

func (NullablePluginCollection) MarshalJSON

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

func (*NullablePluginCollection) Set

func (*NullablePluginCollection) UnmarshalJSON

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

func (*NullablePluginCollection) Unset

func (v *NullablePluginCollection) Unset()

type NullablePluginCollectionAllOf

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

func (NullablePluginCollectionAllOf) Get

func (NullablePluginCollectionAllOf) IsSet

func (NullablePluginCollectionAllOf) MarshalJSON

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

func (*NullablePluginCollectionAllOf) Set

func (*NullablePluginCollectionAllOf) UnmarshalJSON

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

func (*NullablePluginCollectionAllOf) Unset

func (v *NullablePluginCollectionAllOf) Unset()

type NullablePluginCollectionItem

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

func NewNullablePluginCollectionItem

func NewNullablePluginCollectionItem(val *PluginCollectionItem) *NullablePluginCollectionItem

func (NullablePluginCollectionItem) Get

func (NullablePluginCollectionItem) IsSet

func (NullablePluginCollectionItem) MarshalJSON

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

func (*NullablePluginCollectionItem) Set

func (*NullablePluginCollectionItem) UnmarshalJSON

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

func (*NullablePluginCollectionItem) Unset

func (v *NullablePluginCollectionItem) Unset()

type NullablePool

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

func NewNullablePool

func NewNullablePool(val *Pool) *NullablePool

func (NullablePool) Get

func (v NullablePool) Get() *Pool

func (NullablePool) IsSet

func (v NullablePool) IsSet() bool

func (NullablePool) MarshalJSON

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

func (*NullablePool) Set

func (v *NullablePool) Set(val *Pool)

func (*NullablePool) UnmarshalJSON

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

func (*NullablePool) Unset

func (v *NullablePool) Unset()

type NullablePoolCollection

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

func NewNullablePoolCollection

func NewNullablePoolCollection(val *PoolCollection) *NullablePoolCollection

func (NullablePoolCollection) Get

func (NullablePoolCollection) IsSet

func (v NullablePoolCollection) IsSet() bool

func (NullablePoolCollection) MarshalJSON

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

func (*NullablePoolCollection) Set

func (*NullablePoolCollection) UnmarshalJSON

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

func (*NullablePoolCollection) Unset

func (v *NullablePoolCollection) Unset()

type NullablePoolCollectionAllOf

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

func NewNullablePoolCollectionAllOf

func NewNullablePoolCollectionAllOf(val *PoolCollectionAllOf) *NullablePoolCollectionAllOf

func (NullablePoolCollectionAllOf) Get

func (NullablePoolCollectionAllOf) IsSet

func (NullablePoolCollectionAllOf) MarshalJSON

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

func (*NullablePoolCollectionAllOf) Set

func (*NullablePoolCollectionAllOf) UnmarshalJSON

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

func (*NullablePoolCollectionAllOf) Unset

func (v *NullablePoolCollectionAllOf) Unset()

type NullableProvider

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

func NewNullableProvider

func NewNullableProvider(val *Provider) *NullableProvider

func (NullableProvider) Get

func (v NullableProvider) Get() *Provider

func (NullableProvider) IsSet

func (v NullableProvider) IsSet() bool

func (NullableProvider) MarshalJSON

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

func (*NullableProvider) Set

func (v *NullableProvider) Set(val *Provider)

func (*NullableProvider) UnmarshalJSON

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

func (*NullableProvider) Unset

func (v *NullableProvider) Unset()

type NullableProviderCollection

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

func NewNullableProviderCollection

func NewNullableProviderCollection(val *ProviderCollection) *NullableProviderCollection

func (NullableProviderCollection) Get

func (NullableProviderCollection) IsSet

func (v NullableProviderCollection) IsSet() bool

func (NullableProviderCollection) MarshalJSON

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

func (*NullableProviderCollection) Set

func (*NullableProviderCollection) UnmarshalJSON

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

func (*NullableProviderCollection) Unset

func (v *NullableProviderCollection) Unset()

type NullableRelativeDelta

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

func NewNullableRelativeDelta

func NewNullableRelativeDelta(val *RelativeDelta) *NullableRelativeDelta

func (NullableRelativeDelta) Get

func (NullableRelativeDelta) IsSet

func (v NullableRelativeDelta) IsSet() bool

func (NullableRelativeDelta) MarshalJSON

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

func (*NullableRelativeDelta) Set

func (v *NullableRelativeDelta) Set(val *RelativeDelta)

func (*NullableRelativeDelta) UnmarshalJSON

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

func (*NullableRelativeDelta) Unset

func (v *NullableRelativeDelta) Unset()

type NullableResource

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

func NewNullableResource

func NewNullableResource(val *Resource) *NullableResource

func (NullableResource) Get

func (v NullableResource) Get() *Resource

func (NullableResource) IsSet

func (v NullableResource) IsSet() bool

func (NullableResource) MarshalJSON

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

func (*NullableResource) Set

func (v *NullableResource) Set(val *Resource)

func (*NullableResource) UnmarshalJSON

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

func (*NullableResource) Unset

func (v *NullableResource) 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 NullableRoleCollection

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

func NewNullableRoleCollection

func NewNullableRoleCollection(val *RoleCollection) *NullableRoleCollection

func (NullableRoleCollection) Get

func (NullableRoleCollection) IsSet

func (v NullableRoleCollection) IsSet() bool

func (NullableRoleCollection) MarshalJSON

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

func (*NullableRoleCollection) Set

func (*NullableRoleCollection) UnmarshalJSON

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

func (*NullableRoleCollection) Unset

func (v *NullableRoleCollection) Unset()

type NullableRoleCollectionAllOf

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

func NewNullableRoleCollectionAllOf

func NewNullableRoleCollectionAllOf(val *RoleCollectionAllOf) *NullableRoleCollectionAllOf

func (NullableRoleCollectionAllOf) Get

func (NullableRoleCollectionAllOf) IsSet

func (NullableRoleCollectionAllOf) MarshalJSON

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

func (*NullableRoleCollectionAllOf) Set

func (*NullableRoleCollectionAllOf) UnmarshalJSON

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

func (*NullableRoleCollectionAllOf) Unset

func (v *NullableRoleCollectionAllOf) Unset()

type NullableSLAMiss

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

func NewNullableSLAMiss

func NewNullableSLAMiss(val *SLAMiss) *NullableSLAMiss

func (NullableSLAMiss) Get

func (v NullableSLAMiss) Get() *SLAMiss

func (NullableSLAMiss) IsSet

func (v NullableSLAMiss) IsSet() bool

func (NullableSLAMiss) MarshalJSON

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

func (*NullableSLAMiss) Set

func (v *NullableSLAMiss) Set(val *SLAMiss)

func (*NullableSLAMiss) UnmarshalJSON

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

func (*NullableSLAMiss) Unset

func (v *NullableSLAMiss) Unset()

type NullableScheduleInterval

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

func NewNullableScheduleInterval

func NewNullableScheduleInterval(val *ScheduleInterval) *NullableScheduleInterval

func (NullableScheduleInterval) Get

func (NullableScheduleInterval) IsSet

func (v NullableScheduleInterval) IsSet() bool

func (NullableScheduleInterval) MarshalJSON

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

func (*NullableScheduleInterval) Set

func (*NullableScheduleInterval) UnmarshalJSON

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

func (*NullableScheduleInterval) Unset

func (v *NullableScheduleInterval) Unset()

type NullableSchedulerStatus

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

func NewNullableSchedulerStatus

func NewNullableSchedulerStatus(val *SchedulerStatus) *NullableSchedulerStatus

func (NullableSchedulerStatus) Get

func (NullableSchedulerStatus) IsSet

func (v NullableSchedulerStatus) IsSet() bool

func (NullableSchedulerStatus) MarshalJSON

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

func (*NullableSchedulerStatus) Set

func (*NullableSchedulerStatus) UnmarshalJSON

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

func (*NullableSchedulerStatus) Unset

func (v *NullableSchedulerStatus) 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 NullableTag

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

func NewNullableTag

func NewNullableTag(val *Tag) *NullableTag

func (NullableTag) Get

func (v NullableTag) Get() *Tag

func (NullableTag) IsSet

func (v NullableTag) IsSet() bool

func (NullableTag) MarshalJSON

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

func (*NullableTag) Set

func (v *NullableTag) Set(val *Tag)

func (*NullableTag) UnmarshalJSON

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

func (*NullableTag) Unset

func (v *NullableTag) 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 NullableTaskCollection

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

func NewNullableTaskCollection

func NewNullableTaskCollection(val *TaskCollection) *NullableTaskCollection

func (NullableTaskCollection) Get

func (NullableTaskCollection) IsSet

func (v NullableTaskCollection) IsSet() bool

func (NullableTaskCollection) MarshalJSON

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

func (*NullableTaskCollection) Set

func (*NullableTaskCollection) UnmarshalJSON

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

func (*NullableTaskCollection) Unset

func (v *NullableTaskCollection) Unset()
type NullableTaskExtraLinks struct {
	// contains filtered or unexported fields
}
func NewNullableTaskExtraLinks(val *TaskExtraLinks) *NullableTaskExtraLinks

func (NullableTaskExtraLinks) Get

func (NullableTaskExtraLinks) IsSet

func (v NullableTaskExtraLinks) IsSet() bool

func (NullableTaskExtraLinks) MarshalJSON

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

func (*NullableTaskExtraLinks) Set

func (*NullableTaskExtraLinks) UnmarshalJSON

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

func (*NullableTaskExtraLinks) Unset

func (v *NullableTaskExtraLinks) Unset()

type NullableTaskInstance

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

func NewNullableTaskInstance

func NewNullableTaskInstance(val *TaskInstance) *NullableTaskInstance

func (NullableTaskInstance) Get

func (NullableTaskInstance) IsSet

func (v NullableTaskInstance) IsSet() bool

func (NullableTaskInstance) MarshalJSON

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

func (*NullableTaskInstance) Set

func (v *NullableTaskInstance) Set(val *TaskInstance)

func (*NullableTaskInstance) UnmarshalJSON

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

func (*NullableTaskInstance) Unset

func (v *NullableTaskInstance) Unset()

type NullableTaskInstanceCollection

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

func (NullableTaskInstanceCollection) Get

func (NullableTaskInstanceCollection) IsSet

func (NullableTaskInstanceCollection) MarshalJSON

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

func (*NullableTaskInstanceCollection) Set

func (*NullableTaskInstanceCollection) UnmarshalJSON

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

func (*NullableTaskInstanceCollection) Unset

func (v *NullableTaskInstanceCollection) Unset()

type NullableTaskInstanceCollectionAllOf

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

func (NullableTaskInstanceCollectionAllOf) Get

func (NullableTaskInstanceCollectionAllOf) IsSet

func (NullableTaskInstanceCollectionAllOf) MarshalJSON

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

func (*NullableTaskInstanceCollectionAllOf) Set

func (*NullableTaskInstanceCollectionAllOf) UnmarshalJSON

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

func (*NullableTaskInstanceCollectionAllOf) Unset

type NullableTaskInstanceReference

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

func (NullableTaskInstanceReference) Get

func (NullableTaskInstanceReference) IsSet

func (NullableTaskInstanceReference) MarshalJSON

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

func (*NullableTaskInstanceReference) Set

func (*NullableTaskInstanceReference) UnmarshalJSON

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

func (*NullableTaskInstanceReference) Unset

func (v *NullableTaskInstanceReference) Unset()

type NullableTaskInstanceReferenceCollection

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

func (NullableTaskInstanceReferenceCollection) Get

func (NullableTaskInstanceReferenceCollection) IsSet

func (NullableTaskInstanceReferenceCollection) MarshalJSON

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

func (*NullableTaskInstanceReferenceCollection) Set

func (*NullableTaskInstanceReferenceCollection) UnmarshalJSON

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

func (*NullableTaskInstanceReferenceCollection) Unset

type NullableTaskState

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

func NewNullableTaskState

func NewNullableTaskState(val *TaskState) *NullableTaskState

func (NullableTaskState) Get

func (v NullableTaskState) Get() *TaskState

func (NullableTaskState) IsSet

func (v NullableTaskState) IsSet() bool

func (NullableTaskState) MarshalJSON

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

func (*NullableTaskState) Set

func (v *NullableTaskState) Set(val *TaskState)

func (*NullableTaskState) UnmarshalJSON

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

func (*NullableTaskState) Unset

func (v *NullableTaskState) 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 NullableTimeDelta

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

func NewNullableTimeDelta

func NewNullableTimeDelta(val *TimeDelta) *NullableTimeDelta

func (NullableTimeDelta) Get

func (v NullableTimeDelta) Get() *TimeDelta

func (NullableTimeDelta) IsSet

func (v NullableTimeDelta) IsSet() bool

func (NullableTimeDelta) MarshalJSON

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

func (*NullableTimeDelta) Set

func (v *NullableTimeDelta) Set(val *TimeDelta)

func (*NullableTimeDelta) UnmarshalJSON

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

func (*NullableTimeDelta) Unset

func (v *NullableTimeDelta) Unset()

type NullableTriggerRule

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

func NewNullableTriggerRule

func NewNullableTriggerRule(val *TriggerRule) *NullableTriggerRule

func (NullableTriggerRule) Get

func (NullableTriggerRule) IsSet

func (v NullableTriggerRule) IsSet() bool

func (NullableTriggerRule) MarshalJSON

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

func (*NullableTriggerRule) Set

func (v *NullableTriggerRule) Set(val *TriggerRule)

func (*NullableTriggerRule) UnmarshalJSON

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

func (*NullableTriggerRule) Unset

func (v *NullableTriggerRule) Unset()

type NullableUpdateDagRunState

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

func NewNullableUpdateDagRunState

func NewNullableUpdateDagRunState(val *UpdateDagRunState) *NullableUpdateDagRunState

func (NullableUpdateDagRunState) Get

func (NullableUpdateDagRunState) IsSet

func (v NullableUpdateDagRunState) IsSet() bool

func (NullableUpdateDagRunState) MarshalJSON

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

func (*NullableUpdateDagRunState) Set

func (*NullableUpdateDagRunState) UnmarshalJSON

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

func (*NullableUpdateDagRunState) Unset

func (v *NullableUpdateDagRunState) Unset()

type NullableUpdateTaskInstancesState

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

func (NullableUpdateTaskInstancesState) Get

func (NullableUpdateTaskInstancesState) IsSet

func (NullableUpdateTaskInstancesState) MarshalJSON

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

func (*NullableUpdateTaskInstancesState) Set

func (*NullableUpdateTaskInstancesState) UnmarshalJSON

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

func (*NullableUpdateTaskInstancesState) 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 NullableUserAllOf

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

func NewNullableUserAllOf

func NewNullableUserAllOf(val *UserAllOf) *NullableUserAllOf

func (NullableUserAllOf) Get

func (v NullableUserAllOf) Get() *UserAllOf

func (NullableUserAllOf) IsSet

func (v NullableUserAllOf) IsSet() bool

func (NullableUserAllOf) MarshalJSON

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

func (*NullableUserAllOf) Set

func (v *NullableUserAllOf) Set(val *UserAllOf)

func (*NullableUserAllOf) UnmarshalJSON

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

func (*NullableUserAllOf) Unset

func (v *NullableUserAllOf) Unset()

type NullableUserCollection

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

func NewNullableUserCollection

func NewNullableUserCollection(val *UserCollection) *NullableUserCollection

func (NullableUserCollection) Get

func (NullableUserCollection) IsSet

func (v NullableUserCollection) IsSet() bool

func (NullableUserCollection) MarshalJSON

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

func (*NullableUserCollection) Set

func (*NullableUserCollection) UnmarshalJSON

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

func (*NullableUserCollection) Unset

func (v *NullableUserCollection) Unset()

type NullableUserCollectionAllOf

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

func NewNullableUserCollectionAllOf

func NewNullableUserCollectionAllOf(val *UserCollectionAllOf) *NullableUserCollectionAllOf

func (NullableUserCollectionAllOf) Get

func (NullableUserCollectionAllOf) IsSet

func (NullableUserCollectionAllOf) MarshalJSON

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

func (*NullableUserCollectionAllOf) Set

func (*NullableUserCollectionAllOf) UnmarshalJSON

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

func (*NullableUserCollectionAllOf) Unset

func (v *NullableUserCollectionAllOf) Unset()

type NullableUserCollectionItem

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

func NewNullableUserCollectionItem

func NewNullableUserCollectionItem(val *UserCollectionItem) *NullableUserCollectionItem

func (NullableUserCollectionItem) Get

func (NullableUserCollectionItem) IsSet

func (v NullableUserCollectionItem) IsSet() bool

func (NullableUserCollectionItem) MarshalJSON

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

func (*NullableUserCollectionItem) Set

func (*NullableUserCollectionItem) UnmarshalJSON

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

func (*NullableUserCollectionItem) Unset

func (v *NullableUserCollectionItem) Unset()

type NullableUserCollectionItemRoles

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

func (NullableUserCollectionItemRoles) Get

func (NullableUserCollectionItemRoles) IsSet

func (NullableUserCollectionItemRoles) MarshalJSON

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

func (*NullableUserCollectionItemRoles) Set

func (*NullableUserCollectionItemRoles) UnmarshalJSON

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

func (*NullableUserCollectionItemRoles) Unset

type NullableVariable

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

func NewNullableVariable

func NewNullableVariable(val *Variable) *NullableVariable

func (NullableVariable) Get

func (v NullableVariable) Get() *Variable

func (NullableVariable) IsSet

func (v NullableVariable) IsSet() bool

func (NullableVariable) MarshalJSON

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

func (*NullableVariable) Set

func (v *NullableVariable) Set(val *Variable)

func (*NullableVariable) UnmarshalJSON

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

func (*NullableVariable) Unset

func (v *NullableVariable) Unset()

type NullableVariableAllOf

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

func NewNullableVariableAllOf

func NewNullableVariableAllOf(val *VariableAllOf) *NullableVariableAllOf

func (NullableVariableAllOf) Get

func (NullableVariableAllOf) IsSet

func (v NullableVariableAllOf) IsSet() bool

func (NullableVariableAllOf) MarshalJSON

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

func (*NullableVariableAllOf) Set

func (v *NullableVariableAllOf) Set(val *VariableAllOf)

func (*NullableVariableAllOf) UnmarshalJSON

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

func (*NullableVariableAllOf) Unset

func (v *NullableVariableAllOf) Unset()

type NullableVariableCollection

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

func NewNullableVariableCollection

func NewNullableVariableCollection(val *VariableCollection) *NullableVariableCollection

func (NullableVariableCollection) Get

func (NullableVariableCollection) IsSet

func (v NullableVariableCollection) IsSet() bool

func (NullableVariableCollection) MarshalJSON

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

func (*NullableVariableCollection) Set

func (*NullableVariableCollection) UnmarshalJSON

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

func (*NullableVariableCollection) Unset

func (v *NullableVariableCollection) Unset()

type NullableVariableCollectionAllOf

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

func (NullableVariableCollectionAllOf) Get

func (NullableVariableCollectionAllOf) IsSet

func (NullableVariableCollectionAllOf) MarshalJSON

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

func (*NullableVariableCollectionAllOf) Set

func (*NullableVariableCollectionAllOf) UnmarshalJSON

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

func (*NullableVariableCollectionAllOf) Unset

type NullableVariableCollectionItem

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

func (NullableVariableCollectionItem) Get

func (NullableVariableCollectionItem) IsSet

func (NullableVariableCollectionItem) MarshalJSON

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

func (*NullableVariableCollectionItem) Set

func (*NullableVariableCollectionItem) UnmarshalJSON

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

func (*NullableVariableCollectionItem) Unset

func (v *NullableVariableCollectionItem) Unset()

type NullableVersionInfo

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

func NewNullableVersionInfo

func NewNullableVersionInfo(val *VersionInfo) *NullableVersionInfo

func (NullableVersionInfo) Get

func (NullableVersionInfo) IsSet

func (v NullableVersionInfo) IsSet() bool

func (NullableVersionInfo) MarshalJSON

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

func (*NullableVersionInfo) Set

func (v *NullableVersionInfo) Set(val *VersionInfo)

func (*NullableVersionInfo) UnmarshalJSON

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

func (*NullableVersionInfo) Unset

func (v *NullableVersionInfo) Unset()

type NullableWeightRule

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

func NewNullableWeightRule

func NewNullableWeightRule(val *WeightRule) *NullableWeightRule

func (NullableWeightRule) Get

func (v NullableWeightRule) Get() *WeightRule

func (NullableWeightRule) IsSet

func (v NullableWeightRule) IsSet() bool

func (NullableWeightRule) MarshalJSON

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

func (*NullableWeightRule) Set

func (v *NullableWeightRule) Set(val *WeightRule)

func (*NullableWeightRule) UnmarshalJSON

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

func (*NullableWeightRule) Unset

func (v *NullableWeightRule) Unset()

type NullableXCom

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

func NewNullableXCom

func NewNullableXCom(val *XCom) *NullableXCom

func (NullableXCom) Get

func (v NullableXCom) Get() *XCom

func (NullableXCom) IsSet

func (v NullableXCom) IsSet() bool

func (NullableXCom) MarshalJSON

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

func (*NullableXCom) Set

func (v *NullableXCom) Set(val *XCom)

func (*NullableXCom) UnmarshalJSON

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

func (*NullableXCom) Unset

func (v *NullableXCom) Unset()

type NullableXComAllOf

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

func NewNullableXComAllOf

func NewNullableXComAllOf(val *XComAllOf) *NullableXComAllOf

func (NullableXComAllOf) Get

func (v NullableXComAllOf) Get() *XComAllOf

func (NullableXComAllOf) IsSet

func (v NullableXComAllOf) IsSet() bool

func (NullableXComAllOf) MarshalJSON

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

func (*NullableXComAllOf) Set

func (v *NullableXComAllOf) Set(val *XComAllOf)

func (*NullableXComAllOf) UnmarshalJSON

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

func (*NullableXComAllOf) Unset

func (v *NullableXComAllOf) Unset()

type NullableXComCollection

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

func NewNullableXComCollection

func NewNullableXComCollection(val *XComCollection) *NullableXComCollection

func (NullableXComCollection) Get

func (NullableXComCollection) IsSet

func (v NullableXComCollection) IsSet() bool

func (NullableXComCollection) MarshalJSON

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

func (*NullableXComCollection) Set

func (*NullableXComCollection) UnmarshalJSON

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

func (*NullableXComCollection) Unset

func (v *NullableXComCollection) Unset()

type NullableXComCollectionAllOf

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

func NewNullableXComCollectionAllOf

func NewNullableXComCollectionAllOf(val *XComCollectionAllOf) *NullableXComCollectionAllOf

func (NullableXComCollectionAllOf) Get

func (NullableXComCollectionAllOf) IsSet

func (NullableXComCollectionAllOf) MarshalJSON

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

func (*NullableXComCollectionAllOf) Set

func (*NullableXComCollectionAllOf) UnmarshalJSON

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

func (*NullableXComCollectionAllOf) Unset

func (v *NullableXComCollectionAllOf) Unset()

type NullableXComCollectionItem

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

func NewNullableXComCollectionItem

func NewNullableXComCollectionItem(val *XComCollectionItem) *NullableXComCollectionItem

func (NullableXComCollectionItem) Get

func (NullableXComCollectionItem) IsSet

func (v NullableXComCollectionItem) IsSet() bool

func (NullableXComCollectionItem) MarshalJSON

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

func (*NullableXComCollectionItem) Set

func (*NullableXComCollectionItem) UnmarshalJSON

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

func (*NullableXComCollectionItem) Unset

func (v *NullableXComCollectionItem) Unset()

type PermissionApiService

type PermissionApiService service

PermissionApiService PermissionApi service

func (*PermissionApiService) GetPermissions

GetPermissions List permissions

Get a list of permissions.

*New in version 2.1.0*

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

func (*PermissionApiService) GetPermissionsExecute

Execute executes the request

@return ActionCollection

type PluginApiService

type PluginApiService service

PluginApiService PluginApi service

func (*PluginApiService) GetPlugins

GetPlugins Get a list of loaded plugins

Get a list of loaded plugins.

*New in version 2.1.0*

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

func (*PluginApiService) GetPluginsExecute

Execute executes the request

@return PluginCollection

type PluginCollection

type PluginCollection struct {
	Plugins *[]PluginCollectionItem `json:"plugins,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

PluginCollection A collection of plugin. *New in version 2.1.0*

func NewPluginCollection

func NewPluginCollection() *PluginCollection

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

func NewPluginCollectionWithDefaults

func NewPluginCollectionWithDefaults() *PluginCollection

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

func (*PluginCollection) GetPlugins

func (o *PluginCollection) GetPlugins() []PluginCollectionItem

GetPlugins returns the Plugins field value if set, zero value otherwise.

func (*PluginCollection) GetPluginsOk

func (o *PluginCollection) GetPluginsOk() (*[]PluginCollectionItem, bool)

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

func (*PluginCollection) GetTotalEntries

func (o *PluginCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*PluginCollection) GetTotalEntriesOk

func (o *PluginCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*PluginCollection) HasPlugins

func (o *PluginCollection) HasPlugins() bool

HasPlugins returns a boolean if a field has been set.

func (*PluginCollection) HasTotalEntries

func (o *PluginCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (PluginCollection) MarshalJSON

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

func (*PluginCollection) SetPlugins

func (o *PluginCollection) SetPlugins(v []PluginCollectionItem)

SetPlugins gets a reference to the given []PluginCollectionItem and assigns it to the Plugins field.

func (*PluginCollection) SetTotalEntries

func (o *PluginCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type PluginCollectionAllOf

type PluginCollectionAllOf struct {
	Plugins *[]PluginCollectionItem `json:"plugins,omitempty"`
}

PluginCollectionAllOf struct for PluginCollectionAllOf

func NewPluginCollectionAllOf

func NewPluginCollectionAllOf() *PluginCollectionAllOf

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

func NewPluginCollectionAllOfWithDefaults

func NewPluginCollectionAllOfWithDefaults() *PluginCollectionAllOf

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

func (*PluginCollectionAllOf) GetPlugins

func (o *PluginCollectionAllOf) GetPlugins() []PluginCollectionItem

GetPlugins returns the Plugins field value if set, zero value otherwise.

func (*PluginCollectionAllOf) GetPluginsOk

func (o *PluginCollectionAllOf) GetPluginsOk() (*[]PluginCollectionItem, bool)

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

func (*PluginCollectionAllOf) HasPlugins

func (o *PluginCollectionAllOf) HasPlugins() bool

HasPlugins returns a boolean if a field has been set.

func (PluginCollectionAllOf) MarshalJSON

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

func (*PluginCollectionAllOf) SetPlugins

func (o *PluginCollectionAllOf) SetPlugins(v []PluginCollectionItem)

SetPlugins gets a reference to the given []PluginCollectionItem and assigns it to the Plugins field.

type PluginCollectionItem

type PluginCollectionItem struct {
	// The plugin number
	Number *string `json:"number,omitempty"`
	// The name of the plugin
	Name *string `json:"name,omitempty"`
	// The plugin hooks
	Hooks *[]*string `json:"hooks,omitempty"`
	// The plugin executors
	Executors *[]*string `json:"executors,omitempty"`
	// The plugin macros
	Macros *[]*map[string]interface{} `json:"macros,omitempty"`
	// The flask blueprints
	FlaskBlueprints *[]*map[string]interface{} `json:"flask_blueprints,omitempty"`
	// The appuilder views
	AppbuilderViews *[]*map[string]interface{} `json:"appbuilder_views,omitempty"`
	// The Flask Appbuilder menu items
	AppbuilderMenuItems *[]*map[string]interface{} `json:"appbuilder_menu_items,omitempty"`
	// The global operator extra links
	GlobalOperatorExtraLinks *[]*map[string]interface{} `json:"global_operator_extra_links,omitempty"`
	// Operator extra links
	OperatorExtraLinks *[]*map[string]interface{} `json:"operator_extra_links,omitempty"`
	// The plugin source
	Source NullableString `json:"source,omitempty"`
}

PluginCollectionItem A plugin Item. *New in version 2.1.0*

func NewPluginCollectionItem

func NewPluginCollectionItem() *PluginCollectionItem

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

func NewPluginCollectionItemWithDefaults

func NewPluginCollectionItemWithDefaults() *PluginCollectionItem

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

func (*PluginCollectionItem) GetAppbuilderMenuItems

func (o *PluginCollectionItem) GetAppbuilderMenuItems() []*map[string]interface{}

GetAppbuilderMenuItems returns the AppbuilderMenuItems field value if set, zero value otherwise.

func (*PluginCollectionItem) GetAppbuilderMenuItemsOk

func (o *PluginCollectionItem) GetAppbuilderMenuItemsOk() (*[]*map[string]interface{}, bool)

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

func (*PluginCollectionItem) GetAppbuilderViews

func (o *PluginCollectionItem) GetAppbuilderViews() []*map[string]interface{}

GetAppbuilderViews returns the AppbuilderViews field value if set, zero value otherwise.

func (*PluginCollectionItem) GetAppbuilderViewsOk

func (o *PluginCollectionItem) GetAppbuilderViewsOk() (*[]*map[string]interface{}, bool)

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

func (*PluginCollectionItem) GetExecutors

func (o *PluginCollectionItem) GetExecutors() []*string

GetExecutors returns the Executors field value if set, zero value otherwise.

func (*PluginCollectionItem) GetExecutorsOk

func (o *PluginCollectionItem) GetExecutorsOk() (*[]*string, bool)

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

func (*PluginCollectionItem) GetFlaskBlueprints

func (o *PluginCollectionItem) GetFlaskBlueprints() []*map[string]interface{}

GetFlaskBlueprints returns the FlaskBlueprints field value if set, zero value otherwise.

func (*PluginCollectionItem) GetFlaskBlueprintsOk

func (o *PluginCollectionItem) GetFlaskBlueprintsOk() (*[]*map[string]interface{}, bool)

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

func (o *PluginCollectionItem) GetGlobalOperatorExtraLinks() []*map[string]interface{}

GetGlobalOperatorExtraLinks returns the GlobalOperatorExtraLinks field value if set, zero value otherwise.

func (*PluginCollectionItem) GetGlobalOperatorExtraLinksOk

func (o *PluginCollectionItem) GetGlobalOperatorExtraLinksOk() (*[]*map[string]interface{}, bool)

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

func (*PluginCollectionItem) GetHooks

func (o *PluginCollectionItem) GetHooks() []*string

GetHooks returns the Hooks field value if set, zero value otherwise.

func (*PluginCollectionItem) GetHooksOk

func (o *PluginCollectionItem) GetHooksOk() (*[]*string, bool)

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

func (*PluginCollectionItem) GetMacros

func (o *PluginCollectionItem) GetMacros() []*map[string]interface{}

GetMacros returns the Macros field value if set, zero value otherwise.

func (*PluginCollectionItem) GetMacrosOk

func (o *PluginCollectionItem) GetMacrosOk() (*[]*map[string]interface{}, bool)

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

func (*PluginCollectionItem) GetName

func (o *PluginCollectionItem) GetName() string

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

func (*PluginCollectionItem) GetNameOk

func (o *PluginCollectionItem) 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 (*PluginCollectionItem) GetNumber

func (o *PluginCollectionItem) GetNumber() string

GetNumber returns the Number field value if set, zero value otherwise.

func (*PluginCollectionItem) GetNumberOk

func (o *PluginCollectionItem) 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 (o *PluginCollectionItem) GetOperatorExtraLinks() []*map[string]interface{}

GetOperatorExtraLinks returns the OperatorExtraLinks field value if set, zero value otherwise.

func (*PluginCollectionItem) GetOperatorExtraLinksOk

func (o *PluginCollectionItem) GetOperatorExtraLinksOk() (*[]*map[string]interface{}, bool)

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

func (*PluginCollectionItem) GetSource

func (o *PluginCollectionItem) GetSource() string

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

func (*PluginCollectionItem) GetSourceOk

func (o *PluginCollectionItem) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PluginCollectionItem) HasAppbuilderMenuItems

func (o *PluginCollectionItem) HasAppbuilderMenuItems() bool

HasAppbuilderMenuItems returns a boolean if a field has been set.

func (*PluginCollectionItem) HasAppbuilderViews

func (o *PluginCollectionItem) HasAppbuilderViews() bool

HasAppbuilderViews returns a boolean if a field has been set.

func (*PluginCollectionItem) HasExecutors

func (o *PluginCollectionItem) HasExecutors() bool

HasExecutors returns a boolean if a field has been set.

func (*PluginCollectionItem) HasFlaskBlueprints

func (o *PluginCollectionItem) HasFlaskBlueprints() bool

HasFlaskBlueprints returns a boolean if a field has been set.

func (o *PluginCollectionItem) HasGlobalOperatorExtraLinks() bool

HasGlobalOperatorExtraLinks returns a boolean if a field has been set.

func (*PluginCollectionItem) HasHooks

func (o *PluginCollectionItem) HasHooks() bool

HasHooks returns a boolean if a field has been set.

func (*PluginCollectionItem) HasMacros

func (o *PluginCollectionItem) HasMacros() bool

HasMacros returns a boolean if a field has been set.

func (*PluginCollectionItem) HasName

func (o *PluginCollectionItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*PluginCollectionItem) HasNumber

func (o *PluginCollectionItem) HasNumber() bool

HasNumber returns a boolean if a field has been set.

func (o *PluginCollectionItem) HasOperatorExtraLinks() bool

HasOperatorExtraLinks returns a boolean if a field has been set.

func (*PluginCollectionItem) HasSource

func (o *PluginCollectionItem) HasSource() bool

HasSource returns a boolean if a field has been set.

func (PluginCollectionItem) MarshalJSON

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

func (*PluginCollectionItem) SetAppbuilderMenuItems

func (o *PluginCollectionItem) SetAppbuilderMenuItems(v []*map[string]interface{})

SetAppbuilderMenuItems gets a reference to the given []*map[string]interface{} and assigns it to the AppbuilderMenuItems field.

func (*PluginCollectionItem) SetAppbuilderViews

func (o *PluginCollectionItem) SetAppbuilderViews(v []*map[string]interface{})

SetAppbuilderViews gets a reference to the given []*map[string]interface{} and assigns it to the AppbuilderViews field.

func (*PluginCollectionItem) SetExecutors

func (o *PluginCollectionItem) SetExecutors(v []*string)

SetExecutors gets a reference to the given []*string and assigns it to the Executors field.

func (*PluginCollectionItem) SetFlaskBlueprints

func (o *PluginCollectionItem) SetFlaskBlueprints(v []*map[string]interface{})

SetFlaskBlueprints gets a reference to the given []*map[string]interface{} and assigns it to the FlaskBlueprints field.

func (o *PluginCollectionItem) SetGlobalOperatorExtraLinks(v []*map[string]interface{})

SetGlobalOperatorExtraLinks gets a reference to the given []*map[string]interface{} and assigns it to the GlobalOperatorExtraLinks field.

func (*PluginCollectionItem) SetHooks

func (o *PluginCollectionItem) SetHooks(v []*string)

SetHooks gets a reference to the given []*string and assigns it to the Hooks field.

func (*PluginCollectionItem) SetMacros

func (o *PluginCollectionItem) SetMacros(v []*map[string]interface{})

SetMacros gets a reference to the given []*map[string]interface{} and assigns it to the Macros field.

func (*PluginCollectionItem) SetName

func (o *PluginCollectionItem) SetName(v string)

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

func (*PluginCollectionItem) SetNumber

func (o *PluginCollectionItem) SetNumber(v string)

SetNumber gets a reference to the given string and assigns it to the Number field.

func (o *PluginCollectionItem) SetOperatorExtraLinks(v []*map[string]interface{})

SetOperatorExtraLinks gets a reference to the given []*map[string]interface{} and assigns it to the OperatorExtraLinks field.

func (*PluginCollectionItem) SetSource

func (o *PluginCollectionItem) SetSource(v string)

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

func (*PluginCollectionItem) SetSourceNil

func (o *PluginCollectionItem) SetSourceNil()

SetSourceNil sets the value for Source to be an explicit nil

func (*PluginCollectionItem) UnsetSource

func (o *PluginCollectionItem) UnsetSource()

UnsetSource ensures that no value is present for Source, not even an explicit nil

type Pool

type Pool struct {
	// The name of pool.
	Name *string `json:"name,omitempty"`
	// The maximum number of slots that can be assigned to tasks. One job may occupy one or more slots.
	Slots *int32 `json:"slots,omitempty"`
	// The number of slots used by running/queued tasks at the moment.
	OccupiedSlots *int32 `json:"occupied_slots,omitempty"`
	// The number of slots used by running tasks at the moment.
	UsedSlots *int32 `json:"used_slots,omitempty"`
	// The number of slots used by queued tasks at the moment.
	QueuedSlots *int32 `json:"queued_slots,omitempty"`
	// The number of free slots at the moment.
	OpenSlots *int32 `json:"open_slots,omitempty"`
	// The description of the pool.  *New in version 2.3.0*
	Description NullableString `json:"description,omitempty"`
}

Pool The pool

func NewPool

func NewPool() *Pool

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

func NewPoolWithDefaults

func NewPoolWithDefaults() *Pool

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

func (*Pool) GetDescription

func (o *Pool) GetDescription() string

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

func (*Pool) GetDescriptionOk

func (o *Pool) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Pool) GetName

func (o *Pool) GetName() string

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

func (*Pool) GetNameOk

func (o *Pool) 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 (*Pool) GetOccupiedSlots

func (o *Pool) GetOccupiedSlots() int32

GetOccupiedSlots returns the OccupiedSlots field value if set, zero value otherwise.

func (*Pool) GetOccupiedSlotsOk

func (o *Pool) GetOccupiedSlotsOk() (*int32, bool)

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

func (*Pool) GetOpenSlots

func (o *Pool) GetOpenSlots() int32

GetOpenSlots returns the OpenSlots field value if set, zero value otherwise.

func (*Pool) GetOpenSlotsOk

func (o *Pool) GetOpenSlotsOk() (*int32, bool)

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

func (*Pool) GetQueuedSlots

func (o *Pool) GetQueuedSlots() int32

GetQueuedSlots returns the QueuedSlots field value if set, zero value otherwise.

func (*Pool) GetQueuedSlotsOk

func (o *Pool) GetQueuedSlotsOk() (*int32, bool)

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

func (*Pool) GetSlots

func (o *Pool) GetSlots() int32

GetSlots returns the Slots field value if set, zero value otherwise.

func (*Pool) GetSlotsOk

func (o *Pool) GetSlotsOk() (*int32, bool)

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

func (*Pool) GetUsedSlots

func (o *Pool) GetUsedSlots() int32

GetUsedSlots returns the UsedSlots field value if set, zero value otherwise.

func (*Pool) GetUsedSlotsOk

func (o *Pool) GetUsedSlotsOk() (*int32, bool)

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

func (*Pool) HasDescription

func (o *Pool) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Pool) HasName

func (o *Pool) HasName() bool

HasName returns a boolean if a field has been set.

func (*Pool) HasOccupiedSlots

func (o *Pool) HasOccupiedSlots() bool

HasOccupiedSlots returns a boolean if a field has been set.

func (*Pool) HasOpenSlots

func (o *Pool) HasOpenSlots() bool

HasOpenSlots returns a boolean if a field has been set.

func (*Pool) HasQueuedSlots

func (o *Pool) HasQueuedSlots() bool

HasQueuedSlots returns a boolean if a field has been set.

func (*Pool) HasSlots

func (o *Pool) HasSlots() bool

HasSlots returns a boolean if a field has been set.

func (*Pool) HasUsedSlots

func (o *Pool) HasUsedSlots() bool

HasUsedSlots returns a boolean if a field has been set.

func (Pool) MarshalJSON

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

func (*Pool) SetDescription

func (o *Pool) SetDescription(v string)

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

func (*Pool) SetDescriptionNil

func (o *Pool) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*Pool) SetName

func (o *Pool) SetName(v string)

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

func (*Pool) SetOccupiedSlots

func (o *Pool) SetOccupiedSlots(v int32)

SetOccupiedSlots gets a reference to the given int32 and assigns it to the OccupiedSlots field.

func (*Pool) SetOpenSlots

func (o *Pool) SetOpenSlots(v int32)

SetOpenSlots gets a reference to the given int32 and assigns it to the OpenSlots field.

func (*Pool) SetQueuedSlots

func (o *Pool) SetQueuedSlots(v int32)

SetQueuedSlots gets a reference to the given int32 and assigns it to the QueuedSlots field.

func (*Pool) SetSlots

func (o *Pool) SetSlots(v int32)

SetSlots gets a reference to the given int32 and assigns it to the Slots field.

func (*Pool) SetUsedSlots

func (o *Pool) SetUsedSlots(v int32)

SetUsedSlots gets a reference to the given int32 and assigns it to the UsedSlots field.

func (*Pool) UnsetDescription

func (o *Pool) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type PoolApiService

type PoolApiService service

PoolApiService PoolApi service

func (*PoolApiService) DeletePool

func (a *PoolApiService) DeletePool(ctx _context.Context, poolName string) ApiDeletePoolRequest

DeletePool Delete a pool

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param poolName The pool name.
@return ApiDeletePoolRequest

func (*PoolApiService) DeletePoolExecute

func (a *PoolApiService) DeletePoolExecute(r ApiDeletePoolRequest) (*_nethttp.Response, error)

Execute executes the request

func (*PoolApiService) GetPool

func (a *PoolApiService) GetPool(ctx _context.Context, poolName string) ApiGetPoolRequest

GetPool Get a pool

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param poolName The pool name.
@return ApiGetPoolRequest

func (*PoolApiService) GetPoolExecute

func (a *PoolApiService) GetPoolExecute(r ApiGetPoolRequest) (Pool, *_nethttp.Response, error)

Execute executes the request

@return Pool

func (*PoolApiService) GetPools

GetPools List pools

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

func (*PoolApiService) GetPoolsExecute

Execute executes the request

@return PoolCollection

func (*PoolApiService) PatchPool

func (a *PoolApiService) PatchPool(ctx _context.Context, poolName string) ApiPatchPoolRequest

PatchPool Update a pool

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param poolName The pool name.
@return ApiPatchPoolRequest

func (*PoolApiService) PatchPoolExecute

func (a *PoolApiService) PatchPoolExecute(r ApiPatchPoolRequest) (Pool, *_nethttp.Response, error)

Execute executes the request

@return Pool

func (*PoolApiService) PostPool

PostPool Create a pool

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

func (*PoolApiService) PostPoolExecute

func (a *PoolApiService) PostPoolExecute(r ApiPostPoolRequest) (Pool, *_nethttp.Response, error)

Execute executes the request

@return Pool

type PoolCollection

type PoolCollection struct {
	Pools *[]Pool `json:"pools,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

PoolCollection Collection of pools. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewPoolCollection

func NewPoolCollection() *PoolCollection

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

func NewPoolCollectionWithDefaults

func NewPoolCollectionWithDefaults() *PoolCollection

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

func (*PoolCollection) GetPools

func (o *PoolCollection) GetPools() []Pool

GetPools returns the Pools field value if set, zero value otherwise.

func (*PoolCollection) GetPoolsOk

func (o *PoolCollection) GetPoolsOk() (*[]Pool, bool)

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

func (*PoolCollection) GetTotalEntries

func (o *PoolCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*PoolCollection) GetTotalEntriesOk

func (o *PoolCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*PoolCollection) HasPools

func (o *PoolCollection) HasPools() bool

HasPools returns a boolean if a field has been set.

func (*PoolCollection) HasTotalEntries

func (o *PoolCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (PoolCollection) MarshalJSON

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

func (*PoolCollection) SetPools

func (o *PoolCollection) SetPools(v []Pool)

SetPools gets a reference to the given []Pool and assigns it to the Pools field.

func (*PoolCollection) SetTotalEntries

func (o *PoolCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type PoolCollectionAllOf

type PoolCollectionAllOf struct {
	Pools *[]Pool `json:"pools,omitempty"`
}

PoolCollectionAllOf struct for PoolCollectionAllOf

func NewPoolCollectionAllOf

func NewPoolCollectionAllOf() *PoolCollectionAllOf

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

func NewPoolCollectionAllOfWithDefaults

func NewPoolCollectionAllOfWithDefaults() *PoolCollectionAllOf

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

func (*PoolCollectionAllOf) GetPools

func (o *PoolCollectionAllOf) GetPools() []Pool

GetPools returns the Pools field value if set, zero value otherwise.

func (*PoolCollectionAllOf) GetPoolsOk

func (o *PoolCollectionAllOf) GetPoolsOk() (*[]Pool, bool)

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

func (*PoolCollectionAllOf) HasPools

func (o *PoolCollectionAllOf) HasPools() bool

HasPools returns a boolean if a field has been set.

func (PoolCollectionAllOf) MarshalJSON

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

func (*PoolCollectionAllOf) SetPools

func (o *PoolCollectionAllOf) SetPools(v []Pool)

SetPools gets a reference to the given []Pool and assigns it to the Pools field.

type Provider

type Provider struct {
	// The package name of the provider.
	PackageName *string `json:"package_name,omitempty"`
	// The description of the provider.
	Description *string `json:"description,omitempty"`
	// The version of the provider.
	Version *string `json:"version,omitempty"`
}

Provider The provider *New in version 2.1.0*

func NewProvider

func NewProvider() *Provider

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

func NewProviderWithDefaults

func NewProviderWithDefaults() *Provider

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

func (*Provider) GetDescription

func (o *Provider) GetDescription() string

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

func (*Provider) GetDescriptionOk

func (o *Provider) 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 (*Provider) GetPackageName

func (o *Provider) GetPackageName() string

GetPackageName returns the PackageName field value if set, zero value otherwise.

func (*Provider) GetPackageNameOk

func (o *Provider) 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 (*Provider) GetVersion

func (o *Provider) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Provider) GetVersionOk

func (o *Provider) 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 (*Provider) HasDescription

func (o *Provider) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Provider) HasPackageName

func (o *Provider) HasPackageName() bool

HasPackageName returns a boolean if a field has been set.

func (*Provider) HasVersion

func (o *Provider) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Provider) MarshalJSON

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

func (*Provider) SetDescription

func (o *Provider) SetDescription(v string)

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

func (*Provider) SetPackageName

func (o *Provider) SetPackageName(v string)

SetPackageName gets a reference to the given string and assigns it to the PackageName field.

func (*Provider) SetVersion

func (o *Provider) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type ProviderApiService

type ProviderApiService service

ProviderApiService ProviderApi service

func (*ProviderApiService) GetProviders

GetProviders List providers

Get a list of providers.

*New in version 2.1.0*

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

func (*ProviderApiService) GetProvidersExecute

Execute executes the request

@return ProviderCollection

type ProviderCollection

type ProviderCollection struct {
	Providers *[]Provider `json:"providers,omitempty"`
}

ProviderCollection Collection of providers. *New in version 2.1.0*

func NewProviderCollection

func NewProviderCollection() *ProviderCollection

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

func NewProviderCollectionWithDefaults

func NewProviderCollectionWithDefaults() *ProviderCollection

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

func (*ProviderCollection) GetProviders

func (o *ProviderCollection) GetProviders() []Provider

GetProviders returns the Providers field value if set, zero value otherwise.

func (*ProviderCollection) GetProvidersOk

func (o *ProviderCollection) GetProvidersOk() (*[]Provider, bool)

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

func (*ProviderCollection) HasProviders

func (o *ProviderCollection) HasProviders() bool

HasProviders returns a boolean if a field has been set.

func (ProviderCollection) MarshalJSON

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

func (*ProviderCollection) SetProviders

func (o *ProviderCollection) SetProviders(v []Provider)

SetProviders gets a reference to the given []Provider and assigns it to the Providers field.

type RelativeDelta

type RelativeDelta struct {
	Type         string `json:"__type"`
	Years        int32  `json:"years"`
	Months       int32  `json:"months"`
	Days         int32  `json:"days"`
	Leapdays     int32  `json:"leapdays"`
	Hours        int32  `json:"hours"`
	Minutes      int32  `json:"minutes"`
	Seconds      int32  `json:"seconds"`
	Microseconds int32  `json:"microseconds"`
	Year         int32  `json:"year"`
	Month        int32  `json:"month"`
	Day          int32  `json:"day"`
	Hour         int32  `json:"hour"`
	Minute       int32  `json:"minute"`
	Second       int32  `json:"second"`
	Microsecond  int32  `json:"microsecond"`
}

RelativeDelta Relative delta

func NewRelativeDelta

func NewRelativeDelta(type_ string, years int32, months int32, days int32, leapdays int32, hours int32, minutes int32, seconds int32, microseconds int32, year int32, month int32, day int32, hour int32, minute int32, second int32, microsecond int32) *RelativeDelta

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

func NewRelativeDeltaWithDefaults

func NewRelativeDeltaWithDefaults() *RelativeDelta

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

func (*RelativeDelta) GetDay

func (o *RelativeDelta) GetDay() int32

GetDay returns the Day field value

func (*RelativeDelta) GetDayOk

func (o *RelativeDelta) GetDayOk() (*int32, bool)

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

func (*RelativeDelta) GetDays

func (o *RelativeDelta) GetDays() int32

GetDays returns the Days field value

func (*RelativeDelta) GetDaysOk

func (o *RelativeDelta) GetDaysOk() (*int32, bool)

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

func (*RelativeDelta) GetHour

func (o *RelativeDelta) GetHour() int32

GetHour returns the Hour field value

func (*RelativeDelta) GetHourOk

func (o *RelativeDelta) GetHourOk() (*int32, bool)

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

func (*RelativeDelta) GetHours

func (o *RelativeDelta) GetHours() int32

GetHours returns the Hours field value

func (*RelativeDelta) GetHoursOk

func (o *RelativeDelta) GetHoursOk() (*int32, bool)

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

func (*RelativeDelta) GetLeapdays

func (o *RelativeDelta) GetLeapdays() int32

GetLeapdays returns the Leapdays field value

func (*RelativeDelta) GetLeapdaysOk

func (o *RelativeDelta) GetLeapdaysOk() (*int32, bool)

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

func (*RelativeDelta) GetMicrosecond

func (o *RelativeDelta) GetMicrosecond() int32

GetMicrosecond returns the Microsecond field value

func (*RelativeDelta) GetMicrosecondOk

func (o *RelativeDelta) GetMicrosecondOk() (*int32, bool)

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

func (*RelativeDelta) GetMicroseconds

func (o *RelativeDelta) GetMicroseconds() int32

GetMicroseconds returns the Microseconds field value

func (*RelativeDelta) GetMicrosecondsOk

func (o *RelativeDelta) GetMicrosecondsOk() (*int32, bool)

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

func (*RelativeDelta) GetMinute

func (o *RelativeDelta) GetMinute() int32

GetMinute returns the Minute field value

func (*RelativeDelta) GetMinuteOk

func (o *RelativeDelta) GetMinuteOk() (*int32, bool)

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

func (*RelativeDelta) GetMinutes

func (o *RelativeDelta) GetMinutes() int32

GetMinutes returns the Minutes field value

func (*RelativeDelta) GetMinutesOk

func (o *RelativeDelta) GetMinutesOk() (*int32, bool)

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

func (*RelativeDelta) GetMonth

func (o *RelativeDelta) GetMonth() int32

GetMonth returns the Month field value

func (*RelativeDelta) GetMonthOk

func (o *RelativeDelta) GetMonthOk() (*int32, bool)

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

func (*RelativeDelta) GetMonths

func (o *RelativeDelta) GetMonths() int32

GetMonths returns the Months field value

func (*RelativeDelta) GetMonthsOk

func (o *RelativeDelta) GetMonthsOk() (*int32, bool)

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

func (*RelativeDelta) GetSecond

func (o *RelativeDelta) GetSecond() int32

GetSecond returns the Second field value

func (*RelativeDelta) GetSecondOk

func (o *RelativeDelta) GetSecondOk() (*int32, bool)

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

func (*RelativeDelta) GetSeconds

func (o *RelativeDelta) GetSeconds() int32

GetSeconds returns the Seconds field value

func (*RelativeDelta) GetSecondsOk

func (o *RelativeDelta) GetSecondsOk() (*int32, bool)

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

func (*RelativeDelta) GetType

func (o *RelativeDelta) GetType() string

GetType returns the Type field value

func (*RelativeDelta) GetTypeOk

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

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

func (*RelativeDelta) GetYear

func (o *RelativeDelta) GetYear() int32

GetYear returns the Year field value

func (*RelativeDelta) GetYearOk

func (o *RelativeDelta) GetYearOk() (*int32, bool)

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

func (*RelativeDelta) GetYears

func (o *RelativeDelta) GetYears() int32

GetYears returns the Years field value

func (*RelativeDelta) GetYearsOk

func (o *RelativeDelta) GetYearsOk() (*int32, bool)

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

func (RelativeDelta) MarshalJSON

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

func (*RelativeDelta) SetDay

func (o *RelativeDelta) SetDay(v int32)

SetDay sets field value

func (*RelativeDelta) SetDays

func (o *RelativeDelta) SetDays(v int32)

SetDays sets field value

func (*RelativeDelta) SetHour

func (o *RelativeDelta) SetHour(v int32)

SetHour sets field value

func (*RelativeDelta) SetHours

func (o *RelativeDelta) SetHours(v int32)

SetHours sets field value

func (*RelativeDelta) SetLeapdays

func (o *RelativeDelta) SetLeapdays(v int32)

SetLeapdays sets field value

func (*RelativeDelta) SetMicrosecond

func (o *RelativeDelta) SetMicrosecond(v int32)

SetMicrosecond sets field value

func (*RelativeDelta) SetMicroseconds

func (o *RelativeDelta) SetMicroseconds(v int32)

SetMicroseconds sets field value

func (*RelativeDelta) SetMinute

func (o *RelativeDelta) SetMinute(v int32)

SetMinute sets field value

func (*RelativeDelta) SetMinutes

func (o *RelativeDelta) SetMinutes(v int32)

SetMinutes sets field value

func (*RelativeDelta) SetMonth

func (o *RelativeDelta) SetMonth(v int32)

SetMonth sets field value

func (*RelativeDelta) SetMonths

func (o *RelativeDelta) SetMonths(v int32)

SetMonths sets field value

func (*RelativeDelta) SetSecond

func (o *RelativeDelta) SetSecond(v int32)

SetSecond sets field value

func (*RelativeDelta) SetSeconds

func (o *RelativeDelta) SetSeconds(v int32)

SetSeconds sets field value

func (*RelativeDelta) SetType

func (o *RelativeDelta) SetType(v string)

SetType sets field value

func (*RelativeDelta) SetYear

func (o *RelativeDelta) SetYear(v int32)

SetYear sets field value

func (*RelativeDelta) SetYears

func (o *RelativeDelta) SetYears(v int32)

SetYears sets field value

type Resource

type Resource struct {
	// The name of the resource
	Name *string `json:"name,omitempty"`
}

Resource A resource on which permissions are granted. *New in version 2.1.0*

func NewResource

func NewResource() *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

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

func (o *Resource) GetName() string

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

func (*Resource) GetNameOk

func (o *Resource) 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 (*Resource) HasName

func (o *Resource) HasName() bool

HasName returns a boolean if a field has been set.

func (Resource) MarshalJSON

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

func (*Resource) SetName

func (o *Resource) SetName(v string)

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

type Role

type Role struct {
	// The name of the role  *Changed in version 2.3.0*: A minimum character length requirement ('minLength') is added.
	Name    *string           `json:"name,omitempty"`
	Actions *[]ActionResource `json:"actions,omitempty"`
}

Role a role item. *New in version 2.1.0*

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

func (o *Role) GetActions() []ActionResource

GetActions returns the Actions field value if set, zero value otherwise.

func (*Role) GetActionsOk

func (o *Role) GetActionsOk() (*[]ActionResource, bool)

GetActionsOk returns a tuple with the Actions 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) HasActions

func (o *Role) HasActions() bool

HasActions 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) MarshalJSON

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

func (*Role) SetActions

func (o *Role) SetActions(v []ActionResource)

SetActions gets a reference to the given []ActionResource and assigns it to the Actions 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.

type RoleApiService

type RoleApiService service

RoleApiService RoleApi service

func (*RoleApiService) DeleteRole

func (a *RoleApiService) DeleteRole(ctx _context.Context, roleName string) ApiDeleteRoleRequest

DeleteRole Delete a role

Delete a role.

*New in version 2.1.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleName The role name
@return ApiDeleteRoleRequest

func (*RoleApiService) DeleteRoleExecute

func (a *RoleApiService) DeleteRoleExecute(r ApiDeleteRoleRequest) (*_nethttp.Response, error)

Execute executes the request

func (*RoleApiService) GetRole

func (a *RoleApiService) GetRole(ctx _context.Context, roleName string) ApiGetRoleRequest

GetRole Get a role

Get a role.

*New in version 2.1.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleName The role name
@return ApiGetRoleRequest

func (*RoleApiService) GetRoleExecute

func (a *RoleApiService) GetRoleExecute(r ApiGetRoleRequest) (Role, *_nethttp.Response, error)

Execute executes the request

@return Role

func (*RoleApiService) GetRoles

GetRoles List roles

Get a list of roles.

*New in version 2.1.0*

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

func (*RoleApiService) GetRolesExecute

Execute executes the request

@return RoleCollection

func (*RoleApiService) PatchRole

func (a *RoleApiService) PatchRole(ctx _context.Context, roleName string) ApiPatchRoleRequest

PatchRole Update a role

Update a role.

*New in version 2.1.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param roleName The role name
@return ApiPatchRoleRequest

func (*RoleApiService) PatchRoleExecute

func (a *RoleApiService) PatchRoleExecute(r ApiPatchRoleRequest) (Role, *_nethttp.Response, error)

Execute executes the request

@return Role

func (*RoleApiService) PostRole

PostRole Create a role

Create a new role.

*New in version 2.1.0*

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

func (*RoleApiService) PostRoleExecute

func (a *RoleApiService) PostRoleExecute(r ApiPostRoleRequest) (Role, *_nethttp.Response, error)

Execute executes the request

@return Role

type RoleCollection

type RoleCollection struct {
	Roles *[]Role `json:"roles,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

RoleCollection A collection of roles. *New in version 2.1.0*

func NewRoleCollection

func NewRoleCollection() *RoleCollection

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

func NewRoleCollectionWithDefaults

func NewRoleCollectionWithDefaults() *RoleCollection

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

func (*RoleCollection) GetRoles

func (o *RoleCollection) GetRoles() []Role

GetRoles returns the Roles field value if set, zero value otherwise.

func (*RoleCollection) GetRolesOk

func (o *RoleCollection) GetRolesOk() (*[]Role, bool)

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

func (*RoleCollection) GetTotalEntries

func (o *RoleCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*RoleCollection) GetTotalEntriesOk

func (o *RoleCollection) GetTotalEntriesOk() (*int32, bool)

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

func (*RoleCollection) HasRoles

func (o *RoleCollection) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*RoleCollection) HasTotalEntries

func (o *RoleCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (RoleCollection) MarshalJSON

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

func (*RoleCollection) SetRoles

func (o *RoleCollection) SetRoles(v []Role)

SetRoles gets a reference to the given []Role and assigns it to the Roles field.

func (*RoleCollection) SetTotalEntries

func (o *RoleCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type RoleCollectionAllOf

type RoleCollectionAllOf struct {
	Roles *[]Role `json:"roles,omitempty"`
}

RoleCollectionAllOf struct for RoleCollectionAllOf

func NewRoleCollectionAllOf

func NewRoleCollectionAllOf() *RoleCollectionAllOf

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

func NewRoleCollectionAllOfWithDefaults

func NewRoleCollectionAllOfWithDefaults() *RoleCollectionAllOf

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

func (*RoleCollectionAllOf) GetRoles

func (o *RoleCollectionAllOf) GetRoles() []Role

GetRoles returns the Roles field value if set, zero value otherwise.

func (*RoleCollectionAllOf) GetRolesOk

func (o *RoleCollectionAllOf) GetRolesOk() (*[]Role, bool)

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

func (*RoleCollectionAllOf) HasRoles

func (o *RoleCollectionAllOf) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (RoleCollectionAllOf) MarshalJSON

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

func (*RoleCollectionAllOf) SetRoles

func (o *RoleCollectionAllOf) SetRoles(v []Role)

SetRoles gets a reference to the given []Role and assigns it to the Roles field.

type SLAMiss

type SLAMiss struct {
	// The task ID.
	TaskId *string `json:"task_id,omitempty"`
	// The DAG ID.
	DagId            *string        `json:"dag_id,omitempty"`
	ExecutionDate    *string        `json:"execution_date,omitempty"`
	EmailSent        *bool          `json:"email_sent,omitempty"`
	Timestamp        *string        `json:"timestamp,omitempty"`
	Description      NullableString `json:"description,omitempty"`
	NotificationSent *bool          `json:"notification_sent,omitempty"`
}

SLAMiss struct for SLAMiss

func NewSLAMiss

func NewSLAMiss() *SLAMiss

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

func NewSLAMissWithDefaults

func NewSLAMissWithDefaults() *SLAMiss

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

func (*SLAMiss) GetDagId

func (o *SLAMiss) GetDagId() string

GetDagId returns the DagId field value if set, zero value otherwise.

func (*SLAMiss) GetDagIdOk

func (o *SLAMiss) GetDagIdOk() (*string, bool)

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

func (*SLAMiss) GetDescription

func (o *SLAMiss) GetDescription() string

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

func (*SLAMiss) GetDescriptionOk

func (o *SLAMiss) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SLAMiss) GetEmailSent

func (o *SLAMiss) GetEmailSent() bool

GetEmailSent returns the EmailSent field value if set, zero value otherwise.

func (*SLAMiss) GetEmailSentOk

func (o *SLAMiss) GetEmailSentOk() (*bool, bool)

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

func (*SLAMiss) GetExecutionDate

func (o *SLAMiss) GetExecutionDate() string

GetExecutionDate returns the ExecutionDate field value if set, zero value otherwise.

func (*SLAMiss) GetExecutionDateOk

func (o *SLAMiss) GetExecutionDateOk() (*string, bool)

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

func (*SLAMiss) GetNotificationSent

func (o *SLAMiss) GetNotificationSent() bool

GetNotificationSent returns the NotificationSent field value if set, zero value otherwise.

func (*SLAMiss) GetNotificationSentOk

func (o *SLAMiss) GetNotificationSentOk() (*bool, bool)

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

func (*SLAMiss) GetTaskId

func (o *SLAMiss) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*SLAMiss) GetTaskIdOk

func (o *SLAMiss) GetTaskIdOk() (*string, bool)

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

func (*SLAMiss) GetTimestamp

func (o *SLAMiss) GetTimestamp() string

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

func (*SLAMiss) GetTimestampOk

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

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

func (*SLAMiss) HasDagId

func (o *SLAMiss) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*SLAMiss) HasDescription

func (o *SLAMiss) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*SLAMiss) HasEmailSent

func (o *SLAMiss) HasEmailSent() bool

HasEmailSent returns a boolean if a field has been set.

func (*SLAMiss) HasExecutionDate

func (o *SLAMiss) HasExecutionDate() bool

HasExecutionDate returns a boolean if a field has been set.

func (*SLAMiss) HasNotificationSent

func (o *SLAMiss) HasNotificationSent() bool

HasNotificationSent returns a boolean if a field has been set.

func (*SLAMiss) HasTaskId

func (o *SLAMiss) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*SLAMiss) HasTimestamp

func (o *SLAMiss) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (SLAMiss) MarshalJSON

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

func (*SLAMiss) SetDagId

func (o *SLAMiss) SetDagId(v string)

SetDagId gets a reference to the given string and assigns it to the DagId field.

func (*SLAMiss) SetDescription

func (o *SLAMiss) SetDescription(v string)

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

func (*SLAMiss) SetDescriptionNil

func (o *SLAMiss) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*SLAMiss) SetEmailSent

func (o *SLAMiss) SetEmailSent(v bool)

SetEmailSent gets a reference to the given bool and assigns it to the EmailSent field.

func (*SLAMiss) SetExecutionDate

func (o *SLAMiss) SetExecutionDate(v string)

SetExecutionDate gets a reference to the given string and assigns it to the ExecutionDate field.

func (*SLAMiss) SetNotificationSent

func (o *SLAMiss) SetNotificationSent(v bool)

SetNotificationSent gets a reference to the given bool and assigns it to the NotificationSent field.

func (*SLAMiss) SetTaskId

func (o *SLAMiss) SetTaskId(v string)

SetTaskId gets a reference to the given string and assigns it to the TaskId field.

func (*SLAMiss) SetTimestamp

func (o *SLAMiss) SetTimestamp(v string)

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

func (*SLAMiss) UnsetDescription

func (o *SLAMiss) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type ScheduleInterval

type ScheduleInterval struct {
	CronExpression *CronExpression
	RelativeDelta  *RelativeDelta
	TimeDelta      *TimeDelta
}

ScheduleInterval Schedule interval. Defines how often DAG runs, this object gets added to your latest task instance's execution_date to figure out the next schedule.

func (*ScheduleInterval) MarshalJSON

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

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

func (*ScheduleInterval) UnmarshalJSON

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

Unmarshal JSON data into any of the pointers in the struct

type SchedulerStatus

type SchedulerStatus struct {
	Status *HealthStatus `json:"status,omitempty"`
	// The time the scheduler last do a heartbeat.
	LatestSchedulerHeartbeat NullableString `json:"latest_scheduler_heartbeat,omitempty"`
}

SchedulerStatus The status and the latest scheduler heartbeat.

func NewSchedulerStatus

func NewSchedulerStatus() *SchedulerStatus

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

func NewSchedulerStatusWithDefaults

func NewSchedulerStatusWithDefaults() *SchedulerStatus

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

func (*SchedulerStatus) GetLatestSchedulerHeartbeat

func (o *SchedulerStatus) GetLatestSchedulerHeartbeat() string

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

func (*SchedulerStatus) GetLatestSchedulerHeartbeatOk

func (o *SchedulerStatus) GetLatestSchedulerHeartbeatOk() (*string, bool)

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

func (*SchedulerStatus) GetStatus

func (o *SchedulerStatus) GetStatus() HealthStatus

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

func (*SchedulerStatus) GetStatusOk

func (o *SchedulerStatus) GetStatusOk() (*HealthStatus, 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 (*SchedulerStatus) HasLatestSchedulerHeartbeat

func (o *SchedulerStatus) HasLatestSchedulerHeartbeat() bool

HasLatestSchedulerHeartbeat returns a boolean if a field has been set.

func (*SchedulerStatus) HasStatus

func (o *SchedulerStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (SchedulerStatus) MarshalJSON

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

func (*SchedulerStatus) SetLatestSchedulerHeartbeat

func (o *SchedulerStatus) SetLatestSchedulerHeartbeat(v string)

SetLatestSchedulerHeartbeat gets a reference to the given NullableString and assigns it to the LatestSchedulerHeartbeat field.

func (*SchedulerStatus) SetLatestSchedulerHeartbeatNil

func (o *SchedulerStatus) SetLatestSchedulerHeartbeatNil()

SetLatestSchedulerHeartbeatNil sets the value for LatestSchedulerHeartbeat to be an explicit nil

func (*SchedulerStatus) SetStatus

func (o *SchedulerStatus) SetStatus(v HealthStatus)

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

func (*SchedulerStatus) UnsetLatestSchedulerHeartbeat

func (o *SchedulerStatus) UnsetLatestSchedulerHeartbeat()

UnsetLatestSchedulerHeartbeat ensures that no value is present for LatestSchedulerHeartbeat, not even an explicit nil

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 Tag

type Tag struct {
	Name *string `json:"name,omitempty"`
}

Tag Tag

func NewTag

func NewTag() *Tag

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

func NewTagWithDefaults

func NewTagWithDefaults() *Tag

NewTagWithDefaults instantiates a new Tag object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Tag) GetName

func (o *Tag) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Tag) GetNameOk

func (o *Tag) 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 (*Tag) HasName

func (o *Tag) HasName() bool

HasName returns a boolean if a field has been set.

func (Tag) MarshalJSON

func (o Tag) MarshalJSON() ([]byte, error)

func (*Tag) SetName

func (o *Tag) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

type Task

type Task struct {
	ClassRef                *ClassReference   `json:"class_ref,omitempty"`
	TaskId                  *string           `json:"task_id,omitempty"`
	Owner                   *string           `json:"owner,omitempty"`
	StartDate               *time.Time        `json:"start_date,omitempty"`
	EndDate                 NullableTime      `json:"end_date,omitempty"`
	TriggerRule             *TriggerRule      `json:"trigger_rule,omitempty"`
	ExtraLinks              *[]TaskExtraLinks `json:"extra_links,omitempty"`
	DependsOnPast           *bool             `json:"depends_on_past,omitempty"`
	IsMapped                *bool             `json:"is_mapped,omitempty"`
	WaitForDownstream       *bool             `json:"wait_for_downstream,omitempty"`
	Retries                 *float32          `json:"retries,omitempty"`
	Queue                   *string           `json:"queue,omitempty"`
	Pool                    *string           `json:"pool,omitempty"`
	PoolSlots               *float32          `json:"pool_slots,omitempty"`
	ExecutionTimeout        *TimeDelta        `json:"execution_timeout,omitempty"`
	RetryDelay              *TimeDelta        `json:"retry_delay,omitempty"`
	RetryExponentialBackoff *bool             `json:"retry_exponential_backoff,omitempty"`
	PriorityWeight          *float32          `json:"priority_weight,omitempty"`
	WeightRule              *WeightRule       `json:"weight_rule,omitempty"`
	// Color in hexadecimal notation.
	UiColor *string `json:"ui_color,omitempty"`
	// Color in hexadecimal notation.
	UiFgcolor         *string   `json:"ui_fgcolor,omitempty"`
	TemplateFields    *[]string `json:"template_fields,omitempty"`
	SubDag            *DAG      `json:"sub_dag,omitempty"`
	DownstreamTaskIds *[]string `json:"downstream_task_ids,omitempty"`
}

Task For details see: [airflow.models.BaseOperator](https://airflow.apache.org/docs/apache-airflow/stable/_api/airflow/models/index.html#airflow.models.BaseOperator)

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) GetClassRef

func (o *Task) GetClassRef() ClassReference

GetClassRef returns the ClassRef field value if set, zero value otherwise.

func (*Task) GetClassRefOk

func (o *Task) GetClassRefOk() (*ClassReference, bool)

GetClassRefOk returns a tuple with the ClassRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetDependsOnPast

func (o *Task) GetDependsOnPast() bool

GetDependsOnPast returns the DependsOnPast field value if set, zero value otherwise.

func (*Task) GetDependsOnPastOk

func (o *Task) GetDependsOnPastOk() (*bool, bool)

GetDependsOnPastOk returns a tuple with the DependsOnPast field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetDownstreamTaskIds

func (o *Task) GetDownstreamTaskIds() []string

GetDownstreamTaskIds returns the DownstreamTaskIds field value if set, zero value otherwise.

func (*Task) GetDownstreamTaskIdsOk

func (o *Task) GetDownstreamTaskIdsOk() (*[]string, bool)

GetDownstreamTaskIdsOk returns a tuple with the DownstreamTaskIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetEndDate

func (o *Task) GetEndDate() time.Time

GetEndDate returns the EndDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Task) GetEndDateOk

func (o *Task) GetEndDateOk() (*time.Time, bool)

GetEndDateOk returns a tuple with the EndDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Task) GetExecutionTimeout

func (o *Task) GetExecutionTimeout() TimeDelta

GetExecutionTimeout returns the ExecutionTimeout field value if set, zero value otherwise.

func (*Task) GetExecutionTimeoutOk

func (o *Task) GetExecutionTimeoutOk() (*TimeDelta, bool)

GetExecutionTimeoutOk returns a tuple with the ExecutionTimeout field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *Task) GetExtraLinks() []TaskExtraLinks

GetExtraLinks returns the ExtraLinks field value if set, zero value otherwise.

func (*Task) GetExtraLinksOk

func (o *Task) GetExtraLinksOk() (*[]TaskExtraLinks, bool)

GetExtraLinksOk returns a tuple with the ExtraLinks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetIsMapped

func (o *Task) GetIsMapped() bool

GetIsMapped returns the IsMapped field value if set, zero value otherwise.

func (*Task) GetIsMappedOk

func (o *Task) GetIsMappedOk() (*bool, bool)

GetIsMappedOk returns a tuple with the IsMapped field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetOwner

func (o *Task) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*Task) GetOwnerOk

func (o *Task) 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 (*Task) GetPool

func (o *Task) GetPool() string

GetPool returns the Pool field value if set, zero value otherwise.

func (*Task) GetPoolOk

func (o *Task) GetPoolOk() (*string, bool)

GetPoolOk returns a tuple with the Pool field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetPoolSlots

func (o *Task) GetPoolSlots() float32

GetPoolSlots returns the PoolSlots field value if set, zero value otherwise.

func (*Task) GetPoolSlotsOk

func (o *Task) GetPoolSlotsOk() (*float32, bool)

GetPoolSlotsOk returns a tuple with the PoolSlots field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetPriorityWeight

func (o *Task) GetPriorityWeight() float32

GetPriorityWeight returns the PriorityWeight field value if set, zero value otherwise.

func (*Task) GetPriorityWeightOk

func (o *Task) GetPriorityWeightOk() (*float32, bool)

GetPriorityWeightOk returns a tuple with the PriorityWeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetQueue

func (o *Task) GetQueue() string

GetQueue returns the Queue field value if set, zero value otherwise.

func (*Task) GetQueueOk

func (o *Task) GetQueueOk() (*string, bool)

GetQueueOk returns a tuple with the Queue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetRetries

func (o *Task) GetRetries() float32

GetRetries returns the Retries field value if set, zero value otherwise.

func (*Task) GetRetriesOk

func (o *Task) GetRetriesOk() (*float32, bool)

GetRetriesOk returns a tuple with the Retries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetRetryDelay

func (o *Task) GetRetryDelay() TimeDelta

GetRetryDelay returns the RetryDelay field value if set, zero value otherwise.

func (*Task) GetRetryDelayOk

func (o *Task) GetRetryDelayOk() (*TimeDelta, bool)

GetRetryDelayOk returns a tuple with the RetryDelay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetRetryExponentialBackoff

func (o *Task) GetRetryExponentialBackoff() bool

GetRetryExponentialBackoff returns the RetryExponentialBackoff field value if set, zero value otherwise.

func (*Task) GetRetryExponentialBackoffOk

func (o *Task) GetRetryExponentialBackoffOk() (*bool, bool)

GetRetryExponentialBackoffOk returns a tuple with the RetryExponentialBackoff field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetStartDate

func (o *Task) GetStartDate() time.Time

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*Task) GetStartDateOk

func (o *Task) GetStartDateOk() (*time.Time, bool)

GetStartDateOk returns a tuple with the StartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetSubDag

func (o *Task) GetSubDag() DAG

GetSubDag returns the SubDag field value if set, zero value otherwise.

func (*Task) GetSubDagOk

func (o *Task) GetSubDagOk() (*DAG, bool)

GetSubDagOk returns a tuple with the SubDag field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetTaskId

func (o *Task) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*Task) GetTaskIdOk

func (o *Task) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetTemplateFields

func (o *Task) GetTemplateFields() []string

GetTemplateFields returns the TemplateFields field value if set, zero value otherwise.

func (*Task) GetTemplateFieldsOk

func (o *Task) GetTemplateFieldsOk() (*[]string, bool)

GetTemplateFieldsOk returns a tuple with the TemplateFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetTriggerRule

func (o *Task) GetTriggerRule() TriggerRule

GetTriggerRule returns the TriggerRule field value if set, zero value otherwise.

func (*Task) GetTriggerRuleOk

func (o *Task) GetTriggerRuleOk() (*TriggerRule, bool)

GetTriggerRuleOk returns a tuple with the TriggerRule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetUiColor

func (o *Task) GetUiColor() string

GetUiColor returns the UiColor field value if set, zero value otherwise.

func (*Task) GetUiColorOk

func (o *Task) GetUiColorOk() (*string, bool)

GetUiColorOk returns a tuple with the UiColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetUiFgcolor

func (o *Task) GetUiFgcolor() string

GetUiFgcolor returns the UiFgcolor field value if set, zero value otherwise.

func (*Task) GetUiFgcolorOk

func (o *Task) GetUiFgcolorOk() (*string, bool)

GetUiFgcolorOk returns a tuple with the UiFgcolor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetWaitForDownstream

func (o *Task) GetWaitForDownstream() bool

GetWaitForDownstream returns the WaitForDownstream field value if set, zero value otherwise.

func (*Task) GetWaitForDownstreamOk

func (o *Task) GetWaitForDownstreamOk() (*bool, bool)

GetWaitForDownstreamOk returns a tuple with the WaitForDownstream field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) GetWeightRule

func (o *Task) GetWeightRule() WeightRule

GetWeightRule returns the WeightRule field value if set, zero value otherwise.

func (*Task) GetWeightRuleOk

func (o *Task) GetWeightRuleOk() (*WeightRule, bool)

GetWeightRuleOk returns a tuple with the WeightRule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Task) HasClassRef

func (o *Task) HasClassRef() bool

HasClassRef returns a boolean if a field has been set.

func (*Task) HasDependsOnPast

func (o *Task) HasDependsOnPast() bool

HasDependsOnPast returns a boolean if a field has been set.

func (*Task) HasDownstreamTaskIds

func (o *Task) HasDownstreamTaskIds() bool

HasDownstreamTaskIds returns a boolean if a field has been set.

func (*Task) HasEndDate

func (o *Task) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*Task) HasExecutionTimeout

func (o *Task) HasExecutionTimeout() bool

HasExecutionTimeout returns a boolean if a field has been set.

func (o *Task) HasExtraLinks() bool

HasExtraLinks returns a boolean if a field has been set.

func (*Task) HasIsMapped

func (o *Task) HasIsMapped() bool

HasIsMapped returns a boolean if a field has been set.

func (*Task) HasOwner

func (o *Task) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Task) HasPool

func (o *Task) HasPool() bool

HasPool returns a boolean if a field has been set.

func (*Task) HasPoolSlots

func (o *Task) HasPoolSlots() bool

HasPoolSlots returns a boolean if a field has been set.

func (*Task) HasPriorityWeight

func (o *Task) HasPriorityWeight() bool

HasPriorityWeight returns a boolean if a field has been set.

func (*Task) HasQueue

func (o *Task) HasQueue() bool

HasQueue returns a boolean if a field has been set.

func (*Task) HasRetries

func (o *Task) HasRetries() bool

HasRetries returns a boolean if a field has been set.

func (*Task) HasRetryDelay

func (o *Task) HasRetryDelay() bool

HasRetryDelay returns a boolean if a field has been set.

func (*Task) HasRetryExponentialBackoff

func (o *Task) HasRetryExponentialBackoff() bool

HasRetryExponentialBackoff returns a boolean if a field has been set.

func (*Task) HasStartDate

func (o *Task) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*Task) HasSubDag

func (o *Task) HasSubDag() bool

HasSubDag returns a boolean if a field has been set.

func (*Task) HasTaskId

func (o *Task) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*Task) HasTemplateFields

func (o *Task) HasTemplateFields() bool

HasTemplateFields returns a boolean if a field has been set.

func (*Task) HasTriggerRule

func (o *Task) HasTriggerRule() bool

HasTriggerRule returns a boolean if a field has been set.

func (*Task) HasUiColor

func (o *Task) HasUiColor() bool

HasUiColor returns a boolean if a field has been set.

func (*Task) HasUiFgcolor

func (o *Task) HasUiFgcolor() bool

HasUiFgcolor returns a boolean if a field has been set.

func (*Task) HasWaitForDownstream

func (o *Task) HasWaitForDownstream() bool

HasWaitForDownstream returns a boolean if a field has been set.

func (*Task) HasWeightRule

func (o *Task) HasWeightRule() bool

HasWeightRule returns a boolean if a field has been set.

func (Task) MarshalJSON

func (o Task) MarshalJSON() ([]byte, error)

func (*Task) SetClassRef

func (o *Task) SetClassRef(v ClassReference)

SetClassRef gets a reference to the given ClassReference and assigns it to the ClassRef field.

func (*Task) SetDependsOnPast

func (o *Task) SetDependsOnPast(v bool)

SetDependsOnPast gets a reference to the given bool and assigns it to the DependsOnPast field.

func (*Task) SetDownstreamTaskIds

func (o *Task) SetDownstreamTaskIds(v []string)

SetDownstreamTaskIds gets a reference to the given []string and assigns it to the DownstreamTaskIds field.

func (*Task) SetEndDate

func (o *Task) SetEndDate(v time.Time)

SetEndDate gets a reference to the given NullableTime and assigns it to the EndDate field.

func (*Task) SetEndDateNil

func (o *Task) SetEndDateNil()

SetEndDateNil sets the value for EndDate to be an explicit nil

func (*Task) SetExecutionTimeout

func (o *Task) SetExecutionTimeout(v TimeDelta)

SetExecutionTimeout gets a reference to the given TimeDelta and assigns it to the ExecutionTimeout field.

func (o *Task) SetExtraLinks(v []TaskExtraLinks)

SetExtraLinks gets a reference to the given []TaskExtraLinks and assigns it to the ExtraLinks field.

func (*Task) SetIsMapped

func (o *Task) SetIsMapped(v bool)

SetIsMapped gets a reference to the given bool and assigns it to the IsMapped field.

func (*Task) SetOwner

func (o *Task) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*Task) SetPool

func (o *Task) SetPool(v string)

SetPool gets a reference to the given string and assigns it to the Pool field.

func (*Task) SetPoolSlots

func (o *Task) SetPoolSlots(v float32)

SetPoolSlots gets a reference to the given float32 and assigns it to the PoolSlots field.

func (*Task) SetPriorityWeight

func (o *Task) SetPriorityWeight(v float32)

SetPriorityWeight gets a reference to the given float32 and assigns it to the PriorityWeight field.

func (*Task) SetQueue

func (o *Task) SetQueue(v string)

SetQueue gets a reference to the given string and assigns it to the Queue field.

func (*Task) SetRetries

func (o *Task) SetRetries(v float32)

SetRetries gets a reference to the given float32 and assigns it to the Retries field.

func (*Task) SetRetryDelay

func (o *Task) SetRetryDelay(v TimeDelta)

SetRetryDelay gets a reference to the given TimeDelta and assigns it to the RetryDelay field.

func (*Task) SetRetryExponentialBackoff

func (o *Task) SetRetryExponentialBackoff(v bool)

SetRetryExponentialBackoff gets a reference to the given bool and assigns it to the RetryExponentialBackoff field.

func (*Task) SetStartDate

func (o *Task) SetStartDate(v time.Time)

SetStartDate gets a reference to the given time.Time and assigns it to the StartDate field.

func (*Task) SetSubDag

func (o *Task) SetSubDag(v DAG)

SetSubDag gets a reference to the given DAG and assigns it to the SubDag field.

func (*Task) SetTaskId

func (o *Task) SetTaskId(v string)

SetTaskId gets a reference to the given string and assigns it to the TaskId field.

func (*Task) SetTemplateFields

func (o *Task) SetTemplateFields(v []string)

SetTemplateFields gets a reference to the given []string and assigns it to the TemplateFields field.

func (*Task) SetTriggerRule

func (o *Task) SetTriggerRule(v TriggerRule)

SetTriggerRule gets a reference to the given TriggerRule and assigns it to the TriggerRule field.

func (*Task) SetUiColor

func (o *Task) SetUiColor(v string)

SetUiColor gets a reference to the given string and assigns it to the UiColor field.

func (*Task) SetUiFgcolor

func (o *Task) SetUiFgcolor(v string)

SetUiFgcolor gets a reference to the given string and assigns it to the UiFgcolor field.

func (*Task) SetWaitForDownstream

func (o *Task) SetWaitForDownstream(v bool)

SetWaitForDownstream gets a reference to the given bool and assigns it to the WaitForDownstream field.

func (*Task) SetWeightRule

func (o *Task) SetWeightRule(v WeightRule)

SetWeightRule gets a reference to the given WeightRule and assigns it to the WeightRule field.

func (*Task) UnsetEndDate

func (o *Task) UnsetEndDate()

UnsetEndDate ensures that no value is present for EndDate, not even an explicit nil

type TaskCollection

type TaskCollection struct {
	Tasks *[]Task `json:"tasks,omitempty"`
}

TaskCollection Collection of tasks.

func NewTaskCollection

func NewTaskCollection() *TaskCollection

NewTaskCollection instantiates a new TaskCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskCollectionWithDefaults

func NewTaskCollectionWithDefaults() *TaskCollection

NewTaskCollectionWithDefaults instantiates a new TaskCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskCollection) GetTasks

func (o *TaskCollection) GetTasks() []Task

GetTasks returns the Tasks field value if set, zero value otherwise.

func (*TaskCollection) GetTasksOk

func (o *TaskCollection) GetTasksOk() (*[]Task, 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 (*TaskCollection) HasTasks

func (o *TaskCollection) HasTasks() bool

HasTasks returns a boolean if a field has been set.

func (TaskCollection) MarshalJSON

func (o TaskCollection) MarshalJSON() ([]byte, error)

func (*TaskCollection) SetTasks

func (o *TaskCollection) SetTasks(v []Task)

SetTasks gets a reference to the given []Task and assigns it to the Tasks field.

type TaskExtraLinks struct {
	ClassRef *ClassReference `json:"class_ref,omitempty"`
}

TaskExtraLinks struct for TaskExtraLinks

func NewTaskExtraLinks() *TaskExtraLinks

NewTaskExtraLinks instantiates a new TaskExtraLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskExtraLinksWithDefaults

func NewTaskExtraLinksWithDefaults() *TaskExtraLinks

NewTaskExtraLinksWithDefaults instantiates a new TaskExtraLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskExtraLinks) GetClassRef

func (o *TaskExtraLinks) GetClassRef() ClassReference

GetClassRef returns the ClassRef field value if set, zero value otherwise.

func (*TaskExtraLinks) GetClassRefOk

func (o *TaskExtraLinks) GetClassRefOk() (*ClassReference, bool)

GetClassRefOk returns a tuple with the ClassRef field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskExtraLinks) HasClassRef

func (o *TaskExtraLinks) HasClassRef() bool

HasClassRef returns a boolean if a field has been set.

func (TaskExtraLinks) MarshalJSON

func (o TaskExtraLinks) MarshalJSON() ([]byte, error)

func (*TaskExtraLinks) SetClassRef

func (o *TaskExtraLinks) SetClassRef(v ClassReference)

SetClassRef gets a reference to the given ClassReference and assigns it to the ClassRef field.

type TaskInstance

type TaskInstance struct {
	TaskId *string `json:"task_id,omitempty"`
	DagId  *string `json:"dag_id,omitempty"`
	// The DagRun ID for this task instance  *New in version 2.3.0*
	DagRunId       *string         `json:"dag_run_id,omitempty"`
	ExecutionDate  *string         `json:"execution_date,omitempty"`
	StartDate      NullableString  `json:"start_date,omitempty"`
	EndDate        NullableString  `json:"end_date,omitempty"`
	Duration       NullableFloat32 `json:"duration,omitempty"`
	State          *TaskState      `json:"state,omitempty"`
	TryNumber      *int32          `json:"try_number,omitempty"`
	MaxTries       *int32          `json:"max_tries,omitempty"`
	Hostname       *string         `json:"hostname,omitempty"`
	Unixname       *string         `json:"unixname,omitempty"`
	Pool           *string         `json:"pool,omitempty"`
	PoolSlots      *int32          `json:"pool_slots,omitempty"`
	Queue          *string         `json:"queue,omitempty"`
	PriorityWeight *int32          `json:"priority_weight,omitempty"`
	// *Changed in version 2.1.1*: Field becomes nullable.
	Operator       NullableString `json:"operator,omitempty"`
	QueuedWhen     NullableString `json:"queued_when,omitempty"`
	Pid            NullableInt32  `json:"pid,omitempty"`
	ExecutorConfig *string        `json:"executor_config,omitempty"`
	SlaMiss        *SLAMiss       `json:"sla_miss,omitempty"`
	// JSON object describing rendered fields.  *New in version 2.3.0*
	RenderedFields *map[string]interface{} `json:"rendered_fields,omitempty"`
}

TaskInstance struct for TaskInstance

func NewTaskInstance

func NewTaskInstance() *TaskInstance

NewTaskInstance instantiates a new TaskInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskInstanceWithDefaults

func NewTaskInstanceWithDefaults() *TaskInstance

NewTaskInstanceWithDefaults instantiates a new TaskInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskInstance) GetDagId

func (o *TaskInstance) GetDagId() string

GetDagId returns the DagId field value if set, zero value otherwise.

func (*TaskInstance) GetDagIdOk

func (o *TaskInstance) GetDagIdOk() (*string, bool)

GetDagIdOk returns a tuple with the DagId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetDagRunId

func (o *TaskInstance) GetDagRunId() string

GetDagRunId returns the DagRunId field value if set, zero value otherwise.

func (*TaskInstance) GetDagRunIdOk

func (o *TaskInstance) GetDagRunIdOk() (*string, bool)

GetDagRunIdOk returns a tuple with the DagRunId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetDuration

func (o *TaskInstance) GetDuration() float32

GetDuration returns the Duration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskInstance) GetDurationOk

func (o *TaskInstance) GetDurationOk() (*float32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskInstance) GetEndDate

func (o *TaskInstance) GetEndDate() string

GetEndDate returns the EndDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskInstance) GetEndDateOk

func (o *TaskInstance) GetEndDateOk() (*string, bool)

GetEndDateOk returns a tuple with the EndDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskInstance) GetExecutionDate

func (o *TaskInstance) GetExecutionDate() string

GetExecutionDate returns the ExecutionDate field value if set, zero value otherwise.

func (*TaskInstance) GetExecutionDateOk

func (o *TaskInstance) GetExecutionDateOk() (*string, bool)

GetExecutionDateOk returns a tuple with the ExecutionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetExecutorConfig

func (o *TaskInstance) GetExecutorConfig() string

GetExecutorConfig returns the ExecutorConfig field value if set, zero value otherwise.

func (*TaskInstance) GetExecutorConfigOk

func (o *TaskInstance) GetExecutorConfigOk() (*string, bool)

GetExecutorConfigOk returns a tuple with the ExecutorConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetHostname

func (o *TaskInstance) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*TaskInstance) GetHostnameOk

func (o *TaskInstance) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetMaxTries

func (o *TaskInstance) GetMaxTries() int32

GetMaxTries returns the MaxTries field value if set, zero value otherwise.

func (*TaskInstance) GetMaxTriesOk

func (o *TaskInstance) GetMaxTriesOk() (*int32, bool)

GetMaxTriesOk returns a tuple with the MaxTries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetOperator

func (o *TaskInstance) GetOperator() string

GetOperator returns the Operator field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskInstance) GetOperatorOk

func (o *TaskInstance) GetOperatorOk() (*string, bool)

GetOperatorOk returns a tuple with the Operator field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskInstance) GetPid

func (o *TaskInstance) GetPid() int32

GetPid returns the Pid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskInstance) GetPidOk

func (o *TaskInstance) GetPidOk() (*int32, bool)

GetPidOk returns a tuple with the Pid field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskInstance) GetPool

func (o *TaskInstance) GetPool() string

GetPool returns the Pool field value if set, zero value otherwise.

func (*TaskInstance) GetPoolOk

func (o *TaskInstance) GetPoolOk() (*string, bool)

GetPoolOk returns a tuple with the Pool field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetPoolSlots

func (o *TaskInstance) GetPoolSlots() int32

GetPoolSlots returns the PoolSlots field value if set, zero value otherwise.

func (*TaskInstance) GetPoolSlotsOk

func (o *TaskInstance) GetPoolSlotsOk() (*int32, bool)

GetPoolSlotsOk returns a tuple with the PoolSlots field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetPriorityWeight

func (o *TaskInstance) GetPriorityWeight() int32

GetPriorityWeight returns the PriorityWeight field value if set, zero value otherwise.

func (*TaskInstance) GetPriorityWeightOk

func (o *TaskInstance) GetPriorityWeightOk() (*int32, bool)

GetPriorityWeightOk returns a tuple with the PriorityWeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetQueue

func (o *TaskInstance) GetQueue() string

GetQueue returns the Queue field value if set, zero value otherwise.

func (*TaskInstance) GetQueueOk

func (o *TaskInstance) GetQueueOk() (*string, bool)

GetQueueOk returns a tuple with the Queue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetQueuedWhen

func (o *TaskInstance) GetQueuedWhen() string

GetQueuedWhen returns the QueuedWhen field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskInstance) GetQueuedWhenOk

func (o *TaskInstance) GetQueuedWhenOk() (*string, bool)

GetQueuedWhenOk returns a tuple with the QueuedWhen field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskInstance) GetRenderedFields

func (o *TaskInstance) GetRenderedFields() map[string]interface{}

GetRenderedFields returns the RenderedFields field value if set, zero value otherwise.

func (*TaskInstance) GetRenderedFieldsOk

func (o *TaskInstance) GetRenderedFieldsOk() (*map[string]interface{}, bool)

GetRenderedFieldsOk returns a tuple with the RenderedFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetSlaMiss

func (o *TaskInstance) GetSlaMiss() SLAMiss

GetSlaMiss returns the SlaMiss field value if set, zero value otherwise.

func (*TaskInstance) GetSlaMissOk

func (o *TaskInstance) GetSlaMissOk() (*SLAMiss, bool)

GetSlaMissOk returns a tuple with the SlaMiss field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetStartDate

func (o *TaskInstance) GetStartDate() string

GetStartDate returns the StartDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskInstance) GetStartDateOk

func (o *TaskInstance) GetStartDateOk() (*string, bool)

GetStartDateOk returns a tuple with the StartDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskInstance) GetState

func (o *TaskInstance) GetState() TaskState

GetState returns the State field value if set, zero value otherwise.

func (*TaskInstance) GetStateOk

func (o *TaskInstance) GetStateOk() (*TaskState, 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 (*TaskInstance) GetTaskId

func (o *TaskInstance) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*TaskInstance) GetTaskIdOk

func (o *TaskInstance) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetTryNumber

func (o *TaskInstance) GetTryNumber() int32

GetTryNumber returns the TryNumber field value if set, zero value otherwise.

func (*TaskInstance) GetTryNumberOk

func (o *TaskInstance) GetTryNumberOk() (*int32, bool)

GetTryNumberOk returns a tuple with the TryNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) GetUnixname

func (o *TaskInstance) GetUnixname() string

GetUnixname returns the Unixname field value if set, zero value otherwise.

func (*TaskInstance) GetUnixnameOk

func (o *TaskInstance) GetUnixnameOk() (*string, bool)

GetUnixnameOk returns a tuple with the Unixname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstance) HasDagId

func (o *TaskInstance) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*TaskInstance) HasDagRunId

func (o *TaskInstance) HasDagRunId() bool

HasDagRunId returns a boolean if a field has been set.

func (*TaskInstance) HasDuration

func (o *TaskInstance) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*TaskInstance) HasEndDate

func (o *TaskInstance) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

func (*TaskInstance) HasExecutionDate

func (o *TaskInstance) HasExecutionDate() bool

HasExecutionDate returns a boolean if a field has been set.

func (*TaskInstance) HasExecutorConfig

func (o *TaskInstance) HasExecutorConfig() bool

HasExecutorConfig returns a boolean if a field has been set.

func (*TaskInstance) HasHostname

func (o *TaskInstance) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*TaskInstance) HasMaxTries

func (o *TaskInstance) HasMaxTries() bool

HasMaxTries returns a boolean if a field has been set.

func (*TaskInstance) HasOperator

func (o *TaskInstance) HasOperator() bool

HasOperator returns a boolean if a field has been set.

func (*TaskInstance) HasPid

func (o *TaskInstance) HasPid() bool

HasPid returns a boolean if a field has been set.

func (*TaskInstance) HasPool

func (o *TaskInstance) HasPool() bool

HasPool returns a boolean if a field has been set.

func (*TaskInstance) HasPoolSlots

func (o *TaskInstance) HasPoolSlots() bool

HasPoolSlots returns a boolean if a field has been set.

func (*TaskInstance) HasPriorityWeight

func (o *TaskInstance) HasPriorityWeight() bool

HasPriorityWeight returns a boolean if a field has been set.

func (*TaskInstance) HasQueue

func (o *TaskInstance) HasQueue() bool

HasQueue returns a boolean if a field has been set.

func (*TaskInstance) HasQueuedWhen

func (o *TaskInstance) HasQueuedWhen() bool

HasQueuedWhen returns a boolean if a field has been set.

func (*TaskInstance) HasRenderedFields

func (o *TaskInstance) HasRenderedFields() bool

HasRenderedFields returns a boolean if a field has been set.

func (*TaskInstance) HasSlaMiss

func (o *TaskInstance) HasSlaMiss() bool

HasSlaMiss returns a boolean if a field has been set.

func (*TaskInstance) HasStartDate

func (o *TaskInstance) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

func (*TaskInstance) HasState

func (o *TaskInstance) HasState() bool

HasState returns a boolean if a field has been set.

func (*TaskInstance) HasTaskId

func (o *TaskInstance) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*TaskInstance) HasTryNumber

func (o *TaskInstance) HasTryNumber() bool

HasTryNumber returns a boolean if a field has been set.

func (*TaskInstance) HasUnixname

func (o *TaskInstance) HasUnixname() bool

HasUnixname returns a boolean if a field has been set.

func (TaskInstance) MarshalJSON

func (o TaskInstance) MarshalJSON() ([]byte, error)

func (*TaskInstance) SetDagId

func (o *TaskInstance) SetDagId(v string)

SetDagId gets a reference to the given string and assigns it to the DagId field.

func (*TaskInstance) SetDagRunId

func (o *TaskInstance) SetDagRunId(v string)

SetDagRunId gets a reference to the given string and assigns it to the DagRunId field.

func (*TaskInstance) SetDuration

func (o *TaskInstance) SetDuration(v float32)

SetDuration gets a reference to the given NullableFloat32 and assigns it to the Duration field.

func (*TaskInstance) SetDurationNil

func (o *TaskInstance) SetDurationNil()

SetDurationNil sets the value for Duration to be an explicit nil

func (*TaskInstance) SetEndDate

func (o *TaskInstance) SetEndDate(v string)

SetEndDate gets a reference to the given NullableString and assigns it to the EndDate field.

func (*TaskInstance) SetEndDateNil

func (o *TaskInstance) SetEndDateNil()

SetEndDateNil sets the value for EndDate to be an explicit nil

func (*TaskInstance) SetExecutionDate

func (o *TaskInstance) SetExecutionDate(v string)

SetExecutionDate gets a reference to the given string and assigns it to the ExecutionDate field.

func (*TaskInstance) SetExecutorConfig

func (o *TaskInstance) SetExecutorConfig(v string)

SetExecutorConfig gets a reference to the given string and assigns it to the ExecutorConfig field.

func (*TaskInstance) SetHostname

func (o *TaskInstance) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*TaskInstance) SetMaxTries

func (o *TaskInstance) SetMaxTries(v int32)

SetMaxTries gets a reference to the given int32 and assigns it to the MaxTries field.

func (*TaskInstance) SetOperator

func (o *TaskInstance) SetOperator(v string)

SetOperator gets a reference to the given NullableString and assigns it to the Operator field.

func (*TaskInstance) SetOperatorNil

func (o *TaskInstance) SetOperatorNil()

SetOperatorNil sets the value for Operator to be an explicit nil

func (*TaskInstance) SetPid

func (o *TaskInstance) SetPid(v int32)

SetPid gets a reference to the given NullableInt32 and assigns it to the Pid field.

func (*TaskInstance) SetPidNil

func (o *TaskInstance) SetPidNil()

SetPidNil sets the value for Pid to be an explicit nil

func (*TaskInstance) SetPool

func (o *TaskInstance) SetPool(v string)

SetPool gets a reference to the given string and assigns it to the Pool field.

func (*TaskInstance) SetPoolSlots

func (o *TaskInstance) SetPoolSlots(v int32)

SetPoolSlots gets a reference to the given int32 and assigns it to the PoolSlots field.

func (*TaskInstance) SetPriorityWeight

func (o *TaskInstance) SetPriorityWeight(v int32)

SetPriorityWeight gets a reference to the given int32 and assigns it to the PriorityWeight field.

func (*TaskInstance) SetQueue

func (o *TaskInstance) SetQueue(v string)

SetQueue gets a reference to the given string and assigns it to the Queue field.

func (*TaskInstance) SetQueuedWhen

func (o *TaskInstance) SetQueuedWhen(v string)

SetQueuedWhen gets a reference to the given NullableString and assigns it to the QueuedWhen field.

func (*TaskInstance) SetQueuedWhenNil

func (o *TaskInstance) SetQueuedWhenNil()

SetQueuedWhenNil sets the value for QueuedWhen to be an explicit nil

func (*TaskInstance) SetRenderedFields

func (o *TaskInstance) SetRenderedFields(v map[string]interface{})

SetRenderedFields gets a reference to the given map[string]interface{} and assigns it to the RenderedFields field.

func (*TaskInstance) SetSlaMiss

func (o *TaskInstance) SetSlaMiss(v SLAMiss)

SetSlaMiss gets a reference to the given SLAMiss and assigns it to the SlaMiss field.

func (*TaskInstance) SetStartDate

func (o *TaskInstance) SetStartDate(v string)

SetStartDate gets a reference to the given NullableString and assigns it to the StartDate field.

func (*TaskInstance) SetStartDateNil

func (o *TaskInstance) SetStartDateNil()

SetStartDateNil sets the value for StartDate to be an explicit nil

func (*TaskInstance) SetState

func (o *TaskInstance) SetState(v TaskState)

SetState gets a reference to the given TaskState and assigns it to the State field.

func (*TaskInstance) SetTaskId

func (o *TaskInstance) SetTaskId(v string)

SetTaskId gets a reference to the given string and assigns it to the TaskId field.

func (*TaskInstance) SetTryNumber

func (o *TaskInstance) SetTryNumber(v int32)

SetTryNumber gets a reference to the given int32 and assigns it to the TryNumber field.

func (*TaskInstance) SetUnixname

func (o *TaskInstance) SetUnixname(v string)

SetUnixname gets a reference to the given string and assigns it to the Unixname field.

func (*TaskInstance) UnsetDuration

func (o *TaskInstance) UnsetDuration()

UnsetDuration ensures that no value is present for Duration, not even an explicit nil

func (*TaskInstance) UnsetEndDate

func (o *TaskInstance) UnsetEndDate()

UnsetEndDate ensures that no value is present for EndDate, not even an explicit nil

func (*TaskInstance) UnsetOperator

func (o *TaskInstance) UnsetOperator()

UnsetOperator ensures that no value is present for Operator, not even an explicit nil

func (*TaskInstance) UnsetPid

func (o *TaskInstance) UnsetPid()

UnsetPid ensures that no value is present for Pid, not even an explicit nil

func (*TaskInstance) UnsetQueuedWhen

func (o *TaskInstance) UnsetQueuedWhen()

UnsetQueuedWhen ensures that no value is present for QueuedWhen, not even an explicit nil

func (*TaskInstance) UnsetStartDate

func (o *TaskInstance) UnsetStartDate()

UnsetStartDate ensures that no value is present for StartDate, not even an explicit nil

type TaskInstanceApiService

type TaskInstanceApiService service

TaskInstanceApiService TaskInstanceApi service

func (a *TaskInstanceApiService) GetExtraLinks(ctx _context.Context, dagId string, dagRunId string, taskId string) ApiGetExtraLinksRequest

GetExtraLinks List extra links

List extra links for task instance.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@param taskId The task ID.
@return ApiGetExtraLinksRequest

func (*TaskInstanceApiService) GetExtraLinksExecute

Execute executes the request

@return ExtraLinkCollection

func (*TaskInstanceApiService) GetLog

func (a *TaskInstanceApiService) GetLog(ctx _context.Context, dagId string, dagRunId string, taskId string, taskTryNumber int32) ApiGetLogRequest

GetLog Get logs

Get logs for a specific task instance and its try number.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@param taskId The task ID.
@param taskTryNumber The task try number.
@return ApiGetLogRequest

func (*TaskInstanceApiService) GetLogExecute

Execute executes the request

@return InlineResponse200

func (*TaskInstanceApiService) GetMappedTaskInstance

func (a *TaskInstanceApiService) GetMappedTaskInstance(ctx _context.Context, dagId string, dagRunId string, taskId string, mapIndex int32) ApiGetMappedTaskInstanceRequest

GetMappedTaskInstance Get a mapped task instance

Get details of a mapped task instance.

*New in version 2.3.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@param taskId The task ID.
@param mapIndex The map index.
@return ApiGetMappedTaskInstanceRequest

func (*TaskInstanceApiService) GetMappedTaskInstanceExecute

Execute executes the request

@return TaskInstance

func (*TaskInstanceApiService) GetMappedTaskInstances

func (a *TaskInstanceApiService) GetMappedTaskInstances(ctx _context.Context, dagId string, dagRunId string, taskId string) ApiGetMappedTaskInstancesRequest

GetMappedTaskInstances List mapped task instances

Get details of all mapped task instances.

*New in version 2.3.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@param taskId The task ID.
@return ApiGetMappedTaskInstancesRequest

func (*TaskInstanceApiService) GetMappedTaskInstancesExecute

Execute executes the request

@return TaskInstance

func (*TaskInstanceApiService) GetTaskInstance

func (a *TaskInstanceApiService) GetTaskInstance(ctx _context.Context, dagId string, dagRunId string, taskId string) ApiGetTaskInstanceRequest

GetTaskInstance Get a task instance

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@param taskId The task ID.
@return ApiGetTaskInstanceRequest

func (*TaskInstanceApiService) GetTaskInstanceExecute

Execute executes the request

@return TaskInstance

func (*TaskInstanceApiService) GetTaskInstances

func (a *TaskInstanceApiService) GetTaskInstances(ctx _context.Context, dagId string, dagRunId string) ApiGetTaskInstancesRequest

GetTaskInstances List task instances

This endpoint allows specifying `~` as the dag_id, dag_run_id to retrieve DAG runs for all DAGs and DAG runs.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@return ApiGetTaskInstancesRequest

func (*TaskInstanceApiService) GetTaskInstancesBatch

GetTaskInstancesBatch List task instances (batch)

List task instances from all DAGs and DAG runs. This endpoint is a POST to allow filtering across a large number of DAG IDs, where as a GET it would run in to maximum HTTP request URL length limits.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetTaskInstancesBatchRequest

func (*TaskInstanceApiService) GetTaskInstancesBatchExecute

Execute executes the request

@return TaskInstanceCollection

func (*TaskInstanceApiService) GetTaskInstancesExecute

Execute executes the request

@return TaskInstanceCollection

type TaskInstanceCollection

type TaskInstanceCollection struct {
	TaskInstances *[]TaskInstance `json:"task_instances,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

TaskInstanceCollection Collection of task instances. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewTaskInstanceCollection

func NewTaskInstanceCollection() *TaskInstanceCollection

NewTaskInstanceCollection instantiates a new TaskInstanceCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskInstanceCollectionWithDefaults

func NewTaskInstanceCollectionWithDefaults() *TaskInstanceCollection

NewTaskInstanceCollectionWithDefaults instantiates a new TaskInstanceCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskInstanceCollection) GetTaskInstances

func (o *TaskInstanceCollection) GetTaskInstances() []TaskInstance

GetTaskInstances returns the TaskInstances field value if set, zero value otherwise.

func (*TaskInstanceCollection) GetTaskInstancesOk

func (o *TaskInstanceCollection) GetTaskInstancesOk() (*[]TaskInstance, bool)

GetTaskInstancesOk returns a tuple with the TaskInstances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstanceCollection) GetTotalEntries

func (o *TaskInstanceCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*TaskInstanceCollection) GetTotalEntriesOk

func (o *TaskInstanceCollection) GetTotalEntriesOk() (*int32, bool)

GetTotalEntriesOk returns a tuple with the TotalEntries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstanceCollection) HasTaskInstances

func (o *TaskInstanceCollection) HasTaskInstances() bool

HasTaskInstances returns a boolean if a field has been set.

func (*TaskInstanceCollection) HasTotalEntries

func (o *TaskInstanceCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (TaskInstanceCollection) MarshalJSON

func (o TaskInstanceCollection) MarshalJSON() ([]byte, error)

func (*TaskInstanceCollection) SetTaskInstances

func (o *TaskInstanceCollection) SetTaskInstances(v []TaskInstance)

SetTaskInstances gets a reference to the given []TaskInstance and assigns it to the TaskInstances field.

func (*TaskInstanceCollection) SetTotalEntries

func (o *TaskInstanceCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

type TaskInstanceCollectionAllOf

type TaskInstanceCollectionAllOf struct {
	TaskInstances *[]TaskInstance `json:"task_instances,omitempty"`
}

TaskInstanceCollectionAllOf struct for TaskInstanceCollectionAllOf

func NewTaskInstanceCollectionAllOf

func NewTaskInstanceCollectionAllOf() *TaskInstanceCollectionAllOf

NewTaskInstanceCollectionAllOf instantiates a new TaskInstanceCollectionAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskInstanceCollectionAllOfWithDefaults

func NewTaskInstanceCollectionAllOfWithDefaults() *TaskInstanceCollectionAllOf

NewTaskInstanceCollectionAllOfWithDefaults instantiates a new TaskInstanceCollectionAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskInstanceCollectionAllOf) GetTaskInstances

func (o *TaskInstanceCollectionAllOf) GetTaskInstances() []TaskInstance

GetTaskInstances returns the TaskInstances field value if set, zero value otherwise.

func (*TaskInstanceCollectionAllOf) GetTaskInstancesOk

func (o *TaskInstanceCollectionAllOf) GetTaskInstancesOk() (*[]TaskInstance, bool)

GetTaskInstancesOk returns a tuple with the TaskInstances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstanceCollectionAllOf) HasTaskInstances

func (o *TaskInstanceCollectionAllOf) HasTaskInstances() bool

HasTaskInstances returns a boolean if a field has been set.

func (TaskInstanceCollectionAllOf) MarshalJSON

func (o TaskInstanceCollectionAllOf) MarshalJSON() ([]byte, error)

func (*TaskInstanceCollectionAllOf) SetTaskInstances

func (o *TaskInstanceCollectionAllOf) SetTaskInstances(v []TaskInstance)

SetTaskInstances gets a reference to the given []TaskInstance and assigns it to the TaskInstances field.

type TaskInstanceReference

type TaskInstanceReference struct {
	// The task ID.
	TaskId *string `json:"task_id,omitempty"`
	// The DAG ID.
	DagId         *string `json:"dag_id,omitempty"`
	ExecutionDate *string `json:"execution_date,omitempty"`
	// The DAG run ID.
	DagRunId *string `json:"dag_run_id,omitempty"`
}

TaskInstanceReference struct for TaskInstanceReference

func NewTaskInstanceReference

func NewTaskInstanceReference() *TaskInstanceReference

NewTaskInstanceReference instantiates a new TaskInstanceReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskInstanceReferenceWithDefaults

func NewTaskInstanceReferenceWithDefaults() *TaskInstanceReference

NewTaskInstanceReferenceWithDefaults instantiates a new TaskInstanceReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskInstanceReference) GetDagId

func (o *TaskInstanceReference) GetDagId() string

GetDagId returns the DagId field value if set, zero value otherwise.

func (*TaskInstanceReference) GetDagIdOk

func (o *TaskInstanceReference) GetDagIdOk() (*string, bool)

GetDagIdOk returns a tuple with the DagId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstanceReference) GetDagRunId

func (o *TaskInstanceReference) GetDagRunId() string

GetDagRunId returns the DagRunId field value if set, zero value otherwise.

func (*TaskInstanceReference) GetDagRunIdOk

func (o *TaskInstanceReference) GetDagRunIdOk() (*string, bool)

GetDagRunIdOk returns a tuple with the DagRunId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstanceReference) GetExecutionDate

func (o *TaskInstanceReference) GetExecutionDate() string

GetExecutionDate returns the ExecutionDate field value if set, zero value otherwise.

func (*TaskInstanceReference) GetExecutionDateOk

func (o *TaskInstanceReference) GetExecutionDateOk() (*string, bool)

GetExecutionDateOk returns a tuple with the ExecutionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstanceReference) GetTaskId

func (o *TaskInstanceReference) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*TaskInstanceReference) GetTaskIdOk

func (o *TaskInstanceReference) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstanceReference) HasDagId

func (o *TaskInstanceReference) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*TaskInstanceReference) HasDagRunId

func (o *TaskInstanceReference) HasDagRunId() bool

HasDagRunId returns a boolean if a field has been set.

func (*TaskInstanceReference) HasExecutionDate

func (o *TaskInstanceReference) HasExecutionDate() bool

HasExecutionDate returns a boolean if a field has been set.

func (*TaskInstanceReference) HasTaskId

func (o *TaskInstanceReference) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (TaskInstanceReference) MarshalJSON

func (o TaskInstanceReference) MarshalJSON() ([]byte, error)

func (*TaskInstanceReference) SetDagId

func (o *TaskInstanceReference) SetDagId(v string)

SetDagId gets a reference to the given string and assigns it to the DagId field.

func (*TaskInstanceReference) SetDagRunId

func (o *TaskInstanceReference) SetDagRunId(v string)

SetDagRunId gets a reference to the given string and assigns it to the DagRunId field.

func (*TaskInstanceReference) SetExecutionDate

func (o *TaskInstanceReference) SetExecutionDate(v string)

SetExecutionDate gets a reference to the given string and assigns it to the ExecutionDate field.

func (*TaskInstanceReference) SetTaskId

func (o *TaskInstanceReference) SetTaskId(v string)

SetTaskId gets a reference to the given string and assigns it to the TaskId field.

type TaskInstanceReferenceCollection

type TaskInstanceReferenceCollection struct {
	TaskInstances *[]TaskInstanceReference `json:"task_instances,omitempty"`
}

TaskInstanceReferenceCollection struct for TaskInstanceReferenceCollection

func NewTaskInstanceReferenceCollection

func NewTaskInstanceReferenceCollection() *TaskInstanceReferenceCollection

NewTaskInstanceReferenceCollection instantiates a new TaskInstanceReferenceCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaskInstanceReferenceCollectionWithDefaults

func NewTaskInstanceReferenceCollectionWithDefaults() *TaskInstanceReferenceCollection

NewTaskInstanceReferenceCollectionWithDefaults instantiates a new TaskInstanceReferenceCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaskInstanceReferenceCollection) GetTaskInstances

GetTaskInstances returns the TaskInstances field value if set, zero value otherwise.

func (*TaskInstanceReferenceCollection) GetTaskInstancesOk

func (o *TaskInstanceReferenceCollection) GetTaskInstancesOk() (*[]TaskInstanceReference, bool)

GetTaskInstancesOk returns a tuple with the TaskInstances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaskInstanceReferenceCollection) HasTaskInstances

func (o *TaskInstanceReferenceCollection) HasTaskInstances() bool

HasTaskInstances returns a boolean if a field has been set.

func (TaskInstanceReferenceCollection) MarshalJSON

func (o TaskInstanceReferenceCollection) MarshalJSON() ([]byte, error)

func (*TaskInstanceReferenceCollection) SetTaskInstances

func (o *TaskInstanceReferenceCollection) SetTaskInstances(v []TaskInstanceReference)

SetTaskInstances gets a reference to the given []TaskInstanceReference and assigns it to the TaskInstances field.

type TaskState

type TaskState string

TaskState Task state. *Changed in version 2.0.2*: 'removed' is added as a possible value. *Changed in version 2.2.0*: 'deferred' and 'sensing' is added as a possible value.

const (
	TASKSTATE_SUCCESS           TaskState = "success"
	TASKSTATE_RUNNING           TaskState = "running"
	TASKSTATE_FAILED            TaskState = "failed"
	TASKSTATE_UPSTREAM_FAILED   TaskState = "upstream_failed"
	TASKSTATE_SKIPPED           TaskState = "skipped"
	TASKSTATE_UP_FOR_RETRY      TaskState = "up_for_retry"
	TASKSTATE_UP_FOR_RESCHEDULE TaskState = "up_for_reschedule"
	TASKSTATE_QUEUED            TaskState = "queued"
	TASKSTATE_NONE              TaskState = "none"
	TASKSTATE_SCHEDULED         TaskState = "scheduled"
	TASKSTATE_DEFERRED          TaskState = "deferred"
	TASKSTATE_SENSING           TaskState = "sensing"
	TASKSTATE_REMOVED           TaskState = "removed"
)

List of TaskState

func NewTaskStateFromValue

func NewTaskStateFromValue(v string) (*TaskState, error)

NewTaskStateFromValue returns a pointer to a valid TaskState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TaskState) IsValid

func (v TaskState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TaskState) Ptr

func (v TaskState) Ptr() *TaskState

Ptr returns reference to TaskState value

func (*TaskState) UnmarshalJSON

func (v *TaskState) UnmarshalJSON(src []byte) error

type TimeDelta

type TimeDelta struct {
	Type         string `json:"__type"`
	Days         int32  `json:"days"`
	Seconds      int32  `json:"seconds"`
	Microseconds int32  `json:"microseconds"`
}

TimeDelta Time delta

func NewTimeDelta

func NewTimeDelta(type_ string, days int32, seconds int32, microseconds int32) *TimeDelta

NewTimeDelta instantiates a new TimeDelta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTimeDeltaWithDefaults

func NewTimeDeltaWithDefaults() *TimeDelta

NewTimeDeltaWithDefaults instantiates a new TimeDelta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TimeDelta) GetDays

func (o *TimeDelta) GetDays() int32

GetDays returns the Days field value

func (*TimeDelta) GetDaysOk

func (o *TimeDelta) GetDaysOk() (*int32, bool)

GetDaysOk returns a tuple with the Days field value and a boolean to check if the value has been set.

func (*TimeDelta) GetMicroseconds

func (o *TimeDelta) GetMicroseconds() int32

GetMicroseconds returns the Microseconds field value

func (*TimeDelta) GetMicrosecondsOk

func (o *TimeDelta) GetMicrosecondsOk() (*int32, bool)

GetMicrosecondsOk returns a tuple with the Microseconds field value and a boolean to check if the value has been set.

func (*TimeDelta) GetSeconds

func (o *TimeDelta) GetSeconds() int32

GetSeconds returns the Seconds field value

func (*TimeDelta) GetSecondsOk

func (o *TimeDelta) GetSecondsOk() (*int32, bool)

GetSecondsOk returns a tuple with the Seconds field value and a boolean to check if the value has been set.

func (*TimeDelta) GetType

func (o *TimeDelta) GetType() string

GetType returns the Type field value

func (*TimeDelta) GetTypeOk

func (o *TimeDelta) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (TimeDelta) MarshalJSON

func (o TimeDelta) MarshalJSON() ([]byte, error)

func (*TimeDelta) SetDays

func (o *TimeDelta) SetDays(v int32)

SetDays sets field value

func (*TimeDelta) SetMicroseconds

func (o *TimeDelta) SetMicroseconds(v int32)

SetMicroseconds sets field value

func (*TimeDelta) SetSeconds

func (o *TimeDelta) SetSeconds(v int32)

SetSeconds sets field value

func (*TimeDelta) SetType

func (o *TimeDelta) SetType(v string)

SetType sets field value

type TriggerRule

type TriggerRule string

TriggerRule Trigger rule. *Changed in version 2.2.0*: 'none_failed_min_one_success' is added as a possible value.

const (
	TRIGGERRULE_ALL_SUCCESS                 TriggerRule = "all_success"
	TRIGGERRULE_ALL_FAILED                  TriggerRule = "all_failed"
	TRIGGERRULE_ALL_DONE                    TriggerRule = "all_done"
	TRIGGERRULE_ONE_SUCCESS                 TriggerRule = "one_success"
	TRIGGERRULE_ONE_FAILED                  TriggerRule = "one_failed"
	TRIGGERRULE_NONE_FAILED                 TriggerRule = "none_failed"
	TRIGGERRULE_NONE_SKIPPED                TriggerRule = "none_skipped"
	TRIGGERRULE_NONE_FAILED_OR_SKIPPED      TriggerRule = "none_failed_or_skipped"
	TRIGGERRULE_NONE_FAILED_MIN_ONE_SUCCESS TriggerRule = "none_failed_min_one_success"
	TRIGGERRULE_DUMMY                       TriggerRule = "dummy"
)

List of TriggerRule

func NewTriggerRuleFromValue

func NewTriggerRuleFromValue(v string) (*TriggerRule, error)

NewTriggerRuleFromValue returns a pointer to a valid TriggerRule for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TriggerRule) IsValid

func (v TriggerRule) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TriggerRule) Ptr

func (v TriggerRule) Ptr() *TriggerRule

Ptr returns reference to TriggerRule value

func (*TriggerRule) UnmarshalJSON

func (v *TriggerRule) UnmarshalJSON(src []byte) error

type UpdateDagRunState

type UpdateDagRunState struct {
	// The state to set this DagRun
	State *string `json:"state,omitempty"`
}

UpdateDagRunState Modify the state of a DAG run. *New in version 2.2.0*

func NewUpdateDagRunState

func NewUpdateDagRunState() *UpdateDagRunState

NewUpdateDagRunState instantiates a new UpdateDagRunState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateDagRunStateWithDefaults

func NewUpdateDagRunStateWithDefaults() *UpdateDagRunState

NewUpdateDagRunStateWithDefaults instantiates a new UpdateDagRunState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateDagRunState) GetState

func (o *UpdateDagRunState) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*UpdateDagRunState) GetStateOk

func (o *UpdateDagRunState) 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 (*UpdateDagRunState) HasState

func (o *UpdateDagRunState) HasState() bool

HasState returns a boolean if a field has been set.

func (UpdateDagRunState) MarshalJSON

func (o UpdateDagRunState) MarshalJSON() ([]byte, error)

func (*UpdateDagRunState) SetState

func (o *UpdateDagRunState) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

type UpdateTaskInstancesState

type UpdateTaskInstancesState struct {
	// If set, don't actually run this operation. The response will contain a list of task instances planned to be affected, but won't be modified in any way.
	DryRun *bool `json:"dry_run,omitempty"`
	// The task ID.
	TaskId *string `json:"task_id,omitempty"`
	// The execution date. Either set this or dag_run_id but not both.
	ExecutionDate *string `json:"execution_date,omitempty"`
	// The task instance's DAG run ID. Either set this or execution_date but not both.  *New in version 2.3.0*
	DagRunId *string `json:"dag_run_id,omitempty"`
	// If set to true, upstream tasks are also affected.
	IncludeUpstream *bool `json:"include_upstream,omitempty"`
	// If set to true, downstream tasks are also affected.
	IncludeDownstream *bool `json:"include_downstream,omitempty"`
	// If set to True, also tasks from future DAG Runs are affected.
	IncludeFuture *bool `json:"include_future,omitempty"`
	// If set to True, also tasks from past DAG Runs are affected.
	IncludePast *bool `json:"include_past,omitempty"`
	// Expected new state.
	NewState *string `json:"new_state,omitempty"`
}

UpdateTaskInstancesState struct for UpdateTaskInstancesState

func NewUpdateTaskInstancesState

func NewUpdateTaskInstancesState() *UpdateTaskInstancesState

NewUpdateTaskInstancesState instantiates a new UpdateTaskInstancesState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateTaskInstancesStateWithDefaults

func NewUpdateTaskInstancesStateWithDefaults() *UpdateTaskInstancesState

NewUpdateTaskInstancesStateWithDefaults instantiates a new UpdateTaskInstancesState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateTaskInstancesState) GetDagRunId

func (o *UpdateTaskInstancesState) GetDagRunId() string

GetDagRunId returns the DagRunId field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetDagRunIdOk

func (o *UpdateTaskInstancesState) GetDagRunIdOk() (*string, bool)

GetDagRunIdOk returns a tuple with the DagRunId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) GetDryRun

func (o *UpdateTaskInstancesState) GetDryRun() bool

GetDryRun returns the DryRun field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetDryRunOk

func (o *UpdateTaskInstancesState) GetDryRunOk() (*bool, bool)

GetDryRunOk returns a tuple with the DryRun field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) GetExecutionDate

func (o *UpdateTaskInstancesState) GetExecutionDate() string

GetExecutionDate returns the ExecutionDate field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetExecutionDateOk

func (o *UpdateTaskInstancesState) GetExecutionDateOk() (*string, bool)

GetExecutionDateOk returns a tuple with the ExecutionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) GetIncludeDownstream

func (o *UpdateTaskInstancesState) GetIncludeDownstream() bool

GetIncludeDownstream returns the IncludeDownstream field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetIncludeDownstreamOk

func (o *UpdateTaskInstancesState) GetIncludeDownstreamOk() (*bool, bool)

GetIncludeDownstreamOk returns a tuple with the IncludeDownstream field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) GetIncludeFuture

func (o *UpdateTaskInstancesState) GetIncludeFuture() bool

GetIncludeFuture returns the IncludeFuture field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetIncludeFutureOk

func (o *UpdateTaskInstancesState) GetIncludeFutureOk() (*bool, bool)

GetIncludeFutureOk returns a tuple with the IncludeFuture field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) GetIncludePast

func (o *UpdateTaskInstancesState) GetIncludePast() bool

GetIncludePast returns the IncludePast field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetIncludePastOk

func (o *UpdateTaskInstancesState) GetIncludePastOk() (*bool, bool)

GetIncludePastOk returns a tuple with the IncludePast field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) GetIncludeUpstream

func (o *UpdateTaskInstancesState) GetIncludeUpstream() bool

GetIncludeUpstream returns the IncludeUpstream field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetIncludeUpstreamOk

func (o *UpdateTaskInstancesState) GetIncludeUpstreamOk() (*bool, bool)

GetIncludeUpstreamOk returns a tuple with the IncludeUpstream field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) GetNewState

func (o *UpdateTaskInstancesState) GetNewState() string

GetNewState returns the NewState field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetNewStateOk

func (o *UpdateTaskInstancesState) GetNewStateOk() (*string, bool)

GetNewStateOk returns a tuple with the NewState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) GetTaskId

func (o *UpdateTaskInstancesState) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*UpdateTaskInstancesState) GetTaskIdOk

func (o *UpdateTaskInstancesState) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateTaskInstancesState) HasDagRunId

func (o *UpdateTaskInstancesState) HasDagRunId() bool

HasDagRunId returns a boolean if a field has been set.

func (*UpdateTaskInstancesState) HasDryRun

func (o *UpdateTaskInstancesState) HasDryRun() bool

HasDryRun returns a boolean if a field has been set.

func (*UpdateTaskInstancesState) HasExecutionDate

func (o *UpdateTaskInstancesState) HasExecutionDate() bool

HasExecutionDate returns a boolean if a field has been set.

func (*UpdateTaskInstancesState) HasIncludeDownstream

func (o *UpdateTaskInstancesState) HasIncludeDownstream() bool

HasIncludeDownstream returns a boolean if a field has been set.

func (*UpdateTaskInstancesState) HasIncludeFuture

func (o *UpdateTaskInstancesState) HasIncludeFuture() bool

HasIncludeFuture returns a boolean if a field has been set.

func (*UpdateTaskInstancesState) HasIncludePast

func (o *UpdateTaskInstancesState) HasIncludePast() bool

HasIncludePast returns a boolean if a field has been set.

func (*UpdateTaskInstancesState) HasIncludeUpstream

func (o *UpdateTaskInstancesState) HasIncludeUpstream() bool

HasIncludeUpstream returns a boolean if a field has been set.

func (*UpdateTaskInstancesState) HasNewState

func (o *UpdateTaskInstancesState) HasNewState() bool

HasNewState returns a boolean if a field has been set.

func (*UpdateTaskInstancesState) HasTaskId

func (o *UpdateTaskInstancesState) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (UpdateTaskInstancesState) MarshalJSON

func (o UpdateTaskInstancesState) MarshalJSON() ([]byte, error)

func (*UpdateTaskInstancesState) SetDagRunId

func (o *UpdateTaskInstancesState) SetDagRunId(v string)

SetDagRunId gets a reference to the given string and assigns it to the DagRunId field.

func (*UpdateTaskInstancesState) SetDryRun

func (o *UpdateTaskInstancesState) SetDryRun(v bool)

SetDryRun gets a reference to the given bool and assigns it to the DryRun field.

func (*UpdateTaskInstancesState) SetExecutionDate

func (o *UpdateTaskInstancesState) SetExecutionDate(v string)

SetExecutionDate gets a reference to the given string and assigns it to the ExecutionDate field.

func (*UpdateTaskInstancesState) SetIncludeDownstream

func (o *UpdateTaskInstancesState) SetIncludeDownstream(v bool)

SetIncludeDownstream gets a reference to the given bool and assigns it to the IncludeDownstream field.

func (*UpdateTaskInstancesState) SetIncludeFuture

func (o *UpdateTaskInstancesState) SetIncludeFuture(v bool)

SetIncludeFuture gets a reference to the given bool and assigns it to the IncludeFuture field.

func (*UpdateTaskInstancesState) SetIncludePast

func (o *UpdateTaskInstancesState) SetIncludePast(v bool)

SetIncludePast gets a reference to the given bool and assigns it to the IncludePast field.

func (*UpdateTaskInstancesState) SetIncludeUpstream

func (o *UpdateTaskInstancesState) SetIncludeUpstream(v bool)

SetIncludeUpstream gets a reference to the given bool and assigns it to the IncludeUpstream field.

func (*UpdateTaskInstancesState) SetNewState

func (o *UpdateTaskInstancesState) SetNewState(v string)

SetNewState gets a reference to the given string and assigns it to the NewState field.

func (*UpdateTaskInstancesState) SetTaskId

func (o *UpdateTaskInstancesState) SetTaskId(v string)

SetTaskId gets a reference to the given string and assigns it to the TaskId field.

type User

type User struct {
	// The user's first name.  *Changed in version 2.2.0*: A minimum character length requirement ('minLength') is added.
	FirstName *string `json:"first_name,omitempty"`
	// The user's last name.  *Changed in version 2.2.0*: A minimum character length requirement ('minLength') is added.
	LastName *string `json:"last_name,omitempty"`
	// The username.  *Changed in version 2.2.0*: A minimum character length requirement ('minLength') is added.
	Username *string `json:"username,omitempty"`
	// The user's email.  *Changed in version 2.2.0*: A minimum character length requirement ('minLength') is added.
	Email *string `json:"email,omitempty"`
	// Whether the user is active
	Active NullableBool `json:"active,omitempty"`
	// The last user login
	LastLogin NullableString `json:"last_login,omitempty"`
	// The login count
	LoginCount NullableInt32 `json:"login_count,omitempty"`
	// The number of times the login failed
	FailedLoginCount NullableInt32 `json:"failed_login_count,omitempty"`
	// User roles.  *Changed in version 2.2.0*: Field is no longer read-only.
	Roles *[]UserCollectionItemRoles `json:"roles,omitempty"`
	// The date user was created
	CreatedOn NullableString `json:"created_on,omitempty"`
	// The date user was changed
	ChangedOn NullableString `json:"changed_on,omitempty"`
	Password  *string        `json:"password,omitempty"`
}

User A user object with sensitive data. *New in version 2.1.0*

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) GetActive

func (o *User) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetActiveOk

func (o *User) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*User) GetChangedOn

func (o *User) GetChangedOn() string

GetChangedOn returns the ChangedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetChangedOnOk

func (o *User) GetChangedOnOk() (*string, bool)

GetChangedOnOk returns a tuple with the ChangedOn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*User) GetCreatedOn

func (o *User) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetCreatedOnOk

func (o *User) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*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) GetFailedLoginCount

func (o *User) GetFailedLoginCount() int32

GetFailedLoginCount returns the FailedLoginCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetFailedLoginCountOk

func (o *User) GetFailedLoginCountOk() (*int32, bool)

GetFailedLoginCountOk returns a tuple with the FailedLoginCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*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) GetLastLogin

func (o *User) GetLastLogin() string

GetLastLogin returns the LastLogin field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetLastLoginOk

func (o *User) GetLastLoginOk() (*string, bool)

GetLastLoginOk returns a tuple with the LastLogin field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*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) GetLoginCount

func (o *User) GetLoginCount() int32

GetLoginCount returns the LoginCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*User) GetLoginCountOk

func (o *User) GetLoginCountOk() (*int32, bool)

GetLoginCountOk returns a tuple with the LoginCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*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) GetRoles

func (o *User) GetRoles() []UserCollectionItemRoles

GetRoles returns the Roles field value if set, zero value otherwise.

func (*User) GetRolesOk

func (o *User) GetRolesOk() (*[]UserCollectionItemRoles, bool)

GetRolesOk returns a tuple with the Roles 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) HasActive

func (o *User) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*User) HasChangedOn

func (o *User) HasChangedOn() bool

HasChangedOn returns a boolean if a field has been set.

func (*User) HasCreatedOn

func (o *User) HasCreatedOn() bool

HasCreatedOn 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) HasFailedLoginCount

func (o *User) HasFailedLoginCount() bool

HasFailedLoginCount 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) HasLastLogin

func (o *User) HasLastLogin() bool

HasLastLogin 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) HasLoginCount

func (o *User) HasLoginCount() bool

HasLoginCount 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) HasRoles

func (o *User) HasRoles() bool

HasRoles 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) SetActive

func (o *User) SetActive(v bool)

SetActive gets a reference to the given NullableBool and assigns it to the Active field.

func (*User) SetActiveNil

func (o *User) SetActiveNil()

SetActiveNil sets the value for Active to be an explicit nil

func (*User) SetChangedOn

func (o *User) SetChangedOn(v string)

SetChangedOn gets a reference to the given NullableString and assigns it to the ChangedOn field.

func (*User) SetChangedOnNil

func (o *User) SetChangedOnNil()

SetChangedOnNil sets the value for ChangedOn to be an explicit nil

func (*User) SetCreatedOn

func (o *User) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given NullableString and assigns it to the CreatedOn field.

func (*User) SetCreatedOnNil

func (o *User) SetCreatedOnNil()

SetCreatedOnNil sets the value for CreatedOn to be an explicit nil

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) SetFailedLoginCount

func (o *User) SetFailedLoginCount(v int32)

SetFailedLoginCount gets a reference to the given NullableInt32 and assigns it to the FailedLoginCount field.

func (*User) SetFailedLoginCountNil

func (o *User) SetFailedLoginCountNil()

SetFailedLoginCountNil sets the value for FailedLoginCount to be an explicit nil

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) SetLastLogin

func (o *User) SetLastLogin(v string)

SetLastLogin gets a reference to the given NullableString and assigns it to the LastLogin field.

func (*User) SetLastLoginNil

func (o *User) SetLastLoginNil()

SetLastLoginNil sets the value for LastLogin to be an explicit nil

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) SetLoginCount

func (o *User) SetLoginCount(v int32)

SetLoginCount gets a reference to the given NullableInt32 and assigns it to the LoginCount field.

func (*User) SetLoginCountNil

func (o *User) SetLoginCountNil()

SetLoginCountNil sets the value for LoginCount to be an explicit nil

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) SetRoles

func (o *User) SetRoles(v []UserCollectionItemRoles)

SetRoles gets a reference to the given []UserCollectionItemRoles and assigns it to the Roles 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) UnsetActive

func (o *User) UnsetActive()

UnsetActive ensures that no value is present for Active, not even an explicit nil

func (*User) UnsetChangedOn

func (o *User) UnsetChangedOn()

UnsetChangedOn ensures that no value is present for ChangedOn, not even an explicit nil

func (*User) UnsetCreatedOn

func (o *User) UnsetCreatedOn()

UnsetCreatedOn ensures that no value is present for CreatedOn, not even an explicit nil

func (*User) UnsetFailedLoginCount

func (o *User) UnsetFailedLoginCount()

UnsetFailedLoginCount ensures that no value is present for FailedLoginCount, not even an explicit nil

func (*User) UnsetLastLogin

func (o *User) UnsetLastLogin()

UnsetLastLogin ensures that no value is present for LastLogin, not even an explicit nil

func (*User) UnsetLoginCount

func (o *User) UnsetLoginCount()

UnsetLoginCount ensures that no value is present for LoginCount, not even an explicit nil

type UserAllOf

type UserAllOf struct {
	Password *string `json:"password,omitempty"`
}

UserAllOf struct for UserAllOf

func NewUserAllOf

func NewUserAllOf() *UserAllOf

NewUserAllOf instantiates a new UserAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserAllOfWithDefaults

func NewUserAllOfWithDefaults() *UserAllOf

NewUserAllOfWithDefaults instantiates a new UserAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserAllOf) GetPassword

func (o *UserAllOf) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*UserAllOf) GetPasswordOk

func (o *UserAllOf) 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 (*UserAllOf) HasPassword

func (o *UserAllOf) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (UserAllOf) MarshalJSON

func (o UserAllOf) MarshalJSON() ([]byte, error)

func (*UserAllOf) SetPassword

func (o *UserAllOf) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

type UserApiService

type UserApiService service

UserApiService UserApi service

func (*UserApiService) DeleteUser

func (a *UserApiService) DeleteUser(ctx _context.Context, username string) ApiDeleteUserRequest

DeleteUser Delete a user

Delete a user with a specific username.

*New in version 2.2.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param username The username of the user.  *New in version 2.1.0*
@return ApiDeleteUserRequest

func (*UserApiService) DeleteUserExecute

func (a *UserApiService) DeleteUserExecute(r ApiDeleteUserRequest) (*_nethttp.Response, error)

Execute executes the request

func (*UserApiService) GetUser

func (a *UserApiService) GetUser(ctx _context.Context, username string) ApiGetUserRequest

GetUser Get a user

Get a user with a specific username.

*New in version 2.1.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param username The username of the user.  *New in version 2.1.0*
@return ApiGetUserRequest

func (*UserApiService) GetUserExecute

Execute executes the request

@return UserCollectionItem

func (*UserApiService) GetUsers

GetUsers List users

Get a list of users.

*New in version 2.1.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUsersRequest

func (*UserApiService) GetUsersExecute

Execute executes the request

@return UserCollection

func (*UserApiService) PatchUser

func (a *UserApiService) PatchUser(ctx _context.Context, username string) ApiPatchUserRequest

PatchUser Update a user

Update fields for a user.

*New in version 2.2.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param username The username of the user.  *New in version 2.1.0*
@return ApiPatchUserRequest

func (*UserApiService) PatchUserExecute

func (a *UserApiService) PatchUserExecute(r ApiPatchUserRequest) (Role, *_nethttp.Response, error)

Execute executes the request

@return Role

func (*UserApiService) PostUser

PostUser Create a user

Create a new user with unique username and email.

*New in version 2.2.0*

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostUserRequest

func (*UserApiService) PostUserExecute

func (a *UserApiService) PostUserExecute(r ApiPostUserRequest) (User, *_nethttp.Response, error)

Execute executes the request

@return User

type UserCollection

type UserCollection struct {
	Users *[]UserCollectionItem `json:"users,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

UserCollection Collection of users. *New in version 2.1.0*

func NewUserCollection

func NewUserCollection() *UserCollection

NewUserCollection instantiates a new UserCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserCollectionWithDefaults

func NewUserCollectionWithDefaults() *UserCollection

NewUserCollectionWithDefaults instantiates a new UserCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserCollection) GetTotalEntries

func (o *UserCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*UserCollection) GetTotalEntriesOk

func (o *UserCollection) GetTotalEntriesOk() (*int32, bool)

GetTotalEntriesOk returns a tuple with the TotalEntries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCollection) GetUsers

func (o *UserCollection) GetUsers() []UserCollectionItem

GetUsers returns the Users field value if set, zero value otherwise.

func (*UserCollection) GetUsersOk

func (o *UserCollection) GetUsersOk() (*[]UserCollectionItem, 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 (*UserCollection) HasTotalEntries

func (o *UserCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (*UserCollection) HasUsers

func (o *UserCollection) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (UserCollection) MarshalJSON

func (o UserCollection) MarshalJSON() ([]byte, error)

func (*UserCollection) SetTotalEntries

func (o *UserCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

func (*UserCollection) SetUsers

func (o *UserCollection) SetUsers(v []UserCollectionItem)

SetUsers gets a reference to the given []UserCollectionItem and assigns it to the Users field.

type UserCollectionAllOf

type UserCollectionAllOf struct {
	Users *[]UserCollectionItem `json:"users,omitempty"`
}

UserCollectionAllOf struct for UserCollectionAllOf

func NewUserCollectionAllOf

func NewUserCollectionAllOf() *UserCollectionAllOf

NewUserCollectionAllOf instantiates a new UserCollectionAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserCollectionAllOfWithDefaults

func NewUserCollectionAllOfWithDefaults() *UserCollectionAllOf

NewUserCollectionAllOfWithDefaults instantiates a new UserCollectionAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserCollectionAllOf) GetUsers

func (o *UserCollectionAllOf) GetUsers() []UserCollectionItem

GetUsers returns the Users field value if set, zero value otherwise.

func (*UserCollectionAllOf) GetUsersOk

func (o *UserCollectionAllOf) GetUsersOk() (*[]UserCollectionItem, 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 (*UserCollectionAllOf) HasUsers

func (o *UserCollectionAllOf) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (UserCollectionAllOf) MarshalJSON

func (o UserCollectionAllOf) MarshalJSON() ([]byte, error)

func (*UserCollectionAllOf) SetUsers

func (o *UserCollectionAllOf) SetUsers(v []UserCollectionItem)

SetUsers gets a reference to the given []UserCollectionItem and assigns it to the Users field.

type UserCollectionItem

type UserCollectionItem struct {
	// The user's first name.  *Changed in version 2.2.0*: A minimum character length requirement ('minLength') is added.
	FirstName *string `json:"first_name,omitempty"`
	// The user's last name.  *Changed in version 2.2.0*: A minimum character length requirement ('minLength') is added.
	LastName *string `json:"last_name,omitempty"`
	// The username.  *Changed in version 2.2.0*: A minimum character length requirement ('minLength') is added.
	Username *string `json:"username,omitempty"`
	// The user's email.  *Changed in version 2.2.0*: A minimum character length requirement ('minLength') is added.
	Email *string `json:"email,omitempty"`
	// Whether the user is active
	Active NullableBool `json:"active,omitempty"`
	// The last user login
	LastLogin NullableString `json:"last_login,omitempty"`
	// The login count
	LoginCount NullableInt32 `json:"login_count,omitempty"`
	// The number of times the login failed
	FailedLoginCount NullableInt32 `json:"failed_login_count,omitempty"`
	// User roles.  *Changed in version 2.2.0*: Field is no longer read-only.
	Roles *[]UserCollectionItemRoles `json:"roles,omitempty"`
	// The date user was created
	CreatedOn NullableString `json:"created_on,omitempty"`
	// The date user was changed
	ChangedOn NullableString `json:"changed_on,omitempty"`
}

UserCollectionItem A user object. *New in version 2.1.0*

func NewUserCollectionItem

func NewUserCollectionItem() *UserCollectionItem

NewUserCollectionItem instantiates a new UserCollectionItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserCollectionItemWithDefaults

func NewUserCollectionItemWithDefaults() *UserCollectionItem

NewUserCollectionItemWithDefaults instantiates a new UserCollectionItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserCollectionItem) GetActive

func (o *UserCollectionItem) GetActive() bool

GetActive returns the Active field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCollectionItem) GetActiveOk

func (o *UserCollectionItem) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserCollectionItem) GetChangedOn

func (o *UserCollectionItem) GetChangedOn() string

GetChangedOn returns the ChangedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCollectionItem) GetChangedOnOk

func (o *UserCollectionItem) GetChangedOnOk() (*string, bool)

GetChangedOnOk returns a tuple with the ChangedOn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserCollectionItem) GetCreatedOn

func (o *UserCollectionItem) GetCreatedOn() string

GetCreatedOn returns the CreatedOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCollectionItem) GetCreatedOnOk

func (o *UserCollectionItem) GetCreatedOnOk() (*string, bool)

GetCreatedOnOk returns a tuple with the CreatedOn field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserCollectionItem) GetEmail

func (o *UserCollectionItem) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*UserCollectionItem) GetEmailOk

func (o *UserCollectionItem) 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 (*UserCollectionItem) GetFailedLoginCount

func (o *UserCollectionItem) GetFailedLoginCount() int32

GetFailedLoginCount returns the FailedLoginCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCollectionItem) GetFailedLoginCountOk

func (o *UserCollectionItem) GetFailedLoginCountOk() (*int32, bool)

GetFailedLoginCountOk returns a tuple with the FailedLoginCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserCollectionItem) GetFirstName

func (o *UserCollectionItem) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*UserCollectionItem) GetFirstNameOk

func (o *UserCollectionItem) 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 (*UserCollectionItem) GetLastLogin

func (o *UserCollectionItem) GetLastLogin() string

GetLastLogin returns the LastLogin field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCollectionItem) GetLastLoginOk

func (o *UserCollectionItem) GetLastLoginOk() (*string, bool)

GetLastLoginOk returns a tuple with the LastLogin field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserCollectionItem) GetLastName

func (o *UserCollectionItem) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*UserCollectionItem) GetLastNameOk

func (o *UserCollectionItem) 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 (*UserCollectionItem) GetLoginCount

func (o *UserCollectionItem) GetLoginCount() int32

GetLoginCount returns the LoginCount field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserCollectionItem) GetLoginCountOk

func (o *UserCollectionItem) GetLoginCountOk() (*int32, bool)

GetLoginCountOk returns a tuple with the LoginCount field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UserCollectionItem) GetRoles

GetRoles returns the Roles field value if set, zero value otherwise.

func (*UserCollectionItem) GetRolesOk

func (o *UserCollectionItem) GetRolesOk() (*[]UserCollectionItemRoles, bool)

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserCollectionItem) GetUsername

func (o *UserCollectionItem) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*UserCollectionItem) GetUsernameOk

func (o *UserCollectionItem) 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 (*UserCollectionItem) HasActive

func (o *UserCollectionItem) HasActive() bool

HasActive returns a boolean if a field has been set.

func (*UserCollectionItem) HasChangedOn

func (o *UserCollectionItem) HasChangedOn() bool

HasChangedOn returns a boolean if a field has been set.

func (*UserCollectionItem) HasCreatedOn

func (o *UserCollectionItem) HasCreatedOn() bool

HasCreatedOn returns a boolean if a field has been set.

func (*UserCollectionItem) HasEmail

func (o *UserCollectionItem) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UserCollectionItem) HasFailedLoginCount

func (o *UserCollectionItem) HasFailedLoginCount() bool

HasFailedLoginCount returns a boolean if a field has been set.

func (*UserCollectionItem) HasFirstName

func (o *UserCollectionItem) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*UserCollectionItem) HasLastLogin

func (o *UserCollectionItem) HasLastLogin() bool

HasLastLogin returns a boolean if a field has been set.

func (*UserCollectionItem) HasLastName

func (o *UserCollectionItem) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*UserCollectionItem) HasLoginCount

func (o *UserCollectionItem) HasLoginCount() bool

HasLoginCount returns a boolean if a field has been set.

func (*UserCollectionItem) HasRoles

func (o *UserCollectionItem) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (*UserCollectionItem) HasUsername

func (o *UserCollectionItem) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (UserCollectionItem) MarshalJSON

func (o UserCollectionItem) MarshalJSON() ([]byte, error)

func (*UserCollectionItem) SetActive

func (o *UserCollectionItem) SetActive(v bool)

SetActive gets a reference to the given NullableBool and assigns it to the Active field.

func (*UserCollectionItem) SetActiveNil

func (o *UserCollectionItem) SetActiveNil()

SetActiveNil sets the value for Active to be an explicit nil

func (*UserCollectionItem) SetChangedOn

func (o *UserCollectionItem) SetChangedOn(v string)

SetChangedOn gets a reference to the given NullableString and assigns it to the ChangedOn field.

func (*UserCollectionItem) SetChangedOnNil

func (o *UserCollectionItem) SetChangedOnNil()

SetChangedOnNil sets the value for ChangedOn to be an explicit nil

func (*UserCollectionItem) SetCreatedOn

func (o *UserCollectionItem) SetCreatedOn(v string)

SetCreatedOn gets a reference to the given NullableString and assigns it to the CreatedOn field.

func (*UserCollectionItem) SetCreatedOnNil

func (o *UserCollectionItem) SetCreatedOnNil()

SetCreatedOnNil sets the value for CreatedOn to be an explicit nil

func (*UserCollectionItem) SetEmail

func (o *UserCollectionItem) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UserCollectionItem) SetFailedLoginCount

func (o *UserCollectionItem) SetFailedLoginCount(v int32)

SetFailedLoginCount gets a reference to the given NullableInt32 and assigns it to the FailedLoginCount field.

func (*UserCollectionItem) SetFailedLoginCountNil

func (o *UserCollectionItem) SetFailedLoginCountNil()

SetFailedLoginCountNil sets the value for FailedLoginCount to be an explicit nil

func (*UserCollectionItem) SetFirstName

func (o *UserCollectionItem) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*UserCollectionItem) SetLastLogin

func (o *UserCollectionItem) SetLastLogin(v string)

SetLastLogin gets a reference to the given NullableString and assigns it to the LastLogin field.

func (*UserCollectionItem) SetLastLoginNil

func (o *UserCollectionItem) SetLastLoginNil()

SetLastLoginNil sets the value for LastLogin to be an explicit nil

func (*UserCollectionItem) SetLastName

func (o *UserCollectionItem) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*UserCollectionItem) SetLoginCount

func (o *UserCollectionItem) SetLoginCount(v int32)

SetLoginCount gets a reference to the given NullableInt32 and assigns it to the LoginCount field.

func (*UserCollectionItem) SetLoginCountNil

func (o *UserCollectionItem) SetLoginCountNil()

SetLoginCountNil sets the value for LoginCount to be an explicit nil

func (*UserCollectionItem) SetRoles

SetRoles gets a reference to the given []UserCollectionItemRoles and assigns it to the Roles field.

func (*UserCollectionItem) SetUsername

func (o *UserCollectionItem) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (*UserCollectionItem) UnsetActive

func (o *UserCollectionItem) UnsetActive()

UnsetActive ensures that no value is present for Active, not even an explicit nil

func (*UserCollectionItem) UnsetChangedOn

func (o *UserCollectionItem) UnsetChangedOn()

UnsetChangedOn ensures that no value is present for ChangedOn, not even an explicit nil

func (*UserCollectionItem) UnsetCreatedOn

func (o *UserCollectionItem) UnsetCreatedOn()

UnsetCreatedOn ensures that no value is present for CreatedOn, not even an explicit nil

func (*UserCollectionItem) UnsetFailedLoginCount

func (o *UserCollectionItem) UnsetFailedLoginCount()

UnsetFailedLoginCount ensures that no value is present for FailedLoginCount, not even an explicit nil

func (*UserCollectionItem) UnsetLastLogin

func (o *UserCollectionItem) UnsetLastLogin()

UnsetLastLogin ensures that no value is present for LastLogin, not even an explicit nil

func (*UserCollectionItem) UnsetLoginCount

func (o *UserCollectionItem) UnsetLoginCount()

UnsetLoginCount ensures that no value is present for LoginCount, not even an explicit nil

type UserCollectionItemRoles

type UserCollectionItemRoles struct {
	Name *string `json:"name,omitempty"`
}

UserCollectionItemRoles struct for UserCollectionItemRoles

func NewUserCollectionItemRoles

func NewUserCollectionItemRoles() *UserCollectionItemRoles

NewUserCollectionItemRoles instantiates a new UserCollectionItemRoles object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserCollectionItemRolesWithDefaults

func NewUserCollectionItemRolesWithDefaults() *UserCollectionItemRoles

NewUserCollectionItemRolesWithDefaults instantiates a new UserCollectionItemRoles object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserCollectionItemRoles) GetName

func (o *UserCollectionItemRoles) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UserCollectionItemRoles) GetNameOk

func (o *UserCollectionItemRoles) 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 (*UserCollectionItemRoles) HasName

func (o *UserCollectionItemRoles) HasName() bool

HasName returns a boolean if a field has been set.

func (UserCollectionItemRoles) MarshalJSON

func (o UserCollectionItemRoles) MarshalJSON() ([]byte, error)

func (*UserCollectionItemRoles) SetName

func (o *UserCollectionItemRoles) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

type Variable

type Variable struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
}

Variable Full representation of Variable

func NewVariable

func NewVariable() *Variable

NewVariable instantiates a new Variable object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableWithDefaults

func NewVariableWithDefaults() *Variable

NewVariableWithDefaults instantiates a new Variable object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Variable) GetKey

func (o *Variable) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*Variable) GetKeyOk

func (o *Variable) 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 (*Variable) GetValue

func (o *Variable) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Variable) GetValueOk

func (o *Variable) 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 (*Variable) HasKey

func (o *Variable) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Variable) HasValue

func (o *Variable) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Variable) MarshalJSON

func (o Variable) MarshalJSON() ([]byte, error)

func (*Variable) SetKey

func (o *Variable) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*Variable) SetValue

func (o *Variable) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type VariableAllOf

type VariableAllOf struct {
	Value *string `json:"value,omitempty"`
}

VariableAllOf struct for VariableAllOf

func NewVariableAllOf

func NewVariableAllOf() *VariableAllOf

NewVariableAllOf instantiates a new VariableAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableAllOfWithDefaults

func NewVariableAllOfWithDefaults() *VariableAllOf

NewVariableAllOfWithDefaults instantiates a new VariableAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VariableAllOf) GetValue

func (o *VariableAllOf) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*VariableAllOf) GetValueOk

func (o *VariableAllOf) 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 (*VariableAllOf) HasValue

func (o *VariableAllOf) HasValue() bool

HasValue returns a boolean if a field has been set.

func (VariableAllOf) MarshalJSON

func (o VariableAllOf) MarshalJSON() ([]byte, error)

func (*VariableAllOf) SetValue

func (o *VariableAllOf) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type VariableApiService

type VariableApiService service

VariableApiService VariableApi service

func (*VariableApiService) DeleteVariable

func (a *VariableApiService) DeleteVariable(ctx _context.Context, variableKey string) ApiDeleteVariableRequest

DeleteVariable Delete a variable

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableKey The variable Key.
@return ApiDeleteVariableRequest

func (*VariableApiService) DeleteVariableExecute

func (a *VariableApiService) DeleteVariableExecute(r ApiDeleteVariableRequest) (*_nethttp.Response, error)

Execute executes the request

func (*VariableApiService) GetVariable

func (a *VariableApiService) GetVariable(ctx _context.Context, variableKey string) ApiGetVariableRequest

GetVariable Get a variable

Get a variable by key.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableKey The variable Key.
@return ApiGetVariableRequest

func (*VariableApiService) GetVariableExecute

Execute executes the request

@return Variable

func (*VariableApiService) GetVariables

GetVariables List variables

The collection does not contain data. To get data, you must get a single entity.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetVariablesRequest

func (*VariableApiService) GetVariablesExecute

Execute executes the request

@return VariableCollection

func (*VariableApiService) PatchVariable

func (a *VariableApiService) PatchVariable(ctx _context.Context, variableKey string) ApiPatchVariableRequest

PatchVariable Update a variable

Update a variable by key.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableKey The variable Key.
@return ApiPatchVariableRequest

func (*VariableApiService) PatchVariableExecute

Execute executes the request

@return Variable

func (*VariableApiService) PostVariables

PostVariables Create a variable

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostVariablesRequest

func (*VariableApiService) PostVariablesExecute

Execute executes the request

@return Variable

type VariableCollection

type VariableCollection struct {
	Variables *[]VariableCollectionItem `json:"variables,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

VariableCollection Collection of variables. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewVariableCollection

func NewVariableCollection() *VariableCollection

NewVariableCollection instantiates a new VariableCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableCollectionWithDefaults

func NewVariableCollectionWithDefaults() *VariableCollection

NewVariableCollectionWithDefaults instantiates a new VariableCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VariableCollection) GetTotalEntries

func (o *VariableCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*VariableCollection) GetTotalEntriesOk

func (o *VariableCollection) GetTotalEntriesOk() (*int32, bool)

GetTotalEntriesOk returns a tuple with the TotalEntries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableCollection) GetVariables

func (o *VariableCollection) GetVariables() []VariableCollectionItem

GetVariables returns the Variables field value if set, zero value otherwise.

func (*VariableCollection) GetVariablesOk

func (o *VariableCollection) GetVariablesOk() (*[]VariableCollectionItem, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableCollection) HasTotalEntries

func (o *VariableCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (*VariableCollection) HasVariables

func (o *VariableCollection) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (VariableCollection) MarshalJSON

func (o VariableCollection) MarshalJSON() ([]byte, error)

func (*VariableCollection) SetTotalEntries

func (o *VariableCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

func (*VariableCollection) SetVariables

func (o *VariableCollection) SetVariables(v []VariableCollectionItem)

SetVariables gets a reference to the given []VariableCollectionItem and assigns it to the Variables field.

type VariableCollectionAllOf

type VariableCollectionAllOf struct {
	Variables *[]VariableCollectionItem `json:"variables,omitempty"`
}

VariableCollectionAllOf struct for VariableCollectionAllOf

func NewVariableCollectionAllOf

func NewVariableCollectionAllOf() *VariableCollectionAllOf

NewVariableCollectionAllOf instantiates a new VariableCollectionAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableCollectionAllOfWithDefaults

func NewVariableCollectionAllOfWithDefaults() *VariableCollectionAllOf

NewVariableCollectionAllOfWithDefaults instantiates a new VariableCollectionAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VariableCollectionAllOf) GetVariables

func (o *VariableCollectionAllOf) GetVariables() []VariableCollectionItem

GetVariables returns the Variables field value if set, zero value otherwise.

func (*VariableCollectionAllOf) GetVariablesOk

func (o *VariableCollectionAllOf) GetVariablesOk() (*[]VariableCollectionItem, bool)

GetVariablesOk returns a tuple with the Variables field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VariableCollectionAllOf) HasVariables

func (o *VariableCollectionAllOf) HasVariables() bool

HasVariables returns a boolean if a field has been set.

func (VariableCollectionAllOf) MarshalJSON

func (o VariableCollectionAllOf) MarshalJSON() ([]byte, error)

func (*VariableCollectionAllOf) SetVariables

func (o *VariableCollectionAllOf) SetVariables(v []VariableCollectionItem)

SetVariables gets a reference to the given []VariableCollectionItem and assigns it to the Variables field.

type VariableCollectionItem

type VariableCollectionItem struct {
	Key *string `json:"key,omitempty"`
}

VariableCollectionItem XCom entry collection item. The value field are only available when retrieving a single object due to the sensitivity of this data.

func NewVariableCollectionItem

func NewVariableCollectionItem() *VariableCollectionItem

NewVariableCollectionItem instantiates a new VariableCollectionItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVariableCollectionItemWithDefaults

func NewVariableCollectionItemWithDefaults() *VariableCollectionItem

NewVariableCollectionItemWithDefaults instantiates a new VariableCollectionItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VariableCollectionItem) GetKey

func (o *VariableCollectionItem) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*VariableCollectionItem) GetKeyOk

func (o *VariableCollectionItem) 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 (*VariableCollectionItem) HasKey

func (o *VariableCollectionItem) HasKey() bool

HasKey returns a boolean if a field has been set.

func (VariableCollectionItem) MarshalJSON

func (o VariableCollectionItem) MarshalJSON() ([]byte, error)

func (*VariableCollectionItem) SetKey

func (o *VariableCollectionItem) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

type VersionInfo

type VersionInfo struct {
	// The version of Airflow
	Version *string `json:"version,omitempty"`
	// The git version (including git commit hash)
	GitVersion NullableString `json:"git_version,omitempty"`
}

VersionInfo Version information.

func NewVersionInfo

func NewVersionInfo() *VersionInfo

NewVersionInfo instantiates a new VersionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVersionInfoWithDefaults

func NewVersionInfoWithDefaults() *VersionInfo

NewVersionInfoWithDefaults instantiates a new VersionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VersionInfo) GetGitVersion

func (o *VersionInfo) GetGitVersion() string

GetGitVersion returns the GitVersion field value if set, zero value otherwise (both if not set or set to explicit null).

func (*VersionInfo) GetGitVersionOk

func (o *VersionInfo) GetGitVersionOk() (*string, bool)

GetGitVersionOk returns a tuple with the GitVersion field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*VersionInfo) GetVersion

func (o *VersionInfo) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*VersionInfo) GetVersionOk

func (o *VersionInfo) 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 (*VersionInfo) HasGitVersion

func (o *VersionInfo) HasGitVersion() bool

HasGitVersion returns a boolean if a field has been set.

func (*VersionInfo) HasVersion

func (o *VersionInfo) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (VersionInfo) MarshalJSON

func (o VersionInfo) MarshalJSON() ([]byte, error)

func (*VersionInfo) SetGitVersion

func (o *VersionInfo) SetGitVersion(v string)

SetGitVersion gets a reference to the given NullableString and assigns it to the GitVersion field.

func (*VersionInfo) SetGitVersionNil

func (o *VersionInfo) SetGitVersionNil()

SetGitVersionNil sets the value for GitVersion to be an explicit nil

func (*VersionInfo) SetVersion

func (o *VersionInfo) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (*VersionInfo) UnsetGitVersion

func (o *VersionInfo) UnsetGitVersion()

UnsetGitVersion ensures that no value is present for GitVersion, not even an explicit nil

type WeightRule

type WeightRule string

WeightRule Weight rule.

const (
	WEIGHTRULE_DOWNSTREAM WeightRule = "downstream"
	WEIGHTRULE_UPSTREAM   WeightRule = "upstream"
	WEIGHTRULE_ABSOLUTE   WeightRule = "absolute"
)

List of WeightRule

func NewWeightRuleFromValue

func NewWeightRuleFromValue(v string) (*WeightRule, error)

NewWeightRuleFromValue returns a pointer to a valid WeightRule for the value passed as argument, or an error if the value passed is not allowed by the enum

func (WeightRule) IsValid

func (v WeightRule) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (WeightRule) Ptr

func (v WeightRule) Ptr() *WeightRule

Ptr returns reference to WeightRule value

func (*WeightRule) UnmarshalJSON

func (v *WeightRule) UnmarshalJSON(src []byte) error

type XCom

type XCom struct {
	Key           *string `json:"key,omitempty"`
	Timestamp     *string `json:"timestamp,omitempty"`
	ExecutionDate *string `json:"execution_date,omitempty"`
	TaskId        *string `json:"task_id,omitempty"`
	DagId         *string `json:"dag_id,omitempty"`
	// The value
	Value *string `json:"value,omitempty"`
}

XCom Full representations of XCom entry.

func NewXCom

func NewXCom() *XCom

NewXCom instantiates a new XCom object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewXComWithDefaults

func NewXComWithDefaults() *XCom

NewXComWithDefaults instantiates a new XCom object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*XCom) GetDagId

func (o *XCom) GetDagId() string

GetDagId returns the DagId field value if set, zero value otherwise.

func (*XCom) GetDagIdOk

func (o *XCom) GetDagIdOk() (*string, bool)

GetDagIdOk returns a tuple with the DagId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XCom) GetExecutionDate

func (o *XCom) GetExecutionDate() string

GetExecutionDate returns the ExecutionDate field value if set, zero value otherwise.

func (*XCom) GetExecutionDateOk

func (o *XCom) GetExecutionDateOk() (*string, bool)

GetExecutionDateOk returns a tuple with the ExecutionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XCom) GetKey

func (o *XCom) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*XCom) GetKeyOk

func (o *XCom) 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 (*XCom) GetTaskId

func (o *XCom) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*XCom) GetTaskIdOk

func (o *XCom) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XCom) GetTimestamp

func (o *XCom) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*XCom) GetTimestampOk

func (o *XCom) GetTimestampOk() (*string, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XCom) GetValue

func (o *XCom) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*XCom) GetValueOk

func (o *XCom) 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 (*XCom) HasDagId

func (o *XCom) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*XCom) HasExecutionDate

func (o *XCom) HasExecutionDate() bool

HasExecutionDate returns a boolean if a field has been set.

func (*XCom) HasKey

func (o *XCom) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*XCom) HasTaskId

func (o *XCom) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*XCom) HasTimestamp

func (o *XCom) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*XCom) HasValue

func (o *XCom) HasValue() bool

HasValue returns a boolean if a field has been set.

func (XCom) MarshalJSON

func (o XCom) MarshalJSON() ([]byte, error)

func (*XCom) SetDagId

func (o *XCom) SetDagId(v string)

SetDagId gets a reference to the given string and assigns it to the DagId field.

func (*XCom) SetExecutionDate

func (o *XCom) SetExecutionDate(v string)

SetExecutionDate gets a reference to the given string and assigns it to the ExecutionDate field.

func (*XCom) SetKey

func (o *XCom) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*XCom) SetTaskId

func (o *XCom) SetTaskId(v string)

SetTaskId gets a reference to the given string and assigns it to the TaskId field.

func (*XCom) SetTimestamp

func (o *XCom) SetTimestamp(v string)

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (*XCom) SetValue

func (o *XCom) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type XComAllOf

type XComAllOf struct {
	// The value
	Value *string `json:"value,omitempty"`
}

XComAllOf struct for XComAllOf

func NewXComAllOf

func NewXComAllOf() *XComAllOf

NewXComAllOf instantiates a new XComAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewXComAllOfWithDefaults

func NewXComAllOfWithDefaults() *XComAllOf

NewXComAllOfWithDefaults instantiates a new XComAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*XComAllOf) GetValue

func (o *XComAllOf) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*XComAllOf) GetValueOk

func (o *XComAllOf) 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 (*XComAllOf) HasValue

func (o *XComAllOf) HasValue() bool

HasValue returns a boolean if a field has been set.

func (XComAllOf) MarshalJSON

func (o XComAllOf) MarshalJSON() ([]byte, error)

func (*XComAllOf) SetValue

func (o *XComAllOf) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type XComApiService

type XComApiService service

XComApiService XComApi service

func (*XComApiService) GetXcomEntries

func (a *XComApiService) GetXcomEntries(ctx _context.Context, dagId string, dagRunId string, taskId string) ApiGetXcomEntriesRequest

GetXcomEntries List XCom entries

This endpoint allows specifying `~` as the dag_id, dag_run_id, task_id to retrieve XCOM entries for for all DAGs, DAG runs and task instances. XCom values won't be returned as they can be large. Use this endpoint to get a list of XCom entries and then fetch individual entry to get value.

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@param taskId The task ID.
@return ApiGetXcomEntriesRequest

func (*XComApiService) GetXcomEntriesExecute

Execute executes the request

@return XComCollection

func (*XComApiService) GetXcomEntry

func (a *XComApiService) GetXcomEntry(ctx _context.Context, dagId string, dagRunId string, taskId string, xcomKey string) ApiGetXcomEntryRequest

GetXcomEntry Get an XCom entry

@param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param dagId The DAG ID.
@param dagRunId The DAG run ID.
@param taskId The task ID.
@param xcomKey The XCom key.
@return ApiGetXcomEntryRequest

func (*XComApiService) GetXcomEntryExecute

func (a *XComApiService) GetXcomEntryExecute(r ApiGetXcomEntryRequest) (XCom, *_nethttp.Response, error)

Execute executes the request

@return XCom

type XComCollection

type XComCollection struct {
	XcomEntries *[]XComCollectionItem `json:"xcom_entries,omitempty"`
	// Count of objects in the current result set.
	TotalEntries *int32 `json:"total_entries,omitempty"`
}

XComCollection Collection of XCom entries. *Changed in version 2.1.0*: 'total_entries' field is added.

func NewXComCollection

func NewXComCollection() *XComCollection

NewXComCollection instantiates a new XComCollection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewXComCollectionWithDefaults

func NewXComCollectionWithDefaults() *XComCollection

NewXComCollectionWithDefaults instantiates a new XComCollection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*XComCollection) GetTotalEntries

func (o *XComCollection) GetTotalEntries() int32

GetTotalEntries returns the TotalEntries field value if set, zero value otherwise.

func (*XComCollection) GetTotalEntriesOk

func (o *XComCollection) GetTotalEntriesOk() (*int32, bool)

GetTotalEntriesOk returns a tuple with the TotalEntries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XComCollection) GetXcomEntries

func (o *XComCollection) GetXcomEntries() []XComCollectionItem

GetXcomEntries returns the XcomEntries field value if set, zero value otherwise.

func (*XComCollection) GetXcomEntriesOk

func (o *XComCollection) GetXcomEntriesOk() (*[]XComCollectionItem, bool)

GetXcomEntriesOk returns a tuple with the XcomEntries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XComCollection) HasTotalEntries

func (o *XComCollection) HasTotalEntries() bool

HasTotalEntries returns a boolean if a field has been set.

func (*XComCollection) HasXcomEntries

func (o *XComCollection) HasXcomEntries() bool

HasXcomEntries returns a boolean if a field has been set.

func (XComCollection) MarshalJSON

func (o XComCollection) MarshalJSON() ([]byte, error)

func (*XComCollection) SetTotalEntries

func (o *XComCollection) SetTotalEntries(v int32)

SetTotalEntries gets a reference to the given int32 and assigns it to the TotalEntries field.

func (*XComCollection) SetXcomEntries

func (o *XComCollection) SetXcomEntries(v []XComCollectionItem)

SetXcomEntries gets a reference to the given []XComCollectionItem and assigns it to the XcomEntries field.

type XComCollectionAllOf

type XComCollectionAllOf struct {
	XcomEntries *[]XComCollectionItem `json:"xcom_entries,omitempty"`
}

XComCollectionAllOf struct for XComCollectionAllOf

func NewXComCollectionAllOf

func NewXComCollectionAllOf() *XComCollectionAllOf

NewXComCollectionAllOf instantiates a new XComCollectionAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewXComCollectionAllOfWithDefaults

func NewXComCollectionAllOfWithDefaults() *XComCollectionAllOf

NewXComCollectionAllOfWithDefaults instantiates a new XComCollectionAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*XComCollectionAllOf) GetXcomEntries

func (o *XComCollectionAllOf) GetXcomEntries() []XComCollectionItem

GetXcomEntries returns the XcomEntries field value if set, zero value otherwise.

func (*XComCollectionAllOf) GetXcomEntriesOk

func (o *XComCollectionAllOf) GetXcomEntriesOk() (*[]XComCollectionItem, bool)

GetXcomEntriesOk returns a tuple with the XcomEntries field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XComCollectionAllOf) HasXcomEntries

func (o *XComCollectionAllOf) HasXcomEntries() bool

HasXcomEntries returns a boolean if a field has been set.

func (XComCollectionAllOf) MarshalJSON

func (o XComCollectionAllOf) MarshalJSON() ([]byte, error)

func (*XComCollectionAllOf) SetXcomEntries

func (o *XComCollectionAllOf) SetXcomEntries(v []XComCollectionItem)

SetXcomEntries gets a reference to the given []XComCollectionItem and assigns it to the XcomEntries field.

type XComCollectionItem

type XComCollectionItem struct {
	Key           *string `json:"key,omitempty"`
	Timestamp     *string `json:"timestamp,omitempty"`
	ExecutionDate *string `json:"execution_date,omitempty"`
	TaskId        *string `json:"task_id,omitempty"`
	DagId         *string `json:"dag_id,omitempty"`
}

XComCollectionItem XCom entry collection item. The value field is only available when reading a single object due to the size of the value.

func NewXComCollectionItem

func NewXComCollectionItem() *XComCollectionItem

NewXComCollectionItem instantiates a new XComCollectionItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewXComCollectionItemWithDefaults

func NewXComCollectionItemWithDefaults() *XComCollectionItem

NewXComCollectionItemWithDefaults instantiates a new XComCollectionItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*XComCollectionItem) GetDagId

func (o *XComCollectionItem) GetDagId() string

GetDagId returns the DagId field value if set, zero value otherwise.

func (*XComCollectionItem) GetDagIdOk

func (o *XComCollectionItem) GetDagIdOk() (*string, bool)

GetDagIdOk returns a tuple with the DagId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XComCollectionItem) GetExecutionDate

func (o *XComCollectionItem) GetExecutionDate() string

GetExecutionDate returns the ExecutionDate field value if set, zero value otherwise.

func (*XComCollectionItem) GetExecutionDateOk

func (o *XComCollectionItem) GetExecutionDateOk() (*string, bool)

GetExecutionDateOk returns a tuple with the ExecutionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XComCollectionItem) GetKey

func (o *XComCollectionItem) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*XComCollectionItem) GetKeyOk

func (o *XComCollectionItem) 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 (*XComCollectionItem) GetTaskId

func (o *XComCollectionItem) GetTaskId() string

GetTaskId returns the TaskId field value if set, zero value otherwise.

func (*XComCollectionItem) GetTaskIdOk

func (o *XComCollectionItem) GetTaskIdOk() (*string, bool)

GetTaskIdOk returns a tuple with the TaskId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XComCollectionItem) GetTimestamp

func (o *XComCollectionItem) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*XComCollectionItem) GetTimestampOk

func (o *XComCollectionItem) GetTimestampOk() (*string, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*XComCollectionItem) HasDagId

func (o *XComCollectionItem) HasDagId() bool

HasDagId returns a boolean if a field has been set.

func (*XComCollectionItem) HasExecutionDate

func (o *XComCollectionItem) HasExecutionDate() bool

HasExecutionDate returns a boolean if a field has been set.

func (*XComCollectionItem) HasKey

func (o *XComCollectionItem) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*XComCollectionItem) HasTaskId

func (o *XComCollectionItem) HasTaskId() bool

HasTaskId returns a boolean if a field has been set.

func (*XComCollectionItem) HasTimestamp

func (o *XComCollectionItem) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (XComCollectionItem) MarshalJSON

func (o XComCollectionItem) MarshalJSON() ([]byte, error)

func (*XComCollectionItem) SetDagId

func (o *XComCollectionItem) SetDagId(v string)

SetDagId gets a reference to the given string and assigns it to the DagId field.

func (*XComCollectionItem) SetExecutionDate

func (o *XComCollectionItem) SetExecutionDate(v string)

SetExecutionDate gets a reference to the given string and assigns it to the ExecutionDate field.

func (*XComCollectionItem) SetKey

func (o *XComCollectionItem) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*XComCollectionItem) SetTaskId

func (o *XComCollectionItem) SetTaskId(v string)

SetTaskId gets a reference to the given string and assigns it to the TaskId field.

func (*XComCollectionItem) SetTimestamp

func (o *XComCollectionItem) SetTimestamp(v string)

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL