airbyte

package module
v0.0.0-...-b635ef4 Latest Latest
Warning

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

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

README

Go API client for airbyte

Airbyte Configuration API https://airbyte.io.

This API is a collection of HTTP RPC-style methods. While it is not a REST API, those familiar with REST should find the conventions of this API recognizable.

Here are some conventions that this API follows:

  • All endpoints are http POST methods.
  • All endpoints accept data via application/json request bodies. The API does not accept any data via query params.
  • The naming convention for endpoints is: localhost:8000/{VERSION}/{METHOD_FAMILY}/{METHOD_NAME} e.g. localhost:8000/v1/connections/create.
  • For all update methods, the whole object must be passed in, even the fields that did not change.

Change Management:

  • The major version of the API endpoint can be determined / specified in the URL localhost:8080/v1/connections/create
  • Minor version bumps will be invisible to the end user. The user cannot specify minor versions in requests.
  • All backwards incompatible changes will happen in major version bumps. We will not make backwards incompatible changes in minor version bumps. Examples of non-breaking changes (includes but not limited to...):
    • Adding fields to request or response bodies.
    • Adding new HTTP endpoints.
  • All web_backend APIs are not considered public APIs and are not guaranteeing backwards compatibility.

Overview

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

  • API version: 1.0.0
  • Package version: 0.0.1
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

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

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

import airbyte "github.com/awill1/airbyte-client-go/airbyte"

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

Documentation for API Endpoints

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

Class Method HTTP request Description
ConnectionApi CreateConnection Post /v1/connections/create Create a connection between a source and a destination
ConnectionApi DeleteConnection Post /v1/connections/delete Delete a connection
ConnectionApi GetConnection Post /v1/connections/get Get a connection
ConnectionApi GetState Post /v1/state/get Fetch the current state for a connection.
ConnectionApi ListAllConnectionsForWorkspace Post /v1/connections/list_all Returns all connections for a workspace, including deleted connections.
ConnectionApi ListConnectionsForWorkspace Post /v1/connections/list Returns all connections for a workspace.
ConnectionApi ResetConnection Post /v1/connections/reset Reset the data for the connection. Deletes data generated by the connection in the destination. Resets any cursors back to initial state.
ConnectionApi SearchConnections Post /v1/connections/search Search connections
ConnectionApi SyncConnection Post /v1/connections/sync Trigger a manual sync of the connection
ConnectionApi UpdateConnection Post /v1/connections/update Update a connection
DbMigrationApi ExecuteMigrations Post /v1/db_migrations/migrate Migrate the database to the latest version
DbMigrationApi ListMigrations Post /v1/db_migrations/list List all database migrations
DeploymentApi ExportArchive Post /v1/deployment/export Export Airbyte Configuration and Data Archive
DeploymentApi ExportWorkspace Post /v1/deployment/export_workspace Export Airbyte Workspace Configuration
DeploymentApi ImportArchive Post /v1/deployment/import Import Airbyte Configuration and Data Archive
DeploymentApi ImportIntoWorkspace Post /v1/deployment/import_into_workspace Import Airbyte Configuration into Workspace (this operation might change ids of imported configurations). Note, in order to use this api endpoint, you might need to upload a temporary archive resource with 'deployment/upload_archive_resource' first
DeploymentApi UploadArchiveResource Post /v1/deployment/upload_archive_resource Upload a GZIP archive tarball and stage it in the server's cache as a temporary resource
DestinationApi CheckConnectionToDestination Post /v1/destinations/check_connection Check connection to the destination
DestinationApi CheckConnectionToDestinationForUpdate Post /v1/destinations/check_connection_for_update Check connection for a proposed update to a destination
DestinationApi CreateDestination Post /v1/destinations/create Create a destination
DestinationApi DeleteDestination Post /v1/destinations/delete Delete the destination
DestinationApi GetDestination Post /v1/destinations/get Get configured destination
DestinationApi ListDestinationsForWorkspace Post /v1/destinations/list List configured destinations for a workspace
DestinationApi SearchDestinations Post /v1/destinations/search Search destinations
DestinationApi UpdateDestination Post /v1/destinations/update Update a destination
DestinationDefinitionApi CreateDestinationDefinition Post /v1/destination_definitions/create Creates a destinationsDefinition
DestinationDefinitionApi DeleteDestinationDefinition Post /v1/destination_definitions/delete Delete a destination definition
DestinationDefinitionApi GetDestinationDefinition Post /v1/destination_definitions/get Get destinationDefinition
DestinationDefinitionApi ListDestinationDefinitions Post /v1/destination_definitions/list List all the destinationDefinitions the current Airbyte deployment is configured to use
DestinationDefinitionApi ListLatestDestinationDefinitions Post /v1/destination_definitions/list_latest List the latest destinationDefinitions Airbyte supports
DestinationDefinitionApi UpdateDestinationDefinition Post /v1/destination_definitions/update Update destinationDefinition
DestinationDefinitionSpecificationApi GetDestinationDefinitionSpecification Post /v1/destination_definition_specifications/get Get specification for a destinationDefinition
HealthApi GetHealthCheck Get /v1/health Health Check
JobsApi CancelJob Post /v1/jobs/cancel Cancels a job
JobsApi GetJobDebugInfo Post /v1/jobs/get_debug_info Gets all information needed to debug this job
JobsApi GetJobInfo Post /v1/jobs/get Get information about a job
JobsApi ListJobsFor Post /v1/jobs/list Returns recent jobs for a connection. Jobs are returned in descending order by createdAt.
LogsApi GetLogs Post /v1/logs/get Get logs
NotificationsApi TryNotificationConfig Post /v1/notifications/try Try sending a notifications
OauthApi CompleteDestinationOAuth Post /v1/destination_oauths/complete_oauth Given a destination def ID generate an access/refresh token etc.
OauthApi CompleteSourceOAuth Post /v1/source_oauths/complete_oauth Given a source def ID generate an access/refresh token etc.
OauthApi GetDestinationOAuthConsent Post /v1/destination_oauths/get_consent_url Given a destination connector definition ID, return the URL to the consent screen where to redirect the user to.
OauthApi GetSourceOAuthConsent Post /v1/source_oauths/get_consent_url Given a source connector definition ID, return the URL to the consent screen where to redirect the user to.
OauthApi SetInstancewideDestinationOauthParams Post /v1/destination_oauths/oauth_params/create Sets instancewide variables to be used for the oauth flow when creating this destination. When set, these variables will be injected into a connector's configuration before any interaction with the connector image itself. This enables running oauth flows with consistent variables e.g: the company's Google Ads developer_token, client_id, and client_secret without the user having to know about these variables.
OauthApi SetInstancewideSourceOauthParams Post /v1/source_oauths/oauth_params/create Sets instancewide variables to be used for the oauth flow when creating this source. When set, these variables will be injected into a connector's configuration before any interaction with the connector image itself. This enables running oauth flows with consistent variables e.g: the company's Google Ads developer_token, client_id, and client_secret without the user having to know about these variables.
OpenapiApi GetOpenApiSpec Get /v1/openapi Returns the openapi specification
OperationApi CheckOperation Post /v1/operations/check Check if an operation to be created is valid
OperationApi CreateOperation Post /v1/operations/create Create an operation to be applied as part of a connection pipeline
OperationApi DeleteOperation Post /v1/operations/delete Delete an operation
OperationApi GetOperation Post /v1/operations/get Returns an operation
OperationApi ListOperationsForConnection Post /v1/operations/list Returns all operations for a connection.
OperationApi UpdateOperation Post /v1/operations/update Update an operation
SchedulerApi ExecuteDestinationCheckConnection Post /v1/scheduler/destinations/check_connection Run check connection for a given destination configuration
SchedulerApi ExecuteSourceCheckConnection Post /v1/scheduler/sources/check_connection Run check connection for a given source configuration
SchedulerApi ExecuteSourceDiscoverSchema Post /v1/scheduler/sources/discover_schema Run discover schema for a given source a source configuration
SourceApi CheckConnectionToSource Post /v1/sources/check_connection Check connection to the source
SourceApi CheckConnectionToSourceForUpdate Post /v1/sources/check_connection_for_update Check connection for a proposed update to a source
SourceApi CreateSource Post /v1/sources/create Create a source
SourceApi DeleteSource Post /v1/sources/delete Delete a source
SourceApi DiscoverSchemaForSource Post /v1/sources/discover_schema Discover the schema catalog of the source
SourceApi GetSource Post /v1/sources/get Get source
SourceApi ListSourcesForWorkspace Post /v1/sources/list List sources for workspace
SourceApi SearchSources Post /v1/sources/search Search sources
SourceApi UpdateSource Post /v1/sources/update Update a source
SourceDefinitionApi CreateSourceDefinition Post /v1/source_definitions/create Creates a sourceDefinition
SourceDefinitionApi DeleteSourceDefinition Post /v1/source_definitions/delete Delete a source definition
SourceDefinitionApi GetSourceDefinition Post /v1/source_definitions/get Get source
SourceDefinitionApi ListLatestSourceDefinitions Post /v1/source_definitions/list_latest List the latest sourceDefinitions Airbyte supports
SourceDefinitionApi ListSourceDefinitions Post /v1/source_definitions/list List all the sourceDefinitions the current Airbyte deployment is configured to use
SourceDefinitionApi UpdateSourceDefinition Post /v1/source_definitions/update Update a sourceDefinition
SourceDefinitionSpecificationApi GetSourceDefinitionSpecification Post /v1/source_definition_specifications/get Get specification for a SourceDefinition.
WebBackendApi WebBackendCreateConnection Post /v1/web_backend/connections/create Create a connection
WebBackendApi WebBackendGetConnection Post /v1/web_backend/connections/get Get a connection
WebBackendApi WebBackendListAllConnectionsForWorkspace Post /v1/web_backend/connections/list_all Returns all connections for a workspace.
WebBackendApi WebBackendListConnectionsForWorkspace Post /v1/web_backend/connections/list Returns all non-deleted connections for a workspace.
WebBackendApi WebBackendSearchConnections Post /v1/web_backend/connections/search Search connections
WebBackendApi WebBackendUpdateConnection Post /v1/web_backend/connections/update Update a connection
WorkspaceApi CreateWorkspace Post /v1/workspaces/create Creates a workspace
WorkspaceApi DeleteWorkspace Post /v1/workspaces/delete Deletes a workspace
WorkspaceApi GetWorkspace Post /v1/workspaces/get Find workspace by ID
WorkspaceApi GetWorkspaceBySlug Post /v1/workspaces/get_by_slug Find workspace by slug
WorkspaceApi ListWorkspaces Post /v1/workspaces/list List all workspaces registered in the current Airbyte deployment
WorkspaceApi UpdateWorkspace Post /v1/workspaces/update Update workspace state
WorkspaceApi UpdateWorkspaceFeedback Post /v1/workspaces/tag_feedback_status_as_done Update workspace feedback state
WorkspaceApi UpdateWorkspaceName Post /v1/workspaces/update_name Update workspace name

Documentation For Models

Documentation For Authorization

bearerAuth
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)

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

contact@airbyte.io

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedAttemptFailureOriginEnumValues = []AttemptFailureOrigin{
	"unknown",
	"source",
	"destination",
	"replication",
	"replication_worker",
	"persistence",
	"normalization",
	"dbt",
}

All allowed values of AttemptFailureOrigin enum

View Source
var AllowedAttemptFailureTypeEnumValues = []AttemptFailureType{
	"unknown",
	"config_error",
	"system_error",
	"manual_cancellation",
}

All allowed values of AttemptFailureType enum

View Source
var AllowedAttemptStatusEnumValues = []AttemptStatus{
	"running",
	"failed",
	"succeeded",
}

All allowed values of AttemptStatus enum

View Source
var AllowedConnectionStatusEnumValues = []ConnectionStatus{
	"active",
	"inactive",
	"deprecated",
}

All allowed values of ConnectionStatus enum

View Source
var AllowedDataTypeEnumValues = []DataType{
	"string",
	"number",
	"boolean",
	"object",
	"array",
}

All allowed values of DataType enum

View Source
var AllowedDbMigrationStateEnumValues = []DbMigrationState{
	"pending",
	"above_target",
	"below_baseline",
	"baseline",
	"ignored",
	"missing_success",
	"missing_failed",
	"success",
	"undone",
	"available",
	"failed",
	"out_of_order",
	"future_success",
	"future_failed",
	"outdated",
	"superseded",
	"deleted",
}

All allowed values of DbMigrationState enum

View Source
var AllowedDestinationSyncModeEnumValues = []DestinationSyncMode{
	"append",
	"overwrite",
	"append_dedup",
}

All allowed values of DestinationSyncMode enum

View Source
var AllowedJobConfigTypeEnumValues = []JobConfigType{
	"check_connection_source",
	"check_connection_destination",
	"discover_schema",
	"get_spec",
	"sync",
	"reset_connection",
}

All allowed values of JobConfigType enum

View Source
var AllowedJobStatusEnumValues = []JobStatus{
	"pending",
	"running",
	"incomplete",
	"failed",
	"succeeded",
	"cancelled",
}

All allowed values of JobStatus enum

View Source
var AllowedLogTypeEnumValues = []LogType{
	"server",
	"scheduler",
}

All allowed values of LogType enum

View Source
var AllowedNamespaceDefinitionTypeEnumValues = []NamespaceDefinitionType{
	"source",
	"destination",
	"customformat",
}

All allowed values of NamespaceDefinitionType enum

View Source
var AllowedNotificationTypeEnumValues = []NotificationType{
	"slack",
}

All allowed values of NotificationType enum

View Source
var AllowedOperatorTypeEnumValues = []OperatorType{
	"normalization",
	"dbt",
}

All allowed values of OperatorType enum

View Source
var AllowedReleaseStageEnumValues = []ReleaseStage{
	"alpha",
	"beta",
	"generally_available",
	"custom",
}

All allowed values of ReleaseStage enum

View Source
var AllowedSyncModeEnumValues = []SyncMode{
	"full_refresh",
	"incremental",
}

All allowed values of SyncMode enum

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ConnectionApi *ConnectionApiService

	DbMigrationApi *DbMigrationApiService

	DeploymentApi *DeploymentApiService

	DestinationApi *DestinationApiService

	DestinationDefinitionApi *DestinationDefinitionApiService

	DestinationDefinitionSpecificationApi *DestinationDefinitionSpecificationApiService

	HealthApi *HealthApiService

	JobsApi *JobsApiService

	LogsApi *LogsApiService

	NotificationsApi *NotificationsApiService

	OauthApi *OauthApiService

	OpenapiApi *OpenapiApiService

	OperationApi *OperationApiService

	SchedulerApi *SchedulerApiService

	SourceApi *SourceApiService

	SourceDefinitionApi *SourceDefinitionApiService

	SourceDefinitionSpecificationApi *SourceDefinitionSpecificationApiService

	WebBackendApi *WebBackendApiService

	WorkspaceApi *WorkspaceApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Airbyte Configuration API API v1.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AdvancedAuth

type AdvancedAuth struct {
	AuthFlowType *string `json:"authFlowType,omitempty"`
	// Json Path to a field in the connectorSpecification that should exist for the advanced auth to be applicable.
	PredicateKey []string `json:"predicateKey,omitempty"`
	// Value of the predicate_key fields for the advanced auth to be applicable.
	PredicateValue           *string                   `json:"predicateValue,omitempty"`
	OauthConfigSpecification *OAuthConfigSpecification `json:"oauthConfigSpecification,omitempty"`
}

AdvancedAuth struct for AdvancedAuth

func NewAdvancedAuth

func NewAdvancedAuth() *AdvancedAuth

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

func NewAdvancedAuthWithDefaults

func NewAdvancedAuthWithDefaults() *AdvancedAuth

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

func (*AdvancedAuth) GetAuthFlowType

func (o *AdvancedAuth) GetAuthFlowType() string

GetAuthFlowType returns the AuthFlowType field value if set, zero value otherwise.

func (*AdvancedAuth) GetAuthFlowTypeOk

func (o *AdvancedAuth) GetAuthFlowTypeOk() (*string, bool)

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

func (*AdvancedAuth) GetOauthConfigSpecification

func (o *AdvancedAuth) GetOauthConfigSpecification() OAuthConfigSpecification

GetOauthConfigSpecification returns the OauthConfigSpecification field value if set, zero value otherwise.

func (*AdvancedAuth) GetOauthConfigSpecificationOk

func (o *AdvancedAuth) GetOauthConfigSpecificationOk() (*OAuthConfigSpecification, bool)

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

func (*AdvancedAuth) GetPredicateKey

func (o *AdvancedAuth) GetPredicateKey() []string

GetPredicateKey returns the PredicateKey field value if set, zero value otherwise.

func (*AdvancedAuth) GetPredicateKeyOk

func (o *AdvancedAuth) GetPredicateKeyOk() ([]string, bool)

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

func (*AdvancedAuth) GetPredicateValue

func (o *AdvancedAuth) GetPredicateValue() string

GetPredicateValue returns the PredicateValue field value if set, zero value otherwise.

func (*AdvancedAuth) GetPredicateValueOk

func (o *AdvancedAuth) GetPredicateValueOk() (*string, bool)

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

func (*AdvancedAuth) HasAuthFlowType

func (o *AdvancedAuth) HasAuthFlowType() bool

HasAuthFlowType returns a boolean if a field has been set.

func (*AdvancedAuth) HasOauthConfigSpecification

func (o *AdvancedAuth) HasOauthConfigSpecification() bool

HasOauthConfigSpecification returns a boolean if a field has been set.

func (*AdvancedAuth) HasPredicateKey

func (o *AdvancedAuth) HasPredicateKey() bool

HasPredicateKey returns a boolean if a field has been set.

func (*AdvancedAuth) HasPredicateValue

func (o *AdvancedAuth) HasPredicateValue() bool

HasPredicateValue returns a boolean if a field has been set.

func (AdvancedAuth) MarshalJSON

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

func (*AdvancedAuth) SetAuthFlowType

func (o *AdvancedAuth) SetAuthFlowType(v string)

SetAuthFlowType gets a reference to the given string and assigns it to the AuthFlowType field.

func (*AdvancedAuth) SetOauthConfigSpecification

func (o *AdvancedAuth) SetOauthConfigSpecification(v OAuthConfigSpecification)

SetOauthConfigSpecification gets a reference to the given OAuthConfigSpecification and assigns it to the OauthConfigSpecification field.

func (*AdvancedAuth) SetPredicateKey

func (o *AdvancedAuth) SetPredicateKey(v []string)

SetPredicateKey gets a reference to the given []string and assigns it to the PredicateKey field.

func (*AdvancedAuth) SetPredicateValue

func (o *AdvancedAuth) SetPredicateValue(v string)

SetPredicateValue gets a reference to the given string and assigns it to the PredicateValue field.

type AirbyteCatalog

type AirbyteCatalog struct {
	Streams []AirbyteStreamAndConfiguration `json:"streams"`
}

AirbyteCatalog describes the available schema (catalog).

func NewAirbyteCatalog

func NewAirbyteCatalog(streams []AirbyteStreamAndConfiguration) *AirbyteCatalog

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

func NewAirbyteCatalogWithDefaults

func NewAirbyteCatalogWithDefaults() *AirbyteCatalog

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

func (*AirbyteCatalog) GetStreams

GetStreams returns the Streams field value

func (*AirbyteCatalog) GetStreamsOk

func (o *AirbyteCatalog) GetStreamsOk() ([]AirbyteStreamAndConfiguration, bool)

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

func (AirbyteCatalog) MarshalJSON

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

func (*AirbyteCatalog) SetStreams

func (o *AirbyteCatalog) SetStreams(v []AirbyteStreamAndConfiguration)

SetStreams sets field value

type AirbyteStream

type AirbyteStream struct {
	// Stream's name.
	Name               string                 `json:"name"`
	JsonSchema         map[string]interface{} `json:"jsonSchema,omitempty"`
	SupportedSyncModes []SyncMode             `json:"supportedSyncModes,omitempty"`
	// If the source defines the cursor field, then any other cursor field inputs will be ignored. If it does not, either the user_provided one is used, or the default one is used as a backup.
	SourceDefinedCursor *bool `json:"sourceDefinedCursor,omitempty"`
	// Path to the field that will be used to determine if a record is new or modified since the last sync. If not provided by the source, the end user will have to specify the comparable themselves.
	DefaultCursorField []string `json:"defaultCursorField,omitempty"`
	// If the source defines the primary key, paths to the fields that will be used as a primary key. If not provided by the source, the end user will have to specify the primary key themselves.
	SourceDefinedPrimaryKey [][]string `json:"sourceDefinedPrimaryKey,omitempty"`
	// Optional Source-defined namespace. Airbyte streams from the same sources should have the same namespace. Currently only used by JDBC destinations to determine what schema to write to.
	Namespace *string `json:"namespace,omitempty"`
}

AirbyteStream the immutable schema defined by the source

func NewAirbyteStream

func NewAirbyteStream(name string) *AirbyteStream

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

func NewAirbyteStreamWithDefaults

func NewAirbyteStreamWithDefaults() *AirbyteStream

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

func (*AirbyteStream) GetDefaultCursorField

func (o *AirbyteStream) GetDefaultCursorField() []string

GetDefaultCursorField returns the DefaultCursorField field value if set, zero value otherwise.

func (*AirbyteStream) GetDefaultCursorFieldOk

func (o *AirbyteStream) GetDefaultCursorFieldOk() ([]string, bool)

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

func (*AirbyteStream) GetJsonSchema

func (o *AirbyteStream) GetJsonSchema() map[string]interface{}

GetJsonSchema returns the JsonSchema field value if set, zero value otherwise.

func (*AirbyteStream) GetJsonSchemaOk

func (o *AirbyteStream) GetJsonSchemaOk() (map[string]interface{}, bool)

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

func (*AirbyteStream) GetName

func (o *AirbyteStream) GetName() string

GetName returns the Name field value

func (*AirbyteStream) GetNameOk

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

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

func (*AirbyteStream) GetNamespace

func (o *AirbyteStream) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*AirbyteStream) GetNamespaceOk

func (o *AirbyteStream) GetNamespaceOk() (*string, bool)

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

func (*AirbyteStream) GetSourceDefinedCursor

func (o *AirbyteStream) GetSourceDefinedCursor() bool

GetSourceDefinedCursor returns the SourceDefinedCursor field value if set, zero value otherwise.

func (*AirbyteStream) GetSourceDefinedCursorOk

func (o *AirbyteStream) GetSourceDefinedCursorOk() (*bool, bool)

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

func (*AirbyteStream) GetSourceDefinedPrimaryKey

func (o *AirbyteStream) GetSourceDefinedPrimaryKey() [][]string

GetSourceDefinedPrimaryKey returns the SourceDefinedPrimaryKey field value if set, zero value otherwise.

func (*AirbyteStream) GetSourceDefinedPrimaryKeyOk

func (o *AirbyteStream) GetSourceDefinedPrimaryKeyOk() ([][]string, bool)

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

func (*AirbyteStream) GetSupportedSyncModes

func (o *AirbyteStream) GetSupportedSyncModes() []SyncMode

GetSupportedSyncModes returns the SupportedSyncModes field value if set, zero value otherwise.

func (*AirbyteStream) GetSupportedSyncModesOk

func (o *AirbyteStream) GetSupportedSyncModesOk() ([]SyncMode, bool)

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

func (*AirbyteStream) HasDefaultCursorField

func (o *AirbyteStream) HasDefaultCursorField() bool

HasDefaultCursorField returns a boolean if a field has been set.

func (*AirbyteStream) HasJsonSchema

func (o *AirbyteStream) HasJsonSchema() bool

HasJsonSchema returns a boolean if a field has been set.

func (*AirbyteStream) HasNamespace

func (o *AirbyteStream) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*AirbyteStream) HasSourceDefinedCursor

func (o *AirbyteStream) HasSourceDefinedCursor() bool

HasSourceDefinedCursor returns a boolean if a field has been set.

func (*AirbyteStream) HasSourceDefinedPrimaryKey

func (o *AirbyteStream) HasSourceDefinedPrimaryKey() bool

HasSourceDefinedPrimaryKey returns a boolean if a field has been set.

func (*AirbyteStream) HasSupportedSyncModes

func (o *AirbyteStream) HasSupportedSyncModes() bool

HasSupportedSyncModes returns a boolean if a field has been set.

func (AirbyteStream) MarshalJSON

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

func (*AirbyteStream) SetDefaultCursorField

func (o *AirbyteStream) SetDefaultCursorField(v []string)

SetDefaultCursorField gets a reference to the given []string and assigns it to the DefaultCursorField field.

func (*AirbyteStream) SetJsonSchema

func (o *AirbyteStream) SetJsonSchema(v map[string]interface{})

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

func (*AirbyteStream) SetName

func (o *AirbyteStream) SetName(v string)

SetName sets field value

func (*AirbyteStream) SetNamespace

func (o *AirbyteStream) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*AirbyteStream) SetSourceDefinedCursor

func (o *AirbyteStream) SetSourceDefinedCursor(v bool)

SetSourceDefinedCursor gets a reference to the given bool and assigns it to the SourceDefinedCursor field.

func (*AirbyteStream) SetSourceDefinedPrimaryKey

func (o *AirbyteStream) SetSourceDefinedPrimaryKey(v [][]string)

SetSourceDefinedPrimaryKey gets a reference to the given [][]string and assigns it to the SourceDefinedPrimaryKey field.

func (*AirbyteStream) SetSupportedSyncModes

func (o *AirbyteStream) SetSupportedSyncModes(v []SyncMode)

SetSupportedSyncModes gets a reference to the given []SyncMode and assigns it to the SupportedSyncModes field.

type AirbyteStreamAndConfiguration

type AirbyteStreamAndConfiguration struct {
	Stream *AirbyteStream              `json:"stream,omitempty"`
	Config *AirbyteStreamConfiguration `json:"config,omitempty"`
}

AirbyteStreamAndConfiguration each stream is split in two parts; the immutable schema from source and mutable configuration for destination

func NewAirbyteStreamAndConfiguration

func NewAirbyteStreamAndConfiguration() *AirbyteStreamAndConfiguration

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

func NewAirbyteStreamAndConfigurationWithDefaults

func NewAirbyteStreamAndConfigurationWithDefaults() *AirbyteStreamAndConfiguration

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

func (*AirbyteStreamAndConfiguration) GetConfig

GetConfig returns the Config field value if set, zero value otherwise.

func (*AirbyteStreamAndConfiguration) GetConfigOk

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

func (*AirbyteStreamAndConfiguration) GetStream

GetStream returns the Stream field value if set, zero value otherwise.

func (*AirbyteStreamAndConfiguration) GetStreamOk

func (o *AirbyteStreamAndConfiguration) GetStreamOk() (*AirbyteStream, bool)

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

func (*AirbyteStreamAndConfiguration) HasConfig

func (o *AirbyteStreamAndConfiguration) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*AirbyteStreamAndConfiguration) HasStream

func (o *AirbyteStreamAndConfiguration) HasStream() bool

HasStream returns a boolean if a field has been set.

func (AirbyteStreamAndConfiguration) MarshalJSON

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

func (*AirbyteStreamAndConfiguration) SetConfig

SetConfig gets a reference to the given AirbyteStreamConfiguration and assigns it to the Config field.

func (*AirbyteStreamAndConfiguration) SetStream

SetStream gets a reference to the given AirbyteStream and assigns it to the Stream field.

type AirbyteStreamConfiguration

type AirbyteStreamConfiguration struct {
	SyncMode SyncMode `json:"syncMode"`
	// Path to the field that will be used to determine if a record is new or modified since the last sync. This field is REQUIRED if `sync_mode` is `incremental`. Otherwise it is ignored.
	CursorField         []string            `json:"cursorField,omitempty"`
	DestinationSyncMode DestinationSyncMode `json:"destinationSyncMode"`
	// Paths to the fields that will be used as primary key. This field is REQUIRED if `destination_sync_mode` is `*_dedup`. Otherwise it is ignored.
	PrimaryKey [][]string `json:"primaryKey,omitempty"`
	// Alias name to the stream to be used in the destination
	AliasName *string `json:"aliasName,omitempty"`
	Selected  *bool   `json:"selected,omitempty"`
}

AirbyteStreamConfiguration the mutable part of the stream to configure the destination

func NewAirbyteStreamConfiguration

func NewAirbyteStreamConfiguration(syncMode SyncMode, destinationSyncMode DestinationSyncMode) *AirbyteStreamConfiguration

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

func NewAirbyteStreamConfigurationWithDefaults

func NewAirbyteStreamConfigurationWithDefaults() *AirbyteStreamConfiguration

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

func (*AirbyteStreamConfiguration) GetAliasName

func (o *AirbyteStreamConfiguration) GetAliasName() string

GetAliasName returns the AliasName field value if set, zero value otherwise.

func (*AirbyteStreamConfiguration) GetAliasNameOk

func (o *AirbyteStreamConfiguration) GetAliasNameOk() (*string, bool)

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

func (*AirbyteStreamConfiguration) GetCursorField

func (o *AirbyteStreamConfiguration) GetCursorField() []string

GetCursorField returns the CursorField field value if set, zero value otherwise.

func (*AirbyteStreamConfiguration) GetCursorFieldOk

func (o *AirbyteStreamConfiguration) GetCursorFieldOk() ([]string, bool)

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

func (*AirbyteStreamConfiguration) GetDestinationSyncMode

func (o *AirbyteStreamConfiguration) GetDestinationSyncMode() DestinationSyncMode

GetDestinationSyncMode returns the DestinationSyncMode field value

func (*AirbyteStreamConfiguration) GetDestinationSyncModeOk

func (o *AirbyteStreamConfiguration) GetDestinationSyncModeOk() (*DestinationSyncMode, bool)

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

func (*AirbyteStreamConfiguration) GetPrimaryKey

func (o *AirbyteStreamConfiguration) GetPrimaryKey() [][]string

GetPrimaryKey returns the PrimaryKey field value if set, zero value otherwise.

func (*AirbyteStreamConfiguration) GetPrimaryKeyOk

func (o *AirbyteStreamConfiguration) GetPrimaryKeyOk() ([][]string, bool)

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

func (*AirbyteStreamConfiguration) GetSelected

func (o *AirbyteStreamConfiguration) GetSelected() bool

GetSelected returns the Selected field value if set, zero value otherwise.

func (*AirbyteStreamConfiguration) GetSelectedOk

func (o *AirbyteStreamConfiguration) GetSelectedOk() (*bool, bool)

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

func (*AirbyteStreamConfiguration) GetSyncMode

func (o *AirbyteStreamConfiguration) GetSyncMode() SyncMode

GetSyncMode returns the SyncMode field value

func (*AirbyteStreamConfiguration) GetSyncModeOk

func (o *AirbyteStreamConfiguration) GetSyncModeOk() (*SyncMode, bool)

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

func (*AirbyteStreamConfiguration) HasAliasName

func (o *AirbyteStreamConfiguration) HasAliasName() bool

HasAliasName returns a boolean if a field has been set.

func (*AirbyteStreamConfiguration) HasCursorField

func (o *AirbyteStreamConfiguration) HasCursorField() bool

HasCursorField returns a boolean if a field has been set.

func (*AirbyteStreamConfiguration) HasPrimaryKey

func (o *AirbyteStreamConfiguration) HasPrimaryKey() bool

HasPrimaryKey returns a boolean if a field has been set.

func (*AirbyteStreamConfiguration) HasSelected

func (o *AirbyteStreamConfiguration) HasSelected() bool

HasSelected returns a boolean if a field has been set.

func (AirbyteStreamConfiguration) MarshalJSON

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

func (*AirbyteStreamConfiguration) SetAliasName

func (o *AirbyteStreamConfiguration) SetAliasName(v string)

SetAliasName gets a reference to the given string and assigns it to the AliasName field.

func (*AirbyteStreamConfiguration) SetCursorField

func (o *AirbyteStreamConfiguration) SetCursorField(v []string)

SetCursorField gets a reference to the given []string and assigns it to the CursorField field.

func (*AirbyteStreamConfiguration) SetDestinationSyncMode

func (o *AirbyteStreamConfiguration) SetDestinationSyncMode(v DestinationSyncMode)

SetDestinationSyncMode sets field value

func (*AirbyteStreamConfiguration) SetPrimaryKey

func (o *AirbyteStreamConfiguration) SetPrimaryKey(v [][]string)

SetPrimaryKey gets a reference to the given [][]string and assigns it to the PrimaryKey field.

func (*AirbyteStreamConfiguration) SetSelected

func (o *AirbyteStreamConfiguration) SetSelected(v bool)

SetSelected gets a reference to the given bool and assigns it to the Selected field.

func (*AirbyteStreamConfiguration) SetSyncMode

func (o *AirbyteStreamConfiguration) SetSyncMode(v SyncMode)

SetSyncMode sets field value

type ApiCancelJobRequest

type ApiCancelJobRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiCancelJobRequest) Execute

func (ApiCancelJobRequest) JobIdRequestBody

func (r ApiCancelJobRequest) JobIdRequestBody(jobIdRequestBody JobIdRequestBody) ApiCancelJobRequest

type ApiCheckConnectionToDestinationForUpdateRequest

type ApiCheckConnectionToDestinationForUpdateRequest struct {
	ApiService *DestinationApiService
	// contains filtered or unexported fields
}

func (ApiCheckConnectionToDestinationForUpdateRequest) DestinationUpdate

func (ApiCheckConnectionToDestinationForUpdateRequest) Execute

type ApiCheckConnectionToDestinationRequest

type ApiCheckConnectionToDestinationRequest struct {
	ApiService *DestinationApiService
	// contains filtered or unexported fields
}

func (ApiCheckConnectionToDestinationRequest) DestinationIdRequestBody

func (ApiCheckConnectionToDestinationRequest) Execute

type ApiCheckConnectionToSourceForUpdateRequest

type ApiCheckConnectionToSourceForUpdateRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiCheckConnectionToSourceForUpdateRequest) Execute

func (ApiCheckConnectionToSourceForUpdateRequest) SourceUpdate

type ApiCheckConnectionToSourceRequest

type ApiCheckConnectionToSourceRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiCheckConnectionToSourceRequest) Execute

func (ApiCheckConnectionToSourceRequest) SourceIdRequestBody

type ApiCheckOperationRequest

type ApiCheckOperationRequest struct {
	ApiService *OperationApiService
	// contains filtered or unexported fields
}

func (ApiCheckOperationRequest) Execute

func (ApiCheckOperationRequest) OperatorConfiguration

func (r ApiCheckOperationRequest) OperatorConfiguration(operatorConfiguration OperatorConfiguration) ApiCheckOperationRequest

type ApiCompleteDestinationOAuthRequest

type ApiCompleteDestinationOAuthRequest struct {
	ApiService *OauthApiService
	// contains filtered or unexported fields
}

func (ApiCompleteDestinationOAuthRequest) CompleteDestinationOAuthRequest

func (r ApiCompleteDestinationOAuthRequest) CompleteDestinationOAuthRequest(completeDestinationOAuthRequest CompleteDestinationOAuthRequest) ApiCompleteDestinationOAuthRequest

func (ApiCompleteDestinationOAuthRequest) Execute

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

type ApiCompleteSourceOAuthRequest

type ApiCompleteSourceOAuthRequest struct {
	ApiService *OauthApiService
	// contains filtered or unexported fields
}

func (ApiCompleteSourceOAuthRequest) CompleteSourceOauthRequest

func (r ApiCompleteSourceOAuthRequest) CompleteSourceOauthRequest(completeSourceOauthRequest CompleteSourceOauthRequest) ApiCompleteSourceOAuthRequest

func (ApiCompleteSourceOAuthRequest) Execute

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

type ApiCreateConnectionRequest

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

func (ApiCreateConnectionRequest) ConnectionCreate

func (r ApiCreateConnectionRequest) ConnectionCreate(connectionCreate ConnectionCreate) ApiCreateConnectionRequest

func (ApiCreateConnectionRequest) Execute

type ApiCreateDestinationDefinitionRequest

type ApiCreateDestinationDefinitionRequest struct {
	ApiService *DestinationDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiCreateDestinationDefinitionRequest) DestinationDefinitionCreate

func (r ApiCreateDestinationDefinitionRequest) DestinationDefinitionCreate(destinationDefinitionCreate DestinationDefinitionCreate) ApiCreateDestinationDefinitionRequest

func (ApiCreateDestinationDefinitionRequest) Execute

type ApiCreateDestinationRequest

type ApiCreateDestinationRequest struct {
	ApiService *DestinationApiService
	// contains filtered or unexported fields
}

func (ApiCreateDestinationRequest) DestinationCreate

func (r ApiCreateDestinationRequest) DestinationCreate(destinationCreate DestinationCreate) ApiCreateDestinationRequest

func (ApiCreateDestinationRequest) Execute

type ApiCreateOperationRequest

type ApiCreateOperationRequest struct {
	ApiService *OperationApiService
	// contains filtered or unexported fields
}

func (ApiCreateOperationRequest) Execute

func (ApiCreateOperationRequest) OperationCreate

func (r ApiCreateOperationRequest) OperationCreate(operationCreate OperationCreate) ApiCreateOperationRequest

type ApiCreateSourceDefinitionRequest

type ApiCreateSourceDefinitionRequest struct {
	ApiService *SourceDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiCreateSourceDefinitionRequest) Execute

func (ApiCreateSourceDefinitionRequest) SourceDefinitionCreate

func (r ApiCreateSourceDefinitionRequest) SourceDefinitionCreate(sourceDefinitionCreate SourceDefinitionCreate) ApiCreateSourceDefinitionRequest

type ApiCreateSourceRequest

type ApiCreateSourceRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiCreateSourceRequest) Execute

func (ApiCreateSourceRequest) SourceCreate

func (r ApiCreateSourceRequest) SourceCreate(sourceCreate SourceCreate) ApiCreateSourceRequest

type ApiCreateWorkspaceRequest

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

func (ApiCreateWorkspaceRequest) Execute

func (ApiCreateWorkspaceRequest) WorkspaceCreate

func (r ApiCreateWorkspaceRequest) WorkspaceCreate(workspaceCreate WorkspaceCreate) ApiCreateWorkspaceRequest

type ApiDeleteConnectionRequest

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

func (ApiDeleteConnectionRequest) ConnectionIdRequestBody

func (r ApiDeleteConnectionRequest) ConnectionIdRequestBody(connectionIdRequestBody ConnectionIdRequestBody) ApiDeleteConnectionRequest

func (ApiDeleteConnectionRequest) Execute

type ApiDeleteDestinationDefinitionRequest

type ApiDeleteDestinationDefinitionRequest struct {
	ApiService *DestinationDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDestinationDefinitionRequest) DestinationDefinitionIdRequestBody

func (r ApiDeleteDestinationDefinitionRequest) DestinationDefinitionIdRequestBody(destinationDefinitionIdRequestBody DestinationDefinitionIdRequestBody) ApiDeleteDestinationDefinitionRequest

func (ApiDeleteDestinationDefinitionRequest) Execute

type ApiDeleteDestinationRequest

type ApiDeleteDestinationRequest struct {
	ApiService *DestinationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDestinationRequest) DestinationIdRequestBody

func (r ApiDeleteDestinationRequest) DestinationIdRequestBody(destinationIdRequestBody DestinationIdRequestBody) ApiDeleteDestinationRequest

func (ApiDeleteDestinationRequest) Execute

type ApiDeleteOperationRequest

type ApiDeleteOperationRequest struct {
	ApiService *OperationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteOperationRequest) Execute

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

func (ApiDeleteOperationRequest) OperationIdRequestBody

func (r ApiDeleteOperationRequest) OperationIdRequestBody(operationIdRequestBody OperationIdRequestBody) ApiDeleteOperationRequest

type ApiDeleteSourceDefinitionRequest

type ApiDeleteSourceDefinitionRequest struct {
	ApiService *SourceDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSourceDefinitionRequest) Execute

func (ApiDeleteSourceDefinitionRequest) SourceDefinitionIdRequestBody

func (r ApiDeleteSourceDefinitionRequest) SourceDefinitionIdRequestBody(sourceDefinitionIdRequestBody SourceDefinitionIdRequestBody) ApiDeleteSourceDefinitionRequest

type ApiDeleteSourceRequest

type ApiDeleteSourceRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSourceRequest) Execute

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

func (ApiDeleteSourceRequest) SourceIdRequestBody

func (r ApiDeleteSourceRequest) SourceIdRequestBody(sourceIdRequestBody SourceIdRequestBody) ApiDeleteSourceRequest

type ApiDeleteWorkspaceRequest

type ApiDeleteWorkspaceRequest struct {
	ApiService *WorkspaceApiService
	// contains filtered or unexported fields
}

func (ApiDeleteWorkspaceRequest) Execute

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

func (ApiDeleteWorkspaceRequest) WorkspaceIdRequestBody

func (r ApiDeleteWorkspaceRequest) WorkspaceIdRequestBody(workspaceIdRequestBody WorkspaceIdRequestBody) ApiDeleteWorkspaceRequest

type ApiDiscoverSchemaForSourceRequest

type ApiDiscoverSchemaForSourceRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiDiscoverSchemaForSourceRequest) Execute

func (ApiDiscoverSchemaForSourceRequest) SourceIdRequestBody

type ApiExecuteDestinationCheckConnectionRequest

type ApiExecuteDestinationCheckConnectionRequest struct {
	ApiService *SchedulerApiService
	// contains filtered or unexported fields
}

func (ApiExecuteDestinationCheckConnectionRequest) DestinationCoreConfig

func (ApiExecuteDestinationCheckConnectionRequest) Execute

type ApiExecuteMigrationsRequest

type ApiExecuteMigrationsRequest struct {
	ApiService *DbMigrationApiService
	// contains filtered or unexported fields
}

func (ApiExecuteMigrationsRequest) DbMigrationRequestBody

func (r ApiExecuteMigrationsRequest) DbMigrationRequestBody(dbMigrationRequestBody DbMigrationRequestBody) ApiExecuteMigrationsRequest

func (ApiExecuteMigrationsRequest) Execute

type ApiExecuteSourceCheckConnectionRequest

type ApiExecuteSourceCheckConnectionRequest struct {
	ApiService *SchedulerApiService
	// contains filtered or unexported fields
}

func (ApiExecuteSourceCheckConnectionRequest) Execute

func (ApiExecuteSourceCheckConnectionRequest) SourceCoreConfig

type ApiExecuteSourceDiscoverSchemaRequest

type ApiExecuteSourceDiscoverSchemaRequest struct {
	ApiService *SchedulerApiService
	// contains filtered or unexported fields
}

func (ApiExecuteSourceDiscoverSchemaRequest) Execute

func (ApiExecuteSourceDiscoverSchemaRequest) SourceCoreConfig

type ApiExportArchiveRequest

type ApiExportArchiveRequest struct {
	ApiService *DeploymentApiService
	// contains filtered or unexported fields
}

func (ApiExportArchiveRequest) Execute

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

type ApiExportWorkspaceRequest

type ApiExportWorkspaceRequest struct {
	ApiService *DeploymentApiService
	// contains filtered or unexported fields
}

func (ApiExportWorkspaceRequest) Execute

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

func (ApiExportWorkspaceRequest) WorkspaceIdRequestBody

func (r ApiExportWorkspaceRequest) WorkspaceIdRequestBody(workspaceIdRequestBody WorkspaceIdRequestBody) ApiExportWorkspaceRequest

type ApiGetConnectionRequest

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

func (ApiGetConnectionRequest) ConnectionIdRequestBody

func (r ApiGetConnectionRequest) ConnectionIdRequestBody(connectionIdRequestBody ConnectionIdRequestBody) ApiGetConnectionRequest

func (ApiGetConnectionRequest) Execute

type ApiGetDestinationDefinitionRequest

type ApiGetDestinationDefinitionRequest struct {
	ApiService *DestinationDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiGetDestinationDefinitionRequest) DestinationDefinitionIdRequestBody

func (r ApiGetDestinationDefinitionRequest) DestinationDefinitionIdRequestBody(destinationDefinitionIdRequestBody DestinationDefinitionIdRequestBody) ApiGetDestinationDefinitionRequest

func (ApiGetDestinationDefinitionRequest) Execute

type ApiGetDestinationDefinitionSpecificationRequest

type ApiGetDestinationDefinitionSpecificationRequest struct {
	ApiService *DestinationDefinitionSpecificationApiService
	// contains filtered or unexported fields
}

func (ApiGetDestinationDefinitionSpecificationRequest) DestinationDefinitionIdRequestBody

func (ApiGetDestinationDefinitionSpecificationRequest) Execute

type ApiGetDestinationOAuthConsentRequest

type ApiGetDestinationOAuthConsentRequest struct {
	ApiService *OauthApiService
	// contains filtered or unexported fields
}

func (ApiGetDestinationOAuthConsentRequest) DestinationOauthConsentRequest

func (r ApiGetDestinationOAuthConsentRequest) DestinationOauthConsentRequest(destinationOauthConsentRequest DestinationOauthConsentRequest) ApiGetDestinationOAuthConsentRequest

func (ApiGetDestinationOAuthConsentRequest) Execute

type ApiGetDestinationRequest

type ApiGetDestinationRequest struct {
	ApiService *DestinationApiService
	// contains filtered or unexported fields
}

func (ApiGetDestinationRequest) DestinationIdRequestBody

func (r ApiGetDestinationRequest) DestinationIdRequestBody(destinationIdRequestBody DestinationIdRequestBody) ApiGetDestinationRequest

func (ApiGetDestinationRequest) Execute

type ApiGetHealthCheckRequest

type ApiGetHealthCheckRequest struct {
	ApiService *HealthApiService
	// contains filtered or unexported fields
}

func (ApiGetHealthCheckRequest) Execute

type ApiGetJobDebugInfoRequest

type ApiGetJobDebugInfoRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiGetJobDebugInfoRequest) Execute

func (ApiGetJobDebugInfoRequest) JobIdRequestBody

func (r ApiGetJobDebugInfoRequest) JobIdRequestBody(jobIdRequestBody JobIdRequestBody) ApiGetJobDebugInfoRequest

type ApiGetJobInfoRequest

type ApiGetJobInfoRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiGetJobInfoRequest) Execute

func (ApiGetJobInfoRequest) JobIdRequestBody

func (r ApiGetJobInfoRequest) JobIdRequestBody(jobIdRequestBody JobIdRequestBody) ApiGetJobInfoRequest

type ApiGetLogsRequest

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

func (ApiGetLogsRequest) Execute

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

func (ApiGetLogsRequest) LogsRequestBody

func (r ApiGetLogsRequest) LogsRequestBody(logsRequestBody LogsRequestBody) ApiGetLogsRequest

type ApiGetOpenApiSpecRequest

type ApiGetOpenApiSpecRequest struct {
	ApiService *OpenapiApiService
	// contains filtered or unexported fields
}

func (ApiGetOpenApiSpecRequest) Execute

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

type ApiGetOperationRequest

type ApiGetOperationRequest struct {
	ApiService *OperationApiService
	// contains filtered or unexported fields
}

func (ApiGetOperationRequest) Execute

func (ApiGetOperationRequest) OperationIdRequestBody

func (r ApiGetOperationRequest) OperationIdRequestBody(operationIdRequestBody OperationIdRequestBody) ApiGetOperationRequest

type ApiGetSourceDefinitionRequest

type ApiGetSourceDefinitionRequest struct {
	ApiService *SourceDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiGetSourceDefinitionRequest) Execute

func (ApiGetSourceDefinitionRequest) SourceDefinitionIdRequestBody

func (r ApiGetSourceDefinitionRequest) SourceDefinitionIdRequestBody(sourceDefinitionIdRequestBody SourceDefinitionIdRequestBody) ApiGetSourceDefinitionRequest

type ApiGetSourceDefinitionSpecificationRequest

type ApiGetSourceDefinitionSpecificationRequest struct {
	ApiService *SourceDefinitionSpecificationApiService
	// contains filtered or unexported fields
}

func (ApiGetSourceDefinitionSpecificationRequest) Execute

func (ApiGetSourceDefinitionSpecificationRequest) SourceDefinitionIdRequestBody

type ApiGetSourceOAuthConsentRequest

type ApiGetSourceOAuthConsentRequest struct {
	ApiService *OauthApiService
	// contains filtered or unexported fields
}

func (ApiGetSourceOAuthConsentRequest) Execute

func (ApiGetSourceOAuthConsentRequest) SourceOauthConsentRequest

func (r ApiGetSourceOAuthConsentRequest) SourceOauthConsentRequest(sourceOauthConsentRequest SourceOauthConsentRequest) ApiGetSourceOAuthConsentRequest

type ApiGetSourceRequest

type ApiGetSourceRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiGetSourceRequest) Execute

func (r ApiGetSourceRequest) Execute() (*SourceRead, *http.Response, error)

func (ApiGetSourceRequest) SourceIdRequestBody

func (r ApiGetSourceRequest) SourceIdRequestBody(sourceIdRequestBody SourceIdRequestBody) ApiGetSourceRequest

type ApiGetStateRequest

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

func (ApiGetStateRequest) ConnectionIdRequestBody

func (r ApiGetStateRequest) ConnectionIdRequestBody(connectionIdRequestBody ConnectionIdRequestBody) ApiGetStateRequest

func (ApiGetStateRequest) Execute

type ApiGetWorkspaceBySlugRequest

type ApiGetWorkspaceBySlugRequest struct {
	ApiService *WorkspaceApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkspaceBySlugRequest) Execute

func (ApiGetWorkspaceBySlugRequest) SlugRequestBody

type ApiGetWorkspaceRequest

type ApiGetWorkspaceRequest struct {
	ApiService *WorkspaceApiService
	// contains filtered or unexported fields
}

func (ApiGetWorkspaceRequest) Execute

func (ApiGetWorkspaceRequest) WorkspaceIdRequestBody

func (r ApiGetWorkspaceRequest) WorkspaceIdRequestBody(workspaceIdRequestBody WorkspaceIdRequestBody) ApiGetWorkspaceRequest

type ApiImportArchiveRequest

type ApiImportArchiveRequest struct {
	ApiService *DeploymentApiService
	// contains filtered or unexported fields
}

func (ApiImportArchiveRequest) Body

func (ApiImportArchiveRequest) Execute

type ApiImportIntoWorkspaceRequest

type ApiImportIntoWorkspaceRequest struct {
	ApiService *DeploymentApiService
	// contains filtered or unexported fields
}

func (ApiImportIntoWorkspaceRequest) Execute

func (ApiImportIntoWorkspaceRequest) ImportRequestBody

func (r ApiImportIntoWorkspaceRequest) ImportRequestBody(importRequestBody ImportRequestBody) ApiImportIntoWorkspaceRequest

type ApiListAllConnectionsForWorkspaceRequest

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

func (ApiListAllConnectionsForWorkspaceRequest) Execute

func (ApiListAllConnectionsForWorkspaceRequest) WorkspaceIdRequestBody

type ApiListConnectionsForWorkspaceRequest

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

func (ApiListConnectionsForWorkspaceRequest) Execute

func (ApiListConnectionsForWorkspaceRequest) WorkspaceIdRequestBody

type ApiListDestinationDefinitionsRequest

type ApiListDestinationDefinitionsRequest struct {
	ApiService *DestinationDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiListDestinationDefinitionsRequest) Execute

type ApiListDestinationsForWorkspaceRequest

type ApiListDestinationsForWorkspaceRequest struct {
	ApiService *DestinationApiService
	// contains filtered or unexported fields
}

func (ApiListDestinationsForWorkspaceRequest) Execute

func (ApiListDestinationsForWorkspaceRequest) WorkspaceIdRequestBody

type ApiListJobsForRequest

type ApiListJobsForRequest struct {
	ApiService *JobsApiService
	// contains filtered or unexported fields
}

func (ApiListJobsForRequest) Execute

func (ApiListJobsForRequest) JobListRequestBody

func (r ApiListJobsForRequest) JobListRequestBody(jobListRequestBody JobListRequestBody) ApiListJobsForRequest

type ApiListLatestDestinationDefinitionsRequest

type ApiListLatestDestinationDefinitionsRequest struct {
	ApiService *DestinationDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiListLatestDestinationDefinitionsRequest) Execute

type ApiListLatestSourceDefinitionsRequest

type ApiListLatestSourceDefinitionsRequest struct {
	ApiService *SourceDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiListLatestSourceDefinitionsRequest) Execute

type ApiListMigrationsRequest

type ApiListMigrationsRequest struct {
	ApiService *DbMigrationApiService
	// contains filtered or unexported fields
}

func (ApiListMigrationsRequest) DbMigrationRequestBody

func (r ApiListMigrationsRequest) DbMigrationRequestBody(dbMigrationRequestBody DbMigrationRequestBody) ApiListMigrationsRequest

func (ApiListMigrationsRequest) Execute

type ApiListOperationsForConnectionRequest

type ApiListOperationsForConnectionRequest struct {
	ApiService *OperationApiService
	// contains filtered or unexported fields
}

func (ApiListOperationsForConnectionRequest) ConnectionIdRequestBody

func (ApiListOperationsForConnectionRequest) Execute

type ApiListSourceDefinitionsRequest

type ApiListSourceDefinitionsRequest struct {
	ApiService *SourceDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiListSourceDefinitionsRequest) Execute

type ApiListSourcesForWorkspaceRequest

type ApiListSourcesForWorkspaceRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiListSourcesForWorkspaceRequest) Execute

func (ApiListSourcesForWorkspaceRequest) WorkspaceIdRequestBody

func (r ApiListSourcesForWorkspaceRequest) WorkspaceIdRequestBody(workspaceIdRequestBody WorkspaceIdRequestBody) ApiListSourcesForWorkspaceRequest

type ApiListWorkspacesRequest

type ApiListWorkspacesRequest struct {
	ApiService *WorkspaceApiService
	// contains filtered or unexported fields
}

func (ApiListWorkspacesRequest) Execute

type ApiResetConnectionRequest

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

func (ApiResetConnectionRequest) ConnectionIdRequestBody

func (r ApiResetConnectionRequest) ConnectionIdRequestBody(connectionIdRequestBody ConnectionIdRequestBody) ApiResetConnectionRequest

func (ApiResetConnectionRequest) Execute

type ApiSearchConnectionsRequest

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

func (ApiSearchConnectionsRequest) ConnectionSearch

func (r ApiSearchConnectionsRequest) ConnectionSearch(connectionSearch ConnectionSearch) ApiSearchConnectionsRequest

func (ApiSearchConnectionsRequest) Execute

type ApiSearchDestinationsRequest

type ApiSearchDestinationsRequest struct {
	ApiService *DestinationApiService
	// contains filtered or unexported fields
}

func (ApiSearchDestinationsRequest) DestinationSearch

func (r ApiSearchDestinationsRequest) DestinationSearch(destinationSearch DestinationSearch) ApiSearchDestinationsRequest

func (ApiSearchDestinationsRequest) Execute

type ApiSearchSourcesRequest

type ApiSearchSourcesRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiSearchSourcesRequest) Execute

func (ApiSearchSourcesRequest) SourceSearch

func (r ApiSearchSourcesRequest) SourceSearch(sourceSearch SourceSearch) ApiSearchSourcesRequest

type ApiSetInstancewideDestinationOauthParamsRequest

type ApiSetInstancewideDestinationOauthParamsRequest struct {
	ApiService *OauthApiService
	// contains filtered or unexported fields
}

func (ApiSetInstancewideDestinationOauthParamsRequest) Execute

func (ApiSetInstancewideDestinationOauthParamsRequest) SetInstancewideDestinationOauthParamsRequestBody

func (r ApiSetInstancewideDestinationOauthParamsRequest) SetInstancewideDestinationOauthParamsRequestBody(setInstancewideDestinationOauthParamsRequestBody SetInstancewideDestinationOauthParamsRequestBody) ApiSetInstancewideDestinationOauthParamsRequest

type ApiSetInstancewideSourceOauthParamsRequest

type ApiSetInstancewideSourceOauthParamsRequest struct {
	ApiService *OauthApiService
	// contains filtered or unexported fields
}

func (ApiSetInstancewideSourceOauthParamsRequest) Execute

func (ApiSetInstancewideSourceOauthParamsRequest) SetInstancewideSourceOauthParamsRequestBody

func (r ApiSetInstancewideSourceOauthParamsRequest) SetInstancewideSourceOauthParamsRequestBody(setInstancewideSourceOauthParamsRequestBody SetInstancewideSourceOauthParamsRequestBody) ApiSetInstancewideSourceOauthParamsRequest

type ApiSyncConnectionRequest

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

func (ApiSyncConnectionRequest) ConnectionIdRequestBody

func (r ApiSyncConnectionRequest) ConnectionIdRequestBody(connectionIdRequestBody ConnectionIdRequestBody) ApiSyncConnectionRequest

func (ApiSyncConnectionRequest) Execute

type ApiTryNotificationConfigRequest

type ApiTryNotificationConfigRequest struct {
	ApiService *NotificationsApiService
	// contains filtered or unexported fields
}

func (ApiTryNotificationConfigRequest) Execute

func (ApiTryNotificationConfigRequest) Notification

type ApiUpdateConnectionRequest

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

func (ApiUpdateConnectionRequest) ConnectionUpdate

func (r ApiUpdateConnectionRequest) ConnectionUpdate(connectionUpdate ConnectionUpdate) ApiUpdateConnectionRequest

func (ApiUpdateConnectionRequest) Execute

type ApiUpdateDestinationDefinitionRequest

type ApiUpdateDestinationDefinitionRequest struct {
	ApiService *DestinationDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDestinationDefinitionRequest) DestinationDefinitionUpdate

func (r ApiUpdateDestinationDefinitionRequest) DestinationDefinitionUpdate(destinationDefinitionUpdate DestinationDefinitionUpdate) ApiUpdateDestinationDefinitionRequest

func (ApiUpdateDestinationDefinitionRequest) Execute

type ApiUpdateDestinationRequest

type ApiUpdateDestinationRequest struct {
	ApiService *DestinationApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDestinationRequest) DestinationUpdate

func (r ApiUpdateDestinationRequest) DestinationUpdate(destinationUpdate DestinationUpdate) ApiUpdateDestinationRequest

func (ApiUpdateDestinationRequest) Execute

type ApiUpdateOperationRequest

type ApiUpdateOperationRequest struct {
	ApiService *OperationApiService
	// contains filtered or unexported fields
}

func (ApiUpdateOperationRequest) Execute

func (ApiUpdateOperationRequest) OperationUpdate

func (r ApiUpdateOperationRequest) OperationUpdate(operationUpdate OperationUpdate) ApiUpdateOperationRequest

type ApiUpdateSourceDefinitionRequest

type ApiUpdateSourceDefinitionRequest struct {
	ApiService *SourceDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSourceDefinitionRequest) Execute

func (ApiUpdateSourceDefinitionRequest) SourceDefinitionUpdate

func (r ApiUpdateSourceDefinitionRequest) SourceDefinitionUpdate(sourceDefinitionUpdate SourceDefinitionUpdate) ApiUpdateSourceDefinitionRequest

type ApiUpdateSourceRequest

type ApiUpdateSourceRequest struct {
	ApiService *SourceApiService
	// contains filtered or unexported fields
}

func (ApiUpdateSourceRequest) Execute

func (ApiUpdateSourceRequest) SourceUpdate

func (r ApiUpdateSourceRequest) SourceUpdate(sourceUpdate SourceUpdate) ApiUpdateSourceRequest

type ApiUpdateWorkspaceFeedbackRequest

type ApiUpdateWorkspaceFeedbackRequest struct {
	ApiService *WorkspaceApiService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkspaceFeedbackRequest) Execute

func (ApiUpdateWorkspaceFeedbackRequest) WorkspaceGiveFeedback

func (r ApiUpdateWorkspaceFeedbackRequest) WorkspaceGiveFeedback(workspaceGiveFeedback WorkspaceGiveFeedback) ApiUpdateWorkspaceFeedbackRequest

type ApiUpdateWorkspaceNameRequest

type ApiUpdateWorkspaceNameRequest struct {
	ApiService *WorkspaceApiService
	// contains filtered or unexported fields
}

func (ApiUpdateWorkspaceNameRequest) Execute

func (ApiUpdateWorkspaceNameRequest) WorkspaceUpdateName

func (r ApiUpdateWorkspaceNameRequest) WorkspaceUpdateName(workspaceUpdateName WorkspaceUpdateName) ApiUpdateWorkspaceNameRequest

type ApiUpdateWorkspaceRequest

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

func (ApiUpdateWorkspaceRequest) Execute

func (ApiUpdateWorkspaceRequest) WorkspaceUpdate

func (r ApiUpdateWorkspaceRequest) WorkspaceUpdate(workspaceUpdate WorkspaceUpdate) ApiUpdateWorkspaceRequest

type ApiUploadArchiveResourceRequest

type ApiUploadArchiveResourceRequest struct {
	ApiService *DeploymentApiService
	// contains filtered or unexported fields
}

func (ApiUploadArchiveResourceRequest) Body

func (ApiUploadArchiveResourceRequest) Execute

type ApiWebBackendCreateConnectionRequest

type ApiWebBackendCreateConnectionRequest struct {
	ApiService *WebBackendApiService
	// contains filtered or unexported fields
}

func (ApiWebBackendCreateConnectionRequest) Execute

func (ApiWebBackendCreateConnectionRequest) WebBackendConnectionCreate

func (r ApiWebBackendCreateConnectionRequest) WebBackendConnectionCreate(webBackendConnectionCreate WebBackendConnectionCreate) ApiWebBackendCreateConnectionRequest

type ApiWebBackendGetConnectionRequest

type ApiWebBackendGetConnectionRequest struct {
	ApiService *WebBackendApiService
	// contains filtered or unexported fields
}

func (ApiWebBackendGetConnectionRequest) Execute

func (ApiWebBackendGetConnectionRequest) WebBackendConnectionRequestBody

func (r ApiWebBackendGetConnectionRequest) WebBackendConnectionRequestBody(webBackendConnectionRequestBody WebBackendConnectionRequestBody) ApiWebBackendGetConnectionRequest

type ApiWebBackendListAllConnectionsForWorkspaceRequest

type ApiWebBackendListAllConnectionsForWorkspaceRequest struct {
	ApiService *WebBackendApiService
	// contains filtered or unexported fields
}

func (ApiWebBackendListAllConnectionsForWorkspaceRequest) Execute

func (ApiWebBackendListAllConnectionsForWorkspaceRequest) WorkspaceIdRequestBody

type ApiWebBackendListConnectionsForWorkspaceRequest

type ApiWebBackendListConnectionsForWorkspaceRequest struct {
	ApiService *WebBackendApiService
	// contains filtered or unexported fields
}

func (ApiWebBackendListConnectionsForWorkspaceRequest) Execute

func (ApiWebBackendListConnectionsForWorkspaceRequest) WorkspaceIdRequestBody

type ApiWebBackendSearchConnectionsRequest

type ApiWebBackendSearchConnectionsRequest struct {
	ApiService *WebBackendApiService
	// contains filtered or unexported fields
}

func (ApiWebBackendSearchConnectionsRequest) Execute

func (ApiWebBackendSearchConnectionsRequest) WebBackendConnectionSearch

func (r ApiWebBackendSearchConnectionsRequest) WebBackendConnectionSearch(webBackendConnectionSearch WebBackendConnectionSearch) ApiWebBackendSearchConnectionsRequest

type ApiWebBackendUpdateConnectionRequest

type ApiWebBackendUpdateConnectionRequest struct {
	ApiService *WebBackendApiService
	// contains filtered or unexported fields
}

func (ApiWebBackendUpdateConnectionRequest) Execute

func (ApiWebBackendUpdateConnectionRequest) WebBackendConnectionUpdate

func (r ApiWebBackendUpdateConnectionRequest) WebBackendConnectionUpdate(webBackendConnectionUpdate WebBackendConnectionUpdate) ApiWebBackendUpdateConnectionRequest

type AttemptFailureOrigin

type AttemptFailureOrigin string

AttemptFailureOrigin Indicates where the error originated. If not set, the origin of error is not well known.

const (
	ATTEMPTFAILUREORIGIN_UNKNOWN            AttemptFailureOrigin = "unknown"
	ATTEMPTFAILUREORIGIN_SOURCE             AttemptFailureOrigin = "source"
	ATTEMPTFAILUREORIGIN_DESTINATION        AttemptFailureOrigin = "destination"
	ATTEMPTFAILUREORIGIN_REPLICATION        AttemptFailureOrigin = "replication"
	ATTEMPTFAILUREORIGIN_REPLICATION_WORKER AttemptFailureOrigin = "replication_worker"
	ATTEMPTFAILUREORIGIN_PERSISTENCE        AttemptFailureOrigin = "persistence"
	ATTEMPTFAILUREORIGIN_NORMALIZATION      AttemptFailureOrigin = "normalization"
	ATTEMPTFAILUREORIGIN_DBT                AttemptFailureOrigin = "dbt"
)

List of AttemptFailureOrigin

func NewAttemptFailureOriginFromValue

func NewAttemptFailureOriginFromValue(v string) (*AttemptFailureOrigin, error)

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

func (AttemptFailureOrigin) IsValid

func (v AttemptFailureOrigin) IsValid() bool

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

func (AttemptFailureOrigin) Ptr

Ptr returns reference to AttemptFailureOrigin value

func (*AttemptFailureOrigin) UnmarshalJSON

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

type AttemptFailureReason

type AttemptFailureReason struct {
	FailureOrigin   *AttemptFailureOrigin `json:"failureOrigin,omitempty"`
	FailureType     *AttemptFailureType   `json:"failureType,omitempty"`
	ExternalMessage *string               `json:"externalMessage,omitempty"`
	Stacktrace      *string               `json:"stacktrace,omitempty"`
	// True if it is known that retrying may succeed, e.g. for a transient failure. False if it is known that a retry will not succeed, e.g. for a configuration issue. If not set, retryable status is not well known.
	Retryable *bool `json:"retryable,omitempty"`
	Timestamp int64 `json:"timestamp"`
}

AttemptFailureReason struct for AttemptFailureReason

func NewAttemptFailureReason

func NewAttemptFailureReason(timestamp int64) *AttemptFailureReason

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

func NewAttemptFailureReasonWithDefaults

func NewAttemptFailureReasonWithDefaults() *AttemptFailureReason

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

func (*AttemptFailureReason) GetExternalMessage

func (o *AttemptFailureReason) GetExternalMessage() string

GetExternalMessage returns the ExternalMessage field value if set, zero value otherwise.

func (*AttemptFailureReason) GetExternalMessageOk

func (o *AttemptFailureReason) GetExternalMessageOk() (*string, bool)

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

func (*AttemptFailureReason) GetFailureOrigin

func (o *AttemptFailureReason) GetFailureOrigin() AttemptFailureOrigin

GetFailureOrigin returns the FailureOrigin field value if set, zero value otherwise.

func (*AttemptFailureReason) GetFailureOriginOk

func (o *AttemptFailureReason) GetFailureOriginOk() (*AttemptFailureOrigin, bool)

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

func (*AttemptFailureReason) GetFailureType

func (o *AttemptFailureReason) GetFailureType() AttemptFailureType

GetFailureType returns the FailureType field value if set, zero value otherwise.

func (*AttemptFailureReason) GetFailureTypeOk

func (o *AttemptFailureReason) GetFailureTypeOk() (*AttemptFailureType, bool)

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

func (*AttemptFailureReason) GetRetryable

func (o *AttemptFailureReason) GetRetryable() bool

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

func (*AttemptFailureReason) GetRetryableOk

func (o *AttemptFailureReason) 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 (*AttemptFailureReason) GetStacktrace

func (o *AttemptFailureReason) GetStacktrace() string

GetStacktrace returns the Stacktrace field value if set, zero value otherwise.

func (*AttemptFailureReason) GetStacktraceOk

func (o *AttemptFailureReason) GetStacktraceOk() (*string, bool)

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

func (*AttemptFailureReason) GetTimestamp

func (o *AttemptFailureReason) GetTimestamp() int64

GetTimestamp returns the Timestamp field value

func (*AttemptFailureReason) GetTimestampOk

func (o *AttemptFailureReason) GetTimestampOk() (*int64, bool)

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

func (*AttemptFailureReason) HasExternalMessage

func (o *AttemptFailureReason) HasExternalMessage() bool

HasExternalMessage returns a boolean if a field has been set.

func (*AttemptFailureReason) HasFailureOrigin

func (o *AttemptFailureReason) HasFailureOrigin() bool

HasFailureOrigin returns a boolean if a field has been set.

func (*AttemptFailureReason) HasFailureType

func (o *AttemptFailureReason) HasFailureType() bool

HasFailureType returns a boolean if a field has been set.

func (*AttemptFailureReason) HasRetryable

func (o *AttemptFailureReason) HasRetryable() bool

HasRetryable returns a boolean if a field has been set.

func (*AttemptFailureReason) HasStacktrace

func (o *AttemptFailureReason) HasStacktrace() bool

HasStacktrace returns a boolean if a field has been set.

func (AttemptFailureReason) MarshalJSON

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

func (*AttemptFailureReason) SetExternalMessage

func (o *AttemptFailureReason) SetExternalMessage(v string)

SetExternalMessage gets a reference to the given string and assigns it to the ExternalMessage field.

func (*AttemptFailureReason) SetFailureOrigin

func (o *AttemptFailureReason) SetFailureOrigin(v AttemptFailureOrigin)

SetFailureOrigin gets a reference to the given AttemptFailureOrigin and assigns it to the FailureOrigin field.

func (*AttemptFailureReason) SetFailureType

func (o *AttemptFailureReason) SetFailureType(v AttemptFailureType)

SetFailureType gets a reference to the given AttemptFailureType and assigns it to the FailureType field.

func (*AttemptFailureReason) SetRetryable

func (o *AttemptFailureReason) SetRetryable(v bool)

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

func (*AttemptFailureReason) SetStacktrace

func (o *AttemptFailureReason) SetStacktrace(v string)

SetStacktrace gets a reference to the given string and assigns it to the Stacktrace field.

func (*AttemptFailureReason) SetTimestamp

func (o *AttemptFailureReason) SetTimestamp(v int64)

SetTimestamp sets field value

type AttemptFailureSummary

type AttemptFailureSummary struct {
	Failures []AttemptFailureReason `json:"failures"`
	// True if the number of committed records for this attempt was greater than 0. False if 0 records were committed. If not set, the number of committed records is unknown.
	PartialSuccess *bool `json:"partialSuccess,omitempty"`
}

AttemptFailureSummary struct for AttemptFailureSummary

func NewAttemptFailureSummary

func NewAttemptFailureSummary(failures []AttemptFailureReason) *AttemptFailureSummary

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

func NewAttemptFailureSummaryWithDefaults

func NewAttemptFailureSummaryWithDefaults() *AttemptFailureSummary

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

func (*AttemptFailureSummary) GetFailures

func (o *AttemptFailureSummary) GetFailures() []AttemptFailureReason

GetFailures returns the Failures field value

func (*AttemptFailureSummary) GetFailuresOk

func (o *AttemptFailureSummary) GetFailuresOk() ([]AttemptFailureReason, bool)

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

func (*AttemptFailureSummary) GetPartialSuccess

func (o *AttemptFailureSummary) GetPartialSuccess() bool

GetPartialSuccess returns the PartialSuccess field value if set, zero value otherwise.

func (*AttemptFailureSummary) GetPartialSuccessOk

func (o *AttemptFailureSummary) GetPartialSuccessOk() (*bool, bool)

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

func (*AttemptFailureSummary) HasPartialSuccess

func (o *AttemptFailureSummary) HasPartialSuccess() bool

HasPartialSuccess returns a boolean if a field has been set.

func (AttemptFailureSummary) MarshalJSON

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

func (*AttemptFailureSummary) SetFailures

func (o *AttemptFailureSummary) SetFailures(v []AttemptFailureReason)

SetFailures sets field value

func (*AttemptFailureSummary) SetPartialSuccess

func (o *AttemptFailureSummary) SetPartialSuccess(v bool)

SetPartialSuccess gets a reference to the given bool and assigns it to the PartialSuccess field.

type AttemptFailureType

type AttemptFailureType string

AttemptFailureType Categorizes well known errors into types for programmatic handling. If not set, the type of error is not well known.

const (
	ATTEMPTFAILURETYPE_UNKNOWN             AttemptFailureType = "unknown"
	ATTEMPTFAILURETYPE_CONFIG_ERROR        AttemptFailureType = "config_error"
	ATTEMPTFAILURETYPE_SYSTEM_ERROR        AttemptFailureType = "system_error"
	ATTEMPTFAILURETYPE_MANUAL_CANCELLATION AttemptFailureType = "manual_cancellation"
)

List of AttemptFailureType

func NewAttemptFailureTypeFromValue

func NewAttemptFailureTypeFromValue(v string) (*AttemptFailureType, error)

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

func (AttemptFailureType) IsValid

func (v AttemptFailureType) IsValid() bool

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

func (AttemptFailureType) Ptr

Ptr returns reference to AttemptFailureType value

func (*AttemptFailureType) UnmarshalJSON

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

type AttemptInfoRead

type AttemptInfoRead struct {
	Attempt AttemptRead `json:"attempt"`
	Logs    LogRead     `json:"logs"`
}

AttemptInfoRead struct for AttemptInfoRead

func NewAttemptInfoRead

func NewAttemptInfoRead(attempt AttemptRead, logs LogRead) *AttemptInfoRead

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

func NewAttemptInfoReadWithDefaults

func NewAttemptInfoReadWithDefaults() *AttemptInfoRead

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

func (*AttemptInfoRead) GetAttempt

func (o *AttemptInfoRead) GetAttempt() AttemptRead

GetAttempt returns the Attempt field value

func (*AttemptInfoRead) GetAttemptOk

func (o *AttemptInfoRead) GetAttemptOk() (*AttemptRead, bool)

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

func (*AttemptInfoRead) GetLogs

func (o *AttemptInfoRead) GetLogs() LogRead

GetLogs returns the Logs field value

func (*AttemptInfoRead) GetLogsOk

func (o *AttemptInfoRead) GetLogsOk() (*LogRead, bool)

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

func (AttemptInfoRead) MarshalJSON

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

func (*AttemptInfoRead) SetAttempt

func (o *AttemptInfoRead) SetAttempt(v AttemptRead)

SetAttempt sets field value

func (*AttemptInfoRead) SetLogs

func (o *AttemptInfoRead) SetLogs(v LogRead)

SetLogs sets field value

type AttemptRead

type AttemptRead struct {
	Id             int64                  `json:"id"`
	Status         AttemptStatus          `json:"status"`
	CreatedAt      int64                  `json:"createdAt"`
	UpdatedAt      int64                  `json:"updatedAt"`
	EndedAt        *int64                 `json:"endedAt,omitempty"`
	BytesSynced    *int64                 `json:"bytesSynced,omitempty"`
	RecordsSynced  *int64                 `json:"recordsSynced,omitempty"`
	TotalStats     *AttemptStats          `json:"totalStats,omitempty"`
	StreamStats    []AttemptStreamStats   `json:"streamStats,omitempty"`
	FailureSummary *AttemptFailureSummary `json:"failureSummary,omitempty"`
}

AttemptRead struct for AttemptRead

func NewAttemptRead

func NewAttemptRead(id int64, status AttemptStatus, createdAt int64, updatedAt int64) *AttemptRead

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

func NewAttemptReadWithDefaults

func NewAttemptReadWithDefaults() *AttemptRead

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

func (*AttemptRead) GetBytesSynced

func (o *AttemptRead) GetBytesSynced() int64

GetBytesSynced returns the BytesSynced field value if set, zero value otherwise.

func (*AttemptRead) GetBytesSyncedOk

func (o *AttemptRead) GetBytesSyncedOk() (*int64, bool)

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

func (*AttemptRead) GetCreatedAt

func (o *AttemptRead) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*AttemptRead) GetCreatedAtOk

func (o *AttemptRead) GetCreatedAtOk() (*int64, bool)

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

func (*AttemptRead) GetEndedAt

func (o *AttemptRead) GetEndedAt() int64

GetEndedAt returns the EndedAt field value if set, zero value otherwise.

func (*AttemptRead) GetEndedAtOk

func (o *AttemptRead) GetEndedAtOk() (*int64, bool)

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

func (*AttemptRead) GetFailureSummary

func (o *AttemptRead) GetFailureSummary() AttemptFailureSummary

GetFailureSummary returns the FailureSummary field value if set, zero value otherwise.

func (*AttemptRead) GetFailureSummaryOk

func (o *AttemptRead) GetFailureSummaryOk() (*AttemptFailureSummary, bool)

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

func (*AttemptRead) GetId

func (o *AttemptRead) GetId() int64

GetId returns the Id field value

func (*AttemptRead) GetIdOk

func (o *AttemptRead) GetIdOk() (*int64, bool)

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

func (*AttemptRead) GetRecordsSynced

func (o *AttemptRead) GetRecordsSynced() int64

GetRecordsSynced returns the RecordsSynced field value if set, zero value otherwise.

func (*AttemptRead) GetRecordsSyncedOk

func (o *AttemptRead) GetRecordsSyncedOk() (*int64, bool)

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

func (*AttemptRead) GetStatus

func (o *AttemptRead) GetStatus() AttemptStatus

GetStatus returns the Status field value

func (*AttemptRead) GetStatusOk

func (o *AttemptRead) GetStatusOk() (*AttemptStatus, bool)

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

func (*AttemptRead) GetStreamStats

func (o *AttemptRead) GetStreamStats() []AttemptStreamStats

GetStreamStats returns the StreamStats field value if set, zero value otherwise.

func (*AttemptRead) GetStreamStatsOk

func (o *AttemptRead) GetStreamStatsOk() ([]AttemptStreamStats, bool)

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

func (*AttemptRead) GetTotalStats

func (o *AttemptRead) GetTotalStats() AttemptStats

GetTotalStats returns the TotalStats field value if set, zero value otherwise.

func (*AttemptRead) GetTotalStatsOk

func (o *AttemptRead) GetTotalStatsOk() (*AttemptStats, bool)

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

func (*AttemptRead) GetUpdatedAt

func (o *AttemptRead) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*AttemptRead) GetUpdatedAtOk

func (o *AttemptRead) GetUpdatedAtOk() (*int64, bool)

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

func (*AttemptRead) HasBytesSynced

func (o *AttemptRead) HasBytesSynced() bool

HasBytesSynced returns a boolean if a field has been set.

func (*AttemptRead) HasEndedAt

func (o *AttemptRead) HasEndedAt() bool

HasEndedAt returns a boolean if a field has been set.

func (*AttemptRead) HasFailureSummary

func (o *AttemptRead) HasFailureSummary() bool

HasFailureSummary returns a boolean if a field has been set.

func (*AttemptRead) HasRecordsSynced

func (o *AttemptRead) HasRecordsSynced() bool

HasRecordsSynced returns a boolean if a field has been set.

func (*AttemptRead) HasStreamStats

func (o *AttemptRead) HasStreamStats() bool

HasStreamStats returns a boolean if a field has been set.

func (*AttemptRead) HasTotalStats

func (o *AttemptRead) HasTotalStats() bool

HasTotalStats returns a boolean if a field has been set.

func (AttemptRead) MarshalJSON

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

func (*AttemptRead) SetBytesSynced

func (o *AttemptRead) SetBytesSynced(v int64)

SetBytesSynced gets a reference to the given int64 and assigns it to the BytesSynced field.

func (*AttemptRead) SetCreatedAt

func (o *AttemptRead) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*AttemptRead) SetEndedAt

func (o *AttemptRead) SetEndedAt(v int64)

SetEndedAt gets a reference to the given int64 and assigns it to the EndedAt field.

func (*AttemptRead) SetFailureSummary

func (o *AttemptRead) SetFailureSummary(v AttemptFailureSummary)

SetFailureSummary gets a reference to the given AttemptFailureSummary and assigns it to the FailureSummary field.

func (*AttemptRead) SetId

func (o *AttemptRead) SetId(v int64)

SetId sets field value

func (*AttemptRead) SetRecordsSynced

func (o *AttemptRead) SetRecordsSynced(v int64)

SetRecordsSynced gets a reference to the given int64 and assigns it to the RecordsSynced field.

func (*AttemptRead) SetStatus

func (o *AttemptRead) SetStatus(v AttemptStatus)

SetStatus sets field value

func (*AttemptRead) SetStreamStats

func (o *AttemptRead) SetStreamStats(v []AttemptStreamStats)

SetStreamStats gets a reference to the given []AttemptStreamStats and assigns it to the StreamStats field.

func (*AttemptRead) SetTotalStats

func (o *AttemptRead) SetTotalStats(v AttemptStats)

SetTotalStats gets a reference to the given AttemptStats and assigns it to the TotalStats field.

func (*AttemptRead) SetUpdatedAt

func (o *AttemptRead) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

type AttemptStats

type AttemptStats struct {
	RecordsEmitted       *int64 `json:"recordsEmitted,omitempty"`
	BytesEmitted         *int64 `json:"bytesEmitted,omitempty"`
	StateMessagesEmitted *int64 `json:"stateMessagesEmitted,omitempty"`
	RecordsCommitted     *int64 `json:"recordsCommitted,omitempty"`
}

AttemptStats struct for AttemptStats

func NewAttemptStats

func NewAttemptStats() *AttemptStats

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

func NewAttemptStatsWithDefaults

func NewAttemptStatsWithDefaults() *AttemptStats

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

func (*AttemptStats) GetBytesEmitted

func (o *AttemptStats) GetBytesEmitted() int64

GetBytesEmitted returns the BytesEmitted field value if set, zero value otherwise.

func (*AttemptStats) GetBytesEmittedOk

func (o *AttemptStats) GetBytesEmittedOk() (*int64, bool)

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

func (*AttemptStats) GetRecordsCommitted

func (o *AttemptStats) GetRecordsCommitted() int64

GetRecordsCommitted returns the RecordsCommitted field value if set, zero value otherwise.

func (*AttemptStats) GetRecordsCommittedOk

func (o *AttemptStats) GetRecordsCommittedOk() (*int64, bool)

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

func (*AttemptStats) GetRecordsEmitted

func (o *AttemptStats) GetRecordsEmitted() int64

GetRecordsEmitted returns the RecordsEmitted field value if set, zero value otherwise.

func (*AttemptStats) GetRecordsEmittedOk

func (o *AttemptStats) GetRecordsEmittedOk() (*int64, bool)

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

func (*AttemptStats) GetStateMessagesEmitted

func (o *AttemptStats) GetStateMessagesEmitted() int64

GetStateMessagesEmitted returns the StateMessagesEmitted field value if set, zero value otherwise.

func (*AttemptStats) GetStateMessagesEmittedOk

func (o *AttemptStats) GetStateMessagesEmittedOk() (*int64, bool)

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

func (*AttemptStats) HasBytesEmitted

func (o *AttemptStats) HasBytesEmitted() bool

HasBytesEmitted returns a boolean if a field has been set.

func (*AttemptStats) HasRecordsCommitted

func (o *AttemptStats) HasRecordsCommitted() bool

HasRecordsCommitted returns a boolean if a field has been set.

func (*AttemptStats) HasRecordsEmitted

func (o *AttemptStats) HasRecordsEmitted() bool

HasRecordsEmitted returns a boolean if a field has been set.

func (*AttemptStats) HasStateMessagesEmitted

func (o *AttemptStats) HasStateMessagesEmitted() bool

HasStateMessagesEmitted returns a boolean if a field has been set.

func (AttemptStats) MarshalJSON

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

func (*AttemptStats) SetBytesEmitted

func (o *AttemptStats) SetBytesEmitted(v int64)

SetBytesEmitted gets a reference to the given int64 and assigns it to the BytesEmitted field.

func (*AttemptStats) SetRecordsCommitted

func (o *AttemptStats) SetRecordsCommitted(v int64)

SetRecordsCommitted gets a reference to the given int64 and assigns it to the RecordsCommitted field.

func (*AttemptStats) SetRecordsEmitted

func (o *AttemptStats) SetRecordsEmitted(v int64)

SetRecordsEmitted gets a reference to the given int64 and assigns it to the RecordsEmitted field.

func (*AttemptStats) SetStateMessagesEmitted

func (o *AttemptStats) SetStateMessagesEmitted(v int64)

SetStateMessagesEmitted gets a reference to the given int64 and assigns it to the StateMessagesEmitted field.

type AttemptStatus

type AttemptStatus string

AttemptStatus the model 'AttemptStatus'

const (
	ATTEMPTSTATUS_RUNNING   AttemptStatus = "running"
	ATTEMPTSTATUS_FAILED    AttemptStatus = "failed"
	ATTEMPTSTATUS_SUCCEEDED AttemptStatus = "succeeded"
)

List of AttemptStatus

func NewAttemptStatusFromValue

func NewAttemptStatusFromValue(v string) (*AttemptStatus, error)

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

func (AttemptStatus) IsValid

func (v AttemptStatus) IsValid() bool

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

func (AttemptStatus) Ptr

func (v AttemptStatus) Ptr() *AttemptStatus

Ptr returns reference to AttemptStatus value

func (*AttemptStatus) UnmarshalJSON

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

type AttemptStreamStats

type AttemptStreamStats struct {
	StreamName string       `json:"streamName"`
	Stats      AttemptStats `json:"stats"`
}

AttemptStreamStats struct for AttemptStreamStats

func NewAttemptStreamStats

func NewAttemptStreamStats(streamName string, stats AttemptStats) *AttemptStreamStats

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

func NewAttemptStreamStatsWithDefaults

func NewAttemptStreamStatsWithDefaults() *AttemptStreamStats

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

func (*AttemptStreamStats) GetStats

func (o *AttemptStreamStats) GetStats() AttemptStats

GetStats returns the Stats field value

func (*AttemptStreamStats) GetStatsOk

func (o *AttemptStreamStats) GetStatsOk() (*AttemptStats, bool)

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

func (*AttemptStreamStats) GetStreamName

func (o *AttemptStreamStats) GetStreamName() string

GetStreamName returns the StreamName field value

func (*AttemptStreamStats) GetStreamNameOk

func (o *AttemptStreamStats) GetStreamNameOk() (*string, bool)

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

func (AttemptStreamStats) MarshalJSON

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

func (*AttemptStreamStats) SetStats

func (o *AttemptStreamStats) SetStats(v AttemptStats)

SetStats sets field value

func (*AttemptStreamStats) SetStreamName

func (o *AttemptStreamStats) SetStreamName(v string)

SetStreamName sets field value

type AuthSpecification

type AuthSpecification struct {
	AuthType            *string              `json:"auth_type,omitempty"`
	Oauth2Specification *OAuth2Specification `json:"oauth2Specification,omitempty"`
}

AuthSpecification struct for AuthSpecification

func NewAuthSpecification

func NewAuthSpecification() *AuthSpecification

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

func NewAuthSpecificationWithDefaults

func NewAuthSpecificationWithDefaults() *AuthSpecification

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

func (*AuthSpecification) GetAuthType

func (o *AuthSpecification) GetAuthType() string

GetAuthType returns the AuthType field value if set, zero value otherwise.

func (*AuthSpecification) GetAuthTypeOk

func (o *AuthSpecification) GetAuthTypeOk() (*string, bool)

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

func (*AuthSpecification) GetOauth2Specification

func (o *AuthSpecification) GetOauth2Specification() OAuth2Specification

GetOauth2Specification returns the Oauth2Specification field value if set, zero value otherwise.

func (*AuthSpecification) GetOauth2SpecificationOk

func (o *AuthSpecification) GetOauth2SpecificationOk() (*OAuth2Specification, bool)

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

func (*AuthSpecification) HasAuthType

func (o *AuthSpecification) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

func (*AuthSpecification) HasOauth2Specification

func (o *AuthSpecification) HasOauth2Specification() bool

HasOauth2Specification returns a boolean if a field has been set.

func (AuthSpecification) MarshalJSON

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

func (*AuthSpecification) SetAuthType

func (o *AuthSpecification) SetAuthType(v string)

SetAuthType gets a reference to the given string and assigns it to the AuthType field.

func (*AuthSpecification) SetOauth2Specification

func (o *AuthSpecification) SetOauth2Specification(v OAuth2Specification)

SetOauth2Specification gets a reference to the given OAuth2Specification and assigns it to the Oauth2Specification field.

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type CheckConnectionRead

type CheckConnectionRead struct {
	Status  string             `json:"status"`
	Message *string            `json:"message,omitempty"`
	JobInfo SynchronousJobRead `json:"jobInfo"`
}

CheckConnectionRead struct for CheckConnectionRead

func NewCheckConnectionRead

func NewCheckConnectionRead(status string, jobInfo SynchronousJobRead) *CheckConnectionRead

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

func NewCheckConnectionReadWithDefaults

func NewCheckConnectionReadWithDefaults() *CheckConnectionRead

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

func (*CheckConnectionRead) GetJobInfo

func (o *CheckConnectionRead) GetJobInfo() SynchronousJobRead

GetJobInfo returns the JobInfo field value

func (*CheckConnectionRead) GetJobInfoOk

func (o *CheckConnectionRead) GetJobInfoOk() (*SynchronousJobRead, bool)

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

func (*CheckConnectionRead) GetMessage

func (o *CheckConnectionRead) GetMessage() string

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

func (*CheckConnectionRead) GetMessageOk

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

func (o *CheckConnectionRead) GetStatus() string

GetStatus returns the Status field value

func (*CheckConnectionRead) GetStatusOk

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

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

func (*CheckConnectionRead) HasMessage

func (o *CheckConnectionRead) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (CheckConnectionRead) MarshalJSON

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

func (*CheckConnectionRead) SetJobInfo

func (o *CheckConnectionRead) SetJobInfo(v SynchronousJobRead)

SetJobInfo sets field value

func (*CheckConnectionRead) SetMessage

func (o *CheckConnectionRead) SetMessage(v string)

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

func (*CheckConnectionRead) SetStatus

func (o *CheckConnectionRead) SetStatus(v string)

SetStatus sets field value

type CheckOperationRead

type CheckOperationRead struct {
	Status  string  `json:"status"`
	Message *string `json:"message,omitempty"`
}

CheckOperationRead struct for CheckOperationRead

func NewCheckOperationRead

func NewCheckOperationRead(status string) *CheckOperationRead

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

func NewCheckOperationReadWithDefaults

func NewCheckOperationReadWithDefaults() *CheckOperationRead

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

func (*CheckOperationRead) GetMessage

func (o *CheckOperationRead) GetMessage() string

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

func (*CheckOperationRead) GetMessageOk

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

func (o *CheckOperationRead) GetStatus() string

GetStatus returns the Status field value

func (*CheckOperationRead) GetStatusOk

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

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

func (*CheckOperationRead) HasMessage

func (o *CheckOperationRead) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (CheckOperationRead) MarshalJSON

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

func (*CheckOperationRead) SetMessage

func (o *CheckOperationRead) SetMessage(v string)

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

func (*CheckOperationRead) SetStatus

func (o *CheckOperationRead) SetStatus(v string)

SetStatus sets field value

type CompleteDestinationOAuthRequest

type CompleteDestinationOAuthRequest struct {
	DestinationDefinitionId string `json:"destinationDefinitionId"`
	WorkspaceId             string `json:"workspaceId"`
	// When completing OAuth flow to gain an access token, some API sometimes requires to verify that the app re-send the redirectUrl that was used when consent was given.
	RedirectUrl *string `json:"redirectUrl,omitempty"`
	// The query parameters present in the redirect URL after a user granted consent e.g auth code
	QueryParams map[string]map[string]interface{} `json:"queryParams,omitempty"`
	// OAuth specific blob.
	OAuthInputConfiguration interface{} `json:"oAuthInputConfiguration,omitempty"`
}

CompleteDestinationOAuthRequest struct for CompleteDestinationOAuthRequest

func NewCompleteDestinationOAuthRequest

func NewCompleteDestinationOAuthRequest(destinationDefinitionId string, workspaceId string) *CompleteDestinationOAuthRequest

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

func NewCompleteDestinationOAuthRequestWithDefaults

func NewCompleteDestinationOAuthRequestWithDefaults() *CompleteDestinationOAuthRequest

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

func (*CompleteDestinationOAuthRequest) GetDestinationDefinitionId

func (o *CompleteDestinationOAuthRequest) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*CompleteDestinationOAuthRequest) GetDestinationDefinitionIdOk

func (o *CompleteDestinationOAuthRequest) GetDestinationDefinitionIdOk() (*string, bool)

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

func (*CompleteDestinationOAuthRequest) GetOAuthInputConfiguration

func (o *CompleteDestinationOAuthRequest) GetOAuthInputConfiguration() interface{}

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

func (*CompleteDestinationOAuthRequest) GetOAuthInputConfigurationOk

func (o *CompleteDestinationOAuthRequest) GetOAuthInputConfigurationOk() (*interface{}, bool)

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

func (*CompleteDestinationOAuthRequest) GetQueryParams

func (o *CompleteDestinationOAuthRequest) GetQueryParams() map[string]map[string]interface{}

GetQueryParams returns the QueryParams field value if set, zero value otherwise.

func (*CompleteDestinationOAuthRequest) GetQueryParamsOk

func (o *CompleteDestinationOAuthRequest) GetQueryParamsOk() (map[string]map[string]interface{}, bool)

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

func (*CompleteDestinationOAuthRequest) GetRedirectUrl

func (o *CompleteDestinationOAuthRequest) GetRedirectUrl() string

GetRedirectUrl returns the RedirectUrl field value if set, zero value otherwise.

func (*CompleteDestinationOAuthRequest) GetRedirectUrlOk

func (o *CompleteDestinationOAuthRequest) GetRedirectUrlOk() (*string, bool)

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

func (*CompleteDestinationOAuthRequest) GetWorkspaceId

func (o *CompleteDestinationOAuthRequest) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*CompleteDestinationOAuthRequest) GetWorkspaceIdOk

func (o *CompleteDestinationOAuthRequest) GetWorkspaceIdOk() (*string, bool)

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

func (*CompleteDestinationOAuthRequest) HasOAuthInputConfiguration

func (o *CompleteDestinationOAuthRequest) HasOAuthInputConfiguration() bool

HasOAuthInputConfiguration returns a boolean if a field has been set.

func (*CompleteDestinationOAuthRequest) HasQueryParams

func (o *CompleteDestinationOAuthRequest) HasQueryParams() bool

HasQueryParams returns a boolean if a field has been set.

func (*CompleteDestinationOAuthRequest) HasRedirectUrl

func (o *CompleteDestinationOAuthRequest) HasRedirectUrl() bool

HasRedirectUrl returns a boolean if a field has been set.

func (CompleteDestinationOAuthRequest) MarshalJSON

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

func (*CompleteDestinationOAuthRequest) SetDestinationDefinitionId

func (o *CompleteDestinationOAuthRequest) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

func (*CompleteDestinationOAuthRequest) SetOAuthInputConfiguration

func (o *CompleteDestinationOAuthRequest) SetOAuthInputConfiguration(v interface{})

SetOAuthInputConfiguration gets a reference to the given interface{} and assigns it to the OAuthInputConfiguration field.

func (*CompleteDestinationOAuthRequest) SetQueryParams

func (o *CompleteDestinationOAuthRequest) SetQueryParams(v map[string]map[string]interface{})

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

func (*CompleteDestinationOAuthRequest) SetRedirectUrl

func (o *CompleteDestinationOAuthRequest) SetRedirectUrl(v string)

SetRedirectUrl gets a reference to the given string and assigns it to the RedirectUrl field.

func (*CompleteDestinationOAuthRequest) SetWorkspaceId

func (o *CompleteDestinationOAuthRequest) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type CompleteSourceOauthRequest

type CompleteSourceOauthRequest struct {
	SourceDefinitionId string `json:"sourceDefinitionId"`
	WorkspaceId        string `json:"workspaceId"`
	// When completing OAuth flow to gain an access token, some API sometimes requires to verify that the app re-send the redirectUrl that was used when consent was given.
	RedirectUrl *string `json:"redirectUrl,omitempty"`
	// The query parameters present in the redirect URL after a user granted consent e.g auth code
	QueryParams map[string]map[string]interface{} `json:"queryParams,omitempty"`
	// OAuth specific blob.
	OAuthInputConfiguration interface{} `json:"oAuthInputConfiguration,omitempty"`
}

CompleteSourceOauthRequest struct for CompleteSourceOauthRequest

func NewCompleteSourceOauthRequest

func NewCompleteSourceOauthRequest(sourceDefinitionId string, workspaceId string) *CompleteSourceOauthRequest

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

func NewCompleteSourceOauthRequestWithDefaults

func NewCompleteSourceOauthRequestWithDefaults() *CompleteSourceOauthRequest

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

func (*CompleteSourceOauthRequest) GetOAuthInputConfiguration

func (o *CompleteSourceOauthRequest) GetOAuthInputConfiguration() interface{}

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

func (*CompleteSourceOauthRequest) GetOAuthInputConfigurationOk

func (o *CompleteSourceOauthRequest) GetOAuthInputConfigurationOk() (*interface{}, bool)

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

func (*CompleteSourceOauthRequest) GetQueryParams

func (o *CompleteSourceOauthRequest) GetQueryParams() map[string]map[string]interface{}

GetQueryParams returns the QueryParams field value if set, zero value otherwise.

func (*CompleteSourceOauthRequest) GetQueryParamsOk

func (o *CompleteSourceOauthRequest) GetQueryParamsOk() (map[string]map[string]interface{}, bool)

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

func (*CompleteSourceOauthRequest) GetRedirectUrl

func (o *CompleteSourceOauthRequest) GetRedirectUrl() string

GetRedirectUrl returns the RedirectUrl field value if set, zero value otherwise.

func (*CompleteSourceOauthRequest) GetRedirectUrlOk

func (o *CompleteSourceOauthRequest) GetRedirectUrlOk() (*string, bool)

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

func (*CompleteSourceOauthRequest) GetSourceDefinitionId

func (o *CompleteSourceOauthRequest) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*CompleteSourceOauthRequest) GetSourceDefinitionIdOk

func (o *CompleteSourceOauthRequest) GetSourceDefinitionIdOk() (*string, bool)

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

func (*CompleteSourceOauthRequest) GetWorkspaceId

func (o *CompleteSourceOauthRequest) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*CompleteSourceOauthRequest) GetWorkspaceIdOk

func (o *CompleteSourceOauthRequest) GetWorkspaceIdOk() (*string, bool)

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

func (*CompleteSourceOauthRequest) HasOAuthInputConfiguration

func (o *CompleteSourceOauthRequest) HasOAuthInputConfiguration() bool

HasOAuthInputConfiguration returns a boolean if a field has been set.

func (*CompleteSourceOauthRequest) HasQueryParams

func (o *CompleteSourceOauthRequest) HasQueryParams() bool

HasQueryParams returns a boolean if a field has been set.

func (*CompleteSourceOauthRequest) HasRedirectUrl

func (o *CompleteSourceOauthRequest) HasRedirectUrl() bool

HasRedirectUrl returns a boolean if a field has been set.

func (CompleteSourceOauthRequest) MarshalJSON

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

func (*CompleteSourceOauthRequest) SetOAuthInputConfiguration

func (o *CompleteSourceOauthRequest) SetOAuthInputConfiguration(v interface{})

SetOAuthInputConfiguration gets a reference to the given interface{} and assigns it to the OAuthInputConfiguration field.

func (*CompleteSourceOauthRequest) SetQueryParams

func (o *CompleteSourceOauthRequest) SetQueryParams(v map[string]map[string]interface{})

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

func (*CompleteSourceOauthRequest) SetRedirectUrl

func (o *CompleteSourceOauthRequest) SetRedirectUrl(v string)

SetRedirectUrl gets a reference to the given string and assigns it to the RedirectUrl field.

func (*CompleteSourceOauthRequest) SetSourceDefinitionId

func (o *CompleteSourceOauthRequest) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

func (*CompleteSourceOauthRequest) SetWorkspaceId

func (o *CompleteSourceOauthRequest) SetWorkspaceId(v string)

SetWorkspaceId sets field value

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 ConnectionApiService

type ConnectionApiService service

ConnectionApiService ConnectionApi service

func (*ConnectionApiService) CreateConnection

CreateConnection Create a connection between a source and a destination

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

func (*ConnectionApiService) CreateConnectionExecute

Execute executes the request

@return ConnectionRead

func (*ConnectionApiService) DeleteConnection

DeleteConnection Delete a connection

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

func (*ConnectionApiService) DeleteConnectionExecute

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

Execute executes the request

func (*ConnectionApiService) GetConnection

GetConnection Get a connection

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

func (*ConnectionApiService) GetConnectionExecute

Execute executes the request

@return ConnectionRead

func (*ConnectionApiService) GetState

GetState Fetch the current state for a connection.

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

func (*ConnectionApiService) GetStateExecute

Execute executes the request

@return ConnectionState

func (*ConnectionApiService) ListAllConnectionsForWorkspace

func (a *ConnectionApiService) ListAllConnectionsForWorkspace(ctx context.Context) ApiListAllConnectionsForWorkspaceRequest

ListAllConnectionsForWorkspace Returns all connections for a workspace, including deleted connections.

List connections for workspace, including deleted connections.

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

func (*ConnectionApiService) ListAllConnectionsForWorkspaceExecute

func (a *ConnectionApiService) ListAllConnectionsForWorkspaceExecute(r ApiListAllConnectionsForWorkspaceRequest) (*ConnectionReadList, *http.Response, error)

Execute executes the request

@return ConnectionReadList

func (*ConnectionApiService) ListConnectionsForWorkspace

func (a *ConnectionApiService) ListConnectionsForWorkspace(ctx context.Context) ApiListConnectionsForWorkspaceRequest

ListConnectionsForWorkspace Returns all connections for a workspace.

List connections for workspace. Does not return deleted connections.

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

func (*ConnectionApiService) ListConnectionsForWorkspaceExecute

Execute executes the request

@return ConnectionReadList

func (*ConnectionApiService) ResetConnection

ResetConnection Reset the data for the connection. Deletes data generated by the connection in the destination. Resets any cursors back to initial state.

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

func (*ConnectionApiService) ResetConnectionExecute

func (a *ConnectionApiService) ResetConnectionExecute(r ApiResetConnectionRequest) (*JobInfoRead, *http.Response, error)

Execute executes the request

@return JobInfoRead

func (*ConnectionApiService) SearchConnections

SearchConnections Search connections

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

func (*ConnectionApiService) SearchConnectionsExecute

Execute executes the request

@return ConnectionReadList

func (*ConnectionApiService) SyncConnection

SyncConnection Trigger a manual sync of the connection

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

func (*ConnectionApiService) SyncConnectionExecute

func (a *ConnectionApiService) SyncConnectionExecute(r ApiSyncConnectionRequest) (*JobInfoRead, *http.Response, error)

Execute executes the request

@return JobInfoRead

func (*ConnectionApiService) UpdateConnection

UpdateConnection Update a connection

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

func (*ConnectionApiService) UpdateConnectionExecute

Execute executes the request

@return ConnectionRead

type ConnectionCreate

type ConnectionCreate struct {
	// Optional name of the connection
	Name                *string                  `json:"name,omitempty"`
	NamespaceDefinition *NamespaceDefinitionType `json:"namespaceDefinition,omitempty"`
	// Used when namespaceDefinition is 'customformat'. If blank then behaves like namespaceDefinition = 'destination'. If \"${SOURCE_NAMESPACE}\" then behaves like namespaceDefinition = 'source'.
	NamespaceFormat *string `json:"namespaceFormat,omitempty"`
	// Prefix that will be prepended to the name of each stream when it is written to the destination.
	Prefix               *string               `json:"prefix,omitempty"`
	SourceId             string                `json:"sourceId"`
	DestinationId        string                `json:"destinationId"`
	OperationIds         []string              `json:"operationIds,omitempty"`
	SyncCatalog          *AirbyteCatalog       `json:"syncCatalog,omitempty"`
	Schedule             *ConnectionSchedule   `json:"schedule,omitempty"`
	Status               ConnectionStatus      `json:"status"`
	ResourceRequirements *ResourceRequirements `json:"resourceRequirements,omitempty"`
}

ConnectionCreate struct for ConnectionCreate

func NewConnectionCreate

func NewConnectionCreate(sourceId string, destinationId string, status ConnectionStatus) *ConnectionCreate

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

func NewConnectionCreateWithDefaults

func NewConnectionCreateWithDefaults() *ConnectionCreate

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

func (*ConnectionCreate) GetDestinationId

func (o *ConnectionCreate) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*ConnectionCreate) GetDestinationIdOk

func (o *ConnectionCreate) GetDestinationIdOk() (*string, bool)

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

func (*ConnectionCreate) GetName

func (o *ConnectionCreate) GetName() string

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

func (*ConnectionCreate) GetNameOk

func (o *ConnectionCreate) 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 (*ConnectionCreate) GetNamespaceDefinition

func (o *ConnectionCreate) GetNamespaceDefinition() NamespaceDefinitionType

GetNamespaceDefinition returns the NamespaceDefinition field value if set, zero value otherwise.

func (*ConnectionCreate) GetNamespaceDefinitionOk

func (o *ConnectionCreate) GetNamespaceDefinitionOk() (*NamespaceDefinitionType, bool)

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

func (*ConnectionCreate) GetNamespaceFormat

func (o *ConnectionCreate) GetNamespaceFormat() string

GetNamespaceFormat returns the NamespaceFormat field value if set, zero value otherwise.

func (*ConnectionCreate) GetNamespaceFormatOk

func (o *ConnectionCreate) GetNamespaceFormatOk() (*string, bool)

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

func (*ConnectionCreate) GetOperationIds

func (o *ConnectionCreate) GetOperationIds() []string

GetOperationIds returns the OperationIds field value if set, zero value otherwise.

func (*ConnectionCreate) GetOperationIdsOk

func (o *ConnectionCreate) GetOperationIdsOk() ([]string, bool)

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

func (*ConnectionCreate) GetPrefix

func (o *ConnectionCreate) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*ConnectionCreate) GetPrefixOk

func (o *ConnectionCreate) GetPrefixOk() (*string, bool)

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

func (*ConnectionCreate) GetResourceRequirements

func (o *ConnectionCreate) GetResourceRequirements() ResourceRequirements

GetResourceRequirements returns the ResourceRequirements field value if set, zero value otherwise.

func (*ConnectionCreate) GetResourceRequirementsOk

func (o *ConnectionCreate) GetResourceRequirementsOk() (*ResourceRequirements, bool)

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

func (*ConnectionCreate) GetSchedule

func (o *ConnectionCreate) GetSchedule() ConnectionSchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ConnectionCreate) GetScheduleOk

func (o *ConnectionCreate) GetScheduleOk() (*ConnectionSchedule, 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 (*ConnectionCreate) GetSourceId

func (o *ConnectionCreate) GetSourceId() string

GetSourceId returns the SourceId field value

func (*ConnectionCreate) GetSourceIdOk

func (o *ConnectionCreate) GetSourceIdOk() (*string, bool)

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

func (*ConnectionCreate) GetStatus

func (o *ConnectionCreate) GetStatus() ConnectionStatus

GetStatus returns the Status field value

func (*ConnectionCreate) GetStatusOk

func (o *ConnectionCreate) GetStatusOk() (*ConnectionStatus, bool)

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

func (*ConnectionCreate) GetSyncCatalog

func (o *ConnectionCreate) GetSyncCatalog() AirbyteCatalog

GetSyncCatalog returns the SyncCatalog field value if set, zero value otherwise.

func (*ConnectionCreate) GetSyncCatalogOk

func (o *ConnectionCreate) GetSyncCatalogOk() (*AirbyteCatalog, bool)

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

func (*ConnectionCreate) HasName

func (o *ConnectionCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectionCreate) HasNamespaceDefinition

func (o *ConnectionCreate) HasNamespaceDefinition() bool

HasNamespaceDefinition returns a boolean if a field has been set.

func (*ConnectionCreate) HasNamespaceFormat

func (o *ConnectionCreate) HasNamespaceFormat() bool

HasNamespaceFormat returns a boolean if a field has been set.

func (*ConnectionCreate) HasOperationIds

func (o *ConnectionCreate) HasOperationIds() bool

HasOperationIds returns a boolean if a field has been set.

func (*ConnectionCreate) HasPrefix

func (o *ConnectionCreate) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*ConnectionCreate) HasResourceRequirements

func (o *ConnectionCreate) HasResourceRequirements() bool

HasResourceRequirements returns a boolean if a field has been set.

func (*ConnectionCreate) HasSchedule

func (o *ConnectionCreate) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*ConnectionCreate) HasSyncCatalog

func (o *ConnectionCreate) HasSyncCatalog() bool

HasSyncCatalog returns a boolean if a field has been set.

func (ConnectionCreate) MarshalJSON

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

func (*ConnectionCreate) SetDestinationId

func (o *ConnectionCreate) SetDestinationId(v string)

SetDestinationId sets field value

func (*ConnectionCreate) SetName

func (o *ConnectionCreate) SetName(v string)

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

func (*ConnectionCreate) SetNamespaceDefinition

func (o *ConnectionCreate) SetNamespaceDefinition(v NamespaceDefinitionType)

SetNamespaceDefinition gets a reference to the given NamespaceDefinitionType and assigns it to the NamespaceDefinition field.

func (*ConnectionCreate) SetNamespaceFormat

func (o *ConnectionCreate) SetNamespaceFormat(v string)

SetNamespaceFormat gets a reference to the given string and assigns it to the NamespaceFormat field.

func (*ConnectionCreate) SetOperationIds

func (o *ConnectionCreate) SetOperationIds(v []string)

SetOperationIds gets a reference to the given []string and assigns it to the OperationIds field.

func (*ConnectionCreate) SetPrefix

func (o *ConnectionCreate) SetPrefix(v string)

SetPrefix gets a reference to the given string and assigns it to the Prefix field.

func (*ConnectionCreate) SetResourceRequirements

func (o *ConnectionCreate) SetResourceRequirements(v ResourceRequirements)

SetResourceRequirements gets a reference to the given ResourceRequirements and assigns it to the ResourceRequirements field.

func (*ConnectionCreate) SetSchedule

func (o *ConnectionCreate) SetSchedule(v ConnectionSchedule)

SetSchedule gets a reference to the given ConnectionSchedule and assigns it to the Schedule field.

func (*ConnectionCreate) SetSourceId

func (o *ConnectionCreate) SetSourceId(v string)

SetSourceId sets field value

func (*ConnectionCreate) SetStatus

func (o *ConnectionCreate) SetStatus(v ConnectionStatus)

SetStatus sets field value

func (*ConnectionCreate) SetSyncCatalog

func (o *ConnectionCreate) SetSyncCatalog(v AirbyteCatalog)

SetSyncCatalog gets a reference to the given AirbyteCatalog and assigns it to the SyncCatalog field.

type ConnectionIdRequestBody

type ConnectionIdRequestBody struct {
	ConnectionId string `json:"connectionId"`
}

ConnectionIdRequestBody struct for ConnectionIdRequestBody

func NewConnectionIdRequestBody

func NewConnectionIdRequestBody(connectionId string) *ConnectionIdRequestBody

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

func NewConnectionIdRequestBodyWithDefaults

func NewConnectionIdRequestBodyWithDefaults() *ConnectionIdRequestBody

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

func (*ConnectionIdRequestBody) GetConnectionId

func (o *ConnectionIdRequestBody) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*ConnectionIdRequestBody) GetConnectionIdOk

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

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

func (ConnectionIdRequestBody) MarshalJSON

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

func (*ConnectionIdRequestBody) SetConnectionId

func (o *ConnectionIdRequestBody) SetConnectionId(v string)

SetConnectionId sets field value

type ConnectionRead

type ConnectionRead struct {
	ConnectionId        string                   `json:"connectionId"`
	Name                string                   `json:"name"`
	NamespaceDefinition *NamespaceDefinitionType `json:"namespaceDefinition,omitempty"`
	// Used when namespaceDefinition is 'customformat'. If blank then behaves like namespaceDefinition = 'destination'. If \"${SOURCE_NAMESPACE}\" then behaves like namespaceDefinition = 'source'.
	NamespaceFormat *string `json:"namespaceFormat,omitempty"`
	// Prefix that will be prepended to the name of each stream when it is written to the destination.
	Prefix               *string               `json:"prefix,omitempty"`
	SourceId             string                `json:"sourceId"`
	DestinationId        string                `json:"destinationId"`
	OperationIds         []string              `json:"operationIds,omitempty"`
	SyncCatalog          AirbyteCatalog        `json:"syncCatalog"`
	Schedule             ConnectionSchedule    `json:"schedule,omitempty"`
	Status               ConnectionStatus      `json:"status"`
	ResourceRequirements *ResourceRequirements `json:"resourceRequirements,omitempty"`
}

ConnectionRead struct for ConnectionRead

func NewConnectionRead

func NewConnectionRead(connectionId string, name string, sourceId string, destinationId string, syncCatalog AirbyteCatalog, status ConnectionStatus) *ConnectionRead

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

func NewConnectionReadWithDefaults

func NewConnectionReadWithDefaults() *ConnectionRead

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

func (*ConnectionRead) GetConnectionId

func (o *ConnectionRead) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*ConnectionRead) GetConnectionIdOk

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

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

func (*ConnectionRead) GetDestinationId

func (o *ConnectionRead) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*ConnectionRead) GetDestinationIdOk

func (o *ConnectionRead) GetDestinationIdOk() (*string, bool)

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

func (*ConnectionRead) GetName

func (o *ConnectionRead) GetName() string

GetName returns the Name field value

func (*ConnectionRead) GetNameOk

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

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

func (*ConnectionRead) GetNamespaceDefinition

func (o *ConnectionRead) GetNamespaceDefinition() NamespaceDefinitionType

GetNamespaceDefinition returns the NamespaceDefinition field value if set, zero value otherwise.

func (*ConnectionRead) GetNamespaceDefinitionOk

func (o *ConnectionRead) GetNamespaceDefinitionOk() (*NamespaceDefinitionType, bool)

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

func (*ConnectionRead) GetNamespaceFormat

func (o *ConnectionRead) GetNamespaceFormat() string

GetNamespaceFormat returns the NamespaceFormat field value if set, zero value otherwise.

func (*ConnectionRead) GetNamespaceFormatOk

func (o *ConnectionRead) GetNamespaceFormatOk() (*string, bool)

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

func (*ConnectionRead) GetOperationIds

func (o *ConnectionRead) GetOperationIds() []string

GetOperationIds returns the OperationIds field value if set, zero value otherwise.

func (*ConnectionRead) GetOperationIdsOk

func (o *ConnectionRead) GetOperationIdsOk() ([]string, bool)

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

func (*ConnectionRead) GetPrefix

func (o *ConnectionRead) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*ConnectionRead) GetPrefixOk

func (o *ConnectionRead) GetPrefixOk() (*string, bool)

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

func (*ConnectionRead) GetResourceRequirements

func (o *ConnectionRead) GetResourceRequirements() ResourceRequirements

GetResourceRequirements returns the ResourceRequirements field value if set, zero value otherwise.

func (*ConnectionRead) GetResourceRequirementsOk

func (o *ConnectionRead) GetResourceRequirementsOk() (*ResourceRequirements, bool)

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

func (*ConnectionRead) GetSchedule

func (o *ConnectionRead) GetSchedule() ConnectionSchedule

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

func (*ConnectionRead) GetScheduleOk

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

func (*ConnectionRead) GetSourceId

func (o *ConnectionRead) GetSourceId() string

GetSourceId returns the SourceId field value

func (*ConnectionRead) GetSourceIdOk

func (o *ConnectionRead) GetSourceIdOk() (*string, bool)

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

func (*ConnectionRead) GetStatus

func (o *ConnectionRead) GetStatus() ConnectionStatus

GetStatus returns the Status field value

func (*ConnectionRead) GetStatusOk

func (o *ConnectionRead) GetStatusOk() (*ConnectionStatus, bool)

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

func (*ConnectionRead) GetSyncCatalog

func (o *ConnectionRead) GetSyncCatalog() AirbyteCatalog

GetSyncCatalog returns the SyncCatalog field value

func (*ConnectionRead) GetSyncCatalogOk

func (o *ConnectionRead) GetSyncCatalogOk() (*AirbyteCatalog, bool)

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

func (*ConnectionRead) HasNamespaceDefinition

func (o *ConnectionRead) HasNamespaceDefinition() bool

HasNamespaceDefinition returns a boolean if a field has been set.

func (*ConnectionRead) HasNamespaceFormat

func (o *ConnectionRead) HasNamespaceFormat() bool

HasNamespaceFormat returns a boolean if a field has been set.

func (*ConnectionRead) HasOperationIds

func (o *ConnectionRead) HasOperationIds() bool

HasOperationIds returns a boolean if a field has been set.

func (*ConnectionRead) HasPrefix

func (o *ConnectionRead) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*ConnectionRead) HasResourceRequirements

func (o *ConnectionRead) HasResourceRequirements() bool

HasResourceRequirements returns a boolean if a field has been set.

func (*ConnectionRead) HasSchedule

func (o *ConnectionRead) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (ConnectionRead) MarshalJSON

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

func (*ConnectionRead) SetConnectionId

func (o *ConnectionRead) SetConnectionId(v string)

SetConnectionId sets field value

func (*ConnectionRead) SetDestinationId

func (o *ConnectionRead) SetDestinationId(v string)

SetDestinationId sets field value

func (*ConnectionRead) SetName

func (o *ConnectionRead) SetName(v string)

SetName sets field value

func (*ConnectionRead) SetNamespaceDefinition

func (o *ConnectionRead) SetNamespaceDefinition(v NamespaceDefinitionType)

SetNamespaceDefinition gets a reference to the given NamespaceDefinitionType and assigns it to the NamespaceDefinition field.

func (*ConnectionRead) SetNamespaceFormat

func (o *ConnectionRead) SetNamespaceFormat(v string)

SetNamespaceFormat gets a reference to the given string and assigns it to the NamespaceFormat field.

func (*ConnectionRead) SetOperationIds

func (o *ConnectionRead) SetOperationIds(v []string)

SetOperationIds gets a reference to the given []string and assigns it to the OperationIds field.

func (*ConnectionRead) SetPrefix

func (o *ConnectionRead) SetPrefix(v string)

SetPrefix gets a reference to the given string and assigns it to the Prefix field.

func (*ConnectionRead) SetResourceRequirements

func (o *ConnectionRead) SetResourceRequirements(v ResourceRequirements)

SetResourceRequirements gets a reference to the given ResourceRequirements and assigns it to the ResourceRequirements field.

func (*ConnectionRead) SetSchedule

func (o *ConnectionRead) SetSchedule(v ConnectionSchedule)

SetSchedule gets a reference to the given ConnectionSchedule and assigns it to the Schedule field.

func (*ConnectionRead) SetSourceId

func (o *ConnectionRead) SetSourceId(v string)

SetSourceId sets field value

func (*ConnectionRead) SetStatus

func (o *ConnectionRead) SetStatus(v ConnectionStatus)

SetStatus sets field value

func (*ConnectionRead) SetSyncCatalog

func (o *ConnectionRead) SetSyncCatalog(v AirbyteCatalog)

SetSyncCatalog sets field value

type ConnectionReadList

type ConnectionReadList struct {
	Connections []ConnectionRead `json:"connections"`
}

ConnectionReadList struct for ConnectionReadList

func NewConnectionReadList

func NewConnectionReadList(connections []ConnectionRead) *ConnectionReadList

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

func NewConnectionReadListWithDefaults

func NewConnectionReadListWithDefaults() *ConnectionReadList

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

func (*ConnectionReadList) GetConnections

func (o *ConnectionReadList) GetConnections() []ConnectionRead

GetConnections returns the Connections field value

func (*ConnectionReadList) GetConnectionsOk

func (o *ConnectionReadList) GetConnectionsOk() ([]ConnectionRead, bool)

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

func (ConnectionReadList) MarshalJSON

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

func (*ConnectionReadList) SetConnections

func (o *ConnectionReadList) SetConnections(v []ConnectionRead)

SetConnections sets field value

type ConnectionSchedule

type ConnectionSchedule struct {
	Units    int64  `json:"units"`
	TimeUnit string `json:"timeUnit"`
}

ConnectionSchedule if null, then no schedule is set.

func NewConnectionSchedule

func NewConnectionSchedule(units int64, timeUnit string) *ConnectionSchedule

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

func NewConnectionScheduleWithDefaults

func NewConnectionScheduleWithDefaults() *ConnectionSchedule

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

func (*ConnectionSchedule) GetTimeUnit

func (o *ConnectionSchedule) GetTimeUnit() string

GetTimeUnit returns the TimeUnit field value

func (*ConnectionSchedule) GetTimeUnitOk

func (o *ConnectionSchedule) GetTimeUnitOk() (*string, bool)

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

func (*ConnectionSchedule) GetUnits

func (o *ConnectionSchedule) GetUnits() int64

GetUnits returns the Units field value

func (*ConnectionSchedule) GetUnitsOk

func (o *ConnectionSchedule) GetUnitsOk() (*int64, bool)

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

func (ConnectionSchedule) MarshalJSON

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

func (*ConnectionSchedule) SetTimeUnit

func (o *ConnectionSchedule) SetTimeUnit(v string)

SetTimeUnit sets field value

func (*ConnectionSchedule) SetUnits

func (o *ConnectionSchedule) SetUnits(v int64)

SetUnits sets field value

type ConnectionSearch

type ConnectionSearch struct {
	ConnectionId        *string                  `json:"connectionId,omitempty"`
	Name                *string                  `json:"name,omitempty"`
	NamespaceDefinition *NamespaceDefinitionType `json:"namespaceDefinition,omitempty"`
	// Used when namespaceDefinition is 'customformat'. If blank then behaves like namespaceDefinition = 'destination'. If \"${SOURCE_NAMESPACE}\" then behaves like namespaceDefinition = 'source'.
	NamespaceFormat *string `json:"namespaceFormat,omitempty"`
	// Prefix that will be prepended to the name of each stream when it is written to the destination.
	Prefix        *string             `json:"prefix,omitempty"`
	SourceId      *string             `json:"sourceId,omitempty"`
	DestinationId *string             `json:"destinationId,omitempty"`
	Schedule      *ConnectionSchedule `json:"schedule,omitempty"`
	Status        *ConnectionStatus   `json:"status,omitempty"`
	Source        *SourceSearch       `json:"source,omitempty"`
	Destination   *DestinationSearch  `json:"destination,omitempty"`
}

ConnectionSearch struct for ConnectionSearch

func NewConnectionSearch

func NewConnectionSearch() *ConnectionSearch

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

func NewConnectionSearchWithDefaults

func NewConnectionSearchWithDefaults() *ConnectionSearch

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

func (*ConnectionSearch) GetConnectionId

func (o *ConnectionSearch) GetConnectionId() string

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

func (*ConnectionSearch) GetConnectionIdOk

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

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

func (*ConnectionSearch) GetDestination

func (o *ConnectionSearch) GetDestination() DestinationSearch

GetDestination returns the Destination field value if set, zero value otherwise.

func (*ConnectionSearch) GetDestinationId

func (o *ConnectionSearch) GetDestinationId() string

GetDestinationId returns the DestinationId field value if set, zero value otherwise.

func (*ConnectionSearch) GetDestinationIdOk

func (o *ConnectionSearch) GetDestinationIdOk() (*string, bool)

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

func (*ConnectionSearch) GetDestinationOk

func (o *ConnectionSearch) GetDestinationOk() (*DestinationSearch, bool)

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

func (*ConnectionSearch) GetName

func (o *ConnectionSearch) GetName() string

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

func (*ConnectionSearch) GetNameOk

func (o *ConnectionSearch) 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 (*ConnectionSearch) GetNamespaceDefinition

func (o *ConnectionSearch) GetNamespaceDefinition() NamespaceDefinitionType

GetNamespaceDefinition returns the NamespaceDefinition field value if set, zero value otherwise.

func (*ConnectionSearch) GetNamespaceDefinitionOk

func (o *ConnectionSearch) GetNamespaceDefinitionOk() (*NamespaceDefinitionType, bool)

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

func (*ConnectionSearch) GetNamespaceFormat

func (o *ConnectionSearch) GetNamespaceFormat() string

GetNamespaceFormat returns the NamespaceFormat field value if set, zero value otherwise.

func (*ConnectionSearch) GetNamespaceFormatOk

func (o *ConnectionSearch) GetNamespaceFormatOk() (*string, bool)

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

func (*ConnectionSearch) GetPrefix

func (o *ConnectionSearch) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*ConnectionSearch) GetPrefixOk

func (o *ConnectionSearch) GetPrefixOk() (*string, bool)

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

func (*ConnectionSearch) GetSchedule

func (o *ConnectionSearch) GetSchedule() ConnectionSchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ConnectionSearch) GetScheduleOk

func (o *ConnectionSearch) GetScheduleOk() (*ConnectionSchedule, 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 (*ConnectionSearch) GetSource

func (o *ConnectionSearch) GetSource() SourceSearch

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

func (*ConnectionSearch) GetSourceId

func (o *ConnectionSearch) GetSourceId() string

GetSourceId returns the SourceId field value if set, zero value otherwise.

func (*ConnectionSearch) GetSourceIdOk

func (o *ConnectionSearch) GetSourceIdOk() (*string, bool)

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

func (*ConnectionSearch) GetSourceOk

func (o *ConnectionSearch) GetSourceOk() (*SourceSearch, bool)

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

func (*ConnectionSearch) GetStatus

func (o *ConnectionSearch) GetStatus() ConnectionStatus

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

func (*ConnectionSearch) GetStatusOk

func (o *ConnectionSearch) GetStatusOk() (*ConnectionStatus, 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 (*ConnectionSearch) HasConnectionId

func (o *ConnectionSearch) HasConnectionId() bool

HasConnectionId returns a boolean if a field has been set.

func (*ConnectionSearch) HasDestination

func (o *ConnectionSearch) HasDestination() bool

HasDestination returns a boolean if a field has been set.

func (*ConnectionSearch) HasDestinationId

func (o *ConnectionSearch) HasDestinationId() bool

HasDestinationId returns a boolean if a field has been set.

func (*ConnectionSearch) HasName

func (o *ConnectionSearch) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectionSearch) HasNamespaceDefinition

func (o *ConnectionSearch) HasNamespaceDefinition() bool

HasNamespaceDefinition returns a boolean if a field has been set.

func (*ConnectionSearch) HasNamespaceFormat

func (o *ConnectionSearch) HasNamespaceFormat() bool

HasNamespaceFormat returns a boolean if a field has been set.

func (*ConnectionSearch) HasPrefix

func (o *ConnectionSearch) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*ConnectionSearch) HasSchedule

func (o *ConnectionSearch) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*ConnectionSearch) HasSource

func (o *ConnectionSearch) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*ConnectionSearch) HasSourceId

func (o *ConnectionSearch) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*ConnectionSearch) HasStatus

func (o *ConnectionSearch) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectionSearch) MarshalJSON

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

func (*ConnectionSearch) SetConnectionId

func (o *ConnectionSearch) SetConnectionId(v string)

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

func (*ConnectionSearch) SetDestination

func (o *ConnectionSearch) SetDestination(v DestinationSearch)

SetDestination gets a reference to the given DestinationSearch and assigns it to the Destination field.

func (*ConnectionSearch) SetDestinationId

func (o *ConnectionSearch) SetDestinationId(v string)

SetDestinationId gets a reference to the given string and assigns it to the DestinationId field.

func (*ConnectionSearch) SetName

func (o *ConnectionSearch) SetName(v string)

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

func (*ConnectionSearch) SetNamespaceDefinition

func (o *ConnectionSearch) SetNamespaceDefinition(v NamespaceDefinitionType)

SetNamespaceDefinition gets a reference to the given NamespaceDefinitionType and assigns it to the NamespaceDefinition field.

func (*ConnectionSearch) SetNamespaceFormat

func (o *ConnectionSearch) SetNamespaceFormat(v string)

SetNamespaceFormat gets a reference to the given string and assigns it to the NamespaceFormat field.

func (*ConnectionSearch) SetPrefix

func (o *ConnectionSearch) SetPrefix(v string)

SetPrefix gets a reference to the given string and assigns it to the Prefix field.

func (*ConnectionSearch) SetSchedule

func (o *ConnectionSearch) SetSchedule(v ConnectionSchedule)

SetSchedule gets a reference to the given ConnectionSchedule and assigns it to the Schedule field.

func (*ConnectionSearch) SetSource

func (o *ConnectionSearch) SetSource(v SourceSearch)

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

func (*ConnectionSearch) SetSourceId

func (o *ConnectionSearch) SetSourceId(v string)

SetSourceId gets a reference to the given string and assigns it to the SourceId field.

func (*ConnectionSearch) SetStatus

func (o *ConnectionSearch) SetStatus(v ConnectionStatus)

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

type ConnectionState

type ConnectionState struct {
	ConnectionId string                 `json:"connectionId"`
	State        map[string]interface{} `json:"state,omitempty"`
}

ConnectionState struct for ConnectionState

func NewConnectionState

func NewConnectionState(connectionId string) *ConnectionState

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

func NewConnectionStateWithDefaults

func NewConnectionStateWithDefaults() *ConnectionState

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

func (*ConnectionState) GetConnectionId

func (o *ConnectionState) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*ConnectionState) GetConnectionIdOk

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

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

func (*ConnectionState) GetState

func (o *ConnectionState) GetState() map[string]interface{}

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

func (*ConnectionState) GetStateOk

func (o *ConnectionState) GetStateOk() (map[string]interface{}, bool)

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

func (*ConnectionState) HasState

func (o *ConnectionState) HasState() bool

HasState returns a boolean if a field has been set.

func (ConnectionState) MarshalJSON

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

func (*ConnectionState) SetConnectionId

func (o *ConnectionState) SetConnectionId(v string)

SetConnectionId sets field value

func (*ConnectionState) SetState

func (o *ConnectionState) SetState(v map[string]interface{})

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

type ConnectionStatus

type ConnectionStatus string

ConnectionStatus Active means that data is flowing through the connection. Inactive means it is not. Deprecated means the connection is off and cannot be re-activated. the schema field describes the elements of the schema that will be synced.

const (
	CONNECTIONSTATUS_ACTIVE     ConnectionStatus = "active"
	CONNECTIONSTATUS_INACTIVE   ConnectionStatus = "inactive"
	CONNECTIONSTATUS_DEPRECATED ConnectionStatus = "deprecated"
)

List of ConnectionStatus

func NewConnectionStatusFromValue

func NewConnectionStatusFromValue(v string) (*ConnectionStatus, error)

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

func (ConnectionStatus) IsValid

func (v ConnectionStatus) IsValid() bool

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

func (ConnectionStatus) Ptr

Ptr returns reference to ConnectionStatus value

func (*ConnectionStatus) UnmarshalJSON

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

type ConnectionUpdate

type ConnectionUpdate struct {
	ConnectionId        string                   `json:"connectionId"`
	NamespaceDefinition *NamespaceDefinitionType `json:"namespaceDefinition,omitempty"`
	// Used when namespaceDefinition is 'customformat'. If blank then behaves like namespaceDefinition = 'destination'. If \"${SOURCE_NAMESPACE}\" then behaves like namespaceDefinition = 'source'.
	NamespaceFormat *string `json:"namespaceFormat,omitempty"`
	// Prefix that will be prepended to the name of each stream when it is written to the destination.
	Prefix               *string               `json:"prefix,omitempty"`
	OperationIds         []string              `json:"operationIds,omitempty"`
	SyncCatalog          AirbyteCatalog        `json:"syncCatalog"`
	Schedule             *ConnectionSchedule   `json:"schedule,omitempty"`
	Status               ConnectionStatus      `json:"status"`
	ResourceRequirements *ResourceRequirements `json:"resourceRequirements,omitempty"`
}

ConnectionUpdate struct for ConnectionUpdate

func NewConnectionUpdate

func NewConnectionUpdate(connectionId string, syncCatalog AirbyteCatalog, status ConnectionStatus) *ConnectionUpdate

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

func NewConnectionUpdateWithDefaults

func NewConnectionUpdateWithDefaults() *ConnectionUpdate

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

func (*ConnectionUpdate) GetConnectionId

func (o *ConnectionUpdate) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*ConnectionUpdate) GetConnectionIdOk

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

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

func (*ConnectionUpdate) GetNamespaceDefinition

func (o *ConnectionUpdate) GetNamespaceDefinition() NamespaceDefinitionType

GetNamespaceDefinition returns the NamespaceDefinition field value if set, zero value otherwise.

func (*ConnectionUpdate) GetNamespaceDefinitionOk

func (o *ConnectionUpdate) GetNamespaceDefinitionOk() (*NamespaceDefinitionType, bool)

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

func (*ConnectionUpdate) GetNamespaceFormat

func (o *ConnectionUpdate) GetNamespaceFormat() string

GetNamespaceFormat returns the NamespaceFormat field value if set, zero value otherwise.

func (*ConnectionUpdate) GetNamespaceFormatOk

func (o *ConnectionUpdate) GetNamespaceFormatOk() (*string, bool)

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

func (*ConnectionUpdate) GetOperationIds

func (o *ConnectionUpdate) GetOperationIds() []string

GetOperationIds returns the OperationIds field value if set, zero value otherwise.

func (*ConnectionUpdate) GetOperationIdsOk

func (o *ConnectionUpdate) GetOperationIdsOk() ([]string, bool)

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

func (*ConnectionUpdate) GetPrefix

func (o *ConnectionUpdate) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*ConnectionUpdate) GetPrefixOk

func (o *ConnectionUpdate) GetPrefixOk() (*string, bool)

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

func (*ConnectionUpdate) GetResourceRequirements

func (o *ConnectionUpdate) GetResourceRequirements() ResourceRequirements

GetResourceRequirements returns the ResourceRequirements field value if set, zero value otherwise.

func (*ConnectionUpdate) GetResourceRequirementsOk

func (o *ConnectionUpdate) GetResourceRequirementsOk() (*ResourceRequirements, bool)

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

func (*ConnectionUpdate) GetSchedule

func (o *ConnectionUpdate) GetSchedule() ConnectionSchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ConnectionUpdate) GetScheduleOk

func (o *ConnectionUpdate) GetScheduleOk() (*ConnectionSchedule, 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 (*ConnectionUpdate) GetStatus

func (o *ConnectionUpdate) GetStatus() ConnectionStatus

GetStatus returns the Status field value

func (*ConnectionUpdate) GetStatusOk

func (o *ConnectionUpdate) GetStatusOk() (*ConnectionStatus, bool)

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

func (*ConnectionUpdate) GetSyncCatalog

func (o *ConnectionUpdate) GetSyncCatalog() AirbyteCatalog

GetSyncCatalog returns the SyncCatalog field value

func (*ConnectionUpdate) GetSyncCatalogOk

func (o *ConnectionUpdate) GetSyncCatalogOk() (*AirbyteCatalog, bool)

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

func (*ConnectionUpdate) HasNamespaceDefinition

func (o *ConnectionUpdate) HasNamespaceDefinition() bool

HasNamespaceDefinition returns a boolean if a field has been set.

func (*ConnectionUpdate) HasNamespaceFormat

func (o *ConnectionUpdate) HasNamespaceFormat() bool

HasNamespaceFormat returns a boolean if a field has been set.

func (*ConnectionUpdate) HasOperationIds

func (o *ConnectionUpdate) HasOperationIds() bool

HasOperationIds returns a boolean if a field has been set.

func (*ConnectionUpdate) HasPrefix

func (o *ConnectionUpdate) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*ConnectionUpdate) HasResourceRequirements

func (o *ConnectionUpdate) HasResourceRequirements() bool

HasResourceRequirements returns a boolean if a field has been set.

func (*ConnectionUpdate) HasSchedule

func (o *ConnectionUpdate) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (ConnectionUpdate) MarshalJSON

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

func (*ConnectionUpdate) SetConnectionId

func (o *ConnectionUpdate) SetConnectionId(v string)

SetConnectionId sets field value

func (*ConnectionUpdate) SetNamespaceDefinition

func (o *ConnectionUpdate) SetNamespaceDefinition(v NamespaceDefinitionType)

SetNamespaceDefinition gets a reference to the given NamespaceDefinitionType and assigns it to the NamespaceDefinition field.

func (*ConnectionUpdate) SetNamespaceFormat

func (o *ConnectionUpdate) SetNamespaceFormat(v string)

SetNamespaceFormat gets a reference to the given string and assigns it to the NamespaceFormat field.

func (*ConnectionUpdate) SetOperationIds

func (o *ConnectionUpdate) SetOperationIds(v []string)

SetOperationIds gets a reference to the given []string and assigns it to the OperationIds field.

func (*ConnectionUpdate) SetPrefix

func (o *ConnectionUpdate) SetPrefix(v string)

SetPrefix gets a reference to the given string and assigns it to the Prefix field.

func (*ConnectionUpdate) SetResourceRequirements

func (o *ConnectionUpdate) SetResourceRequirements(v ResourceRequirements)

SetResourceRequirements gets a reference to the given ResourceRequirements and assigns it to the ResourceRequirements field.

func (*ConnectionUpdate) SetSchedule

func (o *ConnectionUpdate) SetSchedule(v ConnectionSchedule)

SetSchedule gets a reference to the given ConnectionSchedule and assigns it to the Schedule field.

func (*ConnectionUpdate) SetStatus

func (o *ConnectionUpdate) SetStatus(v ConnectionStatus)

SetStatus sets field value

func (*ConnectionUpdate) SetSyncCatalog

func (o *ConnectionUpdate) SetSyncCatalog(v AirbyteCatalog)

SetSyncCatalog sets field value

type DataType

type DataType string

DataType the model 'DataType'

const (
	DATATYPE_STRING  DataType = "string"
	DATATYPE_NUMBER  DataType = "number"
	DATATYPE_BOOLEAN DataType = "boolean"
	DATATYPE_OBJECT  DataType = "object"
	DATATYPE_ARRAY   DataType = "array"
)

List of DataType

func NewDataTypeFromValue

func NewDataTypeFromValue(v string) (*DataType, error)

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

func (DataType) IsValid

func (v DataType) IsValid() bool

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

func (DataType) Ptr

func (v DataType) Ptr() *DataType

Ptr returns reference to DataType value

func (*DataType) UnmarshalJSON

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

type DbMigrationApiService

type DbMigrationApiService service

DbMigrationApiService DbMigrationApi service

func (*DbMigrationApiService) ExecuteMigrations

ExecuteMigrations Migrate the database to the latest version

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

func (*DbMigrationApiService) ExecuteMigrationsExecute

Execute executes the request

@return DbMigrationExecutionRead

func (*DbMigrationApiService) ListMigrations

ListMigrations List all database migrations

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

func (*DbMigrationApiService) ListMigrationsExecute

Execute executes the request

@return DbMigrationReadList

type DbMigrationExecutionRead

type DbMigrationExecutionRead struct {
	InitialVersion     *string           `json:"initialVersion,omitempty"`
	TargetVersion      *string           `json:"targetVersion,omitempty"`
	ExecutedMigrations []DbMigrationRead `json:"executedMigrations,omitempty"`
}

DbMigrationExecutionRead struct for DbMigrationExecutionRead

func NewDbMigrationExecutionRead

func NewDbMigrationExecutionRead() *DbMigrationExecutionRead

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

func NewDbMigrationExecutionReadWithDefaults

func NewDbMigrationExecutionReadWithDefaults() *DbMigrationExecutionRead

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

func (*DbMigrationExecutionRead) GetExecutedMigrations

func (o *DbMigrationExecutionRead) GetExecutedMigrations() []DbMigrationRead

GetExecutedMigrations returns the ExecutedMigrations field value if set, zero value otherwise.

func (*DbMigrationExecutionRead) GetExecutedMigrationsOk

func (o *DbMigrationExecutionRead) GetExecutedMigrationsOk() ([]DbMigrationRead, bool)

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

func (*DbMigrationExecutionRead) GetInitialVersion

func (o *DbMigrationExecutionRead) GetInitialVersion() string

GetInitialVersion returns the InitialVersion field value if set, zero value otherwise.

func (*DbMigrationExecutionRead) GetInitialVersionOk

func (o *DbMigrationExecutionRead) GetInitialVersionOk() (*string, bool)

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

func (*DbMigrationExecutionRead) GetTargetVersion

func (o *DbMigrationExecutionRead) GetTargetVersion() string

GetTargetVersion returns the TargetVersion field value if set, zero value otherwise.

func (*DbMigrationExecutionRead) GetTargetVersionOk

func (o *DbMigrationExecutionRead) GetTargetVersionOk() (*string, bool)

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

func (*DbMigrationExecutionRead) HasExecutedMigrations

func (o *DbMigrationExecutionRead) HasExecutedMigrations() bool

HasExecutedMigrations returns a boolean if a field has been set.

func (*DbMigrationExecutionRead) HasInitialVersion

func (o *DbMigrationExecutionRead) HasInitialVersion() bool

HasInitialVersion returns a boolean if a field has been set.

func (*DbMigrationExecutionRead) HasTargetVersion

func (o *DbMigrationExecutionRead) HasTargetVersion() bool

HasTargetVersion returns a boolean if a field has been set.

func (DbMigrationExecutionRead) MarshalJSON

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

func (*DbMigrationExecutionRead) SetExecutedMigrations

func (o *DbMigrationExecutionRead) SetExecutedMigrations(v []DbMigrationRead)

SetExecutedMigrations gets a reference to the given []DbMigrationRead and assigns it to the ExecutedMigrations field.

func (*DbMigrationExecutionRead) SetInitialVersion

func (o *DbMigrationExecutionRead) SetInitialVersion(v string)

SetInitialVersion gets a reference to the given string and assigns it to the InitialVersion field.

func (*DbMigrationExecutionRead) SetTargetVersion

func (o *DbMigrationExecutionRead) SetTargetVersion(v string)

SetTargetVersion gets a reference to the given string and assigns it to the TargetVersion field.

type DbMigrationRead

type DbMigrationRead struct {
	MigrationType        string            `json:"migrationType"`
	MigrationVersion     string            `json:"migrationVersion"`
	MigrationDescription string            `json:"migrationDescription"`
	MigrationState       *DbMigrationState `json:"migrationState,omitempty"`
	MigratedBy           *string           `json:"migratedBy,omitempty"`
	MigratedAt           *int64            `json:"migratedAt,omitempty"`
	MigrationScript      *string           `json:"migrationScript,omitempty"`
}

DbMigrationRead struct for DbMigrationRead

func NewDbMigrationRead

func NewDbMigrationRead(migrationType string, migrationVersion string, migrationDescription string) *DbMigrationRead

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

func NewDbMigrationReadWithDefaults

func NewDbMigrationReadWithDefaults() *DbMigrationRead

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

func (*DbMigrationRead) GetMigratedAt

func (o *DbMigrationRead) GetMigratedAt() int64

GetMigratedAt returns the MigratedAt field value if set, zero value otherwise.

func (*DbMigrationRead) GetMigratedAtOk

func (o *DbMigrationRead) GetMigratedAtOk() (*int64, bool)

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

func (*DbMigrationRead) GetMigratedBy

func (o *DbMigrationRead) GetMigratedBy() string

GetMigratedBy returns the MigratedBy field value if set, zero value otherwise.

func (*DbMigrationRead) GetMigratedByOk

func (o *DbMigrationRead) GetMigratedByOk() (*string, bool)

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

func (*DbMigrationRead) GetMigrationDescription

func (o *DbMigrationRead) GetMigrationDescription() string

GetMigrationDescription returns the MigrationDescription field value

func (*DbMigrationRead) GetMigrationDescriptionOk

func (o *DbMigrationRead) GetMigrationDescriptionOk() (*string, bool)

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

func (*DbMigrationRead) GetMigrationScript

func (o *DbMigrationRead) GetMigrationScript() string

GetMigrationScript returns the MigrationScript field value if set, zero value otherwise.

func (*DbMigrationRead) GetMigrationScriptOk

func (o *DbMigrationRead) GetMigrationScriptOk() (*string, bool)

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

func (*DbMigrationRead) GetMigrationState

func (o *DbMigrationRead) GetMigrationState() DbMigrationState

GetMigrationState returns the MigrationState field value if set, zero value otherwise.

func (*DbMigrationRead) GetMigrationStateOk

func (o *DbMigrationRead) GetMigrationStateOk() (*DbMigrationState, bool)

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

func (*DbMigrationRead) GetMigrationType

func (o *DbMigrationRead) GetMigrationType() string

GetMigrationType returns the MigrationType field value

func (*DbMigrationRead) GetMigrationTypeOk

func (o *DbMigrationRead) GetMigrationTypeOk() (*string, bool)

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

func (*DbMigrationRead) GetMigrationVersion

func (o *DbMigrationRead) GetMigrationVersion() string

GetMigrationVersion returns the MigrationVersion field value

func (*DbMigrationRead) GetMigrationVersionOk

func (o *DbMigrationRead) GetMigrationVersionOk() (*string, bool)

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

func (*DbMigrationRead) HasMigratedAt

func (o *DbMigrationRead) HasMigratedAt() bool

HasMigratedAt returns a boolean if a field has been set.

func (*DbMigrationRead) HasMigratedBy

func (o *DbMigrationRead) HasMigratedBy() bool

HasMigratedBy returns a boolean if a field has been set.

func (*DbMigrationRead) HasMigrationScript

func (o *DbMigrationRead) HasMigrationScript() bool

HasMigrationScript returns a boolean if a field has been set.

func (*DbMigrationRead) HasMigrationState

func (o *DbMigrationRead) HasMigrationState() bool

HasMigrationState returns a boolean if a field has been set.

func (DbMigrationRead) MarshalJSON

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

func (*DbMigrationRead) SetMigratedAt

func (o *DbMigrationRead) SetMigratedAt(v int64)

SetMigratedAt gets a reference to the given int64 and assigns it to the MigratedAt field.

func (*DbMigrationRead) SetMigratedBy

func (o *DbMigrationRead) SetMigratedBy(v string)

SetMigratedBy gets a reference to the given string and assigns it to the MigratedBy field.

func (*DbMigrationRead) SetMigrationDescription

func (o *DbMigrationRead) SetMigrationDescription(v string)

SetMigrationDescription sets field value

func (*DbMigrationRead) SetMigrationScript

func (o *DbMigrationRead) SetMigrationScript(v string)

SetMigrationScript gets a reference to the given string and assigns it to the MigrationScript field.

func (*DbMigrationRead) SetMigrationState

func (o *DbMigrationRead) SetMigrationState(v DbMigrationState)

SetMigrationState gets a reference to the given DbMigrationState and assigns it to the MigrationState field.

func (*DbMigrationRead) SetMigrationType

func (o *DbMigrationRead) SetMigrationType(v string)

SetMigrationType sets field value

func (*DbMigrationRead) SetMigrationVersion

func (o *DbMigrationRead) SetMigrationVersion(v string)

SetMigrationVersion sets field value

type DbMigrationReadList

type DbMigrationReadList struct {
	Migrations []DbMigrationRead `json:"migrations,omitempty"`
}

DbMigrationReadList struct for DbMigrationReadList

func NewDbMigrationReadList

func NewDbMigrationReadList() *DbMigrationReadList

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

func NewDbMigrationReadListWithDefaults

func NewDbMigrationReadListWithDefaults() *DbMigrationReadList

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

func (*DbMigrationReadList) GetMigrations

func (o *DbMigrationReadList) GetMigrations() []DbMigrationRead

GetMigrations returns the Migrations field value if set, zero value otherwise.

func (*DbMigrationReadList) GetMigrationsOk

func (o *DbMigrationReadList) GetMigrationsOk() ([]DbMigrationRead, bool)

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

func (*DbMigrationReadList) HasMigrations

func (o *DbMigrationReadList) HasMigrations() bool

HasMigrations returns a boolean if a field has been set.

func (DbMigrationReadList) MarshalJSON

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

func (*DbMigrationReadList) SetMigrations

func (o *DbMigrationReadList) SetMigrations(v []DbMigrationRead)

SetMigrations gets a reference to the given []DbMigrationRead and assigns it to the Migrations field.

type DbMigrationRequestBody

type DbMigrationRequestBody struct {
	Database string `json:"database"`
}

DbMigrationRequestBody struct for DbMigrationRequestBody

func NewDbMigrationRequestBody

func NewDbMigrationRequestBody(database string) *DbMigrationRequestBody

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

func NewDbMigrationRequestBodyWithDefaults

func NewDbMigrationRequestBodyWithDefaults() *DbMigrationRequestBody

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

func (*DbMigrationRequestBody) GetDatabase

func (o *DbMigrationRequestBody) GetDatabase() string

GetDatabase returns the Database field value

func (*DbMigrationRequestBody) GetDatabaseOk

func (o *DbMigrationRequestBody) GetDatabaseOk() (*string, bool)

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

func (DbMigrationRequestBody) MarshalJSON

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

func (*DbMigrationRequestBody) SetDatabase

func (o *DbMigrationRequestBody) SetDatabase(v string)

SetDatabase sets field value

type DbMigrationState

type DbMigrationState string

DbMigrationState the model 'DbMigrationState'

const (
	DBMIGRATIONSTATE_PENDING         DbMigrationState = "pending"
	DBMIGRATIONSTATE_ABOVE_TARGET    DbMigrationState = "above_target"
	DBMIGRATIONSTATE_BELOW_BASELINE  DbMigrationState = "below_baseline"
	DBMIGRATIONSTATE_BASELINE        DbMigrationState = "baseline"
	DBMIGRATIONSTATE_IGNORED         DbMigrationState = "ignored"
	DBMIGRATIONSTATE_MISSING_SUCCESS DbMigrationState = "missing_success"
	DBMIGRATIONSTATE_MISSING_FAILED  DbMigrationState = "missing_failed"
	DBMIGRATIONSTATE_SUCCESS         DbMigrationState = "success"
	DBMIGRATIONSTATE_UNDONE          DbMigrationState = "undone"
	DBMIGRATIONSTATE_AVAILABLE       DbMigrationState = "available"
	DBMIGRATIONSTATE_FAILED          DbMigrationState = "failed"
	DBMIGRATIONSTATE_OUT_OF_ORDER    DbMigrationState = "out_of_order"
	DBMIGRATIONSTATE_FUTURE_SUCCESS  DbMigrationState = "future_success"
	DBMIGRATIONSTATE_FUTURE_FAILED   DbMigrationState = "future_failed"
	DBMIGRATIONSTATE_OUTDATED        DbMigrationState = "outdated"
	DBMIGRATIONSTATE_SUPERSEDED      DbMigrationState = "superseded"
	DBMIGRATIONSTATE_DELETED         DbMigrationState = "deleted"
)

List of DbMigrationState

func NewDbMigrationStateFromValue

func NewDbMigrationStateFromValue(v string) (*DbMigrationState, error)

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

func (DbMigrationState) IsValid

func (v DbMigrationState) IsValid() bool

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

func (DbMigrationState) Ptr

Ptr returns reference to DbMigrationState value

func (*DbMigrationState) UnmarshalJSON

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

type DeploymentApiService

type DeploymentApiService service

DeploymentApiService DeploymentApi service

func (*DeploymentApiService) ExportArchive

ExportArchive Export Airbyte Configuration and Data Archive

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

func (*DeploymentApiService) ExportArchiveExecute

func (a *DeploymentApiService) ExportArchiveExecute(r ApiExportArchiveRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DeploymentApiService) ExportWorkspace

ExportWorkspace Export Airbyte Workspace Configuration

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

func (*DeploymentApiService) ExportWorkspaceExecute

func (a *DeploymentApiService) ExportWorkspaceExecute(r ApiExportWorkspaceRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DeploymentApiService) ImportArchive

ImportArchive Import Airbyte Configuration and Data Archive

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

func (*DeploymentApiService) ImportArchiveExecute

func (a *DeploymentApiService) ImportArchiveExecute(r ApiImportArchiveRequest) (*ImportRead, *http.Response, error)

Execute executes the request

@return ImportRead

func (*DeploymentApiService) ImportIntoWorkspace

ImportIntoWorkspace Import Airbyte Configuration into Workspace (this operation might change ids of imported configurations). Note, in order to use this api endpoint, you might need to upload a temporary archive resource with 'deployment/upload_archive_resource' first

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

func (*DeploymentApiService) ImportIntoWorkspaceExecute

func (a *DeploymentApiService) ImportIntoWorkspaceExecute(r ApiImportIntoWorkspaceRequest) (*ImportRead, *http.Response, error)

Execute executes the request

@return ImportRead

func (*DeploymentApiService) UploadArchiveResource

UploadArchiveResource Upload a GZIP archive tarball and stage it in the server's cache as a temporary resource

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

func (*DeploymentApiService) UploadArchiveResourceExecute

func (a *DeploymentApiService) UploadArchiveResourceExecute(r ApiUploadArchiveResourceRequest) (*UploadRead, *http.Response, error)

Execute executes the request

@return UploadRead

type DestinationApiService

type DestinationApiService service

DestinationApiService DestinationApi service

func (*DestinationApiService) CheckConnectionToDestination

func (a *DestinationApiService) CheckConnectionToDestination(ctx context.Context) ApiCheckConnectionToDestinationRequest

CheckConnectionToDestination Check connection to the destination

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

func (*DestinationApiService) CheckConnectionToDestinationExecute

Execute executes the request

@return CheckConnectionRead

func (*DestinationApiService) CheckConnectionToDestinationForUpdate

func (a *DestinationApiService) CheckConnectionToDestinationForUpdate(ctx context.Context) ApiCheckConnectionToDestinationForUpdateRequest

CheckConnectionToDestinationForUpdate Check connection for a proposed update to a destination

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

func (*DestinationApiService) CheckConnectionToDestinationForUpdateExecute

func (a *DestinationApiService) CheckConnectionToDestinationForUpdateExecute(r ApiCheckConnectionToDestinationForUpdateRequest) (*CheckConnectionRead, *http.Response, error)

Execute executes the request

@return CheckConnectionRead

func (*DestinationApiService) CreateDestination

CreateDestination Create a destination

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

func (*DestinationApiService) CreateDestinationExecute

Execute executes the request

@return DestinationRead

func (*DestinationApiService) DeleteDestination

DeleteDestination Delete the destination

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

func (*DestinationApiService) DeleteDestinationExecute

func (a *DestinationApiService) DeleteDestinationExecute(r ApiDeleteDestinationRequest) (*http.Response, error)

Execute executes the request

func (*DestinationApiService) GetDestination

GetDestination Get configured destination

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

func (*DestinationApiService) GetDestinationExecute

Execute executes the request

@return DestinationRead

func (*DestinationApiService) ListDestinationsForWorkspace

func (a *DestinationApiService) ListDestinationsForWorkspace(ctx context.Context) ApiListDestinationsForWorkspaceRequest

ListDestinationsForWorkspace List configured destinations for a workspace

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

func (*DestinationApiService) ListDestinationsForWorkspaceExecute

Execute executes the request

@return DestinationReadList

func (*DestinationApiService) SearchDestinations

SearchDestinations Search destinations

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

func (*DestinationApiService) SearchDestinationsExecute

Execute executes the request

@return DestinationReadList

func (*DestinationApiService) UpdateDestination

UpdateDestination Update a destination

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

func (*DestinationApiService) UpdateDestinationExecute

Execute executes the request

@return DestinationRead

type DestinationCoreConfig

type DestinationCoreConfig struct {
	DestinationDefinitionId string `json:"destinationDefinitionId"`
	// The values required to configure the destination. The schema for this must match the schema return by destination_definition_specifications/get for the destinationDefinition.
	ConnectionConfiguration interface{} `json:"connectionConfiguration"`
}

DestinationCoreConfig struct for DestinationCoreConfig

func NewDestinationCoreConfig

func NewDestinationCoreConfig(destinationDefinitionId string, connectionConfiguration interface{}) *DestinationCoreConfig

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

func NewDestinationCoreConfigWithDefaults

func NewDestinationCoreConfigWithDefaults() *DestinationCoreConfig

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

func (*DestinationCoreConfig) GetConnectionConfiguration

func (o *DestinationCoreConfig) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value If the value is explicit nil, the zero value for interface{} will be returned

func (*DestinationCoreConfig) GetConnectionConfigurationOk

func (o *DestinationCoreConfig) GetConnectionConfigurationOk() (*interface{}, bool)

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

func (*DestinationCoreConfig) GetDestinationDefinitionId

func (o *DestinationCoreConfig) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*DestinationCoreConfig) GetDestinationDefinitionIdOk

func (o *DestinationCoreConfig) GetDestinationDefinitionIdOk() (*string, bool)

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

func (DestinationCoreConfig) MarshalJSON

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

func (*DestinationCoreConfig) SetConnectionConfiguration

func (o *DestinationCoreConfig) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets field value

func (*DestinationCoreConfig) SetDestinationDefinitionId

func (o *DestinationCoreConfig) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

type DestinationCreate

type DestinationCreate struct {
	WorkspaceId             string `json:"workspaceId"`
	Name                    string `json:"name"`
	DestinationDefinitionId string `json:"destinationDefinitionId"`
	// The values required to configure the destination. The schema for this must match the schema return by destination_definition_specifications/get for the destinationDefinition.
	ConnectionConfiguration interface{} `json:"connectionConfiguration"`
}

DestinationCreate struct for DestinationCreate

func NewDestinationCreate

func NewDestinationCreate(workspaceId string, name string, destinationDefinitionId string, connectionConfiguration interface{}) *DestinationCreate

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

func NewDestinationCreateWithDefaults

func NewDestinationCreateWithDefaults() *DestinationCreate

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

func (*DestinationCreate) GetConnectionConfiguration

func (o *DestinationCreate) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value If the value is explicit nil, the zero value for interface{} will be returned

func (*DestinationCreate) GetConnectionConfigurationOk

func (o *DestinationCreate) GetConnectionConfigurationOk() (*interface{}, bool)

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

func (*DestinationCreate) GetDestinationDefinitionId

func (o *DestinationCreate) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*DestinationCreate) GetDestinationDefinitionIdOk

func (o *DestinationCreate) GetDestinationDefinitionIdOk() (*string, bool)

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

func (*DestinationCreate) GetName

func (o *DestinationCreate) GetName() string

GetName returns the Name field value

func (*DestinationCreate) GetNameOk

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

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

func (*DestinationCreate) GetWorkspaceId

func (o *DestinationCreate) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*DestinationCreate) GetWorkspaceIdOk

func (o *DestinationCreate) GetWorkspaceIdOk() (*string, bool)

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

func (DestinationCreate) MarshalJSON

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

func (*DestinationCreate) SetConnectionConfiguration

func (o *DestinationCreate) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets field value

func (*DestinationCreate) SetDestinationDefinitionId

func (o *DestinationCreate) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

func (*DestinationCreate) SetName

func (o *DestinationCreate) SetName(v string)

SetName sets field value

func (*DestinationCreate) SetWorkspaceId

func (o *DestinationCreate) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type DestinationDefinitionApiService

type DestinationDefinitionApiService service

DestinationDefinitionApiService DestinationDefinitionApi service

func (*DestinationDefinitionApiService) CreateDestinationDefinition

CreateDestinationDefinition Creates a destinationsDefinition

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

func (*DestinationDefinitionApiService) CreateDestinationDefinitionExecute

Execute executes the request

@return DestinationDefinitionRead

func (*DestinationDefinitionApiService) DeleteDestinationDefinition

DeleteDestinationDefinition Delete a destination definition

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

func (*DestinationDefinitionApiService) DeleteDestinationDefinitionExecute

func (a *DestinationDefinitionApiService) DeleteDestinationDefinitionExecute(r ApiDeleteDestinationDefinitionRequest) (*http.Response, error)

Execute executes the request

func (*DestinationDefinitionApiService) GetDestinationDefinition

GetDestinationDefinition Get destinationDefinition

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

func (*DestinationDefinitionApiService) GetDestinationDefinitionExecute

Execute executes the request

@return DestinationDefinitionRead

func (*DestinationDefinitionApiService) ListDestinationDefinitions

ListDestinationDefinitions List all the destinationDefinitions the current Airbyte deployment is configured to use

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

func (*DestinationDefinitionApiService) ListDestinationDefinitionsExecute

Execute executes the request

@return DestinationDefinitionReadList

func (*DestinationDefinitionApiService) ListLatestDestinationDefinitions

ListLatestDestinationDefinitions List the latest destinationDefinitions Airbyte supports

Guaranteed to retrieve the latest information on supported destinations.

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

func (*DestinationDefinitionApiService) ListLatestDestinationDefinitionsExecute

Execute executes the request

@return DestinationDefinitionReadList

func (*DestinationDefinitionApiService) UpdateDestinationDefinition

UpdateDestinationDefinition Update destinationDefinition

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

func (*DestinationDefinitionApiService) UpdateDestinationDefinitionExecute

Execute executes the request

@return DestinationDefinitionRead

type DestinationDefinitionCreate

type DestinationDefinitionCreate struct {
	Name             string  `json:"name"`
	DockerRepository string  `json:"dockerRepository"`
	DockerImageTag   string  `json:"dockerImageTag"`
	DocumentationUrl string  `json:"documentationUrl"`
	Icon             *string `json:"icon,omitempty"`
}

DestinationDefinitionCreate struct for DestinationDefinitionCreate

func NewDestinationDefinitionCreate

func NewDestinationDefinitionCreate(name string, dockerRepository string, dockerImageTag string, documentationUrl string) *DestinationDefinitionCreate

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

func NewDestinationDefinitionCreateWithDefaults

func NewDestinationDefinitionCreateWithDefaults() *DestinationDefinitionCreate

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

func (*DestinationDefinitionCreate) GetDockerImageTag

func (o *DestinationDefinitionCreate) GetDockerImageTag() string

GetDockerImageTag returns the DockerImageTag field value

func (*DestinationDefinitionCreate) GetDockerImageTagOk

func (o *DestinationDefinitionCreate) GetDockerImageTagOk() (*string, bool)

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

func (*DestinationDefinitionCreate) GetDockerRepository

func (o *DestinationDefinitionCreate) GetDockerRepository() string

GetDockerRepository returns the DockerRepository field value

func (*DestinationDefinitionCreate) GetDockerRepositoryOk

func (o *DestinationDefinitionCreate) GetDockerRepositoryOk() (*string, bool)

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

func (*DestinationDefinitionCreate) GetDocumentationUrl

func (o *DestinationDefinitionCreate) GetDocumentationUrl() string

GetDocumentationUrl returns the DocumentationUrl field value

func (*DestinationDefinitionCreate) GetDocumentationUrlOk

func (o *DestinationDefinitionCreate) GetDocumentationUrlOk() (*string, bool)

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

func (*DestinationDefinitionCreate) GetIcon

func (o *DestinationDefinitionCreate) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*DestinationDefinitionCreate) GetIconOk

func (o *DestinationDefinitionCreate) GetIconOk() (*string, bool)

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

func (*DestinationDefinitionCreate) GetName

func (o *DestinationDefinitionCreate) GetName() string

GetName returns the Name field value

func (*DestinationDefinitionCreate) GetNameOk

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

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

func (*DestinationDefinitionCreate) HasIcon

func (o *DestinationDefinitionCreate) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (DestinationDefinitionCreate) MarshalJSON

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

func (*DestinationDefinitionCreate) SetDockerImageTag

func (o *DestinationDefinitionCreate) SetDockerImageTag(v string)

SetDockerImageTag sets field value

func (*DestinationDefinitionCreate) SetDockerRepository

func (o *DestinationDefinitionCreate) SetDockerRepository(v string)

SetDockerRepository sets field value

func (*DestinationDefinitionCreate) SetDocumentationUrl

func (o *DestinationDefinitionCreate) SetDocumentationUrl(v string)

SetDocumentationUrl sets field value

func (*DestinationDefinitionCreate) SetIcon

func (o *DestinationDefinitionCreate) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*DestinationDefinitionCreate) SetName

func (o *DestinationDefinitionCreate) SetName(v string)

SetName sets field value

type DestinationDefinitionIdRequestBody

type DestinationDefinitionIdRequestBody struct {
	DestinationDefinitionId string `json:"destinationDefinitionId"`
}

DestinationDefinitionIdRequestBody struct for DestinationDefinitionIdRequestBody

func NewDestinationDefinitionIdRequestBody

func NewDestinationDefinitionIdRequestBody(destinationDefinitionId string) *DestinationDefinitionIdRequestBody

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

func NewDestinationDefinitionIdRequestBodyWithDefaults

func NewDestinationDefinitionIdRequestBodyWithDefaults() *DestinationDefinitionIdRequestBody

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

func (*DestinationDefinitionIdRequestBody) GetDestinationDefinitionId

func (o *DestinationDefinitionIdRequestBody) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*DestinationDefinitionIdRequestBody) GetDestinationDefinitionIdOk

func (o *DestinationDefinitionIdRequestBody) GetDestinationDefinitionIdOk() (*string, bool)

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

func (DestinationDefinitionIdRequestBody) MarshalJSON

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

func (*DestinationDefinitionIdRequestBody) SetDestinationDefinitionId

func (o *DestinationDefinitionIdRequestBody) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

type DestinationDefinitionRead

type DestinationDefinitionRead struct {
	DestinationDefinitionId string        `json:"destinationDefinitionId"`
	Name                    string        `json:"name"`
	DockerRepository        string        `json:"dockerRepository"`
	DockerImageTag          string        `json:"dockerImageTag"`
	DocumentationUrl        string        `json:"documentationUrl"`
	Icon                    *string       `json:"icon,omitempty"`
	ReleaseStage            *ReleaseStage `json:"releaseStage,omitempty"`
	// The date when this connector was first released, in yyyy-mm-dd format.
	ReleaseDate *string `json:"releaseDate,omitempty"`
}

DestinationDefinitionRead struct for DestinationDefinitionRead

func NewDestinationDefinitionRead

func NewDestinationDefinitionRead(destinationDefinitionId string, name string, dockerRepository string, dockerImageTag string, documentationUrl string) *DestinationDefinitionRead

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

func NewDestinationDefinitionReadWithDefaults

func NewDestinationDefinitionReadWithDefaults() *DestinationDefinitionRead

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

func (*DestinationDefinitionRead) GetDestinationDefinitionId

func (o *DestinationDefinitionRead) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*DestinationDefinitionRead) GetDestinationDefinitionIdOk

func (o *DestinationDefinitionRead) GetDestinationDefinitionIdOk() (*string, bool)

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

func (*DestinationDefinitionRead) GetDockerImageTag

func (o *DestinationDefinitionRead) GetDockerImageTag() string

GetDockerImageTag returns the DockerImageTag field value

func (*DestinationDefinitionRead) GetDockerImageTagOk

func (o *DestinationDefinitionRead) GetDockerImageTagOk() (*string, bool)

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

func (*DestinationDefinitionRead) GetDockerRepository

func (o *DestinationDefinitionRead) GetDockerRepository() string

GetDockerRepository returns the DockerRepository field value

func (*DestinationDefinitionRead) GetDockerRepositoryOk

func (o *DestinationDefinitionRead) GetDockerRepositoryOk() (*string, bool)

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

func (*DestinationDefinitionRead) GetDocumentationUrl

func (o *DestinationDefinitionRead) GetDocumentationUrl() string

GetDocumentationUrl returns the DocumentationUrl field value

func (*DestinationDefinitionRead) GetDocumentationUrlOk

func (o *DestinationDefinitionRead) GetDocumentationUrlOk() (*string, bool)

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

func (*DestinationDefinitionRead) GetIcon

func (o *DestinationDefinitionRead) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*DestinationDefinitionRead) GetIconOk

func (o *DestinationDefinitionRead) GetIconOk() (*string, bool)

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

func (*DestinationDefinitionRead) GetName

func (o *DestinationDefinitionRead) GetName() string

GetName returns the Name field value

func (*DestinationDefinitionRead) GetNameOk

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

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

func (*DestinationDefinitionRead) GetReleaseDate

func (o *DestinationDefinitionRead) GetReleaseDate() string

GetReleaseDate returns the ReleaseDate field value if set, zero value otherwise.

func (*DestinationDefinitionRead) GetReleaseDateOk

func (o *DestinationDefinitionRead) GetReleaseDateOk() (*string, bool)

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

func (*DestinationDefinitionRead) GetReleaseStage

func (o *DestinationDefinitionRead) GetReleaseStage() ReleaseStage

GetReleaseStage returns the ReleaseStage field value if set, zero value otherwise.

func (*DestinationDefinitionRead) GetReleaseStageOk

func (o *DestinationDefinitionRead) GetReleaseStageOk() (*ReleaseStage, bool)

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

func (*DestinationDefinitionRead) HasIcon

func (o *DestinationDefinitionRead) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*DestinationDefinitionRead) HasReleaseDate

func (o *DestinationDefinitionRead) HasReleaseDate() bool

HasReleaseDate returns a boolean if a field has been set.

func (*DestinationDefinitionRead) HasReleaseStage

func (o *DestinationDefinitionRead) HasReleaseStage() bool

HasReleaseStage returns a boolean if a field has been set.

func (DestinationDefinitionRead) MarshalJSON

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

func (*DestinationDefinitionRead) SetDestinationDefinitionId

func (o *DestinationDefinitionRead) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

func (*DestinationDefinitionRead) SetDockerImageTag

func (o *DestinationDefinitionRead) SetDockerImageTag(v string)

SetDockerImageTag sets field value

func (*DestinationDefinitionRead) SetDockerRepository

func (o *DestinationDefinitionRead) SetDockerRepository(v string)

SetDockerRepository sets field value

func (*DestinationDefinitionRead) SetDocumentationUrl

func (o *DestinationDefinitionRead) SetDocumentationUrl(v string)

SetDocumentationUrl sets field value

func (*DestinationDefinitionRead) SetIcon

func (o *DestinationDefinitionRead) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*DestinationDefinitionRead) SetName

func (o *DestinationDefinitionRead) SetName(v string)

SetName sets field value

func (*DestinationDefinitionRead) SetReleaseDate

func (o *DestinationDefinitionRead) SetReleaseDate(v string)

SetReleaseDate gets a reference to the given string and assigns it to the ReleaseDate field.

func (*DestinationDefinitionRead) SetReleaseStage

func (o *DestinationDefinitionRead) SetReleaseStage(v ReleaseStage)

SetReleaseStage gets a reference to the given ReleaseStage and assigns it to the ReleaseStage field.

type DestinationDefinitionReadList

type DestinationDefinitionReadList struct {
	DestinationDefinitions []DestinationDefinitionRead `json:"destinationDefinitions"`
}

DestinationDefinitionReadList struct for DestinationDefinitionReadList

func NewDestinationDefinitionReadList

func NewDestinationDefinitionReadList(destinationDefinitions []DestinationDefinitionRead) *DestinationDefinitionReadList

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

func NewDestinationDefinitionReadListWithDefaults

func NewDestinationDefinitionReadListWithDefaults() *DestinationDefinitionReadList

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

func (*DestinationDefinitionReadList) GetDestinationDefinitions

func (o *DestinationDefinitionReadList) GetDestinationDefinitions() []DestinationDefinitionRead

GetDestinationDefinitions returns the DestinationDefinitions field value

func (*DestinationDefinitionReadList) GetDestinationDefinitionsOk

func (o *DestinationDefinitionReadList) GetDestinationDefinitionsOk() ([]DestinationDefinitionRead, bool)

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

func (DestinationDefinitionReadList) MarshalJSON

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

func (*DestinationDefinitionReadList) SetDestinationDefinitions

func (o *DestinationDefinitionReadList) SetDestinationDefinitions(v []DestinationDefinitionRead)

SetDestinationDefinitions sets field value

type DestinationDefinitionSpecificationApiService

type DestinationDefinitionSpecificationApiService service

DestinationDefinitionSpecificationApiService DestinationDefinitionSpecificationApi service

func (*DestinationDefinitionSpecificationApiService) GetDestinationDefinitionSpecification

GetDestinationDefinitionSpecification Get specification for a destinationDefinition

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

func (*DestinationDefinitionSpecificationApiService) GetDestinationDefinitionSpecificationExecute

Execute executes the request

@return DestinationDefinitionSpecificationRead

type DestinationDefinitionSpecificationRead

type DestinationDefinitionSpecificationRead struct {
	DestinationDefinitionId string  `json:"destinationDefinitionId"`
	DocumentationUrl        *string `json:"documentationUrl,omitempty"`
	// The specification for what values are required to configure the destinationDefinition.
	ConnectionSpecification       interface{}           `json:"connectionSpecification,omitempty"`
	AuthSpecification             *AuthSpecification    `json:"authSpecification,omitempty"`
	AdvancedAuth                  *AdvancedAuth         `json:"advancedAuth,omitempty"`
	JobInfo                       SynchronousJobRead    `json:"jobInfo"`
	SupportedDestinationSyncModes []DestinationSyncMode `json:"supportedDestinationSyncModes,omitempty"`
	SupportsDbt                   *bool                 `json:"supportsDbt,omitempty"`
	SupportsNormalization         *bool                 `json:"supportsNormalization,omitempty"`
}

DestinationDefinitionSpecificationRead struct for DestinationDefinitionSpecificationRead

func NewDestinationDefinitionSpecificationRead

func NewDestinationDefinitionSpecificationRead(destinationDefinitionId string, jobInfo SynchronousJobRead) *DestinationDefinitionSpecificationRead

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

func NewDestinationDefinitionSpecificationReadWithDefaults

func NewDestinationDefinitionSpecificationReadWithDefaults() *DestinationDefinitionSpecificationRead

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

func (*DestinationDefinitionSpecificationRead) GetAdvancedAuth

GetAdvancedAuth returns the AdvancedAuth field value if set, zero value otherwise.

func (*DestinationDefinitionSpecificationRead) GetAdvancedAuthOk

func (o *DestinationDefinitionSpecificationRead) GetAdvancedAuthOk() (*AdvancedAuth, bool)

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

func (*DestinationDefinitionSpecificationRead) GetAuthSpecification

GetAuthSpecification returns the AuthSpecification field value if set, zero value otherwise.

func (*DestinationDefinitionSpecificationRead) GetAuthSpecificationOk

func (o *DestinationDefinitionSpecificationRead) GetAuthSpecificationOk() (*AuthSpecification, bool)

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

func (*DestinationDefinitionSpecificationRead) GetConnectionSpecification

func (o *DestinationDefinitionSpecificationRead) GetConnectionSpecification() interface{}

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

func (*DestinationDefinitionSpecificationRead) GetConnectionSpecificationOk

func (o *DestinationDefinitionSpecificationRead) GetConnectionSpecificationOk() (*interface{}, bool)

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

func (*DestinationDefinitionSpecificationRead) GetDestinationDefinitionId

func (o *DestinationDefinitionSpecificationRead) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*DestinationDefinitionSpecificationRead) GetDestinationDefinitionIdOk

func (o *DestinationDefinitionSpecificationRead) GetDestinationDefinitionIdOk() (*string, bool)

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

func (*DestinationDefinitionSpecificationRead) GetDocumentationUrl

func (o *DestinationDefinitionSpecificationRead) GetDocumentationUrl() string

GetDocumentationUrl returns the DocumentationUrl field value if set, zero value otherwise.

func (*DestinationDefinitionSpecificationRead) GetDocumentationUrlOk

func (o *DestinationDefinitionSpecificationRead) GetDocumentationUrlOk() (*string, bool)

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

func (*DestinationDefinitionSpecificationRead) GetJobInfo

GetJobInfo returns the JobInfo field value

func (*DestinationDefinitionSpecificationRead) GetJobInfoOk

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

func (*DestinationDefinitionSpecificationRead) GetSupportedDestinationSyncModes

func (o *DestinationDefinitionSpecificationRead) GetSupportedDestinationSyncModes() []DestinationSyncMode

GetSupportedDestinationSyncModes returns the SupportedDestinationSyncModes field value if set, zero value otherwise.

func (*DestinationDefinitionSpecificationRead) GetSupportedDestinationSyncModesOk

func (o *DestinationDefinitionSpecificationRead) GetSupportedDestinationSyncModesOk() ([]DestinationSyncMode, bool)

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

func (*DestinationDefinitionSpecificationRead) GetSupportsDbt

func (o *DestinationDefinitionSpecificationRead) GetSupportsDbt() bool

GetSupportsDbt returns the SupportsDbt field value if set, zero value otherwise.

func (*DestinationDefinitionSpecificationRead) GetSupportsDbtOk

func (o *DestinationDefinitionSpecificationRead) GetSupportsDbtOk() (*bool, bool)

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

func (*DestinationDefinitionSpecificationRead) GetSupportsNormalization

func (o *DestinationDefinitionSpecificationRead) GetSupportsNormalization() bool

GetSupportsNormalization returns the SupportsNormalization field value if set, zero value otherwise.

func (*DestinationDefinitionSpecificationRead) GetSupportsNormalizationOk

func (o *DestinationDefinitionSpecificationRead) GetSupportsNormalizationOk() (*bool, bool)

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

func (*DestinationDefinitionSpecificationRead) HasAdvancedAuth

func (o *DestinationDefinitionSpecificationRead) HasAdvancedAuth() bool

HasAdvancedAuth returns a boolean if a field has been set.

func (*DestinationDefinitionSpecificationRead) HasAuthSpecification

func (o *DestinationDefinitionSpecificationRead) HasAuthSpecification() bool

HasAuthSpecification returns a boolean if a field has been set.

func (*DestinationDefinitionSpecificationRead) HasConnectionSpecification

func (o *DestinationDefinitionSpecificationRead) HasConnectionSpecification() bool

HasConnectionSpecification returns a boolean if a field has been set.

func (*DestinationDefinitionSpecificationRead) HasDocumentationUrl

func (o *DestinationDefinitionSpecificationRead) HasDocumentationUrl() bool

HasDocumentationUrl returns a boolean if a field has been set.

func (*DestinationDefinitionSpecificationRead) HasSupportedDestinationSyncModes

func (o *DestinationDefinitionSpecificationRead) HasSupportedDestinationSyncModes() bool

HasSupportedDestinationSyncModes returns a boolean if a field has been set.

func (*DestinationDefinitionSpecificationRead) HasSupportsDbt

func (o *DestinationDefinitionSpecificationRead) HasSupportsDbt() bool

HasSupportsDbt returns a boolean if a field has been set.

func (*DestinationDefinitionSpecificationRead) HasSupportsNormalization

func (o *DestinationDefinitionSpecificationRead) HasSupportsNormalization() bool

HasSupportsNormalization returns a boolean if a field has been set.

func (DestinationDefinitionSpecificationRead) MarshalJSON

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

func (*DestinationDefinitionSpecificationRead) SetAdvancedAuth

SetAdvancedAuth gets a reference to the given AdvancedAuth and assigns it to the AdvancedAuth field.

func (*DestinationDefinitionSpecificationRead) SetAuthSpecification

func (o *DestinationDefinitionSpecificationRead) SetAuthSpecification(v AuthSpecification)

SetAuthSpecification gets a reference to the given AuthSpecification and assigns it to the AuthSpecification field.

func (*DestinationDefinitionSpecificationRead) SetConnectionSpecification

func (o *DestinationDefinitionSpecificationRead) SetConnectionSpecification(v interface{})

SetConnectionSpecification gets a reference to the given interface{} and assigns it to the ConnectionSpecification field.

func (*DestinationDefinitionSpecificationRead) SetDestinationDefinitionId

func (o *DestinationDefinitionSpecificationRead) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

func (*DestinationDefinitionSpecificationRead) SetDocumentationUrl

func (o *DestinationDefinitionSpecificationRead) SetDocumentationUrl(v string)

SetDocumentationUrl gets a reference to the given string and assigns it to the DocumentationUrl field.

func (*DestinationDefinitionSpecificationRead) SetJobInfo

SetJobInfo sets field value

func (*DestinationDefinitionSpecificationRead) SetSupportedDestinationSyncModes

func (o *DestinationDefinitionSpecificationRead) SetSupportedDestinationSyncModes(v []DestinationSyncMode)

SetSupportedDestinationSyncModes gets a reference to the given []DestinationSyncMode and assigns it to the SupportedDestinationSyncModes field.

func (*DestinationDefinitionSpecificationRead) SetSupportsDbt

func (o *DestinationDefinitionSpecificationRead) SetSupportsDbt(v bool)

SetSupportsDbt gets a reference to the given bool and assigns it to the SupportsDbt field.

func (*DestinationDefinitionSpecificationRead) SetSupportsNormalization

func (o *DestinationDefinitionSpecificationRead) SetSupportsNormalization(v bool)

SetSupportsNormalization gets a reference to the given bool and assigns it to the SupportsNormalization field.

type DestinationDefinitionUpdate

type DestinationDefinitionUpdate struct {
	DestinationDefinitionId string  `json:"destinationDefinitionId"`
	DockerImageTag          *string `json:"dockerImageTag,omitempty"`
}

DestinationDefinitionUpdate struct for DestinationDefinitionUpdate

func NewDestinationDefinitionUpdate

func NewDestinationDefinitionUpdate(destinationDefinitionId string) *DestinationDefinitionUpdate

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

func NewDestinationDefinitionUpdateWithDefaults

func NewDestinationDefinitionUpdateWithDefaults() *DestinationDefinitionUpdate

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

func (*DestinationDefinitionUpdate) GetDestinationDefinitionId

func (o *DestinationDefinitionUpdate) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*DestinationDefinitionUpdate) GetDestinationDefinitionIdOk

func (o *DestinationDefinitionUpdate) GetDestinationDefinitionIdOk() (*string, bool)

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

func (*DestinationDefinitionUpdate) GetDockerImageTag

func (o *DestinationDefinitionUpdate) GetDockerImageTag() string

GetDockerImageTag returns the DockerImageTag field value if set, zero value otherwise.

func (*DestinationDefinitionUpdate) GetDockerImageTagOk

func (o *DestinationDefinitionUpdate) GetDockerImageTagOk() (*string, bool)

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

func (*DestinationDefinitionUpdate) HasDockerImageTag

func (o *DestinationDefinitionUpdate) HasDockerImageTag() bool

HasDockerImageTag returns a boolean if a field has been set.

func (DestinationDefinitionUpdate) MarshalJSON

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

func (*DestinationDefinitionUpdate) SetDestinationDefinitionId

func (o *DestinationDefinitionUpdate) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

func (*DestinationDefinitionUpdate) SetDockerImageTag

func (o *DestinationDefinitionUpdate) SetDockerImageTag(v string)

SetDockerImageTag gets a reference to the given string and assigns it to the DockerImageTag field.

type DestinationIdRequestBody

type DestinationIdRequestBody struct {
	DestinationId string `json:"destinationId"`
}

DestinationIdRequestBody struct for DestinationIdRequestBody

func NewDestinationIdRequestBody

func NewDestinationIdRequestBody(destinationId string) *DestinationIdRequestBody

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

func NewDestinationIdRequestBodyWithDefaults

func NewDestinationIdRequestBodyWithDefaults() *DestinationIdRequestBody

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

func (*DestinationIdRequestBody) GetDestinationId

func (o *DestinationIdRequestBody) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*DestinationIdRequestBody) GetDestinationIdOk

func (o *DestinationIdRequestBody) GetDestinationIdOk() (*string, bool)

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

func (DestinationIdRequestBody) MarshalJSON

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

func (*DestinationIdRequestBody) SetDestinationId

func (o *DestinationIdRequestBody) SetDestinationId(v string)

SetDestinationId sets field value

type DestinationOauthConsentRequest

type DestinationOauthConsentRequest struct {
	DestinationDefinitionId string `json:"destinationDefinitionId"`
	WorkspaceId             string `json:"workspaceId"`
	// The url to redirect to after getting the user consent
	RedirectUrl string `json:"redirectUrl"`
	// OAuth specific blob.
	OAuthInputConfiguration interface{} `json:"oAuthInputConfiguration,omitempty"`
}

DestinationOauthConsentRequest struct for DestinationOauthConsentRequest

func NewDestinationOauthConsentRequest

func NewDestinationOauthConsentRequest(destinationDefinitionId string, workspaceId string, redirectUrl string) *DestinationOauthConsentRequest

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

func NewDestinationOauthConsentRequestWithDefaults

func NewDestinationOauthConsentRequestWithDefaults() *DestinationOauthConsentRequest

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

func (*DestinationOauthConsentRequest) GetDestinationDefinitionId

func (o *DestinationOauthConsentRequest) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*DestinationOauthConsentRequest) GetDestinationDefinitionIdOk

func (o *DestinationOauthConsentRequest) GetDestinationDefinitionIdOk() (*string, bool)

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

func (*DestinationOauthConsentRequest) GetOAuthInputConfiguration

func (o *DestinationOauthConsentRequest) GetOAuthInputConfiguration() interface{}

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

func (*DestinationOauthConsentRequest) GetOAuthInputConfigurationOk

func (o *DestinationOauthConsentRequest) GetOAuthInputConfigurationOk() (*interface{}, bool)

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

func (*DestinationOauthConsentRequest) GetRedirectUrl

func (o *DestinationOauthConsentRequest) GetRedirectUrl() string

GetRedirectUrl returns the RedirectUrl field value

func (*DestinationOauthConsentRequest) GetRedirectUrlOk

func (o *DestinationOauthConsentRequest) GetRedirectUrlOk() (*string, bool)

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

func (*DestinationOauthConsentRequest) GetWorkspaceId

func (o *DestinationOauthConsentRequest) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*DestinationOauthConsentRequest) GetWorkspaceIdOk

func (o *DestinationOauthConsentRequest) GetWorkspaceIdOk() (*string, bool)

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

func (*DestinationOauthConsentRequest) HasOAuthInputConfiguration

func (o *DestinationOauthConsentRequest) HasOAuthInputConfiguration() bool

HasOAuthInputConfiguration returns a boolean if a field has been set.

func (DestinationOauthConsentRequest) MarshalJSON

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

func (*DestinationOauthConsentRequest) SetDestinationDefinitionId

func (o *DestinationOauthConsentRequest) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

func (*DestinationOauthConsentRequest) SetOAuthInputConfiguration

func (o *DestinationOauthConsentRequest) SetOAuthInputConfiguration(v interface{})

SetOAuthInputConfiguration gets a reference to the given interface{} and assigns it to the OAuthInputConfiguration field.

func (*DestinationOauthConsentRequest) SetRedirectUrl

func (o *DestinationOauthConsentRequest) SetRedirectUrl(v string)

SetRedirectUrl sets field value

func (*DestinationOauthConsentRequest) SetWorkspaceId

func (o *DestinationOauthConsentRequest) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type DestinationRead

type DestinationRead struct {
	DestinationDefinitionId string `json:"destinationDefinitionId"`
	DestinationId           string `json:"destinationId"`
	WorkspaceId             string `json:"workspaceId"`
	// The values required to configure the destination. The schema for this must match the schema return by destination_definition_specifications/get for the destinationDefinition.
	ConnectionConfiguration interface{} `json:"connectionConfiguration"`
	Name                    string      `json:"name"`
	DestinationName         string      `json:"destinationName"`
}

DestinationRead struct for DestinationRead

func NewDestinationRead

func NewDestinationRead(destinationDefinitionId string, destinationId string, workspaceId string, connectionConfiguration interface{}, name string, destinationName string) *DestinationRead

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

func NewDestinationReadWithDefaults

func NewDestinationReadWithDefaults() *DestinationRead

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

func (*DestinationRead) GetConnectionConfiguration

func (o *DestinationRead) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value If the value is explicit nil, the zero value for interface{} will be returned

func (*DestinationRead) GetConnectionConfigurationOk

func (o *DestinationRead) GetConnectionConfigurationOk() (*interface{}, bool)

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

func (*DestinationRead) GetDestinationDefinitionId

func (o *DestinationRead) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*DestinationRead) GetDestinationDefinitionIdOk

func (o *DestinationRead) GetDestinationDefinitionIdOk() (*string, bool)

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

func (*DestinationRead) GetDestinationId

func (o *DestinationRead) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*DestinationRead) GetDestinationIdOk

func (o *DestinationRead) GetDestinationIdOk() (*string, bool)

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

func (*DestinationRead) GetDestinationName

func (o *DestinationRead) GetDestinationName() string

GetDestinationName returns the DestinationName field value

func (*DestinationRead) GetDestinationNameOk

func (o *DestinationRead) GetDestinationNameOk() (*string, bool)

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

func (*DestinationRead) GetName

func (o *DestinationRead) GetName() string

GetName returns the Name field value

func (*DestinationRead) GetNameOk

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

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

func (*DestinationRead) GetWorkspaceId

func (o *DestinationRead) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*DestinationRead) GetWorkspaceIdOk

func (o *DestinationRead) GetWorkspaceIdOk() (*string, bool)

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

func (DestinationRead) MarshalJSON

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

func (*DestinationRead) SetConnectionConfiguration

func (o *DestinationRead) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets field value

func (*DestinationRead) SetDestinationDefinitionId

func (o *DestinationRead) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

func (*DestinationRead) SetDestinationId

func (o *DestinationRead) SetDestinationId(v string)

SetDestinationId sets field value

func (*DestinationRead) SetDestinationName

func (o *DestinationRead) SetDestinationName(v string)

SetDestinationName sets field value

func (*DestinationRead) SetName

func (o *DestinationRead) SetName(v string)

SetName sets field value

func (*DestinationRead) SetWorkspaceId

func (o *DestinationRead) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type DestinationReadList

type DestinationReadList struct {
	Destinations []DestinationRead `json:"destinations"`
}

DestinationReadList struct for DestinationReadList

func NewDestinationReadList

func NewDestinationReadList(destinations []DestinationRead) *DestinationReadList

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

func NewDestinationReadListWithDefaults

func NewDestinationReadListWithDefaults() *DestinationReadList

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

func (*DestinationReadList) GetDestinations

func (o *DestinationReadList) GetDestinations() []DestinationRead

GetDestinations returns the Destinations field value

func (*DestinationReadList) GetDestinationsOk

func (o *DestinationReadList) GetDestinationsOk() ([]DestinationRead, bool)

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

func (DestinationReadList) MarshalJSON

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

func (*DestinationReadList) SetDestinations

func (o *DestinationReadList) SetDestinations(v []DestinationRead)

SetDestinations sets field value

type DestinationSearch

type DestinationSearch struct {
	DestinationDefinitionId *string `json:"destinationDefinitionId,omitempty"`
	DestinationId           *string `json:"destinationId,omitempty"`
	WorkspaceId             *string `json:"workspaceId,omitempty"`
	// The values required to configure the destination. The schema for this must match the schema return by destination_definition_specifications/get for the destinationDefinition.
	ConnectionConfiguration interface{} `json:"connectionConfiguration,omitempty"`
	Name                    *string     `json:"name,omitempty"`
	DestinationName         *string     `json:"destinationName,omitempty"`
}

DestinationSearch struct for DestinationSearch

func NewDestinationSearch

func NewDestinationSearch() *DestinationSearch

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

func NewDestinationSearchWithDefaults

func NewDestinationSearchWithDefaults() *DestinationSearch

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

func (*DestinationSearch) GetConnectionConfiguration

func (o *DestinationSearch) GetConnectionConfiguration() interface{}

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

func (*DestinationSearch) GetConnectionConfigurationOk

func (o *DestinationSearch) GetConnectionConfigurationOk() (*interface{}, bool)

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

func (*DestinationSearch) GetDestinationDefinitionId

func (o *DestinationSearch) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value if set, zero value otherwise.

func (*DestinationSearch) GetDestinationDefinitionIdOk

func (o *DestinationSearch) GetDestinationDefinitionIdOk() (*string, bool)

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

func (*DestinationSearch) GetDestinationId

func (o *DestinationSearch) GetDestinationId() string

GetDestinationId returns the DestinationId field value if set, zero value otherwise.

func (*DestinationSearch) GetDestinationIdOk

func (o *DestinationSearch) GetDestinationIdOk() (*string, bool)

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

func (*DestinationSearch) GetDestinationName

func (o *DestinationSearch) GetDestinationName() string

GetDestinationName returns the DestinationName field value if set, zero value otherwise.

func (*DestinationSearch) GetDestinationNameOk

func (o *DestinationSearch) GetDestinationNameOk() (*string, bool)

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

func (*DestinationSearch) GetName

func (o *DestinationSearch) GetName() string

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

func (*DestinationSearch) GetNameOk

func (o *DestinationSearch) 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 (*DestinationSearch) GetWorkspaceId

func (o *DestinationSearch) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise.

func (*DestinationSearch) GetWorkspaceIdOk

func (o *DestinationSearch) GetWorkspaceIdOk() (*string, bool)

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

func (*DestinationSearch) HasConnectionConfiguration

func (o *DestinationSearch) HasConnectionConfiguration() bool

HasConnectionConfiguration returns a boolean if a field has been set.

func (*DestinationSearch) HasDestinationDefinitionId

func (o *DestinationSearch) HasDestinationDefinitionId() bool

HasDestinationDefinitionId returns a boolean if a field has been set.

func (*DestinationSearch) HasDestinationId

func (o *DestinationSearch) HasDestinationId() bool

HasDestinationId returns a boolean if a field has been set.

func (*DestinationSearch) HasDestinationName

func (o *DestinationSearch) HasDestinationName() bool

HasDestinationName returns a boolean if a field has been set.

func (*DestinationSearch) HasName

func (o *DestinationSearch) HasName() bool

HasName returns a boolean if a field has been set.

func (*DestinationSearch) HasWorkspaceId

func (o *DestinationSearch) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (DestinationSearch) MarshalJSON

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

func (*DestinationSearch) SetConnectionConfiguration

func (o *DestinationSearch) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration gets a reference to the given interface{} and assigns it to the ConnectionConfiguration field.

func (*DestinationSearch) SetDestinationDefinitionId

func (o *DestinationSearch) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId gets a reference to the given string and assigns it to the DestinationDefinitionId field.

func (*DestinationSearch) SetDestinationId

func (o *DestinationSearch) SetDestinationId(v string)

SetDestinationId gets a reference to the given string and assigns it to the DestinationId field.

func (*DestinationSearch) SetDestinationName

func (o *DestinationSearch) SetDestinationName(v string)

SetDestinationName gets a reference to the given string and assigns it to the DestinationName field.

func (*DestinationSearch) SetName

func (o *DestinationSearch) SetName(v string)

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

func (*DestinationSearch) SetWorkspaceId

func (o *DestinationSearch) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given string and assigns it to the WorkspaceId field.

type DestinationSyncMode

type DestinationSyncMode string

DestinationSyncMode the model 'DestinationSyncMode'

const (
	DESTINATIONSYNCMODE_APPEND       DestinationSyncMode = "append"
	DESTINATIONSYNCMODE_OVERWRITE    DestinationSyncMode = "overwrite"
	DESTINATIONSYNCMODE_APPEND_DEDUP DestinationSyncMode = "append_dedup"
)

List of DestinationSyncMode

func NewDestinationSyncModeFromValue

func NewDestinationSyncModeFromValue(v string) (*DestinationSyncMode, error)

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

func (DestinationSyncMode) IsValid

func (v DestinationSyncMode) IsValid() bool

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

func (DestinationSyncMode) Ptr

Ptr returns reference to DestinationSyncMode value

func (*DestinationSyncMode) UnmarshalJSON

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

type DestinationUpdate

type DestinationUpdate struct {
	DestinationId string `json:"destinationId"`
	// The values required to configure the destination. The schema for this must match the schema return by destination_definition_specifications/get for the destinationDefinition.
	ConnectionConfiguration interface{} `json:"connectionConfiguration"`
	Name                    string      `json:"name"`
}

DestinationUpdate struct for DestinationUpdate

func NewDestinationUpdate

func NewDestinationUpdate(destinationId string, connectionConfiguration interface{}, name string) *DestinationUpdate

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

func NewDestinationUpdateWithDefaults

func NewDestinationUpdateWithDefaults() *DestinationUpdate

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

func (*DestinationUpdate) GetConnectionConfiguration

func (o *DestinationUpdate) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value If the value is explicit nil, the zero value for interface{} will be returned

func (*DestinationUpdate) GetConnectionConfigurationOk

func (o *DestinationUpdate) GetConnectionConfigurationOk() (*interface{}, bool)

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

func (*DestinationUpdate) GetDestinationId

func (o *DestinationUpdate) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*DestinationUpdate) GetDestinationIdOk

func (o *DestinationUpdate) GetDestinationIdOk() (*string, bool)

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

func (*DestinationUpdate) GetName

func (o *DestinationUpdate) GetName() string

GetName returns the Name field value

func (*DestinationUpdate) GetNameOk

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

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

func (DestinationUpdate) MarshalJSON

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

func (*DestinationUpdate) SetConnectionConfiguration

func (o *DestinationUpdate) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets field value

func (*DestinationUpdate) SetDestinationId

func (o *DestinationUpdate) SetDestinationId(v string)

SetDestinationId sets field value

func (*DestinationUpdate) SetName

func (o *DestinationUpdate) SetName(v string)

SetName sets field value

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 HealthApiService

type HealthApiService service

HealthApiService HealthApi service

func (*HealthApiService) GetHealthCheck

GetHealthCheck Health Check

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

func (*HealthApiService) GetHealthCheckExecute

func (a *HealthApiService) GetHealthCheckExecute(r ApiGetHealthCheckRequest) (*HealthCheckRead, *http.Response, error)

Execute executes the request

@return HealthCheckRead

type HealthCheckRead

type HealthCheckRead struct {
	Available bool `json:"available"`
}

HealthCheckRead struct for HealthCheckRead

func NewHealthCheckRead

func NewHealthCheckRead(available bool) *HealthCheckRead

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

func NewHealthCheckReadWithDefaults

func NewHealthCheckReadWithDefaults() *HealthCheckRead

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

func (*HealthCheckRead) GetAvailable

func (o *HealthCheckRead) GetAvailable() bool

GetAvailable returns the Available field value

func (*HealthCheckRead) GetAvailableOk

func (o *HealthCheckRead) GetAvailableOk() (*bool, bool)

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

func (HealthCheckRead) MarshalJSON

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

func (*HealthCheckRead) SetAvailable

func (o *HealthCheckRead) SetAvailable(v bool)

SetAvailable sets field value

type ImportRead

type ImportRead struct {
	Status string  `json:"status"`
	Reason *string `json:"reason,omitempty"`
}

ImportRead struct for ImportRead

func NewImportRead

func NewImportRead(status string) *ImportRead

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

func NewImportReadWithDefaults

func NewImportReadWithDefaults() *ImportRead

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

func (*ImportRead) GetReason

func (o *ImportRead) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*ImportRead) GetReasonOk

func (o *ImportRead) GetReasonOk() (*string, bool)

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

func (*ImportRead) GetStatus

func (o *ImportRead) GetStatus() string

GetStatus returns the Status field value

func (*ImportRead) GetStatusOk

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

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

func (*ImportRead) HasReason

func (o *ImportRead) HasReason() bool

HasReason returns a boolean if a field has been set.

func (ImportRead) MarshalJSON

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

func (*ImportRead) SetReason

func (o *ImportRead) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*ImportRead) SetStatus

func (o *ImportRead) SetStatus(v string)

SetStatus sets field value

type ImportRequestBody

type ImportRequestBody struct {
	ResourceId  string `json:"resourceId"`
	WorkspaceId string `json:"workspaceId"`
}

ImportRequestBody struct for ImportRequestBody

func NewImportRequestBody

func NewImportRequestBody(resourceId string, workspaceId string) *ImportRequestBody

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

func NewImportRequestBodyWithDefaults

func NewImportRequestBodyWithDefaults() *ImportRequestBody

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

func (*ImportRequestBody) GetResourceId

func (o *ImportRequestBody) GetResourceId() string

GetResourceId returns the ResourceId field value

func (*ImportRequestBody) GetResourceIdOk

func (o *ImportRequestBody) GetResourceIdOk() (*string, bool)

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

func (*ImportRequestBody) GetWorkspaceId

func (o *ImportRequestBody) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*ImportRequestBody) GetWorkspaceIdOk

func (o *ImportRequestBody) GetWorkspaceIdOk() (*string, bool)

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

func (ImportRequestBody) MarshalJSON

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

func (*ImportRequestBody) SetResourceId

func (o *ImportRequestBody) SetResourceId(v string)

SetResourceId sets field value

func (*ImportRequestBody) SetWorkspaceId

func (o *ImportRequestBody) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type InvalidInputExceptionInfo

type InvalidInputExceptionInfo struct {
	Message            string                 `json:"message"`
	ExceptionClassName *string                `json:"exceptionClassName,omitempty"`
	ExceptionStack     []string               `json:"exceptionStack,omitempty"`
	ValidationErrors   []InvalidInputProperty `json:"validationErrors"`
}

InvalidInputExceptionInfo struct for InvalidInputExceptionInfo

func NewInvalidInputExceptionInfo

func NewInvalidInputExceptionInfo(message string, validationErrors []InvalidInputProperty) *InvalidInputExceptionInfo

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

func NewInvalidInputExceptionInfoWithDefaults

func NewInvalidInputExceptionInfoWithDefaults() *InvalidInputExceptionInfo

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

func (*InvalidInputExceptionInfo) GetExceptionClassName

func (o *InvalidInputExceptionInfo) GetExceptionClassName() string

GetExceptionClassName returns the ExceptionClassName field value if set, zero value otherwise.

func (*InvalidInputExceptionInfo) GetExceptionClassNameOk

func (o *InvalidInputExceptionInfo) GetExceptionClassNameOk() (*string, bool)

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

func (*InvalidInputExceptionInfo) GetExceptionStack

func (o *InvalidInputExceptionInfo) GetExceptionStack() []string

GetExceptionStack returns the ExceptionStack field value if set, zero value otherwise.

func (*InvalidInputExceptionInfo) GetExceptionStackOk

func (o *InvalidInputExceptionInfo) GetExceptionStackOk() ([]string, bool)

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

func (*InvalidInputExceptionInfo) GetMessage

func (o *InvalidInputExceptionInfo) GetMessage() string

GetMessage returns the Message field value

func (*InvalidInputExceptionInfo) GetMessageOk

func (o *InvalidInputExceptionInfo) GetMessageOk() (*string, bool)

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

func (*InvalidInputExceptionInfo) GetValidationErrors

func (o *InvalidInputExceptionInfo) GetValidationErrors() []InvalidInputProperty

GetValidationErrors returns the ValidationErrors field value

func (*InvalidInputExceptionInfo) GetValidationErrorsOk

func (o *InvalidInputExceptionInfo) GetValidationErrorsOk() ([]InvalidInputProperty, bool)

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

func (*InvalidInputExceptionInfo) HasExceptionClassName

func (o *InvalidInputExceptionInfo) HasExceptionClassName() bool

HasExceptionClassName returns a boolean if a field has been set.

func (*InvalidInputExceptionInfo) HasExceptionStack

func (o *InvalidInputExceptionInfo) HasExceptionStack() bool

HasExceptionStack returns a boolean if a field has been set.

func (InvalidInputExceptionInfo) MarshalJSON

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

func (*InvalidInputExceptionInfo) SetExceptionClassName

func (o *InvalidInputExceptionInfo) SetExceptionClassName(v string)

SetExceptionClassName gets a reference to the given string and assigns it to the ExceptionClassName field.

func (*InvalidInputExceptionInfo) SetExceptionStack

func (o *InvalidInputExceptionInfo) SetExceptionStack(v []string)

SetExceptionStack gets a reference to the given []string and assigns it to the ExceptionStack field.

func (*InvalidInputExceptionInfo) SetMessage

func (o *InvalidInputExceptionInfo) SetMessage(v string)

SetMessage sets field value

func (*InvalidInputExceptionInfo) SetValidationErrors

func (o *InvalidInputExceptionInfo) SetValidationErrors(v []InvalidInputProperty)

SetValidationErrors sets field value

type InvalidInputProperty

type InvalidInputProperty struct {
	PropertyPath string  `json:"propertyPath"`
	InvalidValue *string `json:"invalidValue,omitempty"`
	Message      *string `json:"message,omitempty"`
}

InvalidInputProperty struct for InvalidInputProperty

func NewInvalidInputProperty

func NewInvalidInputProperty(propertyPath string) *InvalidInputProperty

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

func NewInvalidInputPropertyWithDefaults

func NewInvalidInputPropertyWithDefaults() *InvalidInputProperty

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

func (*InvalidInputProperty) GetInvalidValue

func (o *InvalidInputProperty) GetInvalidValue() string

GetInvalidValue returns the InvalidValue field value if set, zero value otherwise.

func (*InvalidInputProperty) GetInvalidValueOk

func (o *InvalidInputProperty) GetInvalidValueOk() (*string, bool)

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

func (*InvalidInputProperty) GetMessage

func (o *InvalidInputProperty) GetMessage() string

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

func (*InvalidInputProperty) GetMessageOk

func (o *InvalidInputProperty) 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 (*InvalidInputProperty) GetPropertyPath

func (o *InvalidInputProperty) GetPropertyPath() string

GetPropertyPath returns the PropertyPath field value

func (*InvalidInputProperty) GetPropertyPathOk

func (o *InvalidInputProperty) GetPropertyPathOk() (*string, bool)

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

func (*InvalidInputProperty) HasInvalidValue

func (o *InvalidInputProperty) HasInvalidValue() bool

HasInvalidValue returns a boolean if a field has been set.

func (*InvalidInputProperty) HasMessage

func (o *InvalidInputProperty) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (InvalidInputProperty) MarshalJSON

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

func (*InvalidInputProperty) SetInvalidValue

func (o *InvalidInputProperty) SetInvalidValue(v string)

SetInvalidValue gets a reference to the given string and assigns it to the InvalidValue field.

func (*InvalidInputProperty) SetMessage

func (o *InvalidInputProperty) SetMessage(v string)

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

func (*InvalidInputProperty) SetPropertyPath

func (o *InvalidInputProperty) SetPropertyPath(v string)

SetPropertyPath sets field value

type JobConfigType

type JobConfigType string

JobConfigType the model 'JobConfigType'

const (
	JOBCONFIGTYPE_CHECK_CONNECTION_SOURCE      JobConfigType = "check_connection_source"
	JOBCONFIGTYPE_CHECK_CONNECTION_DESTINATION JobConfigType = "check_connection_destination"
	JOBCONFIGTYPE_DISCOVER_SCHEMA              JobConfigType = "discover_schema"
	JOBCONFIGTYPE_GET_SPEC                     JobConfigType = "get_spec"
	JOBCONFIGTYPE_SYNC                         JobConfigType = "sync"
	JOBCONFIGTYPE_RESET_CONNECTION             JobConfigType = "reset_connection"
)

List of JobConfigType

func NewJobConfigTypeFromValue

func NewJobConfigTypeFromValue(v string) (*JobConfigType, error)

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

func (JobConfigType) IsValid

func (v JobConfigType) IsValid() bool

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

func (JobConfigType) Ptr

func (v JobConfigType) Ptr() *JobConfigType

Ptr returns reference to JobConfigType value

func (*JobConfigType) UnmarshalJSON

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

type JobDebugInfoRead

type JobDebugInfoRead struct {
	Job      JobDebugRead      `json:"job"`
	Attempts []AttemptInfoRead `json:"attempts"`
}

JobDebugInfoRead struct for JobDebugInfoRead

func NewJobDebugInfoRead

func NewJobDebugInfoRead(job JobDebugRead, attempts []AttemptInfoRead) *JobDebugInfoRead

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

func NewJobDebugInfoReadWithDefaults

func NewJobDebugInfoReadWithDefaults() *JobDebugInfoRead

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

func (*JobDebugInfoRead) GetAttempts

func (o *JobDebugInfoRead) GetAttempts() []AttemptInfoRead

GetAttempts returns the Attempts field value

func (*JobDebugInfoRead) GetAttemptsOk

func (o *JobDebugInfoRead) GetAttemptsOk() ([]AttemptInfoRead, bool)

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

func (*JobDebugInfoRead) GetJob

func (o *JobDebugInfoRead) GetJob() JobDebugRead

GetJob returns the Job field value

func (*JobDebugInfoRead) GetJobOk

func (o *JobDebugInfoRead) GetJobOk() (*JobDebugRead, bool)

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

func (JobDebugInfoRead) MarshalJSON

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

func (*JobDebugInfoRead) SetAttempts

func (o *JobDebugInfoRead) SetAttempts(v []AttemptInfoRead)

SetAttempts sets field value

func (*JobDebugInfoRead) SetJob

func (o *JobDebugInfoRead) SetJob(v JobDebugRead)

SetJob sets field value

type JobDebugRead

type JobDebugRead struct {
	Id                    int64                     `json:"id"`
	ConfigType            JobConfigType             `json:"configType"`
	ConfigId              string                    `json:"configId"`
	Status                JobStatus                 `json:"status"`
	AirbyteVersion        string                    `json:"airbyteVersion"`
	SourceDefinition      SourceDefinitionRead      `json:"sourceDefinition"`
	DestinationDefinition DestinationDefinitionRead `json:"destinationDefinition"`
}

JobDebugRead struct for JobDebugRead

func NewJobDebugRead

func NewJobDebugRead(id int64, configType JobConfigType, configId string, status JobStatus, airbyteVersion string, sourceDefinition SourceDefinitionRead, destinationDefinition DestinationDefinitionRead) *JobDebugRead

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

func NewJobDebugReadWithDefaults

func NewJobDebugReadWithDefaults() *JobDebugRead

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

func (*JobDebugRead) GetAirbyteVersion

func (o *JobDebugRead) GetAirbyteVersion() string

GetAirbyteVersion returns the AirbyteVersion field value

func (*JobDebugRead) GetAirbyteVersionOk

func (o *JobDebugRead) GetAirbyteVersionOk() (*string, bool)

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

func (*JobDebugRead) GetConfigId

func (o *JobDebugRead) GetConfigId() string

GetConfigId returns the ConfigId field value

func (*JobDebugRead) GetConfigIdOk

func (o *JobDebugRead) GetConfigIdOk() (*string, bool)

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

func (*JobDebugRead) GetConfigType

func (o *JobDebugRead) GetConfigType() JobConfigType

GetConfigType returns the ConfigType field value

func (*JobDebugRead) GetConfigTypeOk

func (o *JobDebugRead) GetConfigTypeOk() (*JobConfigType, bool)

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

func (*JobDebugRead) GetDestinationDefinition

func (o *JobDebugRead) GetDestinationDefinition() DestinationDefinitionRead

GetDestinationDefinition returns the DestinationDefinition field value

func (*JobDebugRead) GetDestinationDefinitionOk

func (o *JobDebugRead) GetDestinationDefinitionOk() (*DestinationDefinitionRead, bool)

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

func (*JobDebugRead) GetId

func (o *JobDebugRead) GetId() int64

GetId returns the Id field value

func (*JobDebugRead) GetIdOk

func (o *JobDebugRead) GetIdOk() (*int64, bool)

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

func (*JobDebugRead) GetSourceDefinition

func (o *JobDebugRead) GetSourceDefinition() SourceDefinitionRead

GetSourceDefinition returns the SourceDefinition field value

func (*JobDebugRead) GetSourceDefinitionOk

func (o *JobDebugRead) GetSourceDefinitionOk() (*SourceDefinitionRead, bool)

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

func (*JobDebugRead) GetStatus

func (o *JobDebugRead) GetStatus() JobStatus

GetStatus returns the Status field value

func (*JobDebugRead) GetStatusOk

func (o *JobDebugRead) GetStatusOk() (*JobStatus, bool)

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

func (JobDebugRead) MarshalJSON

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

func (*JobDebugRead) SetAirbyteVersion

func (o *JobDebugRead) SetAirbyteVersion(v string)

SetAirbyteVersion sets field value

func (*JobDebugRead) SetConfigId

func (o *JobDebugRead) SetConfigId(v string)

SetConfigId sets field value

func (*JobDebugRead) SetConfigType

func (o *JobDebugRead) SetConfigType(v JobConfigType)

SetConfigType sets field value

func (*JobDebugRead) SetDestinationDefinition

func (o *JobDebugRead) SetDestinationDefinition(v DestinationDefinitionRead)

SetDestinationDefinition sets field value

func (*JobDebugRead) SetId

func (o *JobDebugRead) SetId(v int64)

SetId sets field value

func (*JobDebugRead) SetSourceDefinition

func (o *JobDebugRead) SetSourceDefinition(v SourceDefinitionRead)

SetSourceDefinition sets field value

func (*JobDebugRead) SetStatus

func (o *JobDebugRead) SetStatus(v JobStatus)

SetStatus sets field value

type JobIdRequestBody

type JobIdRequestBody struct {
	Id int64 `json:"id"`
}

JobIdRequestBody struct for JobIdRequestBody

func NewJobIdRequestBody

func NewJobIdRequestBody(id int64) *JobIdRequestBody

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

func NewJobIdRequestBodyWithDefaults

func NewJobIdRequestBodyWithDefaults() *JobIdRequestBody

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

func (*JobIdRequestBody) GetId

func (o *JobIdRequestBody) GetId() int64

GetId returns the Id field value

func (*JobIdRequestBody) GetIdOk

func (o *JobIdRequestBody) GetIdOk() (*int64, bool)

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

func (JobIdRequestBody) MarshalJSON

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

func (*JobIdRequestBody) SetId

func (o *JobIdRequestBody) SetId(v int64)

SetId sets field value

type JobInfoRead

type JobInfoRead struct {
	Job      JobRead           `json:"job"`
	Attempts []AttemptInfoRead `json:"attempts"`
}

JobInfoRead struct for JobInfoRead

func NewJobInfoRead

func NewJobInfoRead(job JobRead, attempts []AttemptInfoRead) *JobInfoRead

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

func NewJobInfoReadWithDefaults

func NewJobInfoReadWithDefaults() *JobInfoRead

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

func (*JobInfoRead) GetAttempts

func (o *JobInfoRead) GetAttempts() []AttemptInfoRead

GetAttempts returns the Attempts field value

func (*JobInfoRead) GetAttemptsOk

func (o *JobInfoRead) GetAttemptsOk() ([]AttemptInfoRead, bool)

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

func (*JobInfoRead) GetJob

func (o *JobInfoRead) GetJob() JobRead

GetJob returns the Job field value

func (*JobInfoRead) GetJobOk

func (o *JobInfoRead) GetJobOk() (*JobRead, bool)

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

func (JobInfoRead) MarshalJSON

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

func (*JobInfoRead) SetAttempts

func (o *JobInfoRead) SetAttempts(v []AttemptInfoRead)

SetAttempts sets field value

func (*JobInfoRead) SetJob

func (o *JobInfoRead) SetJob(v JobRead)

SetJob sets field value

type JobListRequestBody

type JobListRequestBody struct {
	ConfigTypes []JobConfigType `json:"configTypes"`
	ConfigId    string          `json:"configId"`
	Pagination  Pagination      `json:"pagination,omitempty"`
}

JobListRequestBody struct for JobListRequestBody

func NewJobListRequestBody

func NewJobListRequestBody(configTypes []JobConfigType, configId string) *JobListRequestBody

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

func NewJobListRequestBodyWithDefaults

func NewJobListRequestBodyWithDefaults() *JobListRequestBody

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

func (*JobListRequestBody) GetConfigId

func (o *JobListRequestBody) GetConfigId() string

GetConfigId returns the ConfigId field value

func (*JobListRequestBody) GetConfigIdOk

func (o *JobListRequestBody) GetConfigIdOk() (*string, bool)

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

func (*JobListRequestBody) GetConfigTypes

func (o *JobListRequestBody) GetConfigTypes() []JobConfigType

GetConfigTypes returns the ConfigTypes field value

func (*JobListRequestBody) GetConfigTypesOk

func (o *JobListRequestBody) GetConfigTypesOk() ([]JobConfigType, bool)

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

func (*JobListRequestBody) GetPagination

func (o *JobListRequestBody) GetPagination() Pagination

GetPagination returns the Pagination field value if set, zero value otherwise.

func (*JobListRequestBody) GetPaginationOk

func (o *JobListRequestBody) GetPaginationOk() (Pagination, bool)

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

func (*JobListRequestBody) HasPagination

func (o *JobListRequestBody) HasPagination() bool

HasPagination returns a boolean if a field has been set.

func (JobListRequestBody) MarshalJSON

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

func (*JobListRequestBody) SetConfigId

func (o *JobListRequestBody) SetConfigId(v string)

SetConfigId sets field value

func (*JobListRequestBody) SetConfigTypes

func (o *JobListRequestBody) SetConfigTypes(v []JobConfigType)

SetConfigTypes sets field value

func (*JobListRequestBody) SetPagination

func (o *JobListRequestBody) SetPagination(v Pagination)

SetPagination gets a reference to the given Pagination and assigns it to the Pagination field.

type JobRead

type JobRead struct {
	Id         int64         `json:"id"`
	ConfigType JobConfigType `json:"configType"`
	ConfigId   string        `json:"configId"`
	CreatedAt  int64         `json:"createdAt"`
	UpdatedAt  int64         `json:"updatedAt"`
	Status     JobStatus     `json:"status"`
}

JobRead struct for JobRead

func NewJobRead

func NewJobRead(id int64, configType JobConfigType, configId string, createdAt int64, updatedAt int64, status JobStatus) *JobRead

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

func NewJobReadWithDefaults

func NewJobReadWithDefaults() *JobRead

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

func (*JobRead) GetConfigId

func (o *JobRead) GetConfigId() string

GetConfigId returns the ConfigId field value

func (*JobRead) GetConfigIdOk

func (o *JobRead) GetConfigIdOk() (*string, bool)

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

func (*JobRead) GetConfigType

func (o *JobRead) GetConfigType() JobConfigType

GetConfigType returns the ConfigType field value

func (*JobRead) GetConfigTypeOk

func (o *JobRead) GetConfigTypeOk() (*JobConfigType, bool)

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

func (*JobRead) GetCreatedAt

func (o *JobRead) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*JobRead) GetCreatedAtOk

func (o *JobRead) GetCreatedAtOk() (*int64, bool)

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

func (*JobRead) GetId

func (o *JobRead) GetId() int64

GetId returns the Id field value

func (*JobRead) GetIdOk

func (o *JobRead) GetIdOk() (*int64, bool)

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

func (*JobRead) GetStatus

func (o *JobRead) GetStatus() JobStatus

GetStatus returns the Status field value

func (*JobRead) GetStatusOk

func (o *JobRead) GetStatusOk() (*JobStatus, bool)

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

func (*JobRead) GetUpdatedAt

func (o *JobRead) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field value

func (*JobRead) GetUpdatedAtOk

func (o *JobRead) GetUpdatedAtOk() (*int64, bool)

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

func (JobRead) MarshalJSON

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

func (*JobRead) SetConfigId

func (o *JobRead) SetConfigId(v string)

SetConfigId sets field value

func (*JobRead) SetConfigType

func (o *JobRead) SetConfigType(v JobConfigType)

SetConfigType sets field value

func (*JobRead) SetCreatedAt

func (o *JobRead) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*JobRead) SetId

func (o *JobRead) SetId(v int64)

SetId sets field value

func (*JobRead) SetStatus

func (o *JobRead) SetStatus(v JobStatus)

SetStatus sets field value

func (*JobRead) SetUpdatedAt

func (o *JobRead) SetUpdatedAt(v int64)

SetUpdatedAt sets field value

type JobReadList

type JobReadList struct {
	Jobs []JobWithAttemptsRead `json:"jobs"`
}

JobReadList struct for JobReadList

func NewJobReadList

func NewJobReadList(jobs []JobWithAttemptsRead) *JobReadList

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

func NewJobReadListWithDefaults

func NewJobReadListWithDefaults() *JobReadList

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

func (*JobReadList) GetJobs

func (o *JobReadList) GetJobs() []JobWithAttemptsRead

GetJobs returns the Jobs field value

func (*JobReadList) GetJobsOk

func (o *JobReadList) GetJobsOk() ([]JobWithAttemptsRead, bool)

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

func (JobReadList) MarshalJSON

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

func (*JobReadList) SetJobs

func (o *JobReadList) SetJobs(v []JobWithAttemptsRead)

SetJobs sets field value

type JobStatus

type JobStatus string

JobStatus the model 'JobStatus'

const (
	JOBSTATUS_PENDING    JobStatus = "pending"
	JOBSTATUS_RUNNING    JobStatus = "running"
	JOBSTATUS_INCOMPLETE JobStatus = "incomplete"
	JOBSTATUS_FAILED     JobStatus = "failed"
	JOBSTATUS_SUCCEEDED  JobStatus = "succeeded"
	JOBSTATUS_CANCELLED  JobStatus = "cancelled"
)

List of JobStatus

func NewJobStatusFromValue

func NewJobStatusFromValue(v string) (*JobStatus, error)

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

func (JobStatus) IsValid

func (v JobStatus) IsValid() bool

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

func (JobStatus) Ptr

func (v JobStatus) Ptr() *JobStatus

Ptr returns reference to JobStatus value

func (*JobStatus) UnmarshalJSON

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

type JobWithAttemptsRead

type JobWithAttemptsRead struct {
	Job      *JobRead      `json:"job,omitempty"`
	Attempts []AttemptRead `json:"attempts,omitempty"`
}

JobWithAttemptsRead struct for JobWithAttemptsRead

func NewJobWithAttemptsRead

func NewJobWithAttemptsRead() *JobWithAttemptsRead

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

func NewJobWithAttemptsReadWithDefaults

func NewJobWithAttemptsReadWithDefaults() *JobWithAttemptsRead

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

func (*JobWithAttemptsRead) GetAttempts

func (o *JobWithAttemptsRead) GetAttempts() []AttemptRead

GetAttempts returns the Attempts field value if set, zero value otherwise.

func (*JobWithAttemptsRead) GetAttemptsOk

func (o *JobWithAttemptsRead) GetAttemptsOk() ([]AttemptRead, bool)

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

func (*JobWithAttemptsRead) GetJob

func (o *JobWithAttemptsRead) GetJob() JobRead

GetJob returns the Job field value if set, zero value otherwise.

func (*JobWithAttemptsRead) GetJobOk

func (o *JobWithAttemptsRead) GetJobOk() (*JobRead, bool)

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

func (*JobWithAttemptsRead) HasAttempts

func (o *JobWithAttemptsRead) HasAttempts() bool

HasAttempts returns a boolean if a field has been set.

func (*JobWithAttemptsRead) HasJob

func (o *JobWithAttemptsRead) HasJob() bool

HasJob returns a boolean if a field has been set.

func (JobWithAttemptsRead) MarshalJSON

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

func (*JobWithAttemptsRead) SetAttempts

func (o *JobWithAttemptsRead) SetAttempts(v []AttemptRead)

SetAttempts gets a reference to the given []AttemptRead and assigns it to the Attempts field.

func (*JobWithAttemptsRead) SetJob

func (o *JobWithAttemptsRead) SetJob(v JobRead)

SetJob gets a reference to the given JobRead and assigns it to the Job field.

type JobsApiService

type JobsApiService service

JobsApiService JobsApi service

func (*JobsApiService) CancelJob

CancelJob Cancels a job

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

func (*JobsApiService) CancelJobExecute

func (a *JobsApiService) CancelJobExecute(r ApiCancelJobRequest) (*JobInfoRead, *http.Response, error)

Execute executes the request

@return JobInfoRead

func (*JobsApiService) GetJobDebugInfo

func (a *JobsApiService) GetJobDebugInfo(ctx context.Context) ApiGetJobDebugInfoRequest

GetJobDebugInfo Gets all information needed to debug this job

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

func (*JobsApiService) GetJobDebugInfoExecute

func (a *JobsApiService) GetJobDebugInfoExecute(r ApiGetJobDebugInfoRequest) (*JobDebugInfoRead, *http.Response, error)

Execute executes the request

@return JobDebugInfoRead

func (*JobsApiService) GetJobInfo

GetJobInfo Get information about a job

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

func (*JobsApiService) GetJobInfoExecute

func (a *JobsApiService) GetJobInfoExecute(r ApiGetJobInfoRequest) (*JobInfoRead, *http.Response, error)

Execute executes the request

@return JobInfoRead

func (*JobsApiService) ListJobsFor

ListJobsFor Returns recent jobs for a connection. Jobs are returned in descending order by createdAt.

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

func (*JobsApiService) ListJobsForExecute

func (a *JobsApiService) ListJobsForExecute(r ApiListJobsForRequest) (*JobReadList, *http.Response, error)

Execute executes the request

@return JobReadList

type KnownExceptionInfo

type KnownExceptionInfo struct {
	Message                     string   `json:"message"`
	ExceptionClassName          *string  `json:"exceptionClassName,omitempty"`
	ExceptionStack              []string `json:"exceptionStack,omitempty"`
	RootCauseExceptionClassName *string  `json:"rootCauseExceptionClassName,omitempty"`
	RootCauseExceptionStack     []string `json:"rootCauseExceptionStack,omitempty"`
}

KnownExceptionInfo struct for KnownExceptionInfo

func NewKnownExceptionInfo

func NewKnownExceptionInfo(message string) *KnownExceptionInfo

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

func NewKnownExceptionInfoWithDefaults

func NewKnownExceptionInfoWithDefaults() *KnownExceptionInfo

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

func (*KnownExceptionInfo) GetExceptionClassName

func (o *KnownExceptionInfo) GetExceptionClassName() string

GetExceptionClassName returns the ExceptionClassName field value if set, zero value otherwise.

func (*KnownExceptionInfo) GetExceptionClassNameOk

func (o *KnownExceptionInfo) GetExceptionClassNameOk() (*string, bool)

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

func (*KnownExceptionInfo) GetExceptionStack

func (o *KnownExceptionInfo) GetExceptionStack() []string

GetExceptionStack returns the ExceptionStack field value if set, zero value otherwise.

func (*KnownExceptionInfo) GetExceptionStackOk

func (o *KnownExceptionInfo) GetExceptionStackOk() ([]string, bool)

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

func (*KnownExceptionInfo) GetMessage

func (o *KnownExceptionInfo) GetMessage() string

GetMessage returns the Message field value

func (*KnownExceptionInfo) GetMessageOk

func (o *KnownExceptionInfo) GetMessageOk() (*string, bool)

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

func (*KnownExceptionInfo) GetRootCauseExceptionClassName

func (o *KnownExceptionInfo) GetRootCauseExceptionClassName() string

GetRootCauseExceptionClassName returns the RootCauseExceptionClassName field value if set, zero value otherwise.

func (*KnownExceptionInfo) GetRootCauseExceptionClassNameOk

func (o *KnownExceptionInfo) GetRootCauseExceptionClassNameOk() (*string, bool)

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

func (*KnownExceptionInfo) GetRootCauseExceptionStack

func (o *KnownExceptionInfo) GetRootCauseExceptionStack() []string

GetRootCauseExceptionStack returns the RootCauseExceptionStack field value if set, zero value otherwise.

func (*KnownExceptionInfo) GetRootCauseExceptionStackOk

func (o *KnownExceptionInfo) GetRootCauseExceptionStackOk() ([]string, bool)

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

func (*KnownExceptionInfo) HasExceptionClassName

func (o *KnownExceptionInfo) HasExceptionClassName() bool

HasExceptionClassName returns a boolean if a field has been set.

func (*KnownExceptionInfo) HasExceptionStack

func (o *KnownExceptionInfo) HasExceptionStack() bool

HasExceptionStack returns a boolean if a field has been set.

func (*KnownExceptionInfo) HasRootCauseExceptionClassName

func (o *KnownExceptionInfo) HasRootCauseExceptionClassName() bool

HasRootCauseExceptionClassName returns a boolean if a field has been set.

func (*KnownExceptionInfo) HasRootCauseExceptionStack

func (o *KnownExceptionInfo) HasRootCauseExceptionStack() bool

HasRootCauseExceptionStack returns a boolean if a field has been set.

func (KnownExceptionInfo) MarshalJSON

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

func (*KnownExceptionInfo) SetExceptionClassName

func (o *KnownExceptionInfo) SetExceptionClassName(v string)

SetExceptionClassName gets a reference to the given string and assigns it to the ExceptionClassName field.

func (*KnownExceptionInfo) SetExceptionStack

func (o *KnownExceptionInfo) SetExceptionStack(v []string)

SetExceptionStack gets a reference to the given []string and assigns it to the ExceptionStack field.

func (*KnownExceptionInfo) SetMessage

func (o *KnownExceptionInfo) SetMessage(v string)

SetMessage sets field value

func (*KnownExceptionInfo) SetRootCauseExceptionClassName

func (o *KnownExceptionInfo) SetRootCauseExceptionClassName(v string)

SetRootCauseExceptionClassName gets a reference to the given string and assigns it to the RootCauseExceptionClassName field.

func (*KnownExceptionInfo) SetRootCauseExceptionStack

func (o *KnownExceptionInfo) SetRootCauseExceptionStack(v []string)

SetRootCauseExceptionStack gets a reference to the given []string and assigns it to the RootCauseExceptionStack field.

type LogRead

type LogRead struct {
	LogLines []string `json:"logLines"`
}

LogRead struct for LogRead

func NewLogRead

func NewLogRead(logLines []string) *LogRead

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

func NewLogReadWithDefaults

func NewLogReadWithDefaults() *LogRead

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

func (*LogRead) GetLogLines

func (o *LogRead) GetLogLines() []string

GetLogLines returns the LogLines field value

func (*LogRead) GetLogLinesOk

func (o *LogRead) GetLogLinesOk() ([]string, bool)

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

func (LogRead) MarshalJSON

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

func (*LogRead) SetLogLines

func (o *LogRead) SetLogLines(v []string)

SetLogLines sets field value

type LogType

type LogType string

LogType type/source of logs produced

const (
	LOGTYPE_SERVER    LogType = "server"
	LOGTYPE_SCHEDULER LogType = "scheduler"
)

List of LogType

func NewLogTypeFromValue

func NewLogTypeFromValue(v string) (*LogType, error)

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

func (LogType) IsValid

func (v LogType) IsValid() bool

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

func (LogType) Ptr

func (v LogType) Ptr() *LogType

Ptr returns reference to LogType value

func (*LogType) UnmarshalJSON

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

type LogsApiService

type LogsApiService service

LogsApiService LogsApi service

func (*LogsApiService) GetLogs

GetLogs Get logs

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

func (*LogsApiService) GetLogsExecute

func (a *LogsApiService) GetLogsExecute(r ApiGetLogsRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

type LogsRequestBody

type LogsRequestBody struct {
	LogType LogType `json:"logType"`
}

LogsRequestBody struct for LogsRequestBody

func NewLogsRequestBody

func NewLogsRequestBody(logType LogType) *LogsRequestBody

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

func NewLogsRequestBodyWithDefaults

func NewLogsRequestBodyWithDefaults() *LogsRequestBody

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

func (*LogsRequestBody) GetLogType

func (o *LogsRequestBody) GetLogType() LogType

GetLogType returns the LogType field value

func (*LogsRequestBody) GetLogTypeOk

func (o *LogsRequestBody) GetLogTypeOk() (*LogType, bool)

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

func (LogsRequestBody) MarshalJSON

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

func (*LogsRequestBody) SetLogType

func (o *LogsRequestBody) SetLogType(v LogType)

SetLogType sets field value

type NamespaceDefinitionType

type NamespaceDefinitionType string

NamespaceDefinitionType Method used for computing final namespace in destination

const (
	NAMESPACEDEFINITIONTYPE_SOURCE       NamespaceDefinitionType = "source"
	NAMESPACEDEFINITIONTYPE_DESTINATION  NamespaceDefinitionType = "destination"
	NAMESPACEDEFINITIONTYPE_CUSTOMFORMAT NamespaceDefinitionType = "customformat"
)

List of NamespaceDefinitionType

func NewNamespaceDefinitionTypeFromValue

func NewNamespaceDefinitionTypeFromValue(v string) (*NamespaceDefinitionType, error)

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

func (NamespaceDefinitionType) IsValid

func (v NamespaceDefinitionType) IsValid() bool

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

func (NamespaceDefinitionType) Ptr

Ptr returns reference to NamespaceDefinitionType value

func (*NamespaceDefinitionType) UnmarshalJSON

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

type NotFoundKnownExceptionInfo

type NotFoundKnownExceptionInfo struct {
	Id                          *string  `json:"id,omitempty"`
	Message                     string   `json:"message"`
	ExceptionClassName          *string  `json:"exceptionClassName,omitempty"`
	ExceptionStack              []string `json:"exceptionStack,omitempty"`
	RootCauseExceptionClassName *string  `json:"rootCauseExceptionClassName,omitempty"`
	RootCauseExceptionStack     []string `json:"rootCauseExceptionStack,omitempty"`
}

NotFoundKnownExceptionInfo struct for NotFoundKnownExceptionInfo

func NewNotFoundKnownExceptionInfo

func NewNotFoundKnownExceptionInfo(message string) *NotFoundKnownExceptionInfo

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

func NewNotFoundKnownExceptionInfoWithDefaults

func NewNotFoundKnownExceptionInfoWithDefaults() *NotFoundKnownExceptionInfo

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

func (*NotFoundKnownExceptionInfo) GetExceptionClassName

func (o *NotFoundKnownExceptionInfo) GetExceptionClassName() string

GetExceptionClassName returns the ExceptionClassName field value if set, zero value otherwise.

func (*NotFoundKnownExceptionInfo) GetExceptionClassNameOk

func (o *NotFoundKnownExceptionInfo) GetExceptionClassNameOk() (*string, bool)

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

func (*NotFoundKnownExceptionInfo) GetExceptionStack

func (o *NotFoundKnownExceptionInfo) GetExceptionStack() []string

GetExceptionStack returns the ExceptionStack field value if set, zero value otherwise.

func (*NotFoundKnownExceptionInfo) GetExceptionStackOk

func (o *NotFoundKnownExceptionInfo) GetExceptionStackOk() ([]string, bool)

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

func (*NotFoundKnownExceptionInfo) GetId

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

func (*NotFoundKnownExceptionInfo) GetIdOk

func (o *NotFoundKnownExceptionInfo) 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 (*NotFoundKnownExceptionInfo) GetMessage

func (o *NotFoundKnownExceptionInfo) GetMessage() string

GetMessage returns the Message field value

func (*NotFoundKnownExceptionInfo) GetMessageOk

func (o *NotFoundKnownExceptionInfo) GetMessageOk() (*string, bool)

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

func (*NotFoundKnownExceptionInfo) GetRootCauseExceptionClassName

func (o *NotFoundKnownExceptionInfo) GetRootCauseExceptionClassName() string

GetRootCauseExceptionClassName returns the RootCauseExceptionClassName field value if set, zero value otherwise.

func (*NotFoundKnownExceptionInfo) GetRootCauseExceptionClassNameOk

func (o *NotFoundKnownExceptionInfo) GetRootCauseExceptionClassNameOk() (*string, bool)

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

func (*NotFoundKnownExceptionInfo) GetRootCauseExceptionStack

func (o *NotFoundKnownExceptionInfo) GetRootCauseExceptionStack() []string

GetRootCauseExceptionStack returns the RootCauseExceptionStack field value if set, zero value otherwise.

func (*NotFoundKnownExceptionInfo) GetRootCauseExceptionStackOk

func (o *NotFoundKnownExceptionInfo) GetRootCauseExceptionStackOk() ([]string, bool)

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

func (*NotFoundKnownExceptionInfo) HasExceptionClassName

func (o *NotFoundKnownExceptionInfo) HasExceptionClassName() bool

HasExceptionClassName returns a boolean if a field has been set.

func (*NotFoundKnownExceptionInfo) HasExceptionStack

func (o *NotFoundKnownExceptionInfo) HasExceptionStack() bool

HasExceptionStack returns a boolean if a field has been set.

func (*NotFoundKnownExceptionInfo) HasId

func (o *NotFoundKnownExceptionInfo) HasId() bool

HasId returns a boolean if a field has been set.

func (*NotFoundKnownExceptionInfo) HasRootCauseExceptionClassName

func (o *NotFoundKnownExceptionInfo) HasRootCauseExceptionClassName() bool

HasRootCauseExceptionClassName returns a boolean if a field has been set.

func (*NotFoundKnownExceptionInfo) HasRootCauseExceptionStack

func (o *NotFoundKnownExceptionInfo) HasRootCauseExceptionStack() bool

HasRootCauseExceptionStack returns a boolean if a field has been set.

func (NotFoundKnownExceptionInfo) MarshalJSON

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

func (*NotFoundKnownExceptionInfo) SetExceptionClassName

func (o *NotFoundKnownExceptionInfo) SetExceptionClassName(v string)

SetExceptionClassName gets a reference to the given string and assigns it to the ExceptionClassName field.

func (*NotFoundKnownExceptionInfo) SetExceptionStack

func (o *NotFoundKnownExceptionInfo) SetExceptionStack(v []string)

SetExceptionStack gets a reference to the given []string and assigns it to the ExceptionStack field.

func (*NotFoundKnownExceptionInfo) SetId

func (o *NotFoundKnownExceptionInfo) SetId(v string)

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

func (*NotFoundKnownExceptionInfo) SetMessage

func (o *NotFoundKnownExceptionInfo) SetMessage(v string)

SetMessage sets field value

func (*NotFoundKnownExceptionInfo) SetRootCauseExceptionClassName

func (o *NotFoundKnownExceptionInfo) SetRootCauseExceptionClassName(v string)

SetRootCauseExceptionClassName gets a reference to the given string and assigns it to the RootCauseExceptionClassName field.

func (*NotFoundKnownExceptionInfo) SetRootCauseExceptionStack

func (o *NotFoundKnownExceptionInfo) SetRootCauseExceptionStack(v []string)

SetRootCauseExceptionStack gets a reference to the given []string and assigns it to the RootCauseExceptionStack field.

type Notification

type Notification struct {
	NotificationType   NotificationType                `json:"notificationType"`
	SendOnSuccess      bool                            `json:"sendOnSuccess"`
	SendOnFailure      bool                            `json:"sendOnFailure"`
	SlackConfiguration *SlackNotificationConfiguration `json:"slackConfiguration,omitempty"`
}

Notification struct for Notification

func NewNotification

func NewNotification(notificationType NotificationType, sendOnSuccess bool, sendOnFailure bool) *Notification

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

func NewNotificationWithDefaults

func NewNotificationWithDefaults() *Notification

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

func (*Notification) GetNotificationType

func (o *Notification) GetNotificationType() NotificationType

GetNotificationType returns the NotificationType field value

func (*Notification) GetNotificationTypeOk

func (o *Notification) GetNotificationTypeOk() (*NotificationType, bool)

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

func (*Notification) GetSendOnFailure

func (o *Notification) GetSendOnFailure() bool

GetSendOnFailure returns the SendOnFailure field value

func (*Notification) GetSendOnFailureOk

func (o *Notification) GetSendOnFailureOk() (*bool, bool)

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

func (*Notification) GetSendOnSuccess

func (o *Notification) GetSendOnSuccess() bool

GetSendOnSuccess returns the SendOnSuccess field value

func (*Notification) GetSendOnSuccessOk

func (o *Notification) GetSendOnSuccessOk() (*bool, bool)

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

func (*Notification) GetSlackConfiguration

func (o *Notification) GetSlackConfiguration() SlackNotificationConfiguration

GetSlackConfiguration returns the SlackConfiguration field value if set, zero value otherwise.

func (*Notification) GetSlackConfigurationOk

func (o *Notification) GetSlackConfigurationOk() (*SlackNotificationConfiguration, bool)

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

func (*Notification) HasSlackConfiguration

func (o *Notification) HasSlackConfiguration() bool

HasSlackConfiguration returns a boolean if a field has been set.

func (Notification) MarshalJSON

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

func (*Notification) SetNotificationType

func (o *Notification) SetNotificationType(v NotificationType)

SetNotificationType sets field value

func (*Notification) SetSendOnFailure

func (o *Notification) SetSendOnFailure(v bool)

SetSendOnFailure sets field value

func (*Notification) SetSendOnSuccess

func (o *Notification) SetSendOnSuccess(v bool)

SetSendOnSuccess sets field value

func (*Notification) SetSlackConfiguration

func (o *Notification) SetSlackConfiguration(v SlackNotificationConfiguration)

SetSlackConfiguration gets a reference to the given SlackNotificationConfiguration and assigns it to the SlackConfiguration field.

type NotificationRead

type NotificationRead struct {
	Status  string  `json:"status"`
	Message *string `json:"message,omitempty"`
}

NotificationRead struct for NotificationRead

func NewNotificationRead

func NewNotificationRead(status string) *NotificationRead

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

func NewNotificationReadWithDefaults

func NewNotificationReadWithDefaults() *NotificationRead

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

func (*NotificationRead) GetMessage

func (o *NotificationRead) GetMessage() string

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

func (*NotificationRead) GetMessageOk

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

func (o *NotificationRead) GetStatus() string

GetStatus returns the Status field value

func (*NotificationRead) GetStatusOk

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

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

func (*NotificationRead) HasMessage

func (o *NotificationRead) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (NotificationRead) MarshalJSON

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

func (*NotificationRead) SetMessage

func (o *NotificationRead) SetMessage(v string)

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

func (*NotificationRead) SetStatus

func (o *NotificationRead) SetStatus(v string)

SetStatus sets field value

type NotificationType

type NotificationType string

NotificationType the model 'NotificationType'

const (
	NOTIFICATIONTYPE_SLACK NotificationType = "slack"
)

List of NotificationType

func NewNotificationTypeFromValue

func NewNotificationTypeFromValue(v string) (*NotificationType, error)

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

func (NotificationType) IsValid

func (v NotificationType) IsValid() bool

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

func (NotificationType) Ptr

Ptr returns reference to NotificationType value

func (*NotificationType) UnmarshalJSON

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

type NotificationsApiService

type NotificationsApiService service

NotificationsApiService NotificationsApi service

func (*NotificationsApiService) TryNotificationConfig

TryNotificationConfig Try sending a notifications

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

func (*NotificationsApiService) TryNotificationConfigExecute

Execute executes the request

@return NotificationRead

type NullableAdvancedAuth

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

func NewNullableAdvancedAuth

func NewNullableAdvancedAuth(val *AdvancedAuth) *NullableAdvancedAuth

func (NullableAdvancedAuth) Get

func (NullableAdvancedAuth) IsSet

func (v NullableAdvancedAuth) IsSet() bool

func (NullableAdvancedAuth) MarshalJSON

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

func (*NullableAdvancedAuth) Set

func (v *NullableAdvancedAuth) Set(val *AdvancedAuth)

func (*NullableAdvancedAuth) UnmarshalJSON

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

func (*NullableAdvancedAuth) Unset

func (v *NullableAdvancedAuth) Unset()

type NullableAirbyteCatalog

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

func NewNullableAirbyteCatalog

func NewNullableAirbyteCatalog(val *AirbyteCatalog) *NullableAirbyteCatalog

func (NullableAirbyteCatalog) Get

func (NullableAirbyteCatalog) IsSet

func (v NullableAirbyteCatalog) IsSet() bool

func (NullableAirbyteCatalog) MarshalJSON

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

func (*NullableAirbyteCatalog) Set

func (*NullableAirbyteCatalog) UnmarshalJSON

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

func (*NullableAirbyteCatalog) Unset

func (v *NullableAirbyteCatalog) Unset()

type NullableAirbyteStream

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

func NewNullableAirbyteStream

func NewNullableAirbyteStream(val *AirbyteStream) *NullableAirbyteStream

func (NullableAirbyteStream) Get

func (NullableAirbyteStream) IsSet

func (v NullableAirbyteStream) IsSet() bool

func (NullableAirbyteStream) MarshalJSON

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

func (*NullableAirbyteStream) Set

func (v *NullableAirbyteStream) Set(val *AirbyteStream)

func (*NullableAirbyteStream) UnmarshalJSON

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

func (*NullableAirbyteStream) Unset

func (v *NullableAirbyteStream) Unset()

type NullableAirbyteStreamAndConfiguration

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

func (NullableAirbyteStreamAndConfiguration) Get

func (NullableAirbyteStreamAndConfiguration) IsSet

func (NullableAirbyteStreamAndConfiguration) MarshalJSON

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

func (*NullableAirbyteStreamAndConfiguration) Set

func (*NullableAirbyteStreamAndConfiguration) UnmarshalJSON

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

func (*NullableAirbyteStreamAndConfiguration) Unset

type NullableAirbyteStreamConfiguration

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

func (NullableAirbyteStreamConfiguration) Get

func (NullableAirbyteStreamConfiguration) IsSet

func (NullableAirbyteStreamConfiguration) MarshalJSON

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

func (*NullableAirbyteStreamConfiguration) Set

func (*NullableAirbyteStreamConfiguration) UnmarshalJSON

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

func (*NullableAirbyteStreamConfiguration) Unset

type NullableAttemptFailureOrigin

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

func NewNullableAttemptFailureOrigin

func NewNullableAttemptFailureOrigin(val *AttemptFailureOrigin) *NullableAttemptFailureOrigin

func (NullableAttemptFailureOrigin) Get

func (NullableAttemptFailureOrigin) IsSet

func (NullableAttemptFailureOrigin) MarshalJSON

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

func (*NullableAttemptFailureOrigin) Set

func (*NullableAttemptFailureOrigin) UnmarshalJSON

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

func (*NullableAttemptFailureOrigin) Unset

func (v *NullableAttemptFailureOrigin) Unset()

type NullableAttemptFailureReason

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

func NewNullableAttemptFailureReason

func NewNullableAttemptFailureReason(val *AttemptFailureReason) *NullableAttemptFailureReason

func (NullableAttemptFailureReason) Get

func (NullableAttemptFailureReason) IsSet

func (NullableAttemptFailureReason) MarshalJSON

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

func (*NullableAttemptFailureReason) Set

func (*NullableAttemptFailureReason) UnmarshalJSON

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

func (*NullableAttemptFailureReason) Unset

func (v *NullableAttemptFailureReason) Unset()

type NullableAttemptFailureSummary

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

func (NullableAttemptFailureSummary) Get

func (NullableAttemptFailureSummary) IsSet

func (NullableAttemptFailureSummary) MarshalJSON

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

func (*NullableAttemptFailureSummary) Set

func (*NullableAttemptFailureSummary) UnmarshalJSON

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

func (*NullableAttemptFailureSummary) Unset

func (v *NullableAttemptFailureSummary) Unset()

type NullableAttemptFailureType

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

func NewNullableAttemptFailureType

func NewNullableAttemptFailureType(val *AttemptFailureType) *NullableAttemptFailureType

func (NullableAttemptFailureType) Get

func (NullableAttemptFailureType) IsSet

func (v NullableAttemptFailureType) IsSet() bool

func (NullableAttemptFailureType) MarshalJSON

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

func (*NullableAttemptFailureType) Set

func (*NullableAttemptFailureType) UnmarshalJSON

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

func (*NullableAttemptFailureType) Unset

func (v *NullableAttemptFailureType) Unset()

type NullableAttemptInfoRead

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

func NewNullableAttemptInfoRead

func NewNullableAttemptInfoRead(val *AttemptInfoRead) *NullableAttemptInfoRead

func (NullableAttemptInfoRead) Get

func (NullableAttemptInfoRead) IsSet

func (v NullableAttemptInfoRead) IsSet() bool

func (NullableAttemptInfoRead) MarshalJSON

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

func (*NullableAttemptInfoRead) Set

func (*NullableAttemptInfoRead) UnmarshalJSON

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

func (*NullableAttemptInfoRead) Unset

func (v *NullableAttemptInfoRead) Unset()

type NullableAttemptRead

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

func NewNullableAttemptRead

func NewNullableAttemptRead(val *AttemptRead) *NullableAttemptRead

func (NullableAttemptRead) Get

func (NullableAttemptRead) IsSet

func (v NullableAttemptRead) IsSet() bool

func (NullableAttemptRead) MarshalJSON

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

func (*NullableAttemptRead) Set

func (v *NullableAttemptRead) Set(val *AttemptRead)

func (*NullableAttemptRead) UnmarshalJSON

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

func (*NullableAttemptRead) Unset

func (v *NullableAttemptRead) Unset()

type NullableAttemptStats

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

func NewNullableAttemptStats

func NewNullableAttemptStats(val *AttemptStats) *NullableAttemptStats

func (NullableAttemptStats) Get

func (NullableAttemptStats) IsSet

func (v NullableAttemptStats) IsSet() bool

func (NullableAttemptStats) MarshalJSON

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

func (*NullableAttemptStats) Set

func (v *NullableAttemptStats) Set(val *AttemptStats)

func (*NullableAttemptStats) UnmarshalJSON

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

func (*NullableAttemptStats) Unset

func (v *NullableAttemptStats) Unset()

type NullableAttemptStatus

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

func NewNullableAttemptStatus

func NewNullableAttemptStatus(val *AttemptStatus) *NullableAttemptStatus

func (NullableAttemptStatus) Get

func (NullableAttemptStatus) IsSet

func (v NullableAttemptStatus) IsSet() bool

func (NullableAttemptStatus) MarshalJSON

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

func (*NullableAttemptStatus) Set

func (v *NullableAttemptStatus) Set(val *AttemptStatus)

func (*NullableAttemptStatus) UnmarshalJSON

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

func (*NullableAttemptStatus) Unset

func (v *NullableAttemptStatus) Unset()

type NullableAttemptStreamStats

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

func NewNullableAttemptStreamStats

func NewNullableAttemptStreamStats(val *AttemptStreamStats) *NullableAttemptStreamStats

func (NullableAttemptStreamStats) Get

func (NullableAttemptStreamStats) IsSet

func (v NullableAttemptStreamStats) IsSet() bool

func (NullableAttemptStreamStats) MarshalJSON

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

func (*NullableAttemptStreamStats) Set

func (*NullableAttemptStreamStats) UnmarshalJSON

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

func (*NullableAttemptStreamStats) Unset

func (v *NullableAttemptStreamStats) Unset()

type NullableAuthSpecification

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

func NewNullableAuthSpecification

func NewNullableAuthSpecification(val *AuthSpecification) *NullableAuthSpecification

func (NullableAuthSpecification) Get

func (NullableAuthSpecification) IsSet

func (v NullableAuthSpecification) IsSet() bool

func (NullableAuthSpecification) MarshalJSON

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

func (*NullableAuthSpecification) Set

func (*NullableAuthSpecification) UnmarshalJSON

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

func (*NullableAuthSpecification) Unset

func (v *NullableAuthSpecification) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCheckConnectionRead

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

func NewNullableCheckConnectionRead

func NewNullableCheckConnectionRead(val *CheckConnectionRead) *NullableCheckConnectionRead

func (NullableCheckConnectionRead) Get

func (NullableCheckConnectionRead) IsSet

func (NullableCheckConnectionRead) MarshalJSON

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

func (*NullableCheckConnectionRead) Set

func (*NullableCheckConnectionRead) UnmarshalJSON

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

func (*NullableCheckConnectionRead) Unset

func (v *NullableCheckConnectionRead) Unset()

type NullableCheckOperationRead

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

func NewNullableCheckOperationRead

func NewNullableCheckOperationRead(val *CheckOperationRead) *NullableCheckOperationRead

func (NullableCheckOperationRead) Get

func (NullableCheckOperationRead) IsSet

func (v NullableCheckOperationRead) IsSet() bool

func (NullableCheckOperationRead) MarshalJSON

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

func (*NullableCheckOperationRead) Set

func (*NullableCheckOperationRead) UnmarshalJSON

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

func (*NullableCheckOperationRead) Unset

func (v *NullableCheckOperationRead) Unset()

type NullableCompleteDestinationOAuthRequest

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

func (NullableCompleteDestinationOAuthRequest) Get

func (NullableCompleteDestinationOAuthRequest) IsSet

func (NullableCompleteDestinationOAuthRequest) MarshalJSON

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

func (*NullableCompleteDestinationOAuthRequest) Set

func (*NullableCompleteDestinationOAuthRequest) UnmarshalJSON

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

func (*NullableCompleteDestinationOAuthRequest) Unset

type NullableCompleteSourceOauthRequest

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

func (NullableCompleteSourceOauthRequest) Get

func (NullableCompleteSourceOauthRequest) IsSet

func (NullableCompleteSourceOauthRequest) MarshalJSON

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

func (*NullableCompleteSourceOauthRequest) Set

func (*NullableCompleteSourceOauthRequest) UnmarshalJSON

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

func (*NullableCompleteSourceOauthRequest) Unset

type NullableConnectionCreate

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

func NewNullableConnectionCreate

func NewNullableConnectionCreate(val *ConnectionCreate) *NullableConnectionCreate

func (NullableConnectionCreate) Get

func (NullableConnectionCreate) IsSet

func (v NullableConnectionCreate) IsSet() bool

func (NullableConnectionCreate) MarshalJSON

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

func (*NullableConnectionCreate) Set

func (*NullableConnectionCreate) UnmarshalJSON

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

func (*NullableConnectionCreate) Unset

func (v *NullableConnectionCreate) Unset()

type NullableConnectionIdRequestBody

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

func (NullableConnectionIdRequestBody) Get

func (NullableConnectionIdRequestBody) IsSet

func (NullableConnectionIdRequestBody) MarshalJSON

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

func (*NullableConnectionIdRequestBody) Set

func (*NullableConnectionIdRequestBody) UnmarshalJSON

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

func (*NullableConnectionIdRequestBody) Unset

type NullableConnectionRead

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

func NewNullableConnectionRead

func NewNullableConnectionRead(val *ConnectionRead) *NullableConnectionRead

func (NullableConnectionRead) Get

func (NullableConnectionRead) IsSet

func (v NullableConnectionRead) IsSet() bool

func (NullableConnectionRead) MarshalJSON

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

func (*NullableConnectionRead) Set

func (*NullableConnectionRead) UnmarshalJSON

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

func (*NullableConnectionRead) Unset

func (v *NullableConnectionRead) Unset()

type NullableConnectionReadList

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

func NewNullableConnectionReadList

func NewNullableConnectionReadList(val *ConnectionReadList) *NullableConnectionReadList

func (NullableConnectionReadList) Get

func (NullableConnectionReadList) IsSet

func (v NullableConnectionReadList) IsSet() bool

func (NullableConnectionReadList) MarshalJSON

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

func (*NullableConnectionReadList) Set

func (*NullableConnectionReadList) UnmarshalJSON

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

func (*NullableConnectionReadList) Unset

func (v *NullableConnectionReadList) Unset()

type NullableConnectionSchedule

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

func NewNullableConnectionSchedule

func NewNullableConnectionSchedule(val *ConnectionSchedule) *NullableConnectionSchedule

func (NullableConnectionSchedule) Get

func (NullableConnectionSchedule) IsSet

func (v NullableConnectionSchedule) IsSet() bool

func (NullableConnectionSchedule) MarshalJSON

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

func (*NullableConnectionSchedule) Set

func (*NullableConnectionSchedule) UnmarshalJSON

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

func (*NullableConnectionSchedule) Unset

func (v *NullableConnectionSchedule) Unset()

type NullableConnectionSearch

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

func NewNullableConnectionSearch

func NewNullableConnectionSearch(val *ConnectionSearch) *NullableConnectionSearch

func (NullableConnectionSearch) Get

func (NullableConnectionSearch) IsSet

func (v NullableConnectionSearch) IsSet() bool

func (NullableConnectionSearch) MarshalJSON

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

func (*NullableConnectionSearch) Set

func (*NullableConnectionSearch) UnmarshalJSON

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

func (*NullableConnectionSearch) Unset

func (v *NullableConnectionSearch) Unset()

type NullableConnectionState

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

func NewNullableConnectionState

func NewNullableConnectionState(val *ConnectionState) *NullableConnectionState

func (NullableConnectionState) Get

func (NullableConnectionState) IsSet

func (v NullableConnectionState) IsSet() bool

func (NullableConnectionState) MarshalJSON

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

func (*NullableConnectionState) Set

func (*NullableConnectionState) UnmarshalJSON

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

func (*NullableConnectionState) Unset

func (v *NullableConnectionState) Unset()

type NullableConnectionStatus

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

func NewNullableConnectionStatus

func NewNullableConnectionStatus(val *ConnectionStatus) *NullableConnectionStatus

func (NullableConnectionStatus) Get

func (NullableConnectionStatus) IsSet

func (v NullableConnectionStatus) IsSet() bool

func (NullableConnectionStatus) MarshalJSON

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

func (*NullableConnectionStatus) Set

func (*NullableConnectionStatus) UnmarshalJSON

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

func (*NullableConnectionStatus) Unset

func (v *NullableConnectionStatus) Unset()

type NullableConnectionUpdate

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

func NewNullableConnectionUpdate

func NewNullableConnectionUpdate(val *ConnectionUpdate) *NullableConnectionUpdate

func (NullableConnectionUpdate) Get

func (NullableConnectionUpdate) IsSet

func (v NullableConnectionUpdate) IsSet() bool

func (NullableConnectionUpdate) MarshalJSON

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

func (*NullableConnectionUpdate) Set

func (*NullableConnectionUpdate) UnmarshalJSON

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

func (*NullableConnectionUpdate) Unset

func (v *NullableConnectionUpdate) Unset()

type NullableDataType

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

func NewNullableDataType

func NewNullableDataType(val *DataType) *NullableDataType

func (NullableDataType) Get

func (v NullableDataType) Get() *DataType

func (NullableDataType) IsSet

func (v NullableDataType) IsSet() bool

func (NullableDataType) MarshalJSON

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

func (*NullableDataType) Set

func (v *NullableDataType) Set(val *DataType)

func (*NullableDataType) UnmarshalJSON

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

func (*NullableDataType) Unset

func (v *NullableDataType) Unset()

type NullableDbMigrationExecutionRead

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

func (NullableDbMigrationExecutionRead) Get

func (NullableDbMigrationExecutionRead) IsSet

func (NullableDbMigrationExecutionRead) MarshalJSON

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

func (*NullableDbMigrationExecutionRead) Set

func (*NullableDbMigrationExecutionRead) UnmarshalJSON

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

func (*NullableDbMigrationExecutionRead) Unset

type NullableDbMigrationRead

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

func NewNullableDbMigrationRead

func NewNullableDbMigrationRead(val *DbMigrationRead) *NullableDbMigrationRead

func (NullableDbMigrationRead) Get

func (NullableDbMigrationRead) IsSet

func (v NullableDbMigrationRead) IsSet() bool

func (NullableDbMigrationRead) MarshalJSON

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

func (*NullableDbMigrationRead) Set

func (*NullableDbMigrationRead) UnmarshalJSON

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

func (*NullableDbMigrationRead) Unset

func (v *NullableDbMigrationRead) Unset()

type NullableDbMigrationReadList

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

func NewNullableDbMigrationReadList

func NewNullableDbMigrationReadList(val *DbMigrationReadList) *NullableDbMigrationReadList

func (NullableDbMigrationReadList) Get

func (NullableDbMigrationReadList) IsSet

func (NullableDbMigrationReadList) MarshalJSON

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

func (*NullableDbMigrationReadList) Set

func (*NullableDbMigrationReadList) UnmarshalJSON

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

func (*NullableDbMigrationReadList) Unset

func (v *NullableDbMigrationReadList) Unset()

type NullableDbMigrationRequestBody

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

func (NullableDbMigrationRequestBody) Get

func (NullableDbMigrationRequestBody) IsSet

func (NullableDbMigrationRequestBody) MarshalJSON

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

func (*NullableDbMigrationRequestBody) Set

func (*NullableDbMigrationRequestBody) UnmarshalJSON

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

func (*NullableDbMigrationRequestBody) Unset

func (v *NullableDbMigrationRequestBody) Unset()

type NullableDbMigrationState

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

func NewNullableDbMigrationState

func NewNullableDbMigrationState(val *DbMigrationState) *NullableDbMigrationState

func (NullableDbMigrationState) Get

func (NullableDbMigrationState) IsSet

func (v NullableDbMigrationState) IsSet() bool

func (NullableDbMigrationState) MarshalJSON

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

func (*NullableDbMigrationState) Set

func (*NullableDbMigrationState) UnmarshalJSON

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

func (*NullableDbMigrationState) Unset

func (v *NullableDbMigrationState) Unset()

type NullableDestinationCoreConfig

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

func (NullableDestinationCoreConfig) Get

func (NullableDestinationCoreConfig) IsSet

func (NullableDestinationCoreConfig) MarshalJSON

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

func (*NullableDestinationCoreConfig) Set

func (*NullableDestinationCoreConfig) UnmarshalJSON

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

func (*NullableDestinationCoreConfig) Unset

func (v *NullableDestinationCoreConfig) Unset()

type NullableDestinationCreate

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

func NewNullableDestinationCreate

func NewNullableDestinationCreate(val *DestinationCreate) *NullableDestinationCreate

func (NullableDestinationCreate) Get

func (NullableDestinationCreate) IsSet

func (v NullableDestinationCreate) IsSet() bool

func (NullableDestinationCreate) MarshalJSON

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

func (*NullableDestinationCreate) Set

func (*NullableDestinationCreate) UnmarshalJSON

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

func (*NullableDestinationCreate) Unset

func (v *NullableDestinationCreate) Unset()

type NullableDestinationDefinitionCreate

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

func (NullableDestinationDefinitionCreate) Get

func (NullableDestinationDefinitionCreate) IsSet

func (NullableDestinationDefinitionCreate) MarshalJSON

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

func (*NullableDestinationDefinitionCreate) Set

func (*NullableDestinationDefinitionCreate) UnmarshalJSON

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

func (*NullableDestinationDefinitionCreate) Unset

type NullableDestinationDefinitionIdRequestBody

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

func (NullableDestinationDefinitionIdRequestBody) Get

func (NullableDestinationDefinitionIdRequestBody) IsSet

func (NullableDestinationDefinitionIdRequestBody) MarshalJSON

func (*NullableDestinationDefinitionIdRequestBody) Set

func (*NullableDestinationDefinitionIdRequestBody) UnmarshalJSON

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

func (*NullableDestinationDefinitionIdRequestBody) Unset

type NullableDestinationDefinitionRead

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

func (NullableDestinationDefinitionRead) Get

func (NullableDestinationDefinitionRead) IsSet

func (NullableDestinationDefinitionRead) MarshalJSON

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

func (*NullableDestinationDefinitionRead) Set

func (*NullableDestinationDefinitionRead) UnmarshalJSON

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

func (*NullableDestinationDefinitionRead) Unset

type NullableDestinationDefinitionReadList

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

func (NullableDestinationDefinitionReadList) Get

func (NullableDestinationDefinitionReadList) IsSet

func (NullableDestinationDefinitionReadList) MarshalJSON

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

func (*NullableDestinationDefinitionReadList) Set

func (*NullableDestinationDefinitionReadList) UnmarshalJSON

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

func (*NullableDestinationDefinitionReadList) Unset

type NullableDestinationDefinitionSpecificationRead

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

func (NullableDestinationDefinitionSpecificationRead) Get

func (NullableDestinationDefinitionSpecificationRead) IsSet

func (NullableDestinationDefinitionSpecificationRead) MarshalJSON

func (*NullableDestinationDefinitionSpecificationRead) Set

func (*NullableDestinationDefinitionSpecificationRead) UnmarshalJSON

func (*NullableDestinationDefinitionSpecificationRead) Unset

type NullableDestinationDefinitionUpdate

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

func (NullableDestinationDefinitionUpdate) Get

func (NullableDestinationDefinitionUpdate) IsSet

func (NullableDestinationDefinitionUpdate) MarshalJSON

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

func (*NullableDestinationDefinitionUpdate) Set

func (*NullableDestinationDefinitionUpdate) UnmarshalJSON

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

func (*NullableDestinationDefinitionUpdate) Unset

type NullableDestinationIdRequestBody

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

func (NullableDestinationIdRequestBody) Get

func (NullableDestinationIdRequestBody) IsSet

func (NullableDestinationIdRequestBody) MarshalJSON

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

func (*NullableDestinationIdRequestBody) Set

func (*NullableDestinationIdRequestBody) UnmarshalJSON

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

func (*NullableDestinationIdRequestBody) Unset

type NullableDestinationOauthConsentRequest

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

func (NullableDestinationOauthConsentRequest) Get

func (NullableDestinationOauthConsentRequest) IsSet

func (NullableDestinationOauthConsentRequest) MarshalJSON

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

func (*NullableDestinationOauthConsentRequest) Set

func (*NullableDestinationOauthConsentRequest) UnmarshalJSON

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

func (*NullableDestinationOauthConsentRequest) Unset

type NullableDestinationRead

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

func NewNullableDestinationRead

func NewNullableDestinationRead(val *DestinationRead) *NullableDestinationRead

func (NullableDestinationRead) Get

func (NullableDestinationRead) IsSet

func (v NullableDestinationRead) IsSet() bool

func (NullableDestinationRead) MarshalJSON

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

func (*NullableDestinationRead) Set

func (*NullableDestinationRead) UnmarshalJSON

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

func (*NullableDestinationRead) Unset

func (v *NullableDestinationRead) Unset()

type NullableDestinationReadList

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

func NewNullableDestinationReadList

func NewNullableDestinationReadList(val *DestinationReadList) *NullableDestinationReadList

func (NullableDestinationReadList) Get

func (NullableDestinationReadList) IsSet

func (NullableDestinationReadList) MarshalJSON

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

func (*NullableDestinationReadList) Set

func (*NullableDestinationReadList) UnmarshalJSON

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

func (*NullableDestinationReadList) Unset

func (v *NullableDestinationReadList) Unset()

type NullableDestinationSearch

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

func NewNullableDestinationSearch

func NewNullableDestinationSearch(val *DestinationSearch) *NullableDestinationSearch

func (NullableDestinationSearch) Get

func (NullableDestinationSearch) IsSet

func (v NullableDestinationSearch) IsSet() bool

func (NullableDestinationSearch) MarshalJSON

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

func (*NullableDestinationSearch) Set

func (*NullableDestinationSearch) UnmarshalJSON

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

func (*NullableDestinationSearch) Unset

func (v *NullableDestinationSearch) Unset()

type NullableDestinationSyncMode

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

func NewNullableDestinationSyncMode

func NewNullableDestinationSyncMode(val *DestinationSyncMode) *NullableDestinationSyncMode

func (NullableDestinationSyncMode) Get

func (NullableDestinationSyncMode) IsSet

func (NullableDestinationSyncMode) MarshalJSON

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

func (*NullableDestinationSyncMode) Set

func (*NullableDestinationSyncMode) UnmarshalJSON

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

func (*NullableDestinationSyncMode) Unset

func (v *NullableDestinationSyncMode) Unset()

type NullableDestinationUpdate

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

func NewNullableDestinationUpdate

func NewNullableDestinationUpdate(val *DestinationUpdate) *NullableDestinationUpdate

func (NullableDestinationUpdate) Get

func (NullableDestinationUpdate) IsSet

func (v NullableDestinationUpdate) IsSet() bool

func (NullableDestinationUpdate) MarshalJSON

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

func (*NullableDestinationUpdate) Set

func (*NullableDestinationUpdate) UnmarshalJSON

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

func (*NullableDestinationUpdate) Unset

func (v *NullableDestinationUpdate) 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 NullableHealthCheckRead

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

func NewNullableHealthCheckRead

func NewNullableHealthCheckRead(val *HealthCheckRead) *NullableHealthCheckRead

func (NullableHealthCheckRead) Get

func (NullableHealthCheckRead) IsSet

func (v NullableHealthCheckRead) IsSet() bool

func (NullableHealthCheckRead) MarshalJSON

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

func (*NullableHealthCheckRead) Set

func (*NullableHealthCheckRead) UnmarshalJSON

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

func (*NullableHealthCheckRead) Unset

func (v *NullableHealthCheckRead) Unset()

type NullableImportRead

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

func NewNullableImportRead

func NewNullableImportRead(val *ImportRead) *NullableImportRead

func (NullableImportRead) Get

func (v NullableImportRead) Get() *ImportRead

func (NullableImportRead) IsSet

func (v NullableImportRead) IsSet() bool

func (NullableImportRead) MarshalJSON

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

func (*NullableImportRead) Set

func (v *NullableImportRead) Set(val *ImportRead)

func (*NullableImportRead) UnmarshalJSON

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

func (*NullableImportRead) Unset

func (v *NullableImportRead) Unset()

type NullableImportRequestBody

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

func NewNullableImportRequestBody

func NewNullableImportRequestBody(val *ImportRequestBody) *NullableImportRequestBody

func (NullableImportRequestBody) Get

func (NullableImportRequestBody) IsSet

func (v NullableImportRequestBody) IsSet() bool

func (NullableImportRequestBody) MarshalJSON

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

func (*NullableImportRequestBody) Set

func (*NullableImportRequestBody) UnmarshalJSON

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

func (*NullableImportRequestBody) Unset

func (v *NullableImportRequestBody) 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 NullableInvalidInputExceptionInfo

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

func (NullableInvalidInputExceptionInfo) Get

func (NullableInvalidInputExceptionInfo) IsSet

func (NullableInvalidInputExceptionInfo) MarshalJSON

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

func (*NullableInvalidInputExceptionInfo) Set

func (*NullableInvalidInputExceptionInfo) UnmarshalJSON

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

func (*NullableInvalidInputExceptionInfo) Unset

type NullableInvalidInputProperty

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

func NewNullableInvalidInputProperty

func NewNullableInvalidInputProperty(val *InvalidInputProperty) *NullableInvalidInputProperty

func (NullableInvalidInputProperty) Get

func (NullableInvalidInputProperty) IsSet

func (NullableInvalidInputProperty) MarshalJSON

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

func (*NullableInvalidInputProperty) Set

func (*NullableInvalidInputProperty) UnmarshalJSON

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

func (*NullableInvalidInputProperty) Unset

func (v *NullableInvalidInputProperty) Unset()

type NullableJobConfigType

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

func NewNullableJobConfigType

func NewNullableJobConfigType(val *JobConfigType) *NullableJobConfigType

func (NullableJobConfigType) Get

func (NullableJobConfigType) IsSet

func (v NullableJobConfigType) IsSet() bool

func (NullableJobConfigType) MarshalJSON

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

func (*NullableJobConfigType) Set

func (v *NullableJobConfigType) Set(val *JobConfigType)

func (*NullableJobConfigType) UnmarshalJSON

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

func (*NullableJobConfigType) Unset

func (v *NullableJobConfigType) Unset()

type NullableJobDebugInfoRead

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

func NewNullableJobDebugInfoRead

func NewNullableJobDebugInfoRead(val *JobDebugInfoRead) *NullableJobDebugInfoRead

func (NullableJobDebugInfoRead) Get

func (NullableJobDebugInfoRead) IsSet

func (v NullableJobDebugInfoRead) IsSet() bool

func (NullableJobDebugInfoRead) MarshalJSON

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

func (*NullableJobDebugInfoRead) Set

func (*NullableJobDebugInfoRead) UnmarshalJSON

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

func (*NullableJobDebugInfoRead) Unset

func (v *NullableJobDebugInfoRead) Unset()

type NullableJobDebugRead

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

func NewNullableJobDebugRead

func NewNullableJobDebugRead(val *JobDebugRead) *NullableJobDebugRead

func (NullableJobDebugRead) Get

func (NullableJobDebugRead) IsSet

func (v NullableJobDebugRead) IsSet() bool

func (NullableJobDebugRead) MarshalJSON

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

func (*NullableJobDebugRead) Set

func (v *NullableJobDebugRead) Set(val *JobDebugRead)

func (*NullableJobDebugRead) UnmarshalJSON

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

func (*NullableJobDebugRead) Unset

func (v *NullableJobDebugRead) Unset()

type NullableJobIdRequestBody

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

func NewNullableJobIdRequestBody

func NewNullableJobIdRequestBody(val *JobIdRequestBody) *NullableJobIdRequestBody

func (NullableJobIdRequestBody) Get

func (NullableJobIdRequestBody) IsSet

func (v NullableJobIdRequestBody) IsSet() bool

func (NullableJobIdRequestBody) MarshalJSON

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

func (*NullableJobIdRequestBody) Set

func (*NullableJobIdRequestBody) UnmarshalJSON

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

func (*NullableJobIdRequestBody) Unset

func (v *NullableJobIdRequestBody) Unset()

type NullableJobInfoRead

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

func NewNullableJobInfoRead

func NewNullableJobInfoRead(val *JobInfoRead) *NullableJobInfoRead

func (NullableJobInfoRead) Get

func (NullableJobInfoRead) IsSet

func (v NullableJobInfoRead) IsSet() bool

func (NullableJobInfoRead) MarshalJSON

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

func (*NullableJobInfoRead) Set

func (v *NullableJobInfoRead) Set(val *JobInfoRead)

func (*NullableJobInfoRead) UnmarshalJSON

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

func (*NullableJobInfoRead) Unset

func (v *NullableJobInfoRead) Unset()

type NullableJobListRequestBody

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

func NewNullableJobListRequestBody

func NewNullableJobListRequestBody(val *JobListRequestBody) *NullableJobListRequestBody

func (NullableJobListRequestBody) Get

func (NullableJobListRequestBody) IsSet

func (v NullableJobListRequestBody) IsSet() bool

func (NullableJobListRequestBody) MarshalJSON

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

func (*NullableJobListRequestBody) Set

func (*NullableJobListRequestBody) UnmarshalJSON

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

func (*NullableJobListRequestBody) Unset

func (v *NullableJobListRequestBody) Unset()

type NullableJobRead

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

func NewNullableJobRead

func NewNullableJobRead(val *JobRead) *NullableJobRead

func (NullableJobRead) Get

func (v NullableJobRead) Get() *JobRead

func (NullableJobRead) IsSet

func (v NullableJobRead) IsSet() bool

func (NullableJobRead) MarshalJSON

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

func (*NullableJobRead) Set

func (v *NullableJobRead) Set(val *JobRead)

func (*NullableJobRead) UnmarshalJSON

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

func (*NullableJobRead) Unset

func (v *NullableJobRead) Unset()

type NullableJobReadList

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

func NewNullableJobReadList

func NewNullableJobReadList(val *JobReadList) *NullableJobReadList

func (NullableJobReadList) Get

func (NullableJobReadList) IsSet

func (v NullableJobReadList) IsSet() bool

func (NullableJobReadList) MarshalJSON

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

func (*NullableJobReadList) Set

func (v *NullableJobReadList) Set(val *JobReadList)

func (*NullableJobReadList) UnmarshalJSON

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

func (*NullableJobReadList) Unset

func (v *NullableJobReadList) Unset()

type NullableJobStatus

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

func NewNullableJobStatus

func NewNullableJobStatus(val *JobStatus) *NullableJobStatus

func (NullableJobStatus) Get

func (v NullableJobStatus) Get() *JobStatus

func (NullableJobStatus) IsSet

func (v NullableJobStatus) IsSet() bool

func (NullableJobStatus) MarshalJSON

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

func (*NullableJobStatus) Set

func (v *NullableJobStatus) Set(val *JobStatus)

func (*NullableJobStatus) UnmarshalJSON

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

func (*NullableJobStatus) Unset

func (v *NullableJobStatus) Unset()

type NullableJobWithAttemptsRead

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

func NewNullableJobWithAttemptsRead

func NewNullableJobWithAttemptsRead(val *JobWithAttemptsRead) *NullableJobWithAttemptsRead

func (NullableJobWithAttemptsRead) Get

func (NullableJobWithAttemptsRead) IsSet

func (NullableJobWithAttemptsRead) MarshalJSON

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

func (*NullableJobWithAttemptsRead) Set

func (*NullableJobWithAttemptsRead) UnmarshalJSON

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

func (*NullableJobWithAttemptsRead) Unset

func (v *NullableJobWithAttemptsRead) Unset()

type NullableKnownExceptionInfo

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

func NewNullableKnownExceptionInfo

func NewNullableKnownExceptionInfo(val *KnownExceptionInfo) *NullableKnownExceptionInfo

func (NullableKnownExceptionInfo) Get

func (NullableKnownExceptionInfo) IsSet

func (v NullableKnownExceptionInfo) IsSet() bool

func (NullableKnownExceptionInfo) MarshalJSON

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

func (*NullableKnownExceptionInfo) Set

func (*NullableKnownExceptionInfo) UnmarshalJSON

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

func (*NullableKnownExceptionInfo) Unset

func (v *NullableKnownExceptionInfo) Unset()

type NullableLogRead

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

func NewNullableLogRead

func NewNullableLogRead(val *LogRead) *NullableLogRead

func (NullableLogRead) Get

func (v NullableLogRead) Get() *LogRead

func (NullableLogRead) IsSet

func (v NullableLogRead) IsSet() bool

func (NullableLogRead) MarshalJSON

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

func (*NullableLogRead) Set

func (v *NullableLogRead) Set(val *LogRead)

func (*NullableLogRead) UnmarshalJSON

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

func (*NullableLogRead) Unset

func (v *NullableLogRead) Unset()

type NullableLogType

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

func NewNullableLogType

func NewNullableLogType(val *LogType) *NullableLogType

func (NullableLogType) Get

func (v NullableLogType) Get() *LogType

func (NullableLogType) IsSet

func (v NullableLogType) IsSet() bool

func (NullableLogType) MarshalJSON

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

func (*NullableLogType) Set

func (v *NullableLogType) Set(val *LogType)

func (*NullableLogType) UnmarshalJSON

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

func (*NullableLogType) Unset

func (v *NullableLogType) Unset()

type NullableLogsRequestBody

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

func NewNullableLogsRequestBody

func NewNullableLogsRequestBody(val *LogsRequestBody) *NullableLogsRequestBody

func (NullableLogsRequestBody) Get

func (NullableLogsRequestBody) IsSet

func (v NullableLogsRequestBody) IsSet() bool

func (NullableLogsRequestBody) MarshalJSON

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

func (*NullableLogsRequestBody) Set

func (*NullableLogsRequestBody) UnmarshalJSON

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

func (*NullableLogsRequestBody) Unset

func (v *NullableLogsRequestBody) Unset()

type NullableNamespaceDefinitionType

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

func (NullableNamespaceDefinitionType) Get

func (NullableNamespaceDefinitionType) IsSet

func (NullableNamespaceDefinitionType) MarshalJSON

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

func (*NullableNamespaceDefinitionType) Set

func (*NullableNamespaceDefinitionType) UnmarshalJSON

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

func (*NullableNamespaceDefinitionType) Unset

type NullableNotFoundKnownExceptionInfo

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

func (NullableNotFoundKnownExceptionInfo) Get

func (NullableNotFoundKnownExceptionInfo) IsSet

func (NullableNotFoundKnownExceptionInfo) MarshalJSON

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

func (*NullableNotFoundKnownExceptionInfo) Set

func (*NullableNotFoundKnownExceptionInfo) UnmarshalJSON

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

func (*NullableNotFoundKnownExceptionInfo) Unset

type NullableNotification

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

func NewNullableNotification

func NewNullableNotification(val *Notification) *NullableNotification

func (NullableNotification) Get

func (NullableNotification) IsSet

func (v NullableNotification) IsSet() bool

func (NullableNotification) MarshalJSON

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

func (*NullableNotification) Set

func (v *NullableNotification) Set(val *Notification)

func (*NullableNotification) UnmarshalJSON

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

func (*NullableNotification) Unset

func (v *NullableNotification) Unset()

type NullableNotificationRead

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

func NewNullableNotificationRead

func NewNullableNotificationRead(val *NotificationRead) *NullableNotificationRead

func (NullableNotificationRead) Get

func (NullableNotificationRead) IsSet

func (v NullableNotificationRead) IsSet() bool

func (NullableNotificationRead) MarshalJSON

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

func (*NullableNotificationRead) Set

func (*NullableNotificationRead) UnmarshalJSON

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

func (*NullableNotificationRead) Unset

func (v *NullableNotificationRead) Unset()

type NullableNotificationType

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

func NewNullableNotificationType

func NewNullableNotificationType(val *NotificationType) *NullableNotificationType

func (NullableNotificationType) Get

func (NullableNotificationType) IsSet

func (v NullableNotificationType) IsSet() bool

func (NullableNotificationType) MarshalJSON

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

func (*NullableNotificationType) Set

func (*NullableNotificationType) UnmarshalJSON

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

func (*NullableNotificationType) Unset

func (v *NullableNotificationType) Unset()

type NullableOAuth2Specification

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

func NewNullableOAuth2Specification

func NewNullableOAuth2Specification(val *OAuth2Specification) *NullableOAuth2Specification

func (NullableOAuth2Specification) Get

func (NullableOAuth2Specification) IsSet

func (NullableOAuth2Specification) MarshalJSON

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

func (*NullableOAuth2Specification) Set

func (*NullableOAuth2Specification) UnmarshalJSON

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

func (*NullableOAuth2Specification) Unset

func (v *NullableOAuth2Specification) Unset()

type NullableOAuthConfigSpecification

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

func (NullableOAuthConfigSpecification) Get

func (NullableOAuthConfigSpecification) IsSet

func (NullableOAuthConfigSpecification) MarshalJSON

func (v NullableOAuthConfigSpecification) MarshalJSON() ([]byte, error)

func (*NullableOAuthConfigSpecification) Set

func (*NullableOAuthConfigSpecification) UnmarshalJSON

func (v *NullableOAuthConfigSpecification) UnmarshalJSON(src []byte) error

func (*NullableOAuthConfigSpecification) Unset

type NullableOAuthConsentRead

type NullableOAuthConsentRead struct {
	// contains filtered or unexported fields
}

func NewNullableOAuthConsentRead

func NewNullableOAuthConsentRead(val *OAuthConsentRead) *NullableOAuthConsentRead

func (NullableOAuthConsentRead) Get

func (NullableOAuthConsentRead) IsSet

func (v NullableOAuthConsentRead) IsSet() bool

func (NullableOAuthConsentRead) MarshalJSON

func (v NullableOAuthConsentRead) MarshalJSON() ([]byte, error)

func (*NullableOAuthConsentRead) Set

func (*NullableOAuthConsentRead) UnmarshalJSON

func (v *NullableOAuthConsentRead) UnmarshalJSON(src []byte) error

func (*NullableOAuthConsentRead) Unset

func (v *NullableOAuthConsentRead) Unset()

type NullableOperationCreate

type NullableOperationCreate struct {
	// contains filtered or unexported fields
}

func NewNullableOperationCreate

func NewNullableOperationCreate(val *OperationCreate) *NullableOperationCreate

func (NullableOperationCreate) Get

func (NullableOperationCreate) IsSet

func (v NullableOperationCreate) IsSet() bool

func (NullableOperationCreate) MarshalJSON

func (v NullableOperationCreate) MarshalJSON() ([]byte, error)

func (*NullableOperationCreate) Set

func (*NullableOperationCreate) UnmarshalJSON

func (v *NullableOperationCreate) UnmarshalJSON(src []byte) error

func (*NullableOperationCreate) Unset

func (v *NullableOperationCreate) Unset()

type NullableOperationIdRequestBody

type NullableOperationIdRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableOperationIdRequestBody) Get

func (NullableOperationIdRequestBody) IsSet

func (NullableOperationIdRequestBody) MarshalJSON

func (v NullableOperationIdRequestBody) MarshalJSON() ([]byte, error)

func (*NullableOperationIdRequestBody) Set

func (*NullableOperationIdRequestBody) UnmarshalJSON

func (v *NullableOperationIdRequestBody) UnmarshalJSON(src []byte) error

func (*NullableOperationIdRequestBody) Unset

func (v *NullableOperationIdRequestBody) Unset()

type NullableOperationRead

type NullableOperationRead struct {
	// contains filtered or unexported fields
}

func NewNullableOperationRead

func NewNullableOperationRead(val *OperationRead) *NullableOperationRead

func (NullableOperationRead) Get

func (NullableOperationRead) IsSet

func (v NullableOperationRead) IsSet() bool

func (NullableOperationRead) MarshalJSON

func (v NullableOperationRead) MarshalJSON() ([]byte, error)

func (*NullableOperationRead) Set

func (v *NullableOperationRead) Set(val *OperationRead)

func (*NullableOperationRead) UnmarshalJSON

func (v *NullableOperationRead) UnmarshalJSON(src []byte) error

func (*NullableOperationRead) Unset

func (v *NullableOperationRead) Unset()

type NullableOperationReadList

type NullableOperationReadList struct {
	// contains filtered or unexported fields
}

func NewNullableOperationReadList

func NewNullableOperationReadList(val *OperationReadList) *NullableOperationReadList

func (NullableOperationReadList) Get

func (NullableOperationReadList) IsSet

func (v NullableOperationReadList) IsSet() bool

func (NullableOperationReadList) MarshalJSON

func (v NullableOperationReadList) MarshalJSON() ([]byte, error)

func (*NullableOperationReadList) Set

func (*NullableOperationReadList) UnmarshalJSON

func (v *NullableOperationReadList) UnmarshalJSON(src []byte) error

func (*NullableOperationReadList) Unset

func (v *NullableOperationReadList) Unset()

type NullableOperationUpdate

type NullableOperationUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableOperationUpdate

func NewNullableOperationUpdate(val *OperationUpdate) *NullableOperationUpdate

func (NullableOperationUpdate) Get

func (NullableOperationUpdate) IsSet

func (v NullableOperationUpdate) IsSet() bool

func (NullableOperationUpdate) MarshalJSON

func (v NullableOperationUpdate) MarshalJSON() ([]byte, error)

func (*NullableOperationUpdate) Set

func (*NullableOperationUpdate) UnmarshalJSON

func (v *NullableOperationUpdate) UnmarshalJSON(src []byte) error

func (*NullableOperationUpdate) Unset

func (v *NullableOperationUpdate) Unset()

type NullableOperatorConfiguration

type NullableOperatorConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableOperatorConfiguration) Get

func (NullableOperatorConfiguration) IsSet

func (NullableOperatorConfiguration) MarshalJSON

func (v NullableOperatorConfiguration) MarshalJSON() ([]byte, error)

func (*NullableOperatorConfiguration) Set

func (*NullableOperatorConfiguration) UnmarshalJSON

func (v *NullableOperatorConfiguration) UnmarshalJSON(src []byte) error

func (*NullableOperatorConfiguration) Unset

func (v *NullableOperatorConfiguration) Unset()

type NullableOperatorDbt

type NullableOperatorDbt struct {
	// contains filtered or unexported fields
}

func NewNullableOperatorDbt

func NewNullableOperatorDbt(val *OperatorDbt) *NullableOperatorDbt

func (NullableOperatorDbt) Get

func (NullableOperatorDbt) IsSet

func (v NullableOperatorDbt) IsSet() bool

func (NullableOperatorDbt) MarshalJSON

func (v NullableOperatorDbt) MarshalJSON() ([]byte, error)

func (*NullableOperatorDbt) Set

func (v *NullableOperatorDbt) Set(val *OperatorDbt)

func (*NullableOperatorDbt) UnmarshalJSON

func (v *NullableOperatorDbt) UnmarshalJSON(src []byte) error

func (*NullableOperatorDbt) Unset

func (v *NullableOperatorDbt) Unset()

type NullableOperatorNormalization

type NullableOperatorNormalization struct {
	// contains filtered or unexported fields
}

func (NullableOperatorNormalization) Get

func (NullableOperatorNormalization) IsSet

func (NullableOperatorNormalization) MarshalJSON

func (v NullableOperatorNormalization) MarshalJSON() ([]byte, error)

func (*NullableOperatorNormalization) Set

func (*NullableOperatorNormalization) UnmarshalJSON

func (v *NullableOperatorNormalization) UnmarshalJSON(src []byte) error

func (*NullableOperatorNormalization) Unset

func (v *NullableOperatorNormalization) Unset()

type NullableOperatorType

type NullableOperatorType struct {
	// contains filtered or unexported fields
}

func NewNullableOperatorType

func NewNullableOperatorType(val *OperatorType) *NullableOperatorType

func (NullableOperatorType) Get

func (NullableOperatorType) IsSet

func (v NullableOperatorType) IsSet() bool

func (NullableOperatorType) MarshalJSON

func (v NullableOperatorType) MarshalJSON() ([]byte, error)

func (*NullableOperatorType) Set

func (v *NullableOperatorType) Set(val *OperatorType)

func (*NullableOperatorType) UnmarshalJSON

func (v *NullableOperatorType) UnmarshalJSON(src []byte) error

func (*NullableOperatorType) Unset

func (v *NullableOperatorType) Unset()

type NullablePagination

type NullablePagination struct {
	// contains filtered or unexported fields
}

func NewNullablePagination

func NewNullablePagination(val *Pagination) *NullablePagination

func (NullablePagination) Get

func (v NullablePagination) Get() *Pagination

func (NullablePagination) IsSet

func (v NullablePagination) IsSet() bool

func (NullablePagination) MarshalJSON

func (v NullablePagination) MarshalJSON() ([]byte, error)

func (*NullablePagination) Set

func (v *NullablePagination) Set(val *Pagination)

func (*NullablePagination) UnmarshalJSON

func (v *NullablePagination) UnmarshalJSON(src []byte) error

func (*NullablePagination) Unset

func (v *NullablePagination) Unset()

type NullableReleaseStage

type NullableReleaseStage struct {
	// contains filtered or unexported fields
}

func NewNullableReleaseStage

func NewNullableReleaseStage(val *ReleaseStage) *NullableReleaseStage

func (NullableReleaseStage) Get

func (NullableReleaseStage) IsSet

func (v NullableReleaseStage) IsSet() bool

func (NullableReleaseStage) MarshalJSON

func (v NullableReleaseStage) MarshalJSON() ([]byte, error)

func (*NullableReleaseStage) Set

func (v *NullableReleaseStage) Set(val *ReleaseStage)

func (*NullableReleaseStage) UnmarshalJSON

func (v *NullableReleaseStage) UnmarshalJSON(src []byte) error

func (*NullableReleaseStage) Unset

func (v *NullableReleaseStage) Unset()

type NullableResourceRequirements

type NullableResourceRequirements struct {
	// contains filtered or unexported fields
}

func NewNullableResourceRequirements

func NewNullableResourceRequirements(val *ResourceRequirements) *NullableResourceRequirements

func (NullableResourceRequirements) Get

func (NullableResourceRequirements) IsSet

func (NullableResourceRequirements) MarshalJSON

func (v NullableResourceRequirements) MarshalJSON() ([]byte, error)

func (*NullableResourceRequirements) Set

func (*NullableResourceRequirements) UnmarshalJSON

func (v *NullableResourceRequirements) UnmarshalJSON(src []byte) error

func (*NullableResourceRequirements) Unset

func (v *NullableResourceRequirements) Unset()

type NullableSetInstancewideDestinationOauthParamsRequestBody

type NullableSetInstancewideDestinationOauthParamsRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableSetInstancewideDestinationOauthParamsRequestBody) Get

func (NullableSetInstancewideDestinationOauthParamsRequestBody) IsSet

func (NullableSetInstancewideDestinationOauthParamsRequestBody) MarshalJSON

func (*NullableSetInstancewideDestinationOauthParamsRequestBody) Set

func (*NullableSetInstancewideDestinationOauthParamsRequestBody) UnmarshalJSON

func (*NullableSetInstancewideDestinationOauthParamsRequestBody) Unset

type NullableSetInstancewideSourceOauthParamsRequestBody

type NullableSetInstancewideSourceOauthParamsRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableSetInstancewideSourceOauthParamsRequestBody) Get

func (NullableSetInstancewideSourceOauthParamsRequestBody) IsSet

func (NullableSetInstancewideSourceOauthParamsRequestBody) MarshalJSON

func (*NullableSetInstancewideSourceOauthParamsRequestBody) Set

func (*NullableSetInstancewideSourceOauthParamsRequestBody) UnmarshalJSON

func (*NullableSetInstancewideSourceOauthParamsRequestBody) Unset

type NullableSlackNotificationConfiguration

type NullableSlackNotificationConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableSlackNotificationConfiguration) Get

func (NullableSlackNotificationConfiguration) IsSet

func (NullableSlackNotificationConfiguration) MarshalJSON

func (v NullableSlackNotificationConfiguration) MarshalJSON() ([]byte, error)

func (*NullableSlackNotificationConfiguration) Set

func (*NullableSlackNotificationConfiguration) UnmarshalJSON

func (v *NullableSlackNotificationConfiguration) UnmarshalJSON(src []byte) error

func (*NullableSlackNotificationConfiguration) Unset

type NullableSlugRequestBody

type NullableSlugRequestBody struct {
	// contains filtered or unexported fields
}

func NewNullableSlugRequestBody

func NewNullableSlugRequestBody(val *SlugRequestBody) *NullableSlugRequestBody

func (NullableSlugRequestBody) Get

func (NullableSlugRequestBody) IsSet

func (v NullableSlugRequestBody) IsSet() bool

func (NullableSlugRequestBody) MarshalJSON

func (v NullableSlugRequestBody) MarshalJSON() ([]byte, error)

func (*NullableSlugRequestBody) Set

func (*NullableSlugRequestBody) UnmarshalJSON

func (v *NullableSlugRequestBody) UnmarshalJSON(src []byte) error

func (*NullableSlugRequestBody) Unset

func (v *NullableSlugRequestBody) Unset()

type NullableSourceCoreConfig

type NullableSourceCoreConfig struct {
	// contains filtered or unexported fields
}

func NewNullableSourceCoreConfig

func NewNullableSourceCoreConfig(val *SourceCoreConfig) *NullableSourceCoreConfig

func (NullableSourceCoreConfig) Get

func (NullableSourceCoreConfig) IsSet

func (v NullableSourceCoreConfig) IsSet() bool

func (NullableSourceCoreConfig) MarshalJSON

func (v NullableSourceCoreConfig) MarshalJSON() ([]byte, error)

func (*NullableSourceCoreConfig) Set

func (*NullableSourceCoreConfig) UnmarshalJSON

func (v *NullableSourceCoreConfig) UnmarshalJSON(src []byte) error

func (*NullableSourceCoreConfig) Unset

func (v *NullableSourceCoreConfig) Unset()

type NullableSourceCreate

type NullableSourceCreate struct {
	// contains filtered or unexported fields
}

func NewNullableSourceCreate

func NewNullableSourceCreate(val *SourceCreate) *NullableSourceCreate

func (NullableSourceCreate) Get

func (NullableSourceCreate) IsSet

func (v NullableSourceCreate) IsSet() bool

func (NullableSourceCreate) MarshalJSON

func (v NullableSourceCreate) MarshalJSON() ([]byte, error)

func (*NullableSourceCreate) Set

func (v *NullableSourceCreate) Set(val *SourceCreate)

func (*NullableSourceCreate) UnmarshalJSON

func (v *NullableSourceCreate) UnmarshalJSON(src []byte) error

func (*NullableSourceCreate) Unset

func (v *NullableSourceCreate) Unset()

type NullableSourceDefinitionCreate

type NullableSourceDefinitionCreate struct {
	// contains filtered or unexported fields
}

func (NullableSourceDefinitionCreate) Get

func (NullableSourceDefinitionCreate) IsSet

func (NullableSourceDefinitionCreate) MarshalJSON

func (v NullableSourceDefinitionCreate) MarshalJSON() ([]byte, error)

func (*NullableSourceDefinitionCreate) Set

func (*NullableSourceDefinitionCreate) UnmarshalJSON

func (v *NullableSourceDefinitionCreate) UnmarshalJSON(src []byte) error

func (*NullableSourceDefinitionCreate) Unset

func (v *NullableSourceDefinitionCreate) Unset()

type NullableSourceDefinitionIdRequestBody

type NullableSourceDefinitionIdRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableSourceDefinitionIdRequestBody) Get

func (NullableSourceDefinitionIdRequestBody) IsSet

func (NullableSourceDefinitionIdRequestBody) MarshalJSON

func (v NullableSourceDefinitionIdRequestBody) MarshalJSON() ([]byte, error)

func (*NullableSourceDefinitionIdRequestBody) Set

func (*NullableSourceDefinitionIdRequestBody) UnmarshalJSON

func (v *NullableSourceDefinitionIdRequestBody) UnmarshalJSON(src []byte) error

func (*NullableSourceDefinitionIdRequestBody) Unset

type NullableSourceDefinitionRead

type NullableSourceDefinitionRead struct {
	// contains filtered or unexported fields
}

func NewNullableSourceDefinitionRead

func NewNullableSourceDefinitionRead(val *SourceDefinitionRead) *NullableSourceDefinitionRead

func (NullableSourceDefinitionRead) Get

func (NullableSourceDefinitionRead) IsSet

func (NullableSourceDefinitionRead) MarshalJSON

func (v NullableSourceDefinitionRead) MarshalJSON() ([]byte, error)

func (*NullableSourceDefinitionRead) Set

func (*NullableSourceDefinitionRead) UnmarshalJSON

func (v *NullableSourceDefinitionRead) UnmarshalJSON(src []byte) error

func (*NullableSourceDefinitionRead) Unset

func (v *NullableSourceDefinitionRead) Unset()

type NullableSourceDefinitionReadList

type NullableSourceDefinitionReadList struct {
	// contains filtered or unexported fields
}

func (NullableSourceDefinitionReadList) Get

func (NullableSourceDefinitionReadList) IsSet

func (NullableSourceDefinitionReadList) MarshalJSON

func (v NullableSourceDefinitionReadList) MarshalJSON() ([]byte, error)

func (*NullableSourceDefinitionReadList) Set

func (*NullableSourceDefinitionReadList) UnmarshalJSON

func (v *NullableSourceDefinitionReadList) UnmarshalJSON(src []byte) error

func (*NullableSourceDefinitionReadList) Unset

type NullableSourceDefinitionSpecificationRead

type NullableSourceDefinitionSpecificationRead struct {
	// contains filtered or unexported fields
}

func (NullableSourceDefinitionSpecificationRead) Get

func (NullableSourceDefinitionSpecificationRead) IsSet

func (NullableSourceDefinitionSpecificationRead) MarshalJSON

func (*NullableSourceDefinitionSpecificationRead) Set

func (*NullableSourceDefinitionSpecificationRead) UnmarshalJSON

func (v *NullableSourceDefinitionSpecificationRead) UnmarshalJSON(src []byte) error

func (*NullableSourceDefinitionSpecificationRead) Unset

type NullableSourceDefinitionUpdate

type NullableSourceDefinitionUpdate struct {
	// contains filtered or unexported fields
}

func (NullableSourceDefinitionUpdate) Get

func (NullableSourceDefinitionUpdate) IsSet

func (NullableSourceDefinitionUpdate) MarshalJSON

func (v NullableSourceDefinitionUpdate) MarshalJSON() ([]byte, error)

func (*NullableSourceDefinitionUpdate) Set

func (*NullableSourceDefinitionUpdate) UnmarshalJSON

func (v *NullableSourceDefinitionUpdate) UnmarshalJSON(src []byte) error

func (*NullableSourceDefinitionUpdate) Unset

func (v *NullableSourceDefinitionUpdate) Unset()

type NullableSourceDiscoverSchemaRead

type NullableSourceDiscoverSchemaRead struct {
	// contains filtered or unexported fields
}

func (NullableSourceDiscoverSchemaRead) Get

func (NullableSourceDiscoverSchemaRead) IsSet

func (NullableSourceDiscoverSchemaRead) MarshalJSON

func (v NullableSourceDiscoverSchemaRead) MarshalJSON() ([]byte, error)

func (*NullableSourceDiscoverSchemaRead) Set

func (*NullableSourceDiscoverSchemaRead) UnmarshalJSON

func (v *NullableSourceDiscoverSchemaRead) UnmarshalJSON(src []byte) error

func (*NullableSourceDiscoverSchemaRead) Unset

type NullableSourceIdRequestBody

type NullableSourceIdRequestBody struct {
	// contains filtered or unexported fields
}

func NewNullableSourceIdRequestBody

func NewNullableSourceIdRequestBody(val *SourceIdRequestBody) *NullableSourceIdRequestBody

func (NullableSourceIdRequestBody) Get

func (NullableSourceIdRequestBody) IsSet

func (NullableSourceIdRequestBody) MarshalJSON

func (v NullableSourceIdRequestBody) MarshalJSON() ([]byte, error)

func (*NullableSourceIdRequestBody) Set

func (*NullableSourceIdRequestBody) UnmarshalJSON

func (v *NullableSourceIdRequestBody) UnmarshalJSON(src []byte) error

func (*NullableSourceIdRequestBody) Unset

func (v *NullableSourceIdRequestBody) Unset()

type NullableSourceOauthConsentRequest

type NullableSourceOauthConsentRequest struct {
	// contains filtered or unexported fields
}

func (NullableSourceOauthConsentRequest) Get

func (NullableSourceOauthConsentRequest) IsSet

func (NullableSourceOauthConsentRequest) MarshalJSON

func (v NullableSourceOauthConsentRequest) MarshalJSON() ([]byte, error)

func (*NullableSourceOauthConsentRequest) Set

func (*NullableSourceOauthConsentRequest) UnmarshalJSON

func (v *NullableSourceOauthConsentRequest) UnmarshalJSON(src []byte) error

func (*NullableSourceOauthConsentRequest) Unset

type NullableSourceRead

type NullableSourceRead struct {
	// contains filtered or unexported fields
}

func NewNullableSourceRead

func NewNullableSourceRead(val *SourceRead) *NullableSourceRead

func (NullableSourceRead) Get

func (v NullableSourceRead) Get() *SourceRead

func (NullableSourceRead) IsSet

func (v NullableSourceRead) IsSet() bool

func (NullableSourceRead) MarshalJSON

func (v NullableSourceRead) MarshalJSON() ([]byte, error)

func (*NullableSourceRead) Set

func (v *NullableSourceRead) Set(val *SourceRead)

func (*NullableSourceRead) UnmarshalJSON

func (v *NullableSourceRead) UnmarshalJSON(src []byte) error

func (*NullableSourceRead) Unset

func (v *NullableSourceRead) Unset()

type NullableSourceReadList

type NullableSourceReadList struct {
	// contains filtered or unexported fields
}

func NewNullableSourceReadList

func NewNullableSourceReadList(val *SourceReadList) *NullableSourceReadList

func (NullableSourceReadList) Get

func (NullableSourceReadList) IsSet

func (v NullableSourceReadList) IsSet() bool

func (NullableSourceReadList) MarshalJSON

func (v NullableSourceReadList) MarshalJSON() ([]byte, error)

func (*NullableSourceReadList) Set

func (*NullableSourceReadList) UnmarshalJSON

func (v *NullableSourceReadList) UnmarshalJSON(src []byte) error

func (*NullableSourceReadList) Unset

func (v *NullableSourceReadList) Unset()

type NullableSourceSearch

type NullableSourceSearch struct {
	// contains filtered or unexported fields
}

func NewNullableSourceSearch

func NewNullableSourceSearch(val *SourceSearch) *NullableSourceSearch

func (NullableSourceSearch) Get

func (NullableSourceSearch) IsSet

func (v NullableSourceSearch) IsSet() bool

func (NullableSourceSearch) MarshalJSON

func (v NullableSourceSearch) MarshalJSON() ([]byte, error)

func (*NullableSourceSearch) Set

func (v *NullableSourceSearch) Set(val *SourceSearch)

func (*NullableSourceSearch) UnmarshalJSON

func (v *NullableSourceSearch) UnmarshalJSON(src []byte) error

func (*NullableSourceSearch) Unset

func (v *NullableSourceSearch) Unset()

type NullableSourceUpdate

type NullableSourceUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableSourceUpdate

func NewNullableSourceUpdate(val *SourceUpdate) *NullableSourceUpdate

func (NullableSourceUpdate) Get

func (NullableSourceUpdate) IsSet

func (v NullableSourceUpdate) IsSet() bool

func (NullableSourceUpdate) MarshalJSON

func (v NullableSourceUpdate) MarshalJSON() ([]byte, error)

func (*NullableSourceUpdate) Set

func (v *NullableSourceUpdate) Set(val *SourceUpdate)

func (*NullableSourceUpdate) UnmarshalJSON

func (v *NullableSourceUpdate) UnmarshalJSON(src []byte) error

func (*NullableSourceUpdate) Unset

func (v *NullableSourceUpdate) 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 NullableSyncMode

type NullableSyncMode struct {
	// contains filtered or unexported fields
}

func NewNullableSyncMode

func NewNullableSyncMode(val *SyncMode) *NullableSyncMode

func (NullableSyncMode) Get

func (v NullableSyncMode) Get() *SyncMode

func (NullableSyncMode) IsSet

func (v NullableSyncMode) IsSet() bool

func (NullableSyncMode) MarshalJSON

func (v NullableSyncMode) MarshalJSON() ([]byte, error)

func (*NullableSyncMode) Set

func (v *NullableSyncMode) Set(val *SyncMode)

func (*NullableSyncMode) UnmarshalJSON

func (v *NullableSyncMode) UnmarshalJSON(src []byte) error

func (*NullableSyncMode) Unset

func (v *NullableSyncMode) Unset()

type NullableSynchronousJobRead

type NullableSynchronousJobRead struct {
	// contains filtered or unexported fields
}

func NewNullableSynchronousJobRead

func NewNullableSynchronousJobRead(val *SynchronousJobRead) *NullableSynchronousJobRead

func (NullableSynchronousJobRead) Get

func (NullableSynchronousJobRead) IsSet

func (v NullableSynchronousJobRead) IsSet() bool

func (NullableSynchronousJobRead) MarshalJSON

func (v NullableSynchronousJobRead) MarshalJSON() ([]byte, error)

func (*NullableSynchronousJobRead) Set

func (*NullableSynchronousJobRead) UnmarshalJSON

func (v *NullableSynchronousJobRead) UnmarshalJSON(src []byte) error

func (*NullableSynchronousJobRead) Unset

func (v *NullableSynchronousJobRead) 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 NullableUploadRead

type NullableUploadRead struct {
	// contains filtered or unexported fields
}

func NewNullableUploadRead

func NewNullableUploadRead(val *UploadRead) *NullableUploadRead

func (NullableUploadRead) Get

func (v NullableUploadRead) Get() *UploadRead

func (NullableUploadRead) IsSet

func (v NullableUploadRead) IsSet() bool

func (NullableUploadRead) MarshalJSON

func (v NullableUploadRead) MarshalJSON() ([]byte, error)

func (*NullableUploadRead) Set

func (v *NullableUploadRead) Set(val *UploadRead)

func (*NullableUploadRead) UnmarshalJSON

func (v *NullableUploadRead) UnmarshalJSON(src []byte) error

func (*NullableUploadRead) Unset

func (v *NullableUploadRead) Unset()

type NullableWebBackendConnectionCreate

type NullableWebBackendConnectionCreate struct {
	// contains filtered or unexported fields
}

func (NullableWebBackendConnectionCreate) Get

func (NullableWebBackendConnectionCreate) IsSet

func (NullableWebBackendConnectionCreate) MarshalJSON

func (v NullableWebBackendConnectionCreate) MarshalJSON() ([]byte, error)

func (*NullableWebBackendConnectionCreate) Set

func (*NullableWebBackendConnectionCreate) UnmarshalJSON

func (v *NullableWebBackendConnectionCreate) UnmarshalJSON(src []byte) error

func (*NullableWebBackendConnectionCreate) Unset

type NullableWebBackendConnectionRead

type NullableWebBackendConnectionRead struct {
	// contains filtered or unexported fields
}

func (NullableWebBackendConnectionRead) Get

func (NullableWebBackendConnectionRead) IsSet

func (NullableWebBackendConnectionRead) MarshalJSON

func (v NullableWebBackendConnectionRead) MarshalJSON() ([]byte, error)

func (*NullableWebBackendConnectionRead) Set

func (*NullableWebBackendConnectionRead) UnmarshalJSON

func (v *NullableWebBackendConnectionRead) UnmarshalJSON(src []byte) error

func (*NullableWebBackendConnectionRead) Unset

type NullableWebBackendConnectionReadList

type NullableWebBackendConnectionReadList struct {
	// contains filtered or unexported fields
}

func (NullableWebBackendConnectionReadList) Get

func (NullableWebBackendConnectionReadList) IsSet

func (NullableWebBackendConnectionReadList) MarshalJSON

func (v NullableWebBackendConnectionReadList) MarshalJSON() ([]byte, error)

func (*NullableWebBackendConnectionReadList) Set

func (*NullableWebBackendConnectionReadList) UnmarshalJSON

func (v *NullableWebBackendConnectionReadList) UnmarshalJSON(src []byte) error

func (*NullableWebBackendConnectionReadList) Unset

type NullableWebBackendConnectionRequestBody

type NullableWebBackendConnectionRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableWebBackendConnectionRequestBody) Get

func (NullableWebBackendConnectionRequestBody) IsSet

func (NullableWebBackendConnectionRequestBody) MarshalJSON

func (v NullableWebBackendConnectionRequestBody) MarshalJSON() ([]byte, error)

func (*NullableWebBackendConnectionRequestBody) Set

func (*NullableWebBackendConnectionRequestBody) UnmarshalJSON

func (v *NullableWebBackendConnectionRequestBody) UnmarshalJSON(src []byte) error

func (*NullableWebBackendConnectionRequestBody) Unset

type NullableWebBackendConnectionSearch

type NullableWebBackendConnectionSearch struct {
	// contains filtered or unexported fields
}

func (NullableWebBackendConnectionSearch) Get

func (NullableWebBackendConnectionSearch) IsSet

func (NullableWebBackendConnectionSearch) MarshalJSON

func (v NullableWebBackendConnectionSearch) MarshalJSON() ([]byte, error)

func (*NullableWebBackendConnectionSearch) Set

func (*NullableWebBackendConnectionSearch) UnmarshalJSON

func (v *NullableWebBackendConnectionSearch) UnmarshalJSON(src []byte) error

func (*NullableWebBackendConnectionSearch) Unset

type NullableWebBackendConnectionUpdate

type NullableWebBackendConnectionUpdate struct {
	// contains filtered or unexported fields
}

func (NullableWebBackendConnectionUpdate) Get

func (NullableWebBackendConnectionUpdate) IsSet

func (NullableWebBackendConnectionUpdate) MarshalJSON

func (v NullableWebBackendConnectionUpdate) MarshalJSON() ([]byte, error)

func (*NullableWebBackendConnectionUpdate) Set

func (*NullableWebBackendConnectionUpdate) UnmarshalJSON

func (v *NullableWebBackendConnectionUpdate) UnmarshalJSON(src []byte) error

func (*NullableWebBackendConnectionUpdate) Unset

type NullableWebBackendOperationCreateOrUpdate

type NullableWebBackendOperationCreateOrUpdate struct {
	// contains filtered or unexported fields
}

func (NullableWebBackendOperationCreateOrUpdate) Get

func (NullableWebBackendOperationCreateOrUpdate) IsSet

func (NullableWebBackendOperationCreateOrUpdate) MarshalJSON

func (*NullableWebBackendOperationCreateOrUpdate) Set

func (*NullableWebBackendOperationCreateOrUpdate) UnmarshalJSON

func (v *NullableWebBackendOperationCreateOrUpdate) UnmarshalJSON(src []byte) error

func (*NullableWebBackendOperationCreateOrUpdate) Unset

type NullableWorkspaceCreate

type NullableWorkspaceCreate struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceCreate

func NewNullableWorkspaceCreate(val *WorkspaceCreate) *NullableWorkspaceCreate

func (NullableWorkspaceCreate) Get

func (NullableWorkspaceCreate) IsSet

func (v NullableWorkspaceCreate) IsSet() bool

func (NullableWorkspaceCreate) MarshalJSON

func (v NullableWorkspaceCreate) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceCreate) Set

func (*NullableWorkspaceCreate) UnmarshalJSON

func (v *NullableWorkspaceCreate) UnmarshalJSON(src []byte) error

func (*NullableWorkspaceCreate) Unset

func (v *NullableWorkspaceCreate) Unset()

type NullableWorkspaceGiveFeedback

type NullableWorkspaceGiveFeedback struct {
	// contains filtered or unexported fields
}

func (NullableWorkspaceGiveFeedback) Get

func (NullableWorkspaceGiveFeedback) IsSet

func (NullableWorkspaceGiveFeedback) MarshalJSON

func (v NullableWorkspaceGiveFeedback) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceGiveFeedback) Set

func (*NullableWorkspaceGiveFeedback) UnmarshalJSON

func (v *NullableWorkspaceGiveFeedback) UnmarshalJSON(src []byte) error

func (*NullableWorkspaceGiveFeedback) Unset

func (v *NullableWorkspaceGiveFeedback) Unset()

type NullableWorkspaceIdRequestBody

type NullableWorkspaceIdRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableWorkspaceIdRequestBody) Get

func (NullableWorkspaceIdRequestBody) IsSet

func (NullableWorkspaceIdRequestBody) MarshalJSON

func (v NullableWorkspaceIdRequestBody) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceIdRequestBody) Set

func (*NullableWorkspaceIdRequestBody) UnmarshalJSON

func (v *NullableWorkspaceIdRequestBody) UnmarshalJSON(src []byte) error

func (*NullableWorkspaceIdRequestBody) Unset

func (v *NullableWorkspaceIdRequestBody) Unset()

type NullableWorkspaceRead

type NullableWorkspaceRead struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceRead

func NewNullableWorkspaceRead(val *WorkspaceRead) *NullableWorkspaceRead

func (NullableWorkspaceRead) Get

func (NullableWorkspaceRead) IsSet

func (v NullableWorkspaceRead) IsSet() bool

func (NullableWorkspaceRead) MarshalJSON

func (v NullableWorkspaceRead) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceRead) Set

func (v *NullableWorkspaceRead) Set(val *WorkspaceRead)

func (*NullableWorkspaceRead) UnmarshalJSON

func (v *NullableWorkspaceRead) UnmarshalJSON(src []byte) error

func (*NullableWorkspaceRead) Unset

func (v *NullableWorkspaceRead) Unset()

type NullableWorkspaceReadList

type NullableWorkspaceReadList struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceReadList

func NewNullableWorkspaceReadList(val *WorkspaceReadList) *NullableWorkspaceReadList

func (NullableWorkspaceReadList) Get

func (NullableWorkspaceReadList) IsSet

func (v NullableWorkspaceReadList) IsSet() bool

func (NullableWorkspaceReadList) MarshalJSON

func (v NullableWorkspaceReadList) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceReadList) Set

func (*NullableWorkspaceReadList) UnmarshalJSON

func (v *NullableWorkspaceReadList) UnmarshalJSON(src []byte) error

func (*NullableWorkspaceReadList) Unset

func (v *NullableWorkspaceReadList) Unset()

type NullableWorkspaceUpdate

type NullableWorkspaceUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceUpdate

func NewNullableWorkspaceUpdate(val *WorkspaceUpdate) *NullableWorkspaceUpdate

func (NullableWorkspaceUpdate) Get

func (NullableWorkspaceUpdate) IsSet

func (v NullableWorkspaceUpdate) IsSet() bool

func (NullableWorkspaceUpdate) MarshalJSON

func (v NullableWorkspaceUpdate) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceUpdate) Set

func (*NullableWorkspaceUpdate) UnmarshalJSON

func (v *NullableWorkspaceUpdate) UnmarshalJSON(src []byte) error

func (*NullableWorkspaceUpdate) Unset

func (v *NullableWorkspaceUpdate) Unset()

type NullableWorkspaceUpdateName

type NullableWorkspaceUpdateName struct {
	// contains filtered or unexported fields
}

func NewNullableWorkspaceUpdateName

func NewNullableWorkspaceUpdateName(val *WorkspaceUpdateName) *NullableWorkspaceUpdateName

func (NullableWorkspaceUpdateName) Get

func (NullableWorkspaceUpdateName) IsSet

func (NullableWorkspaceUpdateName) MarshalJSON

func (v NullableWorkspaceUpdateName) MarshalJSON() ([]byte, error)

func (*NullableWorkspaceUpdateName) Set

func (*NullableWorkspaceUpdateName) UnmarshalJSON

func (v *NullableWorkspaceUpdateName) UnmarshalJSON(src []byte) error

func (*NullableWorkspaceUpdateName) Unset

func (v *NullableWorkspaceUpdateName) Unset()

type OAuth2Specification

type OAuth2Specification struct {
	// A list of strings representing a pointer to the root object which contains any oauth parameters in the ConnectorSpecification. Examples: if oauth parameters were contained inside the top level, rootObject=[] If they were nested inside another object {'credentials': {'app_id' etc...}, rootObject=['credentials'] If they were inside a oneOf {'switch': {oneOf: [{client_id...}, {non_oauth_param]}},  rootObject=['switch', 0]
	RootObject []interface{} `json:"rootObject"`
	// Pointers to the fields in the rootObject needed to obtain the initial refresh/access tokens for the OAuth flow. Each inner array represents the path in the rootObject of the referenced field. For example. Assume the rootObject contains params 'app_secret', 'app_id' which are needed to get the initial refresh token. If they are not nested in the rootObject, then the array would look like this [['app_secret'], ['app_id']] If they are nested inside an object called 'auth_params' then this array would be [['auth_params', 'app_secret'], ['auth_params', 'app_id']]
	OauthFlowInitParameters [][]string `json:"oauthFlowInitParameters"`
	// Pointers to the fields in the rootObject which can be populated from successfully completing the oauth flow using the init parameters. This is typically a refresh/access token. Each inner array represents the path in the rootObject of the referenced field.
	OauthFlowOutputParameters [][]string `json:"oauthFlowOutputParameters"`
}

OAuth2Specification An object containing any metadata needed to describe this connector's Oauth flow

func NewOAuth2Specification

func NewOAuth2Specification(rootObject []interface{}, oauthFlowInitParameters [][]string, oauthFlowOutputParameters [][]string) *OAuth2Specification

NewOAuth2Specification instantiates a new OAuth2Specification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOAuth2SpecificationWithDefaults

func NewOAuth2SpecificationWithDefaults() *OAuth2Specification

NewOAuth2SpecificationWithDefaults instantiates a new OAuth2Specification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OAuth2Specification) GetOauthFlowInitParameters

func (o *OAuth2Specification) GetOauthFlowInitParameters() [][]string

GetOauthFlowInitParameters returns the OauthFlowInitParameters field value

func (*OAuth2Specification) GetOauthFlowInitParametersOk

func (o *OAuth2Specification) GetOauthFlowInitParametersOk() ([][]string, bool)

GetOauthFlowInitParametersOk returns a tuple with the OauthFlowInitParameters field value and a boolean to check if the value has been set.

func (*OAuth2Specification) GetOauthFlowOutputParameters

func (o *OAuth2Specification) GetOauthFlowOutputParameters() [][]string

GetOauthFlowOutputParameters returns the OauthFlowOutputParameters field value

func (*OAuth2Specification) GetOauthFlowOutputParametersOk

func (o *OAuth2Specification) GetOauthFlowOutputParametersOk() ([][]string, bool)

GetOauthFlowOutputParametersOk returns a tuple with the OauthFlowOutputParameters field value and a boolean to check if the value has been set.

func (*OAuth2Specification) GetRootObject

func (o *OAuth2Specification) GetRootObject() []interface{}

GetRootObject returns the RootObject field value

func (*OAuth2Specification) GetRootObjectOk

func (o *OAuth2Specification) GetRootObjectOk() ([]interface{}, bool)

GetRootObjectOk returns a tuple with the RootObject field value and a boolean to check if the value has been set.

func (OAuth2Specification) MarshalJSON

func (o OAuth2Specification) MarshalJSON() ([]byte, error)

func (*OAuth2Specification) SetOauthFlowInitParameters

func (o *OAuth2Specification) SetOauthFlowInitParameters(v [][]string)

SetOauthFlowInitParameters sets field value

func (*OAuth2Specification) SetOauthFlowOutputParameters

func (o *OAuth2Specification) SetOauthFlowOutputParameters(v [][]string)

SetOauthFlowOutputParameters sets field value

func (*OAuth2Specification) SetRootObject

func (o *OAuth2Specification) SetRootObject(v []interface{})

SetRootObject sets field value

type OAuthConfigSpecification

type OAuthConfigSpecification struct {
	// OAuth specific blob.
	OauthUserInputFromConnectorConfigSpecification interface{} `json:"oauthUserInputFromConnectorConfigSpecification,omitempty"`
	// OAuth specific blob.
	CompleteOAuthOutputSpecification interface{} `json:"completeOAuthOutputSpecification,omitempty"`
	// OAuth specific blob.
	CompleteOAuthServerInputSpecification interface{} `json:"completeOAuthServerInputSpecification,omitempty"`
	// OAuth specific blob.
	CompleteOAuthServerOutputSpecification interface{} `json:"completeOAuthServerOutputSpecification,omitempty"`
}

OAuthConfigSpecification struct for OAuthConfigSpecification

func NewOAuthConfigSpecification

func NewOAuthConfigSpecification() *OAuthConfigSpecification

NewOAuthConfigSpecification instantiates a new OAuthConfigSpecification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOAuthConfigSpecificationWithDefaults

func NewOAuthConfigSpecificationWithDefaults() *OAuthConfigSpecification

NewOAuthConfigSpecificationWithDefaults instantiates a new OAuthConfigSpecification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OAuthConfigSpecification) GetCompleteOAuthOutputSpecification

func (o *OAuthConfigSpecification) GetCompleteOAuthOutputSpecification() interface{}

GetCompleteOAuthOutputSpecification returns the CompleteOAuthOutputSpecification field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuthConfigSpecification) GetCompleteOAuthOutputSpecificationOk

func (o *OAuthConfigSpecification) GetCompleteOAuthOutputSpecificationOk() (*interface{}, bool)

GetCompleteOAuthOutputSpecificationOk returns a tuple with the CompleteOAuthOutputSpecification field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuthConfigSpecification) GetCompleteOAuthServerInputSpecification

func (o *OAuthConfigSpecification) GetCompleteOAuthServerInputSpecification() interface{}

GetCompleteOAuthServerInputSpecification returns the CompleteOAuthServerInputSpecification field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuthConfigSpecification) GetCompleteOAuthServerInputSpecificationOk

func (o *OAuthConfigSpecification) GetCompleteOAuthServerInputSpecificationOk() (*interface{}, bool)

GetCompleteOAuthServerInputSpecificationOk returns a tuple with the CompleteOAuthServerInputSpecification field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuthConfigSpecification) GetCompleteOAuthServerOutputSpecification

func (o *OAuthConfigSpecification) GetCompleteOAuthServerOutputSpecification() interface{}

GetCompleteOAuthServerOutputSpecification returns the CompleteOAuthServerOutputSpecification field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuthConfigSpecification) GetCompleteOAuthServerOutputSpecificationOk

func (o *OAuthConfigSpecification) GetCompleteOAuthServerOutputSpecificationOk() (*interface{}, bool)

GetCompleteOAuthServerOutputSpecificationOk returns a tuple with the CompleteOAuthServerOutputSpecification field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuthConfigSpecification) GetOauthUserInputFromConnectorConfigSpecification

func (o *OAuthConfigSpecification) GetOauthUserInputFromConnectorConfigSpecification() interface{}

GetOauthUserInputFromConnectorConfigSpecification returns the OauthUserInputFromConnectorConfigSpecification field value if set, zero value otherwise (both if not set or set to explicit null).

func (*OAuthConfigSpecification) GetOauthUserInputFromConnectorConfigSpecificationOk

func (o *OAuthConfigSpecification) GetOauthUserInputFromConnectorConfigSpecificationOk() (*interface{}, bool)

GetOauthUserInputFromConnectorConfigSpecificationOk returns a tuple with the OauthUserInputFromConnectorConfigSpecification field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*OAuthConfigSpecification) HasCompleteOAuthOutputSpecification

func (o *OAuthConfigSpecification) HasCompleteOAuthOutputSpecification() bool

HasCompleteOAuthOutputSpecification returns a boolean if a field has been set.

func (*OAuthConfigSpecification) HasCompleteOAuthServerInputSpecification

func (o *OAuthConfigSpecification) HasCompleteOAuthServerInputSpecification() bool

HasCompleteOAuthServerInputSpecification returns a boolean if a field has been set.

func (*OAuthConfigSpecification) HasCompleteOAuthServerOutputSpecification

func (o *OAuthConfigSpecification) HasCompleteOAuthServerOutputSpecification() bool

HasCompleteOAuthServerOutputSpecification returns a boolean if a field has been set.

func (*OAuthConfigSpecification) HasOauthUserInputFromConnectorConfigSpecification

func (o *OAuthConfigSpecification) HasOauthUserInputFromConnectorConfigSpecification() bool

HasOauthUserInputFromConnectorConfigSpecification returns a boolean if a field has been set.

func (OAuthConfigSpecification) MarshalJSON

func (o OAuthConfigSpecification) MarshalJSON() ([]byte, error)

func (*OAuthConfigSpecification) SetCompleteOAuthOutputSpecification

func (o *OAuthConfigSpecification) SetCompleteOAuthOutputSpecification(v interface{})

SetCompleteOAuthOutputSpecification gets a reference to the given interface{} and assigns it to the CompleteOAuthOutputSpecification field.

func (*OAuthConfigSpecification) SetCompleteOAuthServerInputSpecification

func (o *OAuthConfigSpecification) SetCompleteOAuthServerInputSpecification(v interface{})

SetCompleteOAuthServerInputSpecification gets a reference to the given interface{} and assigns it to the CompleteOAuthServerInputSpecification field.

func (*OAuthConfigSpecification) SetCompleteOAuthServerOutputSpecification

func (o *OAuthConfigSpecification) SetCompleteOAuthServerOutputSpecification(v interface{})

SetCompleteOAuthServerOutputSpecification gets a reference to the given interface{} and assigns it to the CompleteOAuthServerOutputSpecification field.

func (*OAuthConfigSpecification) SetOauthUserInputFromConnectorConfigSpecification

func (o *OAuthConfigSpecification) SetOauthUserInputFromConnectorConfigSpecification(v interface{})

SetOauthUserInputFromConnectorConfigSpecification gets a reference to the given interface{} and assigns it to the OauthUserInputFromConnectorConfigSpecification field.

type OAuthConsentRead

type OAuthConsentRead struct {
	ConsentUrl string `json:"consentUrl"`
}

OAuthConsentRead struct for OAuthConsentRead

func NewOAuthConsentRead

func NewOAuthConsentRead(consentUrl string) *OAuthConsentRead

NewOAuthConsentRead instantiates a new OAuthConsentRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOAuthConsentReadWithDefaults

func NewOAuthConsentReadWithDefaults() *OAuthConsentRead

NewOAuthConsentReadWithDefaults instantiates a new OAuthConsentRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OAuthConsentRead) GetConsentUrl

func (o *OAuthConsentRead) GetConsentUrl() string

GetConsentUrl returns the ConsentUrl field value

func (*OAuthConsentRead) GetConsentUrlOk

func (o *OAuthConsentRead) GetConsentUrlOk() (*string, bool)

GetConsentUrlOk returns a tuple with the ConsentUrl field value and a boolean to check if the value has been set.

func (OAuthConsentRead) MarshalJSON

func (o OAuthConsentRead) MarshalJSON() ([]byte, error)

func (*OAuthConsentRead) SetConsentUrl

func (o *OAuthConsentRead) SetConsentUrl(v string)

SetConsentUrl sets field value

type OauthApiService

type OauthApiService service

OauthApiService OauthApi service

func (*OauthApiService) CompleteDestinationOAuth

func (a *OauthApiService) CompleteDestinationOAuth(ctx context.Context) ApiCompleteDestinationOAuthRequest

CompleteDestinationOAuth Given a destination def ID generate an access/refresh token etc.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCompleteDestinationOAuthRequest

func (*OauthApiService) CompleteDestinationOAuthExecute

func (a *OauthApiService) CompleteDestinationOAuthExecute(r ApiCompleteDestinationOAuthRequest) (map[string]map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]map[string]interface{}

func (*OauthApiService) CompleteSourceOAuth

func (a *OauthApiService) CompleteSourceOAuth(ctx context.Context) ApiCompleteSourceOAuthRequest

CompleteSourceOAuth Given a source def ID generate an access/refresh token etc.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCompleteSourceOAuthRequest

func (*OauthApiService) CompleteSourceOAuthExecute

func (a *OauthApiService) CompleteSourceOAuthExecute(r ApiCompleteSourceOAuthRequest) (map[string]map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]map[string]interface{}

func (*OauthApiService) GetDestinationOAuthConsent

func (a *OauthApiService) GetDestinationOAuthConsent(ctx context.Context) ApiGetDestinationOAuthConsentRequest

GetDestinationOAuthConsent Given a destination connector definition ID, return the URL to the consent screen where to redirect the user to.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetDestinationOAuthConsentRequest

func (*OauthApiService) GetDestinationOAuthConsentExecute

func (a *OauthApiService) GetDestinationOAuthConsentExecute(r ApiGetDestinationOAuthConsentRequest) (*OAuthConsentRead, *http.Response, error)

Execute executes the request

@return OAuthConsentRead

func (*OauthApiService) GetSourceOAuthConsent

func (a *OauthApiService) GetSourceOAuthConsent(ctx context.Context) ApiGetSourceOAuthConsentRequest

GetSourceOAuthConsent Given a source connector definition ID, return the URL to the consent screen where to redirect the user to.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSourceOAuthConsentRequest

func (*OauthApiService) GetSourceOAuthConsentExecute

func (a *OauthApiService) GetSourceOAuthConsentExecute(r ApiGetSourceOAuthConsentRequest) (*OAuthConsentRead, *http.Response, error)

Execute executes the request

@return OAuthConsentRead

func (*OauthApiService) SetInstancewideDestinationOauthParams

func (a *OauthApiService) SetInstancewideDestinationOauthParams(ctx context.Context) ApiSetInstancewideDestinationOauthParamsRequest

SetInstancewideDestinationOauthParams Sets instancewide variables to be used for the oauth flow when creating this destination. When set, these variables will be injected into a connector's configuration before any interaction with the connector image itself. This enables running oauth flows with consistent variables e.g: the company's Google Ads developer_token, client_id, and client_secret without the user having to know about these variables.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSetInstancewideDestinationOauthParamsRequest

func (*OauthApiService) SetInstancewideDestinationOauthParamsExecute

func (a *OauthApiService) SetInstancewideDestinationOauthParamsExecute(r ApiSetInstancewideDestinationOauthParamsRequest) (*http.Response, error)

Execute executes the request

func (*OauthApiService) SetInstancewideSourceOauthParams

func (a *OauthApiService) SetInstancewideSourceOauthParams(ctx context.Context) ApiSetInstancewideSourceOauthParamsRequest

SetInstancewideSourceOauthParams Sets instancewide variables to be used for the oauth flow when creating this source. When set, these variables will be injected into a connector's configuration before any interaction with the connector image itself. This enables running oauth flows with consistent variables e.g: the company's Google Ads developer_token, client_id, and client_secret without the user having to know about these variables.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSetInstancewideSourceOauthParamsRequest

func (*OauthApiService) SetInstancewideSourceOauthParamsExecute

func (a *OauthApiService) SetInstancewideSourceOauthParamsExecute(r ApiSetInstancewideSourceOauthParamsRequest) (*http.Response, error)

Execute executes the request

type OpenapiApiService

type OpenapiApiService service

OpenapiApiService OpenapiApi service

func (*OpenapiApiService) GetOpenApiSpec

GetOpenApiSpec Returns the openapi specification

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetOpenApiSpecRequest

func (*OpenapiApiService) GetOpenApiSpecExecute

func (a *OpenapiApiService) GetOpenApiSpecExecute(r ApiGetOpenApiSpecRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

type OperationApiService

type OperationApiService service

OperationApiService OperationApi service

func (*OperationApiService) CheckOperation

CheckOperation Check if an operation to be created is valid

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCheckOperationRequest

func (*OperationApiService) CheckOperationExecute

Execute executes the request

@return CheckOperationRead

func (*OperationApiService) CreateOperation

CreateOperation Create an operation to be applied as part of a connection pipeline

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateOperationRequest

func (*OperationApiService) CreateOperationExecute

Execute executes the request

@return OperationRead

func (*OperationApiService) DeleteOperation

DeleteOperation Delete an operation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteOperationRequest

func (*OperationApiService) DeleteOperationExecute

func (a *OperationApiService) DeleteOperationExecute(r ApiDeleteOperationRequest) (*http.Response, error)

Execute executes the request

func (*OperationApiService) GetOperation

GetOperation Returns an operation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetOperationRequest

func (*OperationApiService) GetOperationExecute

Execute executes the request

@return OperationRead

func (*OperationApiService) ListOperationsForConnection

func (a *OperationApiService) ListOperationsForConnection(ctx context.Context) ApiListOperationsForConnectionRequest

ListOperationsForConnection Returns all operations for a connection.

List operations for connection.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListOperationsForConnectionRequest

func (*OperationApiService) ListOperationsForConnectionExecute

func (a *OperationApiService) ListOperationsForConnectionExecute(r ApiListOperationsForConnectionRequest) (*OperationReadList, *http.Response, error)

Execute executes the request

@return OperationReadList

func (*OperationApiService) UpdateOperation

UpdateOperation Update an operation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateOperationRequest

func (*OperationApiService) UpdateOperationExecute

Execute executes the request

@return OperationRead

type OperationCreate

type OperationCreate struct {
	WorkspaceId           string                `json:"workspaceId"`
	Name                  string                `json:"name"`
	OperatorConfiguration OperatorConfiguration `json:"operatorConfiguration"`
}

OperationCreate struct for OperationCreate

func NewOperationCreate

func NewOperationCreate(workspaceId string, name string, operatorConfiguration OperatorConfiguration) *OperationCreate

NewOperationCreate instantiates a new OperationCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationCreateWithDefaults

func NewOperationCreateWithDefaults() *OperationCreate

NewOperationCreateWithDefaults instantiates a new OperationCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationCreate) GetName

func (o *OperationCreate) GetName() string

GetName returns the Name field value

func (*OperationCreate) GetNameOk

func (o *OperationCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OperationCreate) GetOperatorConfiguration

func (o *OperationCreate) GetOperatorConfiguration() OperatorConfiguration

GetOperatorConfiguration returns the OperatorConfiguration field value

func (*OperationCreate) GetOperatorConfigurationOk

func (o *OperationCreate) GetOperatorConfigurationOk() (*OperatorConfiguration, bool)

GetOperatorConfigurationOk returns a tuple with the OperatorConfiguration field value and a boolean to check if the value has been set.

func (*OperationCreate) GetWorkspaceId

func (o *OperationCreate) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*OperationCreate) GetWorkspaceIdOk

func (o *OperationCreate) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (OperationCreate) MarshalJSON

func (o OperationCreate) MarshalJSON() ([]byte, error)

func (*OperationCreate) SetName

func (o *OperationCreate) SetName(v string)

SetName sets field value

func (*OperationCreate) SetOperatorConfiguration

func (o *OperationCreate) SetOperatorConfiguration(v OperatorConfiguration)

SetOperatorConfiguration sets field value

func (*OperationCreate) SetWorkspaceId

func (o *OperationCreate) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type OperationIdRequestBody

type OperationIdRequestBody struct {
	OperationId string `json:"OperationId"`
}

OperationIdRequestBody struct for OperationIdRequestBody

func NewOperationIdRequestBody

func NewOperationIdRequestBody(operationId string) *OperationIdRequestBody

NewOperationIdRequestBody instantiates a new OperationIdRequestBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationIdRequestBodyWithDefaults

func NewOperationIdRequestBodyWithDefaults() *OperationIdRequestBody

NewOperationIdRequestBodyWithDefaults instantiates a new OperationIdRequestBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationIdRequestBody) GetOperationId

func (o *OperationIdRequestBody) GetOperationId() string

GetOperationId returns the OperationId field value

func (*OperationIdRequestBody) GetOperationIdOk

func (o *OperationIdRequestBody) GetOperationIdOk() (*string, bool)

GetOperationIdOk returns a tuple with the OperationId field value and a boolean to check if the value has been set.

func (OperationIdRequestBody) MarshalJSON

func (o OperationIdRequestBody) MarshalJSON() ([]byte, error)

func (*OperationIdRequestBody) SetOperationId

func (o *OperationIdRequestBody) SetOperationId(v string)

SetOperationId sets field value

type OperationRead

type OperationRead struct {
	WorkspaceId           string                `json:"workspaceId"`
	OperationId           string                `json:"operationId"`
	Name                  string                `json:"name"`
	OperatorConfiguration OperatorConfiguration `json:"operatorConfiguration"`
}

OperationRead struct for OperationRead

func NewOperationRead

func NewOperationRead(workspaceId string, operationId string, name string, operatorConfiguration OperatorConfiguration) *OperationRead

NewOperationRead instantiates a new OperationRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationReadWithDefaults

func NewOperationReadWithDefaults() *OperationRead

NewOperationReadWithDefaults instantiates a new OperationRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationRead) GetName

func (o *OperationRead) GetName() string

GetName returns the Name field value

func (*OperationRead) GetNameOk

func (o *OperationRead) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OperationRead) GetOperationId

func (o *OperationRead) GetOperationId() string

GetOperationId returns the OperationId field value

func (*OperationRead) GetOperationIdOk

func (o *OperationRead) GetOperationIdOk() (*string, bool)

GetOperationIdOk returns a tuple with the OperationId field value and a boolean to check if the value has been set.

func (*OperationRead) GetOperatorConfiguration

func (o *OperationRead) GetOperatorConfiguration() OperatorConfiguration

GetOperatorConfiguration returns the OperatorConfiguration field value

func (*OperationRead) GetOperatorConfigurationOk

func (o *OperationRead) GetOperatorConfigurationOk() (*OperatorConfiguration, bool)

GetOperatorConfigurationOk returns a tuple with the OperatorConfiguration field value and a boolean to check if the value has been set.

func (*OperationRead) GetWorkspaceId

func (o *OperationRead) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*OperationRead) GetWorkspaceIdOk

func (o *OperationRead) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (OperationRead) MarshalJSON

func (o OperationRead) MarshalJSON() ([]byte, error)

func (*OperationRead) SetName

func (o *OperationRead) SetName(v string)

SetName sets field value

func (*OperationRead) SetOperationId

func (o *OperationRead) SetOperationId(v string)

SetOperationId sets field value

func (*OperationRead) SetOperatorConfiguration

func (o *OperationRead) SetOperatorConfiguration(v OperatorConfiguration)

SetOperatorConfiguration sets field value

func (*OperationRead) SetWorkspaceId

func (o *OperationRead) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type OperationReadList

type OperationReadList struct {
	Operations []OperationRead `json:"operations"`
}

OperationReadList struct for OperationReadList

func NewOperationReadList

func NewOperationReadList(operations []OperationRead) *OperationReadList

NewOperationReadList instantiates a new OperationReadList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationReadListWithDefaults

func NewOperationReadListWithDefaults() *OperationReadList

NewOperationReadListWithDefaults instantiates a new OperationReadList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationReadList) GetOperations

func (o *OperationReadList) GetOperations() []OperationRead

GetOperations returns the Operations field value

func (*OperationReadList) GetOperationsOk

func (o *OperationReadList) GetOperationsOk() ([]OperationRead, bool)

GetOperationsOk returns a tuple with the Operations field value and a boolean to check if the value has been set.

func (OperationReadList) MarshalJSON

func (o OperationReadList) MarshalJSON() ([]byte, error)

func (*OperationReadList) SetOperations

func (o *OperationReadList) SetOperations(v []OperationRead)

SetOperations sets field value

type OperationUpdate

type OperationUpdate struct {
	OperationId           string                `json:"operationId"`
	Name                  string                `json:"name"`
	OperatorConfiguration OperatorConfiguration `json:"operatorConfiguration"`
}

OperationUpdate struct for OperationUpdate

func NewOperationUpdate

func NewOperationUpdate(operationId string, name string, operatorConfiguration OperatorConfiguration) *OperationUpdate

NewOperationUpdate instantiates a new OperationUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationUpdateWithDefaults

func NewOperationUpdateWithDefaults() *OperationUpdate

NewOperationUpdateWithDefaults instantiates a new OperationUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationUpdate) GetName

func (o *OperationUpdate) GetName() string

GetName returns the Name field value

func (*OperationUpdate) GetNameOk

func (o *OperationUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OperationUpdate) GetOperationId

func (o *OperationUpdate) GetOperationId() string

GetOperationId returns the OperationId field value

func (*OperationUpdate) GetOperationIdOk

func (o *OperationUpdate) GetOperationIdOk() (*string, bool)

GetOperationIdOk returns a tuple with the OperationId field value and a boolean to check if the value has been set.

func (*OperationUpdate) GetOperatorConfiguration

func (o *OperationUpdate) GetOperatorConfiguration() OperatorConfiguration

GetOperatorConfiguration returns the OperatorConfiguration field value

func (*OperationUpdate) GetOperatorConfigurationOk

func (o *OperationUpdate) GetOperatorConfigurationOk() (*OperatorConfiguration, bool)

GetOperatorConfigurationOk returns a tuple with the OperatorConfiguration field value and a boolean to check if the value has been set.

func (OperationUpdate) MarshalJSON

func (o OperationUpdate) MarshalJSON() ([]byte, error)

func (*OperationUpdate) SetName

func (o *OperationUpdate) SetName(v string)

SetName sets field value

func (*OperationUpdate) SetOperationId

func (o *OperationUpdate) SetOperationId(v string)

SetOperationId sets field value

func (*OperationUpdate) SetOperatorConfiguration

func (o *OperationUpdate) SetOperatorConfiguration(v OperatorConfiguration)

SetOperatorConfiguration sets field value

type OperatorConfiguration

type OperatorConfiguration struct {
	OperatorType  OperatorType           `json:"operatorType"`
	Normalization *OperatorNormalization `json:"normalization,omitempty"`
	Dbt           *OperatorDbt           `json:"dbt,omitempty"`
}

OperatorConfiguration struct for OperatorConfiguration

func NewOperatorConfiguration

func NewOperatorConfiguration(operatorType OperatorType) *OperatorConfiguration

NewOperatorConfiguration instantiates a new OperatorConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperatorConfigurationWithDefaults

func NewOperatorConfigurationWithDefaults() *OperatorConfiguration

NewOperatorConfigurationWithDefaults instantiates a new OperatorConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperatorConfiguration) GetDbt

func (o *OperatorConfiguration) GetDbt() OperatorDbt

GetDbt returns the Dbt field value if set, zero value otherwise.

func (*OperatorConfiguration) GetDbtOk

func (o *OperatorConfiguration) GetDbtOk() (*OperatorDbt, bool)

GetDbtOk returns a tuple with the Dbt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperatorConfiguration) GetNormalization

func (o *OperatorConfiguration) GetNormalization() OperatorNormalization

GetNormalization returns the Normalization field value if set, zero value otherwise.

func (*OperatorConfiguration) GetNormalizationOk

func (o *OperatorConfiguration) GetNormalizationOk() (*OperatorNormalization, bool)

GetNormalizationOk returns a tuple with the Normalization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperatorConfiguration) GetOperatorType

func (o *OperatorConfiguration) GetOperatorType() OperatorType

GetOperatorType returns the OperatorType field value

func (*OperatorConfiguration) GetOperatorTypeOk

func (o *OperatorConfiguration) GetOperatorTypeOk() (*OperatorType, bool)

GetOperatorTypeOk returns a tuple with the OperatorType field value and a boolean to check if the value has been set.

func (*OperatorConfiguration) HasDbt

func (o *OperatorConfiguration) HasDbt() bool

HasDbt returns a boolean if a field has been set.

func (*OperatorConfiguration) HasNormalization

func (o *OperatorConfiguration) HasNormalization() bool

HasNormalization returns a boolean if a field has been set.

func (OperatorConfiguration) MarshalJSON

func (o OperatorConfiguration) MarshalJSON() ([]byte, error)

func (*OperatorConfiguration) SetDbt

func (o *OperatorConfiguration) SetDbt(v OperatorDbt)

SetDbt gets a reference to the given OperatorDbt and assigns it to the Dbt field.

func (*OperatorConfiguration) SetNormalization

func (o *OperatorConfiguration) SetNormalization(v OperatorNormalization)

SetNormalization gets a reference to the given OperatorNormalization and assigns it to the Normalization field.

func (*OperatorConfiguration) SetOperatorType

func (o *OperatorConfiguration) SetOperatorType(v OperatorType)

SetOperatorType sets field value

type OperatorDbt

type OperatorDbt struct {
	GitRepoUrl    string  `json:"gitRepoUrl"`
	GitRepoBranch *string `json:"gitRepoBranch,omitempty"`
	DockerImage   *string `json:"dockerImage,omitempty"`
	DbtArguments  *string `json:"dbtArguments,omitempty"`
}

OperatorDbt struct for OperatorDbt

func NewOperatorDbt

func NewOperatorDbt(gitRepoUrl string) *OperatorDbt

NewOperatorDbt instantiates a new OperatorDbt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperatorDbtWithDefaults

func NewOperatorDbtWithDefaults() *OperatorDbt

NewOperatorDbtWithDefaults instantiates a new OperatorDbt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperatorDbt) GetDbtArguments

func (o *OperatorDbt) GetDbtArguments() string

GetDbtArguments returns the DbtArguments field value if set, zero value otherwise.

func (*OperatorDbt) GetDbtArgumentsOk

func (o *OperatorDbt) GetDbtArgumentsOk() (*string, bool)

GetDbtArgumentsOk returns a tuple with the DbtArguments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperatorDbt) GetDockerImage

func (o *OperatorDbt) GetDockerImage() string

GetDockerImage returns the DockerImage field value if set, zero value otherwise.

func (*OperatorDbt) GetDockerImageOk

func (o *OperatorDbt) GetDockerImageOk() (*string, bool)

GetDockerImageOk returns a tuple with the DockerImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperatorDbt) GetGitRepoBranch

func (o *OperatorDbt) GetGitRepoBranch() string

GetGitRepoBranch returns the GitRepoBranch field value if set, zero value otherwise.

func (*OperatorDbt) GetGitRepoBranchOk

func (o *OperatorDbt) GetGitRepoBranchOk() (*string, bool)

GetGitRepoBranchOk returns a tuple with the GitRepoBranch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperatorDbt) GetGitRepoUrl

func (o *OperatorDbt) GetGitRepoUrl() string

GetGitRepoUrl returns the GitRepoUrl field value

func (*OperatorDbt) GetGitRepoUrlOk

func (o *OperatorDbt) GetGitRepoUrlOk() (*string, bool)

GetGitRepoUrlOk returns a tuple with the GitRepoUrl field value and a boolean to check if the value has been set.

func (*OperatorDbt) HasDbtArguments

func (o *OperatorDbt) HasDbtArguments() bool

HasDbtArguments returns a boolean if a field has been set.

func (*OperatorDbt) HasDockerImage

func (o *OperatorDbt) HasDockerImage() bool

HasDockerImage returns a boolean if a field has been set.

func (*OperatorDbt) HasGitRepoBranch

func (o *OperatorDbt) HasGitRepoBranch() bool

HasGitRepoBranch returns a boolean if a field has been set.

func (OperatorDbt) MarshalJSON

func (o OperatorDbt) MarshalJSON() ([]byte, error)

func (*OperatorDbt) SetDbtArguments

func (o *OperatorDbt) SetDbtArguments(v string)

SetDbtArguments gets a reference to the given string and assigns it to the DbtArguments field.

func (*OperatorDbt) SetDockerImage

func (o *OperatorDbt) SetDockerImage(v string)

SetDockerImage gets a reference to the given string and assigns it to the DockerImage field.

func (*OperatorDbt) SetGitRepoBranch

func (o *OperatorDbt) SetGitRepoBranch(v string)

SetGitRepoBranch gets a reference to the given string and assigns it to the GitRepoBranch field.

func (*OperatorDbt) SetGitRepoUrl

func (o *OperatorDbt) SetGitRepoUrl(v string)

SetGitRepoUrl sets field value

type OperatorNormalization

type OperatorNormalization struct {
	Option *string `json:"option,omitempty"`
}

OperatorNormalization struct for OperatorNormalization

func NewOperatorNormalization

func NewOperatorNormalization() *OperatorNormalization

NewOperatorNormalization instantiates a new OperatorNormalization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperatorNormalizationWithDefaults

func NewOperatorNormalizationWithDefaults() *OperatorNormalization

NewOperatorNormalizationWithDefaults instantiates a new OperatorNormalization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperatorNormalization) GetOption

func (o *OperatorNormalization) GetOption() string

GetOption returns the Option field value if set, zero value otherwise.

func (*OperatorNormalization) GetOptionOk

func (o *OperatorNormalization) GetOptionOk() (*string, bool)

GetOptionOk returns a tuple with the Option field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperatorNormalization) HasOption

func (o *OperatorNormalization) HasOption() bool

HasOption returns a boolean if a field has been set.

func (OperatorNormalization) MarshalJSON

func (o OperatorNormalization) MarshalJSON() ([]byte, error)

func (*OperatorNormalization) SetOption

func (o *OperatorNormalization) SetOption(v string)

SetOption gets a reference to the given string and assigns it to the Option field.

type OperatorType

type OperatorType string

OperatorType the model 'OperatorType'

const (
	OPERATORTYPE_NORMALIZATION OperatorType = "normalization"
	OPERATORTYPE_DBT           OperatorType = "dbt"
)

List of OperatorType

func NewOperatorTypeFromValue

func NewOperatorTypeFromValue(v string) (*OperatorType, error)

NewOperatorTypeFromValue returns a pointer to a valid OperatorType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OperatorType) IsValid

func (v OperatorType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (OperatorType) Ptr

func (v OperatorType) Ptr() *OperatorType

Ptr returns reference to OperatorType value

func (*OperatorType) UnmarshalJSON

func (v *OperatorType) UnmarshalJSON(src []byte) error

type Pagination

type Pagination struct {
	PageSize  *int32 `json:"pageSize,omitempty"`
	RowOffset *int32 `json:"rowOffset,omitempty"`
}

Pagination struct for Pagination

func NewPagination

func NewPagination() *Pagination

NewPagination instantiates a new Pagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPaginationWithDefaults

func NewPaginationWithDefaults() *Pagination

NewPaginationWithDefaults instantiates a new Pagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Pagination) GetPageSize

func (o *Pagination) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*Pagination) GetPageSizeOk

func (o *Pagination) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pagination) GetRowOffset

func (o *Pagination) GetRowOffset() int32

GetRowOffset returns the RowOffset field value if set, zero value otherwise.

func (*Pagination) GetRowOffsetOk

func (o *Pagination) GetRowOffsetOk() (*int32, bool)

GetRowOffsetOk returns a tuple with the RowOffset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Pagination) HasPageSize

func (o *Pagination) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*Pagination) HasRowOffset

func (o *Pagination) HasRowOffset() bool

HasRowOffset returns a boolean if a field has been set.

func (Pagination) MarshalJSON

func (o Pagination) MarshalJSON() ([]byte, error)

func (*Pagination) SetPageSize

func (o *Pagination) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*Pagination) SetRowOffset

func (o *Pagination) SetRowOffset(v int32)

SetRowOffset gets a reference to the given int32 and assigns it to the RowOffset field.

type ReleaseStage

type ReleaseStage string

ReleaseStage the model 'ReleaseStage'

const (
	RELEASESTAGE_ALPHA               ReleaseStage = "alpha"
	RELEASESTAGE_BETA                ReleaseStage = "beta"
	RELEASESTAGE_GENERALLY_AVAILABLE ReleaseStage = "generally_available"
	RELEASESTAGE_CUSTOM              ReleaseStage = "custom"
)

List of ReleaseStage

func NewReleaseStageFromValue

func NewReleaseStageFromValue(v string) (*ReleaseStage, error)

NewReleaseStageFromValue returns a pointer to a valid ReleaseStage for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ReleaseStage) IsValid

func (v ReleaseStage) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ReleaseStage) Ptr

func (v ReleaseStage) Ptr() *ReleaseStage

Ptr returns reference to ReleaseStage value

func (*ReleaseStage) UnmarshalJSON

func (v *ReleaseStage) UnmarshalJSON(src []byte) error

type ResourceRequirements

type ResourceRequirements struct {
	CpuRequest    *string `json:"cpu_request,omitempty"`
	CpuLimit      *string `json:"cpu_limit,omitempty"`
	MemoryRequest *string `json:"memory_request,omitempty"`
	MemoryLimit   *string `json:"memory_limit,omitempty"`
}

ResourceRequirements optional resource requirements to run workers (blank for unbounded allocations)

func NewResourceRequirements

func NewResourceRequirements() *ResourceRequirements

NewResourceRequirements instantiates a new ResourceRequirements object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceRequirementsWithDefaults

func NewResourceRequirementsWithDefaults() *ResourceRequirements

NewResourceRequirementsWithDefaults instantiates a new ResourceRequirements object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceRequirements) GetCpuLimit

func (o *ResourceRequirements) GetCpuLimit() string

GetCpuLimit returns the CpuLimit field value if set, zero value otherwise.

func (*ResourceRequirements) GetCpuLimitOk

func (o *ResourceRequirements) GetCpuLimitOk() (*string, bool)

GetCpuLimitOk returns a tuple with the CpuLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceRequirements) GetCpuRequest

func (o *ResourceRequirements) GetCpuRequest() string

GetCpuRequest returns the CpuRequest field value if set, zero value otherwise.

func (*ResourceRequirements) GetCpuRequestOk

func (o *ResourceRequirements) GetCpuRequestOk() (*string, bool)

GetCpuRequestOk returns a tuple with the CpuRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceRequirements) GetMemoryLimit

func (o *ResourceRequirements) GetMemoryLimit() string

GetMemoryLimit returns the MemoryLimit field value if set, zero value otherwise.

func (*ResourceRequirements) GetMemoryLimitOk

func (o *ResourceRequirements) GetMemoryLimitOk() (*string, bool)

GetMemoryLimitOk returns a tuple with the MemoryLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceRequirements) GetMemoryRequest

func (o *ResourceRequirements) GetMemoryRequest() string

GetMemoryRequest returns the MemoryRequest field value if set, zero value otherwise.

func (*ResourceRequirements) GetMemoryRequestOk

func (o *ResourceRequirements) GetMemoryRequestOk() (*string, bool)

GetMemoryRequestOk returns a tuple with the MemoryRequest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceRequirements) HasCpuLimit

func (o *ResourceRequirements) HasCpuLimit() bool

HasCpuLimit returns a boolean if a field has been set.

func (*ResourceRequirements) HasCpuRequest

func (o *ResourceRequirements) HasCpuRequest() bool

HasCpuRequest returns a boolean if a field has been set.

func (*ResourceRequirements) HasMemoryLimit

func (o *ResourceRequirements) HasMemoryLimit() bool

HasMemoryLimit returns a boolean if a field has been set.

func (*ResourceRequirements) HasMemoryRequest

func (o *ResourceRequirements) HasMemoryRequest() bool

HasMemoryRequest returns a boolean if a field has been set.

func (ResourceRequirements) MarshalJSON

func (o ResourceRequirements) MarshalJSON() ([]byte, error)

func (*ResourceRequirements) SetCpuLimit

func (o *ResourceRequirements) SetCpuLimit(v string)

SetCpuLimit gets a reference to the given string and assigns it to the CpuLimit field.

func (*ResourceRequirements) SetCpuRequest

func (o *ResourceRequirements) SetCpuRequest(v string)

SetCpuRequest gets a reference to the given string and assigns it to the CpuRequest field.

func (*ResourceRequirements) SetMemoryLimit

func (o *ResourceRequirements) SetMemoryLimit(v string)

SetMemoryLimit gets a reference to the given string and assigns it to the MemoryLimit field.

func (*ResourceRequirements) SetMemoryRequest

func (o *ResourceRequirements) SetMemoryRequest(v string)

SetMemoryRequest gets a reference to the given string and assigns it to the MemoryRequest field.

type SchedulerApiService

type SchedulerApiService service

SchedulerApiService SchedulerApi service

func (*SchedulerApiService) ExecuteDestinationCheckConnection

func (a *SchedulerApiService) ExecuteDestinationCheckConnection(ctx context.Context) ApiExecuteDestinationCheckConnectionRequest

ExecuteDestinationCheckConnection Run check connection for a given destination configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExecuteDestinationCheckConnectionRequest

func (*SchedulerApiService) ExecuteDestinationCheckConnectionExecute

func (a *SchedulerApiService) ExecuteDestinationCheckConnectionExecute(r ApiExecuteDestinationCheckConnectionRequest) (*CheckConnectionRead, *http.Response, error)

Execute executes the request

@return CheckConnectionRead

func (*SchedulerApiService) ExecuteSourceCheckConnection

func (a *SchedulerApiService) ExecuteSourceCheckConnection(ctx context.Context) ApiExecuteSourceCheckConnectionRequest

ExecuteSourceCheckConnection Run check connection for a given source configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExecuteSourceCheckConnectionRequest

func (*SchedulerApiService) ExecuteSourceCheckConnectionExecute

func (a *SchedulerApiService) ExecuteSourceCheckConnectionExecute(r ApiExecuteSourceCheckConnectionRequest) (*CheckConnectionRead, *http.Response, error)

Execute executes the request

@return CheckConnectionRead

func (*SchedulerApiService) ExecuteSourceDiscoverSchema

func (a *SchedulerApiService) ExecuteSourceDiscoverSchema(ctx context.Context) ApiExecuteSourceDiscoverSchemaRequest

ExecuteSourceDiscoverSchema Run discover schema for a given source a source configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExecuteSourceDiscoverSchemaRequest

func (*SchedulerApiService) ExecuteSourceDiscoverSchemaExecute

Execute executes the request

@return SourceDiscoverSchemaRead

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 SetInstancewideDestinationOauthParamsRequestBody

type SetInstancewideDestinationOauthParamsRequestBody struct {
	DestinationDefinitionId string                            `json:"destinationDefinitionId"`
	Params                  map[string]map[string]interface{} `json:"params"`
}

SetInstancewideDestinationOauthParamsRequestBody struct for SetInstancewideDestinationOauthParamsRequestBody

func NewSetInstancewideDestinationOauthParamsRequestBody

func NewSetInstancewideDestinationOauthParamsRequestBody(destinationDefinitionId string, params map[string]map[string]interface{}) *SetInstancewideDestinationOauthParamsRequestBody

NewSetInstancewideDestinationOauthParamsRequestBody instantiates a new SetInstancewideDestinationOauthParamsRequestBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSetInstancewideDestinationOauthParamsRequestBodyWithDefaults

func NewSetInstancewideDestinationOauthParamsRequestBodyWithDefaults() *SetInstancewideDestinationOauthParamsRequestBody

NewSetInstancewideDestinationOauthParamsRequestBodyWithDefaults instantiates a new SetInstancewideDestinationOauthParamsRequestBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SetInstancewideDestinationOauthParamsRequestBody) GetDestinationDefinitionId

func (o *SetInstancewideDestinationOauthParamsRequestBody) GetDestinationDefinitionId() string

GetDestinationDefinitionId returns the DestinationDefinitionId field value

func (*SetInstancewideDestinationOauthParamsRequestBody) GetDestinationDefinitionIdOk

func (o *SetInstancewideDestinationOauthParamsRequestBody) GetDestinationDefinitionIdOk() (*string, bool)

GetDestinationDefinitionIdOk returns a tuple with the DestinationDefinitionId field value and a boolean to check if the value has been set.

func (*SetInstancewideDestinationOauthParamsRequestBody) GetParams

func (o *SetInstancewideDestinationOauthParamsRequestBody) GetParams() map[string]map[string]interface{}

GetParams returns the Params field value

func (*SetInstancewideDestinationOauthParamsRequestBody) GetParamsOk

func (o *SetInstancewideDestinationOauthParamsRequestBody) GetParamsOk() (map[string]map[string]interface{}, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (SetInstancewideDestinationOauthParamsRequestBody) MarshalJSON

func (*SetInstancewideDestinationOauthParamsRequestBody) SetDestinationDefinitionId

func (o *SetInstancewideDestinationOauthParamsRequestBody) SetDestinationDefinitionId(v string)

SetDestinationDefinitionId sets field value

func (*SetInstancewideDestinationOauthParamsRequestBody) SetParams

func (o *SetInstancewideDestinationOauthParamsRequestBody) SetParams(v map[string]map[string]interface{})

SetParams sets field value

type SetInstancewideSourceOauthParamsRequestBody

type SetInstancewideSourceOauthParamsRequestBody struct {
	SourceDefinitionId string                            `json:"sourceDefinitionId"`
	Params             map[string]map[string]interface{} `json:"params"`
}

SetInstancewideSourceOauthParamsRequestBody struct for SetInstancewideSourceOauthParamsRequestBody

func NewSetInstancewideSourceOauthParamsRequestBody

func NewSetInstancewideSourceOauthParamsRequestBody(sourceDefinitionId string, params map[string]map[string]interface{}) *SetInstancewideSourceOauthParamsRequestBody

NewSetInstancewideSourceOauthParamsRequestBody instantiates a new SetInstancewideSourceOauthParamsRequestBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSetInstancewideSourceOauthParamsRequestBodyWithDefaults

func NewSetInstancewideSourceOauthParamsRequestBodyWithDefaults() *SetInstancewideSourceOauthParamsRequestBody

NewSetInstancewideSourceOauthParamsRequestBodyWithDefaults instantiates a new SetInstancewideSourceOauthParamsRequestBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SetInstancewideSourceOauthParamsRequestBody) GetParams

func (o *SetInstancewideSourceOauthParamsRequestBody) GetParams() map[string]map[string]interface{}

GetParams returns the Params field value

func (*SetInstancewideSourceOauthParamsRequestBody) GetParamsOk

func (o *SetInstancewideSourceOauthParamsRequestBody) GetParamsOk() (map[string]map[string]interface{}, bool)

GetParamsOk returns a tuple with the Params field value and a boolean to check if the value has been set.

func (*SetInstancewideSourceOauthParamsRequestBody) GetSourceDefinitionId

func (o *SetInstancewideSourceOauthParamsRequestBody) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SetInstancewideSourceOauthParamsRequestBody) GetSourceDefinitionIdOk

func (o *SetInstancewideSourceOauthParamsRequestBody) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (SetInstancewideSourceOauthParamsRequestBody) MarshalJSON

func (*SetInstancewideSourceOauthParamsRequestBody) SetParams

func (o *SetInstancewideSourceOauthParamsRequestBody) SetParams(v map[string]map[string]interface{})

SetParams sets field value

func (*SetInstancewideSourceOauthParamsRequestBody) SetSourceDefinitionId

func (o *SetInstancewideSourceOauthParamsRequestBody) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

type SlackNotificationConfiguration

type SlackNotificationConfiguration struct {
	Webhook string `json:"webhook"`
}

SlackNotificationConfiguration struct for SlackNotificationConfiguration

func NewSlackNotificationConfiguration

func NewSlackNotificationConfiguration(webhook string) *SlackNotificationConfiguration

NewSlackNotificationConfiguration instantiates a new SlackNotificationConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSlackNotificationConfigurationWithDefaults

func NewSlackNotificationConfigurationWithDefaults() *SlackNotificationConfiguration

NewSlackNotificationConfigurationWithDefaults instantiates a new SlackNotificationConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SlackNotificationConfiguration) GetWebhook

func (o *SlackNotificationConfiguration) GetWebhook() string

GetWebhook returns the Webhook field value

func (*SlackNotificationConfiguration) GetWebhookOk

func (o *SlackNotificationConfiguration) GetWebhookOk() (*string, bool)

GetWebhookOk returns a tuple with the Webhook field value and a boolean to check if the value has been set.

func (SlackNotificationConfiguration) MarshalJSON

func (o SlackNotificationConfiguration) MarshalJSON() ([]byte, error)

func (*SlackNotificationConfiguration) SetWebhook

func (o *SlackNotificationConfiguration) SetWebhook(v string)

SetWebhook sets field value

type SlugRequestBody

type SlugRequestBody struct {
	Slug string `json:"slug"`
}

SlugRequestBody struct for SlugRequestBody

func NewSlugRequestBody

func NewSlugRequestBody(slug string) *SlugRequestBody

NewSlugRequestBody instantiates a new SlugRequestBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSlugRequestBodyWithDefaults

func NewSlugRequestBodyWithDefaults() *SlugRequestBody

NewSlugRequestBodyWithDefaults instantiates a new SlugRequestBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SlugRequestBody) GetSlug

func (o *SlugRequestBody) GetSlug() string

GetSlug returns the Slug field value

func (*SlugRequestBody) GetSlugOk

func (o *SlugRequestBody) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value and a boolean to check if the value has been set.

func (SlugRequestBody) MarshalJSON

func (o SlugRequestBody) MarshalJSON() ([]byte, error)

func (*SlugRequestBody) SetSlug

func (o *SlugRequestBody) SetSlug(v string)

SetSlug sets field value

type SourceApiService

type SourceApiService service

SourceApiService SourceApi service

func (*SourceApiService) CheckConnectionToSource

func (a *SourceApiService) CheckConnectionToSource(ctx context.Context) ApiCheckConnectionToSourceRequest

CheckConnectionToSource Check connection to the source

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCheckConnectionToSourceRequest

func (*SourceApiService) CheckConnectionToSourceExecute

func (a *SourceApiService) CheckConnectionToSourceExecute(r ApiCheckConnectionToSourceRequest) (*CheckConnectionRead, *http.Response, error)

Execute executes the request

@return CheckConnectionRead

func (*SourceApiService) CheckConnectionToSourceForUpdate

func (a *SourceApiService) CheckConnectionToSourceForUpdate(ctx context.Context) ApiCheckConnectionToSourceForUpdateRequest

CheckConnectionToSourceForUpdate Check connection for a proposed update to a source

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCheckConnectionToSourceForUpdateRequest

func (*SourceApiService) CheckConnectionToSourceForUpdateExecute

func (a *SourceApiService) CheckConnectionToSourceForUpdateExecute(r ApiCheckConnectionToSourceForUpdateRequest) (*CheckConnectionRead, *http.Response, error)

Execute executes the request

@return CheckConnectionRead

func (*SourceApiService) CreateSource

CreateSource Create a source

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateSourceRequest

func (*SourceApiService) CreateSourceExecute

func (a *SourceApiService) CreateSourceExecute(r ApiCreateSourceRequest) (*SourceRead, *http.Response, error)

Execute executes the request

@return SourceRead

func (*SourceApiService) DeleteSource

DeleteSource Delete a source

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteSourceRequest

func (*SourceApiService) DeleteSourceExecute

func (a *SourceApiService) DeleteSourceExecute(r ApiDeleteSourceRequest) (*http.Response, error)

Execute executes the request

func (*SourceApiService) DiscoverSchemaForSource

func (a *SourceApiService) DiscoverSchemaForSource(ctx context.Context) ApiDiscoverSchemaForSourceRequest

DiscoverSchemaForSource Discover the schema catalog of the source

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDiscoverSchemaForSourceRequest

func (*SourceApiService) DiscoverSchemaForSourceExecute

Execute executes the request

@return SourceDiscoverSchemaRead

func (*SourceApiService) GetSource

GetSource Get source

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSourceRequest

func (*SourceApiService) GetSourceExecute

func (a *SourceApiService) GetSourceExecute(r ApiGetSourceRequest) (*SourceRead, *http.Response, error)

Execute executes the request

@return SourceRead

func (*SourceApiService) ListSourcesForWorkspace

func (a *SourceApiService) ListSourcesForWorkspace(ctx context.Context) ApiListSourcesForWorkspaceRequest

ListSourcesForWorkspace List sources for workspace

List sources for workspace. Does not return deleted sources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListSourcesForWorkspaceRequest

func (*SourceApiService) ListSourcesForWorkspaceExecute

func (a *SourceApiService) ListSourcesForWorkspaceExecute(r ApiListSourcesForWorkspaceRequest) (*SourceReadList, *http.Response, error)

Execute executes the request

@return SourceReadList

func (*SourceApiService) SearchSources

SearchSources Search sources

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchSourcesRequest

func (*SourceApiService) SearchSourcesExecute

func (a *SourceApiService) SearchSourcesExecute(r ApiSearchSourcesRequest) (*SourceReadList, *http.Response, error)

Execute executes the request

@return SourceReadList

func (*SourceApiService) UpdateSource

UpdateSource Update a source

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateSourceRequest

func (*SourceApiService) UpdateSourceExecute

func (a *SourceApiService) UpdateSourceExecute(r ApiUpdateSourceRequest) (*SourceRead, *http.Response, error)

Execute executes the request

@return SourceRead

type SourceCoreConfig

type SourceCoreConfig struct {
	SourceDefinitionId string `json:"sourceDefinitionId"`
	// The values required to configure the source. The schema for this must match the schema return by source_definition_specifications/get for the source.
	ConnectionConfiguration interface{} `json:"connectionConfiguration"`
}

SourceCoreConfig struct for SourceCoreConfig

func NewSourceCoreConfig

func NewSourceCoreConfig(sourceDefinitionId string, connectionConfiguration interface{}) *SourceCoreConfig

NewSourceCoreConfig instantiates a new SourceCoreConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceCoreConfigWithDefaults

func NewSourceCoreConfigWithDefaults() *SourceCoreConfig

NewSourceCoreConfigWithDefaults instantiates a new SourceCoreConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceCoreConfig) GetConnectionConfiguration

func (o *SourceCoreConfig) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SourceCoreConfig) GetConnectionConfigurationOk

func (o *SourceCoreConfig) GetConnectionConfigurationOk() (*interface{}, bool)

GetConnectionConfigurationOk returns a tuple with the ConnectionConfiguration field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SourceCoreConfig) GetSourceDefinitionId

func (o *SourceCoreConfig) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SourceCoreConfig) GetSourceDefinitionIdOk

func (o *SourceCoreConfig) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (SourceCoreConfig) MarshalJSON

func (o SourceCoreConfig) MarshalJSON() ([]byte, error)

func (*SourceCoreConfig) SetConnectionConfiguration

func (o *SourceCoreConfig) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets field value

func (*SourceCoreConfig) SetSourceDefinitionId

func (o *SourceCoreConfig) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

type SourceCreate

type SourceCreate struct {
	SourceDefinitionId string `json:"sourceDefinitionId"`
	// The values required to configure the source. The schema for this must match the schema return by source_definition_specifications/get for the source.
	ConnectionConfiguration interface{} `json:"connectionConfiguration"`
	WorkspaceId             string      `json:"workspaceId"`
	Name                    string      `json:"name"`
}

SourceCreate struct for SourceCreate

func NewSourceCreate

func NewSourceCreate(sourceDefinitionId string, connectionConfiguration interface{}, workspaceId string, name string) *SourceCreate

NewSourceCreate instantiates a new SourceCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceCreateWithDefaults

func NewSourceCreateWithDefaults() *SourceCreate

NewSourceCreateWithDefaults instantiates a new SourceCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceCreate) GetConnectionConfiguration

func (o *SourceCreate) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SourceCreate) GetConnectionConfigurationOk

func (o *SourceCreate) GetConnectionConfigurationOk() (*interface{}, bool)

GetConnectionConfigurationOk returns a tuple with the ConnectionConfiguration field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SourceCreate) GetName

func (o *SourceCreate) GetName() string

GetName returns the Name field value

func (*SourceCreate) GetNameOk

func (o *SourceCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SourceCreate) GetSourceDefinitionId

func (o *SourceCreate) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SourceCreate) GetSourceDefinitionIdOk

func (o *SourceCreate) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (*SourceCreate) GetWorkspaceId

func (o *SourceCreate) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*SourceCreate) GetWorkspaceIdOk

func (o *SourceCreate) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (SourceCreate) MarshalJSON

func (o SourceCreate) MarshalJSON() ([]byte, error)

func (*SourceCreate) SetConnectionConfiguration

func (o *SourceCreate) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets field value

func (*SourceCreate) SetName

func (o *SourceCreate) SetName(v string)

SetName sets field value

func (*SourceCreate) SetSourceDefinitionId

func (o *SourceCreate) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

func (*SourceCreate) SetWorkspaceId

func (o *SourceCreate) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type SourceDefinitionApiService

type SourceDefinitionApiService service

SourceDefinitionApiService SourceDefinitionApi service

func (*SourceDefinitionApiService) CreateSourceDefinition

CreateSourceDefinition Creates a sourceDefinition

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateSourceDefinitionRequest

func (*SourceDefinitionApiService) CreateSourceDefinitionExecute

Execute executes the request

@return SourceDefinitionRead

func (*SourceDefinitionApiService) DeleteSourceDefinition

DeleteSourceDefinition Delete a source definition

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteSourceDefinitionRequest

func (*SourceDefinitionApiService) DeleteSourceDefinitionExecute

func (a *SourceDefinitionApiService) DeleteSourceDefinitionExecute(r ApiDeleteSourceDefinitionRequest) (*http.Response, error)

Execute executes the request

func (*SourceDefinitionApiService) GetSourceDefinition

GetSourceDefinition Get source

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSourceDefinitionRequest

func (*SourceDefinitionApiService) GetSourceDefinitionExecute

Execute executes the request

@return SourceDefinitionRead

func (*SourceDefinitionApiService) ListLatestSourceDefinitions

ListLatestSourceDefinitions List the latest sourceDefinitions Airbyte supports

Guaranteed to retrieve the latest information on supported sources.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListLatestSourceDefinitionsRequest

func (*SourceDefinitionApiService) ListLatestSourceDefinitionsExecute

Execute executes the request

@return SourceDefinitionReadList

func (*SourceDefinitionApiService) ListSourceDefinitions

ListSourceDefinitions List all the sourceDefinitions the current Airbyte deployment is configured to use

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListSourceDefinitionsRequest

func (*SourceDefinitionApiService) ListSourceDefinitionsExecute

Execute executes the request

@return SourceDefinitionReadList

func (*SourceDefinitionApiService) UpdateSourceDefinition

UpdateSourceDefinition Update a sourceDefinition

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateSourceDefinitionRequest

func (*SourceDefinitionApiService) UpdateSourceDefinitionExecute

Execute executes the request

@return SourceDefinitionRead

type SourceDefinitionCreate

type SourceDefinitionCreate struct {
	Name             string  `json:"name"`
	DockerRepository string  `json:"dockerRepository"`
	DockerImageTag   string  `json:"dockerImageTag"`
	DocumentationUrl string  `json:"documentationUrl"`
	Icon             *string `json:"icon,omitempty"`
}

SourceDefinitionCreate struct for SourceDefinitionCreate

func NewSourceDefinitionCreate

func NewSourceDefinitionCreate(name string, dockerRepository string, dockerImageTag string, documentationUrl string) *SourceDefinitionCreate

NewSourceDefinitionCreate instantiates a new SourceDefinitionCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceDefinitionCreateWithDefaults

func NewSourceDefinitionCreateWithDefaults() *SourceDefinitionCreate

NewSourceDefinitionCreateWithDefaults instantiates a new SourceDefinitionCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceDefinitionCreate) GetDockerImageTag

func (o *SourceDefinitionCreate) GetDockerImageTag() string

GetDockerImageTag returns the DockerImageTag field value

func (*SourceDefinitionCreate) GetDockerImageTagOk

func (o *SourceDefinitionCreate) GetDockerImageTagOk() (*string, bool)

GetDockerImageTagOk returns a tuple with the DockerImageTag field value and a boolean to check if the value has been set.

func (*SourceDefinitionCreate) GetDockerRepository

func (o *SourceDefinitionCreate) GetDockerRepository() string

GetDockerRepository returns the DockerRepository field value

func (*SourceDefinitionCreate) GetDockerRepositoryOk

func (o *SourceDefinitionCreate) GetDockerRepositoryOk() (*string, bool)

GetDockerRepositoryOk returns a tuple with the DockerRepository field value and a boolean to check if the value has been set.

func (*SourceDefinitionCreate) GetDocumentationUrl

func (o *SourceDefinitionCreate) GetDocumentationUrl() string

GetDocumentationUrl returns the DocumentationUrl field value

func (*SourceDefinitionCreate) GetDocumentationUrlOk

func (o *SourceDefinitionCreate) GetDocumentationUrlOk() (*string, bool)

GetDocumentationUrlOk returns a tuple with the DocumentationUrl field value and a boolean to check if the value has been set.

func (*SourceDefinitionCreate) GetIcon

func (o *SourceDefinitionCreate) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*SourceDefinitionCreate) GetIconOk

func (o *SourceDefinitionCreate) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionCreate) GetName

func (o *SourceDefinitionCreate) GetName() string

GetName returns the Name field value

func (*SourceDefinitionCreate) GetNameOk

func (o *SourceDefinitionCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SourceDefinitionCreate) HasIcon

func (o *SourceDefinitionCreate) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (SourceDefinitionCreate) MarshalJSON

func (o SourceDefinitionCreate) MarshalJSON() ([]byte, error)

func (*SourceDefinitionCreate) SetDockerImageTag

func (o *SourceDefinitionCreate) SetDockerImageTag(v string)

SetDockerImageTag sets field value

func (*SourceDefinitionCreate) SetDockerRepository

func (o *SourceDefinitionCreate) SetDockerRepository(v string)

SetDockerRepository sets field value

func (*SourceDefinitionCreate) SetDocumentationUrl

func (o *SourceDefinitionCreate) SetDocumentationUrl(v string)

SetDocumentationUrl sets field value

func (*SourceDefinitionCreate) SetIcon

func (o *SourceDefinitionCreate) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*SourceDefinitionCreate) SetName

func (o *SourceDefinitionCreate) SetName(v string)

SetName sets field value

type SourceDefinitionIdRequestBody

type SourceDefinitionIdRequestBody struct {
	SourceDefinitionId string `json:"sourceDefinitionId"`
}

SourceDefinitionIdRequestBody struct for SourceDefinitionIdRequestBody

func NewSourceDefinitionIdRequestBody

func NewSourceDefinitionIdRequestBody(sourceDefinitionId string) *SourceDefinitionIdRequestBody

NewSourceDefinitionIdRequestBody instantiates a new SourceDefinitionIdRequestBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceDefinitionIdRequestBodyWithDefaults

func NewSourceDefinitionIdRequestBodyWithDefaults() *SourceDefinitionIdRequestBody

NewSourceDefinitionIdRequestBodyWithDefaults instantiates a new SourceDefinitionIdRequestBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceDefinitionIdRequestBody) GetSourceDefinitionId

func (o *SourceDefinitionIdRequestBody) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SourceDefinitionIdRequestBody) GetSourceDefinitionIdOk

func (o *SourceDefinitionIdRequestBody) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (SourceDefinitionIdRequestBody) MarshalJSON

func (o SourceDefinitionIdRequestBody) MarshalJSON() ([]byte, error)

func (*SourceDefinitionIdRequestBody) SetSourceDefinitionId

func (o *SourceDefinitionIdRequestBody) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

type SourceDefinitionRead

type SourceDefinitionRead struct {
	SourceDefinitionId string        `json:"sourceDefinitionId"`
	Name               string        `json:"name"`
	DockerRepository   string        `json:"dockerRepository"`
	DockerImageTag     string        `json:"dockerImageTag"`
	DocumentationUrl   *string       `json:"documentationUrl,omitempty"`
	Icon               *string       `json:"icon,omitempty"`
	ReleaseStage       *ReleaseStage `json:"releaseStage,omitempty"`
	// The date when this connector was first released, in yyyy-mm-dd format.
	ReleaseDate *string `json:"releaseDate,omitempty"`
}

SourceDefinitionRead struct for SourceDefinitionRead

func NewSourceDefinitionRead

func NewSourceDefinitionRead(sourceDefinitionId string, name string, dockerRepository string, dockerImageTag string) *SourceDefinitionRead

NewSourceDefinitionRead instantiates a new SourceDefinitionRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceDefinitionReadWithDefaults

func NewSourceDefinitionReadWithDefaults() *SourceDefinitionRead

NewSourceDefinitionReadWithDefaults instantiates a new SourceDefinitionRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceDefinitionRead) GetDockerImageTag

func (o *SourceDefinitionRead) GetDockerImageTag() string

GetDockerImageTag returns the DockerImageTag field value

func (*SourceDefinitionRead) GetDockerImageTagOk

func (o *SourceDefinitionRead) GetDockerImageTagOk() (*string, bool)

GetDockerImageTagOk returns a tuple with the DockerImageTag field value and a boolean to check if the value has been set.

func (*SourceDefinitionRead) GetDockerRepository

func (o *SourceDefinitionRead) GetDockerRepository() string

GetDockerRepository returns the DockerRepository field value

func (*SourceDefinitionRead) GetDockerRepositoryOk

func (o *SourceDefinitionRead) GetDockerRepositoryOk() (*string, bool)

GetDockerRepositoryOk returns a tuple with the DockerRepository field value and a boolean to check if the value has been set.

func (*SourceDefinitionRead) GetDocumentationUrl

func (o *SourceDefinitionRead) GetDocumentationUrl() string

GetDocumentationUrl returns the DocumentationUrl field value if set, zero value otherwise.

func (*SourceDefinitionRead) GetDocumentationUrlOk

func (o *SourceDefinitionRead) GetDocumentationUrlOk() (*string, bool)

GetDocumentationUrlOk returns a tuple with the DocumentationUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionRead) GetIcon

func (o *SourceDefinitionRead) GetIcon() string

GetIcon returns the Icon field value if set, zero value otherwise.

func (*SourceDefinitionRead) GetIconOk

func (o *SourceDefinitionRead) GetIconOk() (*string, bool)

GetIconOk returns a tuple with the Icon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionRead) GetName

func (o *SourceDefinitionRead) GetName() string

GetName returns the Name field value

func (*SourceDefinitionRead) GetNameOk

func (o *SourceDefinitionRead) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SourceDefinitionRead) GetReleaseDate

func (o *SourceDefinitionRead) GetReleaseDate() string

GetReleaseDate returns the ReleaseDate field value if set, zero value otherwise.

func (*SourceDefinitionRead) GetReleaseDateOk

func (o *SourceDefinitionRead) GetReleaseDateOk() (*string, bool)

GetReleaseDateOk returns a tuple with the ReleaseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionRead) GetReleaseStage

func (o *SourceDefinitionRead) GetReleaseStage() ReleaseStage

GetReleaseStage returns the ReleaseStage field value if set, zero value otherwise.

func (*SourceDefinitionRead) GetReleaseStageOk

func (o *SourceDefinitionRead) GetReleaseStageOk() (*ReleaseStage, bool)

GetReleaseStageOk returns a tuple with the ReleaseStage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionRead) GetSourceDefinitionId

func (o *SourceDefinitionRead) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SourceDefinitionRead) GetSourceDefinitionIdOk

func (o *SourceDefinitionRead) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (*SourceDefinitionRead) HasDocumentationUrl

func (o *SourceDefinitionRead) HasDocumentationUrl() bool

HasDocumentationUrl returns a boolean if a field has been set.

func (*SourceDefinitionRead) HasIcon

func (o *SourceDefinitionRead) HasIcon() bool

HasIcon returns a boolean if a field has been set.

func (*SourceDefinitionRead) HasReleaseDate

func (o *SourceDefinitionRead) HasReleaseDate() bool

HasReleaseDate returns a boolean if a field has been set.

func (*SourceDefinitionRead) HasReleaseStage

func (o *SourceDefinitionRead) HasReleaseStage() bool

HasReleaseStage returns a boolean if a field has been set.

func (SourceDefinitionRead) MarshalJSON

func (o SourceDefinitionRead) MarshalJSON() ([]byte, error)

func (*SourceDefinitionRead) SetDockerImageTag

func (o *SourceDefinitionRead) SetDockerImageTag(v string)

SetDockerImageTag sets field value

func (*SourceDefinitionRead) SetDockerRepository

func (o *SourceDefinitionRead) SetDockerRepository(v string)

SetDockerRepository sets field value

func (*SourceDefinitionRead) SetDocumentationUrl

func (o *SourceDefinitionRead) SetDocumentationUrl(v string)

SetDocumentationUrl gets a reference to the given string and assigns it to the DocumentationUrl field.

func (*SourceDefinitionRead) SetIcon

func (o *SourceDefinitionRead) SetIcon(v string)

SetIcon gets a reference to the given string and assigns it to the Icon field.

func (*SourceDefinitionRead) SetName

func (o *SourceDefinitionRead) SetName(v string)

SetName sets field value

func (*SourceDefinitionRead) SetReleaseDate

func (o *SourceDefinitionRead) SetReleaseDate(v string)

SetReleaseDate gets a reference to the given string and assigns it to the ReleaseDate field.

func (*SourceDefinitionRead) SetReleaseStage

func (o *SourceDefinitionRead) SetReleaseStage(v ReleaseStage)

SetReleaseStage gets a reference to the given ReleaseStage and assigns it to the ReleaseStage field.

func (*SourceDefinitionRead) SetSourceDefinitionId

func (o *SourceDefinitionRead) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

type SourceDefinitionReadList

type SourceDefinitionReadList struct {
	SourceDefinitions []SourceDefinitionRead `json:"sourceDefinitions"`
}

SourceDefinitionReadList struct for SourceDefinitionReadList

func NewSourceDefinitionReadList

func NewSourceDefinitionReadList(sourceDefinitions []SourceDefinitionRead) *SourceDefinitionReadList

NewSourceDefinitionReadList instantiates a new SourceDefinitionReadList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceDefinitionReadListWithDefaults

func NewSourceDefinitionReadListWithDefaults() *SourceDefinitionReadList

NewSourceDefinitionReadListWithDefaults instantiates a new SourceDefinitionReadList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceDefinitionReadList) GetSourceDefinitions

func (o *SourceDefinitionReadList) GetSourceDefinitions() []SourceDefinitionRead

GetSourceDefinitions returns the SourceDefinitions field value

func (*SourceDefinitionReadList) GetSourceDefinitionsOk

func (o *SourceDefinitionReadList) GetSourceDefinitionsOk() ([]SourceDefinitionRead, bool)

GetSourceDefinitionsOk returns a tuple with the SourceDefinitions field value and a boolean to check if the value has been set.

func (SourceDefinitionReadList) MarshalJSON

func (o SourceDefinitionReadList) MarshalJSON() ([]byte, error)

func (*SourceDefinitionReadList) SetSourceDefinitions

func (o *SourceDefinitionReadList) SetSourceDefinitions(v []SourceDefinitionRead)

SetSourceDefinitions sets field value

type SourceDefinitionSpecificationApiService

type SourceDefinitionSpecificationApiService service

SourceDefinitionSpecificationApiService SourceDefinitionSpecificationApi service

func (*SourceDefinitionSpecificationApiService) GetSourceDefinitionSpecification

GetSourceDefinitionSpecification Get specification for a SourceDefinition.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSourceDefinitionSpecificationRequest

func (*SourceDefinitionSpecificationApiService) GetSourceDefinitionSpecificationExecute

Execute executes the request

@return SourceDefinitionSpecificationRead

type SourceDefinitionSpecificationRead

type SourceDefinitionSpecificationRead struct {
	SourceDefinitionId string  `json:"sourceDefinitionId"`
	DocumentationUrl   *string `json:"documentationUrl,omitempty"`
	// The specification for what values are required to configure the sourceDefinition.
	ConnectionSpecification map[string]interface{} `json:"connectionSpecification,omitempty"`
	AuthSpecification       *AuthSpecification     `json:"authSpecification,omitempty"`
	AdvancedAuth            *AdvancedAuth          `json:"advancedAuth,omitempty"`
	JobInfo                 SynchronousJobRead     `json:"jobInfo"`
}

SourceDefinitionSpecificationRead struct for SourceDefinitionSpecificationRead

func NewSourceDefinitionSpecificationRead

func NewSourceDefinitionSpecificationRead(sourceDefinitionId string, jobInfo SynchronousJobRead) *SourceDefinitionSpecificationRead

NewSourceDefinitionSpecificationRead instantiates a new SourceDefinitionSpecificationRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceDefinitionSpecificationReadWithDefaults

func NewSourceDefinitionSpecificationReadWithDefaults() *SourceDefinitionSpecificationRead

NewSourceDefinitionSpecificationReadWithDefaults instantiates a new SourceDefinitionSpecificationRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceDefinitionSpecificationRead) GetAdvancedAuth

func (o *SourceDefinitionSpecificationRead) GetAdvancedAuth() AdvancedAuth

GetAdvancedAuth returns the AdvancedAuth field value if set, zero value otherwise.

func (*SourceDefinitionSpecificationRead) GetAdvancedAuthOk

func (o *SourceDefinitionSpecificationRead) GetAdvancedAuthOk() (*AdvancedAuth, bool)

GetAdvancedAuthOk returns a tuple with the AdvancedAuth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionSpecificationRead) GetAuthSpecification

func (o *SourceDefinitionSpecificationRead) GetAuthSpecification() AuthSpecification

GetAuthSpecification returns the AuthSpecification field value if set, zero value otherwise.

func (*SourceDefinitionSpecificationRead) GetAuthSpecificationOk

func (o *SourceDefinitionSpecificationRead) GetAuthSpecificationOk() (*AuthSpecification, bool)

GetAuthSpecificationOk returns a tuple with the AuthSpecification field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionSpecificationRead) GetConnectionSpecification

func (o *SourceDefinitionSpecificationRead) GetConnectionSpecification() map[string]interface{}

GetConnectionSpecification returns the ConnectionSpecification field value if set, zero value otherwise.

func (*SourceDefinitionSpecificationRead) GetConnectionSpecificationOk

func (o *SourceDefinitionSpecificationRead) GetConnectionSpecificationOk() (map[string]interface{}, bool)

GetConnectionSpecificationOk returns a tuple with the ConnectionSpecification field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionSpecificationRead) GetDocumentationUrl

func (o *SourceDefinitionSpecificationRead) GetDocumentationUrl() string

GetDocumentationUrl returns the DocumentationUrl field value if set, zero value otherwise.

func (*SourceDefinitionSpecificationRead) GetDocumentationUrlOk

func (o *SourceDefinitionSpecificationRead) GetDocumentationUrlOk() (*string, bool)

GetDocumentationUrlOk returns a tuple with the DocumentationUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDefinitionSpecificationRead) GetJobInfo

GetJobInfo returns the JobInfo field value

func (*SourceDefinitionSpecificationRead) GetJobInfoOk

GetJobInfoOk returns a tuple with the JobInfo field value and a boolean to check if the value has been set.

func (*SourceDefinitionSpecificationRead) GetSourceDefinitionId

func (o *SourceDefinitionSpecificationRead) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SourceDefinitionSpecificationRead) GetSourceDefinitionIdOk

func (o *SourceDefinitionSpecificationRead) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (*SourceDefinitionSpecificationRead) HasAdvancedAuth

func (o *SourceDefinitionSpecificationRead) HasAdvancedAuth() bool

HasAdvancedAuth returns a boolean if a field has been set.

func (*SourceDefinitionSpecificationRead) HasAuthSpecification

func (o *SourceDefinitionSpecificationRead) HasAuthSpecification() bool

HasAuthSpecification returns a boolean if a field has been set.

func (*SourceDefinitionSpecificationRead) HasConnectionSpecification

func (o *SourceDefinitionSpecificationRead) HasConnectionSpecification() bool

HasConnectionSpecification returns a boolean if a field has been set.

func (*SourceDefinitionSpecificationRead) HasDocumentationUrl

func (o *SourceDefinitionSpecificationRead) HasDocumentationUrl() bool

HasDocumentationUrl returns a boolean if a field has been set.

func (SourceDefinitionSpecificationRead) MarshalJSON

func (o SourceDefinitionSpecificationRead) MarshalJSON() ([]byte, error)

func (*SourceDefinitionSpecificationRead) SetAdvancedAuth

func (o *SourceDefinitionSpecificationRead) SetAdvancedAuth(v AdvancedAuth)

SetAdvancedAuth gets a reference to the given AdvancedAuth and assigns it to the AdvancedAuth field.

func (*SourceDefinitionSpecificationRead) SetAuthSpecification

func (o *SourceDefinitionSpecificationRead) SetAuthSpecification(v AuthSpecification)

SetAuthSpecification gets a reference to the given AuthSpecification and assigns it to the AuthSpecification field.

func (*SourceDefinitionSpecificationRead) SetConnectionSpecification

func (o *SourceDefinitionSpecificationRead) SetConnectionSpecification(v map[string]interface{})

SetConnectionSpecification gets a reference to the given map[string]interface{} and assigns it to the ConnectionSpecification field.

func (*SourceDefinitionSpecificationRead) SetDocumentationUrl

func (o *SourceDefinitionSpecificationRead) SetDocumentationUrl(v string)

SetDocumentationUrl gets a reference to the given string and assigns it to the DocumentationUrl field.

func (*SourceDefinitionSpecificationRead) SetJobInfo

SetJobInfo sets field value

func (*SourceDefinitionSpecificationRead) SetSourceDefinitionId

func (o *SourceDefinitionSpecificationRead) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

type SourceDefinitionUpdate

type SourceDefinitionUpdate struct {
	SourceDefinitionId string `json:"sourceDefinitionId"`
	DockerImageTag     string `json:"dockerImageTag"`
}

SourceDefinitionUpdate Update the SourceDefinition. Currently, the only allowed attribute to update is the default docker image version.

func NewSourceDefinitionUpdate

func NewSourceDefinitionUpdate(sourceDefinitionId string, dockerImageTag string) *SourceDefinitionUpdate

NewSourceDefinitionUpdate instantiates a new SourceDefinitionUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceDefinitionUpdateWithDefaults

func NewSourceDefinitionUpdateWithDefaults() *SourceDefinitionUpdate

NewSourceDefinitionUpdateWithDefaults instantiates a new SourceDefinitionUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceDefinitionUpdate) GetDockerImageTag

func (o *SourceDefinitionUpdate) GetDockerImageTag() string

GetDockerImageTag returns the DockerImageTag field value

func (*SourceDefinitionUpdate) GetDockerImageTagOk

func (o *SourceDefinitionUpdate) GetDockerImageTagOk() (*string, bool)

GetDockerImageTagOk returns a tuple with the DockerImageTag field value and a boolean to check if the value has been set.

func (*SourceDefinitionUpdate) GetSourceDefinitionId

func (o *SourceDefinitionUpdate) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SourceDefinitionUpdate) GetSourceDefinitionIdOk

func (o *SourceDefinitionUpdate) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (SourceDefinitionUpdate) MarshalJSON

func (o SourceDefinitionUpdate) MarshalJSON() ([]byte, error)

func (*SourceDefinitionUpdate) SetDockerImageTag

func (o *SourceDefinitionUpdate) SetDockerImageTag(v string)

SetDockerImageTag sets field value

func (*SourceDefinitionUpdate) SetSourceDefinitionId

func (o *SourceDefinitionUpdate) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

type SourceDiscoverSchemaRead

type SourceDiscoverSchemaRead struct {
	Catalog *AirbyteCatalog    `json:"catalog,omitempty"`
	JobInfo SynchronousJobRead `json:"jobInfo"`
}

SourceDiscoverSchemaRead Returns the results of a discover catalog job. If the job was not successful, the catalog field will not be present. jobInfo will aways be present and its status be used to determine if the job was successful or not.

func NewSourceDiscoverSchemaRead

func NewSourceDiscoverSchemaRead(jobInfo SynchronousJobRead) *SourceDiscoverSchemaRead

NewSourceDiscoverSchemaRead instantiates a new SourceDiscoverSchemaRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceDiscoverSchemaReadWithDefaults

func NewSourceDiscoverSchemaReadWithDefaults() *SourceDiscoverSchemaRead

NewSourceDiscoverSchemaReadWithDefaults instantiates a new SourceDiscoverSchemaRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceDiscoverSchemaRead) GetCatalog

func (o *SourceDiscoverSchemaRead) GetCatalog() AirbyteCatalog

GetCatalog returns the Catalog field value if set, zero value otherwise.

func (*SourceDiscoverSchemaRead) GetCatalogOk

func (o *SourceDiscoverSchemaRead) GetCatalogOk() (*AirbyteCatalog, bool)

GetCatalogOk returns a tuple with the Catalog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceDiscoverSchemaRead) GetJobInfo

GetJobInfo returns the JobInfo field value

func (*SourceDiscoverSchemaRead) GetJobInfoOk

func (o *SourceDiscoverSchemaRead) GetJobInfoOk() (*SynchronousJobRead, bool)

GetJobInfoOk returns a tuple with the JobInfo field value and a boolean to check if the value has been set.

func (*SourceDiscoverSchemaRead) HasCatalog

func (o *SourceDiscoverSchemaRead) HasCatalog() bool

HasCatalog returns a boolean if a field has been set.

func (SourceDiscoverSchemaRead) MarshalJSON

func (o SourceDiscoverSchemaRead) MarshalJSON() ([]byte, error)

func (*SourceDiscoverSchemaRead) SetCatalog

func (o *SourceDiscoverSchemaRead) SetCatalog(v AirbyteCatalog)

SetCatalog gets a reference to the given AirbyteCatalog and assigns it to the Catalog field.

func (*SourceDiscoverSchemaRead) SetJobInfo

SetJobInfo sets field value

type SourceIdRequestBody

type SourceIdRequestBody struct {
	SourceId string `json:"sourceId"`
}

SourceIdRequestBody struct for SourceIdRequestBody

func NewSourceIdRequestBody

func NewSourceIdRequestBody(sourceId string) *SourceIdRequestBody

NewSourceIdRequestBody instantiates a new SourceIdRequestBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceIdRequestBodyWithDefaults

func NewSourceIdRequestBodyWithDefaults() *SourceIdRequestBody

NewSourceIdRequestBodyWithDefaults instantiates a new SourceIdRequestBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceIdRequestBody) GetSourceId

func (o *SourceIdRequestBody) GetSourceId() string

GetSourceId returns the SourceId field value

func (*SourceIdRequestBody) GetSourceIdOk

func (o *SourceIdRequestBody) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value and a boolean to check if the value has been set.

func (SourceIdRequestBody) MarshalJSON

func (o SourceIdRequestBody) MarshalJSON() ([]byte, error)

func (*SourceIdRequestBody) SetSourceId

func (o *SourceIdRequestBody) SetSourceId(v string)

SetSourceId sets field value

type SourceOauthConsentRequest

type SourceOauthConsentRequest struct {
	SourceDefinitionId string `json:"sourceDefinitionId"`
	WorkspaceId        string `json:"workspaceId"`
	// The url to redirect to after getting the user consent
	RedirectUrl string `json:"redirectUrl"`
	// OAuth specific blob.
	OAuthInputConfiguration interface{} `json:"oAuthInputConfiguration,omitempty"`
}

SourceOauthConsentRequest struct for SourceOauthConsentRequest

func NewSourceOauthConsentRequest

func NewSourceOauthConsentRequest(sourceDefinitionId string, workspaceId string, redirectUrl string) *SourceOauthConsentRequest

NewSourceOauthConsentRequest instantiates a new SourceOauthConsentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceOauthConsentRequestWithDefaults

func NewSourceOauthConsentRequestWithDefaults() *SourceOauthConsentRequest

NewSourceOauthConsentRequestWithDefaults instantiates a new SourceOauthConsentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceOauthConsentRequest) GetOAuthInputConfiguration

func (o *SourceOauthConsentRequest) GetOAuthInputConfiguration() interface{}

GetOAuthInputConfiguration returns the OAuthInputConfiguration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SourceOauthConsentRequest) GetOAuthInputConfigurationOk

func (o *SourceOauthConsentRequest) GetOAuthInputConfigurationOk() (*interface{}, bool)

GetOAuthInputConfigurationOk returns a tuple with the OAuthInputConfiguration field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SourceOauthConsentRequest) GetRedirectUrl

func (o *SourceOauthConsentRequest) GetRedirectUrl() string

GetRedirectUrl returns the RedirectUrl field value

func (*SourceOauthConsentRequest) GetRedirectUrlOk

func (o *SourceOauthConsentRequest) GetRedirectUrlOk() (*string, bool)

GetRedirectUrlOk returns a tuple with the RedirectUrl field value and a boolean to check if the value has been set.

func (*SourceOauthConsentRequest) GetSourceDefinitionId

func (o *SourceOauthConsentRequest) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SourceOauthConsentRequest) GetSourceDefinitionIdOk

func (o *SourceOauthConsentRequest) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (*SourceOauthConsentRequest) GetWorkspaceId

func (o *SourceOauthConsentRequest) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*SourceOauthConsentRequest) GetWorkspaceIdOk

func (o *SourceOauthConsentRequest) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*SourceOauthConsentRequest) HasOAuthInputConfiguration

func (o *SourceOauthConsentRequest) HasOAuthInputConfiguration() bool

HasOAuthInputConfiguration returns a boolean if a field has been set.

func (SourceOauthConsentRequest) MarshalJSON

func (o SourceOauthConsentRequest) MarshalJSON() ([]byte, error)

func (*SourceOauthConsentRequest) SetOAuthInputConfiguration

func (o *SourceOauthConsentRequest) SetOAuthInputConfiguration(v interface{})

SetOAuthInputConfiguration gets a reference to the given interface{} and assigns it to the OAuthInputConfiguration field.

func (*SourceOauthConsentRequest) SetRedirectUrl

func (o *SourceOauthConsentRequest) SetRedirectUrl(v string)

SetRedirectUrl sets field value

func (*SourceOauthConsentRequest) SetSourceDefinitionId

func (o *SourceOauthConsentRequest) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

func (*SourceOauthConsentRequest) SetWorkspaceId

func (o *SourceOauthConsentRequest) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type SourceRead

type SourceRead struct {
	SourceDefinitionId string `json:"sourceDefinitionId"`
	SourceId           string `json:"sourceId"`
	WorkspaceId        string `json:"workspaceId"`
	// The values required to configure the source. The schema for this must match the schema return by source_definition_specifications/get for the source.
	ConnectionConfiguration interface{} `json:"connectionConfiguration"`
	Name                    string      `json:"name"`
	SourceName              string      `json:"sourceName"`
}

SourceRead struct for SourceRead

func NewSourceRead

func NewSourceRead(sourceDefinitionId string, sourceId string, workspaceId string, connectionConfiguration interface{}, name string, sourceName string) *SourceRead

NewSourceRead instantiates a new SourceRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceReadWithDefaults

func NewSourceReadWithDefaults() *SourceRead

NewSourceReadWithDefaults instantiates a new SourceRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceRead) GetConnectionConfiguration

func (o *SourceRead) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SourceRead) GetConnectionConfigurationOk

func (o *SourceRead) GetConnectionConfigurationOk() (*interface{}, bool)

GetConnectionConfigurationOk returns a tuple with the ConnectionConfiguration field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SourceRead) GetName

func (o *SourceRead) GetName() string

GetName returns the Name field value

func (*SourceRead) GetNameOk

func (o *SourceRead) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SourceRead) GetSourceDefinitionId

func (o *SourceRead) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value

func (*SourceRead) GetSourceDefinitionIdOk

func (o *SourceRead) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value and a boolean to check if the value has been set.

func (*SourceRead) GetSourceId

func (o *SourceRead) GetSourceId() string

GetSourceId returns the SourceId field value

func (*SourceRead) GetSourceIdOk

func (o *SourceRead) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value and a boolean to check if the value has been set.

func (*SourceRead) GetSourceName

func (o *SourceRead) GetSourceName() string

GetSourceName returns the SourceName field value

func (*SourceRead) GetSourceNameOk

func (o *SourceRead) GetSourceNameOk() (*string, bool)

GetSourceNameOk returns a tuple with the SourceName field value and a boolean to check if the value has been set.

func (*SourceRead) GetWorkspaceId

func (o *SourceRead) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*SourceRead) GetWorkspaceIdOk

func (o *SourceRead) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (SourceRead) MarshalJSON

func (o SourceRead) MarshalJSON() ([]byte, error)

func (*SourceRead) SetConnectionConfiguration

func (o *SourceRead) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets field value

func (*SourceRead) SetName

func (o *SourceRead) SetName(v string)

SetName sets field value

func (*SourceRead) SetSourceDefinitionId

func (o *SourceRead) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets field value

func (*SourceRead) SetSourceId

func (o *SourceRead) SetSourceId(v string)

SetSourceId sets field value

func (*SourceRead) SetSourceName

func (o *SourceRead) SetSourceName(v string)

SetSourceName sets field value

func (*SourceRead) SetWorkspaceId

func (o *SourceRead) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type SourceReadList

type SourceReadList struct {
	Sources []SourceRead `json:"sources"`
}

SourceReadList struct for SourceReadList

func NewSourceReadList

func NewSourceReadList(sources []SourceRead) *SourceReadList

NewSourceReadList instantiates a new SourceReadList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceReadListWithDefaults

func NewSourceReadListWithDefaults() *SourceReadList

NewSourceReadListWithDefaults instantiates a new SourceReadList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceReadList) GetSources

func (o *SourceReadList) GetSources() []SourceRead

GetSources returns the Sources field value

func (*SourceReadList) GetSourcesOk

func (o *SourceReadList) GetSourcesOk() ([]SourceRead, bool)

GetSourcesOk returns a tuple with the Sources field value and a boolean to check if the value has been set.

func (SourceReadList) MarshalJSON

func (o SourceReadList) MarshalJSON() ([]byte, error)

func (*SourceReadList) SetSources

func (o *SourceReadList) SetSources(v []SourceRead)

SetSources sets field value

type SourceSearch

type SourceSearch struct {
	SourceDefinitionId *string `json:"sourceDefinitionId,omitempty"`
	SourceId           *string `json:"sourceId,omitempty"`
	WorkspaceId        *string `json:"workspaceId,omitempty"`
	// The values required to configure the source. The schema for this must match the schema return by source_definition_specifications/get for the source.
	ConnectionConfiguration interface{} `json:"connectionConfiguration,omitempty"`
	Name                    *string     `json:"name,omitempty"`
	SourceName              *string     `json:"sourceName,omitempty"`
}

SourceSearch struct for SourceSearch

func NewSourceSearch

func NewSourceSearch() *SourceSearch

NewSourceSearch instantiates a new SourceSearch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceSearchWithDefaults

func NewSourceSearchWithDefaults() *SourceSearch

NewSourceSearchWithDefaults instantiates a new SourceSearch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceSearch) GetConnectionConfiguration

func (o *SourceSearch) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SourceSearch) GetConnectionConfigurationOk

func (o *SourceSearch) GetConnectionConfigurationOk() (*interface{}, bool)

GetConnectionConfigurationOk returns a tuple with the ConnectionConfiguration field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SourceSearch) GetName

func (o *SourceSearch) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*SourceSearch) GetNameOk

func (o *SourceSearch) 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 (*SourceSearch) GetSourceDefinitionId

func (o *SourceSearch) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field value if set, zero value otherwise.

func (*SourceSearch) GetSourceDefinitionIdOk

func (o *SourceSearch) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceSearch) GetSourceId

func (o *SourceSearch) GetSourceId() string

GetSourceId returns the SourceId field value if set, zero value otherwise.

func (*SourceSearch) GetSourceIdOk

func (o *SourceSearch) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceSearch) GetSourceName

func (o *SourceSearch) GetSourceName() string

GetSourceName returns the SourceName field value if set, zero value otherwise.

func (*SourceSearch) GetSourceNameOk

func (o *SourceSearch) GetSourceNameOk() (*string, bool)

GetSourceNameOk returns a tuple with the SourceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceSearch) GetWorkspaceId

func (o *SourceSearch) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value if set, zero value otherwise.

func (*SourceSearch) GetWorkspaceIdOk

func (o *SourceSearch) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceSearch) HasConnectionConfiguration

func (o *SourceSearch) HasConnectionConfiguration() bool

HasConnectionConfiguration returns a boolean if a field has been set.

func (*SourceSearch) HasName

func (o *SourceSearch) HasName() bool

HasName returns a boolean if a field has been set.

func (*SourceSearch) HasSourceDefinitionId

func (o *SourceSearch) HasSourceDefinitionId() bool

HasSourceDefinitionId returns a boolean if a field has been set.

func (*SourceSearch) HasSourceId

func (o *SourceSearch) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*SourceSearch) HasSourceName

func (o *SourceSearch) HasSourceName() bool

HasSourceName returns a boolean if a field has been set.

func (*SourceSearch) HasWorkspaceId

func (o *SourceSearch) HasWorkspaceId() bool

HasWorkspaceId returns a boolean if a field has been set.

func (SourceSearch) MarshalJSON

func (o SourceSearch) MarshalJSON() ([]byte, error)

func (*SourceSearch) SetConnectionConfiguration

func (o *SourceSearch) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration gets a reference to the given interface{} and assigns it to the ConnectionConfiguration field.

func (*SourceSearch) SetName

func (o *SourceSearch) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*SourceSearch) SetSourceDefinitionId

func (o *SourceSearch) SetSourceDefinitionId(v string)

SetSourceDefinitionId gets a reference to the given string and assigns it to the SourceDefinitionId field.

func (*SourceSearch) SetSourceId

func (o *SourceSearch) SetSourceId(v string)

SetSourceId gets a reference to the given string and assigns it to the SourceId field.

func (*SourceSearch) SetSourceName

func (o *SourceSearch) SetSourceName(v string)

SetSourceName gets a reference to the given string and assigns it to the SourceName field.

func (*SourceSearch) SetWorkspaceId

func (o *SourceSearch) SetWorkspaceId(v string)

SetWorkspaceId gets a reference to the given string and assigns it to the WorkspaceId field.

type SourceUpdate

type SourceUpdate struct {
	SourceId string `json:"sourceId"`
	// The values required to configure the source. The schema for this must match the schema return by source_definition_specifications/get for the source.
	ConnectionConfiguration interface{} `json:"connectionConfiguration"`
	Name                    string      `json:"name"`
}

SourceUpdate struct for SourceUpdate

func NewSourceUpdate

func NewSourceUpdate(sourceId string, connectionConfiguration interface{}, name string) *SourceUpdate

NewSourceUpdate instantiates a new SourceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceUpdateWithDefaults

func NewSourceUpdateWithDefaults() *SourceUpdate

NewSourceUpdateWithDefaults instantiates a new SourceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceUpdate) GetConnectionConfiguration

func (o *SourceUpdate) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SourceUpdate) GetConnectionConfigurationOk

func (o *SourceUpdate) GetConnectionConfigurationOk() (*interface{}, bool)

GetConnectionConfigurationOk returns a tuple with the ConnectionConfiguration field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SourceUpdate) GetName

func (o *SourceUpdate) GetName() string

GetName returns the Name field value

func (*SourceUpdate) GetNameOk

func (o *SourceUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SourceUpdate) GetSourceId

func (o *SourceUpdate) GetSourceId() string

GetSourceId returns the SourceId field value

func (*SourceUpdate) GetSourceIdOk

func (o *SourceUpdate) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value and a boolean to check if the value has been set.

func (SourceUpdate) MarshalJSON

func (o SourceUpdate) MarshalJSON() ([]byte, error)

func (*SourceUpdate) SetConnectionConfiguration

func (o *SourceUpdate) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets field value

func (*SourceUpdate) SetName

func (o *SourceUpdate) SetName(v string)

SetName sets field value

func (*SourceUpdate) SetSourceId

func (o *SourceUpdate) SetSourceId(v string)

SetSourceId sets field value

type SyncMode

type SyncMode string

SyncMode the model 'SyncMode'

const (
	SYNCMODE_FULL_REFRESH SyncMode = "full_refresh"
	SYNCMODE_INCREMENTAL  SyncMode = "incremental"
)

List of SyncMode

func NewSyncModeFromValue

func NewSyncModeFromValue(v string) (*SyncMode, error)

NewSyncModeFromValue returns a pointer to a valid SyncMode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SyncMode) IsValid

func (v SyncMode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SyncMode) Ptr

func (v SyncMode) Ptr() *SyncMode

Ptr returns reference to SyncMode value

func (*SyncMode) UnmarshalJSON

func (v *SyncMode) UnmarshalJSON(src []byte) error

type SynchronousJobRead

type SynchronousJobRead struct {
	Id         string        `json:"id"`
	ConfigType JobConfigType `json:"configType"`
	// only present if a config id was provided.
	ConfigId  *string  `json:"configId,omitempty"`
	CreatedAt int64    `json:"createdAt"`
	EndedAt   int64    `json:"endedAt"`
	Succeeded bool     `json:"succeeded"`
	Logs      *LogRead `json:"logs,omitempty"`
}

SynchronousJobRead struct for SynchronousJobRead

func NewSynchronousJobRead

func NewSynchronousJobRead(id string, configType JobConfigType, createdAt int64, endedAt int64, succeeded bool) *SynchronousJobRead

NewSynchronousJobRead instantiates a new SynchronousJobRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSynchronousJobReadWithDefaults

func NewSynchronousJobReadWithDefaults() *SynchronousJobRead

NewSynchronousJobReadWithDefaults instantiates a new SynchronousJobRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SynchronousJobRead) GetConfigId

func (o *SynchronousJobRead) GetConfigId() string

GetConfigId returns the ConfigId field value if set, zero value otherwise.

func (*SynchronousJobRead) GetConfigIdOk

func (o *SynchronousJobRead) GetConfigIdOk() (*string, bool)

GetConfigIdOk returns a tuple with the ConfigId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SynchronousJobRead) GetConfigType

func (o *SynchronousJobRead) GetConfigType() JobConfigType

GetConfigType returns the ConfigType field value

func (*SynchronousJobRead) GetConfigTypeOk

func (o *SynchronousJobRead) GetConfigTypeOk() (*JobConfigType, bool)

GetConfigTypeOk returns a tuple with the ConfigType field value and a boolean to check if the value has been set.

func (*SynchronousJobRead) GetCreatedAt

func (o *SynchronousJobRead) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*SynchronousJobRead) GetCreatedAtOk

func (o *SynchronousJobRead) GetCreatedAtOk() (*int64, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*SynchronousJobRead) GetEndedAt

func (o *SynchronousJobRead) GetEndedAt() int64

GetEndedAt returns the EndedAt field value

func (*SynchronousJobRead) GetEndedAtOk

func (o *SynchronousJobRead) GetEndedAtOk() (*int64, bool)

GetEndedAtOk returns a tuple with the EndedAt field value and a boolean to check if the value has been set.

func (*SynchronousJobRead) GetId

func (o *SynchronousJobRead) GetId() string

GetId returns the Id field value

func (*SynchronousJobRead) GetIdOk

func (o *SynchronousJobRead) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*SynchronousJobRead) GetLogs

func (o *SynchronousJobRead) GetLogs() LogRead

GetLogs returns the Logs field value if set, zero value otherwise.

func (*SynchronousJobRead) GetLogsOk

func (o *SynchronousJobRead) GetLogsOk() (*LogRead, bool)

GetLogsOk returns a tuple with the Logs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SynchronousJobRead) GetSucceeded

func (o *SynchronousJobRead) GetSucceeded() bool

GetSucceeded returns the Succeeded field value

func (*SynchronousJobRead) GetSucceededOk

func (o *SynchronousJobRead) GetSucceededOk() (*bool, bool)

GetSucceededOk returns a tuple with the Succeeded field value and a boolean to check if the value has been set.

func (*SynchronousJobRead) HasConfigId

func (o *SynchronousJobRead) HasConfigId() bool

HasConfigId returns a boolean if a field has been set.

func (*SynchronousJobRead) HasLogs

func (o *SynchronousJobRead) HasLogs() bool

HasLogs returns a boolean if a field has been set.

func (SynchronousJobRead) MarshalJSON

func (o SynchronousJobRead) MarshalJSON() ([]byte, error)

func (*SynchronousJobRead) SetConfigId

func (o *SynchronousJobRead) SetConfigId(v string)

SetConfigId gets a reference to the given string and assigns it to the ConfigId field.

func (*SynchronousJobRead) SetConfigType

func (o *SynchronousJobRead) SetConfigType(v JobConfigType)

SetConfigType sets field value

func (*SynchronousJobRead) SetCreatedAt

func (o *SynchronousJobRead) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*SynchronousJobRead) SetEndedAt

func (o *SynchronousJobRead) SetEndedAt(v int64)

SetEndedAt sets field value

func (*SynchronousJobRead) SetId

func (o *SynchronousJobRead) SetId(v string)

SetId sets field value

func (*SynchronousJobRead) SetLogs

func (o *SynchronousJobRead) SetLogs(v LogRead)

SetLogs gets a reference to the given LogRead and assigns it to the Logs field.

func (*SynchronousJobRead) SetSucceeded

func (o *SynchronousJobRead) SetSucceeded(v bool)

SetSucceeded sets field value

type UploadRead

type UploadRead struct {
	Status     string  `json:"status"`
	ResourceId *string `json:"resourceId,omitempty"`
}

UploadRead struct for UploadRead

func NewUploadRead

func NewUploadRead(status string) *UploadRead

NewUploadRead instantiates a new UploadRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUploadReadWithDefaults

func NewUploadReadWithDefaults() *UploadRead

NewUploadReadWithDefaults instantiates a new UploadRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UploadRead) GetResourceId

func (o *UploadRead) GetResourceId() string

GetResourceId returns the ResourceId field value if set, zero value otherwise.

func (*UploadRead) GetResourceIdOk

func (o *UploadRead) GetResourceIdOk() (*string, bool)

GetResourceIdOk returns a tuple with the ResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UploadRead) GetStatus

func (o *UploadRead) GetStatus() string

GetStatus returns the Status field value

func (*UploadRead) GetStatusOk

func (o *UploadRead) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*UploadRead) HasResourceId

func (o *UploadRead) HasResourceId() bool

HasResourceId returns a boolean if a field has been set.

func (UploadRead) MarshalJSON

func (o UploadRead) MarshalJSON() ([]byte, error)

func (*UploadRead) SetResourceId

func (o *UploadRead) SetResourceId(v string)

SetResourceId gets a reference to the given string and assigns it to the ResourceId field.

func (*UploadRead) SetStatus

func (o *UploadRead) SetStatus(v string)

SetStatus sets field value

type WebBackendApiService

type WebBackendApiService service

WebBackendApiService WebBackendApi service

func (*WebBackendApiService) WebBackendCreateConnection

func (a *WebBackendApiService) WebBackendCreateConnection(ctx context.Context) ApiWebBackendCreateConnectionRequest

WebBackendCreateConnection Create a connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebBackendCreateConnectionRequest

func (*WebBackendApiService) WebBackendCreateConnectionExecute

Execute executes the request

@return WebBackendConnectionRead

func (*WebBackendApiService) WebBackendGetConnection

WebBackendGetConnection Get a connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebBackendGetConnectionRequest

func (*WebBackendApiService) WebBackendGetConnectionExecute

Execute executes the request

@return WebBackendConnectionRead

func (*WebBackendApiService) WebBackendListAllConnectionsForWorkspace

func (a *WebBackendApiService) WebBackendListAllConnectionsForWorkspace(ctx context.Context) ApiWebBackendListAllConnectionsForWorkspaceRequest

WebBackendListAllConnectionsForWorkspace Returns all connections for a workspace.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebBackendListAllConnectionsForWorkspaceRequest

func (*WebBackendApiService) WebBackendListAllConnectionsForWorkspaceExecute

Execute executes the request

@return WebBackendConnectionReadList

func (*WebBackendApiService) WebBackendListConnectionsForWorkspace

func (a *WebBackendApiService) WebBackendListConnectionsForWorkspace(ctx context.Context) ApiWebBackendListConnectionsForWorkspaceRequest

WebBackendListConnectionsForWorkspace Returns all non-deleted connections for a workspace.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebBackendListConnectionsForWorkspaceRequest

func (*WebBackendApiService) WebBackendListConnectionsForWorkspaceExecute

Execute executes the request

@return WebBackendConnectionReadList

func (*WebBackendApiService) WebBackendSearchConnections

func (a *WebBackendApiService) WebBackendSearchConnections(ctx context.Context) ApiWebBackendSearchConnectionsRequest

WebBackendSearchConnections Search connections

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebBackendSearchConnectionsRequest

func (*WebBackendApiService) WebBackendSearchConnectionsExecute

Execute executes the request

@return WebBackendConnectionReadList

func (*WebBackendApiService) WebBackendUpdateConnection

func (a *WebBackendApiService) WebBackendUpdateConnection(ctx context.Context) ApiWebBackendUpdateConnectionRequest

WebBackendUpdateConnection Update a connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWebBackendUpdateConnectionRequest

func (*WebBackendApiService) WebBackendUpdateConnectionExecute

Execute executes the request

@return WebBackendConnectionRead

type WebBackendConnectionCreate

type WebBackendConnectionCreate struct {
	// Optional name of the connection
	Name                *string                  `json:"name,omitempty"`
	NamespaceDefinition *NamespaceDefinitionType `json:"namespaceDefinition,omitempty"`
	// Used when namespaceDefinition is 'customformat'. If blank then behaves like namespaceDefinition = 'destination'. If \"${SOURCE_NAMESPACE}\" then behaves like namespaceDefinition = 'source'.
	NamespaceFormat *string `json:"namespaceFormat,omitempty"`
	// Prefix that will be prepended to the name of each stream when it is written to the destination.
	Prefix               *string               `json:"prefix,omitempty"`
	SourceId             string                `json:"sourceId"`
	DestinationId        string                `json:"destinationId"`
	OperationIds         []string              `json:"operationIds,omitempty"`
	SyncCatalog          *AirbyteCatalog       `json:"syncCatalog,omitempty"`
	Schedule             *ConnectionSchedule   `json:"schedule,omitempty"`
	Status               ConnectionStatus      `json:"status"`
	ResourceRequirements *ResourceRequirements `json:"resourceRequirements,omitempty"`
	Operations           []OperationCreate     `json:"operations,omitempty"`
}

WebBackendConnectionCreate struct for WebBackendConnectionCreate

func NewWebBackendConnectionCreate

func NewWebBackendConnectionCreate(sourceId string, destinationId string, status ConnectionStatus) *WebBackendConnectionCreate

NewWebBackendConnectionCreate instantiates a new WebBackendConnectionCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebBackendConnectionCreateWithDefaults

func NewWebBackendConnectionCreateWithDefaults() *WebBackendConnectionCreate

NewWebBackendConnectionCreateWithDefaults instantiates a new WebBackendConnectionCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebBackendConnectionCreate) GetDestinationId

func (o *WebBackendConnectionCreate) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*WebBackendConnectionCreate) GetDestinationIdOk

func (o *WebBackendConnectionCreate) GetDestinationIdOk() (*string, bool)

GetDestinationIdOk returns a tuple with the DestinationId field value and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetName

func (o *WebBackendConnectionCreate) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetNameOk

func (o *WebBackendConnectionCreate) 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 (*WebBackendConnectionCreate) GetNamespaceDefinition

func (o *WebBackendConnectionCreate) GetNamespaceDefinition() NamespaceDefinitionType

GetNamespaceDefinition returns the NamespaceDefinition field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetNamespaceDefinitionOk

func (o *WebBackendConnectionCreate) GetNamespaceDefinitionOk() (*NamespaceDefinitionType, bool)

GetNamespaceDefinitionOk returns a tuple with the NamespaceDefinition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetNamespaceFormat

func (o *WebBackendConnectionCreate) GetNamespaceFormat() string

GetNamespaceFormat returns the NamespaceFormat field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetNamespaceFormatOk

func (o *WebBackendConnectionCreate) GetNamespaceFormatOk() (*string, bool)

GetNamespaceFormatOk returns a tuple with the NamespaceFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetOperationIds

func (o *WebBackendConnectionCreate) GetOperationIds() []string

GetOperationIds returns the OperationIds field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetOperationIdsOk

func (o *WebBackendConnectionCreate) GetOperationIdsOk() ([]string, bool)

GetOperationIdsOk returns a tuple with the OperationIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetOperations

func (o *WebBackendConnectionCreate) GetOperations() []OperationCreate

GetOperations returns the Operations field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetOperationsOk

func (o *WebBackendConnectionCreate) GetOperationsOk() ([]OperationCreate, bool)

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetPrefix

func (o *WebBackendConnectionCreate) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetPrefixOk

func (o *WebBackendConnectionCreate) GetPrefixOk() (*string, bool)

GetPrefixOk returns a tuple with the Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetResourceRequirements

func (o *WebBackendConnectionCreate) GetResourceRequirements() ResourceRequirements

GetResourceRequirements returns the ResourceRequirements field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetResourceRequirementsOk

func (o *WebBackendConnectionCreate) GetResourceRequirementsOk() (*ResourceRequirements, bool)

GetResourceRequirementsOk returns a tuple with the ResourceRequirements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetSchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetScheduleOk

func (o *WebBackendConnectionCreate) GetScheduleOk() (*ConnectionSchedule, 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 (*WebBackendConnectionCreate) GetSourceId

func (o *WebBackendConnectionCreate) GetSourceId() string

GetSourceId returns the SourceId field value

func (*WebBackendConnectionCreate) GetSourceIdOk

func (o *WebBackendConnectionCreate) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetStatus

GetStatus returns the Status field value

func (*WebBackendConnectionCreate) GetStatusOk

func (o *WebBackendConnectionCreate) GetStatusOk() (*ConnectionStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) GetSyncCatalog

func (o *WebBackendConnectionCreate) GetSyncCatalog() AirbyteCatalog

GetSyncCatalog returns the SyncCatalog field value if set, zero value otherwise.

func (*WebBackendConnectionCreate) GetSyncCatalogOk

func (o *WebBackendConnectionCreate) GetSyncCatalogOk() (*AirbyteCatalog, bool)

GetSyncCatalogOk returns a tuple with the SyncCatalog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionCreate) HasName

func (o *WebBackendConnectionCreate) HasName() bool

HasName returns a boolean if a field has been set.

func (*WebBackendConnectionCreate) HasNamespaceDefinition

func (o *WebBackendConnectionCreate) HasNamespaceDefinition() bool

HasNamespaceDefinition returns a boolean if a field has been set.

func (*WebBackendConnectionCreate) HasNamespaceFormat

func (o *WebBackendConnectionCreate) HasNamespaceFormat() bool

HasNamespaceFormat returns a boolean if a field has been set.

func (*WebBackendConnectionCreate) HasOperationIds

func (o *WebBackendConnectionCreate) HasOperationIds() bool

HasOperationIds returns a boolean if a field has been set.

func (*WebBackendConnectionCreate) HasOperations

func (o *WebBackendConnectionCreate) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (*WebBackendConnectionCreate) HasPrefix

func (o *WebBackendConnectionCreate) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*WebBackendConnectionCreate) HasResourceRequirements

func (o *WebBackendConnectionCreate) HasResourceRequirements() bool

HasResourceRequirements returns a boolean if a field has been set.

func (*WebBackendConnectionCreate) HasSchedule

func (o *WebBackendConnectionCreate) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*WebBackendConnectionCreate) HasSyncCatalog

func (o *WebBackendConnectionCreate) HasSyncCatalog() bool

HasSyncCatalog returns a boolean if a field has been set.

func (WebBackendConnectionCreate) MarshalJSON

func (o WebBackendConnectionCreate) MarshalJSON() ([]byte, error)

func (*WebBackendConnectionCreate) SetDestinationId

func (o *WebBackendConnectionCreate) SetDestinationId(v string)

SetDestinationId sets field value

func (*WebBackendConnectionCreate) SetName

func (o *WebBackendConnectionCreate) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WebBackendConnectionCreate) SetNamespaceDefinition

func (o *WebBackendConnectionCreate) SetNamespaceDefinition(v NamespaceDefinitionType)

SetNamespaceDefinition gets a reference to the given NamespaceDefinitionType and assigns it to the NamespaceDefinition field.

func (*WebBackendConnectionCreate) SetNamespaceFormat

func (o *WebBackendConnectionCreate) SetNamespaceFormat(v string)

SetNamespaceFormat gets a reference to the given string and assigns it to the NamespaceFormat field.

func (*WebBackendConnectionCreate) SetOperationIds

func (o *WebBackendConnectionCreate) SetOperationIds(v []string)

SetOperationIds gets a reference to the given []string and assigns it to the OperationIds field.

func (*WebBackendConnectionCreate) SetOperations

func (o *WebBackendConnectionCreate) SetOperations(v []OperationCreate)

SetOperations gets a reference to the given []OperationCreate and assigns it to the Operations field.

func (*WebBackendConnectionCreate) SetPrefix

func (o *WebBackendConnectionCreate) SetPrefix(v string)

SetPrefix gets a reference to the given string and assigns it to the Prefix field.

func (*WebBackendConnectionCreate) SetResourceRequirements

func (o *WebBackendConnectionCreate) SetResourceRequirements(v ResourceRequirements)

SetResourceRequirements gets a reference to the given ResourceRequirements and assigns it to the ResourceRequirements field.

func (*WebBackendConnectionCreate) SetSchedule

SetSchedule gets a reference to the given ConnectionSchedule and assigns it to the Schedule field.

func (*WebBackendConnectionCreate) SetSourceId

func (o *WebBackendConnectionCreate) SetSourceId(v string)

SetSourceId sets field value

func (*WebBackendConnectionCreate) SetStatus

SetStatus sets field value

func (*WebBackendConnectionCreate) SetSyncCatalog

func (o *WebBackendConnectionCreate) SetSyncCatalog(v AirbyteCatalog)

SetSyncCatalog gets a reference to the given AirbyteCatalog and assigns it to the SyncCatalog field.

type WebBackendConnectionRead

type WebBackendConnectionRead struct {
	ConnectionId        string                   `json:"connectionId"`
	Name                string                   `json:"name"`
	NamespaceDefinition *NamespaceDefinitionType `json:"namespaceDefinition,omitempty"`
	// Used when namespaceDefinition is 'customformat'. If blank then behaves like namespaceDefinition = 'destination'. If \"${SOURCE_NAMESPACE}\" then behaves like namespaceDefinition = 'source'.
	NamespaceFormat *string `json:"namespaceFormat,omitempty"`
	// Prefix that will be prepended to the name of each stream when it is written to the destination.
	Prefix        *string             `json:"prefix,omitempty"`
	SourceId      string              `json:"sourceId"`
	DestinationId string              `json:"destinationId"`
	SyncCatalog   AirbyteCatalog      `json:"syncCatalog"`
	Schedule      *ConnectionSchedule `json:"schedule,omitempty"`
	Status        ConnectionStatus    `json:"status"`
	OperationIds  []string            `json:"operationIds,omitempty"`
	Source        SourceRead          `json:"source"`
	Destination   DestinationRead     `json:"destination"`
	Operations    []OperationRead     `json:"operations,omitempty"`
	// epoch time of the latest sync job. null if no sync job has taken place.
	LatestSyncJobCreatedAt *int64                `json:"latestSyncJobCreatedAt,omitempty"`
	LatestSyncJobStatus    *JobStatus            `json:"latestSyncJobStatus,omitempty"`
	IsSyncing              bool                  `json:"isSyncing"`
	ResourceRequirements   *ResourceRequirements `json:"resourceRequirements,omitempty"`
}

WebBackendConnectionRead struct for WebBackendConnectionRead

func NewWebBackendConnectionRead

func NewWebBackendConnectionRead(connectionId string, name string, sourceId string, destinationId string, syncCatalog AirbyteCatalog, status ConnectionStatus, source SourceRead, destination DestinationRead, isSyncing bool) *WebBackendConnectionRead

NewWebBackendConnectionRead instantiates a new WebBackendConnectionRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebBackendConnectionReadWithDefaults

func NewWebBackendConnectionReadWithDefaults() *WebBackendConnectionRead

NewWebBackendConnectionReadWithDefaults instantiates a new WebBackendConnectionRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebBackendConnectionRead) GetConnectionId

func (o *WebBackendConnectionRead) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*WebBackendConnectionRead) GetConnectionIdOk

func (o *WebBackendConnectionRead) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetDestination

func (o *WebBackendConnectionRead) GetDestination() DestinationRead

GetDestination returns the Destination field value

func (*WebBackendConnectionRead) GetDestinationId

func (o *WebBackendConnectionRead) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*WebBackendConnectionRead) GetDestinationIdOk

func (o *WebBackendConnectionRead) GetDestinationIdOk() (*string, bool)

GetDestinationIdOk returns a tuple with the DestinationId field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetDestinationOk

func (o *WebBackendConnectionRead) GetDestinationOk() (*DestinationRead, bool)

GetDestinationOk returns a tuple with the Destination field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetIsSyncing

func (o *WebBackendConnectionRead) GetIsSyncing() bool

GetIsSyncing returns the IsSyncing field value

func (*WebBackendConnectionRead) GetIsSyncingOk

func (o *WebBackendConnectionRead) GetIsSyncingOk() (*bool, bool)

GetIsSyncingOk returns a tuple with the IsSyncing field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetLatestSyncJobCreatedAt

func (o *WebBackendConnectionRead) GetLatestSyncJobCreatedAt() int64

GetLatestSyncJobCreatedAt returns the LatestSyncJobCreatedAt field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetLatestSyncJobCreatedAtOk

func (o *WebBackendConnectionRead) GetLatestSyncJobCreatedAtOk() (*int64, bool)

GetLatestSyncJobCreatedAtOk returns a tuple with the LatestSyncJobCreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetLatestSyncJobStatus

func (o *WebBackendConnectionRead) GetLatestSyncJobStatus() JobStatus

GetLatestSyncJobStatus returns the LatestSyncJobStatus field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetLatestSyncJobStatusOk

func (o *WebBackendConnectionRead) GetLatestSyncJobStatusOk() (*JobStatus, bool)

GetLatestSyncJobStatusOk returns a tuple with the LatestSyncJobStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetName

func (o *WebBackendConnectionRead) GetName() string

GetName returns the Name field value

func (*WebBackendConnectionRead) GetNameOk

func (o *WebBackendConnectionRead) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetNamespaceDefinition

func (o *WebBackendConnectionRead) GetNamespaceDefinition() NamespaceDefinitionType

GetNamespaceDefinition returns the NamespaceDefinition field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetNamespaceDefinitionOk

func (o *WebBackendConnectionRead) GetNamespaceDefinitionOk() (*NamespaceDefinitionType, bool)

GetNamespaceDefinitionOk returns a tuple with the NamespaceDefinition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetNamespaceFormat

func (o *WebBackendConnectionRead) GetNamespaceFormat() string

GetNamespaceFormat returns the NamespaceFormat field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetNamespaceFormatOk

func (o *WebBackendConnectionRead) GetNamespaceFormatOk() (*string, bool)

GetNamespaceFormatOk returns a tuple with the NamespaceFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetOperationIds

func (o *WebBackendConnectionRead) GetOperationIds() []string

GetOperationIds returns the OperationIds field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetOperationIdsOk

func (o *WebBackendConnectionRead) GetOperationIdsOk() ([]string, bool)

GetOperationIdsOk returns a tuple with the OperationIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetOperations

func (o *WebBackendConnectionRead) GetOperations() []OperationRead

GetOperations returns the Operations field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetOperationsOk

func (o *WebBackendConnectionRead) GetOperationsOk() ([]OperationRead, bool)

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetPrefix

func (o *WebBackendConnectionRead) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetPrefixOk

func (o *WebBackendConnectionRead) GetPrefixOk() (*string, bool)

GetPrefixOk returns a tuple with the Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetResourceRequirements

func (o *WebBackendConnectionRead) GetResourceRequirements() ResourceRequirements

GetResourceRequirements returns the ResourceRequirements field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetResourceRequirementsOk

func (o *WebBackendConnectionRead) GetResourceRequirementsOk() (*ResourceRequirements, bool)

GetResourceRequirementsOk returns a tuple with the ResourceRequirements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetSchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*WebBackendConnectionRead) GetScheduleOk

func (o *WebBackendConnectionRead) GetScheduleOk() (*ConnectionSchedule, 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 (*WebBackendConnectionRead) GetSource

func (o *WebBackendConnectionRead) GetSource() SourceRead

GetSource returns the Source field value

func (*WebBackendConnectionRead) GetSourceId

func (o *WebBackendConnectionRead) GetSourceId() string

GetSourceId returns the SourceId field value

func (*WebBackendConnectionRead) GetSourceIdOk

func (o *WebBackendConnectionRead) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetSourceOk

func (o *WebBackendConnectionRead) GetSourceOk() (*SourceRead, bool)

GetSourceOk returns a tuple with the Source field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetStatus

GetStatus returns the Status field value

func (*WebBackendConnectionRead) GetStatusOk

func (o *WebBackendConnectionRead) GetStatusOk() (*ConnectionStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) GetSyncCatalog

func (o *WebBackendConnectionRead) GetSyncCatalog() AirbyteCatalog

GetSyncCatalog returns the SyncCatalog field value

func (*WebBackendConnectionRead) GetSyncCatalogOk

func (o *WebBackendConnectionRead) GetSyncCatalogOk() (*AirbyteCatalog, bool)

GetSyncCatalogOk returns a tuple with the SyncCatalog field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRead) HasLatestSyncJobCreatedAt

func (o *WebBackendConnectionRead) HasLatestSyncJobCreatedAt() bool

HasLatestSyncJobCreatedAt returns a boolean if a field has been set.

func (*WebBackendConnectionRead) HasLatestSyncJobStatus

func (o *WebBackendConnectionRead) HasLatestSyncJobStatus() bool

HasLatestSyncJobStatus returns a boolean if a field has been set.

func (*WebBackendConnectionRead) HasNamespaceDefinition

func (o *WebBackendConnectionRead) HasNamespaceDefinition() bool

HasNamespaceDefinition returns a boolean if a field has been set.

func (*WebBackendConnectionRead) HasNamespaceFormat

func (o *WebBackendConnectionRead) HasNamespaceFormat() bool

HasNamespaceFormat returns a boolean if a field has been set.

func (*WebBackendConnectionRead) HasOperationIds

func (o *WebBackendConnectionRead) HasOperationIds() bool

HasOperationIds returns a boolean if a field has been set.

func (*WebBackendConnectionRead) HasOperations

func (o *WebBackendConnectionRead) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (*WebBackendConnectionRead) HasPrefix

func (o *WebBackendConnectionRead) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*WebBackendConnectionRead) HasResourceRequirements

func (o *WebBackendConnectionRead) HasResourceRequirements() bool

HasResourceRequirements returns a boolean if a field has been set.

func (*WebBackendConnectionRead) HasSchedule

func (o *WebBackendConnectionRead) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (WebBackendConnectionRead) MarshalJSON

func (o WebBackendConnectionRead) MarshalJSON() ([]byte, error)

func (*WebBackendConnectionRead) SetConnectionId

func (o *WebBackendConnectionRead) SetConnectionId(v string)

SetConnectionId sets field value

func (*WebBackendConnectionRead) SetDestination

func (o *WebBackendConnectionRead) SetDestination(v DestinationRead)

SetDestination sets field value

func (*WebBackendConnectionRead) SetDestinationId

func (o *WebBackendConnectionRead) SetDestinationId(v string)

SetDestinationId sets field value

func (*WebBackendConnectionRead) SetIsSyncing

func (o *WebBackendConnectionRead) SetIsSyncing(v bool)

SetIsSyncing sets field value

func (*WebBackendConnectionRead) SetLatestSyncJobCreatedAt

func (o *WebBackendConnectionRead) SetLatestSyncJobCreatedAt(v int64)

SetLatestSyncJobCreatedAt gets a reference to the given int64 and assigns it to the LatestSyncJobCreatedAt field.

func (*WebBackendConnectionRead) SetLatestSyncJobStatus

func (o *WebBackendConnectionRead) SetLatestSyncJobStatus(v JobStatus)

SetLatestSyncJobStatus gets a reference to the given JobStatus and assigns it to the LatestSyncJobStatus field.

func (*WebBackendConnectionRead) SetName

func (o *WebBackendConnectionRead) SetName(v string)

SetName sets field value

func (*WebBackendConnectionRead) SetNamespaceDefinition

func (o *WebBackendConnectionRead) SetNamespaceDefinition(v NamespaceDefinitionType)

SetNamespaceDefinition gets a reference to the given NamespaceDefinitionType and assigns it to the NamespaceDefinition field.

func (*WebBackendConnectionRead) SetNamespaceFormat

func (o *WebBackendConnectionRead) SetNamespaceFormat(v string)

SetNamespaceFormat gets a reference to the given string and assigns it to the NamespaceFormat field.

func (*WebBackendConnectionRead) SetOperationIds

func (o *WebBackendConnectionRead) SetOperationIds(v []string)

SetOperationIds gets a reference to the given []string and assigns it to the OperationIds field.

func (*WebBackendConnectionRead) SetOperations

func (o *WebBackendConnectionRead) SetOperations(v []OperationRead)

SetOperations gets a reference to the given []OperationRead and assigns it to the Operations field.

func (*WebBackendConnectionRead) SetPrefix

func (o *WebBackendConnectionRead) SetPrefix(v string)

SetPrefix gets a reference to the given string and assigns it to the Prefix field.

func (*WebBackendConnectionRead) SetResourceRequirements

func (o *WebBackendConnectionRead) SetResourceRequirements(v ResourceRequirements)

SetResourceRequirements gets a reference to the given ResourceRequirements and assigns it to the ResourceRequirements field.

func (*WebBackendConnectionRead) SetSchedule

func (o *WebBackendConnectionRead) SetSchedule(v ConnectionSchedule)

SetSchedule gets a reference to the given ConnectionSchedule and assigns it to the Schedule field.

func (*WebBackendConnectionRead) SetSource

func (o *WebBackendConnectionRead) SetSource(v SourceRead)

SetSource sets field value

func (*WebBackendConnectionRead) SetSourceId

func (o *WebBackendConnectionRead) SetSourceId(v string)

SetSourceId sets field value

func (*WebBackendConnectionRead) SetStatus

SetStatus sets field value

func (*WebBackendConnectionRead) SetSyncCatalog

func (o *WebBackendConnectionRead) SetSyncCatalog(v AirbyteCatalog)

SetSyncCatalog sets field value

type WebBackendConnectionReadList

type WebBackendConnectionReadList struct {
	Connections []WebBackendConnectionRead `json:"connections"`
}

WebBackendConnectionReadList struct for WebBackendConnectionReadList

func NewWebBackendConnectionReadList

func NewWebBackendConnectionReadList(connections []WebBackendConnectionRead) *WebBackendConnectionReadList

NewWebBackendConnectionReadList instantiates a new WebBackendConnectionReadList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebBackendConnectionReadListWithDefaults

func NewWebBackendConnectionReadListWithDefaults() *WebBackendConnectionReadList

NewWebBackendConnectionReadListWithDefaults instantiates a new WebBackendConnectionReadList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebBackendConnectionReadList) GetConnections

GetConnections returns the Connections field value

func (*WebBackendConnectionReadList) GetConnectionsOk

func (o *WebBackendConnectionReadList) GetConnectionsOk() ([]WebBackendConnectionRead, bool)

GetConnectionsOk returns a tuple with the Connections field value and a boolean to check if the value has been set.

func (WebBackendConnectionReadList) MarshalJSON

func (o WebBackendConnectionReadList) MarshalJSON() ([]byte, error)

func (*WebBackendConnectionReadList) SetConnections

SetConnections sets field value

type WebBackendConnectionRequestBody

type WebBackendConnectionRequestBody struct {
	WithRefreshedCatalog *bool  `json:"withRefreshedCatalog,omitempty"`
	ConnectionId         string `json:"connectionId"`
}

WebBackendConnectionRequestBody struct for WebBackendConnectionRequestBody

func NewWebBackendConnectionRequestBody

func NewWebBackendConnectionRequestBody(connectionId string) *WebBackendConnectionRequestBody

NewWebBackendConnectionRequestBody instantiates a new WebBackendConnectionRequestBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebBackendConnectionRequestBodyWithDefaults

func NewWebBackendConnectionRequestBodyWithDefaults() *WebBackendConnectionRequestBody

NewWebBackendConnectionRequestBodyWithDefaults instantiates a new WebBackendConnectionRequestBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebBackendConnectionRequestBody) GetConnectionId

func (o *WebBackendConnectionRequestBody) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*WebBackendConnectionRequestBody) GetConnectionIdOk

func (o *WebBackendConnectionRequestBody) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value and a boolean to check if the value has been set.

func (*WebBackendConnectionRequestBody) GetWithRefreshedCatalog

func (o *WebBackendConnectionRequestBody) GetWithRefreshedCatalog() bool

GetWithRefreshedCatalog returns the WithRefreshedCatalog field value if set, zero value otherwise.

func (*WebBackendConnectionRequestBody) GetWithRefreshedCatalogOk

func (o *WebBackendConnectionRequestBody) GetWithRefreshedCatalogOk() (*bool, bool)

GetWithRefreshedCatalogOk returns a tuple with the WithRefreshedCatalog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionRequestBody) HasWithRefreshedCatalog

func (o *WebBackendConnectionRequestBody) HasWithRefreshedCatalog() bool

HasWithRefreshedCatalog returns a boolean if a field has been set.

func (WebBackendConnectionRequestBody) MarshalJSON

func (o WebBackendConnectionRequestBody) MarshalJSON() ([]byte, error)

func (*WebBackendConnectionRequestBody) SetConnectionId

func (o *WebBackendConnectionRequestBody) SetConnectionId(v string)

SetConnectionId sets field value

func (*WebBackendConnectionRequestBody) SetWithRefreshedCatalog

func (o *WebBackendConnectionRequestBody) SetWithRefreshedCatalog(v bool)

SetWithRefreshedCatalog gets a reference to the given bool and assigns it to the WithRefreshedCatalog field.

type WebBackendConnectionSearch

type WebBackendConnectionSearch struct {
	ConnectionId        *string                  `json:"connectionId,omitempty"`
	Name                *string                  `json:"name,omitempty"`
	NamespaceDefinition *NamespaceDefinitionType `json:"namespaceDefinition,omitempty"`
	// Used when namespaceDefinition is 'customformat'. If blank then behaves like namespaceDefinition = 'destination'. If \"${SOURCE_NAMESPACE}\" then behaves like namespaceDefinition = 'source'.
	NamespaceFormat *string `json:"namespaceFormat,omitempty"`
	// Prefix that will be prepended to the name of each stream when it is written to the destination.
	Prefix        *string             `json:"prefix,omitempty"`
	SourceId      *string             `json:"sourceId,omitempty"`
	DestinationId *string             `json:"destinationId,omitempty"`
	Schedule      *ConnectionSchedule `json:"schedule,omitempty"`
	Status        *ConnectionStatus   `json:"status,omitempty"`
	Source        *SourceSearch       `json:"source,omitempty"`
	Destination   *DestinationSearch  `json:"destination,omitempty"`
}

WebBackendConnectionSearch struct for WebBackendConnectionSearch

func NewWebBackendConnectionSearch

func NewWebBackendConnectionSearch() *WebBackendConnectionSearch

NewWebBackendConnectionSearch instantiates a new WebBackendConnectionSearch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebBackendConnectionSearchWithDefaults

func NewWebBackendConnectionSearchWithDefaults() *WebBackendConnectionSearch

NewWebBackendConnectionSearchWithDefaults instantiates a new WebBackendConnectionSearch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebBackendConnectionSearch) GetConnectionId

func (o *WebBackendConnectionSearch) GetConnectionId() string

GetConnectionId returns the ConnectionId field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetConnectionIdOk

func (o *WebBackendConnectionSearch) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionSearch) GetDestination

func (o *WebBackendConnectionSearch) GetDestination() DestinationSearch

GetDestination returns the Destination field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetDestinationId

func (o *WebBackendConnectionSearch) GetDestinationId() string

GetDestinationId returns the DestinationId field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetDestinationIdOk

func (o *WebBackendConnectionSearch) GetDestinationIdOk() (*string, bool)

GetDestinationIdOk returns a tuple with the DestinationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionSearch) GetDestinationOk

func (o *WebBackendConnectionSearch) GetDestinationOk() (*DestinationSearch, bool)

GetDestinationOk returns a tuple with the Destination field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionSearch) GetName

func (o *WebBackendConnectionSearch) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetNameOk

func (o *WebBackendConnectionSearch) 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 (*WebBackendConnectionSearch) GetNamespaceDefinition

func (o *WebBackendConnectionSearch) GetNamespaceDefinition() NamespaceDefinitionType

GetNamespaceDefinition returns the NamespaceDefinition field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetNamespaceDefinitionOk

func (o *WebBackendConnectionSearch) GetNamespaceDefinitionOk() (*NamespaceDefinitionType, bool)

GetNamespaceDefinitionOk returns a tuple with the NamespaceDefinition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionSearch) GetNamespaceFormat

func (o *WebBackendConnectionSearch) GetNamespaceFormat() string

GetNamespaceFormat returns the NamespaceFormat field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetNamespaceFormatOk

func (o *WebBackendConnectionSearch) GetNamespaceFormatOk() (*string, bool)

GetNamespaceFormatOk returns a tuple with the NamespaceFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionSearch) GetPrefix

func (o *WebBackendConnectionSearch) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetPrefixOk

func (o *WebBackendConnectionSearch) GetPrefixOk() (*string, bool)

GetPrefixOk returns a tuple with the Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionSearch) GetSchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetScheduleOk

func (o *WebBackendConnectionSearch) GetScheduleOk() (*ConnectionSchedule, 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 (*WebBackendConnectionSearch) GetSource

GetSource returns the Source field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetSourceId

func (o *WebBackendConnectionSearch) GetSourceId() string

GetSourceId returns the SourceId field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetSourceIdOk

func (o *WebBackendConnectionSearch) GetSourceIdOk() (*string, bool)

GetSourceIdOk returns a tuple with the SourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionSearch) GetSourceOk

func (o *WebBackendConnectionSearch) GetSourceOk() (*SourceSearch, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionSearch) GetStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*WebBackendConnectionSearch) GetStatusOk

func (o *WebBackendConnectionSearch) GetStatusOk() (*ConnectionStatus, 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 (*WebBackendConnectionSearch) HasConnectionId

func (o *WebBackendConnectionSearch) HasConnectionId() bool

HasConnectionId returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasDestination

func (o *WebBackendConnectionSearch) HasDestination() bool

HasDestination returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasDestinationId

func (o *WebBackendConnectionSearch) HasDestinationId() bool

HasDestinationId returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasName

func (o *WebBackendConnectionSearch) HasName() bool

HasName returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasNamespaceDefinition

func (o *WebBackendConnectionSearch) HasNamespaceDefinition() bool

HasNamespaceDefinition returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasNamespaceFormat

func (o *WebBackendConnectionSearch) HasNamespaceFormat() bool

HasNamespaceFormat returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasPrefix

func (o *WebBackendConnectionSearch) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasSchedule

func (o *WebBackendConnectionSearch) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasSource

func (o *WebBackendConnectionSearch) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasSourceId

func (o *WebBackendConnectionSearch) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

func (*WebBackendConnectionSearch) HasStatus

func (o *WebBackendConnectionSearch) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (WebBackendConnectionSearch) MarshalJSON

func (o WebBackendConnectionSearch) MarshalJSON() ([]byte, error)

func (*WebBackendConnectionSearch) SetConnectionId

func (o *WebBackendConnectionSearch) SetConnectionId(v string)

SetConnectionId gets a reference to the given string and assigns it to the ConnectionId field.

func (*WebBackendConnectionSearch) SetDestination

func (o *WebBackendConnectionSearch) SetDestination(v DestinationSearch)

SetDestination gets a reference to the given DestinationSearch and assigns it to the Destination field.

func (*WebBackendConnectionSearch) SetDestinationId

func (o *WebBackendConnectionSearch) SetDestinationId(v string)

SetDestinationId gets a reference to the given string and assigns it to the DestinationId field.

func (*WebBackendConnectionSearch) SetName

func (o *WebBackendConnectionSearch) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*WebBackendConnectionSearch) SetNamespaceDefinition

func (o *WebBackendConnectionSearch) SetNamespaceDefinition(v NamespaceDefinitionType)

SetNamespaceDefinition gets a reference to the given NamespaceDefinitionType and assigns it to the NamespaceDefinition field.

func (*WebBackendConnectionSearch) SetNamespaceFormat

func (o *WebBackendConnectionSearch) SetNamespaceFormat(v string)

SetNamespaceFormat gets a reference to the given string and assigns it to the NamespaceFormat field.

func (*WebBackendConnectionSearch) SetPrefix

func (o *WebBackendConnectionSearch) SetPrefix(v string)

SetPrefix gets a reference to the given string and assigns it to the Prefix field.

func (*WebBackendConnectionSearch) SetSchedule

SetSchedule gets a reference to the given ConnectionSchedule and assigns it to the Schedule field.

func (*WebBackendConnectionSearch) SetSource

func (o *WebBackendConnectionSearch) SetSource(v SourceSearch)

SetSource gets a reference to the given SourceSearch and assigns it to the Source field.

func (*WebBackendConnectionSearch) SetSourceId

func (o *WebBackendConnectionSearch) SetSourceId(v string)

SetSourceId gets a reference to the given string and assigns it to the SourceId field.

func (*WebBackendConnectionSearch) SetStatus

SetStatus gets a reference to the given ConnectionStatus and assigns it to the Status field.

type WebBackendConnectionUpdate

type WebBackendConnectionUpdate struct {
	ConnectionId        string                   `json:"connectionId"`
	NamespaceDefinition *NamespaceDefinitionType `json:"namespaceDefinition,omitempty"`
	// Used when namespaceDefinition is 'customformat'. If blank then behaves like namespaceDefinition = 'destination'. If \"${SOURCE_NAMESPACE}\" then behaves like namespaceDefinition = 'source'.
	NamespaceFormat *string `json:"namespaceFormat,omitempty"`
	// Prefix that will be prepended to the name of each stream when it is written to the destination.
	Prefix               *string                             `json:"prefix,omitempty"`
	OperationIds         []string                            `json:"operationIds,omitempty"`
	SyncCatalog          AirbyteCatalog                      `json:"syncCatalog"`
	Schedule             *ConnectionSchedule                 `json:"schedule,omitempty"`
	Status               ConnectionStatus                    `json:"status"`
	ResourceRequirements *ResourceRequirements               `json:"resourceRequirements,omitempty"`
	WithRefreshedCatalog *bool                               `json:"withRefreshedCatalog,omitempty"`
	Operations           []WebBackendOperationCreateOrUpdate `json:"operations,omitempty"`
}

WebBackendConnectionUpdate struct for WebBackendConnectionUpdate

func NewWebBackendConnectionUpdate

func NewWebBackendConnectionUpdate(connectionId string, syncCatalog AirbyteCatalog, status ConnectionStatus) *WebBackendConnectionUpdate

NewWebBackendConnectionUpdate instantiates a new WebBackendConnectionUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebBackendConnectionUpdateWithDefaults

func NewWebBackendConnectionUpdateWithDefaults() *WebBackendConnectionUpdate

NewWebBackendConnectionUpdateWithDefaults instantiates a new WebBackendConnectionUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebBackendConnectionUpdate) GetConnectionId

func (o *WebBackendConnectionUpdate) GetConnectionId() string

GetConnectionId returns the ConnectionId field value

func (*WebBackendConnectionUpdate) GetConnectionIdOk

func (o *WebBackendConnectionUpdate) GetConnectionIdOk() (*string, bool)

GetConnectionIdOk returns a tuple with the ConnectionId field value and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetNamespaceDefinition

func (o *WebBackendConnectionUpdate) GetNamespaceDefinition() NamespaceDefinitionType

GetNamespaceDefinition returns the NamespaceDefinition field value if set, zero value otherwise.

func (*WebBackendConnectionUpdate) GetNamespaceDefinitionOk

func (o *WebBackendConnectionUpdate) GetNamespaceDefinitionOk() (*NamespaceDefinitionType, bool)

GetNamespaceDefinitionOk returns a tuple with the NamespaceDefinition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetNamespaceFormat

func (o *WebBackendConnectionUpdate) GetNamespaceFormat() string

GetNamespaceFormat returns the NamespaceFormat field value if set, zero value otherwise.

func (*WebBackendConnectionUpdate) GetNamespaceFormatOk

func (o *WebBackendConnectionUpdate) GetNamespaceFormatOk() (*string, bool)

GetNamespaceFormatOk returns a tuple with the NamespaceFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetOperationIds

func (o *WebBackendConnectionUpdate) GetOperationIds() []string

GetOperationIds returns the OperationIds field value if set, zero value otherwise.

func (*WebBackendConnectionUpdate) GetOperationIdsOk

func (o *WebBackendConnectionUpdate) GetOperationIdsOk() ([]string, bool)

GetOperationIdsOk returns a tuple with the OperationIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetOperations

GetOperations returns the Operations field value if set, zero value otherwise.

func (*WebBackendConnectionUpdate) GetOperationsOk

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetPrefix

func (o *WebBackendConnectionUpdate) GetPrefix() string

GetPrefix returns the Prefix field value if set, zero value otherwise.

func (*WebBackendConnectionUpdate) GetPrefixOk

func (o *WebBackendConnectionUpdate) GetPrefixOk() (*string, bool)

GetPrefixOk returns a tuple with the Prefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetResourceRequirements

func (o *WebBackendConnectionUpdate) GetResourceRequirements() ResourceRequirements

GetResourceRequirements returns the ResourceRequirements field value if set, zero value otherwise.

func (*WebBackendConnectionUpdate) GetResourceRequirementsOk

func (o *WebBackendConnectionUpdate) GetResourceRequirementsOk() (*ResourceRequirements, bool)

GetResourceRequirementsOk returns a tuple with the ResourceRequirements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetSchedule

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*WebBackendConnectionUpdate) GetScheduleOk

func (o *WebBackendConnectionUpdate) GetScheduleOk() (*ConnectionSchedule, 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 (*WebBackendConnectionUpdate) GetStatus

GetStatus returns the Status field value

func (*WebBackendConnectionUpdate) GetStatusOk

func (o *WebBackendConnectionUpdate) GetStatusOk() (*ConnectionStatus, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetSyncCatalog

func (o *WebBackendConnectionUpdate) GetSyncCatalog() AirbyteCatalog

GetSyncCatalog returns the SyncCatalog field value

func (*WebBackendConnectionUpdate) GetSyncCatalogOk

func (o *WebBackendConnectionUpdate) GetSyncCatalogOk() (*AirbyteCatalog, bool)

GetSyncCatalogOk returns a tuple with the SyncCatalog field value and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) GetWithRefreshedCatalog

func (o *WebBackendConnectionUpdate) GetWithRefreshedCatalog() bool

GetWithRefreshedCatalog returns the WithRefreshedCatalog field value if set, zero value otherwise.

func (*WebBackendConnectionUpdate) GetWithRefreshedCatalogOk

func (o *WebBackendConnectionUpdate) GetWithRefreshedCatalogOk() (*bool, bool)

GetWithRefreshedCatalogOk returns a tuple with the WithRefreshedCatalog field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendConnectionUpdate) HasNamespaceDefinition

func (o *WebBackendConnectionUpdate) HasNamespaceDefinition() bool

HasNamespaceDefinition returns a boolean if a field has been set.

func (*WebBackendConnectionUpdate) HasNamespaceFormat

func (o *WebBackendConnectionUpdate) HasNamespaceFormat() bool

HasNamespaceFormat returns a boolean if a field has been set.

func (*WebBackendConnectionUpdate) HasOperationIds

func (o *WebBackendConnectionUpdate) HasOperationIds() bool

HasOperationIds returns a boolean if a field has been set.

func (*WebBackendConnectionUpdate) HasOperations

func (o *WebBackendConnectionUpdate) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (*WebBackendConnectionUpdate) HasPrefix

func (o *WebBackendConnectionUpdate) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

func (*WebBackendConnectionUpdate) HasResourceRequirements

func (o *WebBackendConnectionUpdate) HasResourceRequirements() bool

HasResourceRequirements returns a boolean if a field has been set.

func (*WebBackendConnectionUpdate) HasSchedule

func (o *WebBackendConnectionUpdate) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*WebBackendConnectionUpdate) HasWithRefreshedCatalog

func (o *WebBackendConnectionUpdate) HasWithRefreshedCatalog() bool

HasWithRefreshedCatalog returns a boolean if a field has been set.

func (WebBackendConnectionUpdate) MarshalJSON

func (o WebBackendConnectionUpdate) MarshalJSON() ([]byte, error)

func (*WebBackendConnectionUpdate) SetConnectionId

func (o *WebBackendConnectionUpdate) SetConnectionId(v string)

SetConnectionId sets field value

func (*WebBackendConnectionUpdate) SetNamespaceDefinition

func (o *WebBackendConnectionUpdate) SetNamespaceDefinition(v NamespaceDefinitionType)

SetNamespaceDefinition gets a reference to the given NamespaceDefinitionType and assigns it to the NamespaceDefinition field.

func (*WebBackendConnectionUpdate) SetNamespaceFormat

func (o *WebBackendConnectionUpdate) SetNamespaceFormat(v string)

SetNamespaceFormat gets a reference to the given string and assigns it to the NamespaceFormat field.

func (*WebBackendConnectionUpdate) SetOperationIds

func (o *WebBackendConnectionUpdate) SetOperationIds(v []string)

SetOperationIds gets a reference to the given []string and assigns it to the OperationIds field.

func (*WebBackendConnectionUpdate) SetOperations

SetOperations gets a reference to the given []WebBackendOperationCreateOrUpdate and assigns it to the Operations field.

func (*WebBackendConnectionUpdate) SetPrefix

func (o *WebBackendConnectionUpdate) SetPrefix(v string)

SetPrefix gets a reference to the given string and assigns it to the Prefix field.

func (*WebBackendConnectionUpdate) SetResourceRequirements

func (o *WebBackendConnectionUpdate) SetResourceRequirements(v ResourceRequirements)

SetResourceRequirements gets a reference to the given ResourceRequirements and assigns it to the ResourceRequirements field.

func (*WebBackendConnectionUpdate) SetSchedule

SetSchedule gets a reference to the given ConnectionSchedule and assigns it to the Schedule field.

func (*WebBackendConnectionUpdate) SetStatus

SetStatus sets field value

func (*WebBackendConnectionUpdate) SetSyncCatalog

func (o *WebBackendConnectionUpdate) SetSyncCatalog(v AirbyteCatalog)

SetSyncCatalog sets field value

func (*WebBackendConnectionUpdate) SetWithRefreshedCatalog

func (o *WebBackendConnectionUpdate) SetWithRefreshedCatalog(v bool)

SetWithRefreshedCatalog gets a reference to the given bool and assigns it to the WithRefreshedCatalog field.

type WebBackendOperationCreateOrUpdate

type WebBackendOperationCreateOrUpdate struct {
	OperationId           *string               `json:"operationId,omitempty"`
	WorkspaceId           string                `json:"workspaceId"`
	Name                  string                `json:"name"`
	OperatorConfiguration OperatorConfiguration `json:"operatorConfiguration"`
}

WebBackendOperationCreateOrUpdate struct for WebBackendOperationCreateOrUpdate

func NewWebBackendOperationCreateOrUpdate

func NewWebBackendOperationCreateOrUpdate(workspaceId string, name string, operatorConfiguration OperatorConfiguration) *WebBackendOperationCreateOrUpdate

NewWebBackendOperationCreateOrUpdate instantiates a new WebBackendOperationCreateOrUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWebBackendOperationCreateOrUpdateWithDefaults

func NewWebBackendOperationCreateOrUpdateWithDefaults() *WebBackendOperationCreateOrUpdate

NewWebBackendOperationCreateOrUpdateWithDefaults instantiates a new WebBackendOperationCreateOrUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WebBackendOperationCreateOrUpdate) GetName

GetName returns the Name field value

func (*WebBackendOperationCreateOrUpdate) GetNameOk

func (o *WebBackendOperationCreateOrUpdate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WebBackendOperationCreateOrUpdate) GetOperationId

func (o *WebBackendOperationCreateOrUpdate) GetOperationId() string

GetOperationId returns the OperationId field value if set, zero value otherwise.

func (*WebBackendOperationCreateOrUpdate) GetOperationIdOk

func (o *WebBackendOperationCreateOrUpdate) GetOperationIdOk() (*string, bool)

GetOperationIdOk returns a tuple with the OperationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WebBackendOperationCreateOrUpdate) GetOperatorConfiguration

func (o *WebBackendOperationCreateOrUpdate) GetOperatorConfiguration() OperatorConfiguration

GetOperatorConfiguration returns the OperatorConfiguration field value

func (*WebBackendOperationCreateOrUpdate) GetOperatorConfigurationOk

func (o *WebBackendOperationCreateOrUpdate) GetOperatorConfigurationOk() (*OperatorConfiguration, bool)

GetOperatorConfigurationOk returns a tuple with the OperatorConfiguration field value and a boolean to check if the value has been set.

func (*WebBackendOperationCreateOrUpdate) GetWorkspaceId

func (o *WebBackendOperationCreateOrUpdate) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WebBackendOperationCreateOrUpdate) GetWorkspaceIdOk

func (o *WebBackendOperationCreateOrUpdate) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*WebBackendOperationCreateOrUpdate) HasOperationId

func (o *WebBackendOperationCreateOrUpdate) HasOperationId() bool

HasOperationId returns a boolean if a field has been set.

func (WebBackendOperationCreateOrUpdate) MarshalJSON

func (o WebBackendOperationCreateOrUpdate) MarshalJSON() ([]byte, error)

func (*WebBackendOperationCreateOrUpdate) SetName

SetName sets field value

func (*WebBackendOperationCreateOrUpdate) SetOperationId

func (o *WebBackendOperationCreateOrUpdate) SetOperationId(v string)

SetOperationId gets a reference to the given string and assigns it to the OperationId field.

func (*WebBackendOperationCreateOrUpdate) SetOperatorConfiguration

func (o *WebBackendOperationCreateOrUpdate) SetOperatorConfiguration(v OperatorConfiguration)

SetOperatorConfiguration sets field value

func (*WebBackendOperationCreateOrUpdate) SetWorkspaceId

func (o *WebBackendOperationCreateOrUpdate) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceApiService

type WorkspaceApiService service

WorkspaceApiService WorkspaceApi service

func (*WorkspaceApiService) CreateWorkspace

CreateWorkspace Creates a workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateWorkspaceRequest

func (*WorkspaceApiService) CreateWorkspaceExecute

Execute executes the request

@return WorkspaceRead

func (*WorkspaceApiService) DeleteWorkspace

DeleteWorkspace Deletes a workspace

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteWorkspaceRequest

func (*WorkspaceApiService) DeleteWorkspaceExecute

func (a *WorkspaceApiService) DeleteWorkspaceExecute(r ApiDeleteWorkspaceRequest) (*http.Response, error)

Execute executes the request

func (*WorkspaceApiService) GetWorkspace

GetWorkspace Find workspace by ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetWorkspaceRequest

func (*WorkspaceApiService) GetWorkspaceBySlug

GetWorkspaceBySlug Find workspace by slug

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetWorkspaceBySlugRequest

func (*WorkspaceApiService) GetWorkspaceBySlugExecute

func (a *WorkspaceApiService) GetWorkspaceBySlugExecute(r ApiGetWorkspaceBySlugRequest) (*WorkspaceRead, *http.Response, error)

Execute executes the request

@return WorkspaceRead

func (*WorkspaceApiService) GetWorkspaceExecute

Execute executes the request

@return WorkspaceRead

func (*WorkspaceApiService) ListWorkspaces

ListWorkspaces List all workspaces registered in the current Airbyte deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListWorkspacesRequest

func (*WorkspaceApiService) ListWorkspacesExecute

Execute executes the request

@return WorkspaceReadList

func (*WorkspaceApiService) UpdateWorkspace

UpdateWorkspace Update workspace state

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateWorkspaceRequest

func (*WorkspaceApiService) UpdateWorkspaceExecute

Execute executes the request

@return WorkspaceRead

func (*WorkspaceApiService) UpdateWorkspaceFeedback

func (a *WorkspaceApiService) UpdateWorkspaceFeedback(ctx context.Context) ApiUpdateWorkspaceFeedbackRequest

UpdateWorkspaceFeedback Update workspace feedback state

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateWorkspaceFeedbackRequest

func (*WorkspaceApiService) UpdateWorkspaceFeedbackExecute

func (a *WorkspaceApiService) UpdateWorkspaceFeedbackExecute(r ApiUpdateWorkspaceFeedbackRequest) (*http.Response, error)

Execute executes the request

func (*WorkspaceApiService) UpdateWorkspaceName

UpdateWorkspaceName Update workspace name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateWorkspaceNameRequest

func (*WorkspaceApiService) UpdateWorkspaceNameExecute

func (a *WorkspaceApiService) UpdateWorkspaceNameExecute(r ApiUpdateWorkspaceNameRequest) (*WorkspaceRead, *http.Response, error)

Execute executes the request

@return WorkspaceRead

type WorkspaceCreate

type WorkspaceCreate struct {
	Email                   *string        `json:"email,omitempty"`
	AnonymousDataCollection *bool          `json:"anonymousDataCollection,omitempty"`
	Name                    string         `json:"name"`
	News                    *bool          `json:"news,omitempty"`
	SecurityUpdates         *bool          `json:"securityUpdates,omitempty"`
	Notifications           []Notification `json:"notifications,omitempty"`
	DisplaySetupWizard      *bool          `json:"displaySetupWizard,omitempty"`
}

WorkspaceCreate struct for WorkspaceCreate

func NewWorkspaceCreate

func NewWorkspaceCreate(name string) *WorkspaceCreate

NewWorkspaceCreate instantiates a new WorkspaceCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkspaceCreateWithDefaults

func NewWorkspaceCreateWithDefaults() *WorkspaceCreate

NewWorkspaceCreateWithDefaults instantiates a new WorkspaceCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkspaceCreate) GetAnonymousDataCollection

func (o *WorkspaceCreate) GetAnonymousDataCollection() bool

GetAnonymousDataCollection returns the AnonymousDataCollection field value if set, zero value otherwise.

func (*WorkspaceCreate) GetAnonymousDataCollectionOk

func (o *WorkspaceCreate) GetAnonymousDataCollectionOk() (*bool, bool)

GetAnonymousDataCollectionOk returns a tuple with the AnonymousDataCollection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceCreate) GetDisplaySetupWizard

func (o *WorkspaceCreate) GetDisplaySetupWizard() bool

GetDisplaySetupWizard returns the DisplaySetupWizard field value if set, zero value otherwise.

func (*WorkspaceCreate) GetDisplaySetupWizardOk

func (o *WorkspaceCreate) GetDisplaySetupWizardOk() (*bool, bool)

GetDisplaySetupWizardOk returns a tuple with the DisplaySetupWizard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceCreate) GetEmail

func (o *WorkspaceCreate) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*WorkspaceCreate) GetEmailOk

func (o *WorkspaceCreate) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceCreate) GetName

func (o *WorkspaceCreate) GetName() string

GetName returns the Name field value

func (*WorkspaceCreate) GetNameOk

func (o *WorkspaceCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkspaceCreate) GetNews

func (o *WorkspaceCreate) GetNews() bool

GetNews returns the News field value if set, zero value otherwise.

func (*WorkspaceCreate) GetNewsOk

func (o *WorkspaceCreate) GetNewsOk() (*bool, bool)

GetNewsOk returns a tuple with the News field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceCreate) GetNotifications

func (o *WorkspaceCreate) GetNotifications() []Notification

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*WorkspaceCreate) GetNotificationsOk

func (o *WorkspaceCreate) GetNotificationsOk() ([]Notification, bool)

GetNotificationsOk returns a tuple with the Notifications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceCreate) GetSecurityUpdates

func (o *WorkspaceCreate) GetSecurityUpdates() bool

GetSecurityUpdates returns the SecurityUpdates field value if set, zero value otherwise.

func (*WorkspaceCreate) GetSecurityUpdatesOk

func (o *WorkspaceCreate) GetSecurityUpdatesOk() (*bool, bool)

GetSecurityUpdatesOk returns a tuple with the SecurityUpdates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceCreate) HasAnonymousDataCollection

func (o *WorkspaceCreate) HasAnonymousDataCollection() bool

HasAnonymousDataCollection returns a boolean if a field has been set.

func (*WorkspaceCreate) HasDisplaySetupWizard

func (o *WorkspaceCreate) HasDisplaySetupWizard() bool

HasDisplaySetupWizard returns a boolean if a field has been set.

func (*WorkspaceCreate) HasEmail

func (o *WorkspaceCreate) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*WorkspaceCreate) HasNews

func (o *WorkspaceCreate) HasNews() bool

HasNews returns a boolean if a field has been set.

func (*WorkspaceCreate) HasNotifications

func (o *WorkspaceCreate) HasNotifications() bool

HasNotifications returns a boolean if a field has been set.

func (*WorkspaceCreate) HasSecurityUpdates

func (o *WorkspaceCreate) HasSecurityUpdates() bool

HasSecurityUpdates returns a boolean if a field has been set.

func (WorkspaceCreate) MarshalJSON

func (o WorkspaceCreate) MarshalJSON() ([]byte, error)

func (*WorkspaceCreate) SetAnonymousDataCollection

func (o *WorkspaceCreate) SetAnonymousDataCollection(v bool)

SetAnonymousDataCollection gets a reference to the given bool and assigns it to the AnonymousDataCollection field.

func (*WorkspaceCreate) SetDisplaySetupWizard

func (o *WorkspaceCreate) SetDisplaySetupWizard(v bool)

SetDisplaySetupWizard gets a reference to the given bool and assigns it to the DisplaySetupWizard field.

func (*WorkspaceCreate) SetEmail

func (o *WorkspaceCreate) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*WorkspaceCreate) SetName

func (o *WorkspaceCreate) SetName(v string)

SetName sets field value

func (*WorkspaceCreate) SetNews

func (o *WorkspaceCreate) SetNews(v bool)

SetNews gets a reference to the given bool and assigns it to the News field.

func (*WorkspaceCreate) SetNotifications

func (o *WorkspaceCreate) SetNotifications(v []Notification)

SetNotifications gets a reference to the given []Notification and assigns it to the Notifications field.

func (*WorkspaceCreate) SetSecurityUpdates

func (o *WorkspaceCreate) SetSecurityUpdates(v bool)

SetSecurityUpdates gets a reference to the given bool and assigns it to the SecurityUpdates field.

type WorkspaceGiveFeedback

type WorkspaceGiveFeedback struct {
	WorkspaceId string `json:"workspaceId"`
}

WorkspaceGiveFeedback struct for WorkspaceGiveFeedback

func NewWorkspaceGiveFeedback

func NewWorkspaceGiveFeedback(workspaceId string) *WorkspaceGiveFeedback

NewWorkspaceGiveFeedback instantiates a new WorkspaceGiveFeedback object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkspaceGiveFeedbackWithDefaults

func NewWorkspaceGiveFeedbackWithDefaults() *WorkspaceGiveFeedback

NewWorkspaceGiveFeedbackWithDefaults instantiates a new WorkspaceGiveFeedback object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkspaceGiveFeedback) GetWorkspaceId

func (o *WorkspaceGiveFeedback) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceGiveFeedback) GetWorkspaceIdOk

func (o *WorkspaceGiveFeedback) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (WorkspaceGiveFeedback) MarshalJSON

func (o WorkspaceGiveFeedback) MarshalJSON() ([]byte, error)

func (*WorkspaceGiveFeedback) SetWorkspaceId

func (o *WorkspaceGiveFeedback) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceIdRequestBody

type WorkspaceIdRequestBody struct {
	WorkspaceId string `json:"workspaceId"`
}

WorkspaceIdRequestBody struct for WorkspaceIdRequestBody

func NewWorkspaceIdRequestBody

func NewWorkspaceIdRequestBody(workspaceId string) *WorkspaceIdRequestBody

NewWorkspaceIdRequestBody instantiates a new WorkspaceIdRequestBody object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkspaceIdRequestBodyWithDefaults

func NewWorkspaceIdRequestBodyWithDefaults() *WorkspaceIdRequestBody

NewWorkspaceIdRequestBodyWithDefaults instantiates a new WorkspaceIdRequestBody object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkspaceIdRequestBody) GetWorkspaceId

func (o *WorkspaceIdRequestBody) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceIdRequestBody) GetWorkspaceIdOk

func (o *WorkspaceIdRequestBody) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (WorkspaceIdRequestBody) MarshalJSON

func (o WorkspaceIdRequestBody) MarshalJSON() ([]byte, error)

func (*WorkspaceIdRequestBody) SetWorkspaceId

func (o *WorkspaceIdRequestBody) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceRead

type WorkspaceRead struct {
	WorkspaceId             string         `json:"workspaceId"`
	CustomerId              string         `json:"customerId"`
	Email                   *string        `json:"email,omitempty"`
	Name                    string         `json:"name"`
	Slug                    string         `json:"slug"`
	InitialSetupComplete    bool           `json:"initialSetupComplete"`
	DisplaySetupWizard      *bool          `json:"displaySetupWizard,omitempty"`
	AnonymousDataCollection *bool          `json:"anonymousDataCollection,omitempty"`
	News                    *bool          `json:"news,omitempty"`
	SecurityUpdates         *bool          `json:"securityUpdates,omitempty"`
	Notifications           []Notification `json:"notifications,omitempty"`
	FirstCompletedSync      *bool          `json:"firstCompletedSync,omitempty"`
	FeedbackDone            *bool          `json:"feedbackDone,omitempty"`
}

WorkspaceRead struct for WorkspaceRead

func NewWorkspaceRead

func NewWorkspaceRead(workspaceId string, customerId string, name string, slug string, initialSetupComplete bool) *WorkspaceRead

NewWorkspaceRead instantiates a new WorkspaceRead object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkspaceReadWithDefaults

func NewWorkspaceReadWithDefaults() *WorkspaceRead

NewWorkspaceReadWithDefaults instantiates a new WorkspaceRead object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkspaceRead) GetAnonymousDataCollection

func (o *WorkspaceRead) GetAnonymousDataCollection() bool

GetAnonymousDataCollection returns the AnonymousDataCollection field value if set, zero value otherwise.

func (*WorkspaceRead) GetAnonymousDataCollectionOk

func (o *WorkspaceRead) GetAnonymousDataCollectionOk() (*bool, bool)

GetAnonymousDataCollectionOk returns a tuple with the AnonymousDataCollection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceRead) GetCustomerId

func (o *WorkspaceRead) GetCustomerId() string

GetCustomerId returns the CustomerId field value

func (*WorkspaceRead) GetCustomerIdOk

func (o *WorkspaceRead) GetCustomerIdOk() (*string, bool)

GetCustomerIdOk returns a tuple with the CustomerId field value and a boolean to check if the value has been set.

func (*WorkspaceRead) GetDisplaySetupWizard

func (o *WorkspaceRead) GetDisplaySetupWizard() bool

GetDisplaySetupWizard returns the DisplaySetupWizard field value if set, zero value otherwise.

func (*WorkspaceRead) GetDisplaySetupWizardOk

func (o *WorkspaceRead) GetDisplaySetupWizardOk() (*bool, bool)

GetDisplaySetupWizardOk returns a tuple with the DisplaySetupWizard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceRead) GetEmail

func (o *WorkspaceRead) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*WorkspaceRead) GetEmailOk

func (o *WorkspaceRead) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceRead) GetFeedbackDone

func (o *WorkspaceRead) GetFeedbackDone() bool

GetFeedbackDone returns the FeedbackDone field value if set, zero value otherwise.

func (*WorkspaceRead) GetFeedbackDoneOk

func (o *WorkspaceRead) GetFeedbackDoneOk() (*bool, bool)

GetFeedbackDoneOk returns a tuple with the FeedbackDone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceRead) GetFirstCompletedSync

func (o *WorkspaceRead) GetFirstCompletedSync() bool

GetFirstCompletedSync returns the FirstCompletedSync field value if set, zero value otherwise.

func (*WorkspaceRead) GetFirstCompletedSyncOk

func (o *WorkspaceRead) GetFirstCompletedSyncOk() (*bool, bool)

GetFirstCompletedSyncOk returns a tuple with the FirstCompletedSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceRead) GetInitialSetupComplete

func (o *WorkspaceRead) GetInitialSetupComplete() bool

GetInitialSetupComplete returns the InitialSetupComplete field value

func (*WorkspaceRead) GetInitialSetupCompleteOk

func (o *WorkspaceRead) GetInitialSetupCompleteOk() (*bool, bool)

GetInitialSetupCompleteOk returns a tuple with the InitialSetupComplete field value and a boolean to check if the value has been set.

func (*WorkspaceRead) GetName

func (o *WorkspaceRead) GetName() string

GetName returns the Name field value

func (*WorkspaceRead) GetNameOk

func (o *WorkspaceRead) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkspaceRead) GetNews

func (o *WorkspaceRead) GetNews() bool

GetNews returns the News field value if set, zero value otherwise.

func (*WorkspaceRead) GetNewsOk

func (o *WorkspaceRead) GetNewsOk() (*bool, bool)

GetNewsOk returns a tuple with the News field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceRead) GetNotifications

func (o *WorkspaceRead) GetNotifications() []Notification

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*WorkspaceRead) GetNotificationsOk

func (o *WorkspaceRead) GetNotificationsOk() ([]Notification, bool)

GetNotificationsOk returns a tuple with the Notifications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceRead) GetSecurityUpdates

func (o *WorkspaceRead) GetSecurityUpdates() bool

GetSecurityUpdates returns the SecurityUpdates field value if set, zero value otherwise.

func (*WorkspaceRead) GetSecurityUpdatesOk

func (o *WorkspaceRead) GetSecurityUpdatesOk() (*bool, bool)

GetSecurityUpdatesOk returns a tuple with the SecurityUpdates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceRead) GetSlug

func (o *WorkspaceRead) GetSlug() string

GetSlug returns the Slug field value

func (*WorkspaceRead) GetSlugOk

func (o *WorkspaceRead) GetSlugOk() (*string, bool)

GetSlugOk returns a tuple with the Slug field value and a boolean to check if the value has been set.

func (*WorkspaceRead) GetWorkspaceId

func (o *WorkspaceRead) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceRead) GetWorkspaceIdOk

func (o *WorkspaceRead) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*WorkspaceRead) HasAnonymousDataCollection

func (o *WorkspaceRead) HasAnonymousDataCollection() bool

HasAnonymousDataCollection returns a boolean if a field has been set.

func (*WorkspaceRead) HasDisplaySetupWizard

func (o *WorkspaceRead) HasDisplaySetupWizard() bool

HasDisplaySetupWizard returns a boolean if a field has been set.

func (*WorkspaceRead) HasEmail

func (o *WorkspaceRead) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*WorkspaceRead) HasFeedbackDone

func (o *WorkspaceRead) HasFeedbackDone() bool

HasFeedbackDone returns a boolean if a field has been set.

func (*WorkspaceRead) HasFirstCompletedSync

func (o *WorkspaceRead) HasFirstCompletedSync() bool

HasFirstCompletedSync returns a boolean if a field has been set.

func (*WorkspaceRead) HasNews

func (o *WorkspaceRead) HasNews() bool

HasNews returns a boolean if a field has been set.

func (*WorkspaceRead) HasNotifications

func (o *WorkspaceRead) HasNotifications() bool

HasNotifications returns a boolean if a field has been set.

func (*WorkspaceRead) HasSecurityUpdates

func (o *WorkspaceRead) HasSecurityUpdates() bool

HasSecurityUpdates returns a boolean if a field has been set.

func (WorkspaceRead) MarshalJSON

func (o WorkspaceRead) MarshalJSON() ([]byte, error)

func (*WorkspaceRead) SetAnonymousDataCollection

func (o *WorkspaceRead) SetAnonymousDataCollection(v bool)

SetAnonymousDataCollection gets a reference to the given bool and assigns it to the AnonymousDataCollection field.

func (*WorkspaceRead) SetCustomerId

func (o *WorkspaceRead) SetCustomerId(v string)

SetCustomerId sets field value

func (*WorkspaceRead) SetDisplaySetupWizard

func (o *WorkspaceRead) SetDisplaySetupWizard(v bool)

SetDisplaySetupWizard gets a reference to the given bool and assigns it to the DisplaySetupWizard field.

func (*WorkspaceRead) SetEmail

func (o *WorkspaceRead) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*WorkspaceRead) SetFeedbackDone

func (o *WorkspaceRead) SetFeedbackDone(v bool)

SetFeedbackDone gets a reference to the given bool and assigns it to the FeedbackDone field.

func (*WorkspaceRead) SetFirstCompletedSync

func (o *WorkspaceRead) SetFirstCompletedSync(v bool)

SetFirstCompletedSync gets a reference to the given bool and assigns it to the FirstCompletedSync field.

func (*WorkspaceRead) SetInitialSetupComplete

func (o *WorkspaceRead) SetInitialSetupComplete(v bool)

SetInitialSetupComplete sets field value

func (*WorkspaceRead) SetName

func (o *WorkspaceRead) SetName(v string)

SetName sets field value

func (*WorkspaceRead) SetNews

func (o *WorkspaceRead) SetNews(v bool)

SetNews gets a reference to the given bool and assigns it to the News field.

func (*WorkspaceRead) SetNotifications

func (o *WorkspaceRead) SetNotifications(v []Notification)

SetNotifications gets a reference to the given []Notification and assigns it to the Notifications field.

func (*WorkspaceRead) SetSecurityUpdates

func (o *WorkspaceRead) SetSecurityUpdates(v bool)

SetSecurityUpdates gets a reference to the given bool and assigns it to the SecurityUpdates field.

func (*WorkspaceRead) SetSlug

func (o *WorkspaceRead) SetSlug(v string)

SetSlug sets field value

func (*WorkspaceRead) SetWorkspaceId

func (o *WorkspaceRead) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceReadList

type WorkspaceReadList struct {
	Workspaces []WorkspaceRead `json:"workspaces"`
}

WorkspaceReadList struct for WorkspaceReadList

func NewWorkspaceReadList

func NewWorkspaceReadList(workspaces []WorkspaceRead) *WorkspaceReadList

NewWorkspaceReadList instantiates a new WorkspaceReadList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkspaceReadListWithDefaults

func NewWorkspaceReadListWithDefaults() *WorkspaceReadList

NewWorkspaceReadListWithDefaults instantiates a new WorkspaceReadList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkspaceReadList) GetWorkspaces

func (o *WorkspaceReadList) GetWorkspaces() []WorkspaceRead

GetWorkspaces returns the Workspaces field value

func (*WorkspaceReadList) GetWorkspacesOk

func (o *WorkspaceReadList) GetWorkspacesOk() ([]WorkspaceRead, bool)

GetWorkspacesOk returns a tuple with the Workspaces field value and a boolean to check if the value has been set.

func (WorkspaceReadList) MarshalJSON

func (o WorkspaceReadList) MarshalJSON() ([]byte, error)

func (*WorkspaceReadList) SetWorkspaces

func (o *WorkspaceReadList) SetWorkspaces(v []WorkspaceRead)

SetWorkspaces sets field value

type WorkspaceUpdate

type WorkspaceUpdate struct {
	WorkspaceId             string         `json:"workspaceId"`
	Email                   *string        `json:"email,omitempty"`
	InitialSetupComplete    bool           `json:"initialSetupComplete"`
	DisplaySetupWizard      *bool          `json:"displaySetupWizard,omitempty"`
	AnonymousDataCollection bool           `json:"anonymousDataCollection"`
	News                    bool           `json:"news"`
	SecurityUpdates         bool           `json:"securityUpdates"`
	Notifications           []Notification `json:"notifications,omitempty"`
}

WorkspaceUpdate struct for WorkspaceUpdate

func NewWorkspaceUpdate

func NewWorkspaceUpdate(workspaceId string, initialSetupComplete bool, anonymousDataCollection bool, news bool, securityUpdates bool) *WorkspaceUpdate

NewWorkspaceUpdate instantiates a new WorkspaceUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkspaceUpdateWithDefaults

func NewWorkspaceUpdateWithDefaults() *WorkspaceUpdate

NewWorkspaceUpdateWithDefaults instantiates a new WorkspaceUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkspaceUpdate) GetAnonymousDataCollection

func (o *WorkspaceUpdate) GetAnonymousDataCollection() bool

GetAnonymousDataCollection returns the AnonymousDataCollection field value

func (*WorkspaceUpdate) GetAnonymousDataCollectionOk

func (o *WorkspaceUpdate) GetAnonymousDataCollectionOk() (*bool, bool)

GetAnonymousDataCollectionOk returns a tuple with the AnonymousDataCollection field value and a boolean to check if the value has been set.

func (*WorkspaceUpdate) GetDisplaySetupWizard

func (o *WorkspaceUpdate) GetDisplaySetupWizard() bool

GetDisplaySetupWizard returns the DisplaySetupWizard field value if set, zero value otherwise.

func (*WorkspaceUpdate) GetDisplaySetupWizardOk

func (o *WorkspaceUpdate) GetDisplaySetupWizardOk() (*bool, bool)

GetDisplaySetupWizardOk returns a tuple with the DisplaySetupWizard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceUpdate) GetEmail

func (o *WorkspaceUpdate) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*WorkspaceUpdate) GetEmailOk

func (o *WorkspaceUpdate) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceUpdate) GetInitialSetupComplete

func (o *WorkspaceUpdate) GetInitialSetupComplete() bool

GetInitialSetupComplete returns the InitialSetupComplete field value

func (*WorkspaceUpdate) GetInitialSetupCompleteOk

func (o *WorkspaceUpdate) GetInitialSetupCompleteOk() (*bool, bool)

GetInitialSetupCompleteOk returns a tuple with the InitialSetupComplete field value and a boolean to check if the value has been set.

func (*WorkspaceUpdate) GetNews

func (o *WorkspaceUpdate) GetNews() bool

GetNews returns the News field value

func (*WorkspaceUpdate) GetNewsOk

func (o *WorkspaceUpdate) GetNewsOk() (*bool, bool)

GetNewsOk returns a tuple with the News field value and a boolean to check if the value has been set.

func (*WorkspaceUpdate) GetNotifications

func (o *WorkspaceUpdate) GetNotifications() []Notification

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*WorkspaceUpdate) GetNotificationsOk

func (o *WorkspaceUpdate) GetNotificationsOk() ([]Notification, bool)

GetNotificationsOk returns a tuple with the Notifications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WorkspaceUpdate) GetSecurityUpdates

func (o *WorkspaceUpdate) GetSecurityUpdates() bool

GetSecurityUpdates returns the SecurityUpdates field value

func (*WorkspaceUpdate) GetSecurityUpdatesOk

func (o *WorkspaceUpdate) GetSecurityUpdatesOk() (*bool, bool)

GetSecurityUpdatesOk returns a tuple with the SecurityUpdates field value and a boolean to check if the value has been set.

func (*WorkspaceUpdate) GetWorkspaceId

func (o *WorkspaceUpdate) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceUpdate) GetWorkspaceIdOk

func (o *WorkspaceUpdate) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (*WorkspaceUpdate) HasDisplaySetupWizard

func (o *WorkspaceUpdate) HasDisplaySetupWizard() bool

HasDisplaySetupWizard returns a boolean if a field has been set.

func (*WorkspaceUpdate) HasEmail

func (o *WorkspaceUpdate) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*WorkspaceUpdate) HasNotifications

func (o *WorkspaceUpdate) HasNotifications() bool

HasNotifications returns a boolean if a field has been set.

func (WorkspaceUpdate) MarshalJSON

func (o WorkspaceUpdate) MarshalJSON() ([]byte, error)

func (*WorkspaceUpdate) SetAnonymousDataCollection

func (o *WorkspaceUpdate) SetAnonymousDataCollection(v bool)

SetAnonymousDataCollection sets field value

func (*WorkspaceUpdate) SetDisplaySetupWizard

func (o *WorkspaceUpdate) SetDisplaySetupWizard(v bool)

SetDisplaySetupWizard gets a reference to the given bool and assigns it to the DisplaySetupWizard field.

func (*WorkspaceUpdate) SetEmail

func (o *WorkspaceUpdate) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*WorkspaceUpdate) SetInitialSetupComplete

func (o *WorkspaceUpdate) SetInitialSetupComplete(v bool)

SetInitialSetupComplete sets field value

func (*WorkspaceUpdate) SetNews

func (o *WorkspaceUpdate) SetNews(v bool)

SetNews sets field value

func (*WorkspaceUpdate) SetNotifications

func (o *WorkspaceUpdate) SetNotifications(v []Notification)

SetNotifications gets a reference to the given []Notification and assigns it to the Notifications field.

func (*WorkspaceUpdate) SetSecurityUpdates

func (o *WorkspaceUpdate) SetSecurityUpdates(v bool)

SetSecurityUpdates sets field value

func (*WorkspaceUpdate) SetWorkspaceId

func (o *WorkspaceUpdate) SetWorkspaceId(v string)

SetWorkspaceId sets field value

type WorkspaceUpdateName

type WorkspaceUpdateName struct {
	WorkspaceId string `json:"workspaceId"`
	Name        string `json:"name"`
}

WorkspaceUpdateName struct for WorkspaceUpdateName

func NewWorkspaceUpdateName

func NewWorkspaceUpdateName(workspaceId string, name string) *WorkspaceUpdateName

NewWorkspaceUpdateName instantiates a new WorkspaceUpdateName object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWorkspaceUpdateNameWithDefaults

func NewWorkspaceUpdateNameWithDefaults() *WorkspaceUpdateName

NewWorkspaceUpdateNameWithDefaults instantiates a new WorkspaceUpdateName object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WorkspaceUpdateName) GetName

func (o *WorkspaceUpdateName) GetName() string

GetName returns the Name field value

func (*WorkspaceUpdateName) GetNameOk

func (o *WorkspaceUpdateName) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*WorkspaceUpdateName) GetWorkspaceId

func (o *WorkspaceUpdateName) GetWorkspaceId() string

GetWorkspaceId returns the WorkspaceId field value

func (*WorkspaceUpdateName) GetWorkspaceIdOk

func (o *WorkspaceUpdateName) GetWorkspaceIdOk() (*string, bool)

GetWorkspaceIdOk returns a tuple with the WorkspaceId field value and a boolean to check if the value has been set.

func (WorkspaceUpdateName) MarshalJSON

func (o WorkspaceUpdateName) MarshalJSON() ([]byte, error)

func (*WorkspaceUpdateName) SetName

func (o *WorkspaceUpdateName) SetName(v string)

SetName sets field value

func (*WorkspaceUpdateName) SetWorkspaceId

func (o *WorkspaceUpdateName) SetWorkspaceId(v string)

SetWorkspaceId sets field value

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL