intake

package module
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Jul 28, 2025 License: Apache-2.0 Imports: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AllowedCatalogAuthTypeEnumValues = []CatalogAuthType{
	"none",
	"dremio",
}

All allowed values of CatalogAuthType enum

View Source
var AllowedIntakeResponseStateEnumValues = []IntakeResponseState{
	"reconciling",
	"active",
	"deleting",
	"failed",
}

All allowed values of IntakeResponse enum

View Source
var AllowedIntakeRunnerResponseStateEnumValues = []IntakeRunnerResponseState{
	"reconciling",
	"active",
	"deleting",
}

All allowed values of IntakeRunnerResponse enum

View Source
var AllowedIntakeUserResponseStateEnumValues = []IntakeUserResponseState{
	"reconciling",
	"active",
	"deleting",
}

All allowed values of IntakeUserResponse enum

View Source
var AllowedUserTypeEnumValues = []UserType{
	"intake",
	"dead-letter",
}

All allowed values of UserType enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func NewConfiguration

func NewConfiguration() *config.Configuration

NewConfiguration returns a new Configuration object

func ParameterValueToString

func ParameterValueToString(obj interface{}, key string) string

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 {
	// contains filtered or unexported fields
}

APIClient manages communication with the STACKIT Intake API API v1beta.2.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error)

NewAPIClient creates a new API client. Optionally receives configuration options

func (*APIClient) CreateIntake

func (a *APIClient) CreateIntake(ctx context.Context, projectId string, regionId string) ApiCreateIntakeRequest

CreateIntake: Method for CreateIntake

Creates a new intake within the project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@return ApiCreateIntakeRequest

func (*APIClient) CreateIntakeExecute

func (a *APIClient) CreateIntakeExecute(ctx context.Context, projectId string, regionId string) (*IntakeResponse, error)

func (*APIClient) CreateIntakeRunner

func (a *APIClient) CreateIntakeRunner(ctx context.Context, projectId string, regionId string) ApiCreateIntakeRunnerRequest

CreateIntakeRunner: Method for CreateIntakeRunner

Creates a new intake runner within the project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@return ApiCreateIntakeRunnerRequest

func (*APIClient) CreateIntakeRunnerExecute

func (a *APIClient) CreateIntakeRunnerExecute(ctx context.Context, projectId string, regionId string) (*IntakeRunnerResponse, error)

func (*APIClient) CreateIntakeUser

func (a *APIClient) CreateIntakeUser(ctx context.Context, projectId string, regionId string, intakeId string) ApiCreateIntakeUserRequest

CreateIntakeUser: Method for CreateIntakeUser

Creates a new user for this intake.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeId The intake UUID.
@return ApiCreateIntakeUserRequest

func (*APIClient) CreateIntakeUserExecute

func (a *APIClient) CreateIntakeUserExecute(ctx context.Context, projectId string, regionId string, intakeId string) (*IntakeUserResponse, error)

func (*APIClient) DeleteIntake

func (a *APIClient) DeleteIntake(ctx context.Context, projectId string, regionId string, intakeId string) ApiDeleteIntakeRequest

DeleteIntake: Method for DeleteIntake

Deletes the given intake.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeId The intake UUID.
@return ApiDeleteIntakeRequest

func (*APIClient) DeleteIntakeExecute

func (a *APIClient) DeleteIntakeExecute(ctx context.Context, projectId string, regionId string, intakeId string) error

func (*APIClient) DeleteIntakeRunner

func (a *APIClient) DeleteIntakeRunner(ctx context.Context, projectId string, regionId string, intakeRunnerId string) ApiDeleteIntakeRunnerRequest

DeleteIntakeRunner: Method for DeleteIntakeRunner

Deletes the given intake runner.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeRunnerId The intake runner UUID.
@return ApiDeleteIntakeRunnerRequest

func (*APIClient) DeleteIntakeRunnerExecute

func (a *APIClient) DeleteIntakeRunnerExecute(ctx context.Context, projectId string, regionId string, intakeRunnerId string) error

func (*APIClient) DeleteIntakeUser

func (a *APIClient) DeleteIntakeUser(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) ApiDeleteIntakeUserRequest

DeleteIntakeUser: Method for DeleteIntakeUser

Deletes the given intake user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeId The intake UUID.
@param intakeUserId The intake user UUID.
@return ApiDeleteIntakeUserRequest

func (*APIClient) DeleteIntakeUserExecute

func (a *APIClient) DeleteIntakeUserExecute(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) error

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *config.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

func (*APIClient) GetIntake

func (a *APIClient) GetIntake(ctx context.Context, projectId string, regionId string, intakeId string) ApiGetIntakeRequest

GetIntake: Method for GetIntake

Returns the details for the given intake.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeId The intake UUID.
@return ApiGetIntakeRequest

func (*APIClient) GetIntakeExecute

func (a *APIClient) GetIntakeExecute(ctx context.Context, projectId string, regionId string, intakeId string) (*IntakeResponse, error)

func (*APIClient) GetIntakeRunner

func (a *APIClient) GetIntakeRunner(ctx context.Context, projectId string, regionId string, intakeRunnerId string) ApiGetIntakeRunnerRequest

GetIntakeRunner: Method for GetIntakeRunner

Returns the details for the given intake runner.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeRunnerId The intake runner UUID.
@return ApiGetIntakeRunnerRequest

func (*APIClient) GetIntakeRunnerExecute

func (a *APIClient) GetIntakeRunnerExecute(ctx context.Context, projectId string, regionId string, intakeRunnerId string) (*IntakeRunnerResponse, error)

func (*APIClient) GetIntakeUser

func (a *APIClient) GetIntakeUser(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) ApiGetIntakeUserRequest

GetIntakeUser: Method for GetIntakeUser

Returns the details for the given user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeId The intake UUID.
@param intakeUserId The intake user UUID.
@return ApiGetIntakeUserRequest

func (*APIClient) GetIntakeUserExecute

func (a *APIClient) GetIntakeUserExecute(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) (*IntakeUserResponse, error)

func (*APIClient) ListIntakeRunners

func (a *APIClient) ListIntakeRunners(ctx context.Context, projectId string, regionId string) ApiListIntakeRunnersRequest

ListIntakeRunners: Method for ListIntakeRunners

Returns a list of all intake runners within the project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@return ApiListIntakeRunnersRequest

func (*APIClient) ListIntakeRunnersExecute

func (a *APIClient) ListIntakeRunnersExecute(ctx context.Context, projectId string, regionId string) (*ListIntakeRunnersResponse, error)

func (*APIClient) ListIntakeUsers

func (a *APIClient) ListIntakeUsers(ctx context.Context, projectId string, regionId string, intakeId string) ApiListIntakeUsersRequest

ListIntakeUsers: Method for ListIntakeUsers

Returns a list of all intake users within the project and intake.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeId The intake UUID.
@return ApiListIntakeUsersRequest

func (*APIClient) ListIntakeUsersExecute

func (a *APIClient) ListIntakeUsersExecute(ctx context.Context, projectId string, regionId string, intakeId string) (*ListIntakeUsersResponse, error)

func (*APIClient) ListIntakes

func (a *APIClient) ListIntakes(ctx context.Context, projectId string, regionId string) ApiListIntakesRequest

ListIntakes: Method for ListIntakes

Returns a list of all intakes within the project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@return ApiListIntakesRequest

func (*APIClient) ListIntakesExecute

func (a *APIClient) ListIntakesExecute(ctx context.Context, projectId string, regionId string) (*ListIntakesResponse, error)

func (*APIClient) UpdateIntake

func (a *APIClient) UpdateIntake(ctx context.Context, projectId string, regionId string, intakeId string) ApiUpdateIntakeRequest

UpdateIntake: Method for UpdateIntake

Updates the given intake.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeId The intake UUID.
@return ApiUpdateIntakeRequest

func (*APIClient) UpdateIntakeExecute

func (a *APIClient) UpdateIntakeExecute(ctx context.Context, projectId string, regionId string, intakeId string) (*IntakeResponse, error)

func (*APIClient) UpdateIntakeRunner

func (a *APIClient) UpdateIntakeRunner(ctx context.Context, projectId string, regionId string, intakeRunnerId string) ApiUpdateIntakeRunnerRequest

UpdateIntakeRunner: Method for UpdateIntakeRunner

Updates a intake runner within the project.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeRunnerId The intake runner UUID.
@return ApiUpdateIntakeRunnerRequest

func (*APIClient) UpdateIntakeRunnerExecute

func (a *APIClient) UpdateIntakeRunnerExecute(ctx context.Context, projectId string, regionId string, intakeRunnerId string) error

func (*APIClient) UpdateIntakeUser

func (a *APIClient) UpdateIntakeUser(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) ApiUpdateIntakeUserRequest

UpdateIntakeUser: Method for UpdateIntakeUser

Updates the given intake user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId The STACKIT portal project UUID the resource is located in.
@param regionId The STACKIT region name the resource is located in.
@param intakeId The intake UUID.
@param intakeUserId The intake user UUID.
@return ApiUpdateIntakeUserRequest

func (*APIClient) UpdateIntakeUserExecute

func (a *APIClient) UpdateIntakeUserExecute(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) error

type ApiCreateIntakeRequest

type ApiCreateIntakeRequest interface {
	CreateIntakePayload(createIntakePayload CreateIntakePayload) ApiCreateIntakeRequest
	Execute() (*IntakeResponse, error)
}

type ApiCreateIntakeRunnerRequest

type ApiCreateIntakeRunnerRequest interface {
	CreateIntakeRunnerPayload(createIntakeRunnerPayload CreateIntakeRunnerPayload) ApiCreateIntakeRunnerRequest
	Execute() (*IntakeRunnerResponse, error)
}

type ApiCreateIntakeUserRequest

type ApiCreateIntakeUserRequest interface {
	CreateIntakeUserPayload(createIntakeUserPayload CreateIntakeUserPayload) ApiCreateIntakeUserRequest
	Execute() (*IntakeUserResponse, error)
}

type ApiDeleteIntakeRequest

type ApiDeleteIntakeRequest interface {
	// If true, deletes all child resources. If false, the resource remains in a 'deletion state' while child resources exist.
	Force(force bool) ApiDeleteIntakeRequest
	Execute() error
}

type ApiDeleteIntakeRunnerRequest

type ApiDeleteIntakeRunnerRequest interface {
	// If true, deletes all child resources. If false, the resource remains in a 'deletion state' while child resources exist.
	Force(force bool) ApiDeleteIntakeRunnerRequest
	Execute() error
}

type ApiDeleteIntakeUserRequest

type ApiDeleteIntakeUserRequest interface {
	Execute() error
}

type ApiGetIntakeRequest

type ApiGetIntakeRequest interface {
	Execute() (*IntakeResponse, error)
}

type ApiGetIntakeRunnerRequest

type ApiGetIntakeRunnerRequest interface {
	Execute() (*IntakeRunnerResponse, error)
}

type ApiGetIntakeUserRequest

type ApiGetIntakeUserRequest interface {
	Execute() (*IntakeUserResponse, error)
}

type ApiListIntakeRunnersRequest

type ApiListIntakeRunnersRequest interface {
	// A token to retrieve the next page of results.
	PageToken(pageToken string) ApiListIntakeRunnersRequest
	// Maximum number of items to return
	PageSize(pageSize int32) ApiListIntakeRunnersRequest
	Execute() (*ListIntakeRunnersResponse, error)
}

type ApiListIntakeUsersRequest

type ApiListIntakeUsersRequest interface {
	// A token to retrieve the next page of results.
	PageToken(pageToken string) ApiListIntakeUsersRequest
	// Maximum number of items to return
	PageSize(pageSize int32) ApiListIntakeUsersRequest
	Execute() (*ListIntakeUsersResponse, error)
}

type ApiListIntakesRequest

type ApiListIntakesRequest interface {
	// A token to retrieve the next page of results.
	PageToken(pageToken string) ApiListIntakesRequest
	// Maximum number of items to return
	PageSize(pageSize int32) ApiListIntakesRequest
	Execute() (*ListIntakesResponse, error)
}

type ApiUpdateIntakeRequest

type ApiUpdateIntakeRequest interface {
	UpdateIntakePayload(updateIntakePayload UpdateIntakePayload) ApiUpdateIntakeRequest
	Execute() (*IntakeResponse, error)
}

type ApiUpdateIntakeRunnerRequest

type ApiUpdateIntakeRunnerRequest interface {
	UpdateIntakeRunnerPayload(updateIntakeRunnerPayload UpdateIntakeRunnerPayload) ApiUpdateIntakeRunnerRequest
	Execute() error
}

type ApiUpdateIntakeUserRequest

type ApiUpdateIntakeUserRequest interface {
	UpdateIntakeUserPayload(updateIntakeUserPayload UpdateIntakeUserPayload) ApiUpdateIntakeUserRequest
	Execute() error
}

type CatalogAuth

type CatalogAuth struct {
	Dremio CatalogAuthGetDremioAttributeType `json:"dremio,omitempty"`
	// REQUIRED
	Type CatalogAuthGetTypeAttributeType `json:"type" required:"true"`
}

CatalogAuth Configures authentication for the Iceberg catalog

func NewCatalogAuth

func NewCatalogAuth(types CatalogAuthGetTypeArgType) *CatalogAuth

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

func NewCatalogAuthWithDefaults

func NewCatalogAuthWithDefaults() *CatalogAuth

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

func (*CatalogAuth) GetDremio

func (o *CatalogAuth) GetDremio() (res CatalogAuthGetDremioRetType)

GetDremio returns the Dremio field value if set, zero value otherwise.

func (*CatalogAuth) GetDremioOk

func (o *CatalogAuth) GetDremioOk() (ret CatalogAuthGetDremioRetType, ok bool)

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

func (*CatalogAuth) GetType

func (o *CatalogAuth) GetType() (ret CatalogAuthGetTypeRetType)

GetType returns the Type field value

func (*CatalogAuth) GetTypeOk

func (o *CatalogAuth) GetTypeOk() (ret CatalogAuthGetTypeRetType, ok bool)

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

func (*CatalogAuth) HasDremio

func (o *CatalogAuth) HasDremio() bool

HasDremio returns a boolean if a field has been set.

func (*CatalogAuth) SetDremio

func (o *CatalogAuth) SetDremio(v CatalogAuthGetDremioRetType)

SetDremio gets a reference to the given DremioAuth and assigns it to the Dremio field.

func (*CatalogAuth) SetType

func (o *CatalogAuth) SetType(v CatalogAuthGetTypeRetType)

SetType sets field value

func (CatalogAuth) ToMap

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

type CatalogAuthGetDremioArgType

type CatalogAuthGetDremioArgType = DremioAuth

type CatalogAuthGetDremioAttributeType

type CatalogAuthGetDremioAttributeType = *DremioAuth

isModel

type CatalogAuthGetDremioRetType

type CatalogAuthGetDremioRetType = DremioAuth

type CatalogAuthGetTypeArgType

type CatalogAuthGetTypeArgType = CatalogAuthType

type CatalogAuthGetTypeAttributeType

type CatalogAuthGetTypeAttributeType = *CatalogAuthType

isEnumRef

type CatalogAuthGetTypeRetType

type CatalogAuthGetTypeRetType = CatalogAuthType

type CatalogAuthPatch

type CatalogAuthPatch struct {
	Dremio CatalogAuthPatchGetDremioAttributeType `json:"dremio,omitempty"`
	Type   CatalogAuthPatchGetTypeAttributeType   `json:"type,omitempty"`
}

CatalogAuthPatch Configures authentication for the Iceberg catalog

func NewCatalogAuthPatch

func NewCatalogAuthPatch() *CatalogAuthPatch

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

func NewCatalogAuthPatchWithDefaults

func NewCatalogAuthPatchWithDefaults() *CatalogAuthPatch

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

func (*CatalogAuthPatch) GetDremio

GetDremio returns the Dremio field value if set, zero value otherwise.

func (*CatalogAuthPatch) GetDremioOk

func (o *CatalogAuthPatch) GetDremioOk() (ret CatalogAuthPatchGetDremioRetType, ok bool)

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

func (*CatalogAuthPatch) GetType

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

func (*CatalogAuthPatch) GetTypeOk

func (o *CatalogAuthPatch) GetTypeOk() (ret CatalogAuthPatchGetTypeRetType, ok bool)

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

func (*CatalogAuthPatch) HasDremio

func (o *CatalogAuthPatch) HasDremio() bool

HasDremio returns a boolean if a field has been set.

func (*CatalogAuthPatch) HasType

func (o *CatalogAuthPatch) HasType() bool

HasType returns a boolean if a field has been set.

func (*CatalogAuthPatch) SetDremio

SetDremio gets a reference to the given DremioAuthPatch and assigns it to the Dremio field.

func (*CatalogAuthPatch) SetType

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

func (CatalogAuthPatch) ToMap

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

type CatalogAuthPatchGetDremioArgType

type CatalogAuthPatchGetDremioArgType = DremioAuthPatch

type CatalogAuthPatchGetDremioAttributeType

type CatalogAuthPatchGetDremioAttributeType = *DremioAuthPatch

isModel

type CatalogAuthPatchGetDremioRetType

type CatalogAuthPatchGetDremioRetType = DremioAuthPatch

type CatalogAuthPatchGetTypeArgType

type CatalogAuthPatchGetTypeArgType = CatalogAuthType

type CatalogAuthPatchGetTypeAttributeType

type CatalogAuthPatchGetTypeAttributeType = *CatalogAuthType

isEnumRef

type CatalogAuthPatchGetTypeRetType

type CatalogAuthPatchGetTypeRetType = CatalogAuthType

type CatalogAuthType

type CatalogAuthType string

CatalogAuthType Means of authentication for catalog requests

const (
	CATALOGAUTHTYPE_NONE   CatalogAuthType = "none"
	CATALOGAUTHTYPE_DREMIO CatalogAuthType = "dremio"
)

List of catalogAuthType

func NewCatalogAuthTypeFromValue

func NewCatalogAuthTypeFromValue(v string) (*CatalogAuthType, error)

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

func (CatalogAuthType) IsValid

func (v CatalogAuthType) IsValid() bool

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

func (CatalogAuthType) Ptr

Ptr returns reference to catalogAuthType value

func (*CatalogAuthType) UnmarshalJSON

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

type ClientConfig

type ClientConfig struct {
	// Configuration for Java Kafka clients.
	// REQUIRED
	Java ClientConfigGetJavaAttributeType `json:"java" required:"true"`
	// Configuration for Kafka clients using librdkafka
	// REQUIRED
	Librdkafka ClientConfigGetLibrdkafkaAttributeType `json:"librdkafka" required:"true"`
}

ClientConfig Configuration properties for supported clients.

func NewClientConfig

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

func NewClientConfigWithDefaults

func NewClientConfigWithDefaults() *ClientConfig

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

func (*ClientConfig) GetJava

func (o *ClientConfig) GetJava() (ret ClientConfigGetJavaRetType)

GetJava returns the Java field value

func (*ClientConfig) GetJavaOk

func (o *ClientConfig) GetJavaOk() (ret ClientConfigGetJavaRetType, ok bool)

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

func (*ClientConfig) GetLibrdkafka

func (o *ClientConfig) GetLibrdkafka() (ret ClientConfigGetLibrdkafkaRetType)

GetLibrdkafka returns the Librdkafka field value

func (*ClientConfig) GetLibrdkafkaOk

func (o *ClientConfig) GetLibrdkafkaOk() (ret ClientConfigGetLibrdkafkaRetType, ok bool)

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

func (*ClientConfig) SetJava

SetJava sets field value

func (*ClientConfig) SetLibrdkafka

func (o *ClientConfig) SetLibrdkafka(v ClientConfigGetLibrdkafkaRetType)

SetLibrdkafka sets field value

func (ClientConfig) ToMap

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

type ClientConfigGetJavaArgType

type ClientConfigGetJavaArgType = string

type ClientConfigGetJavaAttributeType

type ClientConfigGetJavaAttributeType = *string

isNotNullableString

type ClientConfigGetJavaRetType

type ClientConfigGetJavaRetType = string

type ClientConfigGetLibrdkafkaArgType

type ClientConfigGetLibrdkafkaArgType = string

type ClientConfigGetLibrdkafkaAttributeType

type ClientConfigGetLibrdkafkaAttributeType = *string

isNotNullableString

type ClientConfigGetLibrdkafkaRetType

type ClientConfigGetLibrdkafkaRetType = string

type CreateIntakePayload

type CreateIntakePayload struct {
	// REQUIRED
	Catalog CreateIntakePayloadGetCatalogAttributeType `json:"catalog" required:"true"`
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description CreateIntakePayloadGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	// REQUIRED
	DisplayName CreateIntakePayloadGetDisplayNameAttributeType `json:"displayName" required:"true"`
	// The unique id of the intake runner this intake should run on.
	// REQUIRED
	IntakeRunnerId CreateIntakePayloadGetIntakeRunnerIdAttributeType `json:"intakeRunnerId" required:"true"`
	// Labels are a set of key-value pairs assigned to resources.
	Labels CreateIntakePayloadGetLabelsAttributeType `json:"labels,omitempty"`
}

CreateIntakePayload struct for CreateIntakePayload

func NewCreateIntakePayload

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

func NewCreateIntakePayloadWithDefaults

func NewCreateIntakePayloadWithDefaults() *CreateIntakePayload

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

func (*CreateIntakePayload) GetCatalog

GetCatalog returns the Catalog field value

func (*CreateIntakePayload) GetCatalogOk

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

func (*CreateIntakePayload) GetDescription

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

func (*CreateIntakePayload) GetDescriptionOk

func (o *CreateIntakePayload) GetDescriptionOk() (ret CreateIntakePayloadGetDescriptionRetType, ok bool)

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

func (*CreateIntakePayload) GetDisplayName

GetDisplayName returns the DisplayName field value

func (*CreateIntakePayload) GetDisplayNameOk

func (o *CreateIntakePayload) GetDisplayNameOk() (ret CreateIntakePayloadGetDisplayNameRetType, ok bool)

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

func (*CreateIntakePayload) GetIntakeRunnerId

GetIntakeRunnerId returns the IntakeRunnerId field value

func (*CreateIntakePayload) GetIntakeRunnerIdOk

func (o *CreateIntakePayload) GetIntakeRunnerIdOk() (ret CreateIntakePayloadGetIntakeRunnerIdRetType, ok bool)

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

func (*CreateIntakePayload) GetLabels

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

func (*CreateIntakePayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels 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 (*CreateIntakePayload) HasDescription

func (o *CreateIntakePayload) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateIntakePayload) HasLabels

func (o *CreateIntakePayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*CreateIntakePayload) SetCatalog

SetCatalog sets field value

func (*CreateIntakePayload) SetDescription

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

func (*CreateIntakePayload) SetDisplayName

SetDisplayName sets field value

func (*CreateIntakePayload) SetIntakeRunnerId

SetIntakeRunnerId sets field value

func (*CreateIntakePayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (CreateIntakePayload) ToMap

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

type CreateIntakePayloadGetCatalogArgType

type CreateIntakePayloadGetCatalogArgType = IntakeCatalog

type CreateIntakePayloadGetCatalogAttributeType

type CreateIntakePayloadGetCatalogAttributeType = *IntakeCatalog

isModel

type CreateIntakePayloadGetCatalogRetType

type CreateIntakePayloadGetCatalogRetType = IntakeCatalog

type CreateIntakePayloadGetDescriptionArgType

type CreateIntakePayloadGetDescriptionArgType = string

type CreateIntakePayloadGetDescriptionAttributeType

type CreateIntakePayloadGetDescriptionAttributeType = *string

isNotNullableString

type CreateIntakePayloadGetDescriptionRetType

type CreateIntakePayloadGetDescriptionRetType = string

type CreateIntakePayloadGetDisplayNameArgType

type CreateIntakePayloadGetDisplayNameArgType = string

type CreateIntakePayloadGetDisplayNameAttributeType

type CreateIntakePayloadGetDisplayNameAttributeType = *string

isNotNullableString

type CreateIntakePayloadGetDisplayNameRetType

type CreateIntakePayloadGetDisplayNameRetType = string

type CreateIntakePayloadGetIntakeRunnerIdArgType

type CreateIntakePayloadGetIntakeRunnerIdArgType = string

type CreateIntakePayloadGetIntakeRunnerIdAttributeType

type CreateIntakePayloadGetIntakeRunnerIdAttributeType = *string

isNotNullableString

type CreateIntakePayloadGetIntakeRunnerIdRetType

type CreateIntakePayloadGetIntakeRunnerIdRetType = string

type CreateIntakePayloadGetLabelsArgType

type CreateIntakePayloadGetLabelsArgType = *map[string]string

type CreateIntakePayloadGetLabelsAttributeType

type CreateIntakePayloadGetLabelsAttributeType = *map[string]string

isContainer

type CreateIntakePayloadGetLabelsRetType

type CreateIntakePayloadGetLabelsRetType = *map[string]string

type CreateIntakeRequest

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

func (CreateIntakeRequest) CreateIntakePayload

func (r CreateIntakeRequest) CreateIntakePayload(createIntakePayload CreateIntakePayload) ApiCreateIntakeRequest

func (CreateIntakeRequest) Execute

func (r CreateIntakeRequest) Execute() (*IntakeResponse, error)

type CreateIntakeRunnerPayload

type CreateIntakeRunnerPayload struct {
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description CreateIntakeRunnerPayloadGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	// REQUIRED
	DisplayName CreateIntakeRunnerPayloadGetDisplayNameAttributeType `json:"displayName" required:"true"`
	// Labels are a set of key-value pairs assigned to resources.
	Labels CreateIntakeRunnerPayloadGetLabelsAttributeType `json:"labels,omitempty"`
	// The maximum size of a message in kibibytes (1 KiB = 1024 bytes).
	// REQUIRED
	MaxMessageSizeKiB CreateIntakeRunnerPayloadGetMaxMessageSizeKiBAttributeType `json:"maxMessageSizeKiB" required:"true"`
	// The maximum number of messages per hour.
	// REQUIRED
	MaxMessagesPerHour CreateIntakeRunnerPayloadGetMaxMessagesPerHourAttributeType `json:"maxMessagesPerHour" required:"true"`
}

CreateIntakeRunnerPayload struct for CreateIntakeRunnerPayload

func NewCreateIntakeRunnerPayload

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

func NewCreateIntakeRunnerPayloadWithDefaults

func NewCreateIntakeRunnerPayloadWithDefaults() *CreateIntakeRunnerPayload

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

func (*CreateIntakeRunnerPayload) GetDescription

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

func (*CreateIntakeRunnerPayload) GetDescriptionOk

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

func (*CreateIntakeRunnerPayload) GetDisplayName

GetDisplayName returns the DisplayName field value

func (*CreateIntakeRunnerPayload) GetDisplayNameOk

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

func (*CreateIntakeRunnerPayload) GetLabels

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

func (*CreateIntakeRunnerPayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels 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 (*CreateIntakeRunnerPayload) GetMaxMessageSizeKiB

GetMaxMessageSizeKiB returns the MaxMessageSizeKiB field value

func (*CreateIntakeRunnerPayload) GetMaxMessageSizeKiBOk

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

func (*CreateIntakeRunnerPayload) GetMaxMessagesPerHour

GetMaxMessagesPerHour returns the MaxMessagesPerHour field value

func (*CreateIntakeRunnerPayload) GetMaxMessagesPerHourOk

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

func (*CreateIntakeRunnerPayload) HasDescription

func (o *CreateIntakeRunnerPayload) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateIntakeRunnerPayload) HasLabels

func (o *CreateIntakeRunnerPayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*CreateIntakeRunnerPayload) SetDescription

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

func (*CreateIntakeRunnerPayload) SetDisplayName

SetDisplayName sets field value

func (*CreateIntakeRunnerPayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*CreateIntakeRunnerPayload) SetMaxMessageSizeKiB

SetMaxMessageSizeKiB sets field value

func (*CreateIntakeRunnerPayload) SetMaxMessagesPerHour

SetMaxMessagesPerHour sets field value

func (CreateIntakeRunnerPayload) ToMap

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

type CreateIntakeRunnerPayloadGetDescriptionArgType

type CreateIntakeRunnerPayloadGetDescriptionArgType = string

type CreateIntakeRunnerPayloadGetDescriptionAttributeType

type CreateIntakeRunnerPayloadGetDescriptionAttributeType = *string

isNotNullableString

type CreateIntakeRunnerPayloadGetDescriptionRetType

type CreateIntakeRunnerPayloadGetDescriptionRetType = string

type CreateIntakeRunnerPayloadGetDisplayNameArgType

type CreateIntakeRunnerPayloadGetDisplayNameArgType = string

type CreateIntakeRunnerPayloadGetDisplayNameAttributeType

type CreateIntakeRunnerPayloadGetDisplayNameAttributeType = *string

isNotNullableString

type CreateIntakeRunnerPayloadGetDisplayNameRetType

type CreateIntakeRunnerPayloadGetDisplayNameRetType = string

type CreateIntakeRunnerPayloadGetLabelsArgType

type CreateIntakeRunnerPayloadGetLabelsArgType = *map[string]string

type CreateIntakeRunnerPayloadGetLabelsAttributeType

type CreateIntakeRunnerPayloadGetLabelsAttributeType = *map[string]string

isContainer

type CreateIntakeRunnerPayloadGetLabelsRetType

type CreateIntakeRunnerPayloadGetLabelsRetType = *map[string]string

type CreateIntakeRunnerPayloadGetMaxMessageSizeKiBArgType

type CreateIntakeRunnerPayloadGetMaxMessageSizeKiBArgType = int64

type CreateIntakeRunnerPayloadGetMaxMessageSizeKiBAttributeType

type CreateIntakeRunnerPayloadGetMaxMessageSizeKiBAttributeType = *int64

isInteger

type CreateIntakeRunnerPayloadGetMaxMessageSizeKiBRetType

type CreateIntakeRunnerPayloadGetMaxMessageSizeKiBRetType = int64

type CreateIntakeRunnerPayloadGetMaxMessagesPerHourArgType

type CreateIntakeRunnerPayloadGetMaxMessagesPerHourArgType = int64

type CreateIntakeRunnerPayloadGetMaxMessagesPerHourAttributeType

type CreateIntakeRunnerPayloadGetMaxMessagesPerHourAttributeType = *int64

isInteger

type CreateIntakeRunnerPayloadGetMaxMessagesPerHourRetType

type CreateIntakeRunnerPayloadGetMaxMessagesPerHourRetType = int64

type CreateIntakeRunnerRequest

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

func (CreateIntakeRunnerRequest) CreateIntakeRunnerPayload

func (r CreateIntakeRunnerRequest) CreateIntakeRunnerPayload(createIntakeRunnerPayload CreateIntakeRunnerPayload) ApiCreateIntakeRunnerRequest

func (CreateIntakeRunnerRequest) Execute

type CreateIntakeUserPayload

type CreateIntakeUserPayload struct {
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description CreateIntakeUserPayloadGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	// REQUIRED
	DisplayName CreateIntakeUserPayloadGetDisplayNameAttributeType `json:"displayName" required:"true"`
	// Labels are key-value pairs associated with the resource.
	Labels CreateIntakeUserPayloadGetLabelsAttributeType `json:"labels,omitempty"`
	// A password chosen by the user.
	// REQUIRED
	Password CreateIntakeUserPayloadGetPasswordAttributeType `json:"password" required:"true"`
	Type     CreateIntakeUserPayloadGetTypeAttributeType     `json:"type,omitempty"`
}

CreateIntakeUserPayload struct for CreateIntakeUserPayload

func NewCreateIntakeUserPayload

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

func NewCreateIntakeUserPayloadWithDefaults

func NewCreateIntakeUserPayloadWithDefaults() *CreateIntakeUserPayload

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

func (*CreateIntakeUserPayload) GetDescription

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

func (*CreateIntakeUserPayload) GetDescriptionOk

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

func (*CreateIntakeUserPayload) GetDisplayName

GetDisplayName returns the DisplayName field value

func (*CreateIntakeUserPayload) GetDisplayNameOk

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

func (*CreateIntakeUserPayload) GetLabels

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

func (*CreateIntakeUserPayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels 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 (*CreateIntakeUserPayload) GetPassword

GetPassword returns the Password field value

func (*CreateIntakeUserPayload) GetPasswordOk

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

func (*CreateIntakeUserPayload) GetType

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

func (*CreateIntakeUserPayload) GetTypeOk

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

func (*CreateIntakeUserPayload) HasDescription

func (o *CreateIntakeUserPayload) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateIntakeUserPayload) HasLabels

func (o *CreateIntakeUserPayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*CreateIntakeUserPayload) HasType

func (o *CreateIntakeUserPayload) HasType() bool

HasType returns a boolean if a field has been set.

func (*CreateIntakeUserPayload) SetDescription

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

func (*CreateIntakeUserPayload) SetDisplayName

SetDisplayName sets field value

func (*CreateIntakeUserPayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*CreateIntakeUserPayload) SetPassword

SetPassword sets field value

func (*CreateIntakeUserPayload) SetType

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

func (CreateIntakeUserPayload) ToMap

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

type CreateIntakeUserPayloadGetDescriptionArgType

type CreateIntakeUserPayloadGetDescriptionArgType = string

type CreateIntakeUserPayloadGetDescriptionAttributeType

type CreateIntakeUserPayloadGetDescriptionAttributeType = *string

isNotNullableString

type CreateIntakeUserPayloadGetDescriptionRetType

type CreateIntakeUserPayloadGetDescriptionRetType = string

type CreateIntakeUserPayloadGetDisplayNameArgType

type CreateIntakeUserPayloadGetDisplayNameArgType = string

type CreateIntakeUserPayloadGetDisplayNameAttributeType

type CreateIntakeUserPayloadGetDisplayNameAttributeType = *string

isNotNullableString

type CreateIntakeUserPayloadGetDisplayNameRetType

type CreateIntakeUserPayloadGetDisplayNameRetType = string

type CreateIntakeUserPayloadGetLabelsArgType

type CreateIntakeUserPayloadGetLabelsArgType = *map[string]string

type CreateIntakeUserPayloadGetLabelsAttributeType

type CreateIntakeUserPayloadGetLabelsAttributeType = *map[string]string

isContainer

type CreateIntakeUserPayloadGetLabelsRetType

type CreateIntakeUserPayloadGetLabelsRetType = *map[string]string

type CreateIntakeUserPayloadGetPasswordArgType

type CreateIntakeUserPayloadGetPasswordArgType = string

type CreateIntakeUserPayloadGetPasswordAttributeType

type CreateIntakeUserPayloadGetPasswordAttributeType = *string

isNotNullableString

type CreateIntakeUserPayloadGetPasswordRetType

type CreateIntakeUserPayloadGetPasswordRetType = string

type CreateIntakeUserPayloadGetTypeArgType

type CreateIntakeUserPayloadGetTypeArgType = UserType

type CreateIntakeUserPayloadGetTypeAttributeType

type CreateIntakeUserPayloadGetTypeAttributeType = *UserType

isEnumRef

type CreateIntakeUserPayloadGetTypeRetType

type CreateIntakeUserPayloadGetTypeRetType = UserType

type CreateIntakeUserRequest

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

func (CreateIntakeUserRequest) CreateIntakeUserPayload

func (r CreateIntakeUserRequest) CreateIntakeUserPayload(createIntakeUserPayload CreateIntakeUserPayload) ApiCreateIntakeUserRequest

func (CreateIntakeUserRequest) Execute

type DefaultApi

type DefaultApi interface {
	/*
		CreateIntake Method for CreateIntake
		Creates a new intake within the project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@return ApiCreateIntakeRequest
	*/
	CreateIntake(ctx context.Context, projectId string, regionId string) ApiCreateIntakeRequest
	/*
		CreateIntakeExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@return IntakeResponse

	*/
	CreateIntakeExecute(ctx context.Context, projectId string, regionId string) (*IntakeResponse, error)
	/*
		CreateIntakeRunner Method for CreateIntakeRunner
		Creates a new intake runner within the project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@return ApiCreateIntakeRunnerRequest
	*/
	CreateIntakeRunner(ctx context.Context, projectId string, regionId string) ApiCreateIntakeRunnerRequest
	/*
		CreateIntakeRunnerExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@return IntakeRunnerResponse

	*/
	CreateIntakeRunnerExecute(ctx context.Context, projectId string, regionId string) (*IntakeRunnerResponse, error)
	/*
		CreateIntakeUser Method for CreateIntakeUser
		Creates a new user for this intake.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return ApiCreateIntakeUserRequest
	*/
	CreateIntakeUser(ctx context.Context, projectId string, regionId string, intakeId string) ApiCreateIntakeUserRequest
	/*
		CreateIntakeUserExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return IntakeUserResponse

	*/
	CreateIntakeUserExecute(ctx context.Context, projectId string, regionId string, intakeId string) (*IntakeUserResponse, error)
	/*
		DeleteIntake Method for DeleteIntake
		Deletes the given intake.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return ApiDeleteIntakeRequest
	*/
	DeleteIntake(ctx context.Context, projectId string, regionId string, intakeId string) ApiDeleteIntakeRequest
	/*
		DeleteIntakeExecute executes the request

	*/
	DeleteIntakeExecute(ctx context.Context, projectId string, regionId string, intakeId string) error
	/*
		DeleteIntakeRunner Method for DeleteIntakeRunner
		Deletes the given intake runner.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeRunnerId The intake runner UUID.
		@return ApiDeleteIntakeRunnerRequest
	*/
	DeleteIntakeRunner(ctx context.Context, projectId string, regionId string, intakeRunnerId string) ApiDeleteIntakeRunnerRequest
	/*
		DeleteIntakeRunnerExecute executes the request

	*/
	DeleteIntakeRunnerExecute(ctx context.Context, projectId string, regionId string, intakeRunnerId string) error
	/*
		DeleteIntakeUser Method for DeleteIntakeUser
		Deletes the given intake user.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@param intakeUserId The intake user UUID.
		@return ApiDeleteIntakeUserRequest
	*/
	DeleteIntakeUser(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) ApiDeleteIntakeUserRequest
	/*
		DeleteIntakeUserExecute executes the request

	*/
	DeleteIntakeUserExecute(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) error
	/*
		GetIntake Method for GetIntake
		Returns the details for the given intake.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return ApiGetIntakeRequest
	*/
	GetIntake(ctx context.Context, projectId string, regionId string, intakeId string) ApiGetIntakeRequest
	/*
		GetIntakeExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return IntakeResponse

	*/
	GetIntakeExecute(ctx context.Context, projectId string, regionId string, intakeId string) (*IntakeResponse, error)
	/*
		GetIntakeRunner Method for GetIntakeRunner
		Returns the details for the given intake runner.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeRunnerId The intake runner UUID.
		@return ApiGetIntakeRunnerRequest
	*/
	GetIntakeRunner(ctx context.Context, projectId string, regionId string, intakeRunnerId string) ApiGetIntakeRunnerRequest
	/*
		GetIntakeRunnerExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeRunnerId The intake runner UUID.
		@return IntakeRunnerResponse

	*/
	GetIntakeRunnerExecute(ctx context.Context, projectId string, regionId string, intakeRunnerId string) (*IntakeRunnerResponse, error)
	/*
		GetIntakeUser Method for GetIntakeUser
		Returns the details for the given user.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@param intakeUserId The intake user UUID.
		@return ApiGetIntakeUserRequest
	*/
	GetIntakeUser(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) ApiGetIntakeUserRequest
	/*
		GetIntakeUserExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@param intakeUserId The intake user UUID.
		@return IntakeUserResponse

	*/
	GetIntakeUserExecute(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) (*IntakeUserResponse, error)
	/*
		ListIntakeRunners Method for ListIntakeRunners
		Returns a list of all intake runners within the project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@return ApiListIntakeRunnersRequest
	*/
	ListIntakeRunners(ctx context.Context, projectId string, regionId string) ApiListIntakeRunnersRequest
	/*
		ListIntakeRunnersExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@return ListIntakeRunnersResponse

	*/
	ListIntakeRunnersExecute(ctx context.Context, projectId string, regionId string) (*ListIntakeRunnersResponse, error)
	/*
		ListIntakeUsers Method for ListIntakeUsers
		Returns a list of all intake users within the project and intake.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return ApiListIntakeUsersRequest
	*/
	ListIntakeUsers(ctx context.Context, projectId string, regionId string, intakeId string) ApiListIntakeUsersRequest
	/*
		ListIntakeUsersExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return ListIntakeUsersResponse

	*/
	ListIntakeUsersExecute(ctx context.Context, projectId string, regionId string, intakeId string) (*ListIntakeUsersResponse, error)
	/*
		ListIntakes Method for ListIntakes
		Returns a list of all intakes within the project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@return ApiListIntakesRequest
	*/
	ListIntakes(ctx context.Context, projectId string, regionId string) ApiListIntakesRequest
	/*
		ListIntakesExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@return ListIntakesResponse

	*/
	ListIntakesExecute(ctx context.Context, projectId string, regionId string) (*ListIntakesResponse, error)
	/*
		UpdateIntake Method for UpdateIntake
		Updates the given intake.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return ApiUpdateIntakeRequest
	*/
	UpdateIntake(ctx context.Context, projectId string, regionId string, intakeId string) ApiUpdateIntakeRequest
	/*
		UpdateIntakeExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@return IntakeResponse

	*/
	UpdateIntakeExecute(ctx context.Context, projectId string, regionId string, intakeId string) (*IntakeResponse, error)
	/*
		UpdateIntakeRunner Method for UpdateIntakeRunner
		Updates a intake runner within the project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeRunnerId The intake runner UUID.
		@return ApiUpdateIntakeRunnerRequest
	*/
	UpdateIntakeRunner(ctx context.Context, projectId string, regionId string, intakeRunnerId string) ApiUpdateIntakeRunnerRequest
	/*
		UpdateIntakeRunnerExecute executes the request

	*/
	UpdateIntakeRunnerExecute(ctx context.Context, projectId string, regionId string, intakeRunnerId string) error
	/*
		UpdateIntakeUser Method for UpdateIntakeUser
		Updates the given intake user.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId The STACKIT portal project UUID the resource is located in.
		@param regionId The STACKIT region name the resource is located in.
		@param intakeId The intake UUID.
		@param intakeUserId The intake user UUID.
		@return ApiUpdateIntakeUserRequest
	*/
	UpdateIntakeUser(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) ApiUpdateIntakeUserRequest
	/*
		UpdateIntakeUserExecute executes the request

	*/
	UpdateIntakeUserExecute(ctx context.Context, projectId string, regionId string, intakeId string, intakeUserId string) error
}

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

type DeleteIntakeRequest

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

func (DeleteIntakeRequest) Execute

func (r DeleteIntakeRequest) Execute() error

func (DeleteIntakeRequest) Force

type DeleteIntakeRunnerRequest

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

func (DeleteIntakeRunnerRequest) Execute

func (r DeleteIntakeRunnerRequest) Execute() error

func (DeleteIntakeRunnerRequest) Force

type DeleteIntakeUserRequest

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

func (DeleteIntakeUserRequest) Execute

func (r DeleteIntakeUserRequest) Execute() error

type DremioAuth

type DremioAuth struct {
	// A Dremio personal access token for authentication
	// REQUIRED
	PersonalAccessToken DremioAuthGetPersonalAccessTokenAttributeType `json:"personalAccessToken" required:"true"`
	// The URL to the Dremio instance's OAuth 2.0 token endpoint
	// REQUIRED
	TokenEndpoint DremioAuthGetTokenEndpointAttributeType `json:"tokenEndpoint" required:"true"`
}

DremioAuth struct for DremioAuth

func NewDremioAuth

func NewDremioAuth(personalAccessToken DremioAuthGetPersonalAccessTokenArgType, tokenEndpoint DremioAuthGetTokenEndpointArgType) *DremioAuth

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

func NewDremioAuthWithDefaults

func NewDremioAuthWithDefaults() *DremioAuth

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

func (*DremioAuth) GetPersonalAccessToken

func (o *DremioAuth) GetPersonalAccessToken() (ret DremioAuthGetPersonalAccessTokenRetType)

GetPersonalAccessToken returns the PersonalAccessToken field value

func (*DremioAuth) GetPersonalAccessTokenOk

func (o *DremioAuth) GetPersonalAccessTokenOk() (ret DremioAuthGetPersonalAccessTokenRetType, ok bool)

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

func (*DremioAuth) GetTokenEndpoint

func (o *DremioAuth) GetTokenEndpoint() (ret DremioAuthGetTokenEndpointRetType)

GetTokenEndpoint returns the TokenEndpoint field value

func (*DremioAuth) GetTokenEndpointOk

func (o *DremioAuth) GetTokenEndpointOk() (ret DremioAuthGetTokenEndpointRetType, ok bool)

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

func (*DremioAuth) SetPersonalAccessToken

func (o *DremioAuth) SetPersonalAccessToken(v DremioAuthGetPersonalAccessTokenRetType)

SetPersonalAccessToken sets field value

func (*DremioAuth) SetTokenEndpoint

func (o *DremioAuth) SetTokenEndpoint(v DremioAuthGetTokenEndpointRetType)

SetTokenEndpoint sets field value

func (DremioAuth) ToMap

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

type DremioAuthGetPersonalAccessTokenArgType

type DremioAuthGetPersonalAccessTokenArgType = string

type DremioAuthGetPersonalAccessTokenAttributeType

type DremioAuthGetPersonalAccessTokenAttributeType = *string

isNotNullableString

type DremioAuthGetPersonalAccessTokenRetType

type DremioAuthGetPersonalAccessTokenRetType = string

type DremioAuthGetTokenEndpointArgType

type DremioAuthGetTokenEndpointArgType = string

type DremioAuthGetTokenEndpointAttributeType

type DremioAuthGetTokenEndpointAttributeType = *string

isNotNullableString

type DremioAuthGetTokenEndpointRetType

type DremioAuthGetTokenEndpointRetType = string

type DremioAuthPatch

type DremioAuthPatch struct {
	// A Dremio personal access token for authentication
	PersonalAccessToken DremioAuthPatchGetPersonalAccessTokenAttributeType `json:"personalAccessToken,omitempty"`
	// The URL to the Dremio instance's OAuth 2.0 token endpoint
	TokenEndpoint DremioAuthPatchGetTokenEndpointAttributeType `json:"tokenEndpoint,omitempty"`
}

DremioAuthPatch struct for DremioAuthPatch

func NewDremioAuthPatch

func NewDremioAuthPatch() *DremioAuthPatch

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

func NewDremioAuthPatchWithDefaults

func NewDremioAuthPatchWithDefaults() *DremioAuthPatch

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

func (*DremioAuthPatch) GetPersonalAccessToken

func (o *DremioAuthPatch) GetPersonalAccessToken() (res DremioAuthPatchGetPersonalAccessTokenRetType)

GetPersonalAccessToken returns the PersonalAccessToken field value if set, zero value otherwise.

func (*DremioAuthPatch) GetPersonalAccessTokenOk

func (o *DremioAuthPatch) GetPersonalAccessTokenOk() (ret DremioAuthPatchGetPersonalAccessTokenRetType, ok bool)

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

func (*DremioAuthPatch) GetTokenEndpoint

func (o *DremioAuthPatch) GetTokenEndpoint() (res DremioAuthPatchGetTokenEndpointRetType)

GetTokenEndpoint returns the TokenEndpoint field value if set, zero value otherwise.

func (*DremioAuthPatch) GetTokenEndpointOk

func (o *DremioAuthPatch) GetTokenEndpointOk() (ret DremioAuthPatchGetTokenEndpointRetType, ok bool)

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

func (*DremioAuthPatch) HasPersonalAccessToken

func (o *DremioAuthPatch) HasPersonalAccessToken() bool

HasPersonalAccessToken returns a boolean if a field has been set.

func (*DremioAuthPatch) HasTokenEndpoint

func (o *DremioAuthPatch) HasTokenEndpoint() bool

HasTokenEndpoint returns a boolean if a field has been set.

func (*DremioAuthPatch) SetPersonalAccessToken

SetPersonalAccessToken gets a reference to the given string and assigns it to the PersonalAccessToken field.

func (*DremioAuthPatch) SetTokenEndpoint

SetTokenEndpoint gets a reference to the given string and assigns it to the TokenEndpoint field.

func (DremioAuthPatch) ToMap

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

type DremioAuthPatchGetPersonalAccessTokenArgType

type DremioAuthPatchGetPersonalAccessTokenArgType = string

type DremioAuthPatchGetPersonalAccessTokenAttributeType

type DremioAuthPatchGetPersonalAccessTokenAttributeType = *string

isNotNullableString

type DremioAuthPatchGetPersonalAccessTokenRetType

type DremioAuthPatchGetPersonalAccessTokenRetType = string

type DremioAuthPatchGetTokenEndpointArgType

type DremioAuthPatchGetTokenEndpointArgType = string

type DremioAuthPatchGetTokenEndpointAttributeType

type DremioAuthPatchGetTokenEndpointAttributeType = *string

isNotNullableString

type DremioAuthPatchGetTokenEndpointRetType

type DremioAuthPatchGetTokenEndpointRetType = string

type GetIntakeRequest

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

func (GetIntakeRequest) Execute

func (r GetIntakeRequest) Execute() (*IntakeResponse, error)

type GetIntakeRunnerRequest

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

func (GetIntakeRunnerRequest) Execute

type GetIntakeUserRequest

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

func (GetIntakeUserRequest) Execute

type IntakeCatalog

type IntakeCatalog struct {
	Auth IntakeCatalogGetAuthAttributeType `json:"auth,omitempty"`
	// The namespace to which data shall be written. It will be automatically created, if it does not exist.
	Namespace   IntakeCatalogGetNamespaceAttributeType   `json:"namespace,omitempty"`
	PartitionBy IntakeCatalogGetPartitionByAttributeType `json:"partitionBy,omitempty"`
	// The table name is a short name chosen by the user to identify the table in Iceberg.
	TableName IntakeCatalogGetTableNameAttributeType `json:"tableName,omitempty"`
	// The URI to the Iceberg catalog endpoint
	// REQUIRED
	Uri IntakeCatalogGetUriAttributeType `json:"uri" required:"true"`
	// The Iceberg warehouse to connect to, required when the catalog has no default warehouse configured.
	// REQUIRED
	Warehouse IntakeCatalogGetWarehouseAttributeType `json:"warehouse" required:"true"`
}

IntakeCatalog The Iceberg catalog configuration

func NewIntakeCatalog

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

func NewIntakeCatalogWithDefaults

func NewIntakeCatalogWithDefaults() *IntakeCatalog

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

func (*IntakeCatalog) GetAuth

func (o *IntakeCatalog) GetAuth() (res IntakeCatalogGetAuthRetType)

GetAuth returns the Auth field value if set, zero value otherwise.

func (*IntakeCatalog) GetAuthOk

func (o *IntakeCatalog) GetAuthOk() (ret IntakeCatalogGetAuthRetType, ok bool)

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

func (*IntakeCatalog) GetNamespace

func (o *IntakeCatalog) GetNamespace() (res IntakeCatalogGetNamespaceRetType)

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

func (*IntakeCatalog) GetNamespaceOk

func (o *IntakeCatalog) GetNamespaceOk() (ret IntakeCatalogGetNamespaceRetType, ok 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 (*IntakeCatalog) GetPartitionBy

func (o *IntakeCatalog) GetPartitionBy() (res IntakeCatalogGetPartitionByRetType)

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

func (*IntakeCatalog) GetPartitionByOk

func (o *IntakeCatalog) GetPartitionByOk() (ret IntakeCatalogGetPartitionByRetType, ok bool)

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

func (*IntakeCatalog) GetTableName

func (o *IntakeCatalog) GetTableName() (res IntakeCatalogGetTableNameRetType)

GetTableName returns the TableName field value if set, zero value otherwise.

func (*IntakeCatalog) GetTableNameOk

func (o *IntakeCatalog) GetTableNameOk() (ret IntakeCatalogGetTableNameRetType, ok bool)

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

func (*IntakeCatalog) GetUri

func (o *IntakeCatalog) GetUri() (ret IntakeCatalogGetUriRetType)

GetUri returns the Uri field value

func (*IntakeCatalog) GetUriOk

func (o *IntakeCatalog) GetUriOk() (ret IntakeCatalogGetUriRetType, ok bool)

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

func (*IntakeCatalog) GetWarehouse

func (o *IntakeCatalog) GetWarehouse() (ret IntakeCatalogGetWarehouseRetType)

GetWarehouse returns the Warehouse field value

func (*IntakeCatalog) GetWarehouseOk

func (o *IntakeCatalog) GetWarehouseOk() (ret IntakeCatalogGetWarehouseRetType, ok bool)

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

func (*IntakeCatalog) HasAuth

func (o *IntakeCatalog) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*IntakeCatalog) HasNamespace

func (o *IntakeCatalog) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*IntakeCatalog) HasPartitionBy

func (o *IntakeCatalog) HasPartitionBy() bool

HasPartitionBy returns a boolean if a field has been set.

func (*IntakeCatalog) HasTableName

func (o *IntakeCatalog) HasTableName() bool

HasTableName returns a boolean if a field has been set.

func (*IntakeCatalog) SetAuth

SetAuth gets a reference to the given CatalogAuth and assigns it to the Auth field.

func (*IntakeCatalog) SetNamespace

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

func (*IntakeCatalog) SetPartitionBy

SetPartitionBy gets a reference to the given []string and assigns it to the PartitionBy field.

func (*IntakeCatalog) SetTableName

SetTableName gets a reference to the given string and assigns it to the TableName field.

func (*IntakeCatalog) SetUri

SetUri sets field value

func (*IntakeCatalog) SetWarehouse

SetWarehouse sets field value

func (IntakeCatalog) ToMap

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

type IntakeCatalogGetAuthArgType

type IntakeCatalogGetAuthArgType = CatalogAuth

type IntakeCatalogGetAuthAttributeType

type IntakeCatalogGetAuthAttributeType = *CatalogAuth

isModel

type IntakeCatalogGetAuthRetType

type IntakeCatalogGetAuthRetType = CatalogAuth

type IntakeCatalogGetNamespaceArgType

type IntakeCatalogGetNamespaceArgType = string

type IntakeCatalogGetNamespaceAttributeType

type IntakeCatalogGetNamespaceAttributeType = *string

isNotNullableString

type IntakeCatalogGetNamespaceRetType

type IntakeCatalogGetNamespaceRetType = string

type IntakeCatalogGetPartitionByArgType

type IntakeCatalogGetPartitionByArgType = *[]string

type IntakeCatalogGetPartitionByAttributeType

type IntakeCatalogGetPartitionByAttributeType = *[]string

isArray

type IntakeCatalogGetPartitionByRetType

type IntakeCatalogGetPartitionByRetType = *[]string

type IntakeCatalogGetTableNameArgType

type IntakeCatalogGetTableNameArgType = string

type IntakeCatalogGetTableNameAttributeType

type IntakeCatalogGetTableNameAttributeType = *string

isNotNullableString

type IntakeCatalogGetTableNameRetType

type IntakeCatalogGetTableNameRetType = string

type IntakeCatalogGetUriArgType

type IntakeCatalogGetUriArgType = string

type IntakeCatalogGetUriAttributeType

type IntakeCatalogGetUriAttributeType = *string

isNotNullableString

type IntakeCatalogGetUriRetType

type IntakeCatalogGetUriRetType = string

type IntakeCatalogGetWarehouseArgType

type IntakeCatalogGetWarehouseArgType = string

type IntakeCatalogGetWarehouseAttributeType

type IntakeCatalogGetWarehouseAttributeType = *string

isNotNullableString

type IntakeCatalogGetWarehouseRetType

type IntakeCatalogGetWarehouseRetType = string

type IntakeCatalogPatch

type IntakeCatalogPatch struct {
	Auth IntakeCatalogPatchGetAuthAttributeType `json:"auth,omitempty"`
	// The namespace to which data shall be written. It will be automatically created, if it does not exist.
	Namespace IntakeCatalogPatchGetNamespaceAttributeType `json:"namespace,omitempty"`
	// The table name is a short name chosen by the user to identify the table in Iceberg.
	TableName IntakeCatalogPatchGetTableNameAttributeType `json:"tableName,omitempty"`
	// The URI to the Iceberg catalog endpoint
	Uri IntakeCatalogPatchGetUriAttributeType `json:"uri,omitempty"`
	// The Iceberg warehouse to connect to, required when the catalog has no default warehouse configured.
	Warehouse IntakeCatalogPatchGetWarehouseAttributeType `json:"warehouse,omitempty"`
}

IntakeCatalogPatch The Iceberg catalog configuration

func NewIntakeCatalogPatch

func NewIntakeCatalogPatch() *IntakeCatalogPatch

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

func NewIntakeCatalogPatchWithDefaults

func NewIntakeCatalogPatchWithDefaults() *IntakeCatalogPatch

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

func (*IntakeCatalogPatch) GetAuth

GetAuth returns the Auth field value if set, zero value otherwise.

func (*IntakeCatalogPatch) GetAuthOk

func (o *IntakeCatalogPatch) GetAuthOk() (ret IntakeCatalogPatchGetAuthRetType, ok bool)

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

func (*IntakeCatalogPatch) GetNamespace

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

func (*IntakeCatalogPatch) GetNamespaceOk

func (o *IntakeCatalogPatch) GetNamespaceOk() (ret IntakeCatalogPatchGetNamespaceRetType, ok 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 (*IntakeCatalogPatch) GetTableName

GetTableName returns the TableName field value if set, zero value otherwise.

func (*IntakeCatalogPatch) GetTableNameOk

func (o *IntakeCatalogPatch) GetTableNameOk() (ret IntakeCatalogPatchGetTableNameRetType, ok bool)

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

func (*IntakeCatalogPatch) GetUri

GetUri returns the Uri field value if set, zero value otherwise.

func (*IntakeCatalogPatch) GetUriOk

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

func (*IntakeCatalogPatch) GetWarehouse

GetWarehouse returns the Warehouse field value if set, zero value otherwise.

func (*IntakeCatalogPatch) GetWarehouseOk

func (o *IntakeCatalogPatch) GetWarehouseOk() (ret IntakeCatalogPatchGetWarehouseRetType, ok bool)

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

func (*IntakeCatalogPatch) HasAuth

func (o *IntakeCatalogPatch) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*IntakeCatalogPatch) HasNamespace

func (o *IntakeCatalogPatch) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*IntakeCatalogPatch) HasTableName

func (o *IntakeCatalogPatch) HasTableName() bool

HasTableName returns a boolean if a field has been set.

func (*IntakeCatalogPatch) HasUri

func (o *IntakeCatalogPatch) HasUri() bool

HasUri returns a boolean if a field has been set.

func (*IntakeCatalogPatch) HasWarehouse

func (o *IntakeCatalogPatch) HasWarehouse() bool

HasWarehouse returns a boolean if a field has been set.

func (*IntakeCatalogPatch) SetAuth

SetAuth gets a reference to the given CatalogAuthPatch and assigns it to the Auth field.

func (*IntakeCatalogPatch) SetNamespace

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

func (*IntakeCatalogPatch) SetTableName

SetTableName gets a reference to the given string and assigns it to the TableName field.

func (*IntakeCatalogPatch) SetUri

SetUri gets a reference to the given string and assigns it to the Uri field.

func (*IntakeCatalogPatch) SetWarehouse

SetWarehouse gets a reference to the given string and assigns it to the Warehouse field.

func (IntakeCatalogPatch) ToMap

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

type IntakeCatalogPatchGetAuthArgType

type IntakeCatalogPatchGetAuthArgType = CatalogAuthPatch

type IntakeCatalogPatchGetAuthAttributeType

type IntakeCatalogPatchGetAuthAttributeType = *CatalogAuthPatch

isModel

type IntakeCatalogPatchGetAuthRetType

type IntakeCatalogPatchGetAuthRetType = CatalogAuthPatch

type IntakeCatalogPatchGetNamespaceArgType

type IntakeCatalogPatchGetNamespaceArgType = string

type IntakeCatalogPatchGetNamespaceAttributeType

type IntakeCatalogPatchGetNamespaceAttributeType = *string

isNotNullableString

type IntakeCatalogPatchGetNamespaceRetType

type IntakeCatalogPatchGetNamespaceRetType = string

type IntakeCatalogPatchGetTableNameArgType

type IntakeCatalogPatchGetTableNameArgType = string

type IntakeCatalogPatchGetTableNameAttributeType

type IntakeCatalogPatchGetTableNameAttributeType = *string

isNotNullableString

type IntakeCatalogPatchGetTableNameRetType

type IntakeCatalogPatchGetTableNameRetType = string

type IntakeCatalogPatchGetUriArgType

type IntakeCatalogPatchGetUriArgType = string

type IntakeCatalogPatchGetUriAttributeType

type IntakeCatalogPatchGetUriAttributeType = *string

isNotNullableString

type IntakeCatalogPatchGetUriRetType

type IntakeCatalogPatchGetUriRetType = string

type IntakeCatalogPatchGetWarehouseArgType

type IntakeCatalogPatchGetWarehouseArgType = string

type IntakeCatalogPatchGetWarehouseAttributeType

type IntakeCatalogPatchGetWarehouseAttributeType = *string

isNotNullableString

type IntakeCatalogPatchGetWarehouseRetType

type IntakeCatalogPatchGetWarehouseRetType = string

type IntakeResponse

type IntakeResponse struct {
	// REQUIRED
	Catalog IntakeResponseGetCatalogAttributeType `json:"catalog" required:"true"`
	// The point in time the resource was created.
	// REQUIRED
	CreateTime IntakeResponseGetCreateTimeAttributeType `json:"create_time" required:"true"`
	// The topic where undelivered messages are published (Dead Letter Queue).
	// REQUIRED
	DeadLetterTopic IntakeResponseGetDeadLetterTopicAttributeType `json:"deadLetterTopic" required:"true"`
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description IntakeResponseGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	// REQUIRED
	DisplayName IntakeResponseGetDisplayNameAttributeType `json:"displayName" required:"true"`
	// A human-readable description of the error, if the state is 'failed'.
	FailureMessage IntakeResponseGetFailureMessageAttributeType `json:"failure_message,omitempty"`
	// A auto generated unique id which identifies the resource.
	// REQUIRED
	Id IntakeResponseGetIdAttributeType `json:"id" required:"true"`
	// The unique id of the intake runner this intake is running on.
	// REQUIRED
	IntakeRunnerId IntakeResponseGetIntakeRunnerIdAttributeType `json:"intakeRunnerId" required:"true"`
	// Labels are a set of key-value pairs assigned to resources.
	Labels IntakeResponseGetLabelsAttributeType `json:"labels,omitempty"`
	// The current state of the resource.
	// REQUIRED
	State IntakeResponseGetStateAttributeType `json:"state" required:"true"`
	// The topic to publish data to.
	// REQUIRED
	Topic IntakeResponseGetTopicAttributeType `json:"topic" required:"true"`
	// Number of messages that failed delivery and were sent to the Dead Letter Queue.
	UndeliveredMessageCount IntakeResponseGetUndeliveredMessageCountAttributeType `json:"undeliveredMessageCount,omitempty"`
	// The URI for reaching the resource.
	// REQUIRED
	Uri IntakeResponseGetUriAttributeType `json:"uri" required:"true"`
}

IntakeResponse struct for IntakeResponse

func NewIntakeResponse

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

func NewIntakeResponseWithDefaults

func NewIntakeResponseWithDefaults() *IntakeResponse

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

func (*IntakeResponse) GetCatalog

func (o *IntakeResponse) GetCatalog() (ret IntakeResponseGetCatalogRetType)

GetCatalog returns the Catalog field value

func (*IntakeResponse) GetCatalogOk

func (o *IntakeResponse) GetCatalogOk() (ret IntakeResponseGetCatalogRetType, ok bool)

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

func (*IntakeResponse) GetCreateTime

func (o *IntakeResponse) GetCreateTime() (ret IntakeResponseGetCreateTimeRetType)

GetCreateTime returns the CreateTime field value

func (*IntakeResponse) GetCreateTimeOk

func (o *IntakeResponse) GetCreateTimeOk() (ret IntakeResponseGetCreateTimeRetType, ok bool)

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

func (*IntakeResponse) GetDeadLetterTopic

func (o *IntakeResponse) GetDeadLetterTopic() (ret IntakeResponseGetDeadLetterTopicRetType)

GetDeadLetterTopic returns the DeadLetterTopic field value

func (*IntakeResponse) GetDeadLetterTopicOk

func (o *IntakeResponse) GetDeadLetterTopicOk() (ret IntakeResponseGetDeadLetterTopicRetType, ok bool)

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

func (*IntakeResponse) GetDescription

func (o *IntakeResponse) GetDescription() (res IntakeResponseGetDescriptionRetType)

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

func (*IntakeResponse) GetDescriptionOk

func (o *IntakeResponse) GetDescriptionOk() (ret IntakeResponseGetDescriptionRetType, ok bool)

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

func (*IntakeResponse) GetDisplayName

func (o *IntakeResponse) GetDisplayName() (ret IntakeResponseGetDisplayNameRetType)

GetDisplayName returns the DisplayName field value

func (*IntakeResponse) GetDisplayNameOk

func (o *IntakeResponse) GetDisplayNameOk() (ret IntakeResponseGetDisplayNameRetType, ok bool)

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

func (*IntakeResponse) GetFailureMessage

func (o *IntakeResponse) GetFailureMessage() (res IntakeResponseGetFailureMessageRetType)

GetFailureMessage returns the FailureMessage field value if set, zero value otherwise.

func (*IntakeResponse) GetFailureMessageOk

func (o *IntakeResponse) GetFailureMessageOk() (ret IntakeResponseGetFailureMessageRetType, ok bool)

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

func (*IntakeResponse) GetId

func (o *IntakeResponse) GetId() (ret IntakeResponseGetIdRetType)

GetId returns the Id field value

func (*IntakeResponse) GetIdOk

func (o *IntakeResponse) GetIdOk() (ret IntakeResponseGetIdRetType, ok bool)

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

func (*IntakeResponse) GetIntakeRunnerId

func (o *IntakeResponse) GetIntakeRunnerId() (ret IntakeResponseGetIntakeRunnerIdRetType)

GetIntakeRunnerId returns the IntakeRunnerId field value

func (*IntakeResponse) GetIntakeRunnerIdOk

func (o *IntakeResponse) GetIntakeRunnerIdOk() (ret IntakeResponseGetIntakeRunnerIdRetType, ok bool)

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

func (*IntakeResponse) GetLabels

func (o *IntakeResponse) GetLabels() (res IntakeResponseGetLabelsRetType)

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

func (*IntakeResponse) GetLabelsOk

func (o *IntakeResponse) GetLabelsOk() (ret IntakeResponseGetLabelsRetType, ok bool)

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

func (*IntakeResponse) GetState

func (o *IntakeResponse) GetState() (ret IntakeResponseGetStateRetType)

GetState returns the State field value

func (*IntakeResponse) GetStateOk

func (o *IntakeResponse) GetStateOk() (ret IntakeResponseGetStateRetType, ok bool)

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

func (*IntakeResponse) GetTopic

func (o *IntakeResponse) GetTopic() (ret IntakeResponseGetTopicRetType)

GetTopic returns the Topic field value

func (*IntakeResponse) GetTopicOk

func (o *IntakeResponse) GetTopicOk() (ret IntakeResponseGetTopicRetType, ok bool)

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

func (*IntakeResponse) GetUndeliveredMessageCount

func (o *IntakeResponse) GetUndeliveredMessageCount() (res IntakeResponseGetUndeliveredMessageCountRetType)

GetUndeliveredMessageCount returns the UndeliveredMessageCount field value if set, zero value otherwise.

func (*IntakeResponse) GetUndeliveredMessageCountOk

func (o *IntakeResponse) GetUndeliveredMessageCountOk() (ret IntakeResponseGetUndeliveredMessageCountRetType, ok bool)

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

func (*IntakeResponse) GetUri

func (o *IntakeResponse) GetUri() (ret IntakeResponseGetUriRetType)

GetUri returns the Uri field value

func (*IntakeResponse) GetUriOk

func (o *IntakeResponse) GetUriOk() (ret IntakeResponseGetUriRetType, ok bool)

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

func (*IntakeResponse) HasDescription

func (o *IntakeResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*IntakeResponse) HasFailureMessage

func (o *IntakeResponse) HasFailureMessage() bool

HasFailureMessage returns a boolean if a field has been set.

func (*IntakeResponse) HasLabels

func (o *IntakeResponse) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*IntakeResponse) HasUndeliveredMessageCount

func (o *IntakeResponse) HasUndeliveredMessageCount() bool

HasUndeliveredMessageCount returns a boolean if a field has been set.

func (*IntakeResponse) SetCatalog

SetCatalog sets field value

func (*IntakeResponse) SetCreateTime

SetCreateTime sets field value

func (*IntakeResponse) SetDeadLetterTopic

SetDeadLetterTopic sets field value

func (*IntakeResponse) SetDescription

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

func (*IntakeResponse) SetDisplayName

SetDisplayName sets field value

func (*IntakeResponse) SetFailureMessage

SetFailureMessage gets a reference to the given string and assigns it to the FailureMessage field.

func (*IntakeResponse) SetId

SetId sets field value

func (*IntakeResponse) SetIntakeRunnerId

SetIntakeRunnerId sets field value

func (*IntakeResponse) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*IntakeResponse) SetState

SetState sets field value

func (*IntakeResponse) SetTopic

SetTopic sets field value

func (*IntakeResponse) SetUndeliveredMessageCount

func (o *IntakeResponse) SetUndeliveredMessageCount(v IntakeResponseGetUndeliveredMessageCountRetType)

SetUndeliveredMessageCount gets a reference to the given int64 and assigns it to the UndeliveredMessageCount field.

func (*IntakeResponse) SetUri

SetUri sets field value

func (IntakeResponse) ToMap

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

type IntakeResponseGetCatalogArgType

type IntakeResponseGetCatalogArgType = IntakeCatalog

type IntakeResponseGetCatalogAttributeType

type IntakeResponseGetCatalogAttributeType = *IntakeCatalog

isModel

type IntakeResponseGetCatalogRetType

type IntakeResponseGetCatalogRetType = IntakeCatalog

type IntakeResponseGetCreateTimeArgType

type IntakeResponseGetCreateTimeArgType = time.Time

type IntakeResponseGetCreateTimeAttributeType

type IntakeResponseGetCreateTimeAttributeType = *time.Time

isDateTime

type IntakeResponseGetCreateTimeRetType

type IntakeResponseGetCreateTimeRetType = time.Time

type IntakeResponseGetDeadLetterTopicArgType

type IntakeResponseGetDeadLetterTopicArgType = string

type IntakeResponseGetDeadLetterTopicAttributeType

type IntakeResponseGetDeadLetterTopicAttributeType = *string

isNotNullableString

type IntakeResponseGetDeadLetterTopicRetType

type IntakeResponseGetDeadLetterTopicRetType = string

type IntakeResponseGetDescriptionArgType

type IntakeResponseGetDescriptionArgType = string

type IntakeResponseGetDescriptionAttributeType

type IntakeResponseGetDescriptionAttributeType = *string

isNotNullableString

type IntakeResponseGetDescriptionRetType

type IntakeResponseGetDescriptionRetType = string

type IntakeResponseGetDisplayNameArgType

type IntakeResponseGetDisplayNameArgType = string

type IntakeResponseGetDisplayNameAttributeType

type IntakeResponseGetDisplayNameAttributeType = *string

isNotNullableString

type IntakeResponseGetDisplayNameRetType

type IntakeResponseGetDisplayNameRetType = string

type IntakeResponseGetFailureMessageArgType

type IntakeResponseGetFailureMessageArgType = string

type IntakeResponseGetFailureMessageAttributeType

type IntakeResponseGetFailureMessageAttributeType = *string

isNotNullableString

type IntakeResponseGetFailureMessageRetType

type IntakeResponseGetFailureMessageRetType = string

type IntakeResponseGetIdArgType

type IntakeResponseGetIdArgType = string

type IntakeResponseGetIdAttributeType

type IntakeResponseGetIdAttributeType = *string

isNotNullableString

type IntakeResponseGetIdRetType

type IntakeResponseGetIdRetType = string

type IntakeResponseGetIntakeRunnerIdArgType

type IntakeResponseGetIntakeRunnerIdArgType = string

type IntakeResponseGetIntakeRunnerIdAttributeType

type IntakeResponseGetIntakeRunnerIdAttributeType = *string

isNotNullableString

type IntakeResponseGetIntakeRunnerIdRetType

type IntakeResponseGetIntakeRunnerIdRetType = string

type IntakeResponseGetLabelsArgType

type IntakeResponseGetLabelsArgType = *map[string]string

type IntakeResponseGetLabelsAttributeType

type IntakeResponseGetLabelsAttributeType = *map[string]string

isContainer

type IntakeResponseGetLabelsRetType

type IntakeResponseGetLabelsRetType = *map[string]string

type IntakeResponseGetStateArgType

type IntakeResponseGetStateArgType = IntakeResponseState

type IntakeResponseGetStateAttributeType

type IntakeResponseGetStateAttributeType = *IntakeResponseState

type IntakeResponseGetStateRetType

type IntakeResponseGetStateRetType = IntakeResponseState

type IntakeResponseGetTopicArgType

type IntakeResponseGetTopicArgType = string

type IntakeResponseGetTopicAttributeType

type IntakeResponseGetTopicAttributeType = *string

isNotNullableString

type IntakeResponseGetTopicRetType

type IntakeResponseGetTopicRetType = string

type IntakeResponseGetUndeliveredMessageCountArgType

type IntakeResponseGetUndeliveredMessageCountArgType = int64

type IntakeResponseGetUndeliveredMessageCountAttributeType

type IntakeResponseGetUndeliveredMessageCountAttributeType = *int64

isLong

type IntakeResponseGetUndeliveredMessageCountRetType

type IntakeResponseGetUndeliveredMessageCountRetType = int64

type IntakeResponseGetUriArgType

type IntakeResponseGetUriArgType = string

type IntakeResponseGetUriAttributeType

type IntakeResponseGetUriAttributeType = *string

isNotNullableString

type IntakeResponseGetUriRetType

type IntakeResponseGetUriRetType = string

type IntakeResponseState

type IntakeResponseState string

IntakeResponseState The current state of the resource. value type for enums

const (
	INTAKERESPONSESTATE_RECONCILING IntakeResponseState = "reconciling"
	INTAKERESPONSESTATE_ACTIVE      IntakeResponseState = "active"
	INTAKERESPONSESTATE_DELETING    IntakeResponseState = "deleting"
	INTAKERESPONSESTATE_FAILED      IntakeResponseState = "failed"
)

List of State

func NewIntakeResponseStateFromValue

func NewIntakeResponseStateFromValue(v IntakeResponseState) (*IntakeResponseState, error)

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

func (IntakeResponseState) IsValid

func (v IntakeResponseState) IsValid() bool

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

func (IntakeResponseState) Ptr

Ptr returns reference to StateState value

func (*IntakeResponseState) UnmarshalJSON

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

type IntakeRunnerResponse

type IntakeRunnerResponse struct {
	// The point in time the resource was created.
	// REQUIRED
	CreateTime IntakeRunnerResponseGetCreateTimeAttributeType `json:"create_time" required:"true"`
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description IntakeRunnerResponseGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	// REQUIRED
	DisplayName IntakeRunnerResponseGetDisplayNameAttributeType `json:"displayName" required:"true"`
	// A auto generated unique id which identifies the resource.
	// REQUIRED
	Id IntakeRunnerResponseGetIdAttributeType `json:"id" required:"true"`
	// Labels are a set of key-value pairs assigned to resources.
	Labels IntakeRunnerResponseGetLabelsAttributeType `json:"labels,omitempty"`
	// The maximum size of a message in kibibytes (1 KiB = 1024 bytes).
	// REQUIRED
	MaxMessageSizeKiB IntakeRunnerResponseGetMaxMessageSizeKiBAttributeType `json:"maxMessageSizeKiB" required:"true"`
	// The maximum number of messages per hour.
	// REQUIRED
	MaxMessagesPerHour IntakeRunnerResponseGetMaxMessagesPerHourAttributeType `json:"maxMessagesPerHour" required:"true"`
	// The current state of the resource.
	// REQUIRED
	State IntakeRunnerResponseGetStateAttributeType `json:"state" required:"true"`
	// The URI for reaching the resource.
	// REQUIRED
	Uri IntakeRunnerResponseGetUriAttributeType `json:"uri" required:"true"`
}

IntakeRunnerResponse struct for IntakeRunnerResponse

func NewIntakeRunnerResponse

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

func NewIntakeRunnerResponseWithDefaults

func NewIntakeRunnerResponseWithDefaults() *IntakeRunnerResponse

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

func (*IntakeRunnerResponse) GetCreateTime

GetCreateTime returns the CreateTime field value

func (*IntakeRunnerResponse) GetCreateTimeOk

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

func (*IntakeRunnerResponse) GetDescription

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

func (*IntakeRunnerResponse) GetDescriptionOk

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

func (*IntakeRunnerResponse) GetDisplayName

GetDisplayName returns the DisplayName field value

func (*IntakeRunnerResponse) GetDisplayNameOk

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

func (*IntakeRunnerResponse) GetId

GetId returns the Id field value

func (*IntakeRunnerResponse) GetIdOk

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

func (*IntakeRunnerResponse) GetLabels

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

func (*IntakeRunnerResponse) GetLabelsOk

GetLabelsOk returns a tuple with the Labels 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 (*IntakeRunnerResponse) GetMaxMessageSizeKiB

GetMaxMessageSizeKiB returns the MaxMessageSizeKiB field value

func (*IntakeRunnerResponse) GetMaxMessageSizeKiBOk

func (o *IntakeRunnerResponse) GetMaxMessageSizeKiBOk() (ret IntakeRunnerResponseGetMaxMessageSizeKiBRetType, ok bool)

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

func (*IntakeRunnerResponse) GetMaxMessagesPerHour

GetMaxMessagesPerHour returns the MaxMessagesPerHour field value

func (*IntakeRunnerResponse) GetMaxMessagesPerHourOk

func (o *IntakeRunnerResponse) GetMaxMessagesPerHourOk() (ret IntakeRunnerResponseGetMaxMessagesPerHourRetType, ok bool)

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

func (*IntakeRunnerResponse) GetState

GetState returns the State field value

func (*IntakeRunnerResponse) GetStateOk

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

func (*IntakeRunnerResponse) GetUri

GetUri returns the Uri field value

func (*IntakeRunnerResponse) GetUriOk

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

func (*IntakeRunnerResponse) HasDescription

func (o *IntakeRunnerResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*IntakeRunnerResponse) HasLabels

func (o *IntakeRunnerResponse) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*IntakeRunnerResponse) SetCreateTime

SetCreateTime sets field value

func (*IntakeRunnerResponse) SetDescription

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

func (*IntakeRunnerResponse) SetDisplayName

SetDisplayName sets field value

func (*IntakeRunnerResponse) SetId

SetId sets field value

func (*IntakeRunnerResponse) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*IntakeRunnerResponse) SetMaxMessageSizeKiB

SetMaxMessageSizeKiB sets field value

func (*IntakeRunnerResponse) SetMaxMessagesPerHour

SetMaxMessagesPerHour sets field value

func (*IntakeRunnerResponse) SetState

SetState sets field value

func (*IntakeRunnerResponse) SetUri

SetUri sets field value

func (IntakeRunnerResponse) ToMap

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

type IntakeRunnerResponseGetCreateTimeArgType

type IntakeRunnerResponseGetCreateTimeArgType = time.Time

type IntakeRunnerResponseGetCreateTimeAttributeType

type IntakeRunnerResponseGetCreateTimeAttributeType = *time.Time

isDateTime

type IntakeRunnerResponseGetCreateTimeRetType

type IntakeRunnerResponseGetCreateTimeRetType = time.Time

type IntakeRunnerResponseGetDescriptionArgType

type IntakeRunnerResponseGetDescriptionArgType = string

type IntakeRunnerResponseGetDescriptionAttributeType

type IntakeRunnerResponseGetDescriptionAttributeType = *string

isNotNullableString

type IntakeRunnerResponseGetDescriptionRetType

type IntakeRunnerResponseGetDescriptionRetType = string

type IntakeRunnerResponseGetDisplayNameArgType

type IntakeRunnerResponseGetDisplayNameArgType = string

type IntakeRunnerResponseGetDisplayNameAttributeType

type IntakeRunnerResponseGetDisplayNameAttributeType = *string

isNotNullableString

type IntakeRunnerResponseGetDisplayNameRetType

type IntakeRunnerResponseGetDisplayNameRetType = string

type IntakeRunnerResponseGetIdArgType

type IntakeRunnerResponseGetIdArgType = string

type IntakeRunnerResponseGetIdAttributeType

type IntakeRunnerResponseGetIdAttributeType = *string

isNotNullableString

type IntakeRunnerResponseGetIdRetType

type IntakeRunnerResponseGetIdRetType = string

type IntakeRunnerResponseGetLabelsArgType

type IntakeRunnerResponseGetLabelsArgType = *map[string]string

type IntakeRunnerResponseGetLabelsAttributeType

type IntakeRunnerResponseGetLabelsAttributeType = *map[string]string

isContainer

type IntakeRunnerResponseGetLabelsRetType

type IntakeRunnerResponseGetLabelsRetType = *map[string]string

type IntakeRunnerResponseGetMaxMessageSizeKiBArgType

type IntakeRunnerResponseGetMaxMessageSizeKiBArgType = int64

type IntakeRunnerResponseGetMaxMessageSizeKiBAttributeType

type IntakeRunnerResponseGetMaxMessageSizeKiBAttributeType = *int64

isInteger

type IntakeRunnerResponseGetMaxMessageSizeKiBRetType

type IntakeRunnerResponseGetMaxMessageSizeKiBRetType = int64

type IntakeRunnerResponseGetMaxMessagesPerHourArgType

type IntakeRunnerResponseGetMaxMessagesPerHourArgType = int64

type IntakeRunnerResponseGetMaxMessagesPerHourAttributeType

type IntakeRunnerResponseGetMaxMessagesPerHourAttributeType = *int64

isInteger

type IntakeRunnerResponseGetMaxMessagesPerHourRetType

type IntakeRunnerResponseGetMaxMessagesPerHourRetType = int64

type IntakeRunnerResponseGetStateArgType

type IntakeRunnerResponseGetStateArgType = IntakeRunnerResponseState

type IntakeRunnerResponseGetStateAttributeType

type IntakeRunnerResponseGetStateAttributeType = *IntakeRunnerResponseState

type IntakeRunnerResponseGetStateRetType

type IntakeRunnerResponseGetStateRetType = IntakeRunnerResponseState

type IntakeRunnerResponseGetUriArgType

type IntakeRunnerResponseGetUriArgType = string

type IntakeRunnerResponseGetUriAttributeType

type IntakeRunnerResponseGetUriAttributeType = *string

isNotNullableString

type IntakeRunnerResponseGetUriRetType

type IntakeRunnerResponseGetUriRetType = string

type IntakeRunnerResponseState

type IntakeRunnerResponseState string

IntakeRunnerResponseState The current state of the resource. value type for enums

const (
	INTAKERUNNERRESPONSESTATE_RECONCILING IntakeRunnerResponseState = "reconciling"
	INTAKERUNNERRESPONSESTATE_ACTIVE      IntakeRunnerResponseState = "active"
	INTAKERUNNERRESPONSESTATE_DELETING    IntakeRunnerResponseState = "deleting"
)

List of State

func NewIntakeRunnerResponseStateFromValue

func NewIntakeRunnerResponseStateFromValue(v IntakeRunnerResponseState) (*IntakeRunnerResponseState, error)

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

func (IntakeRunnerResponseState) IsValid

func (v IntakeRunnerResponseState) IsValid() bool

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

func (IntakeRunnerResponseState) Ptr

Ptr returns reference to StateState value

func (*IntakeRunnerResponseState) UnmarshalJSON

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

type IntakeUserResponse

type IntakeUserResponse struct {
	ClientConfig IntakeUserResponseGetClientConfigAttributeType `json:"clientConfig,omitempty"`
	// The point in time the resource was created.
	// REQUIRED
	CreateTime IntakeUserResponseGetCreateTimeAttributeType `json:"create_time" required:"true"`
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description IntakeUserResponseGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	// REQUIRED
	DisplayName IntakeUserResponseGetDisplayNameAttributeType `json:"displayName" required:"true"`
	// A auto generated unique id which identifies the resource.
	// REQUIRED
	Id IntakeUserResponseGetIdAttributeType `json:"id" required:"true"`
	// Labels are a set of key-value pairs assigned to resources.
	Labels IntakeUserResponseGetLabelsAttributeType `json:"labels,omitempty"`
	// The current state of the resource.
	// REQUIRED
	State IntakeUserResponseGetStateAttributeType `json:"state" required:"true"`
	// REQUIRED
	Type IntakeUserResponseGetTypeAttributeType `json:"type" required:"true"`
	// The user to connect to the intake.
	// REQUIRED
	User IntakeUserResponseGetUserAttributeType `json:"user" required:"true"`
}

IntakeUserResponse struct for IntakeUserResponse

func NewIntakeUserResponse

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

func NewIntakeUserResponseWithDefaults

func NewIntakeUserResponseWithDefaults() *IntakeUserResponse

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

func (*IntakeUserResponse) GetClientConfig

GetClientConfig returns the ClientConfig field value if set, zero value otherwise.

func (*IntakeUserResponse) GetClientConfigOk

func (o *IntakeUserResponse) GetClientConfigOk() (ret IntakeUserResponseGetClientConfigRetType, ok bool)

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

func (*IntakeUserResponse) GetCreateTime

GetCreateTime returns the CreateTime field value

func (*IntakeUserResponse) GetCreateTimeOk

func (o *IntakeUserResponse) GetCreateTimeOk() (ret IntakeUserResponseGetCreateTimeRetType, ok bool)

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

func (*IntakeUserResponse) GetDescription

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

func (*IntakeUserResponse) GetDescriptionOk

func (o *IntakeUserResponse) GetDescriptionOk() (ret IntakeUserResponseGetDescriptionRetType, ok bool)

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

func (*IntakeUserResponse) GetDisplayName

GetDisplayName returns the DisplayName field value

func (*IntakeUserResponse) GetDisplayNameOk

func (o *IntakeUserResponse) GetDisplayNameOk() (ret IntakeUserResponseGetDisplayNameRetType, ok bool)

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

func (*IntakeUserResponse) GetId

GetId returns the Id field value

func (*IntakeUserResponse) GetIdOk

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

func (*IntakeUserResponse) GetLabels

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

func (*IntakeUserResponse) GetLabelsOk

func (o *IntakeUserResponse) GetLabelsOk() (ret IntakeUserResponseGetLabelsRetType, ok bool)

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

func (*IntakeUserResponse) GetState

GetState returns the State field value

func (*IntakeUserResponse) GetStateOk

func (o *IntakeUserResponse) GetStateOk() (ret IntakeUserResponseGetStateRetType, ok bool)

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

func (*IntakeUserResponse) GetType

GetType returns the Type field value

func (*IntakeUserResponse) GetTypeOk

func (o *IntakeUserResponse) GetTypeOk() (ret IntakeUserResponseGetTypeRetType, ok bool)

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

func (*IntakeUserResponse) GetUser

GetUser returns the User field value

func (*IntakeUserResponse) GetUserOk

func (o *IntakeUserResponse) GetUserOk() (ret IntakeUserResponseGetUserRetType, ok bool)

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

func (*IntakeUserResponse) HasClientConfig

func (o *IntakeUserResponse) HasClientConfig() bool

HasClientConfig returns a boolean if a field has been set.

func (*IntakeUserResponse) HasDescription

func (o *IntakeUserResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*IntakeUserResponse) HasLabels

func (o *IntakeUserResponse) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*IntakeUserResponse) SetClientConfig

SetClientConfig gets a reference to the given ClientConfig and assigns it to the ClientConfig field.

func (*IntakeUserResponse) SetCreateTime

SetCreateTime sets field value

func (*IntakeUserResponse) SetDescription

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

func (*IntakeUserResponse) SetDisplayName

SetDisplayName sets field value

func (*IntakeUserResponse) SetId

SetId sets field value

func (*IntakeUserResponse) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*IntakeUserResponse) SetState

SetState sets field value

func (*IntakeUserResponse) SetType

SetType sets field value

func (*IntakeUserResponse) SetUser

SetUser sets field value

func (IntakeUserResponse) ToMap

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

type IntakeUserResponseGetClientConfigArgType

type IntakeUserResponseGetClientConfigArgType = ClientConfig

type IntakeUserResponseGetClientConfigAttributeType

type IntakeUserResponseGetClientConfigAttributeType = *ClientConfig

isModel

type IntakeUserResponseGetClientConfigRetType

type IntakeUserResponseGetClientConfigRetType = ClientConfig

type IntakeUserResponseGetCreateTimeArgType

type IntakeUserResponseGetCreateTimeArgType = time.Time

type IntakeUserResponseGetCreateTimeAttributeType

type IntakeUserResponseGetCreateTimeAttributeType = *time.Time

isDateTime

type IntakeUserResponseGetCreateTimeRetType

type IntakeUserResponseGetCreateTimeRetType = time.Time

type IntakeUserResponseGetDescriptionArgType

type IntakeUserResponseGetDescriptionArgType = string

type IntakeUserResponseGetDescriptionAttributeType

type IntakeUserResponseGetDescriptionAttributeType = *string

isNotNullableString

type IntakeUserResponseGetDescriptionRetType

type IntakeUserResponseGetDescriptionRetType = string

type IntakeUserResponseGetDisplayNameArgType

type IntakeUserResponseGetDisplayNameArgType = string

type IntakeUserResponseGetDisplayNameAttributeType

type IntakeUserResponseGetDisplayNameAttributeType = *string

isNotNullableString

type IntakeUserResponseGetDisplayNameRetType

type IntakeUserResponseGetDisplayNameRetType = string

type IntakeUserResponseGetIdArgType

type IntakeUserResponseGetIdArgType = string

type IntakeUserResponseGetIdAttributeType

type IntakeUserResponseGetIdAttributeType = *string

isNotNullableString

type IntakeUserResponseGetIdRetType

type IntakeUserResponseGetIdRetType = string

type IntakeUserResponseGetLabelsArgType

type IntakeUserResponseGetLabelsArgType = *map[string]string

type IntakeUserResponseGetLabelsAttributeType

type IntakeUserResponseGetLabelsAttributeType = *map[string]string

isContainer

type IntakeUserResponseGetLabelsRetType

type IntakeUserResponseGetLabelsRetType = *map[string]string

type IntakeUserResponseGetStateArgType

type IntakeUserResponseGetStateArgType = IntakeUserResponseState

type IntakeUserResponseGetStateAttributeType

type IntakeUserResponseGetStateAttributeType = *IntakeUserResponseState

type IntakeUserResponseGetStateRetType

type IntakeUserResponseGetStateRetType = IntakeUserResponseState

type IntakeUserResponseGetTypeArgType

type IntakeUserResponseGetTypeArgType = UserType

type IntakeUserResponseGetTypeAttributeType

type IntakeUserResponseGetTypeAttributeType = *UserType

isEnumRef

type IntakeUserResponseGetTypeRetType

type IntakeUserResponseGetTypeRetType = UserType

type IntakeUserResponseGetUserArgType

type IntakeUserResponseGetUserArgType = string

type IntakeUserResponseGetUserAttributeType

type IntakeUserResponseGetUserAttributeType = *string

isNotNullableString

type IntakeUserResponseGetUserRetType

type IntakeUserResponseGetUserRetType = string

type IntakeUserResponseState

type IntakeUserResponseState string

IntakeUserResponseState The current state of the resource. value type for enums

const (
	INTAKEUSERRESPONSESTATE_RECONCILING IntakeUserResponseState = "reconciling"
	INTAKEUSERRESPONSESTATE_ACTIVE      IntakeUserResponseState = "active"
	INTAKEUSERRESPONSESTATE_DELETING    IntakeUserResponseState = "deleting"
)

List of State

func NewIntakeUserResponseStateFromValue

func NewIntakeUserResponseStateFromValue(v IntakeUserResponseState) (*IntakeUserResponseState, error)

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

func (IntakeUserResponseState) IsValid

func (v IntakeUserResponseState) IsValid() bool

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

func (IntakeUserResponseState) Ptr

Ptr returns reference to StateState value

func (*IntakeUserResponseState) UnmarshalJSON

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

type ListIntakeRunnersRequest

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

func (ListIntakeRunnersRequest) Execute

func (ListIntakeRunnersRequest) PageSize

func (ListIntakeRunnersRequest) PageToken

type ListIntakeRunnersResponse

type ListIntakeRunnersResponse struct {
	// REQUIRED
	IntakeRunners ListIntakeRunnersResponseGetIntakeRunnersAttributeType `json:"intakeRunners" required:"true"`
	// A token to retrieve the next page of results.
	NextPageToken ListIntakeRunnersResponseGetNextPageTokenAttributeType `json:"nextPageToken,omitempty"`
}

ListIntakeRunnersResponse struct for ListIntakeRunnersResponse

func NewListIntakeRunnersResponse

func NewListIntakeRunnersResponse(intakeRunners ListIntakeRunnersResponseGetIntakeRunnersArgType) *ListIntakeRunnersResponse

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

func NewListIntakeRunnersResponseWithDefaults

func NewListIntakeRunnersResponseWithDefaults() *ListIntakeRunnersResponse

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

func (*ListIntakeRunnersResponse) GetIntakeRunners

GetIntakeRunners returns the IntakeRunners field value

func (*ListIntakeRunnersResponse) GetIntakeRunnersOk

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

func (*ListIntakeRunnersResponse) GetNextPageToken

GetNextPageToken returns the NextPageToken field value if set, zero value otherwise.

func (*ListIntakeRunnersResponse) GetNextPageTokenOk

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

func (*ListIntakeRunnersResponse) HasNextPageToken

func (o *ListIntakeRunnersResponse) HasNextPageToken() bool

HasNextPageToken returns a boolean if a field has been set.

func (*ListIntakeRunnersResponse) SetIntakeRunners

SetIntakeRunners sets field value

func (*ListIntakeRunnersResponse) SetNextPageToken

SetNextPageToken gets a reference to the given string and assigns it to the NextPageToken field.

func (ListIntakeRunnersResponse) ToMap

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

type ListIntakeRunnersResponseGetIntakeRunnersArgType

type ListIntakeRunnersResponseGetIntakeRunnersArgType = []IntakeRunnerResponse

type ListIntakeRunnersResponseGetIntakeRunnersAttributeType

type ListIntakeRunnersResponseGetIntakeRunnersAttributeType = *[]IntakeRunnerResponse

isArray

type ListIntakeRunnersResponseGetIntakeRunnersRetType

type ListIntakeRunnersResponseGetIntakeRunnersRetType = []IntakeRunnerResponse

type ListIntakeRunnersResponseGetNextPageTokenArgType

type ListIntakeRunnersResponseGetNextPageTokenArgType = string

type ListIntakeRunnersResponseGetNextPageTokenAttributeType

type ListIntakeRunnersResponseGetNextPageTokenAttributeType = *string

isNotNullableString

type ListIntakeRunnersResponseGetNextPageTokenRetType

type ListIntakeRunnersResponseGetNextPageTokenRetType = string

type ListIntakeUsersRequest

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

func (ListIntakeUsersRequest) Execute

func (ListIntakeUsersRequest) PageSize

func (ListIntakeUsersRequest) PageToken

type ListIntakeUsersResponse

type ListIntakeUsersResponse struct {
	// REQUIRED
	IntakeUsers ListIntakeUsersResponseGetIntakeUsersAttributeType `json:"intakeUsers" required:"true"`
	// A token to retrieve the next page of results.
	NextPageToken ListIntakeUsersResponseGetNextPageTokenAttributeType `json:"nextPageToken,omitempty"`
}

ListIntakeUsersResponse struct for ListIntakeUsersResponse

func NewListIntakeUsersResponse

func NewListIntakeUsersResponse(intakeUsers ListIntakeUsersResponseGetIntakeUsersArgType) *ListIntakeUsersResponse

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

func NewListIntakeUsersResponseWithDefaults

func NewListIntakeUsersResponseWithDefaults() *ListIntakeUsersResponse

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

func (*ListIntakeUsersResponse) GetIntakeUsers

GetIntakeUsers returns the IntakeUsers field value

func (*ListIntakeUsersResponse) GetIntakeUsersOk

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

func (*ListIntakeUsersResponse) GetNextPageToken

GetNextPageToken returns the NextPageToken field value if set, zero value otherwise.

func (*ListIntakeUsersResponse) GetNextPageTokenOk

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

func (*ListIntakeUsersResponse) HasNextPageToken

func (o *ListIntakeUsersResponse) HasNextPageToken() bool

HasNextPageToken returns a boolean if a field has been set.

func (*ListIntakeUsersResponse) SetIntakeUsers

SetIntakeUsers sets field value

func (*ListIntakeUsersResponse) SetNextPageToken

SetNextPageToken gets a reference to the given string and assigns it to the NextPageToken field.

func (ListIntakeUsersResponse) ToMap

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

type ListIntakeUsersResponseGetIntakeUsersArgType

type ListIntakeUsersResponseGetIntakeUsersArgType = []IntakeUserResponse

type ListIntakeUsersResponseGetIntakeUsersAttributeType

type ListIntakeUsersResponseGetIntakeUsersAttributeType = *[]IntakeUserResponse

isArray

type ListIntakeUsersResponseGetIntakeUsersRetType

type ListIntakeUsersResponseGetIntakeUsersRetType = []IntakeUserResponse

type ListIntakeUsersResponseGetNextPageTokenArgType

type ListIntakeUsersResponseGetNextPageTokenArgType = string

type ListIntakeUsersResponseGetNextPageTokenAttributeType

type ListIntakeUsersResponseGetNextPageTokenAttributeType = *string

isNotNullableString

type ListIntakeUsersResponseGetNextPageTokenRetType

type ListIntakeUsersResponseGetNextPageTokenRetType = string

type ListIntakesRequest

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

func (ListIntakesRequest) Execute

func (ListIntakesRequest) PageSize

func (r ListIntakesRequest) PageSize(pageSize int32) ApiListIntakesRequest

func (ListIntakesRequest) PageToken

func (r ListIntakesRequest) PageToken(pageToken string) ApiListIntakesRequest

type ListIntakesResponse

type ListIntakesResponse struct {
	// REQUIRED
	Intakes ListIntakesResponseGetIntakesAttributeType `json:"intakes" required:"true"`
	// A token to retrieve the next page of results.
	NextPageToken ListIntakesResponseGetNextPageTokenAttributeType `json:"nextPageToken,omitempty"`
}

ListIntakesResponse struct for ListIntakesResponse

func NewListIntakesResponse

func NewListIntakesResponse(intakes ListIntakesResponseGetIntakesArgType) *ListIntakesResponse

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

func NewListIntakesResponseWithDefaults

func NewListIntakesResponseWithDefaults() *ListIntakesResponse

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

func (*ListIntakesResponse) GetIntakes

GetIntakes returns the Intakes field value

func (*ListIntakesResponse) GetIntakesOk

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

func (*ListIntakesResponse) GetNextPageToken

GetNextPageToken returns the NextPageToken field value if set, zero value otherwise.

func (*ListIntakesResponse) GetNextPageTokenOk

func (o *ListIntakesResponse) GetNextPageTokenOk() (ret ListIntakesResponseGetNextPageTokenRetType, ok bool)

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

func (*ListIntakesResponse) HasNextPageToken

func (o *ListIntakesResponse) HasNextPageToken() bool

HasNextPageToken returns a boolean if a field has been set.

func (*ListIntakesResponse) SetIntakes

SetIntakes sets field value

func (*ListIntakesResponse) SetNextPageToken

SetNextPageToken gets a reference to the given string and assigns it to the NextPageToken field.

func (ListIntakesResponse) ToMap

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

type ListIntakesResponseGetIntakesArgType

type ListIntakesResponseGetIntakesArgType = []IntakeResponse

type ListIntakesResponseGetIntakesAttributeType

type ListIntakesResponseGetIntakesAttributeType = *[]IntakeResponse

isArray

type ListIntakesResponseGetIntakesRetType

type ListIntakesResponseGetIntakesRetType = []IntakeResponse

type ListIntakesResponseGetNextPageTokenArgType

type ListIntakesResponseGetNextPageTokenArgType = string

type ListIntakesResponseGetNextPageTokenAttributeType

type ListIntakesResponseGetNextPageTokenAttributeType = *string

isNotNullableString

type ListIntakesResponseGetNextPageTokenRetType

type ListIntakesResponseGetNextPageTokenRetType = string

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

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 NullableCatalogAuth

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

func NewNullableCatalogAuth

func NewNullableCatalogAuth(val *CatalogAuth) *NullableCatalogAuth

func (NullableCatalogAuth) Get

func (NullableCatalogAuth) IsSet

func (v NullableCatalogAuth) IsSet() bool

func (NullableCatalogAuth) MarshalJSON

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

func (*NullableCatalogAuth) Set

func (v *NullableCatalogAuth) Set(val *CatalogAuth)

func (*NullableCatalogAuth) UnmarshalJSON

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

func (*NullableCatalogAuth) Unset

func (v *NullableCatalogAuth) Unset()

type NullableCatalogAuthPatch

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

func NewNullableCatalogAuthPatch

func NewNullableCatalogAuthPatch(val *CatalogAuthPatch) *NullableCatalogAuthPatch

func (NullableCatalogAuthPatch) Get

func (NullableCatalogAuthPatch) IsSet

func (v NullableCatalogAuthPatch) IsSet() bool

func (NullableCatalogAuthPatch) MarshalJSON

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

func (*NullableCatalogAuthPatch) Set

func (*NullableCatalogAuthPatch) UnmarshalJSON

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

func (*NullableCatalogAuthPatch) Unset

func (v *NullableCatalogAuthPatch) Unset()

type NullableCatalogAuthType

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

func NewNullableCatalogAuthType

func NewNullableCatalogAuthType(val *CatalogAuthType) *NullableCatalogAuthType

func (NullableCatalogAuthType) Get

func (NullableCatalogAuthType) IsSet

func (v NullableCatalogAuthType) IsSet() bool

func (NullableCatalogAuthType) MarshalJSON

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

func (*NullableCatalogAuthType) Set

func (*NullableCatalogAuthType) UnmarshalJSON

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

func (*NullableCatalogAuthType) Unset

func (v *NullableCatalogAuthType) Unset()

type NullableClientConfig

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

func NewNullableClientConfig

func NewNullableClientConfig(val *ClientConfig) *NullableClientConfig

func (NullableClientConfig) Get

func (NullableClientConfig) IsSet

func (v NullableClientConfig) IsSet() bool

func (NullableClientConfig) MarshalJSON

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

func (*NullableClientConfig) Set

func (v *NullableClientConfig) Set(val *ClientConfig)

func (*NullableClientConfig) UnmarshalJSON

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

func (*NullableClientConfig) Unset

func (v *NullableClientConfig) Unset()

type NullableCreateIntakePayload

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

func NewNullableCreateIntakePayload

func NewNullableCreateIntakePayload(val *CreateIntakePayload) *NullableCreateIntakePayload

func (NullableCreateIntakePayload) Get

func (NullableCreateIntakePayload) IsSet

func (NullableCreateIntakePayload) MarshalJSON

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

func (*NullableCreateIntakePayload) Set

func (*NullableCreateIntakePayload) UnmarshalJSON

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

func (*NullableCreateIntakePayload) Unset

func (v *NullableCreateIntakePayload) Unset()

type NullableCreateIntakeRunnerPayload

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

func (NullableCreateIntakeRunnerPayload) Get

func (NullableCreateIntakeRunnerPayload) IsSet

func (NullableCreateIntakeRunnerPayload) MarshalJSON

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

func (*NullableCreateIntakeRunnerPayload) Set

func (*NullableCreateIntakeRunnerPayload) UnmarshalJSON

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

func (*NullableCreateIntakeRunnerPayload) Unset

type NullableCreateIntakeUserPayload

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

func (NullableCreateIntakeUserPayload) Get

func (NullableCreateIntakeUserPayload) IsSet

func (NullableCreateIntakeUserPayload) MarshalJSON

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

func (*NullableCreateIntakeUserPayload) Set

func (*NullableCreateIntakeUserPayload) UnmarshalJSON

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

func (*NullableCreateIntakeUserPayload) Unset

type NullableDremioAuth

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

func NewNullableDremioAuth

func NewNullableDremioAuth(val *DremioAuth) *NullableDremioAuth

func (NullableDremioAuth) Get

func (v NullableDremioAuth) Get() *DremioAuth

func (NullableDremioAuth) IsSet

func (v NullableDremioAuth) IsSet() bool

func (NullableDremioAuth) MarshalJSON

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

func (*NullableDremioAuth) Set

func (v *NullableDremioAuth) Set(val *DremioAuth)

func (*NullableDremioAuth) UnmarshalJSON

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

func (*NullableDremioAuth) Unset

func (v *NullableDremioAuth) Unset()

type NullableDremioAuthPatch

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

func NewNullableDremioAuthPatch

func NewNullableDremioAuthPatch(val *DremioAuthPatch) *NullableDremioAuthPatch

func (NullableDremioAuthPatch) Get

func (NullableDremioAuthPatch) IsSet

func (v NullableDremioAuthPatch) IsSet() bool

func (NullableDremioAuthPatch) MarshalJSON

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

func (*NullableDremioAuthPatch) Set

func (*NullableDremioAuthPatch) UnmarshalJSON

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

func (*NullableDremioAuthPatch) Unset

func (v *NullableDremioAuthPatch) 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 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 NullableIntakeCatalog

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

func NewNullableIntakeCatalog

func NewNullableIntakeCatalog(val *IntakeCatalog) *NullableIntakeCatalog

func (NullableIntakeCatalog) Get

func (NullableIntakeCatalog) IsSet

func (v NullableIntakeCatalog) IsSet() bool

func (NullableIntakeCatalog) MarshalJSON

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

func (*NullableIntakeCatalog) Set

func (v *NullableIntakeCatalog) Set(val *IntakeCatalog)

func (*NullableIntakeCatalog) UnmarshalJSON

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

func (*NullableIntakeCatalog) Unset

func (v *NullableIntakeCatalog) Unset()

type NullableIntakeCatalogPatch

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

func NewNullableIntakeCatalogPatch

func NewNullableIntakeCatalogPatch(val *IntakeCatalogPatch) *NullableIntakeCatalogPatch

func (NullableIntakeCatalogPatch) Get

func (NullableIntakeCatalogPatch) IsSet

func (v NullableIntakeCatalogPatch) IsSet() bool

func (NullableIntakeCatalogPatch) MarshalJSON

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

func (*NullableIntakeCatalogPatch) Set

func (*NullableIntakeCatalogPatch) UnmarshalJSON

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

func (*NullableIntakeCatalogPatch) Unset

func (v *NullableIntakeCatalogPatch) Unset()

type NullableIntakeResponse

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

func NewNullableIntakeResponse

func NewNullableIntakeResponse(val *IntakeResponse) *NullableIntakeResponse

func (NullableIntakeResponse) Get

func (NullableIntakeResponse) IsSet

func (v NullableIntakeResponse) IsSet() bool

func (NullableIntakeResponse) MarshalJSON

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

func (*NullableIntakeResponse) Set

func (*NullableIntakeResponse) UnmarshalJSON

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

func (*NullableIntakeResponse) Unset

func (v *NullableIntakeResponse) Unset()

type NullableIntakeResponseState

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

func NewNullableIntakeResponseState

func NewNullableIntakeResponseState(val *IntakeResponseState) *NullableIntakeResponseState

func (NullableIntakeResponseState) Get

func (NullableIntakeResponseState) IsSet

func (NullableIntakeResponseState) MarshalJSON

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

func (*NullableIntakeResponseState) Set

func (*NullableIntakeResponseState) UnmarshalJSON

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

func (*NullableIntakeResponseState) Unset

func (v *NullableIntakeResponseState) Unset()

type NullableIntakeRunnerResponse

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

func NewNullableIntakeRunnerResponse

func NewNullableIntakeRunnerResponse(val *IntakeRunnerResponse) *NullableIntakeRunnerResponse

func (NullableIntakeRunnerResponse) Get

func (NullableIntakeRunnerResponse) IsSet

func (NullableIntakeRunnerResponse) MarshalJSON

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

func (*NullableIntakeRunnerResponse) Set

func (*NullableIntakeRunnerResponse) UnmarshalJSON

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

func (*NullableIntakeRunnerResponse) Unset

func (v *NullableIntakeRunnerResponse) Unset()

type NullableIntakeRunnerResponseState

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

func (NullableIntakeRunnerResponseState) Get

func (NullableIntakeRunnerResponseState) IsSet

func (NullableIntakeRunnerResponseState) MarshalJSON

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

func (*NullableIntakeRunnerResponseState) Set

func (*NullableIntakeRunnerResponseState) UnmarshalJSON

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

func (*NullableIntakeRunnerResponseState) Unset

type NullableIntakeUserResponse

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

func NewNullableIntakeUserResponse

func NewNullableIntakeUserResponse(val *IntakeUserResponse) *NullableIntakeUserResponse

func (NullableIntakeUserResponse) Get

func (NullableIntakeUserResponse) IsSet

func (v NullableIntakeUserResponse) IsSet() bool

func (NullableIntakeUserResponse) MarshalJSON

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

func (*NullableIntakeUserResponse) Set

func (*NullableIntakeUserResponse) UnmarshalJSON

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

func (*NullableIntakeUserResponse) Unset

func (v *NullableIntakeUserResponse) Unset()

type NullableIntakeUserResponseState

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

func (NullableIntakeUserResponseState) Get

func (NullableIntakeUserResponseState) IsSet

func (NullableIntakeUserResponseState) MarshalJSON

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

func (*NullableIntakeUserResponseState) Set

func (*NullableIntakeUserResponseState) UnmarshalJSON

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

func (*NullableIntakeUserResponseState) Unset

type NullableListIntakeRunnersResponse

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

func (NullableListIntakeRunnersResponse) Get

func (NullableListIntakeRunnersResponse) IsSet

func (NullableListIntakeRunnersResponse) MarshalJSON

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

func (*NullableListIntakeRunnersResponse) Set

func (*NullableListIntakeRunnersResponse) UnmarshalJSON

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

func (*NullableListIntakeRunnersResponse) Unset

type NullableListIntakeUsersResponse

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

func (NullableListIntakeUsersResponse) Get

func (NullableListIntakeUsersResponse) IsSet

func (NullableListIntakeUsersResponse) MarshalJSON

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

func (*NullableListIntakeUsersResponse) Set

func (*NullableListIntakeUsersResponse) UnmarshalJSON

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

func (*NullableListIntakeUsersResponse) Unset

type NullableListIntakesResponse

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

func NewNullableListIntakesResponse

func NewNullableListIntakesResponse(val *ListIntakesResponse) *NullableListIntakesResponse

func (NullableListIntakesResponse) Get

func (NullableListIntakesResponse) IsSet

func (NullableListIntakesResponse) MarshalJSON

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

func (*NullableListIntakesResponse) Set

func (*NullableListIntakesResponse) UnmarshalJSON

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

func (*NullableListIntakesResponse) Unset

func (v *NullableListIntakesResponse) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpdateIntakePayload

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

func NewNullableUpdateIntakePayload

func NewNullableUpdateIntakePayload(val *UpdateIntakePayload) *NullableUpdateIntakePayload

func (NullableUpdateIntakePayload) Get

func (NullableUpdateIntakePayload) IsSet

func (NullableUpdateIntakePayload) MarshalJSON

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

func (*NullableUpdateIntakePayload) Set

func (*NullableUpdateIntakePayload) UnmarshalJSON

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

func (*NullableUpdateIntakePayload) Unset

func (v *NullableUpdateIntakePayload) Unset()

type NullableUpdateIntakeRunnerPayload

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

func (NullableUpdateIntakeRunnerPayload) Get

func (NullableUpdateIntakeRunnerPayload) IsSet

func (NullableUpdateIntakeRunnerPayload) MarshalJSON

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

func (*NullableUpdateIntakeRunnerPayload) Set

func (*NullableUpdateIntakeRunnerPayload) UnmarshalJSON

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

func (*NullableUpdateIntakeRunnerPayload) Unset

type NullableUpdateIntakeUserPayload

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

func (NullableUpdateIntakeUserPayload) Get

func (NullableUpdateIntakeUserPayload) IsSet

func (NullableUpdateIntakeUserPayload) MarshalJSON

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

func (*NullableUpdateIntakeUserPayload) Set

func (*NullableUpdateIntakeUserPayload) UnmarshalJSON

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

func (*NullableUpdateIntakeUserPayload) Unset

type NullableUserType

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

func NewNullableUserType

func NewNullableUserType(val *UserType) *NullableUserType

func (NullableUserType) Get

func (v NullableUserType) Get() *UserType

func (NullableUserType) IsSet

func (v NullableUserType) IsSet() bool

func (NullableUserType) MarshalJSON

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

func (*NullableUserType) Set

func (v *NullableUserType) Set(val *UserType)

func (*NullableUserType) UnmarshalJSON

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

func (*NullableUserType) Unset

func (v *NullableUserType) Unset()

type NullableValue

type NullableValue[T any] struct {
	// contains filtered or unexported fields
}

func (NullableValue[T]) Get

func (v NullableValue[T]) Get() *T

func (NullableValue[T]) IsSet

func (v NullableValue[T]) IsSet() bool

func (*NullableValue[T]) Set

func (v *NullableValue[T]) Set(val *T)

func (*NullableValue[T]) Unset

func (v *NullableValue[T]) Unset()

type UpdateIntakePayload

type UpdateIntakePayload struct {
	Catalog UpdateIntakePayloadGetCatalogAttributeType `json:"catalog,omitempty"`
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description UpdateIntakePayloadGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	DisplayName UpdateIntakePayloadGetDisplayNameAttributeType `json:"displayName,omitempty"`
	// The unique id of the intake runner this intake should run on.
	// REQUIRED
	IntakeRunnerId UpdateIntakePayloadGetIntakeRunnerIdAttributeType `json:"intakeRunnerId" required:"true"`
	// Labels are key-value pairs associated with the resource. To update labels:   - Provide a new set of key-value pairs to replace the existing labels.   - Send empty object `{}` to remove all labels.   - Omit this field to leave the labels unchanged.
	Labels UpdateIntakePayloadGetLabelsAttributeType `json:"labels,omitempty"`
}

UpdateIntakePayload struct for UpdateIntakePayload

func NewUpdateIntakePayload

func NewUpdateIntakePayload(intakeRunnerId UpdateIntakePayloadGetIntakeRunnerIdArgType) *UpdateIntakePayload

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

func NewUpdateIntakePayloadWithDefaults

func NewUpdateIntakePayloadWithDefaults() *UpdateIntakePayload

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

func (*UpdateIntakePayload) GetCatalog

GetCatalog returns the Catalog field value if set, zero value otherwise.

func (*UpdateIntakePayload) GetCatalogOk

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 (*UpdateIntakePayload) GetDescription

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

func (*UpdateIntakePayload) GetDescriptionOk

func (o *UpdateIntakePayload) GetDescriptionOk() (ret UpdateIntakePayloadGetDescriptionRetType, ok bool)

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

func (*UpdateIntakePayload) GetDisplayName

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*UpdateIntakePayload) GetDisplayNameOk

func (o *UpdateIntakePayload) GetDisplayNameOk() (ret UpdateIntakePayloadGetDisplayNameRetType, ok bool)

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

func (*UpdateIntakePayload) GetIntakeRunnerId

GetIntakeRunnerId returns the IntakeRunnerId field value

func (*UpdateIntakePayload) GetIntakeRunnerIdOk

func (o *UpdateIntakePayload) GetIntakeRunnerIdOk() (ret UpdateIntakePayloadGetIntakeRunnerIdRetType, ok bool)

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

func (*UpdateIntakePayload) GetLabels

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

func (*UpdateIntakePayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels 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 (*UpdateIntakePayload) HasCatalog

func (o *UpdateIntakePayload) HasCatalog() bool

HasCatalog returns a boolean if a field has been set.

func (*UpdateIntakePayload) HasDescription

func (o *UpdateIntakePayload) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateIntakePayload) HasDisplayName

func (o *UpdateIntakePayload) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UpdateIntakePayload) HasLabels

func (o *UpdateIntakePayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*UpdateIntakePayload) SetCatalog

SetCatalog gets a reference to the given IntakeCatalogPatch and assigns it to the Catalog field.

func (*UpdateIntakePayload) SetDescription

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

func (*UpdateIntakePayload) SetDisplayName

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*UpdateIntakePayload) SetIntakeRunnerId

SetIntakeRunnerId sets field value

func (*UpdateIntakePayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (UpdateIntakePayload) ToMap

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

type UpdateIntakePayloadGetCatalogArgType

type UpdateIntakePayloadGetCatalogArgType = IntakeCatalogPatch

type UpdateIntakePayloadGetCatalogAttributeType

type UpdateIntakePayloadGetCatalogAttributeType = *IntakeCatalogPatch

isModel

type UpdateIntakePayloadGetCatalogRetType

type UpdateIntakePayloadGetCatalogRetType = IntakeCatalogPatch

type UpdateIntakePayloadGetDescriptionArgType

type UpdateIntakePayloadGetDescriptionArgType = string

type UpdateIntakePayloadGetDescriptionAttributeType

type UpdateIntakePayloadGetDescriptionAttributeType = *string

isNotNullableString

type UpdateIntakePayloadGetDescriptionRetType

type UpdateIntakePayloadGetDescriptionRetType = string

type UpdateIntakePayloadGetDisplayNameArgType

type UpdateIntakePayloadGetDisplayNameArgType = string

type UpdateIntakePayloadGetDisplayNameAttributeType

type UpdateIntakePayloadGetDisplayNameAttributeType = *string

isNotNullableString

type UpdateIntakePayloadGetDisplayNameRetType

type UpdateIntakePayloadGetDisplayNameRetType = string

type UpdateIntakePayloadGetIntakeRunnerIdArgType

type UpdateIntakePayloadGetIntakeRunnerIdArgType = string

type UpdateIntakePayloadGetIntakeRunnerIdAttributeType

type UpdateIntakePayloadGetIntakeRunnerIdAttributeType = *string

isNotNullableString

type UpdateIntakePayloadGetIntakeRunnerIdRetType

type UpdateIntakePayloadGetIntakeRunnerIdRetType = string

type UpdateIntakePayloadGetLabelsArgType

type UpdateIntakePayloadGetLabelsArgType = *map[string]string

type UpdateIntakePayloadGetLabelsAttributeType

type UpdateIntakePayloadGetLabelsAttributeType = *map[string]string

isContainer

type UpdateIntakePayloadGetLabelsRetType

type UpdateIntakePayloadGetLabelsRetType = *map[string]string

type UpdateIntakeRequest

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

func (UpdateIntakeRequest) Execute

func (r UpdateIntakeRequest) Execute() (*IntakeResponse, error)

func (UpdateIntakeRequest) UpdateIntakePayload

func (r UpdateIntakeRequest) UpdateIntakePayload(updateIntakePayload UpdateIntakePayload) ApiUpdateIntakeRequest

type UpdateIntakeRunnerPayload

type UpdateIntakeRunnerPayload struct {
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description UpdateIntakeRunnerPayloadGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	DisplayName UpdateIntakeRunnerPayloadGetDisplayNameAttributeType `json:"displayName,omitempty"`
	// Labels are key-value pairs associated with the resource. To update labels:   - Provide a new set of key-value pairs to replace the existing labels.   - Send empty object `{}` to remove all labels.   - Omit this field to leave the labels unchanged.
	Labels UpdateIntakeRunnerPayloadGetLabelsAttributeType `json:"labels,omitempty"`
	// The maximum size of a message in kibibytes (1 KiB = 1024 bytes).
	// REQUIRED
	MaxMessageSizeKiB UpdateIntakeRunnerPayloadGetMaxMessageSizeKiBAttributeType `json:"maxMessageSizeKiB" required:"true"`
	// The maximum number of messages per hour.
	// REQUIRED
	MaxMessagesPerHour UpdateIntakeRunnerPayloadGetMaxMessagesPerHourAttributeType `json:"maxMessagesPerHour" required:"true"`
}

UpdateIntakeRunnerPayload struct for UpdateIntakeRunnerPayload

func NewUpdateIntakeRunnerPayload

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

func NewUpdateIntakeRunnerPayloadWithDefaults

func NewUpdateIntakeRunnerPayloadWithDefaults() *UpdateIntakeRunnerPayload

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

func (*UpdateIntakeRunnerPayload) GetDescription

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

func (*UpdateIntakeRunnerPayload) GetDescriptionOk

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

func (*UpdateIntakeRunnerPayload) GetDisplayName

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*UpdateIntakeRunnerPayload) GetDisplayNameOk

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

func (*UpdateIntakeRunnerPayload) GetLabels

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

func (*UpdateIntakeRunnerPayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels 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 (*UpdateIntakeRunnerPayload) GetMaxMessageSizeKiB

GetMaxMessageSizeKiB returns the MaxMessageSizeKiB field value

func (*UpdateIntakeRunnerPayload) GetMaxMessageSizeKiBOk

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

func (*UpdateIntakeRunnerPayload) GetMaxMessagesPerHour

GetMaxMessagesPerHour returns the MaxMessagesPerHour field value

func (*UpdateIntakeRunnerPayload) GetMaxMessagesPerHourOk

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

func (*UpdateIntakeRunnerPayload) HasDescription

func (o *UpdateIntakeRunnerPayload) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateIntakeRunnerPayload) HasDisplayName

func (o *UpdateIntakeRunnerPayload) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UpdateIntakeRunnerPayload) HasLabels

func (o *UpdateIntakeRunnerPayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*UpdateIntakeRunnerPayload) SetDescription

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

func (*UpdateIntakeRunnerPayload) SetDisplayName

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*UpdateIntakeRunnerPayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*UpdateIntakeRunnerPayload) SetMaxMessageSizeKiB

SetMaxMessageSizeKiB sets field value

func (*UpdateIntakeRunnerPayload) SetMaxMessagesPerHour

SetMaxMessagesPerHour sets field value

func (UpdateIntakeRunnerPayload) ToMap

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

type UpdateIntakeRunnerPayloadGetDescriptionArgType

type UpdateIntakeRunnerPayloadGetDescriptionArgType = string

type UpdateIntakeRunnerPayloadGetDescriptionAttributeType

type UpdateIntakeRunnerPayloadGetDescriptionAttributeType = *string

isNotNullableString

type UpdateIntakeRunnerPayloadGetDescriptionRetType

type UpdateIntakeRunnerPayloadGetDescriptionRetType = string

type UpdateIntakeRunnerPayloadGetDisplayNameArgType

type UpdateIntakeRunnerPayloadGetDisplayNameArgType = string

type UpdateIntakeRunnerPayloadGetDisplayNameAttributeType

type UpdateIntakeRunnerPayloadGetDisplayNameAttributeType = *string

isNotNullableString

type UpdateIntakeRunnerPayloadGetDisplayNameRetType

type UpdateIntakeRunnerPayloadGetDisplayNameRetType = string

type UpdateIntakeRunnerPayloadGetLabelsArgType

type UpdateIntakeRunnerPayloadGetLabelsArgType = *map[string]string

type UpdateIntakeRunnerPayloadGetLabelsAttributeType

type UpdateIntakeRunnerPayloadGetLabelsAttributeType = *map[string]string

isContainer

type UpdateIntakeRunnerPayloadGetLabelsRetType

type UpdateIntakeRunnerPayloadGetLabelsRetType = *map[string]string

type UpdateIntakeRunnerPayloadGetMaxMessageSizeKiBArgType

type UpdateIntakeRunnerPayloadGetMaxMessageSizeKiBArgType = int64

type UpdateIntakeRunnerPayloadGetMaxMessageSizeKiBAttributeType

type UpdateIntakeRunnerPayloadGetMaxMessageSizeKiBAttributeType = *int64

isInteger

type UpdateIntakeRunnerPayloadGetMaxMessageSizeKiBRetType

type UpdateIntakeRunnerPayloadGetMaxMessageSizeKiBRetType = int64

type UpdateIntakeRunnerPayloadGetMaxMessagesPerHourArgType

type UpdateIntakeRunnerPayloadGetMaxMessagesPerHourArgType = int64

type UpdateIntakeRunnerPayloadGetMaxMessagesPerHourAttributeType

type UpdateIntakeRunnerPayloadGetMaxMessagesPerHourAttributeType = *int64

isInteger

type UpdateIntakeRunnerPayloadGetMaxMessagesPerHourRetType

type UpdateIntakeRunnerPayloadGetMaxMessagesPerHourRetType = int64

type UpdateIntakeRunnerRequest

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

func (UpdateIntakeRunnerRequest) Execute

func (r UpdateIntakeRunnerRequest) Execute() error

func (UpdateIntakeRunnerRequest) UpdateIntakeRunnerPayload

func (r UpdateIntakeRunnerRequest) UpdateIntakeRunnerPayload(updateIntakeRunnerPayload UpdateIntakeRunnerPayload) ApiUpdateIntakeRunnerRequest

type UpdateIntakeUserPayload

type UpdateIntakeUserPayload struct {
	// The description is a longer text chosen by the user to provide more context for the resource.
	Description UpdateIntakeUserPayloadGetDescriptionAttributeType `json:"description,omitempty"`
	// The display name is a short name chosen by the user to identify the resource.
	DisplayName UpdateIntakeUserPayloadGetDisplayNameAttributeType `json:"displayName,omitempty"`
	// Labels are key-value pairs associated with the resource. To update labels:   - Provide a new set of key-value pairs to replace the existing labels.   - Send empty object `{}` to remove all labels.   - Omit this field to leave the labels unchanged.
	Labels UpdateIntakeUserPayloadGetLabelsAttributeType `json:"labels,omitempty"`
	// A password chosen by the user.
	Password UpdateIntakeUserPayloadGetPasswordAttributeType `json:"password,omitempty"`
	Type     UpdateIntakeUserPayloadGetTypeAttributeType     `json:"type,omitempty"`
}

UpdateIntakeUserPayload struct for UpdateIntakeUserPayload

func NewUpdateIntakeUserPayload

func NewUpdateIntakeUserPayload() *UpdateIntakeUserPayload

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

func NewUpdateIntakeUserPayloadWithDefaults

func NewUpdateIntakeUserPayloadWithDefaults() *UpdateIntakeUserPayload

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

func (*UpdateIntakeUserPayload) GetDescription

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

func (*UpdateIntakeUserPayload) GetDescriptionOk

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

func (*UpdateIntakeUserPayload) GetDisplayName

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*UpdateIntakeUserPayload) GetDisplayNameOk

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

func (*UpdateIntakeUserPayload) GetLabels

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

func (*UpdateIntakeUserPayload) GetLabelsOk

GetLabelsOk returns a tuple with the Labels 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 (*UpdateIntakeUserPayload) GetPassword

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

func (*UpdateIntakeUserPayload) GetPasswordOk

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

func (*UpdateIntakeUserPayload) GetType

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

func (*UpdateIntakeUserPayload) GetTypeOk

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

func (*UpdateIntakeUserPayload) HasDescription

func (o *UpdateIntakeUserPayload) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*UpdateIntakeUserPayload) HasDisplayName

func (o *UpdateIntakeUserPayload) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*UpdateIntakeUserPayload) HasLabels

func (o *UpdateIntakeUserPayload) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*UpdateIntakeUserPayload) HasPassword

func (o *UpdateIntakeUserPayload) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*UpdateIntakeUserPayload) HasType

func (o *UpdateIntakeUserPayload) HasType() bool

HasType returns a boolean if a field has been set.

func (*UpdateIntakeUserPayload) SetDescription

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

func (*UpdateIntakeUserPayload) SetDisplayName

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*UpdateIntakeUserPayload) SetLabels

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*UpdateIntakeUserPayload) SetPassword

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

func (*UpdateIntakeUserPayload) SetType

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

func (UpdateIntakeUserPayload) ToMap

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

type UpdateIntakeUserPayloadGetDescriptionArgType

type UpdateIntakeUserPayloadGetDescriptionArgType = string

type UpdateIntakeUserPayloadGetDescriptionAttributeType

type UpdateIntakeUserPayloadGetDescriptionAttributeType = *string

isNotNullableString

type UpdateIntakeUserPayloadGetDescriptionRetType

type UpdateIntakeUserPayloadGetDescriptionRetType = string

type UpdateIntakeUserPayloadGetDisplayNameArgType

type UpdateIntakeUserPayloadGetDisplayNameArgType = string

type UpdateIntakeUserPayloadGetDisplayNameAttributeType

type UpdateIntakeUserPayloadGetDisplayNameAttributeType = *string

isNotNullableString

type UpdateIntakeUserPayloadGetDisplayNameRetType

type UpdateIntakeUserPayloadGetDisplayNameRetType = string

type UpdateIntakeUserPayloadGetLabelsArgType

type UpdateIntakeUserPayloadGetLabelsArgType = *map[string]string

type UpdateIntakeUserPayloadGetLabelsAttributeType

type UpdateIntakeUserPayloadGetLabelsAttributeType = *map[string]string

isContainer

type UpdateIntakeUserPayloadGetLabelsRetType

type UpdateIntakeUserPayloadGetLabelsRetType = *map[string]string

type UpdateIntakeUserPayloadGetPasswordArgType

type UpdateIntakeUserPayloadGetPasswordArgType = string

type UpdateIntakeUserPayloadGetPasswordAttributeType

type UpdateIntakeUserPayloadGetPasswordAttributeType = *string

isNotNullableString

type UpdateIntakeUserPayloadGetPasswordRetType

type UpdateIntakeUserPayloadGetPasswordRetType = string

type UpdateIntakeUserPayloadGetTypeArgType

type UpdateIntakeUserPayloadGetTypeArgType = UserType

type UpdateIntakeUserPayloadGetTypeAttributeType

type UpdateIntakeUserPayloadGetTypeAttributeType = *UserType

isEnumRef

type UpdateIntakeUserPayloadGetTypeRetType

type UpdateIntakeUserPayloadGetTypeRetType = UserType

type UpdateIntakeUserRequest

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

func (UpdateIntakeUserRequest) Execute

func (r UpdateIntakeUserRequest) Execute() error

func (UpdateIntakeUserRequest) UpdateIntakeUserPayload

func (r UpdateIntakeUserRequest) UpdateIntakeUserPayload(updateIntakeUserPayload UpdateIntakeUserPayload) ApiUpdateIntakeUserRequest

type UserType

type UserType string

UserType Type of user, 'intake' allows writing to the Intake, 'dead-letter' allows reading from the dead-letter queue

const (
	USERTYPE_INTAKE      UserType = "intake"
	USERTYPE_DEAD_LETTER UserType = "dead-letter"
)

List of userType

func NewUserTypeFromValue

func NewUserTypeFromValue(v string) (*UserType, error)

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

func (UserType) IsValid

func (v UserType) IsValid() bool

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

func (UserType) Ptr

func (v UserType) Ptr() *UserType

Ptr returns reference to userType value

func (*UserType) UnmarshalJSON

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

Jump to

Keyboard shortcuts

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