flowpipeapi

package module
v1.0.0 Latest Latest
Warning

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

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

README

Go SDK for Flowpipe

Flowpipe is a low-code workflow automation tool that aims to be simple yet powerful.

For help on getting started with Flowpipe, please visit https://flowpipe.io

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: 0.1.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit http://www.flowpipe.io

Installation

Install the following dependencies:

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

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

import flowpipeapi "github.com/turbot/flowpipe-sdk-go"

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(), flowpipeapi.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(), flowpipeapi.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(), flowpipeapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), flowpipeapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://localhost/api/v0

Class Method HTTP request Description
IntegrationApi Get Get /integration/{integration_name} Get integration
IntegrationApi List Get /integration List integrations
ModApi Get Get /mod/{mod_name} Get mod
NotifierApi Get Get /notifier/{notifier_name} Get notifier
NotifierApi List Get /notifier List notifiers
PipelineApi Command Post /pipeline/{pipeline_name}/command Execute a pipeline command
PipelineApi Get Get /pipeline/{pipeline_name} Get pipeline
PipelineApi List Get /pipeline List pipelines
ProcessApi Get Get /process/{process_id} Get process
ProcessApi GetExecution Get /process/{process_id}/execution Get process execution
ProcessApi GetLog Get /process/{process_id}/log/process.json Get process log
ProcessApi List Get /process List processs
TriggerApi Command Post /trigger/{trigger_name}/command Execute a trigger command
TriggerApi Get Get /trigger/{trigger_name} Get trigger
TriggerApi List Get /trigger List triggers
VariableApi Get Get /variable/{variable_name} Get variable
VariableApi List Get /variable List variables

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

ApiKeyAuth
  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

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

info@flowpipe.io

Documentation

Index

Constants

This section is empty.

Variables

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

	// 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 AllowedModconfigNextStepActionEnumValues = []ModconfigNextStepAction{
	"start",
	"inaccessible",
	"skip",
}

All allowed values of ModconfigNextStepAction enum

View Source
var AllowedNextStepActionEnumValues = []NextStepAction{
	"start",
	"inaccessible",
	"skip",
}

All allowed values of NextStepAction enum

Functions

func CacheExpires

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

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

func Hello

func Hello(name string) string

Hello returns a greeting for the named person.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	IntegrationApi *IntegrationApiService

	ModApi *ModApiService

	NotifierApi *NotifierApiService

	PipelineApi *PipelineApiService

	ProcessApi *ProcessApiService

	TriggerApi *TriggerApiService

	VariableApi *VariableApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Flowpipe API v0.1.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 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 CmdPipeline

type CmdPipeline struct {
	Args       map[string]interface{} `json:"args,omitempty"`
	ArgsString *map[string]string     `json:"args_string,omitempty"`
	Command    string                 `json:"command"`
	// Sepcify execution id, if not specified, a new execution id will be created
	ExecutionId   *string `json:"execution_id,omitempty"`
	ExecutionMode *string `json:"execution_mode,omitempty"`
	WaitRetry     *int32  `json:"wait_retry,omitempty"`
}

CmdPipeline struct for CmdPipeline

func NewCmdPipeline

func NewCmdPipeline(command string) *CmdPipeline

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

func NewCmdPipelineWithDefaults

func NewCmdPipelineWithDefaults() *CmdPipeline

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

func (*CmdPipeline) GetArgs

func (o *CmdPipeline) GetArgs() map[string]interface{}

GetArgs returns the Args field value if set, zero value otherwise.

func (*CmdPipeline) GetArgsOk

func (o *CmdPipeline) GetArgsOk() (map[string]interface{}, bool)

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

func (*CmdPipeline) GetArgsString

func (o *CmdPipeline) GetArgsString() map[string]string

GetArgsString returns the ArgsString field value if set, zero value otherwise.

func (*CmdPipeline) GetArgsStringOk

func (o *CmdPipeline) GetArgsStringOk() (*map[string]string, bool)

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

func (*CmdPipeline) GetCommand

func (o *CmdPipeline) GetCommand() string

GetCommand returns the Command field value

func (*CmdPipeline) GetCommandOk

func (o *CmdPipeline) GetCommandOk() (*string, bool)

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

func (*CmdPipeline) GetExecutionId added in v0.5.0

func (o *CmdPipeline) GetExecutionId() string

GetExecutionId returns the ExecutionId field value if set, zero value otherwise.

func (*CmdPipeline) GetExecutionIdOk added in v0.5.0

func (o *CmdPipeline) GetExecutionIdOk() (*string, bool)

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

func (*CmdPipeline) GetExecutionMode

func (o *CmdPipeline) GetExecutionMode() string

GetExecutionMode returns the ExecutionMode field value if set, zero value otherwise.

func (*CmdPipeline) GetExecutionModeOk

func (o *CmdPipeline) GetExecutionModeOk() (*string, bool)

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

func (CmdPipeline) GetResourceType

func (o CmdPipeline) GetResourceType() string

func (*CmdPipeline) GetWaitRetry

func (o *CmdPipeline) GetWaitRetry() int32

GetWaitRetry returns the WaitRetry field value if set, zero value otherwise.

func (*CmdPipeline) GetWaitRetryOk

func (o *CmdPipeline) GetWaitRetryOk() (*int32, bool)

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

func (*CmdPipeline) HasArgs

func (o *CmdPipeline) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*CmdPipeline) HasArgsString

func (o *CmdPipeline) HasArgsString() bool

HasArgsString returns a boolean if a field has been set.

func (*CmdPipeline) HasExecutionId added in v0.5.0

func (o *CmdPipeline) HasExecutionId() bool

HasExecutionId returns a boolean if a field has been set.

func (*CmdPipeline) HasExecutionMode

func (o *CmdPipeline) HasExecutionMode() bool

HasExecutionMode returns a boolean if a field has been set.

func (*CmdPipeline) HasWaitRetry

func (o *CmdPipeline) HasWaitRetry() bool

HasWaitRetry returns a boolean if a field has been set.

func (CmdPipeline) MarshalJSON

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

func (*CmdPipeline) SetArgs

func (o *CmdPipeline) SetArgs(v map[string]interface{})

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

func (*CmdPipeline) SetArgsString

func (o *CmdPipeline) SetArgsString(v map[string]string)

SetArgsString gets a reference to the given map[string]string and assigns it to the ArgsString field.

func (*CmdPipeline) SetCommand

func (o *CmdPipeline) SetCommand(v string)

SetCommand sets field value

func (*CmdPipeline) SetExecutionId added in v0.5.0

func (o *CmdPipeline) SetExecutionId(v string)

SetExecutionId gets a reference to the given string and assigns it to the ExecutionId field.

func (*CmdPipeline) SetExecutionMode

func (o *CmdPipeline) SetExecutionMode(v string)

SetExecutionMode gets a reference to the given string and assigns it to the ExecutionMode field.

func (*CmdPipeline) SetWaitRetry

func (o *CmdPipeline) SetWaitRetry(v int32)

SetWaitRetry gets a reference to the given int32 and assigns it to the WaitRetry field.

func (CmdPipeline) ToMap

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

type CmdTrigger added in v0.5.0

type CmdTrigger struct {
	Args       map[string]interface{} `json:"args,omitempty"`
	ArgsString *map[string]string     `json:"args_string,omitempty"`
	Command    string                 `json:"command"`
	// Sepcify execution id, if not specified, a new execution id will be created
	ExecutionId   *string `json:"execution_id,omitempty"`
	ExecutionMode *string `json:"execution_mode,omitempty"`
	WaitRetry     *int32  `json:"wait_retry,omitempty"`
}

CmdTrigger struct for CmdTrigger

func NewCmdTrigger added in v0.5.0

func NewCmdTrigger(command string) *CmdTrigger

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

func NewCmdTriggerWithDefaults added in v0.5.0

func NewCmdTriggerWithDefaults() *CmdTrigger

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

func (*CmdTrigger) GetArgs added in v0.5.0

func (o *CmdTrigger) GetArgs() map[string]interface{}

GetArgs returns the Args field value if set, zero value otherwise.

func (*CmdTrigger) GetArgsOk added in v0.5.0

func (o *CmdTrigger) GetArgsOk() (map[string]interface{}, bool)

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

func (*CmdTrigger) GetArgsString added in v0.5.0

func (o *CmdTrigger) GetArgsString() map[string]string

GetArgsString returns the ArgsString field value if set, zero value otherwise.

func (*CmdTrigger) GetArgsStringOk added in v0.5.0

func (o *CmdTrigger) GetArgsStringOk() (*map[string]string, bool)

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

func (*CmdTrigger) GetCommand added in v0.5.0

func (o *CmdTrigger) GetCommand() string

GetCommand returns the Command field value

func (*CmdTrigger) GetCommandOk added in v0.5.0

func (o *CmdTrigger) GetCommandOk() (*string, bool)

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

func (*CmdTrigger) GetExecutionId added in v0.5.0

func (o *CmdTrigger) GetExecutionId() string

GetExecutionId returns the ExecutionId field value if set, zero value otherwise.

func (*CmdTrigger) GetExecutionIdOk added in v0.5.0

func (o *CmdTrigger) GetExecutionIdOk() (*string, bool)

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

func (*CmdTrigger) GetExecutionMode added in v0.5.0

func (o *CmdTrigger) GetExecutionMode() string

GetExecutionMode returns the ExecutionMode field value if set, zero value otherwise.

func (*CmdTrigger) GetExecutionModeOk added in v0.5.0

func (o *CmdTrigger) GetExecutionModeOk() (*string, bool)

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

func (CmdTrigger) GetResourceType added in v0.5.0

func (o CmdTrigger) GetResourceType() string

func (*CmdTrigger) GetWaitRetry added in v0.5.0

func (o *CmdTrigger) GetWaitRetry() int32

GetWaitRetry returns the WaitRetry field value if set, zero value otherwise.

func (*CmdTrigger) GetWaitRetryOk added in v0.5.0

func (o *CmdTrigger) GetWaitRetryOk() (*int32, bool)

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

func (*CmdTrigger) HasArgs added in v0.5.0

func (o *CmdTrigger) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*CmdTrigger) HasArgsString added in v0.5.0

func (o *CmdTrigger) HasArgsString() bool

HasArgsString returns a boolean if a field has been set.

func (*CmdTrigger) HasExecutionId added in v0.5.0

func (o *CmdTrigger) HasExecutionId() bool

HasExecutionId returns a boolean if a field has been set.

func (*CmdTrigger) HasExecutionMode added in v0.5.0

func (o *CmdTrigger) HasExecutionMode() bool

HasExecutionMode returns a boolean if a field has been set.

func (*CmdTrigger) HasWaitRetry added in v0.5.0

func (o *CmdTrigger) HasWaitRetry() bool

HasWaitRetry returns a boolean if a field has been set.

func (CmdTrigger) MarshalJSON added in v0.5.0

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

func (*CmdTrigger) SetArgs added in v0.5.0

func (o *CmdTrigger) SetArgs(v map[string]interface{})

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

func (*CmdTrigger) SetArgsString added in v0.5.0

func (o *CmdTrigger) SetArgsString(v map[string]string)

SetArgsString gets a reference to the given map[string]string and assigns it to the ArgsString field.

func (*CmdTrigger) SetCommand added in v0.5.0

func (o *CmdTrigger) SetCommand(v string)

SetCommand sets field value

func (*CmdTrigger) SetExecutionId added in v0.5.0

func (o *CmdTrigger) SetExecutionId(v string)

SetExecutionId gets a reference to the given string and assigns it to the ExecutionId field.

func (*CmdTrigger) SetExecutionMode added in v0.5.0

func (o *CmdTrigger) SetExecutionMode(v string)

SetExecutionMode gets a reference to the given string and assigns it to the ExecutionMode field.

func (*CmdTrigger) SetWaitRetry added in v0.5.0

func (o *CmdTrigger) SetWaitRetry(v int32)

SetWaitRetry gets a reference to the given int32 and assigns it to the WaitRetry field.

func (CmdTrigger) ToMap added in v0.5.0

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type ErrorDetailModel

type ErrorDetailModel struct {
	Location *string `json:"location,omitempty"`
	Message  *string `json:"message,omitempty"`
}

ErrorDetailModel struct for ErrorDetailModel

func NewErrorDetailModel

func NewErrorDetailModel() *ErrorDetailModel

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

func NewErrorDetailModelWithDefaults

func NewErrorDetailModelWithDefaults() *ErrorDetailModel

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

func (*ErrorDetailModel) GetLocation

func (o *ErrorDetailModel) GetLocation() string

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

func (*ErrorDetailModel) GetLocationOk

func (o *ErrorDetailModel) GetLocationOk() (*string, bool)

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

func (*ErrorDetailModel) GetMessage

func (o *ErrorDetailModel) GetMessage() string

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

func (*ErrorDetailModel) GetMessageOk

func (o *ErrorDetailModel) 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 (ErrorDetailModel) GetResourceType

func (o ErrorDetailModel) GetResourceType() string

func (*ErrorDetailModel) HasLocation

func (o *ErrorDetailModel) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*ErrorDetailModel) HasMessage

func (o *ErrorDetailModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ErrorDetailModel) MarshalJSON

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

func (*ErrorDetailModel) SetLocation

func (o *ErrorDetailModel) SetLocation(v string)

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

func (*ErrorDetailModel) SetMessage

func (o *ErrorDetailModel) SetMessage(v string)

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

func (ErrorDetailModel) ToMap

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

type ErrorModel

type ErrorModel struct {
	Detail   *string `json:"detail,omitempty"`
	Instance string  `json:"instance"`
	// All errors are fatal unless specified
	Retryable        *bool              `json:"retryable,omitempty"`
	Status           int32              `json:"status"`
	Title            string             `json:"title"`
	Type             string             `json:"type"`
	ValidationErrors []ErrorDetailModel `json:"validation_errors,omitempty"`
}

ErrorModel struct for ErrorModel

func NewErrorModel

func NewErrorModel(instance string, status int32, title string, type_ string) *ErrorModel

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

func NewErrorModelWithDefaults

func NewErrorModelWithDefaults() *ErrorModel

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

func (*ErrorModel) GetDetail

func (o *ErrorModel) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ErrorModel) GetDetailOk

func (o *ErrorModel) 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 (*ErrorModel) GetInstance

func (o *ErrorModel) GetInstance() string

GetInstance returns the Instance field value

func (*ErrorModel) GetInstanceOk

func (o *ErrorModel) GetInstanceOk() (*string, bool)

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

func (ErrorModel) GetResourceType

func (o ErrorModel) GetResourceType() string

func (*ErrorModel) GetRetryable

func (o *ErrorModel) GetRetryable() bool

GetRetryable returns the Retryable field value if set, zero value otherwise.

func (*ErrorModel) GetRetryableOk

func (o *ErrorModel) GetRetryableOk() (*bool, bool)

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

func (*ErrorModel) GetStatus

func (o *ErrorModel) GetStatus() int32

GetStatus returns the Status field value

func (*ErrorModel) GetStatusOk

func (o *ErrorModel) GetStatusOk() (*int32, bool)

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

func (*ErrorModel) GetTitle

func (o *ErrorModel) GetTitle() string

GetTitle returns the Title field value

func (*ErrorModel) GetTitleOk

func (o *ErrorModel) GetTitleOk() (*string, bool)

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

func (*ErrorModel) GetType

func (o *ErrorModel) GetType() string

GetType returns the Type field value

func (*ErrorModel) GetTypeOk

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

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

func (*ErrorModel) GetValidationErrors

func (o *ErrorModel) GetValidationErrors() []ErrorDetailModel

GetValidationErrors returns the ValidationErrors field value if set, zero value otherwise.

func (*ErrorModel) GetValidationErrorsOk

func (o *ErrorModel) GetValidationErrorsOk() ([]ErrorDetailModel, bool)

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

func (*ErrorModel) HasDetail

func (o *ErrorModel) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ErrorModel) HasRetryable

func (o *ErrorModel) HasRetryable() bool

HasRetryable returns a boolean if a field has been set.

func (*ErrorModel) HasValidationErrors

func (o *ErrorModel) HasValidationErrors() bool

HasValidationErrors returns a boolean if a field has been set.

func (ErrorModel) MarshalJSON

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

func (*ErrorModel) SetDetail

func (o *ErrorModel) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ErrorModel) SetInstance

func (o *ErrorModel) SetInstance(v string)

SetInstance sets field value

func (*ErrorModel) SetRetryable

func (o *ErrorModel) SetRetryable(v bool)

SetRetryable gets a reference to the given bool and assigns it to the Retryable field.

func (*ErrorModel) SetStatus

func (o *ErrorModel) SetStatus(v int32)

SetStatus sets field value

func (*ErrorModel) SetTitle

func (o *ErrorModel) SetTitle(v string)

SetTitle sets field value

func (*ErrorModel) SetType

func (o *ErrorModel) SetType(v string)

SetType sets field value

func (*ErrorModel) SetValidationErrors

func (o *ErrorModel) SetValidationErrors(v []ErrorDetailModel)

SetValidationErrors gets a reference to the given []ErrorDetailModel and assigns it to the ValidationErrors field.

func (ErrorModel) ToMap

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

type EventEventLogImpl added in v0.5.0

type EventEventLogImpl struct {
	CreatedAt     *string                `json:"created_at,omitempty"`
	Detail        map[string]interface{} `json:"detail,omitempty"`
	Id            *string                `json:"id,omitempty"`
	Level         *string                `json:"level,omitempty"`
	Message       *string                `json:"message,omitempty"`
	ProcessId     *string                `json:"process_id,omitempty"`
	StructVersion *string                `json:"struct_version,omitempty"`
}

EventEventLogImpl struct for EventEventLogImpl

func NewEventEventLogImpl added in v0.5.0

func NewEventEventLogImpl() *EventEventLogImpl

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

func NewEventEventLogImplWithDefaults added in v0.5.0

func NewEventEventLogImplWithDefaults() *EventEventLogImpl

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

func (*EventEventLogImpl) GetCreatedAt added in v0.5.0

func (o *EventEventLogImpl) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*EventEventLogImpl) GetCreatedAtOk added in v0.5.0

func (o *EventEventLogImpl) GetCreatedAtOk() (*string, bool)

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

func (*EventEventLogImpl) GetDetail added in v0.5.0

func (o *EventEventLogImpl) GetDetail() map[string]interface{}

GetDetail returns the Detail field value if set, zero value otherwise.

func (*EventEventLogImpl) GetDetailOk added in v0.5.0

func (o *EventEventLogImpl) GetDetailOk() (map[string]interface{}, 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 (*EventEventLogImpl) GetId added in v0.5.0

func (o *EventEventLogImpl) GetId() string

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

func (*EventEventLogImpl) GetIdOk added in v0.5.0

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

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

func (*EventEventLogImpl) GetLevel added in v0.5.0

func (o *EventEventLogImpl) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*EventEventLogImpl) GetLevelOk added in v0.5.0

func (o *EventEventLogImpl) GetLevelOk() (*string, bool)

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

func (*EventEventLogImpl) GetMessage added in v0.5.0

func (o *EventEventLogImpl) GetMessage() string

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

func (*EventEventLogImpl) GetMessageOk added in v0.5.0

func (o *EventEventLogImpl) 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 (*EventEventLogImpl) GetProcessId added in v0.5.0

func (o *EventEventLogImpl) GetProcessId() string

GetProcessId returns the ProcessId field value if set, zero value otherwise.

func (*EventEventLogImpl) GetProcessIdOk added in v0.5.0

func (o *EventEventLogImpl) GetProcessIdOk() (*string, bool)

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

func (EventEventLogImpl) GetResourceType added in v0.5.0

func (o EventEventLogImpl) GetResourceType() string

func (*EventEventLogImpl) GetStructVersion added in v0.5.0

func (o *EventEventLogImpl) GetStructVersion() string

GetStructVersion returns the StructVersion field value if set, zero value otherwise.

func (*EventEventLogImpl) GetStructVersionOk added in v0.5.0

func (o *EventEventLogImpl) GetStructVersionOk() (*string, bool)

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

func (*EventEventLogImpl) HasCreatedAt added in v0.5.0

func (o *EventEventLogImpl) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*EventEventLogImpl) HasDetail added in v0.5.0

func (o *EventEventLogImpl) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*EventEventLogImpl) HasId added in v0.5.0

func (o *EventEventLogImpl) HasId() bool

HasId returns a boolean if a field has been set.

func (*EventEventLogImpl) HasLevel added in v0.5.0

func (o *EventEventLogImpl) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*EventEventLogImpl) HasMessage added in v0.5.0

func (o *EventEventLogImpl) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*EventEventLogImpl) HasProcessId added in v0.5.0

func (o *EventEventLogImpl) HasProcessId() bool

HasProcessId returns a boolean if a field has been set.

func (*EventEventLogImpl) HasStructVersion added in v0.5.0

func (o *EventEventLogImpl) HasStructVersion() bool

HasStructVersion returns a boolean if a field has been set.

func (EventEventLogImpl) MarshalJSON added in v0.5.0

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

func (*EventEventLogImpl) SetCreatedAt added in v0.5.0

func (o *EventEventLogImpl) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*EventEventLogImpl) SetDetail added in v0.5.0

func (o *EventEventLogImpl) SetDetail(v map[string]interface{})

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

func (*EventEventLogImpl) SetId added in v0.5.0

func (o *EventEventLogImpl) SetId(v string)

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

func (*EventEventLogImpl) SetLevel added in v0.5.0

func (o *EventEventLogImpl) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (*EventEventLogImpl) SetMessage added in v0.5.0

func (o *EventEventLogImpl) SetMessage(v string)

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

func (*EventEventLogImpl) SetProcessId added in v0.5.0

func (o *EventEventLogImpl) SetProcessId(v string)

SetProcessId gets a reference to the given string and assigns it to the ProcessId field.

func (*EventEventLogImpl) SetStructVersion added in v0.5.0

func (o *EventEventLogImpl) SetStructVersion(v string)

SetStructVersion gets a reference to the given string and assigns it to the StructVersion field.

func (EventEventLogImpl) ToMap added in v0.5.0

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

type ExecutionExecution

type ExecutionExecution struct {
	// Unique identifier for this execution.
	Id *string `json:"id,omitempty"`
	// Pipelines triggered by the execution. Even if the pipelines are nested, we maintain a flat list of all pipelines for easy lookup and querying.
	PipelineExecutions *map[string]ExecutionPipelineExecution `json:"pipeline_executions,omitempty"`
}

ExecutionExecution struct for ExecutionExecution

func NewExecutionExecution

func NewExecutionExecution() *ExecutionExecution

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

func NewExecutionExecutionWithDefaults

func NewExecutionExecutionWithDefaults() *ExecutionExecution

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

func (*ExecutionExecution) GetId

func (o *ExecutionExecution) GetId() string

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

func (*ExecutionExecution) GetIdOk

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

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

func (*ExecutionExecution) GetPipelineExecutions

func (o *ExecutionExecution) GetPipelineExecutions() map[string]ExecutionPipelineExecution

GetPipelineExecutions returns the PipelineExecutions field value if set, zero value otherwise.

func (*ExecutionExecution) GetPipelineExecutionsOk

func (o *ExecutionExecution) GetPipelineExecutionsOk() (*map[string]ExecutionPipelineExecution, bool)

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

func (ExecutionExecution) GetResourceType

func (o ExecutionExecution) GetResourceType() string

func (*ExecutionExecution) HasId

func (o *ExecutionExecution) HasId() bool

HasId returns a boolean if a field has been set.

func (*ExecutionExecution) HasPipelineExecutions

func (o *ExecutionExecution) HasPipelineExecutions() bool

HasPipelineExecutions returns a boolean if a field has been set.

func (ExecutionExecution) MarshalJSON

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

func (*ExecutionExecution) SetId

func (o *ExecutionExecution) SetId(v string)

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

func (*ExecutionExecution) SetPipelineExecutions

func (o *ExecutionExecution) SetPipelineExecutions(v map[string]ExecutionPipelineExecution)

SetPipelineExecutions gets a reference to the given map[string]ExecutionPipelineExecution and assigns it to the PipelineExecutions field.

func (ExecutionExecution) ToMap

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

type ExecutionPipelineExecution

type ExecutionPipelineExecution struct {
	Args    map[string]interface{} `json:"args,omitempty"`
	EndTime *string                `json:"end_time,omitempty"`
	// All errors from the step execution + any errors that can be added to the pipeline execution manually
	Errors []ModconfigStepError `json:"errors,omitempty"`
	// Unique identifier for this pipeline execution
	Id *string `json:"id,omitempty"`
	// The name of the pipeline
	Name              *string `json:"name,omitempty"`
	ParentExecutionId *string `json:"parent_execution_id,omitempty"`
	// If this is a child pipeline, then track it's parent
	ParentStepExecutionId *string `json:"parent_step_execution_id,omitempty"`
	// The output of the pipeline
	PipelineOutput map[string]interface{} `json:"pipeline_output,omitempty"`
	StartTime      *string                `json:"start_time,omitempty"`
	// The status of the pipeline execution: queued, planned, started, completed, failed
	Status *string `json:"status,omitempty"`
	// Status of each step on a per-step index basis. Used to determine if dependencies have been met etc. Note that each step may have multiple executions, the status of which are not tracked here. dependencies have been met, etc.  The Step Status used to be per-step, however the addition of for_each means that we now need to expand this tracking to include the \"index\" of the step  for_each have 2 type of results: list or map, however in Flowpipe they are both treated as a map, the list is simply a map that the key happens to be a string of \"0\", \"1\", \"2\"    The data structure of StepStatus is as follow:   {    \"echo.echo\": {     \"0\": {      xyz     },     \"1\": {      xyz     }    },    \"http.one\": {     \"foo\": {      zzz     },     \"bar\": {      yyy     }    }   }    echo.echo has a for_each which is a list, so the key is the index of the list    http.one has a for_each which is a map, so the key is the key of the map    LOOP    Loop will be recorded in StepStatus.StepExecution, it's an array   *
	StepStatus *map[string]map[string]ExecutionStepStatus `json:"step_status,omitempty"`
}

ExecutionPipelineExecution struct for ExecutionPipelineExecution

func NewExecutionPipelineExecution

func NewExecutionPipelineExecution() *ExecutionPipelineExecution

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

func NewExecutionPipelineExecutionWithDefaults

func NewExecutionPipelineExecutionWithDefaults() *ExecutionPipelineExecution

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

func (*ExecutionPipelineExecution) GetArgs

func (o *ExecutionPipelineExecution) GetArgs() map[string]interface{}

GetArgs returns the Args field value if set, zero value otherwise.

func (*ExecutionPipelineExecution) GetArgsOk

func (o *ExecutionPipelineExecution) GetArgsOk() (map[string]interface{}, bool)

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

func (*ExecutionPipelineExecution) GetEndTime

func (o *ExecutionPipelineExecution) GetEndTime() string

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*ExecutionPipelineExecution) GetEndTimeOk

func (o *ExecutionPipelineExecution) GetEndTimeOk() (*string, bool)

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

func (*ExecutionPipelineExecution) GetErrors

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ExecutionPipelineExecution) GetErrorsOk

func (o *ExecutionPipelineExecution) GetErrorsOk() ([]ModconfigStepError, bool)

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

func (*ExecutionPipelineExecution) GetId

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

func (*ExecutionPipelineExecution) GetIdOk

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

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

func (*ExecutionPipelineExecution) GetName

func (o *ExecutionPipelineExecution) GetName() string

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

func (*ExecutionPipelineExecution) GetNameOk

func (o *ExecutionPipelineExecution) 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 (*ExecutionPipelineExecution) GetParentExecutionId

func (o *ExecutionPipelineExecution) GetParentExecutionId() string

GetParentExecutionId returns the ParentExecutionId field value if set, zero value otherwise.

func (*ExecutionPipelineExecution) GetParentExecutionIdOk

func (o *ExecutionPipelineExecution) GetParentExecutionIdOk() (*string, bool)

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

func (*ExecutionPipelineExecution) GetParentStepExecutionId

func (o *ExecutionPipelineExecution) GetParentStepExecutionId() string

GetParentStepExecutionId returns the ParentStepExecutionId field value if set, zero value otherwise.

func (*ExecutionPipelineExecution) GetParentStepExecutionIdOk

func (o *ExecutionPipelineExecution) GetParentStepExecutionIdOk() (*string, bool)

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

func (*ExecutionPipelineExecution) GetPipelineOutput

func (o *ExecutionPipelineExecution) GetPipelineOutput() map[string]interface{}

GetPipelineOutput returns the PipelineOutput field value if set, zero value otherwise.

func (*ExecutionPipelineExecution) GetPipelineOutputOk

func (o *ExecutionPipelineExecution) GetPipelineOutputOk() (map[string]interface{}, bool)

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

func (ExecutionPipelineExecution) GetResourceType

func (o ExecutionPipelineExecution) GetResourceType() string

func (*ExecutionPipelineExecution) GetStartTime

func (o *ExecutionPipelineExecution) GetStartTime() string

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*ExecutionPipelineExecution) GetStartTimeOk

func (o *ExecutionPipelineExecution) GetStartTimeOk() (*string, bool)

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

func (*ExecutionPipelineExecution) GetStatus

func (o *ExecutionPipelineExecution) GetStatus() string

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

func (*ExecutionPipelineExecution) GetStatusOk

func (o *ExecutionPipelineExecution) GetStatusOk() (*string, bool)

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

func (*ExecutionPipelineExecution) GetStepStatus

func (o *ExecutionPipelineExecution) GetStepStatus() map[string]map[string]ExecutionStepStatus

GetStepStatus returns the StepStatus field value if set, zero value otherwise.

func (*ExecutionPipelineExecution) GetStepStatusOk

func (o *ExecutionPipelineExecution) GetStepStatusOk() (*map[string]map[string]ExecutionStepStatus, bool)

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

func (*ExecutionPipelineExecution) HasArgs

func (o *ExecutionPipelineExecution) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasEndTime

func (o *ExecutionPipelineExecution) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasErrors

func (o *ExecutionPipelineExecution) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasId

func (o *ExecutionPipelineExecution) HasId() bool

HasId returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasName

func (o *ExecutionPipelineExecution) HasName() bool

HasName returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasParentExecutionId

func (o *ExecutionPipelineExecution) HasParentExecutionId() bool

HasParentExecutionId returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasParentStepExecutionId

func (o *ExecutionPipelineExecution) HasParentStepExecutionId() bool

HasParentStepExecutionId returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasPipelineOutput

func (o *ExecutionPipelineExecution) HasPipelineOutput() bool

HasPipelineOutput returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasStartTime

func (o *ExecutionPipelineExecution) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasStatus

func (o *ExecutionPipelineExecution) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ExecutionPipelineExecution) HasStepStatus

func (o *ExecutionPipelineExecution) HasStepStatus() bool

HasStepStatus returns a boolean if a field has been set.

func (ExecutionPipelineExecution) MarshalJSON

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

func (*ExecutionPipelineExecution) SetArgs

func (o *ExecutionPipelineExecution) SetArgs(v map[string]interface{})

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

func (*ExecutionPipelineExecution) SetEndTime

func (o *ExecutionPipelineExecution) SetEndTime(v string)

SetEndTime gets a reference to the given string and assigns it to the EndTime field.

func (*ExecutionPipelineExecution) SetErrors

SetErrors gets a reference to the given []ModconfigStepError and assigns it to the Errors field.

func (*ExecutionPipelineExecution) SetId

func (o *ExecutionPipelineExecution) SetId(v string)

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

func (*ExecutionPipelineExecution) SetName

func (o *ExecutionPipelineExecution) SetName(v string)

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

func (*ExecutionPipelineExecution) SetParentExecutionId

func (o *ExecutionPipelineExecution) SetParentExecutionId(v string)

SetParentExecutionId gets a reference to the given string and assigns it to the ParentExecutionId field.

func (*ExecutionPipelineExecution) SetParentStepExecutionId

func (o *ExecutionPipelineExecution) SetParentStepExecutionId(v string)

SetParentStepExecutionId gets a reference to the given string and assigns it to the ParentStepExecutionId field.

func (*ExecutionPipelineExecution) SetPipelineOutput

func (o *ExecutionPipelineExecution) SetPipelineOutput(v map[string]interface{})

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

func (*ExecutionPipelineExecution) SetStartTime

func (o *ExecutionPipelineExecution) SetStartTime(v string)

SetStartTime gets a reference to the given string and assigns it to the StartTime field.

func (*ExecutionPipelineExecution) SetStatus

func (o *ExecutionPipelineExecution) SetStatus(v string)

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

func (*ExecutionPipelineExecution) SetStepStatus

func (o *ExecutionPipelineExecution) SetStepStatus(v map[string]map[string]ExecutionStepStatus)

SetStepStatus gets a reference to the given map[string]map[string]ExecutionStepStatus and assigns it to the StepStatus field.

func (ExecutionPipelineExecution) ToMap

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

type ExecutionSnapshot

type ExecutionSnapshot struct {
	EndTime       *string                            `json:"end_time,omitempty"`
	Layout        *ExecutionSnapshotLayout           `json:"layout,omitempty"`
	Panels        *map[string]ExecutionSnapshotPanel `json:"panels,omitempty"`
	SchemaVersion *string                            `json:"schema_version,omitempty"`
	StartTime     *string                            `json:"start_time,omitempty"`
}

ExecutionSnapshot struct for ExecutionSnapshot

func NewExecutionSnapshot

func NewExecutionSnapshot() *ExecutionSnapshot

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

func NewExecutionSnapshotWithDefaults

func NewExecutionSnapshotWithDefaults() *ExecutionSnapshot

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

func (*ExecutionSnapshot) GetEndTime

func (o *ExecutionSnapshot) GetEndTime() string

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*ExecutionSnapshot) GetEndTimeOk

func (o *ExecutionSnapshot) GetEndTimeOk() (*string, bool)

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

func (*ExecutionSnapshot) GetLayout

GetLayout returns the Layout field value if set, zero value otherwise.

func (*ExecutionSnapshot) GetLayoutOk

func (o *ExecutionSnapshot) GetLayoutOk() (*ExecutionSnapshotLayout, bool)

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

func (*ExecutionSnapshot) GetPanels

func (o *ExecutionSnapshot) GetPanels() map[string]ExecutionSnapshotPanel

GetPanels returns the Panels field value if set, zero value otherwise.

func (*ExecutionSnapshot) GetPanelsOk

func (o *ExecutionSnapshot) GetPanelsOk() (*map[string]ExecutionSnapshotPanel, bool)

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

func (ExecutionSnapshot) GetResourceType

func (o ExecutionSnapshot) GetResourceType() string

func (*ExecutionSnapshot) GetSchemaVersion

func (o *ExecutionSnapshot) GetSchemaVersion() string

GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise.

func (*ExecutionSnapshot) GetSchemaVersionOk

func (o *ExecutionSnapshot) GetSchemaVersionOk() (*string, bool)

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

func (*ExecutionSnapshot) GetStartTime

func (o *ExecutionSnapshot) GetStartTime() string

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*ExecutionSnapshot) GetStartTimeOk

func (o *ExecutionSnapshot) GetStartTimeOk() (*string, bool)

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

func (*ExecutionSnapshot) HasEndTime

func (o *ExecutionSnapshot) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*ExecutionSnapshot) HasLayout

func (o *ExecutionSnapshot) HasLayout() bool

HasLayout returns a boolean if a field has been set.

func (*ExecutionSnapshot) HasPanels

func (o *ExecutionSnapshot) HasPanels() bool

HasPanels returns a boolean if a field has been set.

func (*ExecutionSnapshot) HasSchemaVersion

func (o *ExecutionSnapshot) HasSchemaVersion() bool

HasSchemaVersion returns a boolean if a field has been set.

func (*ExecutionSnapshot) HasStartTime

func (o *ExecutionSnapshot) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (ExecutionSnapshot) MarshalJSON

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

func (*ExecutionSnapshot) SetEndTime

func (o *ExecutionSnapshot) SetEndTime(v string)

SetEndTime gets a reference to the given string and assigns it to the EndTime field.

func (*ExecutionSnapshot) SetLayout

SetLayout gets a reference to the given ExecutionSnapshotLayout and assigns it to the Layout field.

func (*ExecutionSnapshot) SetPanels

func (o *ExecutionSnapshot) SetPanels(v map[string]ExecutionSnapshotPanel)

SetPanels gets a reference to the given map[string]ExecutionSnapshotPanel and assigns it to the Panels field.

func (*ExecutionSnapshot) SetSchemaVersion

func (o *ExecutionSnapshot) SetSchemaVersion(v string)

SetSchemaVersion gets a reference to the given string and assigns it to the SchemaVersion field.

func (*ExecutionSnapshot) SetStartTime

func (o *ExecutionSnapshot) SetStartTime(v string)

SetStartTime gets a reference to the given string and assigns it to the StartTime field.

func (ExecutionSnapshot) ToMap

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

type ExecutionSnapshotLayout

type ExecutionSnapshotLayout struct {
	Children  []ExecutionSnapshotLayout `json:"children,omitempty"`
	Name      *string                   `json:"name,omitempty"`
	PanelType *string                   `json:"panel_type,omitempty"`
}

ExecutionSnapshotLayout struct for ExecutionSnapshotLayout

func NewExecutionSnapshotLayout

func NewExecutionSnapshotLayout() *ExecutionSnapshotLayout

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

func NewExecutionSnapshotLayoutWithDefaults

func NewExecutionSnapshotLayoutWithDefaults() *ExecutionSnapshotLayout

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

func (*ExecutionSnapshotLayout) GetChildren

GetChildren returns the Children field value if set, zero value otherwise.

func (*ExecutionSnapshotLayout) GetChildrenOk

func (o *ExecutionSnapshotLayout) GetChildrenOk() ([]ExecutionSnapshotLayout, bool)

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

func (*ExecutionSnapshotLayout) GetName

func (o *ExecutionSnapshotLayout) GetName() string

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

func (*ExecutionSnapshotLayout) GetNameOk

func (o *ExecutionSnapshotLayout) 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 (*ExecutionSnapshotLayout) GetPanelType

func (o *ExecutionSnapshotLayout) GetPanelType() string

GetPanelType returns the PanelType field value if set, zero value otherwise.

func (*ExecutionSnapshotLayout) GetPanelTypeOk

func (o *ExecutionSnapshotLayout) GetPanelTypeOk() (*string, bool)

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

func (ExecutionSnapshotLayout) GetResourceType

func (o ExecutionSnapshotLayout) GetResourceType() string

func (*ExecutionSnapshotLayout) HasChildren

func (o *ExecutionSnapshotLayout) HasChildren() bool

HasChildren returns a boolean if a field has been set.

func (*ExecutionSnapshotLayout) HasName

func (o *ExecutionSnapshotLayout) HasName() bool

HasName returns a boolean if a field has been set.

func (*ExecutionSnapshotLayout) HasPanelType

func (o *ExecutionSnapshotLayout) HasPanelType() bool

HasPanelType returns a boolean if a field has been set.

func (ExecutionSnapshotLayout) MarshalJSON

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

func (*ExecutionSnapshotLayout) SetChildren

SetChildren gets a reference to the given []ExecutionSnapshotLayout and assigns it to the Children field.

func (*ExecutionSnapshotLayout) SetName

func (o *ExecutionSnapshotLayout) SetName(v string)

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

func (*ExecutionSnapshotLayout) SetPanelType

func (o *ExecutionSnapshotLayout) SetPanelType(v string)

SetPanelType gets a reference to the given string and assigns it to the PanelType field.

func (ExecutionSnapshotLayout) ToMap

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

type ExecutionSnapshotPanel

type ExecutionSnapshotPanel struct {
	Dashboard   *string                     `json:"dashboard,omitempty"`
	Data        *ExecutionSnapshotPanelData `json:"data,omitempty"`
	DisplayType *string                     `json:"display_type,omitempty"`
	Name        *string                     `json:"name,omitempty"`
	PanelType   *string                     `json:"panel_type,omitempty"`
	Properties  map[string]interface{}      `json:"properties,omitempty"`
	Status      *string                     `json:"status,omitempty"`
	Title       *string                     `json:"title,omitempty"`
	Width       *int32                      `json:"width,omitempty"`
}

ExecutionSnapshotPanel struct for ExecutionSnapshotPanel

func NewExecutionSnapshotPanel

func NewExecutionSnapshotPanel() *ExecutionSnapshotPanel

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

func NewExecutionSnapshotPanelWithDefaults

func NewExecutionSnapshotPanelWithDefaults() *ExecutionSnapshotPanel

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

func (*ExecutionSnapshotPanel) GetDashboard

func (o *ExecutionSnapshotPanel) GetDashboard() string

GetDashboard returns the Dashboard field value if set, zero value otherwise.

func (*ExecutionSnapshotPanel) GetDashboardOk

func (o *ExecutionSnapshotPanel) GetDashboardOk() (*string, bool)

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

func (*ExecutionSnapshotPanel) GetData

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

func (*ExecutionSnapshotPanel) GetDataOk

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

func (*ExecutionSnapshotPanel) GetDisplayType

func (o *ExecutionSnapshotPanel) GetDisplayType() string

GetDisplayType returns the DisplayType field value if set, zero value otherwise.

func (*ExecutionSnapshotPanel) GetDisplayTypeOk

func (o *ExecutionSnapshotPanel) GetDisplayTypeOk() (*string, bool)

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

func (*ExecutionSnapshotPanel) GetName

func (o *ExecutionSnapshotPanel) GetName() string

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

func (*ExecutionSnapshotPanel) GetNameOk

func (o *ExecutionSnapshotPanel) 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 (*ExecutionSnapshotPanel) GetPanelType

func (o *ExecutionSnapshotPanel) GetPanelType() string

GetPanelType returns the PanelType field value if set, zero value otherwise.

func (*ExecutionSnapshotPanel) GetPanelTypeOk

func (o *ExecutionSnapshotPanel) GetPanelTypeOk() (*string, bool)

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

func (*ExecutionSnapshotPanel) GetProperties

func (o *ExecutionSnapshotPanel) GetProperties() map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*ExecutionSnapshotPanel) GetPropertiesOk

func (o *ExecutionSnapshotPanel) GetPropertiesOk() (map[string]interface{}, bool)

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

func (ExecutionSnapshotPanel) GetResourceType

func (o ExecutionSnapshotPanel) GetResourceType() string

func (*ExecutionSnapshotPanel) GetStatus

func (o *ExecutionSnapshotPanel) GetStatus() string

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

func (*ExecutionSnapshotPanel) GetStatusOk

func (o *ExecutionSnapshotPanel) GetStatusOk() (*string, bool)

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

func (*ExecutionSnapshotPanel) GetTitle

func (o *ExecutionSnapshotPanel) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ExecutionSnapshotPanel) GetTitleOk

func (o *ExecutionSnapshotPanel) GetTitleOk() (*string, bool)

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

func (*ExecutionSnapshotPanel) GetWidth

func (o *ExecutionSnapshotPanel) GetWidth() int32

GetWidth returns the Width field value if set, zero value otherwise.

func (*ExecutionSnapshotPanel) GetWidthOk

func (o *ExecutionSnapshotPanel) GetWidthOk() (*int32, bool)

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

func (*ExecutionSnapshotPanel) HasDashboard

func (o *ExecutionSnapshotPanel) HasDashboard() bool

HasDashboard returns a boolean if a field has been set.

func (*ExecutionSnapshotPanel) HasData

func (o *ExecutionSnapshotPanel) HasData() bool

HasData returns a boolean if a field has been set.

func (*ExecutionSnapshotPanel) HasDisplayType

func (o *ExecutionSnapshotPanel) HasDisplayType() bool

HasDisplayType returns a boolean if a field has been set.

func (*ExecutionSnapshotPanel) HasName

func (o *ExecutionSnapshotPanel) HasName() bool

HasName returns a boolean if a field has been set.

func (*ExecutionSnapshotPanel) HasPanelType

func (o *ExecutionSnapshotPanel) HasPanelType() bool

HasPanelType returns a boolean if a field has been set.

func (*ExecutionSnapshotPanel) HasProperties

func (o *ExecutionSnapshotPanel) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*ExecutionSnapshotPanel) HasStatus

func (o *ExecutionSnapshotPanel) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ExecutionSnapshotPanel) HasTitle

func (o *ExecutionSnapshotPanel) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*ExecutionSnapshotPanel) HasWidth

func (o *ExecutionSnapshotPanel) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (ExecutionSnapshotPanel) MarshalJSON

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

func (*ExecutionSnapshotPanel) SetDashboard

func (o *ExecutionSnapshotPanel) SetDashboard(v string)

SetDashboard gets a reference to the given string and assigns it to the Dashboard field.

func (*ExecutionSnapshotPanel) SetData

SetData gets a reference to the given ExecutionSnapshotPanelData and assigns it to the Data field.

func (*ExecutionSnapshotPanel) SetDisplayType

func (o *ExecutionSnapshotPanel) SetDisplayType(v string)

SetDisplayType gets a reference to the given string and assigns it to the DisplayType field.

func (*ExecutionSnapshotPanel) SetName

func (o *ExecutionSnapshotPanel) SetName(v string)

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

func (*ExecutionSnapshotPanel) SetPanelType

func (o *ExecutionSnapshotPanel) SetPanelType(v string)

SetPanelType gets a reference to the given string and assigns it to the PanelType field.

func (*ExecutionSnapshotPanel) SetProperties

func (o *ExecutionSnapshotPanel) SetProperties(v map[string]interface{})

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

func (*ExecutionSnapshotPanel) SetStatus

func (o *ExecutionSnapshotPanel) SetStatus(v string)

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

func (*ExecutionSnapshotPanel) SetTitle

func (o *ExecutionSnapshotPanel) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*ExecutionSnapshotPanel) SetWidth

func (o *ExecutionSnapshotPanel) SetWidth(v int32)

SetWidth gets a reference to the given int32 and assigns it to the Width field.

func (ExecutionSnapshotPanel) ToMap

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

type ExecutionSnapshotPanelData

type ExecutionSnapshotPanelData struct {
	Columns []ExecutionSnapshotPanelDataColumn `json:"columns,omitempty"`
	Rows    []map[string]interface{}           `json:"rows,omitempty"`
}

ExecutionSnapshotPanelData struct for ExecutionSnapshotPanelData

func NewExecutionSnapshotPanelData

func NewExecutionSnapshotPanelData() *ExecutionSnapshotPanelData

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

func NewExecutionSnapshotPanelDataWithDefaults

func NewExecutionSnapshotPanelDataWithDefaults() *ExecutionSnapshotPanelData

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

func (*ExecutionSnapshotPanelData) GetColumns

GetColumns returns the Columns field value if set, zero value otherwise.

func (*ExecutionSnapshotPanelData) GetColumnsOk

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

func (ExecutionSnapshotPanelData) GetResourceType

func (o ExecutionSnapshotPanelData) GetResourceType() string

func (*ExecutionSnapshotPanelData) GetRows

func (o *ExecutionSnapshotPanelData) GetRows() []map[string]interface{}

GetRows returns the Rows field value if set, zero value otherwise.

func (*ExecutionSnapshotPanelData) GetRowsOk

func (o *ExecutionSnapshotPanelData) GetRowsOk() ([]map[string]interface{}, bool)

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

func (*ExecutionSnapshotPanelData) HasColumns

func (o *ExecutionSnapshotPanelData) HasColumns() bool

HasColumns returns a boolean if a field has been set.

func (*ExecutionSnapshotPanelData) HasRows

func (o *ExecutionSnapshotPanelData) HasRows() bool

HasRows returns a boolean if a field has been set.

func (ExecutionSnapshotPanelData) MarshalJSON

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

func (*ExecutionSnapshotPanelData) SetColumns

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

func (*ExecutionSnapshotPanelData) SetRows

func (o *ExecutionSnapshotPanelData) SetRows(v []map[string]interface{})

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

func (ExecutionSnapshotPanelData) ToMap

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

type ExecutionSnapshotPanelDataColumn

type ExecutionSnapshotPanelDataColumn struct {
	DataType *string `json:"data_type,omitempty"`
	Name     *string `json:"name,omitempty"`
}

ExecutionSnapshotPanelDataColumn struct for ExecutionSnapshotPanelDataColumn

func NewExecutionSnapshotPanelDataColumn

func NewExecutionSnapshotPanelDataColumn() *ExecutionSnapshotPanelDataColumn

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

func NewExecutionSnapshotPanelDataColumnWithDefaults

func NewExecutionSnapshotPanelDataColumnWithDefaults() *ExecutionSnapshotPanelDataColumn

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

func (*ExecutionSnapshotPanelDataColumn) GetDataType

func (o *ExecutionSnapshotPanelDataColumn) GetDataType() string

GetDataType returns the DataType field value if set, zero value otherwise.

func (*ExecutionSnapshotPanelDataColumn) GetDataTypeOk

func (o *ExecutionSnapshotPanelDataColumn) GetDataTypeOk() (*string, bool)

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

func (*ExecutionSnapshotPanelDataColumn) GetName

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

func (*ExecutionSnapshotPanelDataColumn) GetNameOk

func (o *ExecutionSnapshotPanelDataColumn) 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 (ExecutionSnapshotPanelDataColumn) GetResourceType

func (o ExecutionSnapshotPanelDataColumn) GetResourceType() string

func (*ExecutionSnapshotPanelDataColumn) HasDataType

func (o *ExecutionSnapshotPanelDataColumn) HasDataType() bool

HasDataType returns a boolean if a field has been set.

func (*ExecutionSnapshotPanelDataColumn) HasName

HasName returns a boolean if a field has been set.

func (ExecutionSnapshotPanelDataColumn) MarshalJSON

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

func (*ExecutionSnapshotPanelDataColumn) SetDataType

func (o *ExecutionSnapshotPanelDataColumn) SetDataType(v string)

SetDataType gets a reference to the given string and assigns it to the DataType field.

func (*ExecutionSnapshotPanelDataColumn) SetName

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

func (ExecutionSnapshotPanelDataColumn) ToMap

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

type ExecutionStepExecution

type ExecutionStepExecution struct {
	EndTime *string                `json:"end_time,omitempty"`
	Id      *string                `json:"id,omitempty"`
	Input   map[string]interface{} `json:"input,omitempty"`
	// The name of the step in the pipeline definition
	Name           *string                       `json:"name,omitempty"`
	NextStepAction *ModconfigNextStepAction      `json:"next_step_action,omitempty"`
	Output         *ExecutionStepExecutionOutput `json:"output,omitempty"`
	// Unique identifier for this step execution
	PipelineExecutionId *string `json:"pipeline_execution_id,omitempty"`
	StartTime           *string `json:"start_time,omitempty"`
	// The status of the step execution: \"started\", \"finished\", \"failed\", \"skipped\"
	Status      *string                            `json:"status,omitempty"`
	StepForEach *ExecutionStepExecutionStepForEach `json:"step_for_each,omitempty"`
	StepLoop    *ModconfigStepLoop                 `json:"step_loop,omitempty"`
	// The output from the Step's output block: output \"foo\" {    value = <xxx>  }
	StepOutput map[string]interface{} `json:"step_output,omitempty"`
	StepRetry  *ModconfigStepRetry    `json:"step_retry,omitempty"`
}

ExecutionStepExecution struct for ExecutionStepExecution

func NewExecutionStepExecution

func NewExecutionStepExecution() *ExecutionStepExecution

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

func NewExecutionStepExecutionWithDefaults

func NewExecutionStepExecutionWithDefaults() *ExecutionStepExecution

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

func (*ExecutionStepExecution) GetEndTime

func (o *ExecutionStepExecution) GetEndTime() string

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetEndTimeOk

func (o *ExecutionStepExecution) GetEndTimeOk() (*string, bool)

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

func (*ExecutionStepExecution) GetId

func (o *ExecutionStepExecution) GetId() string

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

func (*ExecutionStepExecution) GetIdOk

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

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

func (*ExecutionStepExecution) GetInput

func (o *ExecutionStepExecution) GetInput() map[string]interface{}

GetInput returns the Input field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetInputOk

func (o *ExecutionStepExecution) GetInputOk() (map[string]interface{}, bool)

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

func (*ExecutionStepExecution) GetName

func (o *ExecutionStepExecution) GetName() string

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

func (*ExecutionStepExecution) GetNameOk

func (o *ExecutionStepExecution) 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 (*ExecutionStepExecution) GetNextStepAction

func (o *ExecutionStepExecution) GetNextStepAction() ModconfigNextStepAction

GetNextStepAction returns the NextStepAction field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetNextStepActionOk

func (o *ExecutionStepExecution) GetNextStepActionOk() (*ModconfigNextStepAction, bool)

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

func (*ExecutionStepExecution) GetOutput

GetOutput returns the Output field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetOutputOk

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

func (*ExecutionStepExecution) GetPipelineExecutionId

func (o *ExecutionStepExecution) GetPipelineExecutionId() string

GetPipelineExecutionId returns the PipelineExecutionId field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetPipelineExecutionIdOk

func (o *ExecutionStepExecution) GetPipelineExecutionIdOk() (*string, bool)

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

func (ExecutionStepExecution) GetResourceType

func (o ExecutionStepExecution) GetResourceType() string

func (*ExecutionStepExecution) GetStartTime

func (o *ExecutionStepExecution) GetStartTime() string

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetStartTimeOk

func (o *ExecutionStepExecution) GetStartTimeOk() (*string, bool)

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

func (*ExecutionStepExecution) GetStatus

func (o *ExecutionStepExecution) GetStatus() string

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

func (*ExecutionStepExecution) GetStatusOk

func (o *ExecutionStepExecution) GetStatusOk() (*string, bool)

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

func (*ExecutionStepExecution) GetStepForEach

GetStepForEach returns the StepForEach field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetStepForEachOk

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

func (*ExecutionStepExecution) GetStepLoop

func (o *ExecutionStepExecution) GetStepLoop() ModconfigStepLoop

GetStepLoop returns the StepLoop field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetStepLoopOk

func (o *ExecutionStepExecution) GetStepLoopOk() (*ModconfigStepLoop, bool)

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

func (*ExecutionStepExecution) GetStepOutput

func (o *ExecutionStepExecution) GetStepOutput() map[string]interface{}

GetStepOutput returns the StepOutput field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetStepOutputOk

func (o *ExecutionStepExecution) GetStepOutputOk() (map[string]interface{}, bool)

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

func (*ExecutionStepExecution) GetStepRetry

func (o *ExecutionStepExecution) GetStepRetry() ModconfigStepRetry

GetStepRetry returns the StepRetry field value if set, zero value otherwise.

func (*ExecutionStepExecution) GetStepRetryOk

func (o *ExecutionStepExecution) GetStepRetryOk() (*ModconfigStepRetry, bool)

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

func (*ExecutionStepExecution) HasEndTime

func (o *ExecutionStepExecution) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasId

func (o *ExecutionStepExecution) HasId() bool

HasId returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasInput

func (o *ExecutionStepExecution) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasName

func (o *ExecutionStepExecution) HasName() bool

HasName returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasNextStepAction

func (o *ExecutionStepExecution) HasNextStepAction() bool

HasNextStepAction returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasOutput

func (o *ExecutionStepExecution) HasOutput() bool

HasOutput returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasPipelineExecutionId

func (o *ExecutionStepExecution) HasPipelineExecutionId() bool

HasPipelineExecutionId returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasStartTime

func (o *ExecutionStepExecution) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasStatus

func (o *ExecutionStepExecution) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasStepForEach

func (o *ExecutionStepExecution) HasStepForEach() bool

HasStepForEach returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasStepLoop

func (o *ExecutionStepExecution) HasStepLoop() bool

HasStepLoop returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasStepOutput

func (o *ExecutionStepExecution) HasStepOutput() bool

HasStepOutput returns a boolean if a field has been set.

func (*ExecutionStepExecution) HasStepRetry

func (o *ExecutionStepExecution) HasStepRetry() bool

HasStepRetry returns a boolean if a field has been set.

func (ExecutionStepExecution) MarshalJSON

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

func (*ExecutionStepExecution) SetEndTime

func (o *ExecutionStepExecution) SetEndTime(v string)

SetEndTime gets a reference to the given string and assigns it to the EndTime field.

func (*ExecutionStepExecution) SetId

func (o *ExecutionStepExecution) SetId(v string)

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

func (*ExecutionStepExecution) SetInput

func (o *ExecutionStepExecution) SetInput(v map[string]interface{})

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

func (*ExecutionStepExecution) SetName

func (o *ExecutionStepExecution) SetName(v string)

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

func (*ExecutionStepExecution) SetNextStepAction

func (o *ExecutionStepExecution) SetNextStepAction(v ModconfigNextStepAction)

SetNextStepAction gets a reference to the given ModconfigNextStepAction and assigns it to the NextStepAction field.

func (*ExecutionStepExecution) SetOutput

SetOutput gets a reference to the given ExecutionStepExecutionOutput and assigns it to the Output field.

func (*ExecutionStepExecution) SetPipelineExecutionId

func (o *ExecutionStepExecution) SetPipelineExecutionId(v string)

SetPipelineExecutionId gets a reference to the given string and assigns it to the PipelineExecutionId field.

func (*ExecutionStepExecution) SetStartTime

func (o *ExecutionStepExecution) SetStartTime(v string)

SetStartTime gets a reference to the given string and assigns it to the StartTime field.

func (*ExecutionStepExecution) SetStatus

func (o *ExecutionStepExecution) SetStatus(v string)

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

func (*ExecutionStepExecution) SetStepForEach

SetStepForEach gets a reference to the given ExecutionStepExecutionStepForEach and assigns it to the StepForEach field.

func (*ExecutionStepExecution) SetStepLoop

func (o *ExecutionStepExecution) SetStepLoop(v ModconfigStepLoop)

SetStepLoop gets a reference to the given ModconfigStepLoop and assigns it to the StepLoop field.

func (*ExecutionStepExecution) SetStepOutput

func (o *ExecutionStepExecution) SetStepOutput(v map[string]interface{})

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

func (*ExecutionStepExecution) SetStepRetry

func (o *ExecutionStepExecution) SetStepRetry(v ModconfigStepRetry)

SetStepRetry gets a reference to the given ModconfigStepRetry and assigns it to the StepRetry field.

func (ExecutionStepExecution) ToMap

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

type ExecutionStepExecutionOutput

type ExecutionStepExecutionOutput struct {
	Data        map[string]interface{} `json:"data,omitempty"`
	Errors      []ModconfigStepError   `json:"errors,omitempty"`
	FailureMode *string                `json:"failure_mode,omitempty"`
	// Flowpipe metadata, contains started_at, finished_at
	Flowpipe map[string]interface{} `json:"flowpipe,omitempty"`
	Status   *string                `json:"status,omitempty"`
}

ExecutionStepExecutionOutput Native/primitive output of the step

func NewExecutionStepExecutionOutput

func NewExecutionStepExecutionOutput() *ExecutionStepExecutionOutput

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

func NewExecutionStepExecutionOutputWithDefaults

func NewExecutionStepExecutionOutputWithDefaults() *ExecutionStepExecutionOutput

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

func (*ExecutionStepExecutionOutput) GetData

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

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

func (*ExecutionStepExecutionOutput) GetDataOk

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

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

func (*ExecutionStepExecutionOutput) GetErrors

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ExecutionStepExecutionOutput) GetErrorsOk

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

func (*ExecutionStepExecutionOutput) GetFailureMode

func (o *ExecutionStepExecutionOutput) GetFailureMode() string

GetFailureMode returns the FailureMode field value if set, zero value otherwise.

func (*ExecutionStepExecutionOutput) GetFailureModeOk

func (o *ExecutionStepExecutionOutput) GetFailureModeOk() (*string, bool)

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

func (*ExecutionStepExecutionOutput) GetFlowpipe added in v0.4.0

func (o *ExecutionStepExecutionOutput) GetFlowpipe() map[string]interface{}

GetFlowpipe returns the Flowpipe field value if set, zero value otherwise.

func (*ExecutionStepExecutionOutput) GetFlowpipeOk added in v0.4.0

func (o *ExecutionStepExecutionOutput) GetFlowpipeOk() (map[string]interface{}, bool)

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

func (ExecutionStepExecutionOutput) GetResourceType

func (o ExecutionStepExecutionOutput) GetResourceType() string

func (*ExecutionStepExecutionOutput) GetStatus

func (o *ExecutionStepExecutionOutput) GetStatus() string

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

func (*ExecutionStepExecutionOutput) GetStatusOk

func (o *ExecutionStepExecutionOutput) GetStatusOk() (*string, bool)

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

func (*ExecutionStepExecutionOutput) HasData

func (o *ExecutionStepExecutionOutput) HasData() bool

HasData returns a boolean if a field has been set.

func (*ExecutionStepExecutionOutput) HasErrors

func (o *ExecutionStepExecutionOutput) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ExecutionStepExecutionOutput) HasFailureMode

func (o *ExecutionStepExecutionOutput) HasFailureMode() bool

HasFailureMode returns a boolean if a field has been set.

func (*ExecutionStepExecutionOutput) HasFlowpipe added in v0.4.0

func (o *ExecutionStepExecutionOutput) HasFlowpipe() bool

HasFlowpipe returns a boolean if a field has been set.

func (*ExecutionStepExecutionOutput) HasStatus

func (o *ExecutionStepExecutionOutput) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExecutionStepExecutionOutput) MarshalJSON

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

func (*ExecutionStepExecutionOutput) SetData

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

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

func (*ExecutionStepExecutionOutput) SetErrors

SetErrors gets a reference to the given []ModconfigStepError and assigns it to the Errors field.

func (*ExecutionStepExecutionOutput) SetFailureMode

func (o *ExecutionStepExecutionOutput) SetFailureMode(v string)

SetFailureMode gets a reference to the given string and assigns it to the FailureMode field.

func (*ExecutionStepExecutionOutput) SetFlowpipe added in v0.4.0

func (o *ExecutionStepExecutionOutput) SetFlowpipe(v map[string]interface{})

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

func (*ExecutionStepExecutionOutput) SetStatus

func (o *ExecutionStepExecutionOutput) SetStatus(v string)

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

func (ExecutionStepExecutionOutput) ToMap

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

type ExecutionStepExecutionStepForEach

type ExecutionStepExecutionStepForEach struct {
	ForEachStep *bool            `json:"for_each_step,omitempty"`
	Key         string           `json:"key"`
	Output      *ModconfigOutput `json:"output,omitempty"`
	TotalCount  int32            `json:"total_count"`
}

ExecutionStepExecutionStepForEach for_each controls

func NewExecutionStepExecutionStepForEach

func NewExecutionStepExecutionStepForEach(key string, totalCount int32) *ExecutionStepExecutionStepForEach

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

func NewExecutionStepExecutionStepForEachWithDefaults

func NewExecutionStepExecutionStepForEachWithDefaults() *ExecutionStepExecutionStepForEach

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

func (*ExecutionStepExecutionStepForEach) GetForEachStep

func (o *ExecutionStepExecutionStepForEach) GetForEachStep() bool

GetForEachStep returns the ForEachStep field value if set, zero value otherwise.

func (*ExecutionStepExecutionStepForEach) GetForEachStepOk

func (o *ExecutionStepExecutionStepForEach) GetForEachStepOk() (*bool, bool)

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

func (*ExecutionStepExecutionStepForEach) GetKey

GetKey returns the Key field value

func (*ExecutionStepExecutionStepForEach) GetKeyOk

func (o *ExecutionStepExecutionStepForEach) GetKeyOk() (*string, bool)

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

func (*ExecutionStepExecutionStepForEach) GetOutput

GetOutput returns the Output field value if set, zero value otherwise.

func (*ExecutionStepExecutionStepForEach) GetOutputOk

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

func (ExecutionStepExecutionStepForEach) GetResourceType

func (o ExecutionStepExecutionStepForEach) GetResourceType() string

func (*ExecutionStepExecutionStepForEach) GetTotalCount

func (o *ExecutionStepExecutionStepForEach) GetTotalCount() int32

GetTotalCount returns the TotalCount field value

func (*ExecutionStepExecutionStepForEach) GetTotalCountOk

func (o *ExecutionStepExecutionStepForEach) GetTotalCountOk() (*int32, bool)

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

func (*ExecutionStepExecutionStepForEach) HasForEachStep

func (o *ExecutionStepExecutionStepForEach) HasForEachStep() bool

HasForEachStep returns a boolean if a field has been set.

func (*ExecutionStepExecutionStepForEach) HasOutput

func (o *ExecutionStepExecutionStepForEach) HasOutput() bool

HasOutput returns a boolean if a field has been set.

func (ExecutionStepExecutionStepForEach) MarshalJSON

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

func (*ExecutionStepExecutionStepForEach) SetForEachStep

func (o *ExecutionStepExecutionStepForEach) SetForEachStep(v bool)

SetForEachStep gets a reference to the given bool and assigns it to the ForEachStep field.

func (*ExecutionStepExecutionStepForEach) SetKey

SetKey sets field value

func (*ExecutionStepExecutionStepForEach) SetOutput

SetOutput gets a reference to the given ModconfigOutput and assigns it to the Output field.

func (*ExecutionStepExecutionStepForEach) SetTotalCount

func (o *ExecutionStepExecutionStepForEach) SetTotalCount(v int32)

SetTotalCount sets field value

func (ExecutionStepExecutionStepForEach) ToMap

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

type ExecutionStepStatus

type ExecutionStepStatus struct {
	// Indicates that a step is in retry loop so we don't mark it as failed
	ErrorHold *bool `json:"error_hold,omitempty"`
	// Step executions that are failed.
	Failed *map[string]bool `json:"failed,omitempty"`
	// Step executions that are finished.
	Finished *map[string]bool `json:"finished,omitempty"`
	// When the step is initializing it doesn't yet have any executions. We track it as initializing until the first execution is queued.
	Initializing *bool `json:"initializing,omitempty"`
	// Both LoopHold and ErrorHold must be resolved **before** the \"finish\" event is called, i.e. it needs to be calculated at the end of \"step start command\" and \"step pipeline finish\" command.  It can't be calculated at the \"finish\" event because it's already too late. If the planner see that it has an finish event without either a LoopHold or ErrorHold, it will mark the step as completed or failed  Indicates that step is in a loop so we don't mark it as finished
	LoopHold     *bool   `json:"loop_hold,omitempty"`
	OverralState *string `json:"overral_state,omitempty"`
	// Step executions that are queued.
	Queued *map[string]bool `json:"queued,omitempty"`
	// Step executions that are started.
	Started *map[string]bool `json:"started,omitempty"`
	// There's the step execution in execution, this is the same but in a list for a given step status The element in this slice should point to the same element in the StepExecutions map (in PipelineExecution)
	StepExecutions []ExecutionStepExecution `json:"step_executions,omitempty"`
}

ExecutionStepStatus struct for ExecutionStepStatus

func NewExecutionStepStatus

func NewExecutionStepStatus() *ExecutionStepStatus

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

func NewExecutionStepStatusWithDefaults

func NewExecutionStepStatusWithDefaults() *ExecutionStepStatus

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

func (*ExecutionStepStatus) GetErrorHold

func (o *ExecutionStepStatus) GetErrorHold() bool

GetErrorHold returns the ErrorHold field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetErrorHoldOk

func (o *ExecutionStepStatus) GetErrorHoldOk() (*bool, bool)

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

func (*ExecutionStepStatus) GetFailed

func (o *ExecutionStepStatus) GetFailed() map[string]bool

GetFailed returns the Failed field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetFailedOk

func (o *ExecutionStepStatus) GetFailedOk() (*map[string]bool, bool)

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

func (*ExecutionStepStatus) GetFinished

func (o *ExecutionStepStatus) GetFinished() map[string]bool

GetFinished returns the Finished field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetFinishedOk

func (o *ExecutionStepStatus) GetFinishedOk() (*map[string]bool, bool)

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

func (*ExecutionStepStatus) GetInitializing

func (o *ExecutionStepStatus) GetInitializing() bool

GetInitializing returns the Initializing field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetInitializingOk

func (o *ExecutionStepStatus) GetInitializingOk() (*bool, bool)

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

func (*ExecutionStepStatus) GetLoopHold

func (o *ExecutionStepStatus) GetLoopHold() bool

GetLoopHold returns the LoopHold field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetLoopHoldOk

func (o *ExecutionStepStatus) GetLoopHoldOk() (*bool, bool)

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

func (*ExecutionStepStatus) GetOverralState

func (o *ExecutionStepStatus) GetOverralState() string

GetOverralState returns the OverralState field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetOverralStateOk

func (o *ExecutionStepStatus) GetOverralStateOk() (*string, bool)

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

func (*ExecutionStepStatus) GetQueued

func (o *ExecutionStepStatus) GetQueued() map[string]bool

GetQueued returns the Queued field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetQueuedOk

func (o *ExecutionStepStatus) GetQueuedOk() (*map[string]bool, bool)

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

func (ExecutionStepStatus) GetResourceType

func (o ExecutionStepStatus) GetResourceType() string

func (*ExecutionStepStatus) GetStarted

func (o *ExecutionStepStatus) GetStarted() map[string]bool

GetStarted returns the Started field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetStartedOk

func (o *ExecutionStepStatus) GetStartedOk() (*map[string]bool, bool)

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

func (*ExecutionStepStatus) GetStepExecutions

func (o *ExecutionStepStatus) GetStepExecutions() []ExecutionStepExecution

GetStepExecutions returns the StepExecutions field value if set, zero value otherwise.

func (*ExecutionStepStatus) GetStepExecutionsOk

func (o *ExecutionStepStatus) GetStepExecutionsOk() ([]ExecutionStepExecution, bool)

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

func (*ExecutionStepStatus) HasErrorHold

func (o *ExecutionStepStatus) HasErrorHold() bool

HasErrorHold returns a boolean if a field has been set.

func (*ExecutionStepStatus) HasFailed

func (o *ExecutionStepStatus) HasFailed() bool

HasFailed returns a boolean if a field has been set.

func (*ExecutionStepStatus) HasFinished

func (o *ExecutionStepStatus) HasFinished() bool

HasFinished returns a boolean if a field has been set.

func (*ExecutionStepStatus) HasInitializing

func (o *ExecutionStepStatus) HasInitializing() bool

HasInitializing returns a boolean if a field has been set.

func (*ExecutionStepStatus) HasLoopHold

func (o *ExecutionStepStatus) HasLoopHold() bool

HasLoopHold returns a boolean if a field has been set.

func (*ExecutionStepStatus) HasOverralState

func (o *ExecutionStepStatus) HasOverralState() bool

HasOverralState returns a boolean if a field has been set.

func (*ExecutionStepStatus) HasQueued

func (o *ExecutionStepStatus) HasQueued() bool

HasQueued returns a boolean if a field has been set.

func (*ExecutionStepStatus) HasStarted

func (o *ExecutionStepStatus) HasStarted() bool

HasStarted returns a boolean if a field has been set.

func (*ExecutionStepStatus) HasStepExecutions

func (o *ExecutionStepStatus) HasStepExecutions() bool

HasStepExecutions returns a boolean if a field has been set.

func (ExecutionStepStatus) MarshalJSON

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

func (*ExecutionStepStatus) SetErrorHold

func (o *ExecutionStepStatus) SetErrorHold(v bool)

SetErrorHold gets a reference to the given bool and assigns it to the ErrorHold field.

func (*ExecutionStepStatus) SetFailed

func (o *ExecutionStepStatus) SetFailed(v map[string]bool)

SetFailed gets a reference to the given map[string]bool and assigns it to the Failed field.

func (*ExecutionStepStatus) SetFinished

func (o *ExecutionStepStatus) SetFinished(v map[string]bool)

SetFinished gets a reference to the given map[string]bool and assigns it to the Finished field.

func (*ExecutionStepStatus) SetInitializing

func (o *ExecutionStepStatus) SetInitializing(v bool)

SetInitializing gets a reference to the given bool and assigns it to the Initializing field.

func (*ExecutionStepStatus) SetLoopHold

func (o *ExecutionStepStatus) SetLoopHold(v bool)

SetLoopHold gets a reference to the given bool and assigns it to the LoopHold field.

func (*ExecutionStepStatus) SetOverralState

func (o *ExecutionStepStatus) SetOverralState(v string)

SetOverralState gets a reference to the given string and assigns it to the OverralState field.

func (*ExecutionStepStatus) SetQueued

func (o *ExecutionStepStatus) SetQueued(v map[string]bool)

SetQueued gets a reference to the given map[string]bool and assigns it to the Queued field.

func (*ExecutionStepStatus) SetStarted

func (o *ExecutionStepStatus) SetStarted(v map[string]bool)

SetStarted gets a reference to the given map[string]bool and assigns it to the Started field.

func (*ExecutionStepStatus) SetStepExecutions

func (o *ExecutionStepStatus) SetStepExecutions(v []ExecutionStepExecution)

SetStepExecutions gets a reference to the given []ExecutionStepExecution and assigns it to the StepExecutions field.

func (ExecutionStepStatus) ToMap

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

type FlowpipeAPIResource

type FlowpipeAPIResource interface {
	GetResourceType() string
}

type FlowpipeRequire

type FlowpipeRequire struct {
	MinVersion *string `json:"min_version,omitempty"`
}

FlowpipeRequire struct for FlowpipeRequire

func NewFlowpipeRequire

func NewFlowpipeRequire() *FlowpipeRequire

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

func NewFlowpipeRequireWithDefaults

func NewFlowpipeRequireWithDefaults() *FlowpipeRequire

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

func (*FlowpipeRequire) GetMinVersion

func (o *FlowpipeRequire) GetMinVersion() string

GetMinVersion returns the MinVersion field value if set, zero value otherwise.

func (*FlowpipeRequire) GetMinVersionOk

func (o *FlowpipeRequire) GetMinVersionOk() (*string, bool)

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

func (FlowpipeRequire) GetResourceType

func (o FlowpipeRequire) GetResourceType() string

func (*FlowpipeRequire) HasMinVersion

func (o *FlowpipeRequire) HasMinVersion() bool

HasMinVersion returns a boolean if a field has been set.

func (FlowpipeRequire) MarshalJSON

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

func (*FlowpipeRequire) SetMinVersion

func (o *FlowpipeRequire) SetMinVersion(v string)

SetMinVersion gets a reference to the given string and assigns it to the MinVersion field.

func (FlowpipeRequire) ToMap

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

type FlowpipeResponseMetadata added in v0.5.0

type FlowpipeResponseMetadata struct {
	ExecutionId         *string `json:"execution_id,omitempty"`
	IsStale             *bool   `json:"is_stale,omitempty"`
	LastLoaded          *string `json:"last_loaded,omitempty"`
	Pipeline            *string `json:"pipeline,omitempty"`
	PipelineExecutionId *string `json:"pipeline_execution_id,omitempty"`
	Status              *string `json:"status,omitempty"`
	Type                *string `json:"type,omitempty"`
}

FlowpipeResponseMetadata struct for FlowpipeResponseMetadata

func NewFlowpipeResponseMetadata added in v0.5.0

func NewFlowpipeResponseMetadata() *FlowpipeResponseMetadata

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

func NewFlowpipeResponseMetadataWithDefaults added in v0.5.0

func NewFlowpipeResponseMetadataWithDefaults() *FlowpipeResponseMetadata

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

func (*FlowpipeResponseMetadata) GetExecutionId added in v0.5.0

func (o *FlowpipeResponseMetadata) GetExecutionId() string

GetExecutionId returns the ExecutionId field value if set, zero value otherwise.

func (*FlowpipeResponseMetadata) GetExecutionIdOk added in v0.5.0

func (o *FlowpipeResponseMetadata) GetExecutionIdOk() (*string, bool)

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

func (*FlowpipeResponseMetadata) GetIsStale added in v0.5.0

func (o *FlowpipeResponseMetadata) GetIsStale() bool

GetIsStale returns the IsStale field value if set, zero value otherwise.

func (*FlowpipeResponseMetadata) GetIsStaleOk added in v0.5.0

func (o *FlowpipeResponseMetadata) GetIsStaleOk() (*bool, bool)

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

func (*FlowpipeResponseMetadata) GetLastLoaded added in v0.5.0

func (o *FlowpipeResponseMetadata) GetLastLoaded() string

GetLastLoaded returns the LastLoaded field value if set, zero value otherwise.

func (*FlowpipeResponseMetadata) GetLastLoadedOk added in v0.5.0

func (o *FlowpipeResponseMetadata) GetLastLoadedOk() (*string, bool)

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

func (*FlowpipeResponseMetadata) GetPipeline added in v0.5.0

func (o *FlowpipeResponseMetadata) GetPipeline() string

GetPipeline returns the Pipeline field value if set, zero value otherwise.

func (*FlowpipeResponseMetadata) GetPipelineExecutionId added in v0.5.0

func (o *FlowpipeResponseMetadata) GetPipelineExecutionId() string

GetPipelineExecutionId returns the PipelineExecutionId field value if set, zero value otherwise.

func (*FlowpipeResponseMetadata) GetPipelineExecutionIdOk added in v0.5.0

func (o *FlowpipeResponseMetadata) GetPipelineExecutionIdOk() (*string, bool)

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

func (*FlowpipeResponseMetadata) GetPipelineOk added in v0.5.0

func (o *FlowpipeResponseMetadata) GetPipelineOk() (*string, bool)

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

func (FlowpipeResponseMetadata) GetResourceType added in v0.5.0

func (o FlowpipeResponseMetadata) GetResourceType() string

func (*FlowpipeResponseMetadata) GetStatus added in v0.5.0

func (o *FlowpipeResponseMetadata) GetStatus() string

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

func (*FlowpipeResponseMetadata) GetStatusOk added in v0.5.0

func (o *FlowpipeResponseMetadata) GetStatusOk() (*string, bool)

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

func (*FlowpipeResponseMetadata) GetType added in v0.5.0

func (o *FlowpipeResponseMetadata) GetType() string

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

func (*FlowpipeResponseMetadata) GetTypeOk added in v0.5.0

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

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

func (*FlowpipeResponseMetadata) HasExecutionId added in v0.5.0

func (o *FlowpipeResponseMetadata) HasExecutionId() bool

HasExecutionId returns a boolean if a field has been set.

func (*FlowpipeResponseMetadata) HasIsStale added in v0.5.0

func (o *FlowpipeResponseMetadata) HasIsStale() bool

HasIsStale returns a boolean if a field has been set.

func (*FlowpipeResponseMetadata) HasLastLoaded added in v0.5.0

func (o *FlowpipeResponseMetadata) HasLastLoaded() bool

HasLastLoaded returns a boolean if a field has been set.

func (*FlowpipeResponseMetadata) HasPipeline added in v0.5.0

func (o *FlowpipeResponseMetadata) HasPipeline() bool

HasPipeline returns a boolean if a field has been set.

func (*FlowpipeResponseMetadata) HasPipelineExecutionId added in v0.5.0

func (o *FlowpipeResponseMetadata) HasPipelineExecutionId() bool

HasPipelineExecutionId returns a boolean if a field has been set.

func (*FlowpipeResponseMetadata) HasStatus added in v0.5.0

func (o *FlowpipeResponseMetadata) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*FlowpipeResponseMetadata) HasType added in v0.5.0

func (o *FlowpipeResponseMetadata) HasType() bool

HasType returns a boolean if a field has been set.

func (FlowpipeResponseMetadata) MarshalJSON added in v0.5.0

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

func (*FlowpipeResponseMetadata) SetExecutionId added in v0.5.0

func (o *FlowpipeResponseMetadata) SetExecutionId(v string)

SetExecutionId gets a reference to the given string and assigns it to the ExecutionId field.

func (*FlowpipeResponseMetadata) SetIsStale added in v0.5.0

func (o *FlowpipeResponseMetadata) SetIsStale(v bool)

SetIsStale gets a reference to the given bool and assigns it to the IsStale field.

func (*FlowpipeResponseMetadata) SetLastLoaded added in v0.5.0

func (o *FlowpipeResponseMetadata) SetLastLoaded(v string)

SetLastLoaded gets a reference to the given string and assigns it to the LastLoaded field.

func (*FlowpipeResponseMetadata) SetPipeline added in v0.5.0

func (o *FlowpipeResponseMetadata) SetPipeline(v string)

SetPipeline gets a reference to the given string and assigns it to the Pipeline field.

func (*FlowpipeResponseMetadata) SetPipelineExecutionId added in v0.5.0

func (o *FlowpipeResponseMetadata) SetPipelineExecutionId(v string)

SetPipelineExecutionId gets a reference to the given string and assigns it to the PipelineExecutionId field.

func (*FlowpipeResponseMetadata) SetStatus added in v0.5.0

func (o *FlowpipeResponseMetadata) SetStatus(v string)

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

func (*FlowpipeResponseMetadata) SetType added in v0.5.0

func (o *FlowpipeResponseMetadata) SetType(v string)

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

func (FlowpipeResponseMetadata) ToMap added in v0.5.0

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

type FlowpipeTriggerResponseMetadata added in v0.5.0

type FlowpipeTriggerResponseMetadata struct {
	IsStale    *bool   `json:"is_stale,omitempty"`
	LastLoaded *string `json:"last_loaded,omitempty"`
	Name       *string `json:"name,omitempty"`
	ProcessId  *string `json:"process_id,omitempty"`
	Type       *string `json:"type,omitempty"`
}

FlowpipeTriggerResponseMetadata struct for FlowpipeTriggerResponseMetadata

func NewFlowpipeTriggerResponseMetadata added in v0.5.0

func NewFlowpipeTriggerResponseMetadata() *FlowpipeTriggerResponseMetadata

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

func NewFlowpipeTriggerResponseMetadataWithDefaults added in v0.5.0

func NewFlowpipeTriggerResponseMetadataWithDefaults() *FlowpipeTriggerResponseMetadata

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

func (*FlowpipeTriggerResponseMetadata) GetIsStale added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) GetIsStale() bool

GetIsStale returns the IsStale field value if set, zero value otherwise.

func (*FlowpipeTriggerResponseMetadata) GetIsStaleOk added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) GetIsStaleOk() (*bool, bool)

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

func (*FlowpipeTriggerResponseMetadata) GetLastLoaded added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) GetLastLoaded() string

GetLastLoaded returns the LastLoaded field value if set, zero value otherwise.

func (*FlowpipeTriggerResponseMetadata) GetLastLoadedOk added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) GetLastLoadedOk() (*string, bool)

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

func (*FlowpipeTriggerResponseMetadata) GetName added in v0.5.0

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

func (*FlowpipeTriggerResponseMetadata) GetNameOk added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) 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 (*FlowpipeTriggerResponseMetadata) GetProcessId added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) GetProcessId() string

GetProcessId returns the ProcessId field value if set, zero value otherwise.

func (*FlowpipeTriggerResponseMetadata) GetProcessIdOk added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) GetProcessIdOk() (*string, bool)

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

func (FlowpipeTriggerResponseMetadata) GetResourceType added in v0.5.0

func (o FlowpipeTriggerResponseMetadata) GetResourceType() string

func (*FlowpipeTriggerResponseMetadata) GetType added in v0.5.0

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

func (*FlowpipeTriggerResponseMetadata) GetTypeOk added in v0.5.0

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

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

func (*FlowpipeTriggerResponseMetadata) HasIsStale added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) HasIsStale() bool

HasIsStale returns a boolean if a field has been set.

func (*FlowpipeTriggerResponseMetadata) HasLastLoaded added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) HasLastLoaded() bool

HasLastLoaded returns a boolean if a field has been set.

func (*FlowpipeTriggerResponseMetadata) HasName added in v0.5.0

HasName returns a boolean if a field has been set.

func (*FlowpipeTriggerResponseMetadata) HasProcessId added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) HasProcessId() bool

HasProcessId returns a boolean if a field has been set.

func (*FlowpipeTriggerResponseMetadata) HasType added in v0.5.0

HasType returns a boolean if a field has been set.

func (FlowpipeTriggerResponseMetadata) MarshalJSON added in v0.5.0

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

func (*FlowpipeTriggerResponseMetadata) SetIsStale added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) SetIsStale(v bool)

SetIsStale gets a reference to the given bool and assigns it to the IsStale field.

func (*FlowpipeTriggerResponseMetadata) SetLastLoaded added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) SetLastLoaded(v string)

SetLastLoaded gets a reference to the given string and assigns it to the LastLoaded field.

func (*FlowpipeTriggerResponseMetadata) SetName added in v0.5.0

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

func (*FlowpipeTriggerResponseMetadata) SetProcessId added in v0.5.0

func (o *FlowpipeTriggerResponseMetadata) SetProcessId(v string)

SetProcessId gets a reference to the given string and assigns it to the ProcessId field.

func (*FlowpipeTriggerResponseMetadata) SetType added in v0.5.0

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

func (FlowpipeTriggerResponseMetadata) ToMap added in v0.5.0

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

type FpIntegration added in v0.3.0

type FpIntegration struct {
	Bcc           []string `json:"bcc,omitempty"`
	Cc            []string `json:"cc,omitempty"`
	Channel       *string  `json:"channel,omitempty"`
	Description   *string  `json:"description,omitempty"`
	EndLineNumber *int32   `json:"end_line_number,omitempty"`
	FileName      *string  `json:"file_name,omitempty"`
	From          *string  `json:"from,omitempty"`
	Name          *string  `json:"name,omitempty"`
	SigningSecret *string  `json:"signing_secret,omitempty"`
	// email
	SmtpHost        *string  `json:"smtp_host,omitempty"`
	SmtpPassword    *string  `json:"smtp_password,omitempty"`
	SmtpPort        *int32   `json:"smtp_port,omitempty"`
	SmtpTls         *string  `json:"smtp_tls,omitempty"`
	SmtpUsername    *string  `json:"smtp_username,omitempty"`
	SmtpsPort       *int32   `json:"smtps_port,omitempty"`
	StartLineNumber *int32   `json:"start_line_number,omitempty"`
	Subject         *string  `json:"subject,omitempty"`
	Title           *string  `json:"title,omitempty"`
	To              []string `json:"to,omitempty"`
	// slack
	Token *string `json:"token,omitempty"`
	Type  *string `json:"type,omitempty"`
	Url   *string `json:"url,omitempty"`
	// slack & msteams
	WebhookUrl *string `json:"webhook_url,omitempty"`
}

FpIntegration struct for FpIntegration

func NewFpIntegration added in v0.3.0

func NewFpIntegration() *FpIntegration

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

func NewFpIntegrationWithDefaults added in v0.3.0

func NewFpIntegrationWithDefaults() *FpIntegration

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

func (*FpIntegration) GetBcc added in v0.3.0

func (o *FpIntegration) GetBcc() []string

GetBcc returns the Bcc field value if set, zero value otherwise.

func (*FpIntegration) GetBccOk added in v0.3.0

func (o *FpIntegration) GetBccOk() ([]string, bool)

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

func (*FpIntegration) GetCc added in v0.3.0

func (o *FpIntegration) GetCc() []string

GetCc returns the Cc field value if set, zero value otherwise.

func (*FpIntegration) GetCcOk added in v0.3.0

func (o *FpIntegration) GetCcOk() ([]string, bool)

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

func (*FpIntegration) GetChannel added in v0.3.0

func (o *FpIntegration) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*FpIntegration) GetChannelOk added in v0.3.0

func (o *FpIntegration) GetChannelOk() (*string, bool)

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

func (*FpIntegration) GetDescription added in v0.3.0

func (o *FpIntegration) GetDescription() string

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

func (*FpIntegration) GetDescriptionOk added in v0.3.0

func (o *FpIntegration) 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 (*FpIntegration) GetEndLineNumber added in v0.3.0

func (o *FpIntegration) GetEndLineNumber() int32

GetEndLineNumber returns the EndLineNumber field value if set, zero value otherwise.

func (*FpIntegration) GetEndLineNumberOk added in v0.3.0

func (o *FpIntegration) GetEndLineNumberOk() (*int32, bool)

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

func (*FpIntegration) GetFileName added in v0.3.0

func (o *FpIntegration) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise.

func (*FpIntegration) GetFileNameOk added in v0.3.0

func (o *FpIntegration) 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 (*FpIntegration) GetFrom added in v0.3.0

func (o *FpIntegration) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*FpIntegration) GetFromOk added in v0.3.0

func (o *FpIntegration) GetFromOk() (*string, bool)

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

func (*FpIntegration) GetName added in v0.3.0

func (o *FpIntegration) GetName() string

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

func (*FpIntegration) GetNameOk added in v0.3.0

func (o *FpIntegration) 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 (FpIntegration) GetResourceType added in v0.3.0

func (o FpIntegration) GetResourceType() string

func (*FpIntegration) GetSigningSecret added in v0.3.0

func (o *FpIntegration) GetSigningSecret() string

GetSigningSecret returns the SigningSecret field value if set, zero value otherwise.

func (*FpIntegration) GetSigningSecretOk added in v0.3.0

func (o *FpIntegration) GetSigningSecretOk() (*string, bool)

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

func (*FpIntegration) GetSmtpHost added in v0.3.0

func (o *FpIntegration) GetSmtpHost() string

GetSmtpHost returns the SmtpHost field value if set, zero value otherwise.

func (*FpIntegration) GetSmtpHostOk added in v0.3.0

func (o *FpIntegration) GetSmtpHostOk() (*string, bool)

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

func (*FpIntegration) GetSmtpPassword added in v0.3.0

func (o *FpIntegration) GetSmtpPassword() string

GetSmtpPassword returns the SmtpPassword field value if set, zero value otherwise.

func (*FpIntegration) GetSmtpPasswordOk added in v0.3.0

func (o *FpIntegration) GetSmtpPasswordOk() (*string, bool)

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

func (*FpIntegration) GetSmtpPort added in v0.3.0

func (o *FpIntegration) GetSmtpPort() int32

GetSmtpPort returns the SmtpPort field value if set, zero value otherwise.

func (*FpIntegration) GetSmtpPortOk added in v0.3.0

func (o *FpIntegration) GetSmtpPortOk() (*int32, bool)

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

func (*FpIntegration) GetSmtpTls added in v0.3.0

func (o *FpIntegration) GetSmtpTls() string

GetSmtpTls returns the SmtpTls field value if set, zero value otherwise.

func (*FpIntegration) GetSmtpTlsOk added in v0.3.0

func (o *FpIntegration) GetSmtpTlsOk() (*string, bool)

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

func (*FpIntegration) GetSmtpUsername added in v0.3.0

func (o *FpIntegration) GetSmtpUsername() string

GetSmtpUsername returns the SmtpUsername field value if set, zero value otherwise.

func (*FpIntegration) GetSmtpUsernameOk added in v0.3.0

func (o *FpIntegration) GetSmtpUsernameOk() (*string, bool)

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

func (*FpIntegration) GetSmtpsPort added in v0.3.0

func (o *FpIntegration) GetSmtpsPort() int32

GetSmtpsPort returns the SmtpsPort field value if set, zero value otherwise.

func (*FpIntegration) GetSmtpsPortOk added in v0.3.0

func (o *FpIntegration) GetSmtpsPortOk() (*int32, bool)

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

func (*FpIntegration) GetStartLineNumber added in v0.3.0

func (o *FpIntegration) GetStartLineNumber() int32

GetStartLineNumber returns the StartLineNumber field value if set, zero value otherwise.

func (*FpIntegration) GetStartLineNumberOk added in v0.3.0

func (o *FpIntegration) GetStartLineNumberOk() (*int32, bool)

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

func (*FpIntegration) GetSubject added in v0.3.0

func (o *FpIntegration) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*FpIntegration) GetSubjectOk added in v0.3.0

func (o *FpIntegration) GetSubjectOk() (*string, bool)

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

func (*FpIntegration) GetTitle added in v0.3.0

func (o *FpIntegration) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*FpIntegration) GetTitleOk added in v0.3.0

func (o *FpIntegration) GetTitleOk() (*string, bool)

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

func (*FpIntegration) GetTo added in v0.3.0

func (o *FpIntegration) GetTo() []string

GetTo returns the To field value if set, zero value otherwise.

func (*FpIntegration) GetToOk added in v0.3.0

func (o *FpIntegration) GetToOk() ([]string, bool)

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

func (*FpIntegration) GetToken added in v0.3.0

func (o *FpIntegration) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*FpIntegration) GetTokenOk added in v0.3.0

func (o *FpIntegration) GetTokenOk() (*string, bool)

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

func (*FpIntegration) GetType added in v0.3.0

func (o *FpIntegration) GetType() string

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

func (*FpIntegration) GetTypeOk added in v0.3.0

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

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

func (*FpIntegration) GetUrl added in v0.3.0

func (o *FpIntegration) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*FpIntegration) GetUrlOk added in v0.3.0

func (o *FpIntegration) GetUrlOk() (*string, bool)

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

func (*FpIntegration) GetWebhookUrl added in v0.3.0

func (o *FpIntegration) GetWebhookUrl() string

GetWebhookUrl returns the WebhookUrl field value if set, zero value otherwise.

func (*FpIntegration) GetWebhookUrlOk added in v0.3.0

func (o *FpIntegration) GetWebhookUrlOk() (*string, bool)

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

func (*FpIntegration) HasBcc added in v0.3.0

func (o *FpIntegration) HasBcc() bool

HasBcc returns a boolean if a field has been set.

func (*FpIntegration) HasCc added in v0.3.0

func (o *FpIntegration) HasCc() bool

HasCc returns a boolean if a field has been set.

func (*FpIntegration) HasChannel added in v0.3.0

func (o *FpIntegration) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*FpIntegration) HasDescription added in v0.3.0

func (o *FpIntegration) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FpIntegration) HasEndLineNumber added in v0.3.0

func (o *FpIntegration) HasEndLineNumber() bool

HasEndLineNumber returns a boolean if a field has been set.

func (*FpIntegration) HasFileName added in v0.3.0

func (o *FpIntegration) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*FpIntegration) HasFrom added in v0.3.0

func (o *FpIntegration) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*FpIntegration) HasName added in v0.3.0

func (o *FpIntegration) HasName() bool

HasName returns a boolean if a field has been set.

func (*FpIntegration) HasSigningSecret added in v0.3.0

func (o *FpIntegration) HasSigningSecret() bool

HasSigningSecret returns a boolean if a field has been set.

func (*FpIntegration) HasSmtpHost added in v0.3.0

func (o *FpIntegration) HasSmtpHost() bool

HasSmtpHost returns a boolean if a field has been set.

func (*FpIntegration) HasSmtpPassword added in v0.3.0

func (o *FpIntegration) HasSmtpPassword() bool

HasSmtpPassword returns a boolean if a field has been set.

func (*FpIntegration) HasSmtpPort added in v0.3.0

func (o *FpIntegration) HasSmtpPort() bool

HasSmtpPort returns a boolean if a field has been set.

func (*FpIntegration) HasSmtpTls added in v0.3.0

func (o *FpIntegration) HasSmtpTls() bool

HasSmtpTls returns a boolean if a field has been set.

func (*FpIntegration) HasSmtpUsername added in v0.3.0

func (o *FpIntegration) HasSmtpUsername() bool

HasSmtpUsername returns a boolean if a field has been set.

func (*FpIntegration) HasSmtpsPort added in v0.3.0

func (o *FpIntegration) HasSmtpsPort() bool

HasSmtpsPort returns a boolean if a field has been set.

func (*FpIntegration) HasStartLineNumber added in v0.3.0

func (o *FpIntegration) HasStartLineNumber() bool

HasStartLineNumber returns a boolean if a field has been set.

func (*FpIntegration) HasSubject added in v0.3.0

func (o *FpIntegration) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*FpIntegration) HasTitle added in v0.3.0

func (o *FpIntegration) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*FpIntegration) HasTo added in v0.3.0

func (o *FpIntegration) HasTo() bool

HasTo returns a boolean if a field has been set.

func (*FpIntegration) HasToken added in v0.3.0

func (o *FpIntegration) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*FpIntegration) HasType added in v0.3.0

func (o *FpIntegration) HasType() bool

HasType returns a boolean if a field has been set.

func (*FpIntegration) HasUrl added in v0.3.0

func (o *FpIntegration) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*FpIntegration) HasWebhookUrl added in v0.3.0

func (o *FpIntegration) HasWebhookUrl() bool

HasWebhookUrl returns a boolean if a field has been set.

func (FpIntegration) MarshalJSON added in v0.3.0

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

func (*FpIntegration) SetBcc added in v0.3.0

func (o *FpIntegration) SetBcc(v []string)

SetBcc gets a reference to the given []string and assigns it to the Bcc field.

func (*FpIntegration) SetCc added in v0.3.0

func (o *FpIntegration) SetCc(v []string)

SetCc gets a reference to the given []string and assigns it to the Cc field.

func (*FpIntegration) SetChannel added in v0.3.0

func (o *FpIntegration) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*FpIntegration) SetDescription added in v0.3.0

func (o *FpIntegration) SetDescription(v string)

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

func (*FpIntegration) SetEndLineNumber added in v0.3.0

func (o *FpIntegration) SetEndLineNumber(v int32)

SetEndLineNumber gets a reference to the given int32 and assigns it to the EndLineNumber field.

func (*FpIntegration) SetFileName added in v0.3.0

func (o *FpIntegration) SetFileName(v string)

SetFileName gets a reference to the given string and assigns it to the FileName field.

func (*FpIntegration) SetFrom added in v0.3.0

func (o *FpIntegration) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*FpIntegration) SetName added in v0.3.0

func (o *FpIntegration) SetName(v string)

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

func (*FpIntegration) SetSigningSecret added in v0.3.0

func (o *FpIntegration) SetSigningSecret(v string)

SetSigningSecret gets a reference to the given string and assigns it to the SigningSecret field.

func (*FpIntegration) SetSmtpHost added in v0.3.0

func (o *FpIntegration) SetSmtpHost(v string)

SetSmtpHost gets a reference to the given string and assigns it to the SmtpHost field.

func (*FpIntegration) SetSmtpPassword added in v0.3.0

func (o *FpIntegration) SetSmtpPassword(v string)

SetSmtpPassword gets a reference to the given string and assigns it to the SmtpPassword field.

func (*FpIntegration) SetSmtpPort added in v0.3.0

func (o *FpIntegration) SetSmtpPort(v int32)

SetSmtpPort gets a reference to the given int32 and assigns it to the SmtpPort field.

func (*FpIntegration) SetSmtpTls added in v0.3.0

func (o *FpIntegration) SetSmtpTls(v string)

SetSmtpTls gets a reference to the given string and assigns it to the SmtpTls field.

func (*FpIntegration) SetSmtpUsername added in v0.3.0

func (o *FpIntegration) SetSmtpUsername(v string)

SetSmtpUsername gets a reference to the given string and assigns it to the SmtpUsername field.

func (*FpIntegration) SetSmtpsPort added in v0.3.0

func (o *FpIntegration) SetSmtpsPort(v int32)

SetSmtpsPort gets a reference to the given int32 and assigns it to the SmtpsPort field.

func (*FpIntegration) SetStartLineNumber added in v0.3.0

func (o *FpIntegration) SetStartLineNumber(v int32)

SetStartLineNumber gets a reference to the given int32 and assigns it to the StartLineNumber field.

func (*FpIntegration) SetSubject added in v0.3.0

func (o *FpIntegration) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*FpIntegration) SetTitle added in v0.3.0

func (o *FpIntegration) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*FpIntegration) SetTo added in v0.3.0

func (o *FpIntegration) SetTo(v []string)

SetTo gets a reference to the given []string and assigns it to the To field.

func (*FpIntegration) SetToken added in v0.3.0

func (o *FpIntegration) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*FpIntegration) SetType added in v0.3.0

func (o *FpIntegration) SetType(v string)

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

func (*FpIntegration) SetUrl added in v0.3.0

func (o *FpIntegration) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*FpIntegration) SetWebhookUrl added in v0.3.0

func (o *FpIntegration) SetWebhookUrl(v string)

SetWebhookUrl gets a reference to the given string and assigns it to the WebhookUrl field.

func (FpIntegration) ToMap added in v0.3.0

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

type FpNotifier added in v0.3.0

type FpNotifier struct {
	Description     *string    `json:"description,omitempty"`
	EndLineNumber   *int32     `json:"end_line_number,omitempty"`
	FileName        *string    `json:"file_name,omitempty"`
	Name            *string    `json:"name,omitempty"`
	Notifies        []FpNotify `json:"notifies,omitempty"`
	StartLineNumber *int32     `json:"start_line_number,omitempty"`
	Title           *string    `json:"title,omitempty"`
}

FpNotifier struct for FpNotifier

func NewFpNotifier added in v0.3.0

func NewFpNotifier() *FpNotifier

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

func NewFpNotifierWithDefaults added in v0.3.0

func NewFpNotifierWithDefaults() *FpNotifier

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

func (*FpNotifier) GetDescription added in v0.3.0

func (o *FpNotifier) GetDescription() string

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

func (*FpNotifier) GetDescriptionOk added in v0.3.0

func (o *FpNotifier) 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 (*FpNotifier) GetEndLineNumber added in v0.3.0

func (o *FpNotifier) GetEndLineNumber() int32

GetEndLineNumber returns the EndLineNumber field value if set, zero value otherwise.

func (*FpNotifier) GetEndLineNumberOk added in v0.3.0

func (o *FpNotifier) GetEndLineNumberOk() (*int32, bool)

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

func (*FpNotifier) GetFileName added in v0.3.0

func (o *FpNotifier) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise.

func (*FpNotifier) GetFileNameOk added in v0.3.0

func (o *FpNotifier) 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 (*FpNotifier) GetName added in v0.3.0

func (o *FpNotifier) GetName() string

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

func (*FpNotifier) GetNameOk added in v0.3.0

func (o *FpNotifier) 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 (*FpNotifier) GetNotifies added in v0.3.0

func (o *FpNotifier) GetNotifies() []FpNotify

GetNotifies returns the Notifies field value if set, zero value otherwise.

func (*FpNotifier) GetNotifiesOk added in v0.3.0

func (o *FpNotifier) GetNotifiesOk() ([]FpNotify, bool)

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

func (FpNotifier) GetResourceType added in v0.3.0

func (o FpNotifier) GetResourceType() string

func (*FpNotifier) GetStartLineNumber added in v0.3.0

func (o *FpNotifier) GetStartLineNumber() int32

GetStartLineNumber returns the StartLineNumber field value if set, zero value otherwise.

func (*FpNotifier) GetStartLineNumberOk added in v0.3.0

func (o *FpNotifier) GetStartLineNumberOk() (*int32, bool)

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

func (*FpNotifier) GetTitle added in v0.3.0

func (o *FpNotifier) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*FpNotifier) GetTitleOk added in v0.3.0

func (o *FpNotifier) GetTitleOk() (*string, bool)

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

func (*FpNotifier) HasDescription added in v0.3.0

func (o *FpNotifier) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FpNotifier) HasEndLineNumber added in v0.3.0

func (o *FpNotifier) HasEndLineNumber() bool

HasEndLineNumber returns a boolean if a field has been set.

func (*FpNotifier) HasFileName added in v0.3.0

func (o *FpNotifier) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*FpNotifier) HasName added in v0.3.0

func (o *FpNotifier) HasName() bool

HasName returns a boolean if a field has been set.

func (*FpNotifier) HasNotifies added in v0.3.0

func (o *FpNotifier) HasNotifies() bool

HasNotifies returns a boolean if a field has been set.

func (*FpNotifier) HasStartLineNumber added in v0.3.0

func (o *FpNotifier) HasStartLineNumber() bool

HasStartLineNumber returns a boolean if a field has been set.

func (*FpNotifier) HasTitle added in v0.3.0

func (o *FpNotifier) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (FpNotifier) MarshalJSON added in v0.3.0

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

func (*FpNotifier) SetDescription added in v0.3.0

func (o *FpNotifier) SetDescription(v string)

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

func (*FpNotifier) SetEndLineNumber added in v0.3.0

func (o *FpNotifier) SetEndLineNumber(v int32)

SetEndLineNumber gets a reference to the given int32 and assigns it to the EndLineNumber field.

func (*FpNotifier) SetFileName added in v0.3.0

func (o *FpNotifier) SetFileName(v string)

SetFileName gets a reference to the given string and assigns it to the FileName field.

func (*FpNotifier) SetName added in v0.3.0

func (o *FpNotifier) SetName(v string)

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

func (*FpNotifier) SetNotifies added in v0.3.0

func (o *FpNotifier) SetNotifies(v []FpNotify)

SetNotifies gets a reference to the given []FpNotify and assigns it to the Notifies field.

func (*FpNotifier) SetStartLineNumber added in v0.3.0

func (o *FpNotifier) SetStartLineNumber(v int32)

SetStartLineNumber gets a reference to the given int32 and assigns it to the StartLineNumber field.

func (*FpNotifier) SetTitle added in v0.3.0

func (o *FpNotifier) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (FpNotifier) ToMap added in v0.3.0

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

type FpNotify added in v0.3.0

type FpNotify struct {
	Bcc         []string `json:"bcc,omitempty"`
	Cc          []string `json:"cc,omitempty"`
	Channel     *string  `json:"channel,omitempty"`
	Description *string  `json:"description,omitempty"`
	Integration *string  `json:"integration,omitempty"`
	Subject     *string  `json:"subject,omitempty"`
	Title       *string  `json:"title,omitempty"`
	To          []string `json:"to,omitempty"`
}

FpNotify struct for FpNotify

func NewFpNotify added in v0.3.0

func NewFpNotify() *FpNotify

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

func NewFpNotifyWithDefaults added in v0.3.0

func NewFpNotifyWithDefaults() *FpNotify

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

func (*FpNotify) GetBcc added in v0.3.0

func (o *FpNotify) GetBcc() []string

GetBcc returns the Bcc field value if set, zero value otherwise.

func (*FpNotify) GetBccOk added in v0.3.0

func (o *FpNotify) GetBccOk() ([]string, bool)

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

func (*FpNotify) GetCc added in v0.3.0

func (o *FpNotify) GetCc() []string

GetCc returns the Cc field value if set, zero value otherwise.

func (*FpNotify) GetCcOk added in v0.3.0

func (o *FpNotify) GetCcOk() ([]string, bool)

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

func (*FpNotify) GetChannel added in v0.3.0

func (o *FpNotify) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*FpNotify) GetChannelOk added in v0.3.0

func (o *FpNotify) GetChannelOk() (*string, bool)

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

func (*FpNotify) GetDescription added in v0.3.0

func (o *FpNotify) GetDescription() string

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

func (*FpNotify) GetDescriptionOk added in v0.3.0

func (o *FpNotify) 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 (*FpNotify) GetIntegration added in v0.3.0

func (o *FpNotify) GetIntegration() string

GetIntegration returns the Integration field value if set, zero value otherwise.

func (*FpNotify) GetIntegrationOk added in v0.3.0

func (o *FpNotify) GetIntegrationOk() (*string, bool)

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

func (FpNotify) GetResourceType added in v0.3.0

func (o FpNotify) GetResourceType() string

func (*FpNotify) GetSubject added in v0.3.0

func (o *FpNotify) GetSubject() string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*FpNotify) GetSubjectOk added in v0.3.0

func (o *FpNotify) GetSubjectOk() (*string, bool)

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

func (*FpNotify) GetTitle added in v0.3.0

func (o *FpNotify) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*FpNotify) GetTitleOk added in v0.3.0

func (o *FpNotify) GetTitleOk() (*string, bool)

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

func (*FpNotify) GetTo added in v0.3.0

func (o *FpNotify) GetTo() []string

GetTo returns the To field value if set, zero value otherwise.

func (*FpNotify) GetToOk added in v0.3.0

func (o *FpNotify) GetToOk() ([]string, bool)

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

func (*FpNotify) HasBcc added in v0.3.0

func (o *FpNotify) HasBcc() bool

HasBcc returns a boolean if a field has been set.

func (*FpNotify) HasCc added in v0.3.0

func (o *FpNotify) HasCc() bool

HasCc returns a boolean if a field has been set.

func (*FpNotify) HasChannel added in v0.3.0

func (o *FpNotify) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*FpNotify) HasDescription added in v0.3.0

func (o *FpNotify) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FpNotify) HasIntegration added in v0.3.0

func (o *FpNotify) HasIntegration() bool

HasIntegration returns a boolean if a field has been set.

func (*FpNotify) HasSubject added in v0.3.0

func (o *FpNotify) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (*FpNotify) HasTitle added in v0.3.0

func (o *FpNotify) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*FpNotify) HasTo added in v0.3.0

func (o *FpNotify) HasTo() bool

HasTo returns a boolean if a field has been set.

func (FpNotify) MarshalJSON added in v0.3.0

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

func (*FpNotify) SetBcc added in v0.3.0

func (o *FpNotify) SetBcc(v []string)

SetBcc gets a reference to the given []string and assigns it to the Bcc field.

func (*FpNotify) SetCc added in v0.3.0

func (o *FpNotify) SetCc(v []string)

SetCc gets a reference to the given []string and assigns it to the Cc field.

func (*FpNotify) SetChannel added in v0.3.0

func (o *FpNotify) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*FpNotify) SetDescription added in v0.3.0

func (o *FpNotify) SetDescription(v string)

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

func (*FpNotify) SetIntegration added in v0.3.0

func (o *FpNotify) SetIntegration(v string)

SetIntegration gets a reference to the given string and assigns it to the Integration field.

func (*FpNotify) SetSubject added in v0.3.0

func (o *FpNotify) SetSubject(v string)

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*FpNotify) SetTitle added in v0.3.0

func (o *FpNotify) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*FpNotify) SetTo added in v0.3.0

func (o *FpNotify) SetTo(v []string)

SetTo gets a reference to the given []string and assigns it to the To field.

func (FpNotify) ToMap added in v0.3.0

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

type FpPipeline

type FpPipeline struct {
	Description     *string                   `json:"description,omitempty"`
	Documentation   *string                   `json:"documentation,omitempty"`
	EndLineNumber   *int32                    `json:"end_line_number,omitempty"`
	FileName        *string                   `json:"file_name,omitempty"`
	Mod             *string                   `json:"mod,omitempty"`
	Name            *string                   `json:"name,omitempty"`
	Outputs         []ModconfigPipelineOutput `json:"outputs,omitempty"`
	Params          []FpPipelineParam         `json:"params,omitempty"`
	RootMod         *string                   `json:"root_mod,omitempty"`
	StartLineNumber *int32                    `json:"start_line_number,omitempty"`
	Steps           []map[string]interface{}  `json:"steps,omitempty"`
	Tags            *map[string]string        `json:"tags,omitempty"`
	Title           *string                   `json:"title,omitempty"`
}

FpPipeline struct for FpPipeline

func NewFpPipeline

func NewFpPipeline() *FpPipeline

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

func NewFpPipelineWithDefaults

func NewFpPipelineWithDefaults() *FpPipeline

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

func (*FpPipeline) GetDescription

func (o *FpPipeline) GetDescription() string

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

func (*FpPipeline) GetDescriptionOk

func (o *FpPipeline) 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 (*FpPipeline) GetDocumentation

func (o *FpPipeline) GetDocumentation() string

GetDocumentation returns the Documentation field value if set, zero value otherwise.

func (*FpPipeline) GetDocumentationOk

func (o *FpPipeline) GetDocumentationOk() (*string, bool)

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

func (*FpPipeline) GetEndLineNumber added in v0.2.0

func (o *FpPipeline) GetEndLineNumber() int32

GetEndLineNumber returns the EndLineNumber field value if set, zero value otherwise.

func (*FpPipeline) GetEndLineNumberOk added in v0.2.0

func (o *FpPipeline) GetEndLineNumberOk() (*int32, bool)

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

func (*FpPipeline) GetFileName added in v0.2.0

func (o *FpPipeline) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise.

func (*FpPipeline) GetFileNameOk added in v0.2.0

func (o *FpPipeline) 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 (*FpPipeline) GetMod

func (o *FpPipeline) GetMod() string

GetMod returns the Mod field value if set, zero value otherwise.

func (*FpPipeline) GetModOk

func (o *FpPipeline) GetModOk() (*string, bool)

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

func (*FpPipeline) GetName

func (o *FpPipeline) GetName() string

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

func (*FpPipeline) GetNameOk

func (o *FpPipeline) 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 (*FpPipeline) GetOutputs

func (o *FpPipeline) GetOutputs() []ModconfigPipelineOutput

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*FpPipeline) GetOutputsOk

func (o *FpPipeline) GetOutputsOk() ([]ModconfigPipelineOutput, bool)

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

func (*FpPipeline) GetParams

func (o *FpPipeline) GetParams() []FpPipelineParam

GetParams returns the Params field value if set, zero value otherwise.

func (*FpPipeline) GetParamsOk

func (o *FpPipeline) GetParamsOk() ([]FpPipelineParam, 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 (FpPipeline) GetResourceType

func (o FpPipeline) GetResourceType() string

func (*FpPipeline) GetRootMod added in v0.2.1

func (o *FpPipeline) GetRootMod() string

GetRootMod returns the RootMod field value if set, zero value otherwise.

func (*FpPipeline) GetRootModOk added in v0.2.1

func (o *FpPipeline) GetRootModOk() (*string, bool)

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

func (*FpPipeline) GetStartLineNumber added in v0.2.0

func (o *FpPipeline) GetStartLineNumber() int32

GetStartLineNumber returns the StartLineNumber field value if set, zero value otherwise.

func (*FpPipeline) GetStartLineNumberOk added in v0.2.0

func (o *FpPipeline) GetStartLineNumberOk() (*int32, bool)

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

func (*FpPipeline) GetSteps

func (o *FpPipeline) GetSteps() []map[string]interface{}

GetSteps returns the Steps field value if set, zero value otherwise.

func (*FpPipeline) GetStepsOk

func (o *FpPipeline) GetStepsOk() ([]map[string]interface{}, bool)

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

func (*FpPipeline) GetTags

func (o *FpPipeline) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*FpPipeline) GetTagsOk

func (o *FpPipeline) GetTagsOk() (*map[string]string, bool)

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

func (*FpPipeline) GetTitle

func (o *FpPipeline) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*FpPipeline) GetTitleOk

func (o *FpPipeline) GetTitleOk() (*string, bool)

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

func (*FpPipeline) HasDescription

func (o *FpPipeline) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FpPipeline) HasDocumentation

func (o *FpPipeline) HasDocumentation() bool

HasDocumentation returns a boolean if a field has been set.

func (*FpPipeline) HasEndLineNumber added in v0.2.0

func (o *FpPipeline) HasEndLineNumber() bool

HasEndLineNumber returns a boolean if a field has been set.

func (*FpPipeline) HasFileName added in v0.2.0

func (o *FpPipeline) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*FpPipeline) HasMod

func (o *FpPipeline) HasMod() bool

HasMod returns a boolean if a field has been set.

func (*FpPipeline) HasName

func (o *FpPipeline) HasName() bool

HasName returns a boolean if a field has been set.

func (*FpPipeline) HasOutputs

func (o *FpPipeline) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*FpPipeline) HasParams

func (o *FpPipeline) HasParams() bool

HasParams returns a boolean if a field has been set.

func (*FpPipeline) HasRootMod added in v0.2.1

func (o *FpPipeline) HasRootMod() bool

HasRootMod returns a boolean if a field has been set.

func (*FpPipeline) HasStartLineNumber added in v0.2.0

func (o *FpPipeline) HasStartLineNumber() bool

HasStartLineNumber returns a boolean if a field has been set.

func (*FpPipeline) HasSteps

func (o *FpPipeline) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (*FpPipeline) HasTags

func (o *FpPipeline) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*FpPipeline) HasTitle

func (o *FpPipeline) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (FpPipeline) MarshalJSON

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

func (*FpPipeline) SetDescription

func (o *FpPipeline) SetDescription(v string)

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

func (*FpPipeline) SetDocumentation

func (o *FpPipeline) SetDocumentation(v string)

SetDocumentation gets a reference to the given string and assigns it to the Documentation field.

func (*FpPipeline) SetEndLineNumber added in v0.2.0

func (o *FpPipeline) SetEndLineNumber(v int32)

SetEndLineNumber gets a reference to the given int32 and assigns it to the EndLineNumber field.

func (*FpPipeline) SetFileName added in v0.2.0

func (o *FpPipeline) SetFileName(v string)

SetFileName gets a reference to the given string and assigns it to the FileName field.

func (*FpPipeline) SetMod

func (o *FpPipeline) SetMod(v string)

SetMod gets a reference to the given string and assigns it to the Mod field.

func (*FpPipeline) SetName

func (o *FpPipeline) SetName(v string)

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

func (*FpPipeline) SetOutputs

func (o *FpPipeline) SetOutputs(v []ModconfigPipelineOutput)

SetOutputs gets a reference to the given []ModconfigPipelineOutput and assigns it to the Outputs field.

func (*FpPipeline) SetParams

func (o *FpPipeline) SetParams(v []FpPipelineParam)

SetParams gets a reference to the given []FpPipelineParam and assigns it to the Params field.

func (*FpPipeline) SetRootMod added in v0.2.1

func (o *FpPipeline) SetRootMod(v string)

SetRootMod gets a reference to the given string and assigns it to the RootMod field.

func (*FpPipeline) SetStartLineNumber added in v0.2.0

func (o *FpPipeline) SetStartLineNumber(v int32)

SetStartLineNumber gets a reference to the given int32 and assigns it to the StartLineNumber field.

func (*FpPipeline) SetSteps

func (o *FpPipeline) SetSteps(v []map[string]interface{})

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

func (*FpPipeline) SetTags

func (o *FpPipeline) SetTags(v map[string]string)

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

func (*FpPipeline) SetTitle

func (o *FpPipeline) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (FpPipeline) ToMap

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

type FpPipelineParam

type FpPipelineParam struct {
	Default     *interface{}       `json:"default,omitempty"`
	Description *string            `json:"description,omitempty"`
	Enum        []interface{}      `json:"enum,omitempty"`
	Name        *string            `json:"name,omitempty"`
	Optional    *bool              `json:"optional,omitempty"`
	Tags        *map[string]string `json:"tags,omitempty"`
	Type        *interface{}       `json:"type,omitempty"`
	TypeString  *string            `json:"type_string,omitempty"`
}

FpPipelineParam struct for FpPipelineParam

func NewFpPipelineParam

func NewFpPipelineParam() *FpPipelineParam

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

func NewFpPipelineParamWithDefaults

func NewFpPipelineParamWithDefaults() *FpPipelineParam

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

func (*FpPipelineParam) GetDefault

func (o *FpPipelineParam) GetDefault() interface{}

GetDefault returns the Default field value if set, zero value otherwise.

func (*FpPipelineParam) GetDefaultOk

func (o *FpPipelineParam) GetDefaultOk() (*interface{}, bool)

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

func (*FpPipelineParam) GetDescription

func (o *FpPipelineParam) GetDescription() string

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

func (*FpPipelineParam) GetDescriptionOk

func (o *FpPipelineParam) 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 (*FpPipelineParam) GetEnum added in v1.0.0

func (o *FpPipelineParam) GetEnum() []interface{}

GetEnum returns the Enum field value if set, zero value otherwise.

func (*FpPipelineParam) GetEnumOk added in v1.0.0

func (o *FpPipelineParam) GetEnumOk() ([]interface{}, bool)

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

func (*FpPipelineParam) GetName

func (o *FpPipelineParam) GetName() string

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

func (*FpPipelineParam) GetNameOk

func (o *FpPipelineParam) 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 (*FpPipelineParam) GetOptional

func (o *FpPipelineParam) GetOptional() bool

GetOptional returns the Optional field value if set, zero value otherwise.

func (*FpPipelineParam) GetOptionalOk

func (o *FpPipelineParam) GetOptionalOk() (*bool, bool)

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

func (FpPipelineParam) GetResourceType

func (o FpPipelineParam) GetResourceType() string

func (*FpPipelineParam) GetTags added in v0.7.0

func (o *FpPipelineParam) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*FpPipelineParam) GetTagsOk added in v0.7.0

func (o *FpPipelineParam) GetTagsOk() (*map[string]string, bool)

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

func (*FpPipelineParam) GetType

func (o *FpPipelineParam) GetType() interface{}

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

func (*FpPipelineParam) GetTypeOk

func (o *FpPipelineParam) GetTypeOk() (*interface{}, bool)

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

func (*FpPipelineParam) GetTypeString added in v0.5.0

func (o *FpPipelineParam) GetTypeString() string

GetTypeString returns the TypeString field value if set, zero value otherwise.

func (*FpPipelineParam) GetTypeStringOk added in v0.5.0

func (o *FpPipelineParam) GetTypeStringOk() (*string, bool)

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

func (*FpPipelineParam) HasDefault

func (o *FpPipelineParam) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*FpPipelineParam) HasDescription

func (o *FpPipelineParam) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FpPipelineParam) HasEnum added in v1.0.0

func (o *FpPipelineParam) HasEnum() bool

HasEnum returns a boolean if a field has been set.

func (*FpPipelineParam) HasName

func (o *FpPipelineParam) HasName() bool

HasName returns a boolean if a field has been set.

func (*FpPipelineParam) HasOptional

func (o *FpPipelineParam) HasOptional() bool

HasOptional returns a boolean if a field has been set.

func (*FpPipelineParam) HasTags added in v0.7.0

func (o *FpPipelineParam) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*FpPipelineParam) HasType

func (o *FpPipelineParam) HasType() bool

HasType returns a boolean if a field has been set.

func (*FpPipelineParam) HasTypeString added in v0.5.0

func (o *FpPipelineParam) HasTypeString() bool

HasTypeString returns a boolean if a field has been set.

func (FpPipelineParam) MarshalJSON

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

func (*FpPipelineParam) SetDefault

func (o *FpPipelineParam) SetDefault(v interface{})

SetDefault gets a reference to the given interface{} and assigns it to the Default field.

func (*FpPipelineParam) SetDescription

func (o *FpPipelineParam) SetDescription(v string)

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

func (*FpPipelineParam) SetEnum added in v1.0.0

func (o *FpPipelineParam) SetEnum(v []interface{})

SetEnum gets a reference to the given []interface{} and assigns it to the Enum field.

func (*FpPipelineParam) SetName

func (o *FpPipelineParam) SetName(v string)

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

func (*FpPipelineParam) SetOptional

func (o *FpPipelineParam) SetOptional(v bool)

SetOptional gets a reference to the given bool and assigns it to the Optional field.

func (*FpPipelineParam) SetTags added in v0.7.0

func (o *FpPipelineParam) SetTags(v map[string]string)

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

func (*FpPipelineParam) SetType

func (o *FpPipelineParam) SetType(v interface{})

SetType gets a reference to the given interface{} and assigns it to the Type field.

func (*FpPipelineParam) SetTypeString added in v0.5.0

func (o *FpPipelineParam) SetTypeString(v string)

SetTypeString gets a reference to the given string and assigns it to the TypeString field.

func (FpPipelineParam) ToMap

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

type FpTrigger

type FpTrigger struct {
	Description     *string             `json:"description,omitempty"`
	Documentation   *string             `json:"documentation,omitempty"`
	Enabled         *bool               `json:"enabled,omitempty"`
	EndLineNumber   *int32              `json:"end_line_number,omitempty"`
	FileName        *string             `json:"file_name,omitempty"`
	Mod             *string             `json:"mod,omitempty"`
	Name            *string             `json:"name,omitempty"`
	Params          []FpPipelineParam   `json:"params,omitempty"`
	Pipelines       []FpTriggerPipeline `json:"pipelines,omitempty"`
	Query           *string             `json:"query,omitempty"`
	RootMod         *string             `json:"root_mod,omitempty"`
	Schedule        *string             `json:"schedule,omitempty"`
	StartLineNumber *int32              `json:"start_line_number,omitempty"`
	Tags            *map[string]string  `json:"tags,omitempty"`
	Title           *string             `json:"title,omitempty"`
	Type            *string             `json:"type,omitempty"`
	Url             *string             `json:"url,omitempty"`
}

FpTrigger struct for FpTrigger

func NewFpTrigger

func NewFpTrigger() *FpTrigger

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

func NewFpTriggerWithDefaults

func NewFpTriggerWithDefaults() *FpTrigger

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

func (*FpTrigger) GetDescription

func (o *FpTrigger) GetDescription() string

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

func (*FpTrigger) GetDescriptionOk

func (o *FpTrigger) 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 (*FpTrigger) GetDocumentation

func (o *FpTrigger) GetDocumentation() string

GetDocumentation returns the Documentation field value if set, zero value otherwise.

func (*FpTrigger) GetDocumentationOk

func (o *FpTrigger) GetDocumentationOk() (*string, bool)

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

func (*FpTrigger) GetEnabled added in v0.2.0

func (o *FpTrigger) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*FpTrigger) GetEnabledOk added in v0.2.0

func (o *FpTrigger) GetEnabledOk() (*bool, bool)

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

func (*FpTrigger) GetEndLineNumber added in v0.2.0

func (o *FpTrigger) GetEndLineNumber() int32

GetEndLineNumber returns the EndLineNumber field value if set, zero value otherwise.

func (*FpTrigger) GetEndLineNumberOk added in v0.2.0

func (o *FpTrigger) GetEndLineNumberOk() (*int32, bool)

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

func (*FpTrigger) GetFileName added in v0.2.0

func (o *FpTrigger) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise.

func (*FpTrigger) GetFileNameOk added in v0.2.0

func (o *FpTrigger) 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 (*FpTrigger) GetMod added in v0.6.0

func (o *FpTrigger) GetMod() string

GetMod returns the Mod field value if set, zero value otherwise.

func (*FpTrigger) GetModOk added in v0.6.0

func (o *FpTrigger) GetModOk() (*string, bool)

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

func (*FpTrigger) GetName

func (o *FpTrigger) GetName() string

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

func (*FpTrigger) GetNameOk

func (o *FpTrigger) 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 (*FpTrigger) GetParams added in v0.7.1

func (o *FpTrigger) GetParams() []FpPipelineParam

GetParams returns the Params field value if set, zero value otherwise.

func (*FpTrigger) GetParamsOk added in v0.7.1

func (o *FpTrigger) GetParamsOk() ([]FpPipelineParam, 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 (*FpTrigger) GetPipelines added in v0.2.0

func (o *FpTrigger) GetPipelines() []FpTriggerPipeline

GetPipelines returns the Pipelines field value if set, zero value otherwise.

func (*FpTrigger) GetPipelinesOk added in v0.2.0

func (o *FpTrigger) GetPipelinesOk() ([]FpTriggerPipeline, bool)

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

func (*FpTrigger) GetQuery added in v0.2.0

func (o *FpTrigger) GetQuery() string

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

func (*FpTrigger) GetQueryOk added in v0.2.0

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

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

func (FpTrigger) GetResourceType

func (o FpTrigger) GetResourceType() string

func (*FpTrigger) GetRootMod added in v0.6.0

func (o *FpTrigger) GetRootMod() string

GetRootMod returns the RootMod field value if set, zero value otherwise.

func (*FpTrigger) GetRootModOk added in v0.6.0

func (o *FpTrigger) GetRootModOk() (*string, bool)

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

func (*FpTrigger) GetSchedule

func (o *FpTrigger) GetSchedule() string

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*FpTrigger) GetScheduleOk

func (o *FpTrigger) GetScheduleOk() (*string, bool)

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

func (*FpTrigger) GetStartLineNumber added in v0.2.0

func (o *FpTrigger) GetStartLineNumber() int32

GetStartLineNumber returns the StartLineNumber field value if set, zero value otherwise.

func (*FpTrigger) GetStartLineNumberOk added in v0.2.0

func (o *FpTrigger) GetStartLineNumberOk() (*int32, bool)

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

func (*FpTrigger) GetTags

func (o *FpTrigger) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*FpTrigger) GetTagsOk

func (o *FpTrigger) GetTagsOk() (*map[string]string, bool)

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

func (*FpTrigger) GetTitle

func (o *FpTrigger) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*FpTrigger) GetTitleOk

func (o *FpTrigger) GetTitleOk() (*string, bool)

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

func (*FpTrigger) GetType

func (o *FpTrigger) GetType() string

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

func (*FpTrigger) GetTypeOk

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

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

func (*FpTrigger) GetUrl

func (o *FpTrigger) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*FpTrigger) GetUrlOk

func (o *FpTrigger) GetUrlOk() (*string, bool)

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

func (*FpTrigger) HasDescription

func (o *FpTrigger) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FpTrigger) HasDocumentation

func (o *FpTrigger) HasDocumentation() bool

HasDocumentation returns a boolean if a field has been set.

func (*FpTrigger) HasEnabled added in v0.2.0

func (o *FpTrigger) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*FpTrigger) HasEndLineNumber added in v0.2.0

func (o *FpTrigger) HasEndLineNumber() bool

HasEndLineNumber returns a boolean if a field has been set.

func (*FpTrigger) HasFileName added in v0.2.0

func (o *FpTrigger) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*FpTrigger) HasMod added in v0.6.0

func (o *FpTrigger) HasMod() bool

HasMod returns a boolean if a field has been set.

func (*FpTrigger) HasName

func (o *FpTrigger) HasName() bool

HasName returns a boolean if a field has been set.

func (*FpTrigger) HasParams added in v0.7.1

func (o *FpTrigger) HasParams() bool

HasParams returns a boolean if a field has been set.

func (*FpTrigger) HasPipelines added in v0.2.0

func (o *FpTrigger) HasPipelines() bool

HasPipelines returns a boolean if a field has been set.

func (*FpTrigger) HasQuery added in v0.2.0

func (o *FpTrigger) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*FpTrigger) HasRootMod added in v0.6.0

func (o *FpTrigger) HasRootMod() bool

HasRootMod returns a boolean if a field has been set.

func (*FpTrigger) HasSchedule

func (o *FpTrigger) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*FpTrigger) HasStartLineNumber added in v0.2.0

func (o *FpTrigger) HasStartLineNumber() bool

HasStartLineNumber returns a boolean if a field has been set.

func (*FpTrigger) HasTags

func (o *FpTrigger) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*FpTrigger) HasTitle

func (o *FpTrigger) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*FpTrigger) HasType

func (o *FpTrigger) HasType() bool

HasType returns a boolean if a field has been set.

func (*FpTrigger) HasUrl

func (o *FpTrigger) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (FpTrigger) MarshalJSON

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

func (*FpTrigger) SetDescription

func (o *FpTrigger) SetDescription(v string)

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

func (*FpTrigger) SetDocumentation

func (o *FpTrigger) SetDocumentation(v string)

SetDocumentation gets a reference to the given string and assigns it to the Documentation field.

func (*FpTrigger) SetEnabled added in v0.2.0

func (o *FpTrigger) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*FpTrigger) SetEndLineNumber added in v0.2.0

func (o *FpTrigger) SetEndLineNumber(v int32)

SetEndLineNumber gets a reference to the given int32 and assigns it to the EndLineNumber field.

func (*FpTrigger) SetFileName added in v0.2.0

func (o *FpTrigger) SetFileName(v string)

SetFileName gets a reference to the given string and assigns it to the FileName field.

func (*FpTrigger) SetMod added in v0.6.0

func (o *FpTrigger) SetMod(v string)

SetMod gets a reference to the given string and assigns it to the Mod field.

func (*FpTrigger) SetName

func (o *FpTrigger) SetName(v string)

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

func (*FpTrigger) SetParams added in v0.7.1

func (o *FpTrigger) SetParams(v []FpPipelineParam)

SetParams gets a reference to the given []FpPipelineParam and assigns it to the Params field.

func (*FpTrigger) SetPipelines added in v0.2.0

func (o *FpTrigger) SetPipelines(v []FpTriggerPipeline)

SetPipelines gets a reference to the given []FpTriggerPipeline and assigns it to the Pipelines field.

func (*FpTrigger) SetQuery added in v0.2.0

func (o *FpTrigger) SetQuery(v string)

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

func (*FpTrigger) SetRootMod added in v0.6.0

func (o *FpTrigger) SetRootMod(v string)

SetRootMod gets a reference to the given string and assigns it to the RootMod field.

func (*FpTrigger) SetSchedule

func (o *FpTrigger) SetSchedule(v string)

SetSchedule gets a reference to the given string and assigns it to the Schedule field.

func (*FpTrigger) SetStartLineNumber added in v0.2.0

func (o *FpTrigger) SetStartLineNumber(v int32)

SetStartLineNumber gets a reference to the given int32 and assigns it to the StartLineNumber field.

func (*FpTrigger) SetTags

func (o *FpTrigger) SetTags(v map[string]string)

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

func (*FpTrigger) SetTitle

func (o *FpTrigger) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*FpTrigger) SetType

func (o *FpTrigger) SetType(v string)

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

func (*FpTrigger) SetUrl

func (o *FpTrigger) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (FpTrigger) ToMap

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

type FpTriggerPipeline added in v0.2.0

type FpTriggerPipeline struct {
	CaptureGroup *string `json:"capture_group,omitempty"`
	Pipeline     *string `json:"pipeline,omitempty"`
}

FpTriggerPipeline struct for FpTriggerPipeline

func NewFpTriggerPipeline added in v0.2.0

func NewFpTriggerPipeline() *FpTriggerPipeline

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

func NewFpTriggerPipelineWithDefaults added in v0.2.0

func NewFpTriggerPipelineWithDefaults() *FpTriggerPipeline

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

func (*FpTriggerPipeline) GetCaptureGroup added in v0.2.0

func (o *FpTriggerPipeline) GetCaptureGroup() string

GetCaptureGroup returns the CaptureGroup field value if set, zero value otherwise.

func (*FpTriggerPipeline) GetCaptureGroupOk added in v0.2.0

func (o *FpTriggerPipeline) GetCaptureGroupOk() (*string, bool)

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

func (*FpTriggerPipeline) GetPipeline added in v0.2.0

func (o *FpTriggerPipeline) GetPipeline() string

GetPipeline returns the Pipeline field value if set, zero value otherwise.

func (*FpTriggerPipeline) GetPipelineOk added in v0.2.0

func (o *FpTriggerPipeline) GetPipelineOk() (*string, bool)

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

func (FpTriggerPipeline) GetResourceType added in v0.2.0

func (o FpTriggerPipeline) GetResourceType() string

func (*FpTriggerPipeline) HasCaptureGroup added in v0.2.0

func (o *FpTriggerPipeline) HasCaptureGroup() bool

HasCaptureGroup returns a boolean if a field has been set.

func (*FpTriggerPipeline) HasPipeline added in v0.2.0

func (o *FpTriggerPipeline) HasPipeline() bool

HasPipeline returns a boolean if a field has been set.

func (FpTriggerPipeline) MarshalJSON added in v0.2.0

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

func (*FpTriggerPipeline) SetCaptureGroup added in v0.2.0

func (o *FpTriggerPipeline) SetCaptureGroup(v string)

SetCaptureGroup gets a reference to the given string and assigns it to the CaptureGroup field.

func (*FpTriggerPipeline) SetPipeline added in v0.2.0

func (o *FpTriggerPipeline) SetPipeline(v string)

SetPipeline gets a reference to the given string and assigns it to the Pipeline field.

func (FpTriggerPipeline) ToMap added in v0.2.0

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

type FpVariable added in v0.4.0

type FpVariable struct {
	Description     *string            `json:"description,omitempty"`
	EndLineNumber   *int32             `json:"end_line_number,omitempty"`
	Enum            []interface{}      `json:"enum,omitempty"`
	FileName        *string            `json:"file_name,omitempty"`
	ModName         *string            `json:"mod_name,omitempty"`
	QualifiedName   *string            `json:"qualified_name,omitempty"`
	ResourceName    *string            `json:"resource_name,omitempty"`
	StartLineNumber *int32             `json:"start_line_number,omitempty"`
	Tags            *map[string]string `json:"tags,omitempty"`
	Type            *interface{}       `json:"type,omitempty"`
	TypeString      *string            `json:"type_string,omitempty"`
	Value           *interface{}       `json:"value,omitempty"`
	ValueDefault    *interface{}       `json:"value_default,omitempty"`
}

FpVariable struct for FpVariable

func NewFpVariable added in v0.4.0

func NewFpVariable() *FpVariable

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

func NewFpVariableWithDefaults added in v0.4.0

func NewFpVariableWithDefaults() *FpVariable

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

func (*FpVariable) GetDescription added in v0.4.0

func (o *FpVariable) GetDescription() string

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

func (*FpVariable) GetDescriptionOk added in v0.4.0

func (o *FpVariable) 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 (*FpVariable) GetEndLineNumber added in v0.6.0

func (o *FpVariable) GetEndLineNumber() int32

GetEndLineNumber returns the EndLineNumber field value if set, zero value otherwise.

func (*FpVariable) GetEndLineNumberOk added in v0.6.0

func (o *FpVariable) GetEndLineNumberOk() (*int32, bool)

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

func (*FpVariable) GetEnum added in v1.0.0

func (o *FpVariable) GetEnum() []interface{}

GetEnum returns the Enum field value if set, zero value otherwise.

func (*FpVariable) GetEnumOk added in v1.0.0

func (o *FpVariable) GetEnumOk() ([]interface{}, bool)

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

func (*FpVariable) GetFileName added in v0.6.0

func (o *FpVariable) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise.

func (*FpVariable) GetFileNameOk added in v0.6.0

func (o *FpVariable) 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 (*FpVariable) GetModName added in v0.4.0

func (o *FpVariable) GetModName() string

GetModName returns the ModName field value if set, zero value otherwise.

func (*FpVariable) GetModNameOk added in v0.4.0

func (o *FpVariable) GetModNameOk() (*string, bool)

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

func (*FpVariable) GetQualifiedName added in v0.6.0

func (o *FpVariable) GetQualifiedName() string

GetQualifiedName returns the QualifiedName field value if set, zero value otherwise.

func (*FpVariable) GetQualifiedNameOk added in v0.6.0

func (o *FpVariable) GetQualifiedNameOk() (*string, bool)

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

func (*FpVariable) GetResourceName added in v0.6.0

func (o *FpVariable) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise.

func (*FpVariable) GetResourceNameOk added in v0.6.0

func (o *FpVariable) GetResourceNameOk() (*string, bool)

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

func (FpVariable) GetResourceType added in v0.4.0

func (o FpVariable) GetResourceType() string

func (*FpVariable) GetStartLineNumber added in v0.6.0

func (o *FpVariable) GetStartLineNumber() int32

GetStartLineNumber returns the StartLineNumber field value if set, zero value otherwise.

func (*FpVariable) GetStartLineNumberOk added in v0.6.0

func (o *FpVariable) GetStartLineNumberOk() (*int32, bool)

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

func (*FpVariable) GetTags added in v0.7.0

func (o *FpVariable) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*FpVariable) GetTagsOk added in v0.7.0

func (o *FpVariable) GetTagsOk() (*map[string]string, bool)

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

func (*FpVariable) GetType added in v0.4.0

func (o *FpVariable) GetType() interface{}

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

func (*FpVariable) GetTypeOk added in v0.4.0

func (o *FpVariable) GetTypeOk() (*interface{}, bool)

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

func (*FpVariable) GetTypeString added in v0.6.0

func (o *FpVariable) GetTypeString() string

GetTypeString returns the TypeString field value if set, zero value otherwise.

func (*FpVariable) GetTypeStringOk added in v0.6.0

func (o *FpVariable) GetTypeStringOk() (*string, bool)

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

func (*FpVariable) GetValue added in v0.4.0

func (o *FpVariable) GetValue() interface{}

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

func (*FpVariable) GetValueDefault added in v0.6.0

func (o *FpVariable) GetValueDefault() interface{}

GetValueDefault returns the ValueDefault field value if set, zero value otherwise.

func (*FpVariable) GetValueDefaultOk added in v0.6.0

func (o *FpVariable) GetValueDefaultOk() (*interface{}, bool)

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

func (*FpVariable) GetValueOk added in v0.4.0

func (o *FpVariable) GetValueOk() (*interface{}, 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 (*FpVariable) HasDescription added in v0.4.0

func (o *FpVariable) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*FpVariable) HasEndLineNumber added in v0.6.0

func (o *FpVariable) HasEndLineNumber() bool

HasEndLineNumber returns a boolean if a field has been set.

func (*FpVariable) HasEnum added in v1.0.0

func (o *FpVariable) HasEnum() bool

HasEnum returns a boolean if a field has been set.

func (*FpVariable) HasFileName added in v0.6.0

func (o *FpVariable) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*FpVariable) HasModName added in v0.4.0

func (o *FpVariable) HasModName() bool

HasModName returns a boolean if a field has been set.

func (*FpVariable) HasQualifiedName added in v0.6.0

func (o *FpVariable) HasQualifiedName() bool

HasQualifiedName returns a boolean if a field has been set.

func (*FpVariable) HasResourceName added in v0.6.0

func (o *FpVariable) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (*FpVariable) HasStartLineNumber added in v0.6.0

func (o *FpVariable) HasStartLineNumber() bool

HasStartLineNumber returns a boolean if a field has been set.

func (*FpVariable) HasTags added in v0.7.0

func (o *FpVariable) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*FpVariable) HasType added in v0.4.0

func (o *FpVariable) HasType() bool

HasType returns a boolean if a field has been set.

func (*FpVariable) HasTypeString added in v0.6.0

func (o *FpVariable) HasTypeString() bool

HasTypeString returns a boolean if a field has been set.

func (*FpVariable) HasValue added in v0.4.0

func (o *FpVariable) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*FpVariable) HasValueDefault added in v0.6.0

func (o *FpVariable) HasValueDefault() bool

HasValueDefault returns a boolean if a field has been set.

func (FpVariable) MarshalJSON added in v0.4.0

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

func (*FpVariable) SetDescription added in v0.4.0

func (o *FpVariable) SetDescription(v string)

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

func (*FpVariable) SetEndLineNumber added in v0.6.0

func (o *FpVariable) SetEndLineNumber(v int32)

SetEndLineNumber gets a reference to the given int32 and assigns it to the EndLineNumber field.

func (*FpVariable) SetEnum added in v1.0.0

func (o *FpVariable) SetEnum(v []interface{})

SetEnum gets a reference to the given []interface{} and assigns it to the Enum field.

func (*FpVariable) SetFileName added in v0.6.0

func (o *FpVariable) SetFileName(v string)

SetFileName gets a reference to the given string and assigns it to the FileName field.

func (*FpVariable) SetModName added in v0.4.0

func (o *FpVariable) SetModName(v string)

SetModName gets a reference to the given string and assigns it to the ModName field.

func (*FpVariable) SetQualifiedName added in v0.6.0

func (o *FpVariable) SetQualifiedName(v string)

SetQualifiedName gets a reference to the given string and assigns it to the QualifiedName field.

func (*FpVariable) SetResourceName added in v0.6.0

func (o *FpVariable) SetResourceName(v string)

SetResourceName gets a reference to the given string and assigns it to the ResourceName field.

func (*FpVariable) SetStartLineNumber added in v0.6.0

func (o *FpVariable) SetStartLineNumber(v int32)

SetStartLineNumber gets a reference to the given int32 and assigns it to the StartLineNumber field.

func (*FpVariable) SetTags added in v0.7.0

func (o *FpVariable) SetTags(v map[string]string)

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

func (*FpVariable) SetType added in v0.4.0

func (o *FpVariable) SetType(v interface{})

SetType gets a reference to the given interface{} and assigns it to the Type field.

func (*FpVariable) SetTypeString added in v0.6.0

func (o *FpVariable) SetTypeString(v string)

SetTypeString gets a reference to the given string and assigns it to the TypeString field.

func (*FpVariable) SetValue added in v0.4.0

func (o *FpVariable) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (*FpVariable) SetValueDefault added in v0.6.0

func (o *FpVariable) SetValueDefault(v interface{})

SetValueDefault gets a reference to the given interface{} and assigns it to the ValueDefault field.

func (FpVariable) ToMap added in v0.4.0

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

type FperrErrorDetailModel

type FperrErrorDetailModel struct {
	Location *string `json:"location,omitempty"`
	Message  *string `json:"message,omitempty"`
}

FperrErrorDetailModel struct for FperrErrorDetailModel

func NewFperrErrorDetailModel

func NewFperrErrorDetailModel() *FperrErrorDetailModel

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

func NewFperrErrorDetailModelWithDefaults

func NewFperrErrorDetailModelWithDefaults() *FperrErrorDetailModel

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

func (*FperrErrorDetailModel) GetLocation

func (o *FperrErrorDetailModel) GetLocation() string

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

func (*FperrErrorDetailModel) GetLocationOk

func (o *FperrErrorDetailModel) GetLocationOk() (*string, bool)

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

func (*FperrErrorDetailModel) GetMessage

func (o *FperrErrorDetailModel) GetMessage() string

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

func (*FperrErrorDetailModel) GetMessageOk

func (o *FperrErrorDetailModel) 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 (FperrErrorDetailModel) GetResourceType

func (o FperrErrorDetailModel) GetResourceType() string

func (*FperrErrorDetailModel) HasLocation

func (o *FperrErrorDetailModel) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*FperrErrorDetailModel) HasMessage

func (o *FperrErrorDetailModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (FperrErrorDetailModel) MarshalJSON

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

func (*FperrErrorDetailModel) SetLocation

func (o *FperrErrorDetailModel) SetLocation(v string)

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

func (*FperrErrorDetailModel) SetMessage

func (o *FperrErrorDetailModel) SetMessage(v string)

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

func (FperrErrorDetailModel) ToMap

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

type FperrErrorModel

type FperrErrorModel struct {
	Detail   *string `json:"detail,omitempty"`
	Instance string  `json:"instance"`
	// All errors are fatal unless specified
	Retryable        *bool                   `json:"retryable,omitempty"`
	Status           int32                   `json:"status"`
	Title            string                  `json:"title"`
	Type             string                  `json:"type"`
	ValidationErrors []FperrErrorDetailModel `json:"validation_errors,omitempty"`
}

FperrErrorModel struct for FperrErrorModel

func NewFperrErrorModel

func NewFperrErrorModel(instance string, status int32, title string, type_ string) *FperrErrorModel

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

func NewFperrErrorModelWithDefaults

func NewFperrErrorModelWithDefaults() *FperrErrorModel

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

func (*FperrErrorModel) GetDetail

func (o *FperrErrorModel) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*FperrErrorModel) GetDetailOk

func (o *FperrErrorModel) 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 (*FperrErrorModel) GetInstance

func (o *FperrErrorModel) GetInstance() string

GetInstance returns the Instance field value

func (*FperrErrorModel) GetInstanceOk

func (o *FperrErrorModel) GetInstanceOk() (*string, bool)

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

func (FperrErrorModel) GetResourceType

func (o FperrErrorModel) GetResourceType() string

func (*FperrErrorModel) GetRetryable

func (o *FperrErrorModel) GetRetryable() bool

GetRetryable returns the Retryable field value if set, zero value otherwise.

func (*FperrErrorModel) GetRetryableOk

func (o *FperrErrorModel) GetRetryableOk() (*bool, bool)

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

func (*FperrErrorModel) GetStatus

func (o *FperrErrorModel) GetStatus() int32

GetStatus returns the Status field value

func (*FperrErrorModel) GetStatusOk

func (o *FperrErrorModel) GetStatusOk() (*int32, bool)

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

func (*FperrErrorModel) GetTitle

func (o *FperrErrorModel) GetTitle() string

GetTitle returns the Title field value

func (*FperrErrorModel) GetTitleOk

func (o *FperrErrorModel) GetTitleOk() (*string, bool)

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

func (*FperrErrorModel) GetType

func (o *FperrErrorModel) GetType() string

GetType returns the Type field value

func (*FperrErrorModel) GetTypeOk

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

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

func (*FperrErrorModel) GetValidationErrors

func (o *FperrErrorModel) GetValidationErrors() []FperrErrorDetailModel

GetValidationErrors returns the ValidationErrors field value if set, zero value otherwise.

func (*FperrErrorModel) GetValidationErrorsOk

func (o *FperrErrorModel) GetValidationErrorsOk() ([]FperrErrorDetailModel, bool)

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

func (*FperrErrorModel) HasDetail

func (o *FperrErrorModel) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*FperrErrorModel) HasRetryable

func (o *FperrErrorModel) HasRetryable() bool

HasRetryable returns a boolean if a field has been set.

func (*FperrErrorModel) HasValidationErrors

func (o *FperrErrorModel) HasValidationErrors() bool

HasValidationErrors returns a boolean if a field has been set.

func (FperrErrorModel) MarshalJSON

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

func (*FperrErrorModel) SetDetail

func (o *FperrErrorModel) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*FperrErrorModel) SetInstance

func (o *FperrErrorModel) SetInstance(v string)

SetInstance sets field value

func (*FperrErrorModel) SetRetryable

func (o *FperrErrorModel) SetRetryable(v bool)

SetRetryable gets a reference to the given bool and assigns it to the Retryable field.

func (*FperrErrorModel) SetStatus

func (o *FperrErrorModel) SetStatus(v int32)

SetStatus sets field value

func (*FperrErrorModel) SetTitle

func (o *FperrErrorModel) SetTitle(v string)

SetTitle sets field value

func (*FperrErrorModel) SetType

func (o *FperrErrorModel) SetType(v string)

SetType sets field value

func (*FperrErrorModel) SetValidationErrors

func (o *FperrErrorModel) SetValidationErrors(v []FperrErrorDetailModel)

SetValidationErrors gets a reference to the given []FperrErrorDetailModel and assigns it to the ValidationErrors field.

func (FperrErrorModel) ToMap

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetPipelineResponse

type GetPipelineResponse struct {
	Description   *string                   `json:"description,omitempty"`
	Documentation *string                   `json:"documentation,omitempty"`
	Mod           *string                   `json:"mod,omitempty"`
	Name          *string                   `json:"name,omitempty"`
	Outputs       []ModconfigPipelineOutput `json:"outputs,omitempty"`
	Params        []FpPipelineParam         `json:"params,omitempty"`
	Steps         []map[string]interface{}  `json:"steps,omitempty"`
	Tags          *map[string]string        `json:"tags,omitempty"`
	Title         *string                   `json:"title,omitempty"`
}

GetPipelineResponse struct for GetPipelineResponse

func NewGetPipelineResponse

func NewGetPipelineResponse() *GetPipelineResponse

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

func NewGetPipelineResponseWithDefaults

func NewGetPipelineResponseWithDefaults() *GetPipelineResponse

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

func (*GetPipelineResponse) GetDescription

func (o *GetPipelineResponse) GetDescription() string

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

func (*GetPipelineResponse) GetDescriptionOk

func (o *GetPipelineResponse) 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 (*GetPipelineResponse) GetDocumentation

func (o *GetPipelineResponse) GetDocumentation() string

GetDocumentation returns the Documentation field value if set, zero value otherwise.

func (*GetPipelineResponse) GetDocumentationOk

func (o *GetPipelineResponse) GetDocumentationOk() (*string, bool)

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

func (*GetPipelineResponse) GetMod

func (o *GetPipelineResponse) GetMod() string

GetMod returns the Mod field value if set, zero value otherwise.

func (*GetPipelineResponse) GetModOk

func (o *GetPipelineResponse) GetModOk() (*string, bool)

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

func (*GetPipelineResponse) GetName

func (o *GetPipelineResponse) GetName() string

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

func (*GetPipelineResponse) GetNameOk

func (o *GetPipelineResponse) 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 (*GetPipelineResponse) GetOutputs

func (o *GetPipelineResponse) GetOutputs() []ModconfigPipelineOutput

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*GetPipelineResponse) GetOutputsOk

func (o *GetPipelineResponse) GetOutputsOk() ([]ModconfigPipelineOutput, bool)

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

func (*GetPipelineResponse) GetParams

func (o *GetPipelineResponse) GetParams() []FpPipelineParam

GetParams returns the Params field value if set, zero value otherwise.

func (*GetPipelineResponse) GetParamsOk

func (o *GetPipelineResponse) GetParamsOk() ([]FpPipelineParam, 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 (GetPipelineResponse) GetResourceType

func (o GetPipelineResponse) GetResourceType() string

func (*GetPipelineResponse) GetSteps

func (o *GetPipelineResponse) GetSteps() []map[string]interface{}

GetSteps returns the Steps field value if set, zero value otherwise.

func (*GetPipelineResponse) GetStepsOk

func (o *GetPipelineResponse) GetStepsOk() ([]map[string]interface{}, bool)

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

func (*GetPipelineResponse) GetTags

func (o *GetPipelineResponse) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*GetPipelineResponse) GetTagsOk

func (o *GetPipelineResponse) GetTagsOk() (*map[string]string, bool)

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

func (*GetPipelineResponse) GetTitle

func (o *GetPipelineResponse) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*GetPipelineResponse) GetTitleOk

func (o *GetPipelineResponse) GetTitleOk() (*string, bool)

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

func (*GetPipelineResponse) HasDescription

func (o *GetPipelineResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*GetPipelineResponse) HasDocumentation

func (o *GetPipelineResponse) HasDocumentation() bool

HasDocumentation returns a boolean if a field has been set.

func (*GetPipelineResponse) HasMod

func (o *GetPipelineResponse) HasMod() bool

HasMod returns a boolean if a field has been set.

func (*GetPipelineResponse) HasName

func (o *GetPipelineResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetPipelineResponse) HasOutputs

func (o *GetPipelineResponse) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*GetPipelineResponse) HasParams

func (o *GetPipelineResponse) HasParams() bool

HasParams returns a boolean if a field has been set.

func (*GetPipelineResponse) HasSteps

func (o *GetPipelineResponse) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (*GetPipelineResponse) HasTags

func (o *GetPipelineResponse) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*GetPipelineResponse) HasTitle

func (o *GetPipelineResponse) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (GetPipelineResponse) MarshalJSON

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

func (*GetPipelineResponse) SetDescription

func (o *GetPipelineResponse) SetDescription(v string)

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

func (*GetPipelineResponse) SetDocumentation

func (o *GetPipelineResponse) SetDocumentation(v string)

SetDocumentation gets a reference to the given string and assigns it to the Documentation field.

func (*GetPipelineResponse) SetMod

func (o *GetPipelineResponse) SetMod(v string)

SetMod gets a reference to the given string and assigns it to the Mod field.

func (*GetPipelineResponse) SetName

func (o *GetPipelineResponse) SetName(v string)

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

func (*GetPipelineResponse) SetOutputs

func (o *GetPipelineResponse) SetOutputs(v []ModconfigPipelineOutput)

SetOutputs gets a reference to the given []ModconfigPipelineOutput and assigns it to the Outputs field.

func (*GetPipelineResponse) SetParams

func (o *GetPipelineResponse) SetParams(v []FpPipelineParam)

SetParams gets a reference to the given []FpPipelineParam and assigns it to the Params field.

func (*GetPipelineResponse) SetSteps

func (o *GetPipelineResponse) SetSteps(v []map[string]interface{})

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

func (*GetPipelineResponse) SetTags

func (o *GetPipelineResponse) SetTags(v map[string]string)

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

func (*GetPipelineResponse) SetTitle

func (o *GetPipelineResponse) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (GetPipelineResponse) ToMap

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

type HclPos added in v0.4.0

type HclPos struct {
	// Byte is the byte offset into the file where the indicated character begins. This is a zero-based offset to the first byte of the first UTF-8 codepoint sequence in the character, and thus gives a position that can be resolved _without_ awareness of Unicode characters.
	Byte *int32 `json:"byte,omitempty"`
	// Column is the source code column where this position points, in unicode characters, with counting starting at 1.  Column counts characters as they appear visually, so for example a latin letter with a combining diacritic mark counts as one character. This is intended for rendering visual markers against source code in contexts where these diacritics would be rendered in a single character cell. Technically speaking, Column is counting grapheme clusters as used in unicode normalization.
	Column *int32 `json:"column,omitempty"`
	// Line is the source code line where this position points. Lines are counted starting at 1 and incremented for each newline character encountered.
	Line *int32 `json:"line,omitempty"`
}

HclPos struct for HclPos

func NewHclPos added in v0.4.0

func NewHclPos() *HclPos

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

func NewHclPosWithDefaults added in v0.4.0

func NewHclPosWithDefaults() *HclPos

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

func (*HclPos) GetByte added in v0.4.0

func (o *HclPos) GetByte() int32

GetByte returns the Byte field value if set, zero value otherwise.

func (*HclPos) GetByteOk added in v0.4.0

func (o *HclPos) GetByteOk() (*int32, bool)

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

func (*HclPos) GetColumn added in v0.4.0

func (o *HclPos) GetColumn() int32

GetColumn returns the Column field value if set, zero value otherwise.

func (*HclPos) GetColumnOk added in v0.4.0

func (o *HclPos) GetColumnOk() (*int32, bool)

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

func (*HclPos) GetLine added in v0.4.0

func (o *HclPos) GetLine() int32

GetLine returns the Line field value if set, zero value otherwise.

func (*HclPos) GetLineOk added in v0.4.0

func (o *HclPos) GetLineOk() (*int32, bool)

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

func (HclPos) GetResourceType added in v0.4.0

func (o HclPos) GetResourceType() string

func (*HclPos) HasByte added in v0.4.0

func (o *HclPos) HasByte() bool

HasByte returns a boolean if a field has been set.

func (*HclPos) HasColumn added in v0.4.0

func (o *HclPos) HasColumn() bool

HasColumn returns a boolean if a field has been set.

func (*HclPos) HasLine added in v0.4.0

func (o *HclPos) HasLine() bool

HasLine returns a boolean if a field has been set.

func (HclPos) MarshalJSON added in v0.4.0

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

func (*HclPos) SetByte added in v0.4.0

func (o *HclPos) SetByte(v int32)

SetByte gets a reference to the given int32 and assigns it to the Byte field.

func (*HclPos) SetColumn added in v0.4.0

func (o *HclPos) SetColumn(v int32)

SetColumn gets a reference to the given int32 and assigns it to the Column field.

func (*HclPos) SetLine added in v0.4.0

func (o *HclPos) SetLine(v int32)

SetLine gets a reference to the given int32 and assigns it to the Line field.

func (HclPos) ToMap added in v0.4.0

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

type HclRange added in v0.4.0

type HclRange struct {
	// Filename is the name of the file into which this range's positions point.
	Filename *string        `json:"filename,omitempty"`
	Start    *HclRangeStart `json:"start,omitempty"`
}

HclRange struct for HclRange

func NewHclRange added in v0.4.0

func NewHclRange() *HclRange

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

func NewHclRangeWithDefaults added in v0.4.0

func NewHclRangeWithDefaults() *HclRange

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

func (*HclRange) GetFilename added in v0.4.0

func (o *HclRange) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise.

func (*HclRange) GetFilenameOk added in v0.4.0

func (o *HclRange) 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 (HclRange) GetResourceType added in v0.4.0

func (o HclRange) GetResourceType() string

func (*HclRange) GetStart added in v0.4.0

func (o *HclRange) GetStart() HclRangeStart

GetStart returns the Start field value if set, zero value otherwise.

func (*HclRange) GetStartOk added in v0.4.0

func (o *HclRange) GetStartOk() (*HclRangeStart, bool)

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

func (*HclRange) HasFilename added in v0.4.0

func (o *HclRange) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (*HclRange) HasStart added in v0.4.0

func (o *HclRange) HasStart() bool

HasStart returns a boolean if a field has been set.

func (HclRange) MarshalJSON added in v0.4.0

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

func (*HclRange) SetFilename added in v0.4.0

func (o *HclRange) SetFilename(v string)

SetFilename gets a reference to the given string and assigns it to the Filename field.

func (*HclRange) SetStart added in v0.4.0

func (o *HclRange) SetStart(v HclRangeStart)

SetStart gets a reference to the given HclRangeStart and assigns it to the Start field.

func (HclRange) ToMap added in v0.4.0

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

type HclRangeStart added in v0.4.0

type HclRangeStart struct {
	// Byte is the byte offset into the file where the indicated character begins. This is a zero-based offset to the first byte of the first UTF-8 codepoint sequence in the character, and thus gives a position that can be resolved _without_ awareness of Unicode characters.
	Byte *int32 `json:"byte,omitempty"`
	// Column is the source code column where this position points, in unicode characters, with counting starting at 1.  Column counts characters as they appear visually, so for example a latin letter with a combining diacritic mark counts as one character. This is intended for rendering visual markers against source code in contexts where these diacritics would be rendered in a single character cell. Technically speaking, Column is counting grapheme clusters as used in unicode normalization.
	Column *int32 `json:"column,omitempty"`
	// Line is the source code line where this position points. Lines are counted starting at 1 and incremented for each newline character encountered.
	Line *int32 `json:"line,omitempty"`
}

HclRangeStart Start and End represent the bounds of this range. Start is inclusive and End is exclusive.

func NewHclRangeStart added in v0.4.0

func NewHclRangeStart() *HclRangeStart

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

func NewHclRangeStartWithDefaults added in v0.4.0

func NewHclRangeStartWithDefaults() *HclRangeStart

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

func (*HclRangeStart) GetByte added in v0.4.0

func (o *HclRangeStart) GetByte() int32

GetByte returns the Byte field value if set, zero value otherwise.

func (*HclRangeStart) GetByteOk added in v0.4.0

func (o *HclRangeStart) GetByteOk() (*int32, bool)

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

func (*HclRangeStart) GetColumn added in v0.4.0

func (o *HclRangeStart) GetColumn() int32

GetColumn returns the Column field value if set, zero value otherwise.

func (*HclRangeStart) GetColumnOk added in v0.4.0

func (o *HclRangeStart) GetColumnOk() (*int32, bool)

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

func (*HclRangeStart) GetLine added in v0.4.0

func (o *HclRangeStart) GetLine() int32

GetLine returns the Line field value if set, zero value otherwise.

func (*HclRangeStart) GetLineOk added in v0.4.0

func (o *HclRangeStart) GetLineOk() (*int32, bool)

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

func (HclRangeStart) GetResourceType added in v0.4.0

func (o HclRangeStart) GetResourceType() string

func (*HclRangeStart) HasByte added in v0.4.0

func (o *HclRangeStart) HasByte() bool

HasByte returns a boolean if a field has been set.

func (*HclRangeStart) HasColumn added in v0.4.0

func (o *HclRangeStart) HasColumn() bool

HasColumn returns a boolean if a field has been set.

func (*HclRangeStart) HasLine added in v0.4.0

func (o *HclRangeStart) HasLine() bool

HasLine returns a boolean if a field has been set.

func (HclRangeStart) MarshalJSON added in v0.4.0

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

func (*HclRangeStart) SetByte added in v0.4.0

func (o *HclRangeStart) SetByte(v int32)

SetByte gets a reference to the given int32 and assigns it to the Byte field.

func (*HclRangeStart) SetColumn added in v0.4.0

func (o *HclRangeStart) SetColumn(v int32)

SetColumn gets a reference to the given int32 and assigns it to the Column field.

func (*HclRangeStart) SetLine added in v0.4.0

func (o *HclRangeStart) SetLine(v int32)

SetLine gets a reference to the given int32 and assigns it to the Line field.

func (HclRangeStart) ToMap added in v0.4.0

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

type IntegrationApiGetRequest added in v0.3.0

type IntegrationApiGetRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (IntegrationApiGetRequest) Execute added in v0.3.0

type IntegrationApiListRequest added in v0.3.0

type IntegrationApiListRequest struct {
	ApiService *IntegrationApiService
	// contains filtered or unexported fields
}

func (IntegrationApiListRequest) Execute added in v0.3.0

func (IntegrationApiListRequest) Limit added in v0.3.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (IntegrationApiListRequest) NextToken added in v0.3.0

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type IntegrationApiService added in v0.3.0

type IntegrationApiService service

IntegrationApiService IntegrationApi service

func (*IntegrationApiService) Get added in v0.3.0

Get Get integration

Get integration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param integrationName The name of the integration
@return IntegrationApiGetRequest

func (*IntegrationApiService) GetExecute added in v0.3.0

Execute executes the request

@return FpIntegration

func (*IntegrationApiService) List added in v0.3.0

List List integrations

Lists integrations

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

func (*IntegrationApiService) ListExecute added in v0.3.0

Execute executes the request

@return ListIntegrationResponse

type ListIntegrationResponse added in v0.3.0

type ListIntegrationResponse struct {
	Items     []FpIntegration `json:"items,omitempty"`
	NextToken *string         `json:"next_token,omitempty"`
}

ListIntegrationResponse struct for ListIntegrationResponse

func NewListIntegrationResponse added in v0.3.0

func NewListIntegrationResponse() *ListIntegrationResponse

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

func NewListIntegrationResponseWithDefaults added in v0.3.0

func NewListIntegrationResponseWithDefaults() *ListIntegrationResponse

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

func (*ListIntegrationResponse) GetItems added in v0.3.0

func (o *ListIntegrationResponse) GetItems() []FpIntegration

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

func (*ListIntegrationResponse) GetItemsOk added in v0.3.0

func (o *ListIntegrationResponse) GetItemsOk() ([]FpIntegration, bool)

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

func (*ListIntegrationResponse) GetNextToken added in v0.3.0

func (o *ListIntegrationResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListIntegrationResponse) GetNextTokenOk added in v0.3.0

func (o *ListIntegrationResponse) GetNextTokenOk() (*string, bool)

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

func (ListIntegrationResponse) GetResourceType added in v0.3.0

func (o ListIntegrationResponse) GetResourceType() string

func (*ListIntegrationResponse) HasItems added in v0.3.0

func (o *ListIntegrationResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListIntegrationResponse) HasNextToken added in v0.3.0

func (o *ListIntegrationResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListIntegrationResponse) MarshalJSON added in v0.3.0

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

func (*ListIntegrationResponse) SetItems added in v0.3.0

func (o *ListIntegrationResponse) SetItems(v []FpIntegration)

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

func (*ListIntegrationResponse) SetNextToken added in v0.3.0

func (o *ListIntegrationResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

func (ListIntegrationResponse) ToMap added in v0.3.0

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

type ListNotifierResponse added in v0.3.0

type ListNotifierResponse struct {
	Items     []FpNotifier `json:"items,omitempty"`
	NextToken *string      `json:"next_token,omitempty"`
}

ListNotifierResponse struct for ListNotifierResponse

func NewListNotifierResponse added in v0.3.0

func NewListNotifierResponse() *ListNotifierResponse

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

func NewListNotifierResponseWithDefaults added in v0.3.0

func NewListNotifierResponseWithDefaults() *ListNotifierResponse

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

func (*ListNotifierResponse) GetItems added in v0.3.0

func (o *ListNotifierResponse) GetItems() []FpNotifier

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

func (*ListNotifierResponse) GetItemsOk added in v0.3.0

func (o *ListNotifierResponse) GetItemsOk() ([]FpNotifier, bool)

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

func (*ListNotifierResponse) GetNextToken added in v0.3.0

func (o *ListNotifierResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListNotifierResponse) GetNextTokenOk added in v0.3.0

func (o *ListNotifierResponse) GetNextTokenOk() (*string, bool)

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

func (ListNotifierResponse) GetResourceType added in v0.3.0

func (o ListNotifierResponse) GetResourceType() string

func (*ListNotifierResponse) HasItems added in v0.3.0

func (o *ListNotifierResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListNotifierResponse) HasNextToken added in v0.3.0

func (o *ListNotifierResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListNotifierResponse) MarshalJSON added in v0.3.0

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

func (*ListNotifierResponse) SetItems added in v0.3.0

func (o *ListNotifierResponse) SetItems(v []FpNotifier)

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

func (*ListNotifierResponse) SetNextToken added in v0.3.0

func (o *ListNotifierResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

func (ListNotifierResponse) ToMap added in v0.3.0

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

type ListPipelineResponse

type ListPipelineResponse struct {
	Items     []FpPipeline `json:"items,omitempty"`
	NextToken *string      `json:"next_token,omitempty"`
}

ListPipelineResponse struct for ListPipelineResponse

func NewListPipelineResponse

func NewListPipelineResponse() *ListPipelineResponse

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

func NewListPipelineResponseWithDefaults

func NewListPipelineResponseWithDefaults() *ListPipelineResponse

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

func (*ListPipelineResponse) GetItems

func (o *ListPipelineResponse) GetItems() []FpPipeline

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

func (*ListPipelineResponse) GetItemsOk

func (o *ListPipelineResponse) GetItemsOk() ([]FpPipeline, bool)

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

func (*ListPipelineResponse) GetNextToken

func (o *ListPipelineResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListPipelineResponse) GetNextTokenOk

func (o *ListPipelineResponse) GetNextTokenOk() (*string, bool)

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

func (ListPipelineResponse) GetResourceType

func (o ListPipelineResponse) GetResourceType() string

func (*ListPipelineResponse) HasItems

func (o *ListPipelineResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListPipelineResponse) HasNextToken

func (o *ListPipelineResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListPipelineResponse) MarshalJSON

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

func (*ListPipelineResponse) SetItems

func (o *ListPipelineResponse) SetItems(v []FpPipeline)

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

func (*ListPipelineResponse) SetNextToken

func (o *ListPipelineResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

func (ListPipelineResponse) ToMap

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

type ListPipelineResponseItem

type ListPipelineResponseItem struct {
	Description   *string            `json:"description,omitempty"`
	Documentation *string            `json:"documentation,omitempty"`
	Mod           *string            `json:"mod,omitempty"`
	Name          *string            `json:"name,omitempty"`
	Tags          *map[string]string `json:"tags,omitempty"`
	Title         *string            `json:"title,omitempty"`
}

ListPipelineResponseItem struct for ListPipelineResponseItem

func NewListPipelineResponseItem

func NewListPipelineResponseItem() *ListPipelineResponseItem

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

func NewListPipelineResponseItemWithDefaults

func NewListPipelineResponseItemWithDefaults() *ListPipelineResponseItem

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

func (*ListPipelineResponseItem) GetDescription

func (o *ListPipelineResponseItem) GetDescription() string

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

func (*ListPipelineResponseItem) GetDescriptionOk

func (o *ListPipelineResponseItem) 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 (*ListPipelineResponseItem) GetDocumentation

func (o *ListPipelineResponseItem) GetDocumentation() string

GetDocumentation returns the Documentation field value if set, zero value otherwise.

func (*ListPipelineResponseItem) GetDocumentationOk

func (o *ListPipelineResponseItem) GetDocumentationOk() (*string, bool)

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

func (*ListPipelineResponseItem) GetMod

func (o *ListPipelineResponseItem) GetMod() string

GetMod returns the Mod field value if set, zero value otherwise.

func (*ListPipelineResponseItem) GetModOk

func (o *ListPipelineResponseItem) GetModOk() (*string, bool)

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

func (*ListPipelineResponseItem) GetName

func (o *ListPipelineResponseItem) GetName() string

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

func (*ListPipelineResponseItem) GetNameOk

func (o *ListPipelineResponseItem) 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 (ListPipelineResponseItem) GetResourceType

func (o ListPipelineResponseItem) GetResourceType() string

func (*ListPipelineResponseItem) GetTags

func (o *ListPipelineResponseItem) GetTags() map[string]string

GetTags returns the Tags field value if set, zero value otherwise.

func (*ListPipelineResponseItem) GetTagsOk

func (o *ListPipelineResponseItem) GetTagsOk() (*map[string]string, bool)

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

func (*ListPipelineResponseItem) GetTitle

func (o *ListPipelineResponseItem) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*ListPipelineResponseItem) GetTitleOk

func (o *ListPipelineResponseItem) GetTitleOk() (*string, bool)

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

func (*ListPipelineResponseItem) HasDescription

func (o *ListPipelineResponseItem) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ListPipelineResponseItem) HasDocumentation

func (o *ListPipelineResponseItem) HasDocumentation() bool

HasDocumentation returns a boolean if a field has been set.

func (*ListPipelineResponseItem) HasMod

func (o *ListPipelineResponseItem) HasMod() bool

HasMod returns a boolean if a field has been set.

func (*ListPipelineResponseItem) HasName

func (o *ListPipelineResponseItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*ListPipelineResponseItem) HasTags

func (o *ListPipelineResponseItem) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*ListPipelineResponseItem) HasTitle

func (o *ListPipelineResponseItem) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (ListPipelineResponseItem) MarshalJSON

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

func (*ListPipelineResponseItem) SetDescription

func (o *ListPipelineResponseItem) SetDescription(v string)

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

func (*ListPipelineResponseItem) SetDocumentation

func (o *ListPipelineResponseItem) SetDocumentation(v string)

SetDocumentation gets a reference to the given string and assigns it to the Documentation field.

func (*ListPipelineResponseItem) SetMod

func (o *ListPipelineResponseItem) SetMod(v string)

SetMod gets a reference to the given string and assigns it to the Mod field.

func (*ListPipelineResponseItem) SetName

func (o *ListPipelineResponseItem) SetName(v string)

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

func (*ListPipelineResponseItem) SetTags

func (o *ListPipelineResponseItem) SetTags(v map[string]string)

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

func (*ListPipelineResponseItem) SetTitle

func (o *ListPipelineResponseItem) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (ListPipelineResponseItem) ToMap

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

type ListProcessLogJSONResponse

type ListProcessLogJSONResponse struct {
	Items     []EventEventLogImpl `json:"items,omitempty"`
	NextToken *string             `json:"next_token,omitempty"`
}

ListProcessLogJSONResponse struct for ListProcessLogJSONResponse

func NewListProcessLogJSONResponse

func NewListProcessLogJSONResponse() *ListProcessLogJSONResponse

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

func NewListProcessLogJSONResponseWithDefaults

func NewListProcessLogJSONResponseWithDefaults() *ListProcessLogJSONResponse

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

func (*ListProcessLogJSONResponse) GetItems

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

func (*ListProcessLogJSONResponse) GetItemsOk

func (o *ListProcessLogJSONResponse) GetItemsOk() ([]EventEventLogImpl, bool)

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

func (*ListProcessLogJSONResponse) GetNextToken

func (o *ListProcessLogJSONResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListProcessLogJSONResponse) GetNextTokenOk

func (o *ListProcessLogJSONResponse) GetNextTokenOk() (*string, bool)

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

func (ListProcessLogJSONResponse) GetResourceType

func (o ListProcessLogJSONResponse) GetResourceType() string

func (*ListProcessLogJSONResponse) HasItems

func (o *ListProcessLogJSONResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListProcessLogJSONResponse) HasNextToken

func (o *ListProcessLogJSONResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListProcessLogJSONResponse) MarshalJSON

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

func (*ListProcessLogJSONResponse) SetItems

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

func (*ListProcessLogJSONResponse) SetNextToken

func (o *ListProcessLogJSONResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

func (ListProcessLogJSONResponse) ToMap

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

type ListProcessResponse

type ListProcessResponse struct {
	Items     []Process `json:"items,omitempty"`
	NextToken *string   `json:"next_token,omitempty"`
}

ListProcessResponse struct for ListProcessResponse

func NewListProcessResponse

func NewListProcessResponse() *ListProcessResponse

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

func NewListProcessResponseWithDefaults

func NewListProcessResponseWithDefaults() *ListProcessResponse

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

func (*ListProcessResponse) GetItems

func (o *ListProcessResponse) GetItems() []Process

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

func (*ListProcessResponse) GetItemsOk

func (o *ListProcessResponse) GetItemsOk() ([]Process, bool)

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

func (*ListProcessResponse) GetNextToken

func (o *ListProcessResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListProcessResponse) GetNextTokenOk

func (o *ListProcessResponse) GetNextTokenOk() (*string, bool)

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

func (ListProcessResponse) GetResourceType

func (o ListProcessResponse) GetResourceType() string

func (*ListProcessResponse) HasItems

func (o *ListProcessResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListProcessResponse) HasNextToken

func (o *ListProcessResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListProcessResponse) MarshalJSON

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

func (*ListProcessResponse) SetItems

func (o *ListProcessResponse) SetItems(v []Process)

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

func (*ListProcessResponse) SetNextToken

func (o *ListProcessResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

func (ListProcessResponse) ToMap

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

type ListTriggerResponse

type ListTriggerResponse struct {
	Items     []FpTrigger `json:"items,omitempty"`
	NextToken *string     `json:"next_token,omitempty"`
}

ListTriggerResponse struct for ListTriggerResponse

func NewListTriggerResponse

func NewListTriggerResponse() *ListTriggerResponse

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

func NewListTriggerResponseWithDefaults

func NewListTriggerResponseWithDefaults() *ListTriggerResponse

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

func (*ListTriggerResponse) GetItems

func (o *ListTriggerResponse) GetItems() []FpTrigger

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

func (*ListTriggerResponse) GetItemsOk

func (o *ListTriggerResponse) GetItemsOk() ([]FpTrigger, bool)

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

func (*ListTriggerResponse) GetNextToken

func (o *ListTriggerResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListTriggerResponse) GetNextTokenOk

func (o *ListTriggerResponse) GetNextTokenOk() (*string, bool)

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

func (ListTriggerResponse) GetResourceType

func (o ListTriggerResponse) GetResourceType() string

func (*ListTriggerResponse) HasItems

func (o *ListTriggerResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListTriggerResponse) HasNextToken

func (o *ListTriggerResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListTriggerResponse) MarshalJSON

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

func (*ListTriggerResponse) SetItems

func (o *ListTriggerResponse) SetItems(v []FpTrigger)

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

func (*ListTriggerResponse) SetNextToken

func (o *ListTriggerResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

func (ListTriggerResponse) ToMap

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

type ListVariableResponse

type ListVariableResponse struct {
	Items     []FpVariable `json:"items,omitempty"`
	NextToken *string      `json:"next_token,omitempty"`
}

ListVariableResponse struct for ListVariableResponse

func NewListVariableResponse

func NewListVariableResponse() *ListVariableResponse

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

func NewListVariableResponseWithDefaults

func NewListVariableResponseWithDefaults() *ListVariableResponse

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

func (*ListVariableResponse) GetItems

func (o *ListVariableResponse) GetItems() []FpVariable

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

func (*ListVariableResponse) GetItemsOk

func (o *ListVariableResponse) GetItemsOk() ([]FpVariable, bool)

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

func (*ListVariableResponse) GetNextToken

func (o *ListVariableResponse) GetNextToken() string

GetNextToken returns the NextToken field value if set, zero value otherwise.

func (*ListVariableResponse) GetNextTokenOk

func (o *ListVariableResponse) GetNextTokenOk() (*string, bool)

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

func (ListVariableResponse) GetResourceType

func (o ListVariableResponse) GetResourceType() string

func (*ListVariableResponse) HasItems

func (o *ListVariableResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ListVariableResponse) HasNextToken

func (o *ListVariableResponse) HasNextToken() bool

HasNextToken returns a boolean if a field has been set.

func (ListVariableResponse) MarshalJSON

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

func (*ListVariableResponse) SetItems

func (o *ListVariableResponse) SetItems(v []FpVariable)

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

func (*ListVariableResponse) SetNextToken

func (o *ListVariableResponse) SetNextToken(v string)

SetNextToken gets a reference to the given string and assigns it to the NextToken field.

func (ListVariableResponse) ToMap

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

type MappedNullable

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

type Mod

type Mod struct {
	Categories    []string   `json:"categories,omitempty"`
	Color         *string    `json:"color,omitempty"`
	Description   *string    `json:"description,omitempty"`
	Documentation *string    `json:"documentation,omitempty"`
	Name          *string    `json:"name,omitempty"`
	Opengraph     *OpenGraph `json:"opengraph,omitempty"`
	Require       *Require   `json:"require,omitempty"`
	Title         *string    `json:"title,omitempty"`
}

Mod struct for Mod

func NewMod

func NewMod() *Mod

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

func NewModWithDefaults

func NewModWithDefaults() *Mod

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

func (*Mod) GetCategories

func (o *Mod) GetCategories() []string

GetCategories returns the Categories field value if set, zero value otherwise.

func (*Mod) GetCategoriesOk

func (o *Mod) GetCategoriesOk() ([]string, bool)

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

func (*Mod) GetColor

func (o *Mod) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*Mod) GetColorOk

func (o *Mod) GetColorOk() (*string, bool)

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

func (*Mod) GetDescription

func (o *Mod) GetDescription() string

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

func (*Mod) GetDescriptionOk

func (o *Mod) 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 (*Mod) GetDocumentation

func (o *Mod) GetDocumentation() string

GetDocumentation returns the Documentation field value if set, zero value otherwise.

func (*Mod) GetDocumentationOk

func (o *Mod) GetDocumentationOk() (*string, bool)

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

func (*Mod) GetName

func (o *Mod) GetName() string

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

func (*Mod) GetNameOk

func (o *Mod) 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 (*Mod) GetOpengraph

func (o *Mod) GetOpengraph() OpenGraph

GetOpengraph returns the Opengraph field value if set, zero value otherwise.

func (*Mod) GetOpengraphOk

func (o *Mod) GetOpengraphOk() (*OpenGraph, bool)

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

func (*Mod) GetRequire

func (o *Mod) GetRequire() Require

GetRequire returns the Require field value if set, zero value otherwise.

func (*Mod) GetRequireOk

func (o *Mod) GetRequireOk() (*Require, bool)

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

func (Mod) GetResourceType

func (o Mod) GetResourceType() string

func (*Mod) GetTitle

func (o *Mod) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*Mod) GetTitleOk

func (o *Mod) GetTitleOk() (*string, bool)

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

func (*Mod) HasCategories

func (o *Mod) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*Mod) HasColor

func (o *Mod) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*Mod) HasDescription

func (o *Mod) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Mod) HasDocumentation

func (o *Mod) HasDocumentation() bool

HasDocumentation returns a boolean if a field has been set.

func (*Mod) HasName

func (o *Mod) HasName() bool

HasName returns a boolean if a field has been set.

func (*Mod) HasOpengraph

func (o *Mod) HasOpengraph() bool

HasOpengraph returns a boolean if a field has been set.

func (*Mod) HasRequire

func (o *Mod) HasRequire() bool

HasRequire returns a boolean if a field has been set.

func (*Mod) HasTitle

func (o *Mod) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (Mod) MarshalJSON

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

func (*Mod) SetCategories

func (o *Mod) SetCategories(v []string)

SetCategories gets a reference to the given []string and assigns it to the Categories field.

func (*Mod) SetColor

func (o *Mod) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*Mod) SetDescription

func (o *Mod) SetDescription(v string)

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

func (*Mod) SetDocumentation

func (o *Mod) SetDocumentation(v string)

SetDocumentation gets a reference to the given string and assigns it to the Documentation field.

func (*Mod) SetName

func (o *Mod) SetName(v string)

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

func (*Mod) SetOpengraph

func (o *Mod) SetOpengraph(v OpenGraph)

SetOpengraph gets a reference to the given OpenGraph and assigns it to the Opengraph field.

func (*Mod) SetRequire

func (o *Mod) SetRequire(v Require)

SetRequire gets a reference to the given Require and assigns it to the Require field.

func (*Mod) SetTitle

func (o *Mod) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (Mod) ToMap

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

type ModApiGetRequest

type ModApiGetRequest struct {
	ApiService *ModApiService
	// contains filtered or unexported fields
}

func (ModApiGetRequest) Execute

func (r ModApiGetRequest) Execute() (*Mod, *http.Response, error)

type ModApiService

type ModApiService service

ModApiService ModApi service

func (*ModApiService) Get

func (a *ModApiService) Get(ctx context.Context, modName string) ModApiGetRequest

Get Get mod

Get mod

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param modName The name of the mod
@return ModApiGetRequest

func (*ModApiService) GetExecute

func (a *ModApiService) GetExecute(r ModApiGetRequest) (*Mod, *http.Response, error)

Execute executes the request

@return Mod

type ModVersionConstraint

type ModVersionConstraint struct {
	// the fully qualified mod name, e.g. github.com/turbot/mod1
	Name    *string `json:"name,omitempty"`
	Version *string `json:"version,omitempty"`
}

ModVersionConstraint struct for ModVersionConstraint

func NewModVersionConstraint

func NewModVersionConstraint() *ModVersionConstraint

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

func NewModVersionConstraintWithDefaults

func NewModVersionConstraintWithDefaults() *ModVersionConstraint

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

func (*ModVersionConstraint) GetName

func (o *ModVersionConstraint) GetName() string

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

func (*ModVersionConstraint) GetNameOk

func (o *ModVersionConstraint) 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 (ModVersionConstraint) GetResourceType

func (o ModVersionConstraint) GetResourceType() string

func (*ModVersionConstraint) GetVersion

func (o *ModVersionConstraint) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*ModVersionConstraint) GetVersionOk

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

func (o *ModVersionConstraint) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModVersionConstraint) HasVersion

func (o *ModVersionConstraint) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ModVersionConstraint) MarshalJSON

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

func (*ModVersionConstraint) SetName

func (o *ModVersionConstraint) SetName(v string)

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

func (*ModVersionConstraint) SetVersion

func (o *ModVersionConstraint) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (ModVersionConstraint) ToMap

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

type ModconfigNextStepAction

type ModconfigNextStepAction string

ModconfigNextStepAction the model 'ModconfigNextStepAction'

const (
	NextStepActionStart        ModconfigNextStepAction = "start"
	NextStepActionInaccessible ModconfigNextStepAction = "inaccessible"
	NextStepActionSkip         ModconfigNextStepAction = "skip"
)

List of modconfig.NextStepAction

func NewModconfigNextStepActionFromValue

func NewModconfigNextStepActionFromValue(v string) (*ModconfigNextStepAction, error)

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

func (ModconfigNextStepAction) IsValid

func (v ModconfigNextStepAction) IsValid() bool

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

func (ModconfigNextStepAction) Ptr

Ptr returns reference to modconfig.NextStepAction value

func (*ModconfigNextStepAction) UnmarshalJSON

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

type ModconfigOutput

type ModconfigOutput struct {
	Data        map[string]interface{} `json:"data,omitempty"`
	Errors      []ModconfigStepError   `json:"errors,omitempty"`
	FailureMode *string                `json:"failure_mode,omitempty"`
	// Flowpipe metadata, contains started_at, finished_at
	Flowpipe map[string]interface{} `json:"flowpipe,omitempty"`
	Status   *string                `json:"status,omitempty"`
}

ModconfigOutput struct for ModconfigOutput

func NewModconfigOutput

func NewModconfigOutput() *ModconfigOutput

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

func NewModconfigOutputWithDefaults

func NewModconfigOutputWithDefaults() *ModconfigOutput

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

func (*ModconfigOutput) GetData

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

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

func (*ModconfigOutput) GetDataOk

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

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

func (*ModconfigOutput) GetErrors

func (o *ModconfigOutput) GetErrors() []ModconfigStepError

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ModconfigOutput) GetErrorsOk

func (o *ModconfigOutput) GetErrorsOk() ([]ModconfigStepError, bool)

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

func (*ModconfigOutput) GetFailureMode

func (o *ModconfigOutput) GetFailureMode() string

GetFailureMode returns the FailureMode field value if set, zero value otherwise.

func (*ModconfigOutput) GetFailureModeOk

func (o *ModconfigOutput) GetFailureModeOk() (*string, bool)

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

func (*ModconfigOutput) GetFlowpipe added in v0.4.0

func (o *ModconfigOutput) GetFlowpipe() map[string]interface{}

GetFlowpipe returns the Flowpipe field value if set, zero value otherwise.

func (*ModconfigOutput) GetFlowpipeOk added in v0.4.0

func (o *ModconfigOutput) GetFlowpipeOk() (map[string]interface{}, bool)

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

func (ModconfigOutput) GetResourceType

func (o ModconfigOutput) GetResourceType() string

func (*ModconfigOutput) GetStatus

func (o *ModconfigOutput) GetStatus() string

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

func (*ModconfigOutput) GetStatusOk

func (o *ModconfigOutput) GetStatusOk() (*string, bool)

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

func (*ModconfigOutput) HasData

func (o *ModconfigOutput) HasData() bool

HasData returns a boolean if a field has been set.

func (*ModconfigOutput) HasErrors

func (o *ModconfigOutput) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*ModconfigOutput) HasFailureMode

func (o *ModconfigOutput) HasFailureMode() bool

HasFailureMode returns a boolean if a field has been set.

func (*ModconfigOutput) HasFlowpipe added in v0.4.0

func (o *ModconfigOutput) HasFlowpipe() bool

HasFlowpipe returns a boolean if a field has been set.

func (*ModconfigOutput) HasStatus

func (o *ModconfigOutput) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ModconfigOutput) MarshalJSON

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

func (*ModconfigOutput) SetData

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

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

func (*ModconfigOutput) SetErrors

func (o *ModconfigOutput) SetErrors(v []ModconfigStepError)

SetErrors gets a reference to the given []ModconfigStepError and assigns it to the Errors field.

func (*ModconfigOutput) SetFailureMode

func (o *ModconfigOutput) SetFailureMode(v string)

SetFailureMode gets a reference to the given string and assigns it to the FailureMode field.

func (*ModconfigOutput) SetFlowpipe added in v0.4.0

func (o *ModconfigOutput) SetFlowpipe(v map[string]interface{})

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

func (*ModconfigOutput) SetStatus

func (o *ModconfigOutput) SetStatus(v string)

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

func (ModconfigOutput) ToMap

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

type ModconfigPipeline

type ModconfigPipeline struct {
	Name    *string                   `json:"name,omitempty"`
	Outputs []ModconfigPipelineOutput `json:"outputs,omitempty"`
	// TODO: hack to serialise pipeline name because HclResourceImpl is not serialised
	PipelineName *string                  `json:"pipeline_name,omitempty"`
	Steps        []map[string]interface{} `json:"steps,omitempty"`
}

ModconfigPipeline struct for ModconfigPipeline

func NewModconfigPipeline

func NewModconfigPipeline() *ModconfigPipeline

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

func NewModconfigPipelineWithDefaults

func NewModconfigPipelineWithDefaults() *ModconfigPipeline

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

func (*ModconfigPipeline) GetName

func (o *ModconfigPipeline) GetName() string

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

func (*ModconfigPipeline) GetNameOk

func (o *ModconfigPipeline) 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 (*ModconfigPipeline) GetOutputs

func (o *ModconfigPipeline) GetOutputs() []ModconfigPipelineOutput

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*ModconfigPipeline) GetOutputsOk

func (o *ModconfigPipeline) GetOutputsOk() ([]ModconfigPipelineOutput, bool)

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

func (*ModconfigPipeline) GetPipelineName

func (o *ModconfigPipeline) GetPipelineName() string

GetPipelineName returns the PipelineName field value if set, zero value otherwise.

func (*ModconfigPipeline) GetPipelineNameOk

func (o *ModconfigPipeline) GetPipelineNameOk() (*string, bool)

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

func (ModconfigPipeline) GetResourceType

func (o ModconfigPipeline) GetResourceType() string

func (*ModconfigPipeline) GetSteps

func (o *ModconfigPipeline) GetSteps() []map[string]interface{}

GetSteps returns the Steps field value if set, zero value otherwise.

func (*ModconfigPipeline) GetStepsOk

func (o *ModconfigPipeline) GetStepsOk() ([]map[string]interface{}, bool)

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

func (*ModconfigPipeline) HasName

func (o *ModconfigPipeline) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModconfigPipeline) HasOutputs

func (o *ModconfigPipeline) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*ModconfigPipeline) HasPipelineName

func (o *ModconfigPipeline) HasPipelineName() bool

HasPipelineName returns a boolean if a field has been set.

func (*ModconfigPipeline) HasSteps

func (o *ModconfigPipeline) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (ModconfigPipeline) MarshalJSON

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

func (*ModconfigPipeline) SetName

func (o *ModconfigPipeline) SetName(v string)

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

func (*ModconfigPipeline) SetOutputs

func (o *ModconfigPipeline) SetOutputs(v []ModconfigPipelineOutput)

SetOutputs gets a reference to the given []ModconfigPipelineOutput and assigns it to the Outputs field.

func (*ModconfigPipeline) SetPipelineName

func (o *ModconfigPipeline) SetPipelineName(v string)

SetPipelineName gets a reference to the given string and assigns it to the PipelineName field.

func (*ModconfigPipeline) SetSteps

func (o *ModconfigPipeline) SetSteps(v []map[string]interface{})

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

func (ModconfigPipeline) ToMap

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

type ModconfigPipelineOutput

type ModconfigPipelineOutput struct {
	Range               *HclRange              `json:"Range,omitempty"`
	ConnectionDependsOn []string               `json:"connection_depends_on,omitempty"`
	CredentialDependsOn []string               `json:"credential_depends_on,omitempty"`
	DependsOn           []string               `json:"depends_on,omitempty"`
	Description         *string                `json:"description,omitempty"`
	Name                *string                `json:"name,omitempty"`
	Resolved            *bool                  `json:"resolved,omitempty"`
	Value               map[string]interface{} `json:"value,omitempty"`
}

ModconfigPipelineOutput struct for ModconfigPipelineOutput

func NewModconfigPipelineOutput

func NewModconfigPipelineOutput() *ModconfigPipelineOutput

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

func NewModconfigPipelineOutputWithDefaults

func NewModconfigPipelineOutputWithDefaults() *ModconfigPipelineOutput

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

func (*ModconfigPipelineOutput) GetConnectionDependsOn added in v1.0.0

func (o *ModconfigPipelineOutput) GetConnectionDependsOn() []string

GetConnectionDependsOn returns the ConnectionDependsOn field value if set, zero value otherwise.

func (*ModconfigPipelineOutput) GetConnectionDependsOnOk added in v1.0.0

func (o *ModconfigPipelineOutput) GetConnectionDependsOnOk() ([]string, bool)

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

func (*ModconfigPipelineOutput) GetCredentialDependsOn added in v0.3.0

func (o *ModconfigPipelineOutput) GetCredentialDependsOn() []string

GetCredentialDependsOn returns the CredentialDependsOn field value if set, zero value otherwise.

func (*ModconfigPipelineOutput) GetCredentialDependsOnOk added in v0.3.0

func (o *ModconfigPipelineOutput) GetCredentialDependsOnOk() ([]string, bool)

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

func (*ModconfigPipelineOutput) GetDependsOn

func (o *ModconfigPipelineOutput) GetDependsOn() []string

GetDependsOn returns the DependsOn field value if set, zero value otherwise.

func (*ModconfigPipelineOutput) GetDependsOnOk

func (o *ModconfigPipelineOutput) GetDependsOnOk() ([]string, bool)

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

func (*ModconfigPipelineOutput) GetDescription

func (o *ModconfigPipelineOutput) GetDescription() string

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

func (*ModconfigPipelineOutput) GetDescriptionOk

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

func (o *ModconfigPipelineOutput) GetName() string

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

func (*ModconfigPipelineOutput) GetNameOk

func (o *ModconfigPipelineOutput) 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 (*ModconfigPipelineOutput) GetRange added in v0.4.0

func (o *ModconfigPipelineOutput) GetRange() HclRange

GetRange returns the Range field value if set, zero value otherwise.

func (*ModconfigPipelineOutput) GetRangeOk added in v0.4.0

func (o *ModconfigPipelineOutput) GetRangeOk() (*HclRange, bool)

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

func (*ModconfigPipelineOutput) GetResolved

func (o *ModconfigPipelineOutput) GetResolved() bool

GetResolved returns the Resolved field value if set, zero value otherwise.

func (*ModconfigPipelineOutput) GetResolvedOk

func (o *ModconfigPipelineOutput) GetResolvedOk() (*bool, bool)

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

func (ModconfigPipelineOutput) GetResourceType

func (o ModconfigPipelineOutput) GetResourceType() string

func (*ModconfigPipelineOutput) GetValue

func (o *ModconfigPipelineOutput) GetValue() map[string]interface{}

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

func (*ModconfigPipelineOutput) GetValueOk

func (o *ModconfigPipelineOutput) GetValueOk() (map[string]interface{}, 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 (*ModconfigPipelineOutput) HasConnectionDependsOn added in v1.0.0

func (o *ModconfigPipelineOutput) HasConnectionDependsOn() bool

HasConnectionDependsOn returns a boolean if a field has been set.

func (*ModconfigPipelineOutput) HasCredentialDependsOn added in v0.3.0

func (o *ModconfigPipelineOutput) HasCredentialDependsOn() bool

HasCredentialDependsOn returns a boolean if a field has been set.

func (*ModconfigPipelineOutput) HasDependsOn

func (o *ModconfigPipelineOutput) HasDependsOn() bool

HasDependsOn returns a boolean if a field has been set.

func (*ModconfigPipelineOutput) HasDescription

func (o *ModconfigPipelineOutput) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModconfigPipelineOutput) HasName

func (o *ModconfigPipelineOutput) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModconfigPipelineOutput) HasRange added in v0.4.0

func (o *ModconfigPipelineOutput) HasRange() bool

HasRange returns a boolean if a field has been set.

func (*ModconfigPipelineOutput) HasResolved

func (o *ModconfigPipelineOutput) HasResolved() bool

HasResolved returns a boolean if a field has been set.

func (*ModconfigPipelineOutput) HasValue

func (o *ModconfigPipelineOutput) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ModconfigPipelineOutput) MarshalJSON

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

func (*ModconfigPipelineOutput) SetConnectionDependsOn added in v1.0.0

func (o *ModconfigPipelineOutput) SetConnectionDependsOn(v []string)

SetConnectionDependsOn gets a reference to the given []string and assigns it to the ConnectionDependsOn field.

func (*ModconfigPipelineOutput) SetCredentialDependsOn added in v0.3.0

func (o *ModconfigPipelineOutput) SetCredentialDependsOn(v []string)

SetCredentialDependsOn gets a reference to the given []string and assigns it to the CredentialDependsOn field.

func (*ModconfigPipelineOutput) SetDependsOn

func (o *ModconfigPipelineOutput) SetDependsOn(v []string)

SetDependsOn gets a reference to the given []string and assigns it to the DependsOn field.

func (*ModconfigPipelineOutput) SetDescription

func (o *ModconfigPipelineOutput) SetDescription(v string)

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

func (*ModconfigPipelineOutput) SetName

func (o *ModconfigPipelineOutput) SetName(v string)

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

func (*ModconfigPipelineOutput) SetRange added in v0.4.0

func (o *ModconfigPipelineOutput) SetRange(v HclRange)

SetRange gets a reference to the given HclRange and assigns it to the Range field.

func (*ModconfigPipelineOutput) SetResolved

func (o *ModconfigPipelineOutput) SetResolved(v bool)

SetResolved gets a reference to the given bool and assigns it to the Resolved field.

func (*ModconfigPipelineOutput) SetValue

func (o *ModconfigPipelineOutput) SetValue(v map[string]interface{})

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

func (ModconfigPipelineOutput) ToMap

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

type ModconfigPipelineParam

type ModconfigPipelineParam struct {
	Description *string `json:"description,omitempty"`
	Name        *string `json:"name,omitempty"`
	Optional    *bool   `json:"optional,omitempty"`
}

ModconfigPipelineParam struct for ModconfigPipelineParam

func NewModconfigPipelineParam

func NewModconfigPipelineParam() *ModconfigPipelineParam

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

func NewModconfigPipelineParamWithDefaults

func NewModconfigPipelineParamWithDefaults() *ModconfigPipelineParam

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

func (*ModconfigPipelineParam) GetDescription

func (o *ModconfigPipelineParam) GetDescription() string

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

func (*ModconfigPipelineParam) GetDescriptionOk

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

func (o *ModconfigPipelineParam) GetName() string

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

func (*ModconfigPipelineParam) GetNameOk

func (o *ModconfigPipelineParam) 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 (*ModconfigPipelineParam) GetOptional

func (o *ModconfigPipelineParam) GetOptional() bool

GetOptional returns the Optional field value if set, zero value otherwise.

func (*ModconfigPipelineParam) GetOptionalOk

func (o *ModconfigPipelineParam) GetOptionalOk() (*bool, bool)

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

func (ModconfigPipelineParam) GetResourceType

func (o ModconfigPipelineParam) GetResourceType() string

func (*ModconfigPipelineParam) HasDescription

func (o *ModconfigPipelineParam) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModconfigPipelineParam) HasName

func (o *ModconfigPipelineParam) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModconfigPipelineParam) HasOptional

func (o *ModconfigPipelineParam) HasOptional() bool

HasOptional returns a boolean if a field has been set.

func (ModconfigPipelineParam) MarshalJSON

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

func (*ModconfigPipelineParam) SetDescription

func (o *ModconfigPipelineParam) SetDescription(v string)

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

func (*ModconfigPipelineParam) SetName

func (o *ModconfigPipelineParam) SetName(v string)

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

func (*ModconfigPipelineParam) SetOptional

func (o *ModconfigPipelineParam) SetOptional(v bool)

SetOptional gets a reference to the given bool and assigns it to the Optional field.

func (ModconfigPipelineParam) ToMap

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

type ModconfigStepError

type ModconfigStepError struct {
	Error               *PerrErrorModel `json:"error,omitempty"`
	Pipeline            *string         `json:"pipeline,omitempty"`
	PipelineExecutionId *string         `json:"pipeline_execution_id,omitempty"`
	Step                *string         `json:"step,omitempty"`
	StepExecutionId     *string         `json:"step_execution_id,omitempty"`
}

ModconfigStepError struct for ModconfigStepError

func NewModconfigStepError

func NewModconfigStepError() *ModconfigStepError

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

func NewModconfigStepErrorWithDefaults

func NewModconfigStepErrorWithDefaults() *ModconfigStepError

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

func (*ModconfigStepError) GetError

func (o *ModconfigStepError) GetError() PerrErrorModel

GetError returns the Error field value if set, zero value otherwise.

func (*ModconfigStepError) GetErrorOk

func (o *ModconfigStepError) GetErrorOk() (*PerrErrorModel, bool)

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

func (*ModconfigStepError) GetPipeline

func (o *ModconfigStepError) GetPipeline() string

GetPipeline returns the Pipeline field value if set, zero value otherwise.

func (*ModconfigStepError) GetPipelineExecutionId

func (o *ModconfigStepError) GetPipelineExecutionId() string

GetPipelineExecutionId returns the PipelineExecutionId field value if set, zero value otherwise.

func (*ModconfigStepError) GetPipelineExecutionIdOk

func (o *ModconfigStepError) GetPipelineExecutionIdOk() (*string, bool)

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

func (*ModconfigStepError) GetPipelineOk

func (o *ModconfigStepError) GetPipelineOk() (*string, bool)

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

func (ModconfigStepError) GetResourceType

func (o ModconfigStepError) GetResourceType() string

func (*ModconfigStepError) GetStep

func (o *ModconfigStepError) GetStep() string

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

func (*ModconfigStepError) GetStepExecutionId

func (o *ModconfigStepError) GetStepExecutionId() string

GetStepExecutionId returns the StepExecutionId field value if set, zero value otherwise.

func (*ModconfigStepError) GetStepExecutionIdOk

func (o *ModconfigStepError) GetStepExecutionIdOk() (*string, bool)

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

func (*ModconfigStepError) GetStepOk

func (o *ModconfigStepError) GetStepOk() (*string, bool)

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

func (*ModconfigStepError) HasError

func (o *ModconfigStepError) HasError() bool

HasError returns a boolean if a field has been set.

func (*ModconfigStepError) HasPipeline

func (o *ModconfigStepError) HasPipeline() bool

HasPipeline returns a boolean if a field has been set.

func (*ModconfigStepError) HasPipelineExecutionId

func (o *ModconfigStepError) HasPipelineExecutionId() bool

HasPipelineExecutionId returns a boolean if a field has been set.

func (*ModconfigStepError) HasStep

func (o *ModconfigStepError) HasStep() bool

HasStep returns a boolean if a field has been set.

func (*ModconfigStepError) HasStepExecutionId

func (o *ModconfigStepError) HasStepExecutionId() bool

HasStepExecutionId returns a boolean if a field has been set.

func (ModconfigStepError) MarshalJSON

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

func (*ModconfigStepError) SetError

func (o *ModconfigStepError) SetError(v PerrErrorModel)

SetError gets a reference to the given PerrErrorModel and assigns it to the Error field.

func (*ModconfigStepError) SetPipeline

func (o *ModconfigStepError) SetPipeline(v string)

SetPipeline gets a reference to the given string and assigns it to the Pipeline field.

func (*ModconfigStepError) SetPipelineExecutionId

func (o *ModconfigStepError) SetPipelineExecutionId(v string)

SetPipelineExecutionId gets a reference to the given string and assigns it to the PipelineExecutionId field.

func (*ModconfigStepError) SetStep

func (o *ModconfigStepError) SetStep(v string)

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

func (*ModconfigStepError) SetStepExecutionId

func (o *ModconfigStepError) SetStepExecutionId(v string)

SetStepExecutionId gets a reference to the given string and assigns it to the StepExecutionId field.

func (ModconfigStepError) ToMap

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

type ModconfigStepForEach

type ModconfigStepForEach struct {
	ForEachStep *bool            `json:"for_each_step,omitempty"`
	Key         string           `json:"key"`
	Output      *ModconfigOutput `json:"output,omitempty"`
	TotalCount  int32            `json:"total_count"`
}

ModconfigStepForEach struct for ModconfigStepForEach

func NewModconfigStepForEach

func NewModconfigStepForEach(key string, totalCount int32) *ModconfigStepForEach

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

func NewModconfigStepForEachWithDefaults

func NewModconfigStepForEachWithDefaults() *ModconfigStepForEach

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

func (*ModconfigStepForEach) GetForEachStep

func (o *ModconfigStepForEach) GetForEachStep() bool

GetForEachStep returns the ForEachStep field value if set, zero value otherwise.

func (*ModconfigStepForEach) GetForEachStepOk

func (o *ModconfigStepForEach) GetForEachStepOk() (*bool, bool)

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

func (*ModconfigStepForEach) GetKey

func (o *ModconfigStepForEach) GetKey() string

GetKey returns the Key field value

func (*ModconfigStepForEach) GetKeyOk

func (o *ModconfigStepForEach) GetKeyOk() (*string, bool)

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

func (*ModconfigStepForEach) GetOutput

func (o *ModconfigStepForEach) GetOutput() ModconfigOutput

GetOutput returns the Output field value if set, zero value otherwise.

func (*ModconfigStepForEach) GetOutputOk

func (o *ModconfigStepForEach) GetOutputOk() (*ModconfigOutput, bool)

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

func (ModconfigStepForEach) GetResourceType

func (o ModconfigStepForEach) GetResourceType() string

func (*ModconfigStepForEach) GetTotalCount

func (o *ModconfigStepForEach) GetTotalCount() int32

GetTotalCount returns the TotalCount field value

func (*ModconfigStepForEach) GetTotalCountOk

func (o *ModconfigStepForEach) GetTotalCountOk() (*int32, bool)

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

func (*ModconfigStepForEach) HasForEachStep

func (o *ModconfigStepForEach) HasForEachStep() bool

HasForEachStep returns a boolean if a field has been set.

func (*ModconfigStepForEach) HasOutput

func (o *ModconfigStepForEach) HasOutput() bool

HasOutput returns a boolean if a field has been set.

func (ModconfigStepForEach) MarshalJSON

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

func (*ModconfigStepForEach) SetForEachStep

func (o *ModconfigStepForEach) SetForEachStep(v bool)

SetForEachStep gets a reference to the given bool and assigns it to the ForEachStep field.

func (*ModconfigStepForEach) SetKey

func (o *ModconfigStepForEach) SetKey(v string)

SetKey sets field value

func (*ModconfigStepForEach) SetOutput

func (o *ModconfigStepForEach) SetOutput(v ModconfigOutput)

SetOutput gets a reference to the given ModconfigOutput and assigns it to the Output field.

func (*ModconfigStepForEach) SetTotalCount

func (o *ModconfigStepForEach) SetTotalCount(v int32)

SetTotalCount sets field value

func (ModconfigStepForEach) ToMap

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

type ModconfigStepLoop

type ModconfigStepLoop struct {
	Index         int32                  `json:"index"`
	Input         map[string]interface{} `json:"input,omitempty"`
	LoopCompleted *bool                  `json:"loop_completed,omitempty"`
}

ModconfigStepLoop struct for ModconfigStepLoop

func NewModconfigStepLoop

func NewModconfigStepLoop(index int32) *ModconfigStepLoop

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

func NewModconfigStepLoopWithDefaults

func NewModconfigStepLoopWithDefaults() *ModconfigStepLoop

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

func (*ModconfigStepLoop) GetIndex

func (o *ModconfigStepLoop) GetIndex() int32

GetIndex returns the Index field value

func (*ModconfigStepLoop) GetIndexOk

func (o *ModconfigStepLoop) GetIndexOk() (*int32, bool)

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

func (*ModconfigStepLoop) GetInput

func (o *ModconfigStepLoop) GetInput() map[string]interface{}

GetInput returns the Input field value if set, zero value otherwise.

func (*ModconfigStepLoop) GetInputOk

func (o *ModconfigStepLoop) GetInputOk() (map[string]interface{}, bool)

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

func (*ModconfigStepLoop) GetLoopCompleted

func (o *ModconfigStepLoop) GetLoopCompleted() bool

GetLoopCompleted returns the LoopCompleted field value if set, zero value otherwise.

func (*ModconfigStepLoop) GetLoopCompletedOk

func (o *ModconfigStepLoop) GetLoopCompletedOk() (*bool, bool)

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

func (ModconfigStepLoop) GetResourceType

func (o ModconfigStepLoop) GetResourceType() string

func (*ModconfigStepLoop) HasInput

func (o *ModconfigStepLoop) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*ModconfigStepLoop) HasLoopCompleted

func (o *ModconfigStepLoop) HasLoopCompleted() bool

HasLoopCompleted returns a boolean if a field has been set.

func (ModconfigStepLoop) MarshalJSON

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

func (*ModconfigStepLoop) SetIndex

func (o *ModconfigStepLoop) SetIndex(v int32)

SetIndex sets field value

func (*ModconfigStepLoop) SetInput

func (o *ModconfigStepLoop) SetInput(v map[string]interface{})

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

func (*ModconfigStepLoop) SetLoopCompleted

func (o *ModconfigStepLoop) SetLoopCompleted(v bool)

SetLoopCompleted gets a reference to the given bool and assigns it to the LoopCompleted field.

func (ModconfigStepLoop) ToMap

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

type ModconfigStepRetry

type ModconfigStepRetry struct {
	Count          int32                  `json:"count"`
	Input          map[string]interface{} `json:"input,omitempty"`
	RetryCompleted *bool                  `json:"retry_completed,omitempty"`
}

ModconfigStepRetry struct for ModconfigStepRetry

func NewModconfigStepRetry

func NewModconfigStepRetry(count int32) *ModconfigStepRetry

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

func NewModconfigStepRetryWithDefaults

func NewModconfigStepRetryWithDefaults() *ModconfigStepRetry

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

func (*ModconfigStepRetry) GetCount

func (o *ModconfigStepRetry) GetCount() int32

GetCount returns the Count field value

func (*ModconfigStepRetry) GetCountOk

func (o *ModconfigStepRetry) GetCountOk() (*int32, bool)

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

func (*ModconfigStepRetry) GetInput

func (o *ModconfigStepRetry) GetInput() map[string]interface{}

GetInput returns the Input field value if set, zero value otherwise.

func (*ModconfigStepRetry) GetInputOk

func (o *ModconfigStepRetry) GetInputOk() (map[string]interface{}, bool)

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

func (ModconfigStepRetry) GetResourceType

func (o ModconfigStepRetry) GetResourceType() string

func (*ModconfigStepRetry) GetRetryCompleted

func (o *ModconfigStepRetry) GetRetryCompleted() bool

GetRetryCompleted returns the RetryCompleted field value if set, zero value otherwise.

func (*ModconfigStepRetry) GetRetryCompletedOk

func (o *ModconfigStepRetry) GetRetryCompletedOk() (*bool, bool)

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

func (*ModconfigStepRetry) HasInput

func (o *ModconfigStepRetry) HasInput() bool

HasInput returns a boolean if a field has been set.

func (*ModconfigStepRetry) HasRetryCompleted

func (o *ModconfigStepRetry) HasRetryCompleted() bool

HasRetryCompleted returns a boolean if a field has been set.

func (ModconfigStepRetry) MarshalJSON

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

func (*ModconfigStepRetry) SetCount

func (o *ModconfigStepRetry) SetCount(v int32)

SetCount sets field value

func (*ModconfigStepRetry) SetInput

func (o *ModconfigStepRetry) SetInput(v map[string]interface{})

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

func (*ModconfigStepRetry) SetRetryCompleted

func (o *ModconfigStepRetry) SetRetryCompleted(v bool)

SetRetryCompleted gets a reference to the given bool and assigns it to the RetryCompleted field.

func (ModconfigStepRetry) ToMap

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

type NextStepAction

type NextStepAction string

NextStepAction the model 'NextStepAction'

func NewNextStepActionFromValue

func NewNextStepActionFromValue(v string) (*NextStepAction, error)

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

func (NextStepAction) IsValid

func (v NextStepAction) IsValid() bool

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

func (NextStepAction) Ptr

func (v NextStepAction) Ptr() *NextStepAction

Ptr returns reference to NextStepAction value

func (*NextStepAction) UnmarshalJSON

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

type NotifierApiGetRequest added in v0.3.0

type NotifierApiGetRequest struct {
	ApiService *NotifierApiService
	// contains filtered or unexported fields
}

func (NotifierApiGetRequest) Execute added in v0.3.0

type NotifierApiListRequest added in v0.3.0

type NotifierApiListRequest struct {
	ApiService *NotifierApiService
	// contains filtered or unexported fields
}

func (NotifierApiListRequest) Execute added in v0.3.0

func (NotifierApiListRequest) Limit added in v0.3.0

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (NotifierApiListRequest) NextToken added in v0.3.0

func (r NotifierApiListRequest) NextToken(nextToken string) NotifierApiListRequest

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type NotifierApiService added in v0.3.0

type NotifierApiService service

NotifierApiService NotifierApi service

func (*NotifierApiService) Get added in v0.3.0

Get Get notifier

Get notifier

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

func (*NotifierApiService) GetExecute added in v0.3.0

Execute executes the request

@return FpNotifier

func (*NotifierApiService) List added in v0.3.0

List List notifiers

Lists notifiers

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

func (*NotifierApiService) ListExecute added in v0.3.0

Execute executes the request

@return ListNotifierResponse

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 NullableCmdPipeline

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

func NewNullableCmdPipeline

func NewNullableCmdPipeline(val *CmdPipeline) *NullableCmdPipeline

func (NullableCmdPipeline) Get

func (NullableCmdPipeline) IsSet

func (v NullableCmdPipeline) IsSet() bool

func (NullableCmdPipeline) MarshalJSON

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

func (*NullableCmdPipeline) Set

func (v *NullableCmdPipeline) Set(val *CmdPipeline)

func (*NullableCmdPipeline) UnmarshalJSON

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

func (*NullableCmdPipeline) Unset

func (v *NullableCmdPipeline) Unset()

type NullableCmdTrigger added in v0.5.0

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

func NewNullableCmdTrigger added in v0.5.0

func NewNullableCmdTrigger(val *CmdTrigger) *NullableCmdTrigger

func (NullableCmdTrigger) Get added in v0.5.0

func (v NullableCmdTrigger) Get() *CmdTrigger

func (NullableCmdTrigger) IsSet added in v0.5.0

func (v NullableCmdTrigger) IsSet() bool

func (NullableCmdTrigger) MarshalJSON added in v0.5.0

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

func (*NullableCmdTrigger) Set added in v0.5.0

func (v *NullableCmdTrigger) Set(val *CmdTrigger)

func (*NullableCmdTrigger) UnmarshalJSON added in v0.5.0

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

func (*NullableCmdTrigger) Unset added in v0.5.0

func (v *NullableCmdTrigger) Unset()

type NullableErrorDetailModel

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

func NewNullableErrorDetailModel

func NewNullableErrorDetailModel(val *ErrorDetailModel) *NullableErrorDetailModel

func (NullableErrorDetailModel) Get

func (NullableErrorDetailModel) IsSet

func (v NullableErrorDetailModel) IsSet() bool

func (NullableErrorDetailModel) MarshalJSON

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

func (*NullableErrorDetailModel) Set

func (*NullableErrorDetailModel) UnmarshalJSON

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

func (*NullableErrorDetailModel) Unset

func (v *NullableErrorDetailModel) Unset()

type NullableErrorModel

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

func NewNullableErrorModel

func NewNullableErrorModel(val *ErrorModel) *NullableErrorModel

func (NullableErrorModel) Get

func (v NullableErrorModel) Get() *ErrorModel

func (NullableErrorModel) IsSet

func (v NullableErrorModel) IsSet() bool

func (NullableErrorModel) MarshalJSON

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

func (*NullableErrorModel) Set

func (v *NullableErrorModel) Set(val *ErrorModel)

func (*NullableErrorModel) UnmarshalJSON

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

func (*NullableErrorModel) Unset

func (v *NullableErrorModel) Unset()

type NullableEventEventLogImpl added in v0.5.0

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

func NewNullableEventEventLogImpl added in v0.5.0

func NewNullableEventEventLogImpl(val *EventEventLogImpl) *NullableEventEventLogImpl

func (NullableEventEventLogImpl) Get added in v0.5.0

func (NullableEventEventLogImpl) IsSet added in v0.5.0

func (v NullableEventEventLogImpl) IsSet() bool

func (NullableEventEventLogImpl) MarshalJSON added in v0.5.0

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

func (*NullableEventEventLogImpl) Set added in v0.5.0

func (*NullableEventEventLogImpl) UnmarshalJSON added in v0.5.0

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

func (*NullableEventEventLogImpl) Unset added in v0.5.0

func (v *NullableEventEventLogImpl) Unset()

type NullableExecutionExecution

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

func NewNullableExecutionExecution

func NewNullableExecutionExecution(val *ExecutionExecution) *NullableExecutionExecution

func (NullableExecutionExecution) Get

func (NullableExecutionExecution) IsSet

func (v NullableExecutionExecution) IsSet() bool

func (NullableExecutionExecution) MarshalJSON

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

func (*NullableExecutionExecution) Set

func (*NullableExecutionExecution) UnmarshalJSON

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

func (*NullableExecutionExecution) Unset

func (v *NullableExecutionExecution) Unset()

type NullableExecutionPipelineExecution

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

func (NullableExecutionPipelineExecution) Get

func (NullableExecutionPipelineExecution) IsSet

func (NullableExecutionPipelineExecution) MarshalJSON

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

func (*NullableExecutionPipelineExecution) Set

func (*NullableExecutionPipelineExecution) UnmarshalJSON

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

func (*NullableExecutionPipelineExecution) Unset

type NullableExecutionSnapshot

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

func NewNullableExecutionSnapshot

func NewNullableExecutionSnapshot(val *ExecutionSnapshot) *NullableExecutionSnapshot

func (NullableExecutionSnapshot) Get

func (NullableExecutionSnapshot) IsSet

func (v NullableExecutionSnapshot) IsSet() bool

func (NullableExecutionSnapshot) MarshalJSON

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

func (*NullableExecutionSnapshot) Set

func (*NullableExecutionSnapshot) UnmarshalJSON

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

func (*NullableExecutionSnapshot) Unset

func (v *NullableExecutionSnapshot) Unset()

type NullableExecutionSnapshotLayout

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

func (NullableExecutionSnapshotLayout) Get

func (NullableExecutionSnapshotLayout) IsSet

func (NullableExecutionSnapshotLayout) MarshalJSON

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

func (*NullableExecutionSnapshotLayout) Set

func (*NullableExecutionSnapshotLayout) UnmarshalJSON

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

func (*NullableExecutionSnapshotLayout) Unset

type NullableExecutionSnapshotPanel

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

func (NullableExecutionSnapshotPanel) Get

func (NullableExecutionSnapshotPanel) IsSet

func (NullableExecutionSnapshotPanel) MarshalJSON

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

func (*NullableExecutionSnapshotPanel) Set

func (*NullableExecutionSnapshotPanel) UnmarshalJSON

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

func (*NullableExecutionSnapshotPanel) Unset

func (v *NullableExecutionSnapshotPanel) Unset()

type NullableExecutionSnapshotPanelData

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

func (NullableExecutionSnapshotPanelData) Get

func (NullableExecutionSnapshotPanelData) IsSet

func (NullableExecutionSnapshotPanelData) MarshalJSON

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

func (*NullableExecutionSnapshotPanelData) Set

func (*NullableExecutionSnapshotPanelData) UnmarshalJSON

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

func (*NullableExecutionSnapshotPanelData) Unset

type NullableExecutionSnapshotPanelDataColumn

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

func (NullableExecutionSnapshotPanelDataColumn) Get

func (NullableExecutionSnapshotPanelDataColumn) IsSet

func (NullableExecutionSnapshotPanelDataColumn) MarshalJSON

func (*NullableExecutionSnapshotPanelDataColumn) Set

func (*NullableExecutionSnapshotPanelDataColumn) UnmarshalJSON

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

func (*NullableExecutionSnapshotPanelDataColumn) Unset

type NullableExecutionStepExecution

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

func (NullableExecutionStepExecution) Get

func (NullableExecutionStepExecution) IsSet

func (NullableExecutionStepExecution) MarshalJSON

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

func (*NullableExecutionStepExecution) Set

func (*NullableExecutionStepExecution) UnmarshalJSON

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

func (*NullableExecutionStepExecution) Unset

func (v *NullableExecutionStepExecution) Unset()

type NullableExecutionStepExecutionOutput

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

func (NullableExecutionStepExecutionOutput) Get

func (NullableExecutionStepExecutionOutput) IsSet

func (NullableExecutionStepExecutionOutput) MarshalJSON

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

func (*NullableExecutionStepExecutionOutput) Set

func (*NullableExecutionStepExecutionOutput) UnmarshalJSON

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

func (*NullableExecutionStepExecutionOutput) Unset

type NullableExecutionStepExecutionStepForEach

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

func (NullableExecutionStepExecutionStepForEach) Get

func (NullableExecutionStepExecutionStepForEach) IsSet

func (NullableExecutionStepExecutionStepForEach) MarshalJSON

func (*NullableExecutionStepExecutionStepForEach) Set

func (*NullableExecutionStepExecutionStepForEach) UnmarshalJSON

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

func (*NullableExecutionStepExecutionStepForEach) Unset

type NullableExecutionStepStatus

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

func NewNullableExecutionStepStatus

func NewNullableExecutionStepStatus(val *ExecutionStepStatus) *NullableExecutionStepStatus

func (NullableExecutionStepStatus) Get

func (NullableExecutionStepStatus) IsSet

func (NullableExecutionStepStatus) MarshalJSON

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

func (*NullableExecutionStepStatus) Set

func (*NullableExecutionStepStatus) UnmarshalJSON

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

func (*NullableExecutionStepStatus) Unset

func (v *NullableExecutionStepStatus) 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 NullableFlowpipeRequire

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

func NewNullableFlowpipeRequire

func NewNullableFlowpipeRequire(val *FlowpipeRequire) *NullableFlowpipeRequire

func (NullableFlowpipeRequire) Get

func (NullableFlowpipeRequire) IsSet

func (v NullableFlowpipeRequire) IsSet() bool

func (NullableFlowpipeRequire) MarshalJSON

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

func (*NullableFlowpipeRequire) Set

func (*NullableFlowpipeRequire) UnmarshalJSON

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

func (*NullableFlowpipeRequire) Unset

func (v *NullableFlowpipeRequire) Unset()

type NullableFlowpipeResponseMetadata added in v0.5.0

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

func NewNullableFlowpipeResponseMetadata added in v0.5.0

func NewNullableFlowpipeResponseMetadata(val *FlowpipeResponseMetadata) *NullableFlowpipeResponseMetadata

func (NullableFlowpipeResponseMetadata) Get added in v0.5.0

func (NullableFlowpipeResponseMetadata) IsSet added in v0.5.0

func (NullableFlowpipeResponseMetadata) MarshalJSON added in v0.5.0

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

func (*NullableFlowpipeResponseMetadata) Set added in v0.5.0

func (*NullableFlowpipeResponseMetadata) UnmarshalJSON added in v0.5.0

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

func (*NullableFlowpipeResponseMetadata) Unset added in v0.5.0

type NullableFlowpipeTriggerResponseMetadata added in v0.5.0

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

func NewNullableFlowpipeTriggerResponseMetadata added in v0.5.0

func NewNullableFlowpipeTriggerResponseMetadata(val *FlowpipeTriggerResponseMetadata) *NullableFlowpipeTriggerResponseMetadata

func (NullableFlowpipeTriggerResponseMetadata) Get added in v0.5.0

func (NullableFlowpipeTriggerResponseMetadata) IsSet added in v0.5.0

func (NullableFlowpipeTriggerResponseMetadata) MarshalJSON added in v0.5.0

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

func (*NullableFlowpipeTriggerResponseMetadata) Set added in v0.5.0

func (*NullableFlowpipeTriggerResponseMetadata) UnmarshalJSON added in v0.5.0

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

func (*NullableFlowpipeTriggerResponseMetadata) Unset added in v0.5.0

type NullableFpIntegration added in v0.3.0

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

func NewNullableFpIntegration added in v0.3.0

func NewNullableFpIntegration(val *FpIntegration) *NullableFpIntegration

func (NullableFpIntegration) Get added in v0.3.0

func (NullableFpIntegration) IsSet added in v0.3.0

func (v NullableFpIntegration) IsSet() bool

func (NullableFpIntegration) MarshalJSON added in v0.3.0

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

func (*NullableFpIntegration) Set added in v0.3.0

func (v *NullableFpIntegration) Set(val *FpIntegration)

func (*NullableFpIntegration) UnmarshalJSON added in v0.3.0

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

func (*NullableFpIntegration) Unset added in v0.3.0

func (v *NullableFpIntegration) Unset()

type NullableFpNotifier added in v0.3.0

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

func NewNullableFpNotifier added in v0.3.0

func NewNullableFpNotifier(val *FpNotifier) *NullableFpNotifier

func (NullableFpNotifier) Get added in v0.3.0

func (v NullableFpNotifier) Get() *FpNotifier

func (NullableFpNotifier) IsSet added in v0.3.0

func (v NullableFpNotifier) IsSet() bool

func (NullableFpNotifier) MarshalJSON added in v0.3.0

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

func (*NullableFpNotifier) Set added in v0.3.0

func (v *NullableFpNotifier) Set(val *FpNotifier)

func (*NullableFpNotifier) UnmarshalJSON added in v0.3.0

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

func (*NullableFpNotifier) Unset added in v0.3.0

func (v *NullableFpNotifier) Unset()

type NullableFpNotify added in v0.3.0

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

func NewNullableFpNotify added in v0.3.0

func NewNullableFpNotify(val *FpNotify) *NullableFpNotify

func (NullableFpNotify) Get added in v0.3.0

func (v NullableFpNotify) Get() *FpNotify

func (NullableFpNotify) IsSet added in v0.3.0

func (v NullableFpNotify) IsSet() bool

func (NullableFpNotify) MarshalJSON added in v0.3.0

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

func (*NullableFpNotify) Set added in v0.3.0

func (v *NullableFpNotify) Set(val *FpNotify)

func (*NullableFpNotify) UnmarshalJSON added in v0.3.0

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

func (*NullableFpNotify) Unset added in v0.3.0

func (v *NullableFpNotify) Unset()

type NullableFpPipeline

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

func NewNullableFpPipeline

func NewNullableFpPipeline(val *FpPipeline) *NullableFpPipeline

func (NullableFpPipeline) Get

func (v NullableFpPipeline) Get() *FpPipeline

func (NullableFpPipeline) IsSet

func (v NullableFpPipeline) IsSet() bool

func (NullableFpPipeline) MarshalJSON

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

func (*NullableFpPipeline) Set

func (v *NullableFpPipeline) Set(val *FpPipeline)

func (*NullableFpPipeline) UnmarshalJSON

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

func (*NullableFpPipeline) Unset

func (v *NullableFpPipeline) Unset()

type NullableFpPipelineParam

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

func NewNullableFpPipelineParam

func NewNullableFpPipelineParam(val *FpPipelineParam) *NullableFpPipelineParam

func (NullableFpPipelineParam) Get

func (NullableFpPipelineParam) IsSet

func (v NullableFpPipelineParam) IsSet() bool

func (NullableFpPipelineParam) MarshalJSON

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

func (*NullableFpPipelineParam) Set

func (*NullableFpPipelineParam) UnmarshalJSON

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

func (*NullableFpPipelineParam) Unset

func (v *NullableFpPipelineParam) Unset()

type NullableFpTrigger

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

func NewNullableFpTrigger

func NewNullableFpTrigger(val *FpTrigger) *NullableFpTrigger

func (NullableFpTrigger) Get

func (v NullableFpTrigger) Get() *FpTrigger

func (NullableFpTrigger) IsSet

func (v NullableFpTrigger) IsSet() bool

func (NullableFpTrigger) MarshalJSON

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

func (*NullableFpTrigger) Set

func (v *NullableFpTrigger) Set(val *FpTrigger)

func (*NullableFpTrigger) UnmarshalJSON

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

func (*NullableFpTrigger) Unset

func (v *NullableFpTrigger) Unset()

type NullableFpTriggerPipeline added in v0.2.0

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

func NewNullableFpTriggerPipeline added in v0.2.0

func NewNullableFpTriggerPipeline(val *FpTriggerPipeline) *NullableFpTriggerPipeline

func (NullableFpTriggerPipeline) Get added in v0.2.0

func (NullableFpTriggerPipeline) IsSet added in v0.2.0

func (v NullableFpTriggerPipeline) IsSet() bool

func (NullableFpTriggerPipeline) MarshalJSON added in v0.2.0

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

func (*NullableFpTriggerPipeline) Set added in v0.2.0

func (*NullableFpTriggerPipeline) UnmarshalJSON added in v0.2.0

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

func (*NullableFpTriggerPipeline) Unset added in v0.2.0

func (v *NullableFpTriggerPipeline) Unset()

type NullableFpVariable added in v0.4.0

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

func NewNullableFpVariable added in v0.4.0

func NewNullableFpVariable(val *FpVariable) *NullableFpVariable

func (NullableFpVariable) Get added in v0.4.0

func (v NullableFpVariable) Get() *FpVariable

func (NullableFpVariable) IsSet added in v0.4.0

func (v NullableFpVariable) IsSet() bool

func (NullableFpVariable) MarshalJSON added in v0.4.0

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

func (*NullableFpVariable) Set added in v0.4.0

func (v *NullableFpVariable) Set(val *FpVariable)

func (*NullableFpVariable) UnmarshalJSON added in v0.4.0

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

func (*NullableFpVariable) Unset added in v0.4.0

func (v *NullableFpVariable) Unset()

type NullableFperrErrorDetailModel

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

func (NullableFperrErrorDetailModel) Get

func (NullableFperrErrorDetailModel) IsSet

func (NullableFperrErrorDetailModel) MarshalJSON

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

func (*NullableFperrErrorDetailModel) Set

func (*NullableFperrErrorDetailModel) UnmarshalJSON

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

func (*NullableFperrErrorDetailModel) Unset

func (v *NullableFperrErrorDetailModel) Unset()

type NullableFperrErrorModel

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

func NewNullableFperrErrorModel

func NewNullableFperrErrorModel(val *FperrErrorModel) *NullableFperrErrorModel

func (NullableFperrErrorModel) Get

func (NullableFperrErrorModel) IsSet

func (v NullableFperrErrorModel) IsSet() bool

func (NullableFperrErrorModel) MarshalJSON

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

func (*NullableFperrErrorModel) Set

func (*NullableFperrErrorModel) UnmarshalJSON

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

func (*NullableFperrErrorModel) Unset

func (v *NullableFperrErrorModel) Unset()

type NullableGetPipelineResponse

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

func NewNullableGetPipelineResponse

func NewNullableGetPipelineResponse(val *GetPipelineResponse) *NullableGetPipelineResponse

func (NullableGetPipelineResponse) Get

func (NullableGetPipelineResponse) IsSet

func (NullableGetPipelineResponse) MarshalJSON

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

func (*NullableGetPipelineResponse) Set

func (*NullableGetPipelineResponse) UnmarshalJSON

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

func (*NullableGetPipelineResponse) Unset

func (v *NullableGetPipelineResponse) Unset()

type NullableHclPos added in v0.4.0

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

func NewNullableHclPos added in v0.4.0

func NewNullableHclPos(val *HclPos) *NullableHclPos

func (NullableHclPos) Get added in v0.4.0

func (v NullableHclPos) Get() *HclPos

func (NullableHclPos) IsSet added in v0.4.0

func (v NullableHclPos) IsSet() bool

func (NullableHclPos) MarshalJSON added in v0.4.0

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

func (*NullableHclPos) Set added in v0.4.0

func (v *NullableHclPos) Set(val *HclPos)

func (*NullableHclPos) UnmarshalJSON added in v0.4.0

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

func (*NullableHclPos) Unset added in v0.4.0

func (v *NullableHclPos) Unset()

type NullableHclRange added in v0.4.0

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

func NewNullableHclRange added in v0.4.0

func NewNullableHclRange(val *HclRange) *NullableHclRange

func (NullableHclRange) Get added in v0.4.0

func (v NullableHclRange) Get() *HclRange

func (NullableHclRange) IsSet added in v0.4.0

func (v NullableHclRange) IsSet() bool

func (NullableHclRange) MarshalJSON added in v0.4.0

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

func (*NullableHclRange) Set added in v0.4.0

func (v *NullableHclRange) Set(val *HclRange)

func (*NullableHclRange) UnmarshalJSON added in v0.4.0

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

func (*NullableHclRange) Unset added in v0.4.0

func (v *NullableHclRange) Unset()

type NullableHclRangeStart added in v0.4.0

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

func NewNullableHclRangeStart added in v0.4.0

func NewNullableHclRangeStart(val *HclRangeStart) *NullableHclRangeStart

func (NullableHclRangeStart) Get added in v0.4.0

func (NullableHclRangeStart) IsSet added in v0.4.0

func (v NullableHclRangeStart) IsSet() bool

func (NullableHclRangeStart) MarshalJSON added in v0.4.0

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

func (*NullableHclRangeStart) Set added in v0.4.0

func (v *NullableHclRangeStart) Set(val *HclRangeStart)

func (*NullableHclRangeStart) UnmarshalJSON added in v0.4.0

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

func (*NullableHclRangeStart) Unset added in v0.4.0

func (v *NullableHclRangeStart) 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 NullableListIntegrationResponse added in v0.3.0

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

func NewNullableListIntegrationResponse added in v0.3.0

func NewNullableListIntegrationResponse(val *ListIntegrationResponse) *NullableListIntegrationResponse

func (NullableListIntegrationResponse) Get added in v0.3.0

func (NullableListIntegrationResponse) IsSet added in v0.3.0

func (NullableListIntegrationResponse) MarshalJSON added in v0.3.0

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

func (*NullableListIntegrationResponse) Set added in v0.3.0

func (*NullableListIntegrationResponse) UnmarshalJSON added in v0.3.0

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

func (*NullableListIntegrationResponse) Unset added in v0.3.0

type NullableListNotifierResponse added in v0.3.0

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

func NewNullableListNotifierResponse added in v0.3.0

func NewNullableListNotifierResponse(val *ListNotifierResponse) *NullableListNotifierResponse

func (NullableListNotifierResponse) Get added in v0.3.0

func (NullableListNotifierResponse) IsSet added in v0.3.0

func (NullableListNotifierResponse) MarshalJSON added in v0.3.0

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

func (*NullableListNotifierResponse) Set added in v0.3.0

func (*NullableListNotifierResponse) UnmarshalJSON added in v0.3.0

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

func (*NullableListNotifierResponse) Unset added in v0.3.0

func (v *NullableListNotifierResponse) Unset()

type NullableListPipelineResponse

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

func NewNullableListPipelineResponse

func NewNullableListPipelineResponse(val *ListPipelineResponse) *NullableListPipelineResponse

func (NullableListPipelineResponse) Get

func (NullableListPipelineResponse) IsSet

func (NullableListPipelineResponse) MarshalJSON

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

func (*NullableListPipelineResponse) Set

func (*NullableListPipelineResponse) UnmarshalJSON

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

func (*NullableListPipelineResponse) Unset

func (v *NullableListPipelineResponse) Unset()

type NullableListPipelineResponseItem

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

func (NullableListPipelineResponseItem) Get

func (NullableListPipelineResponseItem) IsSet

func (NullableListPipelineResponseItem) MarshalJSON

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

func (*NullableListPipelineResponseItem) Set

func (*NullableListPipelineResponseItem) UnmarshalJSON

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

func (*NullableListPipelineResponseItem) Unset

type NullableListProcessLogJSONResponse

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

func (NullableListProcessLogJSONResponse) Get

func (NullableListProcessLogJSONResponse) IsSet

func (NullableListProcessLogJSONResponse) MarshalJSON

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

func (*NullableListProcessLogJSONResponse) Set

func (*NullableListProcessLogJSONResponse) UnmarshalJSON

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

func (*NullableListProcessLogJSONResponse) Unset

type NullableListProcessResponse

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

func NewNullableListProcessResponse

func NewNullableListProcessResponse(val *ListProcessResponse) *NullableListProcessResponse

func (NullableListProcessResponse) Get

func (NullableListProcessResponse) IsSet

func (NullableListProcessResponse) MarshalJSON

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

func (*NullableListProcessResponse) Set

func (*NullableListProcessResponse) UnmarshalJSON

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

func (*NullableListProcessResponse) Unset

func (v *NullableListProcessResponse) Unset()

type NullableListTriggerResponse

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

func NewNullableListTriggerResponse

func NewNullableListTriggerResponse(val *ListTriggerResponse) *NullableListTriggerResponse

func (NullableListTriggerResponse) Get

func (NullableListTriggerResponse) IsSet

func (NullableListTriggerResponse) MarshalJSON

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

func (*NullableListTriggerResponse) Set

func (*NullableListTriggerResponse) UnmarshalJSON

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

func (*NullableListTriggerResponse) Unset

func (v *NullableListTriggerResponse) Unset()

type NullableListVariableResponse

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

func NewNullableListVariableResponse

func NewNullableListVariableResponse(val *ListVariableResponse) *NullableListVariableResponse

func (NullableListVariableResponse) Get

func (NullableListVariableResponse) IsSet

func (NullableListVariableResponse) MarshalJSON

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

func (*NullableListVariableResponse) Set

func (*NullableListVariableResponse) UnmarshalJSON

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

func (*NullableListVariableResponse) Unset

func (v *NullableListVariableResponse) Unset()

type NullableMod

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

func NewNullableMod

func NewNullableMod(val *Mod) *NullableMod

func (NullableMod) Get

func (v NullableMod) Get() *Mod

func (NullableMod) IsSet

func (v NullableMod) IsSet() bool

func (NullableMod) MarshalJSON

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

func (*NullableMod) Set

func (v *NullableMod) Set(val *Mod)

func (*NullableMod) UnmarshalJSON

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

func (*NullableMod) Unset

func (v *NullableMod) Unset()

type NullableModVersionConstraint

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

func NewNullableModVersionConstraint

func NewNullableModVersionConstraint(val *ModVersionConstraint) *NullableModVersionConstraint

func (NullableModVersionConstraint) Get

func (NullableModVersionConstraint) IsSet

func (NullableModVersionConstraint) MarshalJSON

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

func (*NullableModVersionConstraint) Set

func (*NullableModVersionConstraint) UnmarshalJSON

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

func (*NullableModVersionConstraint) Unset

func (v *NullableModVersionConstraint) Unset()

type NullableModconfigNextStepAction

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

func (NullableModconfigNextStepAction) Get

func (NullableModconfigNextStepAction) IsSet

func (NullableModconfigNextStepAction) MarshalJSON

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

func (*NullableModconfigNextStepAction) Set

func (*NullableModconfigNextStepAction) UnmarshalJSON

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

func (*NullableModconfigNextStepAction) Unset

type NullableModconfigOutput

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

func NewNullableModconfigOutput

func NewNullableModconfigOutput(val *ModconfigOutput) *NullableModconfigOutput

func (NullableModconfigOutput) Get

func (NullableModconfigOutput) IsSet

func (v NullableModconfigOutput) IsSet() bool

func (NullableModconfigOutput) MarshalJSON

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

func (*NullableModconfigOutput) Set

func (*NullableModconfigOutput) UnmarshalJSON

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

func (*NullableModconfigOutput) Unset

func (v *NullableModconfigOutput) Unset()

type NullableModconfigPipeline

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

func NewNullableModconfigPipeline

func NewNullableModconfigPipeline(val *ModconfigPipeline) *NullableModconfigPipeline

func (NullableModconfigPipeline) Get

func (NullableModconfigPipeline) IsSet

func (v NullableModconfigPipeline) IsSet() bool

func (NullableModconfigPipeline) MarshalJSON

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

func (*NullableModconfigPipeline) Set

func (*NullableModconfigPipeline) UnmarshalJSON

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

func (*NullableModconfigPipeline) Unset

func (v *NullableModconfigPipeline) Unset()

type NullableModconfigPipelineOutput

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

func (NullableModconfigPipelineOutput) Get

func (NullableModconfigPipelineOutput) IsSet

func (NullableModconfigPipelineOutput) MarshalJSON

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

func (*NullableModconfigPipelineOutput) Set

func (*NullableModconfigPipelineOutput) UnmarshalJSON

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

func (*NullableModconfigPipelineOutput) Unset

type NullableModconfigPipelineParam

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

func (NullableModconfigPipelineParam) Get

func (NullableModconfigPipelineParam) IsSet

func (NullableModconfigPipelineParam) MarshalJSON

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

func (*NullableModconfigPipelineParam) Set

func (*NullableModconfigPipelineParam) UnmarshalJSON

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

func (*NullableModconfigPipelineParam) Unset

func (v *NullableModconfigPipelineParam) Unset()

type NullableModconfigStepError

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

func NewNullableModconfigStepError

func NewNullableModconfigStepError(val *ModconfigStepError) *NullableModconfigStepError

func (NullableModconfigStepError) Get

func (NullableModconfigStepError) IsSet

func (v NullableModconfigStepError) IsSet() bool

func (NullableModconfigStepError) MarshalJSON

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

func (*NullableModconfigStepError) Set

func (*NullableModconfigStepError) UnmarshalJSON

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

func (*NullableModconfigStepError) Unset

func (v *NullableModconfigStepError) Unset()

type NullableModconfigStepForEach

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

func NewNullableModconfigStepForEach

func NewNullableModconfigStepForEach(val *ModconfigStepForEach) *NullableModconfigStepForEach

func (NullableModconfigStepForEach) Get

func (NullableModconfigStepForEach) IsSet

func (NullableModconfigStepForEach) MarshalJSON

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

func (*NullableModconfigStepForEach) Set

func (*NullableModconfigStepForEach) UnmarshalJSON

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

func (*NullableModconfigStepForEach) Unset

func (v *NullableModconfigStepForEach) Unset()

type NullableModconfigStepLoop

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

func NewNullableModconfigStepLoop

func NewNullableModconfigStepLoop(val *ModconfigStepLoop) *NullableModconfigStepLoop

func (NullableModconfigStepLoop) Get

func (NullableModconfigStepLoop) IsSet

func (v NullableModconfigStepLoop) IsSet() bool

func (NullableModconfigStepLoop) MarshalJSON

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

func (*NullableModconfigStepLoop) Set

func (*NullableModconfigStepLoop) UnmarshalJSON

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

func (*NullableModconfigStepLoop) Unset

func (v *NullableModconfigStepLoop) Unset()

type NullableModconfigStepRetry

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

func NewNullableModconfigStepRetry

func NewNullableModconfigStepRetry(val *ModconfigStepRetry) *NullableModconfigStepRetry

func (NullableModconfigStepRetry) Get

func (NullableModconfigStepRetry) IsSet

func (v NullableModconfigStepRetry) IsSet() bool

func (NullableModconfigStepRetry) MarshalJSON

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

func (*NullableModconfigStepRetry) Set

func (*NullableModconfigStepRetry) UnmarshalJSON

func (v *NullableModconfigStepRetry) UnmarshalJSON(src []byte) error

func (*NullableModconfigStepRetry) Unset

func (v *NullableModconfigStepRetry) Unset()

type NullableNextStepAction

type NullableNextStepAction struct {
	// contains filtered or unexported fields
}

func NewNullableNextStepAction

func NewNullableNextStepAction(val *NextStepAction) *NullableNextStepAction

func (NullableNextStepAction) Get

func (NullableNextStepAction) IsSet

func (v NullableNextStepAction) IsSet() bool

func (NullableNextStepAction) MarshalJSON

func (v NullableNextStepAction) MarshalJSON() ([]byte, error)

func (*NullableNextStepAction) Set

func (*NullableNextStepAction) UnmarshalJSON

func (v *NullableNextStepAction) UnmarshalJSON(src []byte) error

func (*NullableNextStepAction) Unset

func (v *NullableNextStepAction) Unset()

type NullableOpenGraph

type NullableOpenGraph struct {
	// contains filtered or unexported fields
}

func NewNullableOpenGraph

func NewNullableOpenGraph(val *OpenGraph) *NullableOpenGraph

func (NullableOpenGraph) Get

func (v NullableOpenGraph) Get() *OpenGraph

func (NullableOpenGraph) IsSet

func (v NullableOpenGraph) IsSet() bool

func (NullableOpenGraph) MarshalJSON

func (v NullableOpenGraph) MarshalJSON() ([]byte, error)

func (*NullableOpenGraph) Set

func (v *NullableOpenGraph) Set(val *OpenGraph)

func (*NullableOpenGraph) UnmarshalJSON

func (v *NullableOpenGraph) UnmarshalJSON(src []byte) error

func (*NullableOpenGraph) Unset

func (v *NullableOpenGraph) Unset()

type NullableOutput

type NullableOutput struct {
	// contains filtered or unexported fields
}

func NewNullableOutput

func NewNullableOutput(val *Output) *NullableOutput

func (NullableOutput) Get

func (v NullableOutput) Get() *Output

func (NullableOutput) IsSet

func (v NullableOutput) IsSet() bool

func (NullableOutput) MarshalJSON

func (v NullableOutput) MarshalJSON() ([]byte, error)

func (*NullableOutput) Set

func (v *NullableOutput) Set(val *Output)

func (*NullableOutput) UnmarshalJSON

func (v *NullableOutput) UnmarshalJSON(src []byte) error

func (*NullableOutput) Unset

func (v *NullableOutput) Unset()

type NullablePcerrErrorDetailModel

type NullablePcerrErrorDetailModel struct {
	// contains filtered or unexported fields
}

func (NullablePcerrErrorDetailModel) Get

func (NullablePcerrErrorDetailModel) IsSet

func (NullablePcerrErrorDetailModel) MarshalJSON

func (v NullablePcerrErrorDetailModel) MarshalJSON() ([]byte, error)

func (*NullablePcerrErrorDetailModel) Set

func (*NullablePcerrErrorDetailModel) UnmarshalJSON

func (v *NullablePcerrErrorDetailModel) UnmarshalJSON(src []byte) error

func (*NullablePcerrErrorDetailModel) Unset

func (v *NullablePcerrErrorDetailModel) Unset()

type NullablePcerrErrorModel

type NullablePcerrErrorModel struct {
	// contains filtered or unexported fields
}

func NewNullablePcerrErrorModel

func NewNullablePcerrErrorModel(val *PcerrErrorModel) *NullablePcerrErrorModel

func (NullablePcerrErrorModel) Get

func (NullablePcerrErrorModel) IsSet

func (v NullablePcerrErrorModel) IsSet() bool

func (NullablePcerrErrorModel) MarshalJSON

func (v NullablePcerrErrorModel) MarshalJSON() ([]byte, error)

func (*NullablePcerrErrorModel) Set

func (*NullablePcerrErrorModel) UnmarshalJSON

func (v *NullablePcerrErrorModel) UnmarshalJSON(src []byte) error

func (*NullablePcerrErrorModel) Unset

func (v *NullablePcerrErrorModel) Unset()

type NullablePerrErrorDetailModel

type NullablePerrErrorDetailModel struct {
	// contains filtered or unexported fields
}

func NewNullablePerrErrorDetailModel

func NewNullablePerrErrorDetailModel(val *PerrErrorDetailModel) *NullablePerrErrorDetailModel

func (NullablePerrErrorDetailModel) Get

func (NullablePerrErrorDetailModel) IsSet

func (NullablePerrErrorDetailModel) MarshalJSON

func (v NullablePerrErrorDetailModel) MarshalJSON() ([]byte, error)

func (*NullablePerrErrorDetailModel) Set

func (*NullablePerrErrorDetailModel) UnmarshalJSON

func (v *NullablePerrErrorDetailModel) UnmarshalJSON(src []byte) error

func (*NullablePerrErrorDetailModel) Unset

func (v *NullablePerrErrorDetailModel) Unset()

type NullablePerrErrorModel

type NullablePerrErrorModel struct {
	// contains filtered or unexported fields
}

func NewNullablePerrErrorModel

func NewNullablePerrErrorModel(val *PerrErrorModel) *NullablePerrErrorModel

func (NullablePerrErrorModel) Get

func (NullablePerrErrorModel) IsSet

func (v NullablePerrErrorModel) IsSet() bool

func (NullablePerrErrorModel) MarshalJSON

func (v NullablePerrErrorModel) MarshalJSON() ([]byte, error)

func (*NullablePerrErrorModel) Set

func (*NullablePerrErrorModel) UnmarshalJSON

func (v *NullablePerrErrorModel) UnmarshalJSON(src []byte) error

func (*NullablePerrErrorModel) Unset

func (v *NullablePerrErrorModel) Unset()

type NullablePipeline

type NullablePipeline struct {
	// contains filtered or unexported fields
}

func NewNullablePipeline

func NewNullablePipeline(val *Pipeline) *NullablePipeline

func (NullablePipeline) Get

func (v NullablePipeline) Get() *Pipeline

func (NullablePipeline) IsSet

func (v NullablePipeline) IsSet() bool

func (NullablePipeline) MarshalJSON

func (v NullablePipeline) MarshalJSON() ([]byte, error)

func (*NullablePipeline) Set

func (v *NullablePipeline) Set(val *Pipeline)

func (*NullablePipeline) UnmarshalJSON

func (v *NullablePipeline) UnmarshalJSON(src []byte) error

func (*NullablePipeline) Unset

func (v *NullablePipeline) Unset()

type NullablePipelineExecutionResponse added in v0.5.0

type NullablePipelineExecutionResponse struct {
	// contains filtered or unexported fields
}

func NewNullablePipelineExecutionResponse added in v0.5.0

func NewNullablePipelineExecutionResponse(val *PipelineExecutionResponse) *NullablePipelineExecutionResponse

func (NullablePipelineExecutionResponse) Get added in v0.5.0

func (NullablePipelineExecutionResponse) IsSet added in v0.5.0

func (NullablePipelineExecutionResponse) MarshalJSON added in v0.5.0

func (v NullablePipelineExecutionResponse) MarshalJSON() ([]byte, error)

func (*NullablePipelineExecutionResponse) Set added in v0.5.0

func (*NullablePipelineExecutionResponse) UnmarshalJSON added in v0.5.0

func (v *NullablePipelineExecutionResponse) UnmarshalJSON(src []byte) error

func (*NullablePipelineExecutionResponse) Unset added in v0.5.0

type NullablePipelineOutput

type NullablePipelineOutput struct {
	// contains filtered or unexported fields
}

func NewNullablePipelineOutput

func NewNullablePipelineOutput(val *PipelineOutput) *NullablePipelineOutput

func (NullablePipelineOutput) Get

func (NullablePipelineOutput) IsSet

func (v NullablePipelineOutput) IsSet() bool

func (NullablePipelineOutput) MarshalJSON

func (v NullablePipelineOutput) MarshalJSON() ([]byte, error)

func (*NullablePipelineOutput) Set

func (*NullablePipelineOutput) UnmarshalJSON

func (v *NullablePipelineOutput) UnmarshalJSON(src []byte) error

func (*NullablePipelineOutput) Unset

func (v *NullablePipelineOutput) Unset()

type NullablePipelineStep

type NullablePipelineStep struct {
	// contains filtered or unexported fields
}

func NewNullablePipelineStep

func NewNullablePipelineStep(val *PipelineStep) *NullablePipelineStep

func (NullablePipelineStep) Get

func (NullablePipelineStep) IsSet

func (v NullablePipelineStep) IsSet() bool

func (NullablePipelineStep) MarshalJSON

func (v NullablePipelineStep) MarshalJSON() ([]byte, error)

func (*NullablePipelineStep) Set

func (v *NullablePipelineStep) Set(val *PipelineStep)

func (*NullablePipelineStep) UnmarshalJSON

func (v *NullablePipelineStep) UnmarshalJSON(src []byte) error

func (*NullablePipelineStep) Unset

func (v *NullablePipelineStep) Unset()

type NullableProcess

type NullableProcess struct {
	// contains filtered or unexported fields
}

func NewNullableProcess

func NewNullableProcess(val *Process) *NullableProcess

func (NullableProcess) Get

func (v NullableProcess) Get() *Process

func (NullableProcess) IsSet

func (v NullableProcess) IsSet() bool

func (NullableProcess) MarshalJSON

func (v NullableProcess) MarshalJSON() ([]byte, error)

func (*NullableProcess) Set

func (v *NullableProcess) Set(val *Process)

func (*NullableProcess) UnmarshalJSON

func (v *NullableProcess) UnmarshalJSON(src []byte) error

func (*NullableProcess) Unset

func (v *NullableProcess) Unset()

type NullableProcessEventLog

type NullableProcessEventLog struct {
	// contains filtered or unexported fields
}

func NewNullableProcessEventLog

func NewNullableProcessEventLog(val *ProcessEventLog) *NullableProcessEventLog

func (NullableProcessEventLog) Get

func (NullableProcessEventLog) IsSet

func (v NullableProcessEventLog) IsSet() bool

func (NullableProcessEventLog) MarshalJSON

func (v NullableProcessEventLog) MarshalJSON() ([]byte, error)

func (*NullableProcessEventLog) Set

func (*NullableProcessEventLog) UnmarshalJSON

func (v *NullableProcessEventLog) UnmarshalJSON(src []byte) error

func (*NullableProcessEventLog) Unset

func (v *NullableProcessEventLog) Unset()

type NullableProcessOutputData

type NullableProcessOutputData struct {
	// contains filtered or unexported fields
}

func NewNullableProcessOutputData

func NewNullableProcessOutputData(val *ProcessOutputData) *NullableProcessOutputData

func (NullableProcessOutputData) Get

func (NullableProcessOutputData) IsSet

func (v NullableProcessOutputData) IsSet() bool

func (NullableProcessOutputData) MarshalJSON

func (v NullableProcessOutputData) MarshalJSON() ([]byte, error)

func (*NullableProcessOutputData) Set

func (*NullableProcessOutputData) UnmarshalJSON

func (v *NullableProcessOutputData) UnmarshalJSON(src []byte) error

func (*NullableProcessOutputData) Unset

func (v *NullableProcessOutputData) Unset()

type NullableRequire

type NullableRequire struct {
	// contains filtered or unexported fields
}

func NewNullableRequire

func NewNullableRequire(val *Require) *NullableRequire

func (NullableRequire) Get

func (v NullableRequire) Get() *Require

func (NullableRequire) IsSet

func (v NullableRequire) IsSet() bool

func (NullableRequire) MarshalJSON

func (v NullableRequire) MarshalJSON() ([]byte, error)

func (*NullableRequire) Set

func (v *NullableRequire) Set(val *Require)

func (*NullableRequire) UnmarshalJSON

func (v *NullableRequire) UnmarshalJSON(src []byte) error

func (*NullableRequire) Unset

func (v *NullableRequire) Unset()

type NullableRunPipelineResponse

type NullableRunPipelineResponse struct {
	// contains filtered or unexported fields
}

func NewNullableRunPipelineResponse

func NewNullableRunPipelineResponse(val *RunPipelineResponse) *NullableRunPipelineResponse

func (NullableRunPipelineResponse) Get

func (NullableRunPipelineResponse) IsSet

func (NullableRunPipelineResponse) MarshalJSON

func (v NullableRunPipelineResponse) MarshalJSON() ([]byte, error)

func (*NullableRunPipelineResponse) Set

func (*NullableRunPipelineResponse) UnmarshalJSON

func (v *NullableRunPipelineResponse) UnmarshalJSON(src []byte) error

func (*NullableRunPipelineResponse) Unset

func (v *NullableRunPipelineResponse) Unset()

type NullableStepError

type NullableStepError struct {
	// contains filtered or unexported fields
}

func NewNullableStepError

func NewNullableStepError(val *StepError) *NullableStepError

func (NullableStepError) Get

func (v NullableStepError) Get() *StepError

func (NullableStepError) IsSet

func (v NullableStepError) IsSet() bool

func (NullableStepError) MarshalJSON

func (v NullableStepError) MarshalJSON() ([]byte, error)

func (*NullableStepError) Set

func (v *NullableStepError) Set(val *StepError)

func (*NullableStepError) UnmarshalJSON

func (v *NullableStepError) UnmarshalJSON(src []byte) error

func (*NullableStepError) Unset

func (v *NullableStepError) Unset()

type NullableStepForEach

type NullableStepForEach struct {
	// contains filtered or unexported fields
}

func NewNullableStepForEach

func NewNullableStepForEach(val *StepForEach) *NullableStepForEach

func (NullableStepForEach) Get

func (NullableStepForEach) IsSet

func (v NullableStepForEach) IsSet() bool

func (NullableStepForEach) MarshalJSON

func (v NullableStepForEach) MarshalJSON() ([]byte, error)

func (*NullableStepForEach) Set

func (v *NullableStepForEach) Set(val *StepForEach)

func (*NullableStepForEach) UnmarshalJSON

func (v *NullableStepForEach) UnmarshalJSON(src []byte) error

func (*NullableStepForEach) Unset

func (v *NullableStepForEach) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTrigger

type NullableTrigger struct {
	// contains filtered or unexported fields
}

func NewNullableTrigger

func NewNullableTrigger(val *Trigger) *NullableTrigger

func (NullableTrigger) Get

func (v NullableTrigger) Get() *Trigger

func (NullableTrigger) IsSet

func (v NullableTrigger) IsSet() bool

func (NullableTrigger) MarshalJSON

func (v NullableTrigger) MarshalJSON() ([]byte, error)

func (*NullableTrigger) Set

func (v *NullableTrigger) Set(val *Trigger)

func (*NullableTrigger) UnmarshalJSON

func (v *NullableTrigger) UnmarshalJSON(src []byte) error

func (*NullableTrigger) Unset

func (v *NullableTrigger) Unset()

type NullableTriggerExecutionResponse added in v0.5.0

type NullableTriggerExecutionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableTriggerExecutionResponse added in v0.5.0

func NewNullableTriggerExecutionResponse(val *TriggerExecutionResponse) *NullableTriggerExecutionResponse

func (NullableTriggerExecutionResponse) Get added in v0.5.0

func (NullableTriggerExecutionResponse) IsSet added in v0.5.0

func (NullableTriggerExecutionResponse) MarshalJSON added in v0.5.0

func (v NullableTriggerExecutionResponse) MarshalJSON() ([]byte, error)

func (*NullableTriggerExecutionResponse) Set added in v0.5.0

func (*NullableTriggerExecutionResponse) UnmarshalJSON added in v0.5.0

func (v *NullableTriggerExecutionResponse) UnmarshalJSON(src []byte) error

func (*NullableTriggerExecutionResponse) Unset added in v0.5.0

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 OpenGraph

type OpenGraph struct {
	// The opengraph description (og:description) of the mod, for use in social media applications
	Description *string `json:"description,omitempty"`
	Title       *string `json:"title,omitempty"`
}

OpenGraph struct for OpenGraph

func NewOpenGraph

func NewOpenGraph() *OpenGraph

NewOpenGraph instantiates a new OpenGraph object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOpenGraphWithDefaults

func NewOpenGraphWithDefaults() *OpenGraph

NewOpenGraphWithDefaults instantiates a new OpenGraph object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OpenGraph) GetDescription

func (o *OpenGraph) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*OpenGraph) GetDescriptionOk

func (o *OpenGraph) 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 (OpenGraph) GetResourceType

func (o OpenGraph) GetResourceType() string

func (*OpenGraph) GetTitle

func (o *OpenGraph) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*OpenGraph) GetTitleOk

func (o *OpenGraph) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OpenGraph) HasDescription

func (o *OpenGraph) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*OpenGraph) HasTitle

func (o *OpenGraph) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (OpenGraph) MarshalJSON

func (o OpenGraph) MarshalJSON() ([]byte, error)

func (*OpenGraph) SetDescription

func (o *OpenGraph) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*OpenGraph) SetTitle

func (o *OpenGraph) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (OpenGraph) ToMap

func (o OpenGraph) ToMap() (map[string]interface{}, error)

type Output

type Output struct {
	Data   map[string]interface{} `json:"data,omitempty"`
	Errors []StepError            `json:"errors,omitempty"`
	Status *string                `json:"status,omitempty"`
}

Output struct for Output

func NewOutput

func NewOutput() *Output

NewOutput instantiates a new Output object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOutputWithDefaults

func NewOutputWithDefaults() *Output

NewOutputWithDefaults instantiates a new Output object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Output) GetData

func (o *Output) GetData() map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*Output) GetDataOk

func (o *Output) GetDataOk() (map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Output) GetErrors

func (o *Output) GetErrors() []StepError

GetErrors returns the Errors field value if set, zero value otherwise.

func (*Output) GetErrorsOk

func (o *Output) GetErrorsOk() ([]StepError, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (Output) GetResourceType

func (o Output) GetResourceType() string

func (*Output) GetStatus

func (o *Output) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Output) GetStatusOk

func (o *Output) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Output) HasData

func (o *Output) HasData() bool

HasData returns a boolean if a field has been set.

func (*Output) HasErrors

func (o *Output) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*Output) HasStatus

func (o *Output) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Output) MarshalJSON

func (o Output) MarshalJSON() ([]byte, error)

func (*Output) SetData

func (o *Output) SetData(v map[string]interface{})

SetData gets a reference to the given map[string]interface{} and assigns it to the Data field.

func (*Output) SetErrors

func (o *Output) SetErrors(v []StepError)

SetErrors gets a reference to the given []StepError and assigns it to the Errors field.

func (*Output) SetStatus

func (o *Output) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (Output) ToMap

func (o Output) ToMap() (map[string]interface{}, error)

type PcerrErrorDetailModel

type PcerrErrorDetailModel struct {
	Location *string `json:"location,omitempty"`
	Message  *string `json:"message,omitempty"`
}

PcerrErrorDetailModel struct for PcerrErrorDetailModel

func NewPcerrErrorDetailModel

func NewPcerrErrorDetailModel() *PcerrErrorDetailModel

NewPcerrErrorDetailModel instantiates a new PcerrErrorDetailModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPcerrErrorDetailModelWithDefaults

func NewPcerrErrorDetailModelWithDefaults() *PcerrErrorDetailModel

NewPcerrErrorDetailModelWithDefaults instantiates a new PcerrErrorDetailModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PcerrErrorDetailModel) GetLocation

func (o *PcerrErrorDetailModel) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*PcerrErrorDetailModel) GetLocationOk

func (o *PcerrErrorDetailModel) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcerrErrorDetailModel) GetMessage

func (o *PcerrErrorDetailModel) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*PcerrErrorDetailModel) GetMessageOk

func (o *PcerrErrorDetailModel) 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 (PcerrErrorDetailModel) GetResourceType

func (o PcerrErrorDetailModel) GetResourceType() string

func (*PcerrErrorDetailModel) HasLocation

func (o *PcerrErrorDetailModel) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*PcerrErrorDetailModel) HasMessage

func (o *PcerrErrorDetailModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (PcerrErrorDetailModel) MarshalJSON

func (o PcerrErrorDetailModel) MarshalJSON() ([]byte, error)

func (*PcerrErrorDetailModel) SetLocation

func (o *PcerrErrorDetailModel) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*PcerrErrorDetailModel) SetMessage

func (o *PcerrErrorDetailModel) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (PcerrErrorDetailModel) ToMap

func (o PcerrErrorDetailModel) ToMap() (map[string]interface{}, error)

type PcerrErrorModel

type PcerrErrorModel struct {
	Detail   *string `json:"detail,omitempty"`
	Instance string  `json:"instance"`
	// All errors are fatal unless specified
	Retryable        *bool                   `json:"retryable,omitempty"`
	Status           int32                   `json:"status"`
	Title            string                  `json:"title"`
	Type             string                  `json:"type"`
	ValidationErrors []PcerrErrorDetailModel `json:"validation_errors,omitempty"`
}

PcerrErrorModel struct for PcerrErrorModel

func NewPcerrErrorModel

func NewPcerrErrorModel(instance string, status int32, title string, type_ string) *PcerrErrorModel

NewPcerrErrorModel instantiates a new PcerrErrorModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPcerrErrorModelWithDefaults

func NewPcerrErrorModelWithDefaults() *PcerrErrorModel

NewPcerrErrorModelWithDefaults instantiates a new PcerrErrorModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PcerrErrorModel) GetDetail

func (o *PcerrErrorModel) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*PcerrErrorModel) GetDetailOk

func (o *PcerrErrorModel) 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 (*PcerrErrorModel) GetInstance

func (o *PcerrErrorModel) GetInstance() string

GetInstance returns the Instance field value

func (*PcerrErrorModel) GetInstanceOk

func (o *PcerrErrorModel) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value and a boolean to check if the value has been set.

func (PcerrErrorModel) GetResourceType

func (o PcerrErrorModel) GetResourceType() string

func (*PcerrErrorModel) GetRetryable

func (o *PcerrErrorModel) GetRetryable() bool

GetRetryable returns the Retryable field value if set, zero value otherwise.

func (*PcerrErrorModel) GetRetryableOk

func (o *PcerrErrorModel) GetRetryableOk() (*bool, bool)

GetRetryableOk returns a tuple with the Retryable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcerrErrorModel) GetStatus

func (o *PcerrErrorModel) GetStatus() int32

GetStatus returns the Status field value

func (*PcerrErrorModel) GetStatusOk

func (o *PcerrErrorModel) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*PcerrErrorModel) GetTitle

func (o *PcerrErrorModel) GetTitle() string

GetTitle returns the Title field value

func (*PcerrErrorModel) GetTitleOk

func (o *PcerrErrorModel) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*PcerrErrorModel) GetType

func (o *PcerrErrorModel) GetType() string

GetType returns the Type field value

func (*PcerrErrorModel) GetTypeOk

func (o *PcerrErrorModel) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*PcerrErrorModel) GetValidationErrors

func (o *PcerrErrorModel) GetValidationErrors() []PcerrErrorDetailModel

GetValidationErrors returns the ValidationErrors field value if set, zero value otherwise.

func (*PcerrErrorModel) GetValidationErrorsOk

func (o *PcerrErrorModel) GetValidationErrorsOk() ([]PcerrErrorDetailModel, bool)

GetValidationErrorsOk returns a tuple with the ValidationErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PcerrErrorModel) HasDetail

func (o *PcerrErrorModel) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*PcerrErrorModel) HasRetryable

func (o *PcerrErrorModel) HasRetryable() bool

HasRetryable returns a boolean if a field has been set.

func (*PcerrErrorModel) HasValidationErrors

func (o *PcerrErrorModel) HasValidationErrors() bool

HasValidationErrors returns a boolean if a field has been set.

func (PcerrErrorModel) MarshalJSON

func (o PcerrErrorModel) MarshalJSON() ([]byte, error)

func (*PcerrErrorModel) SetDetail

func (o *PcerrErrorModel) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*PcerrErrorModel) SetInstance

func (o *PcerrErrorModel) SetInstance(v string)

SetInstance sets field value

func (*PcerrErrorModel) SetRetryable

func (o *PcerrErrorModel) SetRetryable(v bool)

SetRetryable gets a reference to the given bool and assigns it to the Retryable field.

func (*PcerrErrorModel) SetStatus

func (o *PcerrErrorModel) SetStatus(v int32)

SetStatus sets field value

func (*PcerrErrorModel) SetTitle

func (o *PcerrErrorModel) SetTitle(v string)

SetTitle sets field value

func (*PcerrErrorModel) SetType

func (o *PcerrErrorModel) SetType(v string)

SetType sets field value

func (*PcerrErrorModel) SetValidationErrors

func (o *PcerrErrorModel) SetValidationErrors(v []PcerrErrorDetailModel)

SetValidationErrors gets a reference to the given []PcerrErrorDetailModel and assigns it to the ValidationErrors field.

func (PcerrErrorModel) ToMap

func (o PcerrErrorModel) ToMap() (map[string]interface{}, error)

type PerrErrorDetailModel

type PerrErrorDetailModel struct {
	Location *string `json:"location,omitempty"`
	Message  *string `json:"message,omitempty"`
}

PerrErrorDetailModel struct for PerrErrorDetailModel

func NewPerrErrorDetailModel

func NewPerrErrorDetailModel() *PerrErrorDetailModel

NewPerrErrorDetailModel instantiates a new PerrErrorDetailModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPerrErrorDetailModelWithDefaults

func NewPerrErrorDetailModelWithDefaults() *PerrErrorDetailModel

NewPerrErrorDetailModelWithDefaults instantiates a new PerrErrorDetailModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PerrErrorDetailModel) GetLocation

func (o *PerrErrorDetailModel) GetLocation() string

GetLocation returns the Location field value if set, zero value otherwise.

func (*PerrErrorDetailModel) GetLocationOk

func (o *PerrErrorDetailModel) GetLocationOk() (*string, bool)

GetLocationOk returns a tuple with the Location field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerrErrorDetailModel) GetMessage

func (o *PerrErrorDetailModel) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*PerrErrorDetailModel) GetMessageOk

func (o *PerrErrorDetailModel) 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 (PerrErrorDetailModel) GetResourceType

func (o PerrErrorDetailModel) GetResourceType() string

func (*PerrErrorDetailModel) HasLocation

func (o *PerrErrorDetailModel) HasLocation() bool

HasLocation returns a boolean if a field has been set.

func (*PerrErrorDetailModel) HasMessage

func (o *PerrErrorDetailModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (PerrErrorDetailModel) MarshalJSON

func (o PerrErrorDetailModel) MarshalJSON() ([]byte, error)

func (*PerrErrorDetailModel) SetLocation

func (o *PerrErrorDetailModel) SetLocation(v string)

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*PerrErrorDetailModel) SetMessage

func (o *PerrErrorDetailModel) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (PerrErrorDetailModel) ToMap

func (o PerrErrorDetailModel) ToMap() (map[string]interface{}, error)

type PerrErrorModel

type PerrErrorModel struct {
	// If we don't have required it comes out as pointer and there is a bug in the formatter
	Detail           string                 `json:"detail"`
	Instance         string                 `json:"instance"`
	Status           int32                  `json:"status"`
	Title            string                 `json:"title"`
	Type             string                 `json:"type"`
	ValidationErrors []PerrErrorDetailModel `json:"validation_errors,omitempty"`
}

PerrErrorModel struct for PerrErrorModel

func NewPerrErrorModel

func NewPerrErrorModel(detail string, instance string, status int32, title string, type_ string) *PerrErrorModel

NewPerrErrorModel instantiates a new PerrErrorModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPerrErrorModelWithDefaults

func NewPerrErrorModelWithDefaults() *PerrErrorModel

NewPerrErrorModelWithDefaults instantiates a new PerrErrorModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PerrErrorModel) GetDetail

func (o *PerrErrorModel) GetDetail() string

GetDetail returns the Detail field value

func (*PerrErrorModel) GetDetailOk

func (o *PerrErrorModel) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value and a boolean to check if the value has been set.

func (*PerrErrorModel) GetInstance

func (o *PerrErrorModel) GetInstance() string

GetInstance returns the Instance field value

func (*PerrErrorModel) GetInstanceOk

func (o *PerrErrorModel) GetInstanceOk() (*string, bool)

GetInstanceOk returns a tuple with the Instance field value and a boolean to check if the value has been set.

func (PerrErrorModel) GetResourceType

func (o PerrErrorModel) GetResourceType() string

func (*PerrErrorModel) GetStatus

func (o *PerrErrorModel) GetStatus() int32

GetStatus returns the Status field value

func (*PerrErrorModel) GetStatusOk

func (o *PerrErrorModel) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*PerrErrorModel) GetTitle

func (o *PerrErrorModel) GetTitle() string

GetTitle returns the Title field value

func (*PerrErrorModel) GetTitleOk

func (o *PerrErrorModel) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*PerrErrorModel) GetType

func (o *PerrErrorModel) GetType() string

GetType returns the Type field value

func (*PerrErrorModel) GetTypeOk

func (o *PerrErrorModel) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*PerrErrorModel) GetValidationErrors

func (o *PerrErrorModel) GetValidationErrors() []PerrErrorDetailModel

GetValidationErrors returns the ValidationErrors field value if set, zero value otherwise.

func (*PerrErrorModel) GetValidationErrorsOk

func (o *PerrErrorModel) GetValidationErrorsOk() ([]PerrErrorDetailModel, bool)

GetValidationErrorsOk returns a tuple with the ValidationErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PerrErrorModel) HasValidationErrors

func (o *PerrErrorModel) HasValidationErrors() bool

HasValidationErrors returns a boolean if a field has been set.

func (PerrErrorModel) MarshalJSON

func (o PerrErrorModel) MarshalJSON() ([]byte, error)

func (*PerrErrorModel) SetDetail

func (o *PerrErrorModel) SetDetail(v string)

SetDetail sets field value

func (*PerrErrorModel) SetInstance

func (o *PerrErrorModel) SetInstance(v string)

SetInstance sets field value

func (*PerrErrorModel) SetStatus

func (o *PerrErrorModel) SetStatus(v int32)

SetStatus sets field value

func (*PerrErrorModel) SetTitle

func (o *PerrErrorModel) SetTitle(v string)

SetTitle sets field value

func (*PerrErrorModel) SetType

func (o *PerrErrorModel) SetType(v string)

SetType sets field value

func (*PerrErrorModel) SetValidationErrors

func (o *PerrErrorModel) SetValidationErrors(v []PerrErrorDetailModel)

SetValidationErrors gets a reference to the given []PerrErrorDetailModel and assigns it to the ValidationErrors field.

func (PerrErrorModel) ToMap

func (o PerrErrorModel) ToMap() (map[string]interface{}, error)

type Pipeline

type Pipeline struct {
	Description *string                  `json:"description,omitempty"`
	Name        *string                  `json:"name,omitempty"`
	Outputs     []PipelineOutput         `json:"outputs,omitempty"`
	Steps       []map[string]interface{} `json:"steps,omitempty"`
}

Pipeline struct for Pipeline

func NewPipeline

func NewPipeline() *Pipeline

NewPipeline instantiates a new Pipeline object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPipelineWithDefaults

func NewPipelineWithDefaults() *Pipeline

NewPipelineWithDefaults instantiates a new Pipeline object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Pipeline) GetDescription

func (o *Pipeline) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Pipeline) GetDescriptionOk

func (o *Pipeline) 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 (*Pipeline) GetName

func (o *Pipeline) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Pipeline) GetNameOk

func (o *Pipeline) 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 (*Pipeline) GetOutputs

func (o *Pipeline) GetOutputs() []PipelineOutput

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*Pipeline) GetOutputsOk

func (o *Pipeline) GetOutputsOk() ([]PipelineOutput, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (Pipeline) GetResourceType

func (o Pipeline) GetResourceType() string

func (*Pipeline) GetSteps

func (o *Pipeline) GetSteps() []map[string]interface{}

GetSteps returns the Steps field value if set, zero value otherwise.

func (*Pipeline) GetStepsOk

func (o *Pipeline) GetStepsOk() ([]map[string]interface{}, bool)

GetStepsOk returns a tuple with the Steps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pipeline) HasDescription

func (o *Pipeline) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Pipeline) HasName

func (o *Pipeline) HasName() bool

HasName returns a boolean if a field has been set.

func (*Pipeline) HasOutputs

func (o *Pipeline) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*Pipeline) HasSteps

func (o *Pipeline) HasSteps() bool

HasSteps returns a boolean if a field has been set.

func (Pipeline) MarshalJSON

func (o Pipeline) MarshalJSON() ([]byte, error)

func (*Pipeline) SetDescription

func (o *Pipeline) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Pipeline) SetName

func (o *Pipeline) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Pipeline) SetOutputs

func (o *Pipeline) SetOutputs(v []PipelineOutput)

SetOutputs gets a reference to the given []PipelineOutput and assigns it to the Outputs field.

func (*Pipeline) SetSteps

func (o *Pipeline) SetSteps(v []map[string]interface{})

SetSteps gets a reference to the given []map[string]interface{} and assigns it to the Steps field.

func (Pipeline) ToMap

func (o Pipeline) ToMap() (map[string]interface{}, error)

type PipelineApiCommandRequest

type PipelineApiCommandRequest struct {
	ApiService *PipelineApiService
	// contains filtered or unexported fields
}

func (PipelineApiCommandRequest) Execute

func (PipelineApiCommandRequest) Request

Pipeline command.

type PipelineApiGetRequest

type PipelineApiGetRequest struct {
	ApiService *PipelineApiService
	// contains filtered or unexported fields
}

func (PipelineApiGetRequest) Execute

type PipelineApiListRequest

type PipelineApiListRequest struct {
	ApiService *PipelineApiService
	// contains filtered or unexported fields
}

func (PipelineApiListRequest) Execute

func (PipelineApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (PipelineApiListRequest) NextToken

func (r PipelineApiListRequest) NextToken(nextToken string) PipelineApiListRequest

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type PipelineApiService

type PipelineApiService service

PipelineApiService PipelineApi service

func (*PipelineApiService) Command

func (a *PipelineApiService) Command(ctx context.Context, pipelineName string) PipelineApiCommandRequest

Command Execute a pipeline command

Execute a pipeline command

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pipelineName The name of the pipeline
@return PipelineApiCommandRequest

func (*PipelineApiService) CommandExecute

Execute executes the request

@return PipelineExecutionResponse

func (*PipelineApiService) Get

Get Get pipeline

Get pipeline

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param pipelineName The name of the pipeline
@return PipelineApiGetRequest

func (*PipelineApiService) GetExecute

Execute executes the request

@return FpPipeline

func (*PipelineApiService) List

List List pipelines

Lists pipelines

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return PipelineApiListRequest

func (*PipelineApiService) ListExecute

Execute executes the request

@return ListPipelineResponse

type PipelineExecutionResponse added in v0.5.0

type PipelineExecutionResponse struct {
	Errors   []ModconfigStepError      `json:"errors,omitempty"`
	Flowpipe *FlowpipeResponseMetadata `json:"flowpipe,omitempty"`
	Results  map[string]interface{}    `json:"results,omitempty"`
}

PipelineExecutionResponse struct for PipelineExecutionResponse

func NewPipelineExecutionResponse added in v0.5.0

func NewPipelineExecutionResponse() *PipelineExecutionResponse

NewPipelineExecutionResponse instantiates a new PipelineExecutionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPipelineExecutionResponseWithDefaults added in v0.5.0

func NewPipelineExecutionResponseWithDefaults() *PipelineExecutionResponse

NewPipelineExecutionResponseWithDefaults instantiates a new PipelineExecutionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PipelineExecutionResponse) GetErrors added in v0.5.0

GetErrors returns the Errors field value if set, zero value otherwise.

func (*PipelineExecutionResponse) GetErrorsOk added in v0.5.0

func (o *PipelineExecutionResponse) GetErrorsOk() ([]ModconfigStepError, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PipelineExecutionResponse) GetFlowpipe added in v0.5.0

GetFlowpipe returns the Flowpipe field value if set, zero value otherwise.

func (*PipelineExecutionResponse) GetFlowpipeOk added in v0.5.0

GetFlowpipeOk returns a tuple with the Flowpipe field value if set, nil otherwise and a boolean to check if the value has been set.

func (PipelineExecutionResponse) GetResourceType added in v0.5.0

func (o PipelineExecutionResponse) GetResourceType() string

func (*PipelineExecutionResponse) GetResults added in v0.5.0

func (o *PipelineExecutionResponse) GetResults() map[string]interface{}

GetResults returns the Results field value if set, zero value otherwise.

func (*PipelineExecutionResponse) GetResultsOk added in v0.5.0

func (o *PipelineExecutionResponse) GetResultsOk() (map[string]interface{}, bool)

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PipelineExecutionResponse) HasErrors added in v0.5.0

func (o *PipelineExecutionResponse) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (*PipelineExecutionResponse) HasFlowpipe added in v0.5.0

func (o *PipelineExecutionResponse) HasFlowpipe() bool

HasFlowpipe returns a boolean if a field has been set.

func (*PipelineExecutionResponse) HasResults added in v0.5.0

func (o *PipelineExecutionResponse) HasResults() bool

HasResults returns a boolean if a field has been set.

func (PipelineExecutionResponse) MarshalJSON added in v0.5.0

func (o PipelineExecutionResponse) MarshalJSON() ([]byte, error)

func (*PipelineExecutionResponse) SetErrors added in v0.5.0

SetErrors gets a reference to the given []ModconfigStepError and assigns it to the Errors field.

func (*PipelineExecutionResponse) SetFlowpipe added in v0.5.0

SetFlowpipe gets a reference to the given FlowpipeResponseMetadata and assigns it to the Flowpipe field.

func (*PipelineExecutionResponse) SetResults added in v0.5.0

func (o *PipelineExecutionResponse) SetResults(v map[string]interface{})

SetResults gets a reference to the given map[string]interface{} and assigns it to the Results field.

func (PipelineExecutionResponse) ToMap added in v0.5.0

func (o PipelineExecutionResponse) ToMap() (map[string]interface{}, error)

type PipelineOutput

type PipelineOutput struct {
	DependsOn []string               `json:"depends_on,omitempty"`
	Name      *string                `json:"name,omitempty"`
	Resolved  *bool                  `json:"resolved,omitempty"`
	Sensitive *bool                  `json:"sensitive,omitempty"`
	Value     map[string]interface{} `json:"value,omitempty"`
}

PipelineOutput struct for PipelineOutput

func NewPipelineOutput

func NewPipelineOutput() *PipelineOutput

NewPipelineOutput instantiates a new PipelineOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPipelineOutputWithDefaults

func NewPipelineOutputWithDefaults() *PipelineOutput

NewPipelineOutputWithDefaults instantiates a new PipelineOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PipelineOutput) GetDependsOn

func (o *PipelineOutput) GetDependsOn() []string

GetDependsOn returns the DependsOn field value if set, zero value otherwise.

func (*PipelineOutput) GetDependsOnOk

func (o *PipelineOutput) GetDependsOnOk() ([]string, bool)

GetDependsOnOk returns a tuple with the DependsOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PipelineOutput) GetName

func (o *PipelineOutput) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PipelineOutput) GetNameOk

func (o *PipelineOutput) 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 (*PipelineOutput) GetResolved

func (o *PipelineOutput) GetResolved() bool

GetResolved returns the Resolved field value if set, zero value otherwise.

func (*PipelineOutput) GetResolvedOk

func (o *PipelineOutput) GetResolvedOk() (*bool, bool)

GetResolvedOk returns a tuple with the Resolved field value if set, nil otherwise and a boolean to check if the value has been set.

func (PipelineOutput) GetResourceType

func (o PipelineOutput) GetResourceType() string

func (*PipelineOutput) GetSensitive

func (o *PipelineOutput) GetSensitive() bool

GetSensitive returns the Sensitive field value if set, zero value otherwise.

func (*PipelineOutput) GetSensitiveOk

func (o *PipelineOutput) GetSensitiveOk() (*bool, bool)

GetSensitiveOk returns a tuple with the Sensitive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PipelineOutput) GetValue

func (o *PipelineOutput) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*PipelineOutput) GetValueOk

func (o *PipelineOutput) GetValueOk() (map[string]interface{}, 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 (*PipelineOutput) HasDependsOn

func (o *PipelineOutput) HasDependsOn() bool

HasDependsOn returns a boolean if a field has been set.

func (*PipelineOutput) HasName

func (o *PipelineOutput) HasName() bool

HasName returns a boolean if a field has been set.

func (*PipelineOutput) HasResolved

func (o *PipelineOutput) HasResolved() bool

HasResolved returns a boolean if a field has been set.

func (*PipelineOutput) HasSensitive

func (o *PipelineOutput) HasSensitive() bool

HasSensitive returns a boolean if a field has been set.

func (*PipelineOutput) HasValue

func (o *PipelineOutput) HasValue() bool

HasValue returns a boolean if a field has been set.

func (PipelineOutput) MarshalJSON

func (o PipelineOutput) MarshalJSON() ([]byte, error)

func (*PipelineOutput) SetDependsOn

func (o *PipelineOutput) SetDependsOn(v []string)

SetDependsOn gets a reference to the given []string and assigns it to the DependsOn field.

func (*PipelineOutput) SetName

func (o *PipelineOutput) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PipelineOutput) SetResolved

func (o *PipelineOutput) SetResolved(v bool)

SetResolved gets a reference to the given bool and assigns it to the Resolved field.

func (*PipelineOutput) SetSensitive

func (o *PipelineOutput) SetSensitive(v bool)

SetSensitive gets a reference to the given bool and assigns it to the Sensitive field.

func (*PipelineOutput) SetValue

func (o *PipelineOutput) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (PipelineOutput) ToMap

func (o PipelineOutput) ToMap() (map[string]interface{}, error)

type PipelineStep

type PipelineStep struct {
	DependsOn     []string `json:"depends_on,omitempty"`
	For           *string  `json:"for,omitempty"`
	InputTemplate *string  `json:"input_template,omitempty"`
	Name          *string  `json:"name,omitempty"`
	Type          *string  `json:"type,omitempty"`
}

PipelineStep struct for PipelineStep

func NewPipelineStep

func NewPipelineStep() *PipelineStep

NewPipelineStep instantiates a new PipelineStep object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPipelineStepWithDefaults

func NewPipelineStepWithDefaults() *PipelineStep

NewPipelineStepWithDefaults instantiates a new PipelineStep object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PipelineStep) GetDependsOn

func (o *PipelineStep) GetDependsOn() []string

GetDependsOn returns the DependsOn field value if set, zero value otherwise.

func (*PipelineStep) GetDependsOnOk

func (o *PipelineStep) GetDependsOnOk() ([]string, bool)

GetDependsOnOk returns a tuple with the DependsOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PipelineStep) GetFor

func (o *PipelineStep) GetFor() string

GetFor returns the For field value if set, zero value otherwise.

func (*PipelineStep) GetForOk

func (o *PipelineStep) GetForOk() (*string, bool)

GetForOk returns a tuple with the For field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PipelineStep) GetInputTemplate

func (o *PipelineStep) GetInputTemplate() string

GetInputTemplate returns the InputTemplate field value if set, zero value otherwise.

func (*PipelineStep) GetInputTemplateOk

func (o *PipelineStep) GetInputTemplateOk() (*string, bool)

GetInputTemplateOk returns a tuple with the InputTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PipelineStep) GetName

func (o *PipelineStep) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PipelineStep) GetNameOk

func (o *PipelineStep) 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 (PipelineStep) GetResourceType

func (o PipelineStep) GetResourceType() string

func (*PipelineStep) GetType

func (o *PipelineStep) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PipelineStep) GetTypeOk

func (o *PipelineStep) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PipelineStep) HasDependsOn

func (o *PipelineStep) HasDependsOn() bool

HasDependsOn returns a boolean if a field has been set.

func (*PipelineStep) HasFor

func (o *PipelineStep) HasFor() bool

HasFor returns a boolean if a field has been set.

func (*PipelineStep) HasInputTemplate

func (o *PipelineStep) HasInputTemplate() bool

HasInputTemplate returns a boolean if a field has been set.

func (*PipelineStep) HasName

func (o *PipelineStep) HasName() bool

HasName returns a boolean if a field has been set.

func (*PipelineStep) HasType

func (o *PipelineStep) HasType() bool

HasType returns a boolean if a field has been set.

func (PipelineStep) MarshalJSON

func (o PipelineStep) MarshalJSON() ([]byte, error)

func (*PipelineStep) SetDependsOn

func (o *PipelineStep) SetDependsOn(v []string)

SetDependsOn gets a reference to the given []string and assigns it to the DependsOn field.

func (*PipelineStep) SetFor

func (o *PipelineStep) SetFor(v string)

SetFor gets a reference to the given string and assigns it to the For field.

func (*PipelineStep) SetInputTemplate

func (o *PipelineStep) SetInputTemplate(v string)

SetInputTemplate gets a reference to the given string and assigns it to the InputTemplate field.

func (*PipelineStep) SetName

func (o *PipelineStep) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PipelineStep) SetType

func (o *PipelineStep) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (PipelineStep) ToMap

func (o PipelineStep) ToMap() (map[string]interface{}, error)

type Process

type Process struct {
	CreatedAt   *string `json:"created_at,omitempty"`
	ExecutionId *string `json:"execution_id,omitempty"`
	Pipeline    *string `json:"pipeline,omitempty"`
	Status      *string `json:"status,omitempty"`
}

Process struct for Process

func NewProcess

func NewProcess() *Process

NewProcess instantiates a new Process object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProcessWithDefaults

func NewProcessWithDefaults() *Process

NewProcessWithDefaults instantiates a new Process object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Process) GetCreatedAt

func (o *Process) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Process) GetCreatedAtOk

func (o *Process) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Process) GetExecutionId

func (o *Process) GetExecutionId() string

GetExecutionId returns the ExecutionId field value if set, zero value otherwise.

func (*Process) GetExecutionIdOk

func (o *Process) GetExecutionIdOk() (*string, bool)

GetExecutionIdOk returns a tuple with the ExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Process) GetPipeline

func (o *Process) GetPipeline() string

GetPipeline returns the Pipeline field value if set, zero value otherwise.

func (*Process) GetPipelineOk

func (o *Process) GetPipelineOk() (*string, bool)

GetPipelineOk returns a tuple with the Pipeline field value if set, nil otherwise and a boolean to check if the value has been set.

func (Process) GetResourceType

func (o Process) GetResourceType() string

func (*Process) GetStatus

func (o *Process) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Process) GetStatusOk

func (o *Process) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Process) HasCreatedAt

func (o *Process) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Process) HasExecutionId

func (o *Process) HasExecutionId() bool

HasExecutionId returns a boolean if a field has been set.

func (*Process) HasPipeline

func (o *Process) HasPipeline() bool

HasPipeline returns a boolean if a field has been set.

func (*Process) HasStatus

func (o *Process) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Process) MarshalJSON

func (o Process) MarshalJSON() ([]byte, error)

func (*Process) SetCreatedAt

func (o *Process) SetCreatedAt(v string)

SetCreatedAt gets a reference to the given string and assigns it to the CreatedAt field.

func (*Process) SetExecutionId

func (o *Process) SetExecutionId(v string)

SetExecutionId gets a reference to the given string and assigns it to the ExecutionId field.

func (*Process) SetPipeline

func (o *Process) SetPipeline(v string)

SetPipeline gets a reference to the given string and assigns it to the Pipeline field.

func (*Process) SetStatus

func (o *Process) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (Process) ToMap

func (o Process) ToMap() (map[string]interface{}, error)

type ProcessApiGetExecutionRequest

type ProcessApiGetExecutionRequest struct {
	ApiService *ProcessApiService
	// contains filtered or unexported fields
}

func (ProcessApiGetExecutionRequest) Execute

type ProcessApiGetLogRequest

type ProcessApiGetLogRequest struct {
	ApiService *ProcessApiService
	// contains filtered or unexported fields
}

func (ProcessApiGetLogRequest) Execute

type ProcessApiGetRequest

type ProcessApiGetRequest struct {
	ApiService *ProcessApiService
	// contains filtered or unexported fields
}

func (ProcessApiGetRequest) Execute

func (r ProcessApiGetRequest) Execute() (*Process, *http.Response, error)

type ProcessApiListRequest

type ProcessApiListRequest struct {
	ApiService *ProcessApiService
	// contains filtered or unexported fields
}

func (ProcessApiListRequest) Execute

func (ProcessApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (ProcessApiListRequest) NextToken

func (r ProcessApiListRequest) NextToken(nextToken string) ProcessApiListRequest

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type ProcessApiService

type ProcessApiService service

ProcessApiService ProcessApi service

func (*ProcessApiService) Get

Get Get process

Get process

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param processId The name of the process
@return ProcessApiGetRequest

func (*ProcessApiService) GetExecute

Execute executes the request

@return Process

func (*ProcessApiService) GetExecution

func (a *ProcessApiService) GetExecution(ctx context.Context, processId string) ProcessApiGetExecutionRequest

GetExecution Get process execution

Get process execution

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param processId The name of the process
@return ProcessApiGetExecutionRequest

func (*ProcessApiService) GetExecutionExecute

Execute executes the request

@return ExecutionExecution

func (*ProcessApiService) GetLog

GetLog Get process log

Get process log

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param processId The id of the process
@return ProcessApiGetLogRequest

func (*ProcessApiService) GetLogExecute

Execute executes the request

@return ListProcessLogJSONResponse

func (*ProcessApiService) List

List List processs

Lists processs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ProcessApiListRequest

func (*ProcessApiService) ListExecute

Execute executes the request

@return ListProcessResponse

type ProcessEventLog

type ProcessEventLog struct {
	EventType *string `json:"event_type,omitempty"`
	// Setting the type as string for now, as the CLI need to print the payload
	Payload *string `json:"payload,omitempty"`
	Ts      *string `json:"ts,omitempty"`
}

ProcessEventLog struct for ProcessEventLog

func NewProcessEventLog

func NewProcessEventLog() *ProcessEventLog

NewProcessEventLog instantiates a new ProcessEventLog object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProcessEventLogWithDefaults

func NewProcessEventLogWithDefaults() *ProcessEventLog

NewProcessEventLogWithDefaults instantiates a new ProcessEventLog object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProcessEventLog) GetEventType

func (o *ProcessEventLog) GetEventType() string

GetEventType returns the EventType field value if set, zero value otherwise.

func (*ProcessEventLog) GetEventTypeOk

func (o *ProcessEventLog) GetEventTypeOk() (*string, bool)

GetEventTypeOk returns a tuple with the EventType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProcessEventLog) GetPayload

func (o *ProcessEventLog) GetPayload() string

GetPayload returns the Payload field value if set, zero value otherwise.

func (*ProcessEventLog) GetPayloadOk

func (o *ProcessEventLog) GetPayloadOk() (*string, bool)

GetPayloadOk returns a tuple with the Payload field value if set, nil otherwise and a boolean to check if the value has been set.

func (ProcessEventLog) GetResourceType

func (o ProcessEventLog) GetResourceType() string

func (*ProcessEventLog) GetTs

func (o *ProcessEventLog) GetTs() string

GetTs returns the Ts field value if set, zero value otherwise.

func (*ProcessEventLog) GetTsOk

func (o *ProcessEventLog) GetTsOk() (*string, bool)

GetTsOk returns a tuple with the Ts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProcessEventLog) HasEventType

func (o *ProcessEventLog) HasEventType() bool

HasEventType returns a boolean if a field has been set.

func (*ProcessEventLog) HasPayload

func (o *ProcessEventLog) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*ProcessEventLog) HasTs

func (o *ProcessEventLog) HasTs() bool

HasTs returns a boolean if a field has been set.

func (ProcessEventLog) MarshalJSON

func (o ProcessEventLog) MarshalJSON() ([]byte, error)

func (*ProcessEventLog) SetEventType

func (o *ProcessEventLog) SetEventType(v string)

SetEventType gets a reference to the given string and assigns it to the EventType field.

func (*ProcessEventLog) SetPayload

func (o *ProcessEventLog) SetPayload(v string)

SetPayload gets a reference to the given string and assigns it to the Payload field.

func (*ProcessEventLog) SetTs

func (o *ProcessEventLog) SetTs(v string)

SetTs gets a reference to the given string and assigns it to the Ts field.

func (ProcessEventLog) ToMap

func (o ProcessEventLog) ToMap() (map[string]interface{}, error)

type ProcessOutputData

type ProcessOutputData struct {
	Output    map[string]interface{} `json:"output,omitempty"`
	ProcessId *string                `json:"process_id,omitempty"`
}

ProcessOutputData struct for ProcessOutputData

func NewProcessOutputData

func NewProcessOutputData() *ProcessOutputData

NewProcessOutputData instantiates a new ProcessOutputData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProcessOutputDataWithDefaults

func NewProcessOutputDataWithDefaults() *ProcessOutputData

NewProcessOutputDataWithDefaults instantiates a new ProcessOutputData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProcessOutputData) GetOutput

func (o *ProcessOutputData) GetOutput() map[string]interface{}

GetOutput returns the Output field value if set, zero value otherwise.

func (*ProcessOutputData) GetOutputOk

func (o *ProcessOutputData) GetOutputOk() (map[string]interface{}, bool)

GetOutputOk returns a tuple with the Output field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProcessOutputData) GetProcessId

func (o *ProcessOutputData) GetProcessId() string

GetProcessId returns the ProcessId field value if set, zero value otherwise.

func (*ProcessOutputData) GetProcessIdOk

func (o *ProcessOutputData) GetProcessIdOk() (*string, bool)

GetProcessIdOk returns a tuple with the ProcessId field value if set, nil otherwise and a boolean to check if the value has been set.

func (ProcessOutputData) GetResourceType

func (o ProcessOutputData) GetResourceType() string

func (*ProcessOutputData) HasOutput

func (o *ProcessOutputData) HasOutput() bool

HasOutput returns a boolean if a field has been set.

func (*ProcessOutputData) HasProcessId

func (o *ProcessOutputData) HasProcessId() bool

HasProcessId returns a boolean if a field has been set.

func (ProcessOutputData) MarshalJSON

func (o ProcessOutputData) MarshalJSON() ([]byte, error)

func (*ProcessOutputData) SetOutput

func (o *ProcessOutputData) SetOutput(v map[string]interface{})

SetOutput gets a reference to the given map[string]interface{} and assigns it to the Output field.

func (*ProcessOutputData) SetProcessId

func (o *ProcessOutputData) SetProcessId(v string)

SetProcessId gets a reference to the given string and assigns it to the ProcessId field.

func (ProcessOutputData) ToMap

func (o ProcessOutputData) ToMap() (map[string]interface{}, error)

type Require

type Require struct {
	Flowpipe *FlowpipeRequire       `json:"flowpipe,omitempty"`
	Mods     []ModVersionConstraint `json:"mods,omitempty"`
}

Require struct for Require

func NewRequire

func NewRequire() *Require

NewRequire instantiates a new Require object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRequireWithDefaults

func NewRequireWithDefaults() *Require

NewRequireWithDefaults instantiates a new Require object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Require) GetFlowpipe

func (o *Require) GetFlowpipe() FlowpipeRequire

GetFlowpipe returns the Flowpipe field value if set, zero value otherwise.

func (*Require) GetFlowpipeOk

func (o *Require) GetFlowpipeOk() (*FlowpipeRequire, bool)

GetFlowpipeOk returns a tuple with the Flowpipe field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Require) GetMods

func (o *Require) GetMods() []ModVersionConstraint

GetMods returns the Mods field value if set, zero value otherwise.

func (*Require) GetModsOk

func (o *Require) GetModsOk() ([]ModVersionConstraint, bool)

GetModsOk returns a tuple with the Mods field value if set, nil otherwise and a boolean to check if the value has been set.

func (Require) GetResourceType

func (o Require) GetResourceType() string

func (*Require) HasFlowpipe

func (o *Require) HasFlowpipe() bool

HasFlowpipe returns a boolean if a field has been set.

func (*Require) HasMods

func (o *Require) HasMods() bool

HasMods returns a boolean if a field has been set.

func (Require) MarshalJSON

func (o Require) MarshalJSON() ([]byte, error)

func (*Require) SetFlowpipe

func (o *Require) SetFlowpipe(v FlowpipeRequire)

SetFlowpipe gets a reference to the given FlowpipeRequire and assigns it to the Flowpipe field.

func (*Require) SetMods

func (o *Require) SetMods(v []ModVersionConstraint)

SetMods gets a reference to the given []ModVersionConstraint and assigns it to the Mods field.

func (Require) ToMap

func (o Require) ToMap() (map[string]interface{}, error)

type RunPipelineResponse

type RunPipelineResponse struct {
	ExecutionId           *string `json:"execution_id,omitempty"`
	ParentStepExecutionId *string `json:"parent_step_execution_id,omitempty"`
	PipelineExecutionId   *string `json:"pipeline_execution_id,omitempty"`
}

RunPipelineResponse struct for RunPipelineResponse

func NewRunPipelineResponse

func NewRunPipelineResponse() *RunPipelineResponse

NewRunPipelineResponse instantiates a new RunPipelineResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRunPipelineResponseWithDefaults

func NewRunPipelineResponseWithDefaults() *RunPipelineResponse

NewRunPipelineResponseWithDefaults instantiates a new RunPipelineResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RunPipelineResponse) GetExecutionId

func (o *RunPipelineResponse) GetExecutionId() string

GetExecutionId returns the ExecutionId field value if set, zero value otherwise.

func (*RunPipelineResponse) GetExecutionIdOk

func (o *RunPipelineResponse) GetExecutionIdOk() (*string, bool)

GetExecutionIdOk returns a tuple with the ExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunPipelineResponse) GetParentStepExecutionId

func (o *RunPipelineResponse) GetParentStepExecutionId() string

GetParentStepExecutionId returns the ParentStepExecutionId field value if set, zero value otherwise.

func (*RunPipelineResponse) GetParentStepExecutionIdOk

func (o *RunPipelineResponse) GetParentStepExecutionIdOk() (*string, bool)

GetParentStepExecutionIdOk returns a tuple with the ParentStepExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RunPipelineResponse) GetPipelineExecutionId

func (o *RunPipelineResponse) GetPipelineExecutionId() string

GetPipelineExecutionId returns the PipelineExecutionId field value if set, zero value otherwise.

func (*RunPipelineResponse) GetPipelineExecutionIdOk

func (o *RunPipelineResponse) GetPipelineExecutionIdOk() (*string, bool)

GetPipelineExecutionIdOk returns a tuple with the PipelineExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (RunPipelineResponse) GetResourceType

func (o RunPipelineResponse) GetResourceType() string

func (*RunPipelineResponse) HasExecutionId

func (o *RunPipelineResponse) HasExecutionId() bool

HasExecutionId returns a boolean if a field has been set.

func (*RunPipelineResponse) HasParentStepExecutionId

func (o *RunPipelineResponse) HasParentStepExecutionId() bool

HasParentStepExecutionId returns a boolean if a field has been set.

func (*RunPipelineResponse) HasPipelineExecutionId

func (o *RunPipelineResponse) HasPipelineExecutionId() bool

HasPipelineExecutionId returns a boolean if a field has been set.

func (RunPipelineResponse) MarshalJSON

func (o RunPipelineResponse) MarshalJSON() ([]byte, error)

func (*RunPipelineResponse) SetExecutionId

func (o *RunPipelineResponse) SetExecutionId(v string)

SetExecutionId gets a reference to the given string and assigns it to the ExecutionId field.

func (*RunPipelineResponse) SetParentStepExecutionId

func (o *RunPipelineResponse) SetParentStepExecutionId(v string)

SetParentStepExecutionId gets a reference to the given string and assigns it to the ParentStepExecutionId field.

func (*RunPipelineResponse) SetPipelineExecutionId

func (o *RunPipelineResponse) SetPipelineExecutionId(v string)

SetPipelineExecutionId gets a reference to the given string and assigns it to the PipelineExecutionId field.

func (RunPipelineResponse) ToMap

func (o RunPipelineResponse) ToMap() (map[string]interface{}, error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type StepError

type StepError struct {
	ErrorCode           *int32  `json:"error_code,omitempty"`
	Message             *string `json:"message,omitempty"`
	Pipeline            *string `json:"pipeline,omitempty"`
	PipelineExecutionId *string `json:"pipeline_execution_id,omitempty"`
	Step                *string `json:"step,omitempty"`
	StepExecutionId     *string `json:"step_execution_id,omitempty"`
}

StepError struct for StepError

func NewStepError

func NewStepError() *StepError

NewStepError instantiates a new StepError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStepErrorWithDefaults

func NewStepErrorWithDefaults() *StepError

NewStepErrorWithDefaults instantiates a new StepError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StepError) GetErrorCode

func (o *StepError) GetErrorCode() int32

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*StepError) GetErrorCodeOk

func (o *StepError) GetErrorCodeOk() (*int32, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StepError) GetMessage

func (o *StepError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*StepError) GetMessageOk

func (o *StepError) 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 (*StepError) GetPipeline

func (o *StepError) GetPipeline() string

GetPipeline returns the Pipeline field value if set, zero value otherwise.

func (*StepError) GetPipelineExecutionId

func (o *StepError) GetPipelineExecutionId() string

GetPipelineExecutionId returns the PipelineExecutionId field value if set, zero value otherwise.

func (*StepError) GetPipelineExecutionIdOk

func (o *StepError) GetPipelineExecutionIdOk() (*string, bool)

GetPipelineExecutionIdOk returns a tuple with the PipelineExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StepError) GetPipelineOk

func (o *StepError) GetPipelineOk() (*string, bool)

GetPipelineOk returns a tuple with the Pipeline field value if set, nil otherwise and a boolean to check if the value has been set.

func (StepError) GetResourceType

func (o StepError) GetResourceType() string

func (*StepError) GetStep

func (o *StepError) GetStep() string

GetStep returns the Step field value if set, zero value otherwise.

func (*StepError) GetStepExecutionId

func (o *StepError) GetStepExecutionId() string

GetStepExecutionId returns the StepExecutionId field value if set, zero value otherwise.

func (*StepError) GetStepExecutionIdOk

func (o *StepError) GetStepExecutionIdOk() (*string, bool)

GetStepExecutionIdOk returns a tuple with the StepExecutionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StepError) GetStepOk

func (o *StepError) GetStepOk() (*string, bool)

GetStepOk returns a tuple with the Step field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StepError) HasErrorCode

func (o *StepError) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*StepError) HasMessage

func (o *StepError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*StepError) HasPipeline

func (o *StepError) HasPipeline() bool

HasPipeline returns a boolean if a field has been set.

func (*StepError) HasPipelineExecutionId

func (o *StepError) HasPipelineExecutionId() bool

HasPipelineExecutionId returns a boolean if a field has been set.

func (*StepError) HasStep

func (o *StepError) HasStep() bool

HasStep returns a boolean if a field has been set.

func (*StepError) HasStepExecutionId

func (o *StepError) HasStepExecutionId() bool

HasStepExecutionId returns a boolean if a field has been set.

func (StepError) MarshalJSON

func (o StepError) MarshalJSON() ([]byte, error)

func (*StepError) SetErrorCode

func (o *StepError) SetErrorCode(v int32)

SetErrorCode gets a reference to the given int32 and assigns it to the ErrorCode field.

func (*StepError) SetMessage

func (o *StepError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*StepError) SetPipeline

func (o *StepError) SetPipeline(v string)

SetPipeline gets a reference to the given string and assigns it to the Pipeline field.

func (*StepError) SetPipelineExecutionId

func (o *StepError) SetPipelineExecutionId(v string)

SetPipelineExecutionId gets a reference to the given string and assigns it to the PipelineExecutionId field.

func (*StepError) SetStep

func (o *StepError) SetStep(v string)

SetStep gets a reference to the given string and assigns it to the Step field.

func (*StepError) SetStepExecutionId

func (o *StepError) SetStepExecutionId(v string)

SetStepExecutionId gets a reference to the given string and assigns it to the StepExecutionId field.

func (StepError) ToMap

func (o StepError) ToMap() (map[string]interface{}, error)

type StepForEach

type StepForEach struct {
	ForEachOutput     *Output `json:"for_each_output,omitempty"`
	ForEachTotalCount int32   `json:"for_each_total_count"`
	Index             int32   `json:"index"`
}

StepForEach struct for StepForEach

func NewStepForEach

func NewStepForEach(forEachTotalCount int32, index int32) *StepForEach

NewStepForEach instantiates a new StepForEach object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStepForEachWithDefaults

func NewStepForEachWithDefaults() *StepForEach

NewStepForEachWithDefaults instantiates a new StepForEach object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StepForEach) GetForEachOutput

func (o *StepForEach) GetForEachOutput() Output

GetForEachOutput returns the ForEachOutput field value if set, zero value otherwise.

func (*StepForEach) GetForEachOutputOk

func (o *StepForEach) GetForEachOutputOk() (*Output, bool)

GetForEachOutputOk returns a tuple with the ForEachOutput field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StepForEach) GetForEachTotalCount

func (o *StepForEach) GetForEachTotalCount() int32

GetForEachTotalCount returns the ForEachTotalCount field value

func (*StepForEach) GetForEachTotalCountOk

func (o *StepForEach) GetForEachTotalCountOk() (*int32, bool)

GetForEachTotalCountOk returns a tuple with the ForEachTotalCount field value and a boolean to check if the value has been set.

func (*StepForEach) GetIndex

func (o *StepForEach) GetIndex() int32

GetIndex returns the Index field value

func (*StepForEach) GetIndexOk

func (o *StepForEach) GetIndexOk() (*int32, bool)

GetIndexOk returns a tuple with the Index field value and a boolean to check if the value has been set.

func (StepForEach) GetResourceType

func (o StepForEach) GetResourceType() string

func (*StepForEach) HasForEachOutput

func (o *StepForEach) HasForEachOutput() bool

HasForEachOutput returns a boolean if a field has been set.

func (StepForEach) MarshalJSON

func (o StepForEach) MarshalJSON() ([]byte, error)

func (*StepForEach) SetForEachOutput

func (o *StepForEach) SetForEachOutput(v Output)

SetForEachOutput gets a reference to the given Output and assigns it to the ForEachOutput field.

func (*StepForEach) SetForEachTotalCount

func (o *StepForEach) SetForEachTotalCount(v int32)

SetForEachTotalCount sets field value

func (*StepForEach) SetIndex

func (o *StepForEach) SetIndex(v int32)

SetIndex sets field value

func (StepForEach) ToMap

func (o StepForEach) ToMap() (map[string]interface{}, error)

type Trigger

type Trigger struct {
	Args        map[string]interface{} `json:"args,omitempty"`
	Description *string                `json:"description,omitempty"`
	Name        *string                `json:"name,omitempty"`
}

Trigger struct for Trigger

func NewTrigger

func NewTrigger() *Trigger

NewTrigger instantiates a new Trigger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggerWithDefaults

func NewTriggerWithDefaults() *Trigger

NewTriggerWithDefaults instantiates a new Trigger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Trigger) GetArgs

func (o *Trigger) GetArgs() map[string]interface{}

GetArgs returns the Args field value if set, zero value otherwise.

func (*Trigger) GetArgsOk

func (o *Trigger) GetArgsOk() (map[string]interface{}, bool)

GetArgsOk returns a tuple with the Args field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Trigger) GetDescription

func (o *Trigger) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Trigger) GetDescriptionOk

func (o *Trigger) 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 (*Trigger) GetName

func (o *Trigger) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Trigger) GetNameOk

func (o *Trigger) 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 (Trigger) GetResourceType

func (o Trigger) GetResourceType() string

func (*Trigger) HasArgs

func (o *Trigger) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*Trigger) HasDescription

func (o *Trigger) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Trigger) HasName

func (o *Trigger) HasName() bool

HasName returns a boolean if a field has been set.

func (Trigger) MarshalJSON

func (o Trigger) MarshalJSON() ([]byte, error)

func (*Trigger) SetArgs

func (o *Trigger) SetArgs(v map[string]interface{})

SetArgs gets a reference to the given map[string]interface{} and assigns it to the Args field.

func (*Trigger) SetDescription

func (o *Trigger) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Trigger) SetName

func (o *Trigger) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (Trigger) ToMap

func (o Trigger) ToMap() (map[string]interface{}, error)

type TriggerApiCommandRequest added in v0.5.0

type TriggerApiCommandRequest struct {
	ApiService *TriggerApiService
	// contains filtered or unexported fields
}

func (TriggerApiCommandRequest) Execute added in v0.5.0

func (TriggerApiCommandRequest) Request added in v0.5.0

Trigger command.

type TriggerApiGetRequest

type TriggerApiGetRequest struct {
	ApiService *TriggerApiService
	// contains filtered or unexported fields
}

func (TriggerApiGetRequest) Execute

func (r TriggerApiGetRequest) Execute() (*FpTrigger, *http.Response, error)

type TriggerApiListRequest

type TriggerApiListRequest struct {
	ApiService *TriggerApiService
	// contains filtered or unexported fields
}

func (TriggerApiListRequest) Execute

func (TriggerApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (TriggerApiListRequest) NextToken

func (r TriggerApiListRequest) NextToken(nextToken string) TriggerApiListRequest

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type TriggerApiService

type TriggerApiService service

TriggerApiService TriggerApi service

func (*TriggerApiService) Command added in v0.5.0

func (a *TriggerApiService) Command(ctx context.Context, triggerName string) TriggerApiCommandRequest

Command Execute a trigger command

Execute a trigger command

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param triggerName The name of the trigger
@return TriggerApiCommandRequest

func (*TriggerApiService) CommandExecute added in v0.5.0

Execute executes the request

@return TriggerExecutionResponse

func (*TriggerApiService) Get

func (a *TriggerApiService) Get(ctx context.Context, triggerName string) TriggerApiGetRequest

Get Get trigger

Get trigger

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param triggerName The name of the trigger
@return TriggerApiGetRequest

func (*TriggerApiService) GetExecute

Execute executes the request

@return FpTrigger

func (*TriggerApiService) List

List List triggers

Lists triggers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return TriggerApiListRequest

func (*TriggerApiService) ListExecute

Execute executes the request

@return ListTriggerResponse

type TriggerExecutionResponse added in v0.5.0

type TriggerExecutionResponse struct {
	Flowpipe *FlowpipeTriggerResponseMetadata `json:"flowpipe,omitempty"`
	Results  map[string]interface{}           `json:"results,omitempty"`
}

TriggerExecutionResponse struct for TriggerExecutionResponse

func NewTriggerExecutionResponse added in v0.5.0

func NewTriggerExecutionResponse() *TriggerExecutionResponse

NewTriggerExecutionResponse instantiates a new TriggerExecutionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTriggerExecutionResponseWithDefaults added in v0.5.0

func NewTriggerExecutionResponseWithDefaults() *TriggerExecutionResponse

NewTriggerExecutionResponseWithDefaults instantiates a new TriggerExecutionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TriggerExecutionResponse) GetFlowpipe added in v0.5.0

GetFlowpipe returns the Flowpipe field value if set, zero value otherwise.

func (*TriggerExecutionResponse) GetFlowpipeOk added in v0.5.0

GetFlowpipeOk returns a tuple with the Flowpipe field value if set, nil otherwise and a boolean to check if the value has been set.

func (TriggerExecutionResponse) GetResourceType added in v0.5.0

func (o TriggerExecutionResponse) GetResourceType() string

func (*TriggerExecutionResponse) GetResults added in v0.5.0

func (o *TriggerExecutionResponse) GetResults() map[string]interface{}

GetResults returns the Results field value if set, zero value otherwise.

func (*TriggerExecutionResponse) GetResultsOk added in v0.5.0

func (o *TriggerExecutionResponse) GetResultsOk() (map[string]interface{}, bool)

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerExecutionResponse) HasFlowpipe added in v0.5.0

func (o *TriggerExecutionResponse) HasFlowpipe() bool

HasFlowpipe returns a boolean if a field has been set.

func (*TriggerExecutionResponse) HasResults added in v0.5.0

func (o *TriggerExecutionResponse) HasResults() bool

HasResults returns a boolean if a field has been set.

func (TriggerExecutionResponse) MarshalJSON added in v0.5.0

func (o TriggerExecutionResponse) MarshalJSON() ([]byte, error)

func (*TriggerExecutionResponse) SetFlowpipe added in v0.5.0

SetFlowpipe gets a reference to the given FlowpipeTriggerResponseMetadata and assigns it to the Flowpipe field.

func (*TriggerExecutionResponse) SetResults added in v0.5.0

func (o *TriggerExecutionResponse) SetResults(v map[string]interface{})

SetResults gets a reference to the given map[string]interface{} and assigns it to the Results field.

func (TriggerExecutionResponse) ToMap added in v0.5.0

func (o TriggerExecutionResponse) ToMap() (map[string]interface{}, error)

type Variable

type Variable struct {
	Default     map[string]interface{} `json:"default,omitempty"`
	Description *string                `json:"description,omitempty"`
	Name        *string                `json:"name,omitempty"`
	Type        *string                `json:"type,omitempty"`
	Value       map[string]interface{} `json:"value,omitempty"`
}

Variable struct for 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) GetDefault

func (o *Variable) GetDefault() map[string]interface{}

GetDefault returns the Default field value if set, zero value otherwise.

func (*Variable) GetDefaultOk

func (o *Variable) GetDefaultOk() (map[string]interface{}, bool)

GetDefaultOk returns a tuple with the Default field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Variable) GetDescription

func (o *Variable) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Variable) GetDescriptionOk

func (o *Variable) 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 (*Variable) GetName

func (o *Variable) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Variable) GetNameOk

func (o *Variable) 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 (Variable) GetResourceType

func (o Variable) GetResourceType() string

func (*Variable) GetType

func (o *Variable) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Variable) GetTypeOk

func (o *Variable) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Variable) GetValue

func (o *Variable) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*Variable) GetValueOk

func (o *Variable) GetValueOk() (map[string]interface{}, 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) HasDefault

func (o *Variable) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*Variable) HasDescription

func (o *Variable) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Variable) HasName

func (o *Variable) HasName() bool

HasName returns a boolean if a field has been set.

func (*Variable) HasType

func (o *Variable) HasType() bool

HasType 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) SetDefault

func (o *Variable) SetDefault(v map[string]interface{})

SetDefault gets a reference to the given map[string]interface{} and assigns it to the Default field.

func (*Variable) SetDescription

func (o *Variable) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Variable) SetName

func (o *Variable) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Variable) SetType

func (o *Variable) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Variable) SetValue

func (o *Variable) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (Variable) ToMap

func (o Variable) ToMap() (map[string]interface{}, error)

type VariableApiGetRequest

type VariableApiGetRequest struct {
	ApiService *VariableApiService
	// contains filtered or unexported fields
}

func (VariableApiGetRequest) Execute

type VariableApiListRequest

type VariableApiListRequest struct {
	ApiService *VariableApiService
	// contains filtered or unexported fields
}

func (VariableApiListRequest) Execute

func (VariableApiListRequest) Limit

The max number of items to fetch per page of data, subject to a min and max of 1 and 100 respectively. If not specified will default to 25.

func (VariableApiListRequest) NextToken

func (r VariableApiListRequest) NextToken(nextToken string) VariableApiListRequest

When list results are truncated, next_token will be returned, which is a cursor to fetch the next page of data. Pass next_token to the subsequent list request to fetch the next page of data.

type VariableApiService

type VariableApiService service

VariableApiService VariableApi service

func (*VariableApiService) Get

Get Get variable

Get variable

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param variableName The name of the variable
@return VariableApiGetRequest

func (*VariableApiService) GetExecute

Execute executes the request

@return FpVariable

func (*VariableApiService) List

List List variables

Lists variables

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return VariableApiListRequest

func (*VariableApiService) ListExecute

Execute executes the request

@return ListVariableResponse

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL