connectormgmtclient

package
v0.12.0 Latest Latest
Warning

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

Go to latest
Published: Feb 13, 2023 License: Apache-2.0 Imports: 22 Imported by: 22

README

Go API client for connectormgmtclient

Connector Management API is a REST API to manage connectors.

Overview

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

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

Installation

Install the following dependencies:

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

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

import sw "./connectormgmtclient"

To use a proxy, set the environment variable HTTP_PROXY:

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

Configuration of Server URL

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

Select Server Configuration

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

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

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

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

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to https://api.openshift.com

Class Method HTTP request Description
ConnectorClustersApi CreateConnectorCluster Post /api/connector_mgmt/v1/kafka_connector_clusters Create a new connector cluster
ConnectorClustersApi DeleteConnectorCluster Delete /api/connector_mgmt/v1/kafka_connector_clusters/{connector_cluster_id} Delete a connector cluster
ConnectorClustersApi GetConnectorCluster Get /api/connector_mgmt/v1/kafka_connector_clusters/{connector_cluster_id} Get a connector cluster
ConnectorClustersApi GetConnectorClusterAddonParameters Get /api/connector_mgmt/v1/kafka_connector_clusters/{connector_cluster_id}/addon_parameters Get a connector cluster's addon parameters
ConnectorClustersApi GetConnectorClusterNamespaces Get /api/connector_mgmt/v1/kafka_connector_clusters/{connector_cluster_id}/namespaces Get a connector cluster's namespaces
ConnectorClustersApi ListConnectorClusters Get /api/connector_mgmt/v1/kafka_connector_clusters Returns a list of connector clusters
ConnectorClustersApi UpdateConnectorClusterById Put /api/connector_mgmt/v1/kafka_connector_clusters/{connector_cluster_id} udpate a connector cluster
ConnectorNamespacesApi CreateEvaluationNamespace Post /api/connector_mgmt/v1/kafka_connector_namespaces/eval Create a new short lived evaluation connector namespace
ConnectorNamespacesApi GetConnectorNamespace Get /api/connector_mgmt/v1/kafka_connector_namespaces/{connector_namespace_id} Get a connector namespace
ConnectorNamespacesApi ListConnectorNamespaces Get /api/connector_mgmt/v1/kafka_connector_namespaces Returns a list of connector namespaces
ConnectorServiceApi GetVersionMetadata Get /api/connector_mgmt/v1 Returns the version metadata
ConnectorTypesApi GetConnectorTypeByID Get /api/connector_mgmt/v1/kafka_connector_types/{connector_type_id} Get a connector type by id
ConnectorTypesApi GetConnectorTypeLabels Get /api/connector_mgmt/v1/kafka_connector_types/labels Returns a list of connector type labels
ConnectorTypesApi GetConnectorTypes Get /api/connector_mgmt/v1/kafka_connector_types Returns a list of connector types
ConnectorsApi CreateConnector Post /api/connector_mgmt/v1/kafka_connectors Create a new connector
ConnectorsApi DeleteConnector Delete /api/connector_mgmt/v1/kafka_connectors/{id} Delete a connector
ConnectorsApi GetConnector Get /api/connector_mgmt/v1/kafka_connectors/{id} Get a connector
ConnectorsApi ListConnectors Get /api/connector_mgmt/v1/kafka_connectors Returns a list of connector types
ConnectorsApi PatchConnector Patch /api/connector_mgmt/v1/kafka_connectors/{id} Patch a connector

Documentation For Models

Documentation For Authorization

Bearer
  • Type: HTTP Bearer token authentication

Example

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

Documentation for Utility Methods

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

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

Author

rhosak-support@redhat.com

Documentation

Index

Constants

This section is empty.

Variables

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

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

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

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

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

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

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

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

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

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

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

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

Types

type APIClient

type APIClient struct {
	ConnectorClustersApi ConnectorClustersApi

	ConnectorNamespacesApi ConnectorNamespacesApi

	ConnectorServiceApi ConnectorServiceApi

	ConnectorTypesApi ConnectorTypesApi

	ConnectorsApi ConnectorsApi
	// contains filtered or unexported fields
}

APIClient manages communication with the Connector Management API API v0.1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

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

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

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

type APIResponse

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

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type AddonParameter

type AddonParameter struct {
	Id    *string `json:"id,omitempty"`
	Value *string `json:"value,omitempty"`
}

AddonParameter A addon parameter

func NewAddonParameter

func NewAddonParameter() *AddonParameter

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

func NewAddonParameterWithDefaults

func NewAddonParameterWithDefaults() *AddonParameter

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

func (*AddonParameter) GetId

func (o *AddonParameter) GetId() string

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

func (*AddonParameter) GetIdOk

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

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

func (*AddonParameter) GetValue

func (o *AddonParameter) GetValue() string

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

func (*AddonParameter) GetValueOk

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

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

func (*AddonParameter) HasId

func (o *AddonParameter) HasId() bool

HasId returns a boolean if a field has been set.

func (*AddonParameter) HasValue

func (o *AddonParameter) HasValue() bool

HasValue returns a boolean if a field has been set.

func (AddonParameter) MarshalJSON

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

func (*AddonParameter) SetId

func (o *AddonParameter) SetId(v string)

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

func (*AddonParameter) SetValue

func (o *AddonParameter) SetValue(v string)

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

type ApiCreateConnectorClusterRequest

type ApiCreateConnectorClusterRequest struct {
	ApiService ConnectorClustersApi
	// contains filtered or unexported fields
}

func (ApiCreateConnectorClusterRequest) Async

func (ApiCreateConnectorClusterRequest) ConnectorClusterRequest added in v0.3.0

func (r ApiCreateConnectorClusterRequest) ConnectorClusterRequest(connectorClusterRequest ConnectorClusterRequest) ApiCreateConnectorClusterRequest

func (ApiCreateConnectorClusterRequest) Execute

type ApiCreateConnectorRequest

type ApiCreateConnectorRequest struct {
	ApiService ConnectorsApi
	// contains filtered or unexported fields
}

func (ApiCreateConnectorRequest) Async

func (ApiCreateConnectorRequest) ConnectorRequest added in v0.3.0

func (r ApiCreateConnectorRequest) ConnectorRequest(connectorRequest ConnectorRequest) ApiCreateConnectorRequest

func (ApiCreateConnectorRequest) Execute

type ApiCreateEvaluationNamespaceRequest added in v0.5.0

type ApiCreateEvaluationNamespaceRequest struct {
	ApiService ConnectorNamespacesApi
	// contains filtered or unexported fields
}

func (ApiCreateEvaluationNamespaceRequest) ConnectorNamespaceEvalRequest added in v0.5.0

func (r ApiCreateEvaluationNamespaceRequest) ConnectorNamespaceEvalRequest(connectorNamespaceEvalRequest ConnectorNamespaceEvalRequest) ApiCreateEvaluationNamespaceRequest

func (ApiCreateEvaluationNamespaceRequest) Execute added in v0.5.0

type ApiDeleteConnectorClusterRequest

type ApiDeleteConnectorClusterRequest struct {
	ApiService ConnectorClustersApi
	// contains filtered or unexported fields
}

func (ApiDeleteConnectorClusterRequest) Execute

type ApiDeleteConnectorRequest

type ApiDeleteConnectorRequest struct {
	ApiService ConnectorsApi
	// contains filtered or unexported fields
}

func (ApiDeleteConnectorRequest) Execute

type ApiGetConnectorClusterAddonParametersRequest

type ApiGetConnectorClusterAddonParametersRequest struct {
	ApiService ConnectorClustersApi
	// contains filtered or unexported fields
}

func (ApiGetConnectorClusterAddonParametersRequest) Execute

func (ApiGetConnectorClusterAddonParametersRequest) ResetCredentials added in v0.6.0

type ApiGetConnectorClusterNamespacesRequest added in v0.5.0

type ApiGetConnectorClusterNamespacesRequest struct {
	ApiService ConnectorClustersApi
	// contains filtered or unexported fields
}

func (ApiGetConnectorClusterNamespacesRequest) Execute added in v0.5.0

func (ApiGetConnectorClusterNamespacesRequest) OrderBy added in v0.5.0

func (ApiGetConnectorClusterNamespacesRequest) Page added in v0.5.0

func (ApiGetConnectorClusterNamespacesRequest) Search added in v0.5.0

func (ApiGetConnectorClusterNamespacesRequest) Size added in v0.5.0

type ApiGetConnectorClusterRequest

type ApiGetConnectorClusterRequest struct {
	ApiService ConnectorClustersApi
	// contains filtered or unexported fields
}

func (ApiGetConnectorClusterRequest) Execute

type ApiGetConnectorNamespaceRequest added in v0.5.0

type ApiGetConnectorNamespaceRequest struct {
	ApiService ConnectorNamespacesApi
	// contains filtered or unexported fields
}

func (ApiGetConnectorNamespaceRequest) Execute added in v0.5.0

type ApiGetConnectorRequest

type ApiGetConnectorRequest struct {
	ApiService ConnectorsApi
	// contains filtered or unexported fields
}

func (ApiGetConnectorRequest) Execute

type ApiGetConnectorTypeByIDRequest

type ApiGetConnectorTypeByIDRequest struct {
	ApiService ConnectorTypesApi
	// contains filtered or unexported fields
}

func (ApiGetConnectorTypeByIDRequest) Execute

type ApiGetConnectorTypeLabelsRequest added in v0.9.0

type ApiGetConnectorTypeLabelsRequest struct {
	ApiService ConnectorTypesApi
	// contains filtered or unexported fields
}

func (ApiGetConnectorTypeLabelsRequest) Execute added in v0.9.0

func (ApiGetConnectorTypeLabelsRequest) OrderBy added in v0.9.0

func (ApiGetConnectorTypeLabelsRequest) Search added in v0.9.0

type ApiGetConnectorTypesRequest added in v0.3.0

type ApiGetConnectorTypesRequest struct {
	ApiService ConnectorTypesApi
	// contains filtered or unexported fields
}

func (ApiGetConnectorTypesRequest) Execute added in v0.3.0

func (ApiGetConnectorTypesRequest) OrderBy added in v0.3.0

func (ApiGetConnectorTypesRequest) Page added in v0.3.0

func (ApiGetConnectorTypesRequest) Search added in v0.3.0

func (ApiGetConnectorTypesRequest) Size added in v0.3.0

type ApiGetVersionMetadataRequest added in v0.3.0

type ApiGetVersionMetadataRequest struct {
	ApiService ConnectorServiceApi
	// contains filtered or unexported fields
}

func (ApiGetVersionMetadataRequest) Execute added in v0.3.0

type ApiListConnectorClustersRequest

type ApiListConnectorClustersRequest struct {
	ApiService ConnectorClustersApi
	// contains filtered or unexported fields
}

func (ApiListConnectorClustersRequest) Execute

func (ApiListConnectorClustersRequest) OrderBy added in v0.9.0

func (ApiListConnectorClustersRequest) Page

func (ApiListConnectorClustersRequest) Search added in v0.9.0

func (ApiListConnectorClustersRequest) Size

type ApiListConnectorNamespacesRequest added in v0.5.0

type ApiListConnectorNamespacesRequest struct {
	ApiService ConnectorNamespacesApi
	// contains filtered or unexported fields
}

func (ApiListConnectorNamespacesRequest) Execute added in v0.5.0

func (ApiListConnectorNamespacesRequest) OrderBy added in v0.5.0

func (ApiListConnectorNamespacesRequest) Page added in v0.5.0

func (ApiListConnectorNamespacesRequest) Search added in v0.5.0

func (ApiListConnectorNamespacesRequest) Size added in v0.5.0

type ApiListConnectorsRequest

type ApiListConnectorsRequest struct {
	ApiService ConnectorsApi
	// contains filtered or unexported fields
}

func (ApiListConnectorsRequest) Execute

func (ApiListConnectorsRequest) OrderBy added in v0.5.0

func (ApiListConnectorsRequest) Page

func (ApiListConnectorsRequest) Search added in v0.5.0

func (ApiListConnectorsRequest) Size

type ApiPatchConnectorRequest

type ApiPatchConnectorRequest struct {
	ApiService ConnectorsApi
	// contains filtered or unexported fields
}

func (ApiPatchConnectorRequest) Body added in v0.4.1

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

func (ApiPatchConnectorRequest) Execute

type ApiUpdateConnectorClusterByIdRequest

type ApiUpdateConnectorClusterByIdRequest struct {
	ApiService ConnectorClustersApi
	// contains filtered or unexported fields
}

func (ApiUpdateConnectorClusterByIdRequest) ConnectorClusterRequest added in v0.3.0

func (ApiUpdateConnectorClusterByIdRequest) Execute

type BasicAuth

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

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

type Channel added in v0.3.0

type Channel string

Channel the model 'Channel'

const (
	CHANNEL_STABLE Channel = "stable"
)

List of Channel

func NewChannelFromValue added in v0.3.0

func NewChannelFromValue(v string) (*Channel, error)

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

func (Channel) IsValid added in v0.3.0

func (v Channel) IsValid() bool

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

func (Channel) Ptr added in v0.3.0

func (v Channel) Ptr() *Channel

Ptr returns reference to Channel value

func (*Channel) UnmarshalJSON added in v0.3.0

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type Connector

type Connector struct {
	Id              *string               `json:"id,omitempty"`
	Kind            *string               `json:"kind,omitempty"`
	Href            *string               `json:"href,omitempty"`
	Owner           *string               `json:"owner,omitempty"`
	CreatedAt       *time.Time            `json:"created_at,omitempty"`
	ModifiedAt      *time.Time            `json:"modified_at,omitempty"`
	Name            string                `json:"name"`
	ConnectorTypeId string                `json:"connector_type_id"`
	NamespaceId     string                `json:"namespace_id"`
	Channel         *Channel              `json:"channel,omitempty"`
	DesiredState    ConnectorDesiredState `json:"desired_state"`
	// Name-value string annotations for resource
	Annotations     *map[string]string                `json:"annotations,omitempty"`
	ResourceVersion *int64                            `json:"resource_version,omitempty"`
	Kafka           KafkaConnectionSettings           `json:"kafka"`
	ServiceAccount  ServiceAccount                    `json:"service_account"`
	SchemaRegistry  *SchemaRegistryConnectionSettings `json:"schema_registry,omitempty"`
	Connector       map[string]interface{}            `json:"connector"`
	Status          *ConnectorStatusStatus            `json:"status,omitempty"`
}

Connector struct for Connector

func NewConnector

func NewConnector(name string, connectorTypeId string, namespaceId string, desiredState ConnectorDesiredState, kafka KafkaConnectionSettings, serviceAccount ServiceAccount, connector map[string]interface{}) *Connector

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

func NewConnectorWithDefaults

func NewConnectorWithDefaults() *Connector

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

func (*Connector) GetAnnotations added in v0.10.0

func (o *Connector) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*Connector) GetAnnotationsOk added in v0.10.0

func (o *Connector) GetAnnotationsOk() (*map[string]string, bool)

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

func (*Connector) GetChannel

func (o *Connector) GetChannel() Channel

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

func (*Connector) GetChannelOk

func (o *Connector) GetChannelOk() (*Channel, bool)

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

func (*Connector) GetConnector added in v0.3.0

func (o *Connector) GetConnector() map[string]interface{}

GetConnector returns the Connector field value

func (*Connector) GetConnectorOk added in v0.3.0

func (o *Connector) GetConnectorOk() (*map[string]interface{}, bool)

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

func (*Connector) GetConnectorTypeId

func (o *Connector) GetConnectorTypeId() string

GetConnectorTypeId returns the ConnectorTypeId field value

func (*Connector) GetConnectorTypeIdOk

func (o *Connector) GetConnectorTypeIdOk() (*string, bool)

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

func (*Connector) GetCreatedAt added in v0.3.0

func (o *Connector) GetCreatedAt() time.Time

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

func (*Connector) GetCreatedAtOk added in v0.3.0

func (o *Connector) GetCreatedAtOk() (*time.Time, bool)

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

func (*Connector) GetDesiredState

func (o *Connector) GetDesiredState() ConnectorDesiredState

GetDesiredState returns the DesiredState field value

func (*Connector) GetDesiredStateOk

func (o *Connector) GetDesiredStateOk() (*ConnectorDesiredState, bool)

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

func (*Connector) GetHref

func (o *Connector) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*Connector) GetHrefOk

func (o *Connector) GetHrefOk() (*string, bool)

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

func (*Connector) GetId

func (o *Connector) GetId() string

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

func (*Connector) GetIdOk

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

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

func (*Connector) GetKafka

func (o *Connector) GetKafka() KafkaConnectionSettings

GetKafka returns the Kafka field value

func (*Connector) GetKafkaOk

func (o *Connector) GetKafkaOk() (*KafkaConnectionSettings, bool)

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

func (*Connector) GetKind

func (o *Connector) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*Connector) GetKindOk

func (o *Connector) GetKindOk() (*string, bool)

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

func (*Connector) GetModifiedAt added in v0.3.0

func (o *Connector) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*Connector) GetModifiedAtOk added in v0.3.0

func (o *Connector) GetModifiedAtOk() (*time.Time, bool)

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

func (*Connector) GetName added in v0.3.0

func (o *Connector) GetName() string

GetName returns the Name field value

func (*Connector) GetNameOk added in v0.3.0

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

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

func (*Connector) GetNamespaceId added in v0.5.0

func (o *Connector) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value

func (*Connector) GetNamespaceIdOk added in v0.5.0

func (o *Connector) GetNamespaceIdOk() (*string, bool)

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

func (*Connector) GetOwner added in v0.3.0

func (o *Connector) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*Connector) GetOwnerOk added in v0.3.0

func (o *Connector) GetOwnerOk() (*string, bool)

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

func (*Connector) GetResourceVersion added in v0.3.0

func (o *Connector) GetResourceVersion() int64

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*Connector) GetResourceVersionOk added in v0.3.0

func (o *Connector) GetResourceVersionOk() (*int64, bool)

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

func (*Connector) GetSchemaRegistry added in v0.3.0

func (o *Connector) GetSchemaRegistry() SchemaRegistryConnectionSettings

GetSchemaRegistry returns the SchemaRegistry field value if set, zero value otherwise.

func (*Connector) GetSchemaRegistryOk added in v0.3.0

func (o *Connector) GetSchemaRegistryOk() (*SchemaRegistryConnectionSettings, bool)

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

func (*Connector) GetServiceAccount added in v0.3.0

func (o *Connector) GetServiceAccount() ServiceAccount

GetServiceAccount returns the ServiceAccount field value

func (*Connector) GetServiceAccountOk added in v0.3.0

func (o *Connector) GetServiceAccountOk() (*ServiceAccount, bool)

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

func (*Connector) GetStatus

func (o *Connector) GetStatus() ConnectorStatusStatus

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

func (*Connector) GetStatusOk

func (o *Connector) GetStatusOk() (*ConnectorStatusStatus, bool)

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

func (*Connector) HasAnnotations added in v0.10.0

func (o *Connector) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*Connector) HasChannel

func (o *Connector) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*Connector) HasCreatedAt added in v0.3.0

func (o *Connector) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Connector) HasHref

func (o *Connector) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*Connector) HasId

func (o *Connector) HasId() bool

HasId returns a boolean if a field has been set.

func (*Connector) HasKind

func (o *Connector) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*Connector) HasModifiedAt added in v0.3.0

func (o *Connector) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*Connector) HasOwner added in v0.3.0

func (o *Connector) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*Connector) HasResourceVersion added in v0.3.0

func (o *Connector) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (*Connector) HasSchemaRegistry added in v0.3.0

func (o *Connector) HasSchemaRegistry() bool

HasSchemaRegistry returns a boolean if a field has been set.

func (*Connector) HasStatus

func (o *Connector) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Connector) MarshalJSON

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

func (*Connector) SetAnnotations added in v0.10.0

func (o *Connector) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*Connector) SetChannel

func (o *Connector) SetChannel(v Channel)

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

func (*Connector) SetConnector added in v0.3.0

func (o *Connector) SetConnector(v map[string]interface{})

SetConnector sets field value

func (*Connector) SetConnectorTypeId

func (o *Connector) SetConnectorTypeId(v string)

SetConnectorTypeId sets field value

func (*Connector) SetCreatedAt added in v0.3.0

func (o *Connector) SetCreatedAt(v time.Time)

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

func (*Connector) SetDesiredState

func (o *Connector) SetDesiredState(v ConnectorDesiredState)

SetDesiredState sets field value

func (*Connector) SetHref

func (o *Connector) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*Connector) SetId

func (o *Connector) SetId(v string)

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

func (*Connector) SetKafka

func (o *Connector) SetKafka(v KafkaConnectionSettings)

SetKafka sets field value

func (*Connector) SetKind

func (o *Connector) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*Connector) SetModifiedAt added in v0.3.0

func (o *Connector) SetModifiedAt(v time.Time)

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

func (*Connector) SetName added in v0.3.0

func (o *Connector) SetName(v string)

SetName sets field value

func (*Connector) SetNamespaceId added in v0.5.0

func (o *Connector) SetNamespaceId(v string)

SetNamespaceId sets field value

func (*Connector) SetOwner added in v0.3.0

func (o *Connector) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*Connector) SetResourceVersion added in v0.3.0

func (o *Connector) SetResourceVersion(v int64)

SetResourceVersion gets a reference to the given int64 and assigns it to the ResourceVersion field.

func (*Connector) SetSchemaRegistry added in v0.3.0

func (o *Connector) SetSchemaRegistry(v SchemaRegistryConnectionSettings)

SetSchemaRegistry gets a reference to the given SchemaRegistryConnectionSettings and assigns it to the SchemaRegistry field.

func (*Connector) SetServiceAccount added in v0.3.0

func (o *Connector) SetServiceAccount(v ServiceAccount)

SetServiceAccount sets field value

func (*Connector) SetStatus

func (o *Connector) SetStatus(v ConnectorStatusStatus)

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

type ConnectorCluster

type ConnectorCluster struct {
	Id         *string    `json:"id,omitempty"`
	Kind       *string    `json:"kind,omitempty"`
	Href       *string    `json:"href,omitempty"`
	Owner      *string    `json:"owner,omitempty"`
	CreatedAt  *time.Time `json:"created_at,omitempty"`
	ModifiedAt *time.Time `json:"modified_at,omitempty"`
	Name       *string    `json:"name,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string            `json:"annotations,omitempty"`
	Status      *ConnectorClusterStatusStatus `json:"status,omitempty"`
}

ConnectorCluster struct for ConnectorCluster

func NewConnectorCluster

func NewConnectorCluster() *ConnectorCluster

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

func NewConnectorClusterWithDefaults

func NewConnectorClusterWithDefaults() *ConnectorCluster

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

func (*ConnectorCluster) GetAnnotations added in v0.10.0

func (o *ConnectorCluster) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorCluster) GetAnnotationsOk added in v0.10.0

func (o *ConnectorCluster) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorCluster) GetCreatedAt added in v0.3.0

func (o *ConnectorCluster) GetCreatedAt() time.Time

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

func (*ConnectorCluster) GetCreatedAtOk added in v0.3.0

func (o *ConnectorCluster) GetCreatedAtOk() (*time.Time, bool)

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

func (*ConnectorCluster) GetHref

func (o *ConnectorCluster) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*ConnectorCluster) GetHrefOk

func (o *ConnectorCluster) GetHrefOk() (*string, bool)

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

func (*ConnectorCluster) GetId

func (o *ConnectorCluster) GetId() string

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

func (*ConnectorCluster) GetIdOk

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

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

func (*ConnectorCluster) GetKind

func (o *ConnectorCluster) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ConnectorCluster) GetKindOk

func (o *ConnectorCluster) GetKindOk() (*string, bool)

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

func (*ConnectorCluster) GetModifiedAt added in v0.3.0

func (o *ConnectorCluster) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*ConnectorCluster) GetModifiedAtOk added in v0.3.0

func (o *ConnectorCluster) GetModifiedAtOk() (*time.Time, bool)

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

func (*ConnectorCluster) GetName added in v0.3.0

func (o *ConnectorCluster) GetName() string

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

func (*ConnectorCluster) GetNameOk added in v0.3.0

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

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

func (*ConnectorCluster) GetOwner added in v0.3.0

func (o *ConnectorCluster) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ConnectorCluster) GetOwnerOk added in v0.3.0

func (o *ConnectorCluster) GetOwnerOk() (*string, bool)

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

func (*ConnectorCluster) GetStatus

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

func (*ConnectorCluster) GetStatusOk

func (o *ConnectorCluster) GetStatusOk() (*ConnectorClusterStatusStatus, bool)

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

func (*ConnectorCluster) HasAnnotations added in v0.10.0

func (o *ConnectorCluster) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorCluster) HasCreatedAt added in v0.3.0

func (o *ConnectorCluster) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ConnectorCluster) HasHref

func (o *ConnectorCluster) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ConnectorCluster) HasId

func (o *ConnectorCluster) HasId() bool

HasId returns a boolean if a field has been set.

func (*ConnectorCluster) HasKind

func (o *ConnectorCluster) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ConnectorCluster) HasModifiedAt added in v0.3.0

func (o *ConnectorCluster) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ConnectorCluster) HasName added in v0.3.0

func (o *ConnectorCluster) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectorCluster) HasOwner added in v0.3.0

func (o *ConnectorCluster) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ConnectorCluster) HasStatus

func (o *ConnectorCluster) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectorCluster) MarshalJSON

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

func (*ConnectorCluster) SetAnnotations added in v0.10.0

func (o *ConnectorCluster) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorCluster) SetCreatedAt added in v0.3.0

func (o *ConnectorCluster) SetCreatedAt(v time.Time)

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

func (*ConnectorCluster) SetHref

func (o *ConnectorCluster) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*ConnectorCluster) SetId

func (o *ConnectorCluster) SetId(v string)

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

func (*ConnectorCluster) SetKind

func (o *ConnectorCluster) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ConnectorCluster) SetModifiedAt added in v0.3.0

func (o *ConnectorCluster) SetModifiedAt(v time.Time)

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

func (*ConnectorCluster) SetName added in v0.3.0

func (o *ConnectorCluster) SetName(v string)

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

func (*ConnectorCluster) SetOwner added in v0.3.0

func (o *ConnectorCluster) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ConnectorCluster) SetStatus

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

type ConnectorClusterList

type ConnectorClusterList struct {
	Kind  string             `json:"kind"`
	Page  int32              `json:"page"`
	Size  int32              `json:"size"`
	Total int32              `json:"total"`
	Items []ConnectorCluster `json:"items"`
}

ConnectorClusterList struct for ConnectorClusterList

func NewConnectorClusterList

func NewConnectorClusterList(kind string, page int32, size int32, total int32, items []ConnectorCluster) *ConnectorClusterList

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

func NewConnectorClusterListWithDefaults

func NewConnectorClusterListWithDefaults() *ConnectorClusterList

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

func (*ConnectorClusterList) GetItems

func (o *ConnectorClusterList) GetItems() []ConnectorCluster

GetItems returns the Items field value

func (*ConnectorClusterList) GetItemsOk

func (o *ConnectorClusterList) GetItemsOk() (*[]ConnectorCluster, bool)

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

func (*ConnectorClusterList) GetKind

func (o *ConnectorClusterList) GetKind() string

GetKind returns the Kind field value

func (*ConnectorClusterList) GetKindOk

func (o *ConnectorClusterList) GetKindOk() (*string, bool)

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

func (*ConnectorClusterList) GetPage

func (o *ConnectorClusterList) GetPage() int32

GetPage returns the Page field value

func (*ConnectorClusterList) GetPageOk

func (o *ConnectorClusterList) GetPageOk() (*int32, bool)

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

func (*ConnectorClusterList) GetSize

func (o *ConnectorClusterList) GetSize() int32

GetSize returns the Size field value

func (*ConnectorClusterList) GetSizeOk

func (o *ConnectorClusterList) GetSizeOk() (*int32, bool)

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

func (*ConnectorClusterList) GetTotal

func (o *ConnectorClusterList) GetTotal() int32

GetTotal returns the Total field value

func (*ConnectorClusterList) GetTotalOk

func (o *ConnectorClusterList) GetTotalOk() (*int32, bool)

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

func (ConnectorClusterList) MarshalJSON

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

func (*ConnectorClusterList) SetItems

func (o *ConnectorClusterList) SetItems(v []ConnectorCluster)

SetItems sets field value

func (*ConnectorClusterList) SetKind

func (o *ConnectorClusterList) SetKind(v string)

SetKind sets field value

func (*ConnectorClusterList) SetPage

func (o *ConnectorClusterList) SetPage(v int32)

SetPage sets field value

func (*ConnectorClusterList) SetSize

func (o *ConnectorClusterList) SetSize(v int32)

SetSize sets field value

func (*ConnectorClusterList) SetTotal

func (o *ConnectorClusterList) SetTotal(v int32)

SetTotal sets field value

type ConnectorClusterListAllOf

type ConnectorClusterListAllOf struct {
	Items *[]ConnectorCluster `json:"items,omitempty"`
}

ConnectorClusterListAllOf struct for ConnectorClusterListAllOf

func NewConnectorClusterListAllOf

func NewConnectorClusterListAllOf() *ConnectorClusterListAllOf

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

func NewConnectorClusterListAllOfWithDefaults

func NewConnectorClusterListAllOfWithDefaults() *ConnectorClusterListAllOf

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

func (*ConnectorClusterListAllOf) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ConnectorClusterListAllOf) GetItemsOk

func (o *ConnectorClusterListAllOf) GetItemsOk() (*[]ConnectorCluster, bool)

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

func (*ConnectorClusterListAllOf) HasItems

func (o *ConnectorClusterListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ConnectorClusterListAllOf) MarshalJSON

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

func (*ConnectorClusterListAllOf) SetItems

SetItems gets a reference to the given []ConnectorCluster and assigns it to the Items field.

type ConnectorClusterMeta added in v0.3.0

type ConnectorClusterMeta struct {
	Owner      *string    `json:"owner,omitempty"`
	CreatedAt  *time.Time `json:"created_at,omitempty"`
	ModifiedAt *time.Time `json:"modified_at,omitempty"`
	Name       *string    `json:"name,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
}

ConnectorClusterMeta struct for ConnectorClusterMeta

func NewConnectorClusterMeta added in v0.3.0

func NewConnectorClusterMeta() *ConnectorClusterMeta

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

func NewConnectorClusterMetaWithDefaults added in v0.3.0

func NewConnectorClusterMetaWithDefaults() *ConnectorClusterMeta

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

func (*ConnectorClusterMeta) GetAnnotations added in v0.10.0

func (o *ConnectorClusterMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorClusterMeta) GetAnnotationsOk added in v0.10.0

func (o *ConnectorClusterMeta) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorClusterMeta) GetCreatedAt added in v0.3.0

func (o *ConnectorClusterMeta) GetCreatedAt() time.Time

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

func (*ConnectorClusterMeta) GetCreatedAtOk added in v0.3.0

func (o *ConnectorClusterMeta) GetCreatedAtOk() (*time.Time, bool)

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

func (*ConnectorClusterMeta) GetModifiedAt added in v0.3.0

func (o *ConnectorClusterMeta) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*ConnectorClusterMeta) GetModifiedAtOk added in v0.3.0

func (o *ConnectorClusterMeta) GetModifiedAtOk() (*time.Time, bool)

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

func (*ConnectorClusterMeta) GetName added in v0.3.0

func (o *ConnectorClusterMeta) GetName() string

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

func (*ConnectorClusterMeta) GetNameOk added in v0.3.0

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

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

func (*ConnectorClusterMeta) GetOwner added in v0.3.0

func (o *ConnectorClusterMeta) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ConnectorClusterMeta) GetOwnerOk added in v0.3.0

func (o *ConnectorClusterMeta) GetOwnerOk() (*string, bool)

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

func (*ConnectorClusterMeta) HasAnnotations added in v0.10.0

func (o *ConnectorClusterMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorClusterMeta) HasCreatedAt added in v0.3.0

func (o *ConnectorClusterMeta) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ConnectorClusterMeta) HasModifiedAt added in v0.3.0

func (o *ConnectorClusterMeta) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ConnectorClusterMeta) HasName added in v0.3.0

func (o *ConnectorClusterMeta) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectorClusterMeta) HasOwner added in v0.3.0

func (o *ConnectorClusterMeta) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (ConnectorClusterMeta) MarshalJSON added in v0.3.0

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

func (*ConnectorClusterMeta) SetAnnotations added in v0.10.0

func (o *ConnectorClusterMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorClusterMeta) SetCreatedAt added in v0.3.0

func (o *ConnectorClusterMeta) SetCreatedAt(v time.Time)

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

func (*ConnectorClusterMeta) SetModifiedAt added in v0.3.0

func (o *ConnectorClusterMeta) SetModifiedAt(v time.Time)

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

func (*ConnectorClusterMeta) SetName added in v0.3.0

func (o *ConnectorClusterMeta) SetName(v string)

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

func (*ConnectorClusterMeta) SetOwner added in v0.3.0

func (o *ConnectorClusterMeta) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

type ConnectorClusterRequest added in v0.3.0

type ConnectorClusterRequest struct {
	Name *string `json:"name,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
}

ConnectorClusterRequest Schema for the request to update a data plane cluster's name

func NewConnectorClusterRequest added in v0.3.0

func NewConnectorClusterRequest() *ConnectorClusterRequest

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

func NewConnectorClusterRequestWithDefaults added in v0.3.0

func NewConnectorClusterRequestWithDefaults() *ConnectorClusterRequest

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

func (*ConnectorClusterRequest) GetAnnotations added in v0.10.0

func (o *ConnectorClusterRequest) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorClusterRequest) GetAnnotationsOk added in v0.10.0

func (o *ConnectorClusterRequest) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorClusterRequest) GetName added in v0.3.0

func (o *ConnectorClusterRequest) GetName() string

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

func (*ConnectorClusterRequest) GetNameOk added in v0.3.0

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

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

func (*ConnectorClusterRequest) HasAnnotations added in v0.10.0

func (o *ConnectorClusterRequest) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorClusterRequest) HasName added in v0.3.0

func (o *ConnectorClusterRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ConnectorClusterRequest) MarshalJSON added in v0.3.0

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

func (*ConnectorClusterRequest) SetAnnotations added in v0.10.0

func (o *ConnectorClusterRequest) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorClusterRequest) SetName added in v0.3.0

func (o *ConnectorClusterRequest) SetName(v string)

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

type ConnectorClusterRequestMeta added in v0.3.0

type ConnectorClusterRequestMeta struct {
	Name *string `json:"name,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
}

ConnectorClusterRequestMeta struct for ConnectorClusterRequestMeta

func NewConnectorClusterRequestMeta added in v0.3.0

func NewConnectorClusterRequestMeta() *ConnectorClusterRequestMeta

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

func NewConnectorClusterRequestMetaWithDefaults added in v0.3.0

func NewConnectorClusterRequestMetaWithDefaults() *ConnectorClusterRequestMeta

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

func (*ConnectorClusterRequestMeta) GetAnnotations added in v0.10.0

func (o *ConnectorClusterRequestMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorClusterRequestMeta) GetAnnotationsOk added in v0.10.0

func (o *ConnectorClusterRequestMeta) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorClusterRequestMeta) GetName added in v0.3.0

func (o *ConnectorClusterRequestMeta) GetName() string

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

func (*ConnectorClusterRequestMeta) GetNameOk added in v0.3.0

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

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

func (*ConnectorClusterRequestMeta) HasAnnotations added in v0.10.0

func (o *ConnectorClusterRequestMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorClusterRequestMeta) HasName added in v0.3.0

func (o *ConnectorClusterRequestMeta) HasName() bool

HasName returns a boolean if a field has been set.

func (ConnectorClusterRequestMeta) MarshalJSON added in v0.3.0

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

func (*ConnectorClusterRequestMeta) SetAnnotations added in v0.10.0

func (o *ConnectorClusterRequestMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorClusterRequestMeta) SetName added in v0.3.0

func (o *ConnectorClusterRequestMeta) SetName(v string)

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

type ConnectorClusterState added in v0.3.0

type ConnectorClusterState string

ConnectorClusterState the model 'ConnectorClusterState'

const (
	CONNECTORCLUSTERSTATE_DISCONNECTED ConnectorClusterState = "disconnected"
	CONNECTORCLUSTERSTATE_READY        ConnectorClusterState = "ready"
	CONNECTORCLUSTERSTATE_DELETING     ConnectorClusterState = "deleting"
)

List of ConnectorClusterState

func NewConnectorClusterStateFromValue added in v0.3.0

func NewConnectorClusterStateFromValue(v string) (*ConnectorClusterState, error)

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

func (ConnectorClusterState) IsValid added in v0.3.0

func (v ConnectorClusterState) IsValid() bool

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

func (ConnectorClusterState) Ptr added in v0.3.0

Ptr returns reference to ConnectorClusterState value

func (*ConnectorClusterState) UnmarshalJSON added in v0.3.0

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

type ConnectorClusterStatus added in v0.3.0

type ConnectorClusterStatus struct {
	Status *ConnectorClusterStatusStatus `json:"status,omitempty"`
}

ConnectorClusterStatus struct for ConnectorClusterStatus

func NewConnectorClusterStatus added in v0.3.0

func NewConnectorClusterStatus() *ConnectorClusterStatus

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

func NewConnectorClusterStatusWithDefaults added in v0.3.0

func NewConnectorClusterStatusWithDefaults() *ConnectorClusterStatus

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

func (*ConnectorClusterStatus) GetStatus added in v0.3.0

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

func (*ConnectorClusterStatus) GetStatusOk added in v0.3.0

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

func (*ConnectorClusterStatus) HasStatus added in v0.3.0

func (o *ConnectorClusterStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectorClusterStatus) MarshalJSON added in v0.3.0

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

func (*ConnectorClusterStatus) SetStatus added in v0.3.0

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

type ConnectorClusterStatusStatus added in v0.3.0

type ConnectorClusterStatusStatus struct {
	State *ConnectorClusterState `json:"state,omitempty"`
	Error *string                `json:"error,omitempty"`
}

ConnectorClusterStatusStatus struct for ConnectorClusterStatusStatus

func NewConnectorClusterStatusStatus added in v0.3.0

func NewConnectorClusterStatusStatus() *ConnectorClusterStatusStatus

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

func NewConnectorClusterStatusStatusWithDefaults added in v0.3.0

func NewConnectorClusterStatusStatusWithDefaults() *ConnectorClusterStatusStatus

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

func (*ConnectorClusterStatusStatus) GetError added in v0.3.0

func (o *ConnectorClusterStatusStatus) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ConnectorClusterStatusStatus) GetErrorOk added in v0.3.0

func (o *ConnectorClusterStatusStatus) GetErrorOk() (*string, bool)

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

func (*ConnectorClusterStatusStatus) GetState added in v0.3.0

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

func (*ConnectorClusterStatusStatus) GetStateOk added in v0.3.0

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

func (*ConnectorClusterStatusStatus) HasError added in v0.3.0

func (o *ConnectorClusterStatusStatus) HasError() bool

HasError returns a boolean if a field has been set.

func (*ConnectorClusterStatusStatus) HasState added in v0.3.0

func (o *ConnectorClusterStatusStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (ConnectorClusterStatusStatus) MarshalJSON added in v0.3.0

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

func (*ConnectorClusterStatusStatus) SetError added in v0.3.0

func (o *ConnectorClusterStatusStatus) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ConnectorClusterStatusStatus) SetState added in v0.3.0

SetState gets a reference to the given ConnectorClusterState and assigns it to the State field.

type ConnectorClustersApi

type ConnectorClustersApi interface {

	/*
	 * CreateConnectorCluster Create a new connector cluster
	 * Create a new connector cluster
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiCreateConnectorClusterRequest
	 */
	CreateConnectorCluster(ctx _context.Context) ApiCreateConnectorClusterRequest

	/*
	 * CreateConnectorClusterExecute executes the request
	 * @return ConnectorCluster
	 */
	CreateConnectorClusterExecute(r ApiCreateConnectorClusterRequest) (ConnectorCluster, *_nethttp.Response, error)

	/*
	 * DeleteConnectorCluster Delete a connector cluster
	 * Delete a connector cluster
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param connectorClusterId The id of the connector cluster
	 * @return ApiDeleteConnectorClusterRequest
	 */
	DeleteConnectorCluster(ctx _context.Context, connectorClusterId string) ApiDeleteConnectorClusterRequest

	/*
	 * DeleteConnectorClusterExecute executes the request
	 * @return Error
	 */
	DeleteConnectorClusterExecute(r ApiDeleteConnectorClusterRequest) (Error, *_nethttp.Response, error)

	/*
	 * GetConnectorCluster Get a connector cluster
	 * Get a connector cluster
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param connectorClusterId The id of the connector cluster
	 * @return ApiGetConnectorClusterRequest
	 */
	GetConnectorCluster(ctx _context.Context, connectorClusterId string) ApiGetConnectorClusterRequest

	/*
	 * GetConnectorClusterExecute executes the request
	 * @return ConnectorCluster
	 */
	GetConnectorClusterExecute(r ApiGetConnectorClusterRequest) (ConnectorCluster, *_nethttp.Response, error)

	/*
	 * GetConnectorClusterAddonParameters Get a connector cluster's addon parameters
	 * Get a connector cluster's addon parameters
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param connectorClusterId The id of the connector cluster
	 * @return ApiGetConnectorClusterAddonParametersRequest
	 */
	GetConnectorClusterAddonParameters(ctx _context.Context, connectorClusterId string) ApiGetConnectorClusterAddonParametersRequest

	/*
	 * GetConnectorClusterAddonParametersExecute executes the request
	 * @return []AddonParameter
	 */
	GetConnectorClusterAddonParametersExecute(r ApiGetConnectorClusterAddonParametersRequest) ([]AddonParameter, *_nethttp.Response, error)

	/*
	 * GetConnectorClusterNamespaces Get a connector cluster's namespaces
	 * Get a connector cluster's namespaces
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param connectorClusterId The id of the connector cluster
	 * @return ApiGetConnectorClusterNamespacesRequest
	 */
	GetConnectorClusterNamespaces(ctx _context.Context, connectorClusterId string) ApiGetConnectorClusterNamespacesRequest

	/*
	 * GetConnectorClusterNamespacesExecute executes the request
	 * @return ConnectorNamespaceList
	 */
	GetConnectorClusterNamespacesExecute(r ApiGetConnectorClusterNamespacesRequest) (ConnectorNamespaceList, *_nethttp.Response, error)

	/*
	 * ListConnectorClusters Returns a list of connector clusters
	 * Returns a list of connector clusters
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiListConnectorClustersRequest
	 */
	ListConnectorClusters(ctx _context.Context) ApiListConnectorClustersRequest

	/*
	 * ListConnectorClustersExecute executes the request
	 * @return ConnectorClusterList
	 */
	ListConnectorClustersExecute(r ApiListConnectorClustersRequest) (ConnectorClusterList, *_nethttp.Response, error)

	/*
	 * UpdateConnectorClusterById udpate a connector cluster
	 * udpate a connector cluster
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param connectorClusterId The id of the connector cluster
	 * @return ApiUpdateConnectorClusterByIdRequest
	 */
	UpdateConnectorClusterById(ctx _context.Context, connectorClusterId string) ApiUpdateConnectorClusterByIdRequest

	/*
	 * UpdateConnectorClusterByIdExecute executes the request
	 */
	UpdateConnectorClusterByIdExecute(r ApiUpdateConnectorClusterByIdRequest) (*_nethttp.Response, error)
}

type ConnectorClustersApiService

type ConnectorClustersApiService service

ConnectorClustersApiService ConnectorClustersApi service

func (*ConnectorClustersApiService) CreateConnectorCluster

* CreateConnectorCluster Create a new connector cluster * Create a new connector cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateConnectorClusterRequest

func (*ConnectorClustersApiService) CreateConnectorClusterExecute

* Execute executes the request * @return ConnectorCluster

func (*ConnectorClustersApiService) DeleteConnectorCluster

func (a *ConnectorClustersApiService) DeleteConnectorCluster(ctx _context.Context, connectorClusterId string) ApiDeleteConnectorClusterRequest

* DeleteConnectorCluster Delete a connector cluster * Delete a connector cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param connectorClusterId The id of the connector cluster * @return ApiDeleteConnectorClusterRequest

func (*ConnectorClustersApiService) DeleteConnectorClusterExecute

* Execute executes the request * @return Error

func (*ConnectorClustersApiService) GetConnectorCluster

func (a *ConnectorClustersApiService) GetConnectorCluster(ctx _context.Context, connectorClusterId string) ApiGetConnectorClusterRequest

* GetConnectorCluster Get a connector cluster * Get a connector cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param connectorClusterId The id of the connector cluster * @return ApiGetConnectorClusterRequest

func (*ConnectorClustersApiService) GetConnectorClusterAddonParameters

func (a *ConnectorClustersApiService) GetConnectorClusterAddonParameters(ctx _context.Context, connectorClusterId string) ApiGetConnectorClusterAddonParametersRequest

* GetConnectorClusterAddonParameters Get a connector cluster's addon parameters * Get a connector cluster's addon parameters * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param connectorClusterId The id of the connector cluster * @return ApiGetConnectorClusterAddonParametersRequest

func (*ConnectorClustersApiService) GetConnectorClusterAddonParametersExecute

* Execute executes the request * @return []AddonParameter

func (*ConnectorClustersApiService) GetConnectorClusterExecute

* Execute executes the request * @return ConnectorCluster

func (*ConnectorClustersApiService) GetConnectorClusterNamespaces added in v0.5.0

func (a *ConnectorClustersApiService) GetConnectorClusterNamespaces(ctx _context.Context, connectorClusterId string) ApiGetConnectorClusterNamespacesRequest

* GetConnectorClusterNamespaces Get a connector cluster's namespaces * Get a connector cluster's namespaces * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param connectorClusterId The id of the connector cluster * @return ApiGetConnectorClusterNamespacesRequest

func (*ConnectorClustersApiService) GetConnectorClusterNamespacesExecute added in v0.5.0

* Execute executes the request * @return ConnectorNamespaceList

func (*ConnectorClustersApiService) ListConnectorClusters

* ListConnectorClusters Returns a list of connector clusters * Returns a list of connector clusters * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListConnectorClustersRequest

func (*ConnectorClustersApiService) ListConnectorClustersExecute

* Execute executes the request * @return ConnectorClusterList

func (*ConnectorClustersApiService) UpdateConnectorClusterById

func (a *ConnectorClustersApiService) UpdateConnectorClusterById(ctx _context.Context, connectorClusterId string) ApiUpdateConnectorClusterByIdRequest

* UpdateConnectorClusterById udpate a connector cluster * udpate a connector cluster * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param connectorClusterId The id of the connector cluster * @return ApiUpdateConnectorClusterByIdRequest

func (*ConnectorClustersApiService) UpdateConnectorClusterByIdExecute

func (a *ConnectorClustersApiService) UpdateConnectorClusterByIdExecute(r ApiUpdateConnectorClusterByIdRequest) (*_nethttp.Response, error)

* Execute executes the request

type ConnectorConfiguration added in v0.3.0

type ConnectorConfiguration struct {
	Kafka          KafkaConnectionSettings           `json:"kafka"`
	ServiceAccount ServiceAccount                    `json:"service_account"`
	SchemaRegistry *SchemaRegistryConnectionSettings `json:"schema_registry,omitempty"`
	Connector      map[string]interface{}            `json:"connector"`
}

ConnectorConfiguration struct for ConnectorConfiguration

func NewConnectorConfiguration added in v0.3.0

func NewConnectorConfiguration(kafka KafkaConnectionSettings, serviceAccount ServiceAccount, connector map[string]interface{}) *ConnectorConfiguration

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

func NewConnectorConfigurationWithDefaults added in v0.3.0

func NewConnectorConfigurationWithDefaults() *ConnectorConfiguration

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

func (*ConnectorConfiguration) GetConnector added in v0.3.0

func (o *ConnectorConfiguration) GetConnector() map[string]interface{}

GetConnector returns the Connector field value

func (*ConnectorConfiguration) GetConnectorOk added in v0.3.0

func (o *ConnectorConfiguration) GetConnectorOk() (*map[string]interface{}, bool)

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

func (*ConnectorConfiguration) GetKafka added in v0.3.0

GetKafka returns the Kafka field value

func (*ConnectorConfiguration) GetKafkaOk added in v0.3.0

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

func (*ConnectorConfiguration) GetSchemaRegistry added in v0.3.0

GetSchemaRegistry returns the SchemaRegistry field value if set, zero value otherwise.

func (*ConnectorConfiguration) GetSchemaRegistryOk added in v0.3.0

func (o *ConnectorConfiguration) GetSchemaRegistryOk() (*SchemaRegistryConnectionSettings, bool)

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

func (*ConnectorConfiguration) GetServiceAccount added in v0.3.0

func (o *ConnectorConfiguration) GetServiceAccount() ServiceAccount

GetServiceAccount returns the ServiceAccount field value

func (*ConnectorConfiguration) GetServiceAccountOk added in v0.3.0

func (o *ConnectorConfiguration) GetServiceAccountOk() (*ServiceAccount, bool)

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

func (*ConnectorConfiguration) HasSchemaRegistry added in v0.3.0

func (o *ConnectorConfiguration) HasSchemaRegistry() bool

HasSchemaRegistry returns a boolean if a field has been set.

func (ConnectorConfiguration) MarshalJSON added in v0.3.0

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

func (*ConnectorConfiguration) SetConnector added in v0.3.0

func (o *ConnectorConfiguration) SetConnector(v map[string]interface{})

SetConnector sets field value

func (*ConnectorConfiguration) SetKafka added in v0.3.0

SetKafka sets field value

func (*ConnectorConfiguration) SetSchemaRegistry added in v0.3.0

SetSchemaRegistry gets a reference to the given SchemaRegistryConnectionSettings and assigns it to the SchemaRegistry field.

func (*ConnectorConfiguration) SetServiceAccount added in v0.3.0

func (o *ConnectorConfiguration) SetServiceAccount(v ServiceAccount)

SetServiceAccount sets field value

type ConnectorDesiredState added in v0.3.0

type ConnectorDesiredState string

ConnectorDesiredState the model 'ConnectorDesiredState'

const (
	CONNECTORDESIREDSTATE_UNASSIGNED ConnectorDesiredState = "unassigned"
	CONNECTORDESIREDSTATE_READY      ConnectorDesiredState = "ready"
	CONNECTORDESIREDSTATE_STOPPED    ConnectorDesiredState = "stopped"
	CONNECTORDESIREDSTATE_DELETED    ConnectorDesiredState = "deleted"
)

List of ConnectorDesiredState

func NewConnectorDesiredStateFromValue added in v0.3.0

func NewConnectorDesiredStateFromValue(v string) (*ConnectorDesiredState, error)

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

func (ConnectorDesiredState) IsValid added in v0.3.0

func (v ConnectorDesiredState) IsValid() bool

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

func (ConnectorDesiredState) Ptr added in v0.3.0

Ptr returns reference to ConnectorDesiredState value

func (*ConnectorDesiredState) UnmarshalJSON added in v0.3.0

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

type ConnectorList

type ConnectorList struct {
	Kind  string      `json:"kind"`
	Page  int32       `json:"page"`
	Size  int32       `json:"size"`
	Total int32       `json:"total"`
	Items []Connector `json:"items"`
}

ConnectorList struct for ConnectorList

func NewConnectorList

func NewConnectorList(kind string, page int32, size int32, total int32, items []Connector) *ConnectorList

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

func NewConnectorListWithDefaults

func NewConnectorListWithDefaults() *ConnectorList

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

func (*ConnectorList) GetItems

func (o *ConnectorList) GetItems() []Connector

GetItems returns the Items field value

func (*ConnectorList) GetItemsOk

func (o *ConnectorList) GetItemsOk() (*[]Connector, bool)

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

func (*ConnectorList) GetKind

func (o *ConnectorList) GetKind() string

GetKind returns the Kind field value

func (*ConnectorList) GetKindOk

func (o *ConnectorList) GetKindOk() (*string, bool)

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

func (*ConnectorList) GetPage

func (o *ConnectorList) GetPage() int32

GetPage returns the Page field value

func (*ConnectorList) GetPageOk

func (o *ConnectorList) GetPageOk() (*int32, bool)

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

func (*ConnectorList) GetSize

func (o *ConnectorList) GetSize() int32

GetSize returns the Size field value

func (*ConnectorList) GetSizeOk

func (o *ConnectorList) GetSizeOk() (*int32, bool)

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

func (*ConnectorList) GetTotal

func (o *ConnectorList) GetTotal() int32

GetTotal returns the Total field value

func (*ConnectorList) GetTotalOk

func (o *ConnectorList) GetTotalOk() (*int32, bool)

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

func (ConnectorList) MarshalJSON

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

func (*ConnectorList) SetItems

func (o *ConnectorList) SetItems(v []Connector)

SetItems sets field value

func (*ConnectorList) SetKind

func (o *ConnectorList) SetKind(v string)

SetKind sets field value

func (*ConnectorList) SetPage

func (o *ConnectorList) SetPage(v int32)

SetPage sets field value

func (*ConnectorList) SetSize

func (o *ConnectorList) SetSize(v int32)

SetSize sets field value

func (*ConnectorList) SetTotal

func (o *ConnectorList) SetTotal(v int32)

SetTotal sets field value

type ConnectorListAllOf

type ConnectorListAllOf struct {
	Items *[]Connector `json:"items,omitempty"`
}

ConnectorListAllOf struct for ConnectorListAllOf

func NewConnectorListAllOf

func NewConnectorListAllOf() *ConnectorListAllOf

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

func NewConnectorListAllOfWithDefaults

func NewConnectorListAllOfWithDefaults() *ConnectorListAllOf

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

func (*ConnectorListAllOf) GetItems

func (o *ConnectorListAllOf) GetItems() []Connector

GetItems returns the Items field value if set, zero value otherwise.

func (*ConnectorListAllOf) GetItemsOk

func (o *ConnectorListAllOf) GetItemsOk() (*[]Connector, bool)

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

func (*ConnectorListAllOf) HasItems

func (o *ConnectorListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ConnectorListAllOf) MarshalJSON

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

func (*ConnectorListAllOf) SetItems

func (o *ConnectorListAllOf) SetItems(v []Connector)

SetItems gets a reference to the given []Connector and assigns it to the Items field.

type ConnectorMeta added in v0.3.0

type ConnectorMeta struct {
	Owner           *string               `json:"owner,omitempty"`
	CreatedAt       *time.Time            `json:"created_at,omitempty"`
	ModifiedAt      *time.Time            `json:"modified_at,omitempty"`
	Name            string                `json:"name"`
	ConnectorTypeId string                `json:"connector_type_id"`
	NamespaceId     string                `json:"namespace_id"`
	Channel         *Channel              `json:"channel,omitempty"`
	DesiredState    ConnectorDesiredState `json:"desired_state"`
	// Name-value string annotations for resource
	Annotations     *map[string]string `json:"annotations,omitempty"`
	ResourceVersion *int64             `json:"resource_version,omitempty"`
}

ConnectorMeta struct for ConnectorMeta

func NewConnectorMeta added in v0.3.0

func NewConnectorMeta(name string, connectorTypeId string, namespaceId string, desiredState ConnectorDesiredState) *ConnectorMeta

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

func NewConnectorMetaWithDefaults added in v0.3.0

func NewConnectorMetaWithDefaults() *ConnectorMeta

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

func (*ConnectorMeta) GetAnnotations added in v0.10.0

func (o *ConnectorMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorMeta) GetAnnotationsOk added in v0.10.0

func (o *ConnectorMeta) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorMeta) GetChannel added in v0.3.0

func (o *ConnectorMeta) GetChannel() Channel

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

func (*ConnectorMeta) GetChannelOk added in v0.3.0

func (o *ConnectorMeta) GetChannelOk() (*Channel, bool)

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

func (*ConnectorMeta) GetConnectorTypeId added in v0.3.0

func (o *ConnectorMeta) GetConnectorTypeId() string

GetConnectorTypeId returns the ConnectorTypeId field value

func (*ConnectorMeta) GetConnectorTypeIdOk added in v0.3.0

func (o *ConnectorMeta) GetConnectorTypeIdOk() (*string, bool)

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

func (*ConnectorMeta) GetCreatedAt added in v0.3.0

func (o *ConnectorMeta) GetCreatedAt() time.Time

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

func (*ConnectorMeta) GetCreatedAtOk added in v0.3.0

func (o *ConnectorMeta) GetCreatedAtOk() (*time.Time, bool)

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

func (*ConnectorMeta) GetDesiredState added in v0.3.0

func (o *ConnectorMeta) GetDesiredState() ConnectorDesiredState

GetDesiredState returns the DesiredState field value

func (*ConnectorMeta) GetDesiredStateOk added in v0.3.0

func (o *ConnectorMeta) GetDesiredStateOk() (*ConnectorDesiredState, bool)

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

func (*ConnectorMeta) GetModifiedAt added in v0.3.0

func (o *ConnectorMeta) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*ConnectorMeta) GetModifiedAtOk added in v0.3.0

func (o *ConnectorMeta) GetModifiedAtOk() (*time.Time, bool)

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

func (*ConnectorMeta) GetName added in v0.3.0

func (o *ConnectorMeta) GetName() string

GetName returns the Name field value

func (*ConnectorMeta) GetNameOk added in v0.3.0

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

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

func (*ConnectorMeta) GetNamespaceId added in v0.5.0

func (o *ConnectorMeta) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value

func (*ConnectorMeta) GetNamespaceIdOk added in v0.5.0

func (o *ConnectorMeta) GetNamespaceIdOk() (*string, bool)

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

func (*ConnectorMeta) GetOwner added in v0.3.0

func (o *ConnectorMeta) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ConnectorMeta) GetOwnerOk added in v0.3.0

func (o *ConnectorMeta) GetOwnerOk() (*string, bool)

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

func (*ConnectorMeta) GetResourceVersion added in v0.3.0

func (o *ConnectorMeta) GetResourceVersion() int64

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*ConnectorMeta) GetResourceVersionOk added in v0.3.0

func (o *ConnectorMeta) GetResourceVersionOk() (*int64, bool)

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

func (*ConnectorMeta) HasAnnotations added in v0.10.0

func (o *ConnectorMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorMeta) HasChannel added in v0.3.0

func (o *ConnectorMeta) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*ConnectorMeta) HasCreatedAt added in v0.3.0

func (o *ConnectorMeta) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ConnectorMeta) HasModifiedAt added in v0.3.0

func (o *ConnectorMeta) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ConnectorMeta) HasOwner added in v0.3.0

func (o *ConnectorMeta) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ConnectorMeta) HasResourceVersion added in v0.3.0

func (o *ConnectorMeta) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (ConnectorMeta) MarshalJSON added in v0.3.0

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

func (*ConnectorMeta) SetAnnotations added in v0.10.0

func (o *ConnectorMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorMeta) SetChannel added in v0.3.0

func (o *ConnectorMeta) SetChannel(v Channel)

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

func (*ConnectorMeta) SetConnectorTypeId added in v0.3.0

func (o *ConnectorMeta) SetConnectorTypeId(v string)

SetConnectorTypeId sets field value

func (*ConnectorMeta) SetCreatedAt added in v0.3.0

func (o *ConnectorMeta) SetCreatedAt(v time.Time)

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

func (*ConnectorMeta) SetDesiredState added in v0.3.0

func (o *ConnectorMeta) SetDesiredState(v ConnectorDesiredState)

SetDesiredState sets field value

func (*ConnectorMeta) SetModifiedAt added in v0.3.0

func (o *ConnectorMeta) SetModifiedAt(v time.Time)

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

func (*ConnectorMeta) SetName added in v0.3.0

func (o *ConnectorMeta) SetName(v string)

SetName sets field value

func (*ConnectorMeta) SetNamespaceId added in v0.5.0

func (o *ConnectorMeta) SetNamespaceId(v string)

SetNamespaceId sets field value

func (*ConnectorMeta) SetOwner added in v0.3.0

func (o *ConnectorMeta) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ConnectorMeta) SetResourceVersion added in v0.3.0

func (o *ConnectorMeta) SetResourceVersion(v int64)

SetResourceVersion gets a reference to the given int64 and assigns it to the ResourceVersion field.

type ConnectorMetaAllOf added in v0.3.0

type ConnectorMetaAllOf struct {
	ResourceVersion *int64 `json:"resource_version,omitempty"`
}

ConnectorMetaAllOf struct for ConnectorMetaAllOf

func NewConnectorMetaAllOf added in v0.3.0

func NewConnectorMetaAllOf() *ConnectorMetaAllOf

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

func NewConnectorMetaAllOfWithDefaults added in v0.3.0

func NewConnectorMetaAllOfWithDefaults() *ConnectorMetaAllOf

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

func (*ConnectorMetaAllOf) GetResourceVersion added in v0.3.0

func (o *ConnectorMetaAllOf) GetResourceVersion() int64

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*ConnectorMetaAllOf) GetResourceVersionOk added in v0.3.0

func (o *ConnectorMetaAllOf) GetResourceVersionOk() (*int64, bool)

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

func (*ConnectorMetaAllOf) HasResourceVersion added in v0.3.0

func (o *ConnectorMetaAllOf) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (ConnectorMetaAllOf) MarshalJSON added in v0.3.0

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

func (*ConnectorMetaAllOf) SetResourceVersion added in v0.3.0

func (o *ConnectorMetaAllOf) SetResourceVersion(v int64)

SetResourceVersion gets a reference to the given int64 and assigns it to the ResourceVersion field.

type ConnectorNamespace added in v0.5.0

type ConnectorNamespace struct {
	Id         string     `json:"id"`
	Kind       *string    `json:"kind,omitempty"`
	Href       *string    `json:"href,omitempty"`
	Owner      *string    `json:"owner,omitempty"`
	CreatedAt  *time.Time `json:"created_at,omitempty"`
	ModifiedAt *time.Time `json:"modified_at,omitempty"`
	Name       string     `json:"name"`
	// Name-value string annotations for resource
	Annotations     *map[string]string       `json:"annotations,omitempty"`
	ResourceVersion int64                    `json:"resource_version"`
	Quota           *ConnectorNamespaceQuota `json:"quota,omitempty"`
	ClusterId       string                   `json:"cluster_id"`
	// Namespace expiration timestamp in RFC 3339 format
	Expiration *string                  `json:"expiration,omitempty"`
	Tenant     ConnectorNamespaceTenant `json:"tenant"`
	Status     ConnectorNamespaceStatus `json:"status"`
}

ConnectorNamespace A connector namespace

func NewConnectorNamespace added in v0.5.0

func NewConnectorNamespace(id string, name string, resourceVersion int64, clusterId string, tenant ConnectorNamespaceTenant, status ConnectorNamespaceStatus) *ConnectorNamespace

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

func NewConnectorNamespaceWithDefaults added in v0.5.0

func NewConnectorNamespaceWithDefaults() *ConnectorNamespace

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

func (*ConnectorNamespace) GetAnnotations added in v0.5.0

func (o *ConnectorNamespace) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorNamespace) GetAnnotationsOk added in v0.5.0

func (o *ConnectorNamespace) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorNamespace) GetClusterId added in v0.5.0

func (o *ConnectorNamespace) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConnectorNamespace) GetClusterIdOk added in v0.5.0

func (o *ConnectorNamespace) GetClusterIdOk() (*string, bool)

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

func (*ConnectorNamespace) GetCreatedAt added in v0.5.0

func (o *ConnectorNamespace) GetCreatedAt() time.Time

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

func (*ConnectorNamespace) GetCreatedAtOk added in v0.5.0

func (o *ConnectorNamespace) GetCreatedAtOk() (*time.Time, bool)

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

func (*ConnectorNamespace) GetExpiration added in v0.5.0

func (o *ConnectorNamespace) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*ConnectorNamespace) GetExpirationOk added in v0.5.0

func (o *ConnectorNamespace) GetExpirationOk() (*string, bool)

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

func (*ConnectorNamespace) GetHref added in v0.5.0

func (o *ConnectorNamespace) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*ConnectorNamespace) GetHrefOk added in v0.5.0

func (o *ConnectorNamespace) GetHrefOk() (*string, bool)

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

func (*ConnectorNamespace) GetId added in v0.5.0

func (o *ConnectorNamespace) GetId() string

GetId returns the Id field value

func (*ConnectorNamespace) GetIdOk added in v0.5.0

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

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

func (*ConnectorNamespace) GetKind added in v0.5.0

func (o *ConnectorNamespace) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ConnectorNamespace) GetKindOk added in v0.5.0

func (o *ConnectorNamespace) GetKindOk() (*string, bool)

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

func (*ConnectorNamespace) GetModifiedAt added in v0.5.0

func (o *ConnectorNamespace) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*ConnectorNamespace) GetModifiedAtOk added in v0.5.0

func (o *ConnectorNamespace) GetModifiedAtOk() (*time.Time, bool)

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

func (*ConnectorNamespace) GetName added in v0.5.0

func (o *ConnectorNamespace) GetName() string

GetName returns the Name field value

func (*ConnectorNamespace) GetNameOk added in v0.5.0

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

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

func (*ConnectorNamespace) GetOwner added in v0.5.0

func (o *ConnectorNamespace) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ConnectorNamespace) GetOwnerOk added in v0.5.0

func (o *ConnectorNamespace) GetOwnerOk() (*string, bool)

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

func (*ConnectorNamespace) GetQuota added in v0.5.0

GetQuota returns the Quota field value if set, zero value otherwise.

func (*ConnectorNamespace) GetQuotaOk added in v0.5.0

func (o *ConnectorNamespace) GetQuotaOk() (*ConnectorNamespaceQuota, bool)

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

func (*ConnectorNamespace) GetResourceVersion added in v0.5.0

func (o *ConnectorNamespace) GetResourceVersion() int64

GetResourceVersion returns the ResourceVersion field value

func (*ConnectorNamespace) GetResourceVersionOk added in v0.5.0

func (o *ConnectorNamespace) GetResourceVersionOk() (*int64, bool)

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

func (*ConnectorNamespace) GetStatus added in v0.5.0

GetStatus returns the Status field value

func (*ConnectorNamespace) GetStatusOk added in v0.5.0

func (o *ConnectorNamespace) GetStatusOk() (*ConnectorNamespaceStatus, bool)

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

func (*ConnectorNamespace) GetTenant added in v0.5.0

GetTenant returns the Tenant field value

func (*ConnectorNamespace) GetTenantOk added in v0.5.0

func (o *ConnectorNamespace) GetTenantOk() (*ConnectorNamespaceTenant, bool)

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

func (*ConnectorNamespace) HasAnnotations added in v0.5.0

func (o *ConnectorNamespace) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorNamespace) HasCreatedAt added in v0.5.0

func (o *ConnectorNamespace) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ConnectorNamespace) HasExpiration added in v0.5.0

func (o *ConnectorNamespace) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (*ConnectorNamespace) HasHref added in v0.5.0

func (o *ConnectorNamespace) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ConnectorNamespace) HasKind added in v0.5.0

func (o *ConnectorNamespace) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ConnectorNamespace) HasModifiedAt added in v0.5.0

func (o *ConnectorNamespace) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ConnectorNamespace) HasOwner added in v0.5.0

func (o *ConnectorNamespace) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ConnectorNamespace) HasQuota added in v0.5.0

func (o *ConnectorNamespace) HasQuota() bool

HasQuota returns a boolean if a field has been set.

func (ConnectorNamespace) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespace) SetAnnotations added in v0.5.0

func (o *ConnectorNamespace) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorNamespace) SetClusterId added in v0.5.0

func (o *ConnectorNamespace) SetClusterId(v string)

SetClusterId sets field value

func (*ConnectorNamespace) SetCreatedAt added in v0.5.0

func (o *ConnectorNamespace) SetCreatedAt(v time.Time)

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

func (*ConnectorNamespace) SetExpiration added in v0.5.0

func (o *ConnectorNamespace) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*ConnectorNamespace) SetHref added in v0.5.0

func (o *ConnectorNamespace) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*ConnectorNamespace) SetId added in v0.5.0

func (o *ConnectorNamespace) SetId(v string)

SetId sets field value

func (*ConnectorNamespace) SetKind added in v0.5.0

func (o *ConnectorNamespace) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ConnectorNamespace) SetModifiedAt added in v0.5.0

func (o *ConnectorNamespace) SetModifiedAt(v time.Time)

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

func (*ConnectorNamespace) SetName added in v0.5.0

func (o *ConnectorNamespace) SetName(v string)

SetName sets field value

func (*ConnectorNamespace) SetOwner added in v0.5.0

func (o *ConnectorNamespace) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ConnectorNamespace) SetQuota added in v0.5.0

SetQuota gets a reference to the given ConnectorNamespaceQuota and assigns it to the Quota field.

func (*ConnectorNamespace) SetResourceVersion added in v0.5.0

func (o *ConnectorNamespace) SetResourceVersion(v int64)

SetResourceVersion sets field value

func (*ConnectorNamespace) SetStatus added in v0.5.0

SetStatus sets field value

func (*ConnectorNamespace) SetTenant added in v0.5.0

SetTenant sets field value

type ConnectorNamespaceAllOf added in v0.5.0

type ConnectorNamespaceAllOf struct {
	Name      string `json:"name"`
	ClusterId string `json:"cluster_id"`
	// Namespace expiration timestamp in RFC 3339 format
	Expiration *string                  `json:"expiration,omitempty"`
	Tenant     ConnectorNamespaceTenant `json:"tenant"`
	Status     ConnectorNamespaceStatus `json:"status"`
}

ConnectorNamespaceAllOf struct for ConnectorNamespaceAllOf

func NewConnectorNamespaceAllOf added in v0.5.0

func NewConnectorNamespaceAllOf(name string, clusterId string, tenant ConnectorNamespaceTenant, status ConnectorNamespaceStatus) *ConnectorNamespaceAllOf

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

func NewConnectorNamespaceAllOfWithDefaults added in v0.5.0

func NewConnectorNamespaceAllOfWithDefaults() *ConnectorNamespaceAllOf

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

func (*ConnectorNamespaceAllOf) GetClusterId added in v0.5.0

func (o *ConnectorNamespaceAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConnectorNamespaceAllOf) GetClusterIdOk added in v0.5.0

func (o *ConnectorNamespaceAllOf) GetClusterIdOk() (*string, bool)

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

func (*ConnectorNamespaceAllOf) GetExpiration added in v0.5.0

func (o *ConnectorNamespaceAllOf) GetExpiration() string

GetExpiration returns the Expiration field value if set, zero value otherwise.

func (*ConnectorNamespaceAllOf) GetExpirationOk added in v0.5.0

func (o *ConnectorNamespaceAllOf) GetExpirationOk() (*string, bool)

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

func (*ConnectorNamespaceAllOf) GetName added in v0.5.0

func (o *ConnectorNamespaceAllOf) GetName() string

GetName returns the Name field value

func (*ConnectorNamespaceAllOf) GetNameOk added in v0.5.0

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

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

func (*ConnectorNamespaceAllOf) GetStatus added in v0.5.0

GetStatus returns the Status field value

func (*ConnectorNamespaceAllOf) GetStatusOk added in v0.5.0

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

func (*ConnectorNamespaceAllOf) GetTenant added in v0.5.0

GetTenant returns the Tenant field value

func (*ConnectorNamespaceAllOf) GetTenantOk added in v0.5.0

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

func (*ConnectorNamespaceAllOf) HasExpiration added in v0.5.0

func (o *ConnectorNamespaceAllOf) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

func (ConnectorNamespaceAllOf) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceAllOf) SetClusterId added in v0.5.0

func (o *ConnectorNamespaceAllOf) SetClusterId(v string)

SetClusterId sets field value

func (*ConnectorNamespaceAllOf) SetExpiration added in v0.5.0

func (o *ConnectorNamespaceAllOf) SetExpiration(v string)

SetExpiration gets a reference to the given string and assigns it to the Expiration field.

func (*ConnectorNamespaceAllOf) SetName added in v0.5.0

func (o *ConnectorNamespaceAllOf) SetName(v string)

SetName sets field value

func (*ConnectorNamespaceAllOf) SetStatus added in v0.5.0

SetStatus sets field value

func (*ConnectorNamespaceAllOf) SetTenant added in v0.5.0

SetTenant sets field value

type ConnectorNamespaceEvalRequest added in v0.5.0

type ConnectorNamespaceEvalRequest struct {
	// Namespace name must match pattern `^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$`, or it may be empty to be auto-generated.
	Name *string `json:"name,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
}

ConnectorNamespaceEvalRequest An evaluation connector namespace create request

func NewConnectorNamespaceEvalRequest added in v0.5.0

func NewConnectorNamespaceEvalRequest() *ConnectorNamespaceEvalRequest

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

func NewConnectorNamespaceEvalRequestWithDefaults added in v0.5.0

func NewConnectorNamespaceEvalRequestWithDefaults() *ConnectorNamespaceEvalRequest

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

func (*ConnectorNamespaceEvalRequest) GetAnnotations added in v0.5.0

func (o *ConnectorNamespaceEvalRequest) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorNamespaceEvalRequest) GetAnnotationsOk added in v0.5.0

func (o *ConnectorNamespaceEvalRequest) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorNamespaceEvalRequest) GetName added in v0.5.0

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

func (*ConnectorNamespaceEvalRequest) GetNameOk added in v0.5.0

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

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

func (*ConnectorNamespaceEvalRequest) HasAnnotations added in v0.5.0

func (o *ConnectorNamespaceEvalRequest) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorNamespaceEvalRequest) HasName added in v0.5.0

func (o *ConnectorNamespaceEvalRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ConnectorNamespaceEvalRequest) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceEvalRequest) SetAnnotations added in v0.5.0

func (o *ConnectorNamespaceEvalRequest) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorNamespaceEvalRequest) SetName added in v0.5.0

func (o *ConnectorNamespaceEvalRequest) SetName(v string)

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

type ConnectorNamespaceList added in v0.5.0

type ConnectorNamespaceList struct {
	Kind  string               `json:"kind"`
	Page  int32                `json:"page"`
	Size  int32                `json:"size"`
	Total int32                `json:"total"`
	Items []ConnectorNamespace `json:"items"`
}

ConnectorNamespaceList struct for ConnectorNamespaceList

func NewConnectorNamespaceList added in v0.5.0

func NewConnectorNamespaceList(kind string, page int32, size int32, total int32, items []ConnectorNamespace) *ConnectorNamespaceList

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

func NewConnectorNamespaceListWithDefaults added in v0.5.0

func NewConnectorNamespaceListWithDefaults() *ConnectorNamespaceList

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

func (*ConnectorNamespaceList) GetItems added in v0.5.0

GetItems returns the Items field value

func (*ConnectorNamespaceList) GetItemsOk added in v0.5.0

func (o *ConnectorNamespaceList) GetItemsOk() (*[]ConnectorNamespace, bool)

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

func (*ConnectorNamespaceList) GetKind added in v0.5.0

func (o *ConnectorNamespaceList) GetKind() string

GetKind returns the Kind field value

func (*ConnectorNamespaceList) GetKindOk added in v0.5.0

func (o *ConnectorNamespaceList) GetKindOk() (*string, bool)

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

func (*ConnectorNamespaceList) GetPage added in v0.5.0

func (o *ConnectorNamespaceList) GetPage() int32

GetPage returns the Page field value

func (*ConnectorNamespaceList) GetPageOk added in v0.5.0

func (o *ConnectorNamespaceList) GetPageOk() (*int32, bool)

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

func (*ConnectorNamespaceList) GetSize added in v0.5.0

func (o *ConnectorNamespaceList) GetSize() int32

GetSize returns the Size field value

func (*ConnectorNamespaceList) GetSizeOk added in v0.5.0

func (o *ConnectorNamespaceList) GetSizeOk() (*int32, bool)

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

func (*ConnectorNamespaceList) GetTotal added in v0.5.0

func (o *ConnectorNamespaceList) GetTotal() int32

GetTotal returns the Total field value

func (*ConnectorNamespaceList) GetTotalOk added in v0.5.0

func (o *ConnectorNamespaceList) GetTotalOk() (*int32, bool)

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

func (ConnectorNamespaceList) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceList) SetItems added in v0.5.0

func (o *ConnectorNamespaceList) SetItems(v []ConnectorNamespace)

SetItems sets field value

func (*ConnectorNamespaceList) SetKind added in v0.5.0

func (o *ConnectorNamespaceList) SetKind(v string)

SetKind sets field value

func (*ConnectorNamespaceList) SetPage added in v0.5.0

func (o *ConnectorNamespaceList) SetPage(v int32)

SetPage sets field value

func (*ConnectorNamespaceList) SetSize added in v0.5.0

func (o *ConnectorNamespaceList) SetSize(v int32)

SetSize sets field value

func (*ConnectorNamespaceList) SetTotal added in v0.5.0

func (o *ConnectorNamespaceList) SetTotal(v int32)

SetTotal sets field value

type ConnectorNamespaceListAllOf added in v0.5.0

type ConnectorNamespaceListAllOf struct {
	Items *[]ConnectorNamespace `json:"items,omitempty"`
}

ConnectorNamespaceListAllOf struct for ConnectorNamespaceListAllOf

func NewConnectorNamespaceListAllOf added in v0.5.0

func NewConnectorNamespaceListAllOf() *ConnectorNamespaceListAllOf

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

func NewConnectorNamespaceListAllOfWithDefaults added in v0.5.0

func NewConnectorNamespaceListAllOfWithDefaults() *ConnectorNamespaceListAllOf

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

func (*ConnectorNamespaceListAllOf) GetItems added in v0.5.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ConnectorNamespaceListAllOf) GetItemsOk added in v0.5.0

func (o *ConnectorNamespaceListAllOf) GetItemsOk() (*[]ConnectorNamespace, bool)

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

func (*ConnectorNamespaceListAllOf) HasItems added in v0.5.0

func (o *ConnectorNamespaceListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ConnectorNamespaceListAllOf) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceListAllOf) SetItems added in v0.5.0

SetItems gets a reference to the given []ConnectorNamespace and assigns it to the Items field.

type ConnectorNamespaceMeta added in v0.5.0

type ConnectorNamespaceMeta struct {
	Owner      *string    `json:"owner,omitempty"`
	CreatedAt  *time.Time `json:"created_at,omitempty"`
	ModifiedAt *time.Time `json:"modified_at,omitempty"`
	// Namespace name must match pattern `^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$`, or it may be empty to be auto-generated.
	Name *string `json:"name,omitempty"`
	// Name-value string annotations for resource
	Annotations     *map[string]string       `json:"annotations,omitempty"`
	ResourceVersion *int64                   `json:"resource_version,omitempty"`
	Quota           *ConnectorNamespaceQuota `json:"quota,omitempty"`
}

ConnectorNamespaceMeta struct for ConnectorNamespaceMeta

func NewConnectorNamespaceMeta added in v0.5.0

func NewConnectorNamespaceMeta() *ConnectorNamespaceMeta

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

func NewConnectorNamespaceMetaWithDefaults added in v0.5.0

func NewConnectorNamespaceMetaWithDefaults() *ConnectorNamespaceMeta

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

func (*ConnectorNamespaceMeta) GetAnnotations added in v0.5.0

func (o *ConnectorNamespaceMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorNamespaceMeta) GetAnnotationsOk added in v0.5.0

func (o *ConnectorNamespaceMeta) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorNamespaceMeta) GetCreatedAt added in v0.5.0

func (o *ConnectorNamespaceMeta) GetCreatedAt() time.Time

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

func (*ConnectorNamespaceMeta) GetCreatedAtOk added in v0.5.0

func (o *ConnectorNamespaceMeta) GetCreatedAtOk() (*time.Time, bool)

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

func (*ConnectorNamespaceMeta) GetModifiedAt added in v0.5.0

func (o *ConnectorNamespaceMeta) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*ConnectorNamespaceMeta) GetModifiedAtOk added in v0.5.0

func (o *ConnectorNamespaceMeta) GetModifiedAtOk() (*time.Time, bool)

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

func (*ConnectorNamespaceMeta) GetName added in v0.5.0

func (o *ConnectorNamespaceMeta) GetName() string

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

func (*ConnectorNamespaceMeta) GetNameOk added in v0.5.0

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

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

func (*ConnectorNamespaceMeta) GetOwner added in v0.5.0

func (o *ConnectorNamespaceMeta) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ConnectorNamespaceMeta) GetOwnerOk added in v0.5.0

func (o *ConnectorNamespaceMeta) GetOwnerOk() (*string, bool)

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

func (*ConnectorNamespaceMeta) GetQuota added in v0.5.0

GetQuota returns the Quota field value if set, zero value otherwise.

func (*ConnectorNamespaceMeta) GetQuotaOk added in v0.5.0

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

func (*ConnectorNamespaceMeta) GetResourceVersion added in v0.5.0

func (o *ConnectorNamespaceMeta) GetResourceVersion() int64

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*ConnectorNamespaceMeta) GetResourceVersionOk added in v0.5.0

func (o *ConnectorNamespaceMeta) GetResourceVersionOk() (*int64, bool)

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

func (*ConnectorNamespaceMeta) HasAnnotations added in v0.5.0

func (o *ConnectorNamespaceMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorNamespaceMeta) HasCreatedAt added in v0.5.0

func (o *ConnectorNamespaceMeta) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ConnectorNamespaceMeta) HasModifiedAt added in v0.5.0

func (o *ConnectorNamespaceMeta) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ConnectorNamespaceMeta) HasName added in v0.5.0

func (o *ConnectorNamespaceMeta) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectorNamespaceMeta) HasOwner added in v0.5.0

func (o *ConnectorNamespaceMeta) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ConnectorNamespaceMeta) HasQuota added in v0.5.0

func (o *ConnectorNamespaceMeta) HasQuota() bool

HasQuota returns a boolean if a field has been set.

func (*ConnectorNamespaceMeta) HasResourceVersion added in v0.5.0

func (o *ConnectorNamespaceMeta) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (ConnectorNamespaceMeta) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceMeta) SetAnnotations added in v0.5.0

func (o *ConnectorNamespaceMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorNamespaceMeta) SetCreatedAt added in v0.5.0

func (o *ConnectorNamespaceMeta) SetCreatedAt(v time.Time)

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

func (*ConnectorNamespaceMeta) SetModifiedAt added in v0.5.0

func (o *ConnectorNamespaceMeta) SetModifiedAt(v time.Time)

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

func (*ConnectorNamespaceMeta) SetName added in v0.5.0

func (o *ConnectorNamespaceMeta) SetName(v string)

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

func (*ConnectorNamespaceMeta) SetOwner added in v0.5.0

func (o *ConnectorNamespaceMeta) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*ConnectorNamespaceMeta) SetQuota added in v0.5.0

SetQuota gets a reference to the given ConnectorNamespaceQuota and assigns it to the Quota field.

func (*ConnectorNamespaceMeta) SetResourceVersion added in v0.5.0

func (o *ConnectorNamespaceMeta) SetResourceVersion(v int64)

SetResourceVersion gets a reference to the given int64 and assigns it to the ResourceVersion field.

type ConnectorNamespaceMetaAllOf added in v0.5.0

type ConnectorNamespaceMetaAllOf struct {
	ResourceVersion *int64                   `json:"resource_version,omitempty"`
	Quota           *ConnectorNamespaceQuota `json:"quota,omitempty"`
}

ConnectorNamespaceMetaAllOf struct for ConnectorNamespaceMetaAllOf

func NewConnectorNamespaceMetaAllOf added in v0.5.0

func NewConnectorNamespaceMetaAllOf() *ConnectorNamespaceMetaAllOf

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

func NewConnectorNamespaceMetaAllOfWithDefaults added in v0.5.0

func NewConnectorNamespaceMetaAllOfWithDefaults() *ConnectorNamespaceMetaAllOf

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

func (*ConnectorNamespaceMetaAllOf) GetQuota added in v0.5.0

GetQuota returns the Quota field value if set, zero value otherwise.

func (*ConnectorNamespaceMetaAllOf) GetQuotaOk added in v0.5.0

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

func (*ConnectorNamespaceMetaAllOf) GetResourceVersion added in v0.5.0

func (o *ConnectorNamespaceMetaAllOf) GetResourceVersion() int64

GetResourceVersion returns the ResourceVersion field value if set, zero value otherwise.

func (*ConnectorNamespaceMetaAllOf) GetResourceVersionOk added in v0.5.0

func (o *ConnectorNamespaceMetaAllOf) GetResourceVersionOk() (*int64, bool)

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

func (*ConnectorNamespaceMetaAllOf) HasQuota added in v0.5.0

func (o *ConnectorNamespaceMetaAllOf) HasQuota() bool

HasQuota returns a boolean if a field has been set.

func (*ConnectorNamespaceMetaAllOf) HasResourceVersion added in v0.5.0

func (o *ConnectorNamespaceMetaAllOf) HasResourceVersion() bool

HasResourceVersion returns a boolean if a field has been set.

func (ConnectorNamespaceMetaAllOf) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceMetaAllOf) SetQuota added in v0.5.0

SetQuota gets a reference to the given ConnectorNamespaceQuota and assigns it to the Quota field.

func (*ConnectorNamespaceMetaAllOf) SetResourceVersion added in v0.5.0

func (o *ConnectorNamespaceMetaAllOf) SetResourceVersion(v int64)

SetResourceVersion gets a reference to the given int64 and assigns it to the ResourceVersion field.

type ConnectorNamespacePatchRequest added in v0.5.0

type ConnectorNamespacePatchRequest struct {
	// Namespace name must match pattern `^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$`, or it may be empty to be auto-generated.
	Name *string `json:"name,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
}

ConnectorNamespacePatchRequest A connector namespace patch request

func NewConnectorNamespacePatchRequest added in v0.5.0

func NewConnectorNamespacePatchRequest() *ConnectorNamespacePatchRequest

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

func NewConnectorNamespacePatchRequestWithDefaults added in v0.5.0

func NewConnectorNamespacePatchRequestWithDefaults() *ConnectorNamespacePatchRequest

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

func (*ConnectorNamespacePatchRequest) GetAnnotations added in v0.5.0

func (o *ConnectorNamespacePatchRequest) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorNamespacePatchRequest) GetAnnotationsOk added in v0.5.0

func (o *ConnectorNamespacePatchRequest) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorNamespacePatchRequest) GetName added in v0.5.0

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

func (*ConnectorNamespacePatchRequest) GetNameOk added in v0.5.0

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

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

func (*ConnectorNamespacePatchRequest) HasAnnotations added in v0.5.0

func (o *ConnectorNamespacePatchRequest) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorNamespacePatchRequest) HasName added in v0.5.0

func (o *ConnectorNamespacePatchRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ConnectorNamespacePatchRequest) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespacePatchRequest) SetAnnotations added in v0.5.0

func (o *ConnectorNamespacePatchRequest) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorNamespacePatchRequest) SetName added in v0.5.0

func (o *ConnectorNamespacePatchRequest) SetName(v string)

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

type ConnectorNamespaceQuota added in v0.5.0

type ConnectorNamespaceQuota struct {
	Connectors *int32 `json:"connectors,omitempty"`
	// Memory quota for limits or requests
	MemoryRequests *string `json:"memory_requests,omitempty"`
	// Memory quota for limits or requests
	MemoryLimits *string `json:"memory_limits,omitempty"`
	// CPU quota for limits or requests
	CpuRequests *string `json:"cpu_requests,omitempty"`
	// CPU quota for limits or requests
	CpuLimits *string `json:"cpu_limits,omitempty"`
}

ConnectorNamespaceQuota struct for ConnectorNamespaceQuota

func NewConnectorNamespaceQuota added in v0.5.0

func NewConnectorNamespaceQuota() *ConnectorNamespaceQuota

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

func NewConnectorNamespaceQuotaWithDefaults added in v0.5.0

func NewConnectorNamespaceQuotaWithDefaults() *ConnectorNamespaceQuota

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

func (*ConnectorNamespaceQuota) GetConnectors added in v0.5.0

func (o *ConnectorNamespaceQuota) GetConnectors() int32

GetConnectors returns the Connectors field value if set, zero value otherwise.

func (*ConnectorNamespaceQuota) GetConnectorsOk added in v0.5.0

func (o *ConnectorNamespaceQuota) GetConnectorsOk() (*int32, bool)

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

func (*ConnectorNamespaceQuota) GetCpuLimits added in v0.5.0

func (o *ConnectorNamespaceQuota) GetCpuLimits() string

GetCpuLimits returns the CpuLimits field value if set, zero value otherwise.

func (*ConnectorNamespaceQuota) GetCpuLimitsOk added in v0.5.0

func (o *ConnectorNamespaceQuota) GetCpuLimitsOk() (*string, bool)

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

func (*ConnectorNamespaceQuota) GetCpuRequests added in v0.5.0

func (o *ConnectorNamespaceQuota) GetCpuRequests() string

GetCpuRequests returns the CpuRequests field value if set, zero value otherwise.

func (*ConnectorNamespaceQuota) GetCpuRequestsOk added in v0.5.0

func (o *ConnectorNamespaceQuota) GetCpuRequestsOk() (*string, bool)

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

func (*ConnectorNamespaceQuota) GetMemoryLimits added in v0.5.0

func (o *ConnectorNamespaceQuota) GetMemoryLimits() string

GetMemoryLimits returns the MemoryLimits field value if set, zero value otherwise.

func (*ConnectorNamespaceQuota) GetMemoryLimitsOk added in v0.5.0

func (o *ConnectorNamespaceQuota) GetMemoryLimitsOk() (*string, bool)

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

func (*ConnectorNamespaceQuota) GetMemoryRequests added in v0.5.0

func (o *ConnectorNamespaceQuota) GetMemoryRequests() string

GetMemoryRequests returns the MemoryRequests field value if set, zero value otherwise.

func (*ConnectorNamespaceQuota) GetMemoryRequestsOk added in v0.5.0

func (o *ConnectorNamespaceQuota) GetMemoryRequestsOk() (*string, bool)

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

func (*ConnectorNamespaceQuota) HasConnectors added in v0.5.0

func (o *ConnectorNamespaceQuota) HasConnectors() bool

HasConnectors returns a boolean if a field has been set.

func (*ConnectorNamespaceQuota) HasCpuLimits added in v0.5.0

func (o *ConnectorNamespaceQuota) HasCpuLimits() bool

HasCpuLimits returns a boolean if a field has been set.

func (*ConnectorNamespaceQuota) HasCpuRequests added in v0.5.0

func (o *ConnectorNamespaceQuota) HasCpuRequests() bool

HasCpuRequests returns a boolean if a field has been set.

func (*ConnectorNamespaceQuota) HasMemoryLimits added in v0.5.0

func (o *ConnectorNamespaceQuota) HasMemoryLimits() bool

HasMemoryLimits returns a boolean if a field has been set.

func (*ConnectorNamespaceQuota) HasMemoryRequests added in v0.5.0

func (o *ConnectorNamespaceQuota) HasMemoryRequests() bool

HasMemoryRequests returns a boolean if a field has been set.

func (ConnectorNamespaceQuota) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceQuota) SetConnectors added in v0.5.0

func (o *ConnectorNamespaceQuota) SetConnectors(v int32)

SetConnectors gets a reference to the given int32 and assigns it to the Connectors field.

func (*ConnectorNamespaceQuota) SetCpuLimits added in v0.5.0

func (o *ConnectorNamespaceQuota) SetCpuLimits(v string)

SetCpuLimits gets a reference to the given string and assigns it to the CpuLimits field.

func (*ConnectorNamespaceQuota) SetCpuRequests added in v0.5.0

func (o *ConnectorNamespaceQuota) SetCpuRequests(v string)

SetCpuRequests gets a reference to the given string and assigns it to the CpuRequests field.

func (*ConnectorNamespaceQuota) SetMemoryLimits added in v0.5.0

func (o *ConnectorNamespaceQuota) SetMemoryLimits(v string)

SetMemoryLimits gets a reference to the given string and assigns it to the MemoryLimits field.

func (*ConnectorNamespaceQuota) SetMemoryRequests added in v0.5.0

func (o *ConnectorNamespaceQuota) SetMemoryRequests(v string)

SetMemoryRequests gets a reference to the given string and assigns it to the MemoryRequests field.

type ConnectorNamespaceRequest added in v0.5.0

type ConnectorNamespaceRequest struct {
	// Namespace name must match pattern `^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$`, or it may be empty to be auto-generated.
	Name string `json:"name"`
	// Name-value string annotations for resource
	Annotations *map[string]string           `json:"annotations,omitempty"`
	ClusterId   string                       `json:"cluster_id"`
	Kind        ConnectorNamespaceTenantKind `json:"kind"`
}

ConnectorNamespaceRequest A connector namespace create request

func NewConnectorNamespaceRequest added in v0.5.0

func NewConnectorNamespaceRequest(name string, clusterId string, kind ConnectorNamespaceTenantKind) *ConnectorNamespaceRequest

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

func NewConnectorNamespaceRequestWithDefaults added in v0.5.0

func NewConnectorNamespaceRequestWithDefaults() *ConnectorNamespaceRequest

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

func (*ConnectorNamespaceRequest) GetAnnotations added in v0.5.0

func (o *ConnectorNamespaceRequest) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorNamespaceRequest) GetAnnotationsOk added in v0.5.0

func (o *ConnectorNamespaceRequest) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorNamespaceRequest) GetClusterId added in v0.5.0

func (o *ConnectorNamespaceRequest) GetClusterId() string

GetClusterId returns the ClusterId field value

func (*ConnectorNamespaceRequest) GetClusterIdOk added in v0.5.0

func (o *ConnectorNamespaceRequest) GetClusterIdOk() (*string, bool)

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

func (*ConnectorNamespaceRequest) GetKind added in v0.5.0

GetKind returns the Kind field value

func (*ConnectorNamespaceRequest) GetKindOk added in v0.5.0

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

func (*ConnectorNamespaceRequest) GetName added in v0.5.0

func (o *ConnectorNamespaceRequest) GetName() string

GetName returns the Name field value

func (*ConnectorNamespaceRequest) GetNameOk added in v0.5.0

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

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

func (*ConnectorNamespaceRequest) HasAnnotations added in v0.5.0

func (o *ConnectorNamespaceRequest) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (ConnectorNamespaceRequest) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceRequest) SetAnnotations added in v0.5.0

func (o *ConnectorNamespaceRequest) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorNamespaceRequest) SetClusterId added in v0.5.0

func (o *ConnectorNamespaceRequest) SetClusterId(v string)

SetClusterId sets field value

func (*ConnectorNamespaceRequest) SetKind added in v0.5.0

SetKind sets field value

func (*ConnectorNamespaceRequest) SetName added in v0.5.0

func (o *ConnectorNamespaceRequest) SetName(v string)

SetName sets field value

type ConnectorNamespaceRequestAllOf added in v0.5.0

type ConnectorNamespaceRequestAllOf struct {
	ClusterId *string                       `json:"cluster_id,omitempty"`
	Kind      *ConnectorNamespaceTenantKind `json:"kind,omitempty"`
}

ConnectorNamespaceRequestAllOf struct for ConnectorNamespaceRequestAllOf

func NewConnectorNamespaceRequestAllOf added in v0.5.0

func NewConnectorNamespaceRequestAllOf() *ConnectorNamespaceRequestAllOf

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

func NewConnectorNamespaceRequestAllOfWithDefaults added in v0.5.0

func NewConnectorNamespaceRequestAllOfWithDefaults() *ConnectorNamespaceRequestAllOf

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

func (*ConnectorNamespaceRequestAllOf) GetClusterId added in v0.5.0

func (o *ConnectorNamespaceRequestAllOf) GetClusterId() string

GetClusterId returns the ClusterId field value if set, zero value otherwise.

func (*ConnectorNamespaceRequestAllOf) GetClusterIdOk added in v0.5.0

func (o *ConnectorNamespaceRequestAllOf) GetClusterIdOk() (*string, bool)

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

func (*ConnectorNamespaceRequestAllOf) GetKind added in v0.5.0

GetKind returns the Kind field value if set, zero value otherwise.

func (*ConnectorNamespaceRequestAllOf) GetKindOk added in v0.5.0

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

func (*ConnectorNamespaceRequestAllOf) HasClusterId added in v0.5.0

func (o *ConnectorNamespaceRequestAllOf) HasClusterId() bool

HasClusterId returns a boolean if a field has been set.

func (*ConnectorNamespaceRequestAllOf) HasKind added in v0.5.0

func (o *ConnectorNamespaceRequestAllOf) HasKind() bool

HasKind returns a boolean if a field has been set.

func (ConnectorNamespaceRequestAllOf) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceRequestAllOf) SetClusterId added in v0.5.0

func (o *ConnectorNamespaceRequestAllOf) SetClusterId(v string)

SetClusterId gets a reference to the given string and assigns it to the ClusterId field.

func (*ConnectorNamespaceRequestAllOf) SetKind added in v0.5.0

SetKind gets a reference to the given ConnectorNamespaceTenantKind and assigns it to the Kind field.

type ConnectorNamespaceRequestMeta added in v0.5.0

type ConnectorNamespaceRequestMeta struct {
	// Namespace name must match pattern `^(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?$`, or it may be empty to be auto-generated.
	Name *string `json:"name,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
}

ConnectorNamespaceRequestMeta struct for ConnectorNamespaceRequestMeta

func NewConnectorNamespaceRequestMeta added in v0.5.0

func NewConnectorNamespaceRequestMeta() *ConnectorNamespaceRequestMeta

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

func NewConnectorNamespaceRequestMetaWithDefaults added in v0.5.0

func NewConnectorNamespaceRequestMetaWithDefaults() *ConnectorNamespaceRequestMeta

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

func (*ConnectorNamespaceRequestMeta) GetAnnotations added in v0.5.0

func (o *ConnectorNamespaceRequestMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorNamespaceRequestMeta) GetAnnotationsOk added in v0.5.0

func (o *ConnectorNamespaceRequestMeta) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorNamespaceRequestMeta) GetName added in v0.5.0

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

func (*ConnectorNamespaceRequestMeta) GetNameOk added in v0.5.0

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

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

func (*ConnectorNamespaceRequestMeta) HasAnnotations added in v0.5.0

func (o *ConnectorNamespaceRequestMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorNamespaceRequestMeta) HasName added in v0.5.0

func (o *ConnectorNamespaceRequestMeta) HasName() bool

HasName returns a boolean if a field has been set.

func (ConnectorNamespaceRequestMeta) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceRequestMeta) SetAnnotations added in v0.5.0

func (o *ConnectorNamespaceRequestMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorNamespaceRequestMeta) SetName added in v0.5.0

func (o *ConnectorNamespaceRequestMeta) SetName(v string)

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

type ConnectorNamespaceState added in v0.5.0

type ConnectorNamespaceState string

ConnectorNamespaceState the model 'ConnectorNamespaceState'

const (
	CONNECTORNAMESPACESTATE_DISCONNECTED ConnectorNamespaceState = "disconnected"
	CONNECTORNAMESPACESTATE_READY        ConnectorNamespaceState = "ready"
	CONNECTORNAMESPACESTATE_DELETING     ConnectorNamespaceState = "deleting"
	CONNECTORNAMESPACESTATE_DELETED      ConnectorNamespaceState = "deleted"
)

List of ConnectorNamespaceState

func NewConnectorNamespaceStateFromValue added in v0.5.0

func NewConnectorNamespaceStateFromValue(v string) (*ConnectorNamespaceState, error)

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

func (ConnectorNamespaceState) IsValid added in v0.5.0

func (v ConnectorNamespaceState) IsValid() bool

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

func (ConnectorNamespaceState) Ptr added in v0.5.0

Ptr returns reference to ConnectorNamespaceState value

func (*ConnectorNamespaceState) UnmarshalJSON added in v0.5.0

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

type ConnectorNamespaceStatus added in v0.5.0

type ConnectorNamespaceStatus struct {
	State              ConnectorNamespaceState `json:"state"`
	Version            *string                 `json:"version,omitempty"`
	ConnectorsDeployed int32                   `json:"connectors_deployed"`
	Error              *string                 `json:"error,omitempty"`
}

ConnectorNamespaceStatus struct for ConnectorNamespaceStatus

func NewConnectorNamespaceStatus added in v0.5.0

func NewConnectorNamespaceStatus(state ConnectorNamespaceState, connectorsDeployed int32) *ConnectorNamespaceStatus

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

func NewConnectorNamespaceStatusWithDefaults added in v0.5.0

func NewConnectorNamespaceStatusWithDefaults() *ConnectorNamespaceStatus

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

func (*ConnectorNamespaceStatus) GetConnectorsDeployed added in v0.5.0

func (o *ConnectorNamespaceStatus) GetConnectorsDeployed() int32

GetConnectorsDeployed returns the ConnectorsDeployed field value

func (*ConnectorNamespaceStatus) GetConnectorsDeployedOk added in v0.5.0

func (o *ConnectorNamespaceStatus) GetConnectorsDeployedOk() (*int32, bool)

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

func (*ConnectorNamespaceStatus) GetError added in v0.5.0

func (o *ConnectorNamespaceStatus) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ConnectorNamespaceStatus) GetErrorOk added in v0.5.0

func (o *ConnectorNamespaceStatus) GetErrorOk() (*string, bool)

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

func (*ConnectorNamespaceStatus) GetState added in v0.5.0

GetState returns the State field value

func (*ConnectorNamespaceStatus) GetStateOk added in v0.5.0

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

func (*ConnectorNamespaceStatus) GetVersion added in v0.5.0

func (o *ConnectorNamespaceStatus) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*ConnectorNamespaceStatus) GetVersionOk added in v0.5.0

func (o *ConnectorNamespaceStatus) GetVersionOk() (*string, bool)

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

func (*ConnectorNamespaceStatus) HasError added in v0.5.0

func (o *ConnectorNamespaceStatus) HasError() bool

HasError returns a boolean if a field has been set.

func (*ConnectorNamespaceStatus) HasVersion added in v0.5.0

func (o *ConnectorNamespaceStatus) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ConnectorNamespaceStatus) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceStatus) SetConnectorsDeployed added in v0.5.0

func (o *ConnectorNamespaceStatus) SetConnectorsDeployed(v int32)

SetConnectorsDeployed sets field value

func (*ConnectorNamespaceStatus) SetError added in v0.5.0

func (o *ConnectorNamespaceStatus) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ConnectorNamespaceStatus) SetState added in v0.5.0

SetState sets field value

func (*ConnectorNamespaceStatus) SetVersion added in v0.5.0

func (o *ConnectorNamespaceStatus) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type ConnectorNamespaceTenant added in v0.5.0

type ConnectorNamespaceTenant struct {
	Kind ConnectorNamespaceTenantKind `json:"kind"`
	// Either user or organisation id depending on the value of kind
	Id string `json:"id"`
}

ConnectorNamespaceTenant struct for ConnectorNamespaceTenant

func NewConnectorNamespaceTenant added in v0.5.0

func NewConnectorNamespaceTenant(kind ConnectorNamespaceTenantKind, id string) *ConnectorNamespaceTenant

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

func NewConnectorNamespaceTenantWithDefaults added in v0.5.0

func NewConnectorNamespaceTenantWithDefaults() *ConnectorNamespaceTenant

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

func (*ConnectorNamespaceTenant) GetId added in v0.5.0

func (o *ConnectorNamespaceTenant) GetId() string

GetId returns the Id field value

func (*ConnectorNamespaceTenant) GetIdOk added in v0.5.0

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

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

func (*ConnectorNamespaceTenant) GetKind added in v0.5.0

GetKind returns the Kind field value

func (*ConnectorNamespaceTenant) GetKindOk added in v0.5.0

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

func (ConnectorNamespaceTenant) MarshalJSON added in v0.5.0

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

func (*ConnectorNamespaceTenant) SetId added in v0.5.0

func (o *ConnectorNamespaceTenant) SetId(v string)

SetId sets field value

func (*ConnectorNamespaceTenant) SetKind added in v0.5.0

SetKind sets field value

type ConnectorNamespaceTenantKind added in v0.5.0

type ConnectorNamespaceTenantKind string

ConnectorNamespaceTenantKind the model 'ConnectorNamespaceTenantKind'

const (
	CONNECTORNAMESPACETENANTKIND_USER         ConnectorNamespaceTenantKind = "user"
	CONNECTORNAMESPACETENANTKIND_ORGANISATION ConnectorNamespaceTenantKind = "organisation"
)

List of ConnectorNamespaceTenantKind

func NewConnectorNamespaceTenantKindFromValue added in v0.5.0

func NewConnectorNamespaceTenantKindFromValue(v string) (*ConnectorNamespaceTenantKind, error)

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

func (ConnectorNamespaceTenantKind) IsValid added in v0.5.0

func (v ConnectorNamespaceTenantKind) IsValid() bool

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

func (ConnectorNamespaceTenantKind) Ptr added in v0.5.0

Ptr returns reference to ConnectorNamespaceTenantKind value

func (*ConnectorNamespaceTenantKind) UnmarshalJSON added in v0.5.0

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

type ConnectorNamespacesApi added in v0.5.0

type ConnectorNamespacesApi interface {

	/*
	 * CreateEvaluationNamespace Create a new short lived evaluation connector namespace
	 * Create a new evaluation connector namespace
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiCreateEvaluationNamespaceRequest
	 */
	CreateEvaluationNamespace(ctx _context.Context) ApiCreateEvaluationNamespaceRequest

	/*
	 * CreateEvaluationNamespaceExecute executes the request
	 * @return ConnectorNamespace
	 */
	CreateEvaluationNamespaceExecute(r ApiCreateEvaluationNamespaceRequest) (ConnectorNamespace, *_nethttp.Response, error)

	/*
	 * GetConnectorNamespace Get a connector namespace
	 * Get a connector namespace
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param connectorNamespaceId The id of the connector namespace
	 * @return ApiGetConnectorNamespaceRequest
	 */
	GetConnectorNamespace(ctx _context.Context, connectorNamespaceId string) ApiGetConnectorNamespaceRequest

	/*
	 * GetConnectorNamespaceExecute executes the request
	 * @return ConnectorNamespace
	 */
	GetConnectorNamespaceExecute(r ApiGetConnectorNamespaceRequest) (ConnectorNamespace, *_nethttp.Response, error)

	/*
	 * ListConnectorNamespaces Returns a list of connector namespaces
	 * Returns a list of connector namespaces
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiListConnectorNamespacesRequest
	 */
	ListConnectorNamespaces(ctx _context.Context) ApiListConnectorNamespacesRequest

	/*
	 * ListConnectorNamespacesExecute executes the request
	 * @return ConnectorNamespaceList
	 */
	ListConnectorNamespacesExecute(r ApiListConnectorNamespacesRequest) (ConnectorNamespaceList, *_nethttp.Response, error)
}

type ConnectorNamespacesApiService added in v0.5.0

type ConnectorNamespacesApiService service

ConnectorNamespacesApiService ConnectorNamespacesApi service

func (*ConnectorNamespacesApiService) CreateEvaluationNamespace added in v0.5.0

* CreateEvaluationNamespace Create a new short lived evaluation connector namespace * Create a new evaluation connector namespace * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateEvaluationNamespaceRequest

func (*ConnectorNamespacesApiService) CreateEvaluationNamespaceExecute added in v0.5.0

* Execute executes the request * @return ConnectorNamespace

func (*ConnectorNamespacesApiService) GetConnectorNamespace added in v0.5.0

func (a *ConnectorNamespacesApiService) GetConnectorNamespace(ctx _context.Context, connectorNamespaceId string) ApiGetConnectorNamespaceRequest

* GetConnectorNamespace Get a connector namespace * Get a connector namespace * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param connectorNamespaceId The id of the connector namespace * @return ApiGetConnectorNamespaceRequest

func (*ConnectorNamespacesApiService) GetConnectorNamespaceExecute added in v0.5.0

* Execute executes the request * @return ConnectorNamespace

func (*ConnectorNamespacesApiService) ListConnectorNamespaces added in v0.5.0

* ListConnectorNamespaces Returns a list of connector namespaces * Returns a list of connector namespaces * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListConnectorNamespacesRequest

func (*ConnectorNamespacesApiService) ListConnectorNamespacesExecute added in v0.5.0

* Execute executes the request * @return ConnectorNamespaceList

type ConnectorRequest added in v0.3.0

type ConnectorRequest struct {
	Name            string                `json:"name"`
	ConnectorTypeId string                `json:"connector_type_id"`
	NamespaceId     string                `json:"namespace_id"`
	Channel         *Channel              `json:"channel,omitempty"`
	DesiredState    ConnectorDesiredState `json:"desired_state"`
	// Name-value string annotations for resource
	Annotations    *map[string]string                `json:"annotations,omitempty"`
	Kafka          KafkaConnectionSettings           `json:"kafka"`
	ServiceAccount ServiceAccount                    `json:"service_account"`
	SchemaRegistry *SchemaRegistryConnectionSettings `json:"schema_registry,omitempty"`
	Connector      map[string]interface{}            `json:"connector"`
}

ConnectorRequest struct for ConnectorRequest

func NewConnectorRequest added in v0.3.0

func NewConnectorRequest(name string, connectorTypeId string, namespaceId string, desiredState ConnectorDesiredState, kafka KafkaConnectionSettings, serviceAccount ServiceAccount, connector map[string]interface{}) *ConnectorRequest

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

func NewConnectorRequestWithDefaults added in v0.3.0

func NewConnectorRequestWithDefaults() *ConnectorRequest

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

func (*ConnectorRequest) GetAnnotations added in v0.10.0

func (o *ConnectorRequest) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorRequest) GetAnnotationsOk added in v0.10.0

func (o *ConnectorRequest) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorRequest) GetChannel added in v0.3.0

func (o *ConnectorRequest) GetChannel() Channel

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

func (*ConnectorRequest) GetChannelOk added in v0.3.0

func (o *ConnectorRequest) GetChannelOk() (*Channel, bool)

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

func (*ConnectorRequest) GetConnector added in v0.3.0

func (o *ConnectorRequest) GetConnector() map[string]interface{}

GetConnector returns the Connector field value

func (*ConnectorRequest) GetConnectorOk added in v0.3.0

func (o *ConnectorRequest) GetConnectorOk() (*map[string]interface{}, bool)

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

func (*ConnectorRequest) GetConnectorTypeId added in v0.3.0

func (o *ConnectorRequest) GetConnectorTypeId() string

GetConnectorTypeId returns the ConnectorTypeId field value

func (*ConnectorRequest) GetConnectorTypeIdOk added in v0.3.0

func (o *ConnectorRequest) GetConnectorTypeIdOk() (*string, bool)

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

func (*ConnectorRequest) GetDesiredState added in v0.3.0

func (o *ConnectorRequest) GetDesiredState() ConnectorDesiredState

GetDesiredState returns the DesiredState field value

func (*ConnectorRequest) GetDesiredStateOk added in v0.3.0

func (o *ConnectorRequest) GetDesiredStateOk() (*ConnectorDesiredState, bool)

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

func (*ConnectorRequest) GetKafka added in v0.3.0

GetKafka returns the Kafka field value

func (*ConnectorRequest) GetKafkaOk added in v0.3.0

func (o *ConnectorRequest) GetKafkaOk() (*KafkaConnectionSettings, bool)

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

func (*ConnectorRequest) GetName added in v0.3.0

func (o *ConnectorRequest) GetName() string

GetName returns the Name field value

func (*ConnectorRequest) GetNameOk added in v0.3.0

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

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

func (*ConnectorRequest) GetNamespaceId added in v0.5.0

func (o *ConnectorRequest) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value

func (*ConnectorRequest) GetNamespaceIdOk added in v0.5.0

func (o *ConnectorRequest) GetNamespaceIdOk() (*string, bool)

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

func (*ConnectorRequest) GetSchemaRegistry added in v0.3.0

func (o *ConnectorRequest) GetSchemaRegistry() SchemaRegistryConnectionSettings

GetSchemaRegistry returns the SchemaRegistry field value if set, zero value otherwise.

func (*ConnectorRequest) GetSchemaRegistryOk added in v0.3.0

func (o *ConnectorRequest) GetSchemaRegistryOk() (*SchemaRegistryConnectionSettings, bool)

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

func (*ConnectorRequest) GetServiceAccount added in v0.3.0

func (o *ConnectorRequest) GetServiceAccount() ServiceAccount

GetServiceAccount returns the ServiceAccount field value

func (*ConnectorRequest) GetServiceAccountOk added in v0.3.0

func (o *ConnectorRequest) GetServiceAccountOk() (*ServiceAccount, bool)

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

func (*ConnectorRequest) HasAnnotations added in v0.10.0

func (o *ConnectorRequest) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorRequest) HasChannel added in v0.3.0

func (o *ConnectorRequest) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (*ConnectorRequest) HasSchemaRegistry added in v0.3.0

func (o *ConnectorRequest) HasSchemaRegistry() bool

HasSchemaRegistry returns a boolean if a field has been set.

func (ConnectorRequest) MarshalJSON added in v0.3.0

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

func (*ConnectorRequest) SetAnnotations added in v0.10.0

func (o *ConnectorRequest) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorRequest) SetChannel added in v0.3.0

func (o *ConnectorRequest) SetChannel(v Channel)

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

func (*ConnectorRequest) SetConnector added in v0.3.0

func (o *ConnectorRequest) SetConnector(v map[string]interface{})

SetConnector sets field value

func (*ConnectorRequest) SetConnectorTypeId added in v0.3.0

func (o *ConnectorRequest) SetConnectorTypeId(v string)

SetConnectorTypeId sets field value

func (*ConnectorRequest) SetDesiredState added in v0.3.0

func (o *ConnectorRequest) SetDesiredState(v ConnectorDesiredState)

SetDesiredState sets field value

func (*ConnectorRequest) SetKafka added in v0.3.0

SetKafka sets field value

func (*ConnectorRequest) SetName added in v0.3.0

func (o *ConnectorRequest) SetName(v string)

SetName sets field value

func (*ConnectorRequest) SetNamespaceId added in v0.5.0

func (o *ConnectorRequest) SetNamespaceId(v string)

SetNamespaceId sets field value

func (*ConnectorRequest) SetSchemaRegistry added in v0.3.0

func (o *ConnectorRequest) SetSchemaRegistry(v SchemaRegistryConnectionSettings)

SetSchemaRegistry gets a reference to the given SchemaRegistryConnectionSettings and assigns it to the SchemaRegistry field.

func (*ConnectorRequest) SetServiceAccount added in v0.3.0

func (o *ConnectorRequest) SetServiceAccount(v ServiceAccount)

SetServiceAccount sets field value

type ConnectorRequestMeta added in v0.3.0

type ConnectorRequestMeta struct {
	Name            string                `json:"name"`
	ConnectorTypeId string                `json:"connector_type_id"`
	NamespaceId     string                `json:"namespace_id"`
	Channel         *Channel              `json:"channel,omitempty"`
	DesiredState    ConnectorDesiredState `json:"desired_state"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
}

ConnectorRequestMeta struct for ConnectorRequestMeta

func NewConnectorRequestMeta added in v0.3.0

func NewConnectorRequestMeta(name string, connectorTypeId string, namespaceId string, desiredState ConnectorDesiredState) *ConnectorRequestMeta

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

func NewConnectorRequestMetaWithDefaults added in v0.3.0

func NewConnectorRequestMetaWithDefaults() *ConnectorRequestMeta

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

func (*ConnectorRequestMeta) GetAnnotations added in v0.10.0

func (o *ConnectorRequestMeta) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorRequestMeta) GetAnnotationsOk added in v0.10.0

func (o *ConnectorRequestMeta) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorRequestMeta) GetChannel added in v0.3.0

func (o *ConnectorRequestMeta) GetChannel() Channel

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

func (*ConnectorRequestMeta) GetChannelOk added in v0.3.0

func (o *ConnectorRequestMeta) GetChannelOk() (*Channel, bool)

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

func (*ConnectorRequestMeta) GetConnectorTypeId added in v0.3.0

func (o *ConnectorRequestMeta) GetConnectorTypeId() string

GetConnectorTypeId returns the ConnectorTypeId field value

func (*ConnectorRequestMeta) GetConnectorTypeIdOk added in v0.3.0

func (o *ConnectorRequestMeta) GetConnectorTypeIdOk() (*string, bool)

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

func (*ConnectorRequestMeta) GetDesiredState added in v0.3.0

func (o *ConnectorRequestMeta) GetDesiredState() ConnectorDesiredState

GetDesiredState returns the DesiredState field value

func (*ConnectorRequestMeta) GetDesiredStateOk added in v0.3.0

func (o *ConnectorRequestMeta) GetDesiredStateOk() (*ConnectorDesiredState, bool)

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

func (*ConnectorRequestMeta) GetName added in v0.3.0

func (o *ConnectorRequestMeta) GetName() string

GetName returns the Name field value

func (*ConnectorRequestMeta) GetNameOk added in v0.3.0

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

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

func (*ConnectorRequestMeta) GetNamespaceId added in v0.5.0

func (o *ConnectorRequestMeta) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value

func (*ConnectorRequestMeta) GetNamespaceIdOk added in v0.5.0

func (o *ConnectorRequestMeta) GetNamespaceIdOk() (*string, bool)

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

func (*ConnectorRequestMeta) HasAnnotations added in v0.10.0

func (o *ConnectorRequestMeta) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorRequestMeta) HasChannel added in v0.3.0

func (o *ConnectorRequestMeta) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (ConnectorRequestMeta) MarshalJSON added in v0.3.0

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

func (*ConnectorRequestMeta) SetAnnotations added in v0.10.0

func (o *ConnectorRequestMeta) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorRequestMeta) SetChannel added in v0.3.0

func (o *ConnectorRequestMeta) SetChannel(v Channel)

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

func (*ConnectorRequestMeta) SetConnectorTypeId added in v0.3.0

func (o *ConnectorRequestMeta) SetConnectorTypeId(v string)

SetConnectorTypeId sets field value

func (*ConnectorRequestMeta) SetDesiredState added in v0.3.0

func (o *ConnectorRequestMeta) SetDesiredState(v ConnectorDesiredState)

SetDesiredState sets field value

func (*ConnectorRequestMeta) SetName added in v0.3.0

func (o *ConnectorRequestMeta) SetName(v string)

SetName sets field value

func (*ConnectorRequestMeta) SetNamespaceId added in v0.5.0

func (o *ConnectorRequestMeta) SetNamespaceId(v string)

SetNamespaceId sets field value

type ConnectorServiceApi added in v0.3.0

type ConnectorServiceApi interface {

	/*
	 * GetVersionMetadata Returns the version metadata
	 * Returns the version metadata
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiGetVersionMetadataRequest
	 */
	GetVersionMetadata(ctx _context.Context) ApiGetVersionMetadataRequest

	/*
	 * GetVersionMetadataExecute executes the request
	 * @return VersionMetadata
	 */
	GetVersionMetadataExecute(r ApiGetVersionMetadataRequest) (VersionMetadata, *_nethttp.Response, error)
}

type ConnectorServiceApiService added in v0.3.0

type ConnectorServiceApiService service

ConnectorServiceApiService ConnectorServiceApi service

func (*ConnectorServiceApiService) GetVersionMetadata added in v0.3.0

* GetVersionMetadata Returns the version metadata * Returns the version metadata * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetVersionMetadataRequest

func (*ConnectorServiceApiService) GetVersionMetadataExecute added in v0.3.0

* Execute executes the request * @return VersionMetadata

type ConnectorState added in v0.3.0

type ConnectorState string

ConnectorState the model 'ConnectorState'

const (
	CONNECTORSTATE_ASSIGNING      ConnectorState = "assigning"
	CONNECTORSTATE_ASSIGNED       ConnectorState = "assigned"
	CONNECTORSTATE_UPDATING       ConnectorState = "updating"
	CONNECTORSTATE_READY          ConnectorState = "ready"
	CONNECTORSTATE_STOPPED        ConnectorState = "stopped"
	CONNECTORSTATE_FAILED         ConnectorState = "failed"
	CONNECTORSTATE_DELETING       ConnectorState = "deleting"
	CONNECTORSTATE_DELETED        ConnectorState = "deleted"
	CONNECTORSTATE_PROVISIONING   ConnectorState = "provisioning"
	CONNECTORSTATE_DEPROVISIONING ConnectorState = "deprovisioning"
)

List of ConnectorState

func NewConnectorStateFromValue added in v0.3.0

func NewConnectorStateFromValue(v string) (*ConnectorState, error)

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

func (ConnectorState) IsValid added in v0.3.0

func (v ConnectorState) IsValid() bool

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

func (ConnectorState) Ptr added in v0.3.0

func (v ConnectorState) Ptr() *ConnectorState

Ptr returns reference to ConnectorState value

func (*ConnectorState) UnmarshalJSON added in v0.3.0

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

type ConnectorStatus added in v0.3.0

type ConnectorStatus struct {
	Status *ConnectorStatusStatus `json:"status,omitempty"`
}

ConnectorStatus struct for ConnectorStatus

func NewConnectorStatus added in v0.3.0

func NewConnectorStatus() *ConnectorStatus

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

func NewConnectorStatusWithDefaults added in v0.3.0

func NewConnectorStatusWithDefaults() *ConnectorStatus

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

func (*ConnectorStatus) GetStatus added in v0.3.0

func (o *ConnectorStatus) GetStatus() ConnectorStatusStatus

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

func (*ConnectorStatus) GetStatusOk added in v0.3.0

func (o *ConnectorStatus) GetStatusOk() (*ConnectorStatusStatus, bool)

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

func (*ConnectorStatus) HasStatus added in v0.3.0

func (o *ConnectorStatus) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectorStatus) MarshalJSON added in v0.3.0

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

func (*ConnectorStatus) SetStatus added in v0.3.0

func (o *ConnectorStatus) SetStatus(v ConnectorStatusStatus)

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

type ConnectorStatusStatus added in v0.3.0

type ConnectorStatusStatus struct {
	State *ConnectorState `json:"state,omitempty"`
	Error *string         `json:"error,omitempty"`
}

ConnectorStatusStatus struct for ConnectorStatusStatus

func NewConnectorStatusStatus added in v0.3.0

func NewConnectorStatusStatus() *ConnectorStatusStatus

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

func NewConnectorStatusStatusWithDefaults added in v0.3.0

func NewConnectorStatusStatusWithDefaults() *ConnectorStatusStatus

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

func (*ConnectorStatusStatus) GetError added in v0.3.0

func (o *ConnectorStatusStatus) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ConnectorStatusStatus) GetErrorOk added in v0.3.0

func (o *ConnectorStatusStatus) GetErrorOk() (*string, bool)

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

func (*ConnectorStatusStatus) GetState added in v0.3.0

func (o *ConnectorStatusStatus) GetState() ConnectorState

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

func (*ConnectorStatusStatus) GetStateOk added in v0.3.0

func (o *ConnectorStatusStatus) GetStateOk() (*ConnectorState, bool)

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

func (*ConnectorStatusStatus) HasError added in v0.3.0

func (o *ConnectorStatusStatus) HasError() bool

HasError returns a boolean if a field has been set.

func (*ConnectorStatusStatus) HasState added in v0.3.0

func (o *ConnectorStatusStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (ConnectorStatusStatus) MarshalJSON added in v0.3.0

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

func (*ConnectorStatusStatus) SetError added in v0.3.0

func (o *ConnectorStatusStatus) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ConnectorStatusStatus) SetState added in v0.3.0

func (o *ConnectorStatusStatus) SetState(v ConnectorState)

SetState gets a reference to the given ConnectorState and assigns it to the State field.

type ConnectorType

type ConnectorType struct {
	Id   *string `json:"id,omitempty"`
	Kind *string `json:"kind,omitempty"`
	Href *string `json:"href,omitempty"`
	// Name of the connector type.
	Name string `json:"name"`
	// Version of the connector type.
	Version string `json:"version"`
	// Channels of the connector type.
	Channels *[]Channel `json:"channels,omitempty"`
	// A description of the connector.
	Description *string `json:"description,omitempty"`
	// Connector type is deprecated and removed from the catalog.
	Deprecated *bool `json:"deprecated,omitempty"`
	// URL to an icon of the connector.
	IconHref *string `json:"icon_href,omitempty"`
	// Labels used to categorize the connector
	Labels *[]string `json:"labels,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
	// Ranking for featured connectors
	FeaturedRank *int32 `json:"featured_rank,omitempty"`
	// The capabilities supported by the connector
	Capabilities *[]string `json:"capabilities,omitempty"`
	// A json schema that can be used to validate a ConnectorRequest connector field.
	Schema map[string]interface{} `json:"schema"`
}

ConnectorType Represents a connector type supported by the API

func NewConnectorType

func NewConnectorType(name string, version string, schema map[string]interface{}) *ConnectorType

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

func NewConnectorTypeWithDefaults

func NewConnectorTypeWithDefaults() *ConnectorType

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

func (*ConnectorType) GetAnnotations added in v0.10.0

func (o *ConnectorType) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorType) GetAnnotationsOk added in v0.10.0

func (o *ConnectorType) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorType) GetCapabilities added in v0.8.0

func (o *ConnectorType) GetCapabilities() []string

GetCapabilities returns the Capabilities field value if set, zero value otherwise.

func (*ConnectorType) GetCapabilitiesOk added in v0.8.0

func (o *ConnectorType) GetCapabilitiesOk() (*[]string, bool)

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

func (*ConnectorType) GetChannels

func (o *ConnectorType) GetChannels() []Channel

GetChannels returns the Channels field value if set, zero value otherwise.

func (*ConnectorType) GetChannelsOk

func (o *ConnectorType) GetChannelsOk() (*[]Channel, bool)

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

func (*ConnectorType) GetDeprecated added in v0.12.0

func (o *ConnectorType) GetDeprecated() bool

GetDeprecated returns the Deprecated field value if set, zero value otherwise.

func (*ConnectorType) GetDeprecatedOk added in v0.12.0

func (o *ConnectorType) GetDeprecatedOk() (*bool, bool)

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

func (*ConnectorType) GetDescription

func (o *ConnectorType) GetDescription() string

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

func (*ConnectorType) GetDescriptionOk

func (o *ConnectorType) GetDescriptionOk() (*string, bool)

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

func (*ConnectorType) GetFeaturedRank added in v0.9.0

func (o *ConnectorType) GetFeaturedRank() int32

GetFeaturedRank returns the FeaturedRank field value if set, zero value otherwise.

func (*ConnectorType) GetFeaturedRankOk added in v0.9.0

func (o *ConnectorType) GetFeaturedRankOk() (*int32, bool)

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

func (*ConnectorType) GetHref

func (o *ConnectorType) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*ConnectorType) GetHrefOk

func (o *ConnectorType) GetHrefOk() (*string, bool)

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

func (*ConnectorType) GetIconHref

func (o *ConnectorType) GetIconHref() string

GetIconHref returns the IconHref field value if set, zero value otherwise.

func (*ConnectorType) GetIconHrefOk

func (o *ConnectorType) GetIconHrefOk() (*string, bool)

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

func (*ConnectorType) GetId

func (o *ConnectorType) GetId() string

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

func (*ConnectorType) GetIdOk

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

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

func (*ConnectorType) GetKind

func (o *ConnectorType) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ConnectorType) GetKindOk

func (o *ConnectorType) GetKindOk() (*string, bool)

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

func (*ConnectorType) GetLabels

func (o *ConnectorType) GetLabels() []string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*ConnectorType) GetLabelsOk

func (o *ConnectorType) GetLabelsOk() (*[]string, bool)

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

func (*ConnectorType) GetName

func (o *ConnectorType) GetName() string

GetName returns the Name field value

func (*ConnectorType) GetNameOk

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

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

func (*ConnectorType) GetSchema added in v0.8.0

func (o *ConnectorType) GetSchema() map[string]interface{}

GetSchema returns the Schema field value

func (*ConnectorType) GetSchemaOk added in v0.8.0

func (o *ConnectorType) GetSchemaOk() (*map[string]interface{}, bool)

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

func (*ConnectorType) GetVersion

func (o *ConnectorType) GetVersion() string

GetVersion returns the Version field value

func (*ConnectorType) GetVersionOk

func (o *ConnectorType) GetVersionOk() (*string, bool)

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

func (*ConnectorType) HasAnnotations added in v0.10.0

func (o *ConnectorType) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorType) HasCapabilities added in v0.8.0

func (o *ConnectorType) HasCapabilities() bool

HasCapabilities returns a boolean if a field has been set.

func (*ConnectorType) HasChannels

func (o *ConnectorType) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*ConnectorType) HasDeprecated added in v0.12.0

func (o *ConnectorType) HasDeprecated() bool

HasDeprecated returns a boolean if a field has been set.

func (*ConnectorType) HasDescription

func (o *ConnectorType) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ConnectorType) HasFeaturedRank added in v0.9.0

func (o *ConnectorType) HasFeaturedRank() bool

HasFeaturedRank returns a boolean if a field has been set.

func (*ConnectorType) HasHref

func (o *ConnectorType) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ConnectorType) HasIconHref

func (o *ConnectorType) HasIconHref() bool

HasIconHref returns a boolean if a field has been set.

func (*ConnectorType) HasId

func (o *ConnectorType) HasId() bool

HasId returns a boolean if a field has been set.

func (*ConnectorType) HasKind

func (o *ConnectorType) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ConnectorType) HasLabels

func (o *ConnectorType) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (ConnectorType) MarshalJSON

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

func (*ConnectorType) SetAnnotations added in v0.10.0

func (o *ConnectorType) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorType) SetCapabilities added in v0.8.0

func (o *ConnectorType) SetCapabilities(v []string)

SetCapabilities gets a reference to the given []string and assigns it to the Capabilities field.

func (*ConnectorType) SetChannels

func (o *ConnectorType) SetChannels(v []Channel)

SetChannels gets a reference to the given []Channel and assigns it to the Channels field.

func (*ConnectorType) SetDeprecated added in v0.12.0

func (o *ConnectorType) SetDeprecated(v bool)

SetDeprecated gets a reference to the given bool and assigns it to the Deprecated field.

func (*ConnectorType) SetDescription

func (o *ConnectorType) SetDescription(v string)

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

func (*ConnectorType) SetFeaturedRank added in v0.9.0

func (o *ConnectorType) SetFeaturedRank(v int32)

SetFeaturedRank gets a reference to the given int32 and assigns it to the FeaturedRank field.

func (*ConnectorType) SetHref

func (o *ConnectorType) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*ConnectorType) SetIconHref

func (o *ConnectorType) SetIconHref(v string)

SetIconHref gets a reference to the given string and assigns it to the IconHref field.

func (*ConnectorType) SetId

func (o *ConnectorType) SetId(v string)

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

func (*ConnectorType) SetKind

func (o *ConnectorType) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ConnectorType) SetLabels

func (o *ConnectorType) SetLabels(v []string)

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

func (*ConnectorType) SetName

func (o *ConnectorType) SetName(v string)

SetName sets field value

func (*ConnectorType) SetSchema added in v0.8.0

func (o *ConnectorType) SetSchema(v map[string]interface{})

SetSchema sets field value

func (*ConnectorType) SetVersion

func (o *ConnectorType) SetVersion(v string)

SetVersion sets field value

type ConnectorTypeAllOf

type ConnectorTypeAllOf struct {
	// Name of the connector type.
	Name *string `json:"name,omitempty"`
	// Version of the connector type.
	Version *string `json:"version,omitempty"`
	// Channels of the connector type.
	Channels *[]Channel `json:"channels,omitempty"`
	// A description of the connector.
	Description *string `json:"description,omitempty"`
	// Connector type is deprecated and removed from the catalog.
	Deprecated *bool `json:"deprecated,omitempty"`
	// URL to an icon of the connector.
	IconHref *string `json:"icon_href,omitempty"`
	// Labels used to categorize the connector
	Labels *[]string `json:"labels,omitempty"`
	// Name-value string annotations for resource
	Annotations *map[string]string `json:"annotations,omitempty"`
	// Ranking for featured connectors
	FeaturedRank *int32 `json:"featured_rank,omitempty"`
	// The capabilities supported by the connector
	Capabilities *[]string `json:"capabilities,omitempty"`
	// A json schema that can be used to validate a ConnectorRequest connector field.
	Schema *map[string]interface{} `json:"schema,omitempty"`
}

ConnectorTypeAllOf struct for ConnectorTypeAllOf

func NewConnectorTypeAllOf

func NewConnectorTypeAllOf() *ConnectorTypeAllOf

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

func NewConnectorTypeAllOfWithDefaults

func NewConnectorTypeAllOfWithDefaults() *ConnectorTypeAllOf

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

func (*ConnectorTypeAllOf) GetAnnotations added in v0.10.0

func (o *ConnectorTypeAllOf) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetAnnotationsOk added in v0.10.0

func (o *ConnectorTypeAllOf) GetAnnotationsOk() (*map[string]string, bool)

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

func (*ConnectorTypeAllOf) GetCapabilities added in v0.3.0

func (o *ConnectorTypeAllOf) GetCapabilities() []string

GetCapabilities returns the Capabilities field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetCapabilitiesOk added in v0.3.0

func (o *ConnectorTypeAllOf) GetCapabilitiesOk() (*[]string, bool)

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

func (*ConnectorTypeAllOf) GetChannels

func (o *ConnectorTypeAllOf) GetChannels() []Channel

GetChannels returns the Channels field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetChannelsOk

func (o *ConnectorTypeAllOf) GetChannelsOk() (*[]Channel, bool)

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

func (*ConnectorTypeAllOf) GetDeprecated added in v0.12.0

func (o *ConnectorTypeAllOf) GetDeprecated() bool

GetDeprecated returns the Deprecated field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetDeprecatedOk added in v0.12.0

func (o *ConnectorTypeAllOf) GetDeprecatedOk() (*bool, bool)

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

func (*ConnectorTypeAllOf) GetDescription

func (o *ConnectorTypeAllOf) GetDescription() string

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

func (*ConnectorTypeAllOf) GetDescriptionOk

func (o *ConnectorTypeAllOf) GetDescriptionOk() (*string, bool)

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

func (*ConnectorTypeAllOf) GetFeaturedRank added in v0.9.0

func (o *ConnectorTypeAllOf) GetFeaturedRank() int32

GetFeaturedRank returns the FeaturedRank field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetFeaturedRankOk added in v0.9.0

func (o *ConnectorTypeAllOf) GetFeaturedRankOk() (*int32, bool)

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

func (*ConnectorTypeAllOf) GetIconHref

func (o *ConnectorTypeAllOf) GetIconHref() string

GetIconHref returns the IconHref field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetIconHrefOk

func (o *ConnectorTypeAllOf) GetIconHrefOk() (*string, bool)

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

func (*ConnectorTypeAllOf) GetLabels

func (o *ConnectorTypeAllOf) GetLabels() []string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetLabelsOk

func (o *ConnectorTypeAllOf) GetLabelsOk() (*[]string, bool)

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

func (*ConnectorTypeAllOf) GetName

func (o *ConnectorTypeAllOf) GetName() string

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

func (*ConnectorTypeAllOf) GetNameOk

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

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

func (*ConnectorTypeAllOf) GetSchema added in v0.3.0

func (o *ConnectorTypeAllOf) GetSchema() map[string]interface{}

GetSchema returns the Schema field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetSchemaOk added in v0.3.0

func (o *ConnectorTypeAllOf) GetSchemaOk() (*map[string]interface{}, bool)

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

func (*ConnectorTypeAllOf) GetVersion

func (o *ConnectorTypeAllOf) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*ConnectorTypeAllOf) GetVersionOk

func (o *ConnectorTypeAllOf) GetVersionOk() (*string, bool)

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

func (*ConnectorTypeAllOf) HasAnnotations added in v0.10.0

func (o *ConnectorTypeAllOf) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasCapabilities added in v0.3.0

func (o *ConnectorTypeAllOf) HasCapabilities() bool

HasCapabilities returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasChannels

func (o *ConnectorTypeAllOf) HasChannels() bool

HasChannels returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasDeprecated added in v0.12.0

func (o *ConnectorTypeAllOf) HasDeprecated() bool

HasDeprecated returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasDescription

func (o *ConnectorTypeAllOf) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasFeaturedRank added in v0.9.0

func (o *ConnectorTypeAllOf) HasFeaturedRank() bool

HasFeaturedRank returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasIconHref

func (o *ConnectorTypeAllOf) HasIconHref() bool

HasIconHref returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasLabels

func (o *ConnectorTypeAllOf) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasName

func (o *ConnectorTypeAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasSchema added in v0.3.0

func (o *ConnectorTypeAllOf) HasSchema() bool

HasSchema returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasVersion

func (o *ConnectorTypeAllOf) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ConnectorTypeAllOf) MarshalJSON

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

func (*ConnectorTypeAllOf) SetAnnotations added in v0.10.0

func (o *ConnectorTypeAllOf) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*ConnectorTypeAllOf) SetCapabilities added in v0.3.0

func (o *ConnectorTypeAllOf) SetCapabilities(v []string)

SetCapabilities gets a reference to the given []string and assigns it to the Capabilities field.

func (*ConnectorTypeAllOf) SetChannels

func (o *ConnectorTypeAllOf) SetChannels(v []Channel)

SetChannels gets a reference to the given []Channel and assigns it to the Channels field.

func (*ConnectorTypeAllOf) SetDeprecated added in v0.12.0

func (o *ConnectorTypeAllOf) SetDeprecated(v bool)

SetDeprecated gets a reference to the given bool and assigns it to the Deprecated field.

func (*ConnectorTypeAllOf) SetDescription

func (o *ConnectorTypeAllOf) SetDescription(v string)

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

func (*ConnectorTypeAllOf) SetFeaturedRank added in v0.9.0

func (o *ConnectorTypeAllOf) SetFeaturedRank(v int32)

SetFeaturedRank gets a reference to the given int32 and assigns it to the FeaturedRank field.

func (*ConnectorTypeAllOf) SetIconHref

func (o *ConnectorTypeAllOf) SetIconHref(v string)

SetIconHref gets a reference to the given string and assigns it to the IconHref field.

func (*ConnectorTypeAllOf) SetLabels

func (o *ConnectorTypeAllOf) SetLabels(v []string)

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

func (*ConnectorTypeAllOf) SetName

func (o *ConnectorTypeAllOf) SetName(v string)

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

func (*ConnectorTypeAllOf) SetSchema added in v0.3.0

func (o *ConnectorTypeAllOf) SetSchema(v map[string]interface{})

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

func (*ConnectorTypeAllOf) SetVersion

func (o *ConnectorTypeAllOf) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type ConnectorTypeLabelCount added in v0.9.0

type ConnectorTypeLabelCount struct {
	// Name of the connector type label.
	Label string `json:"label"`
	// Number of connector types with this label.
	Count int32 `json:"count"`
}

ConnectorTypeLabelCount Represents a connector type label and the number of types with that label

func NewConnectorTypeLabelCount added in v0.9.0

func NewConnectorTypeLabelCount(label string, count int32) *ConnectorTypeLabelCount

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

func NewConnectorTypeLabelCountWithDefaults added in v0.9.0

func NewConnectorTypeLabelCountWithDefaults() *ConnectorTypeLabelCount

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

func (*ConnectorTypeLabelCount) GetCount added in v0.9.0

func (o *ConnectorTypeLabelCount) GetCount() int32

GetCount returns the Count field value

func (*ConnectorTypeLabelCount) GetCountOk added in v0.9.0

func (o *ConnectorTypeLabelCount) GetCountOk() (*int32, bool)

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

func (*ConnectorTypeLabelCount) GetLabel added in v0.9.0

func (o *ConnectorTypeLabelCount) GetLabel() string

GetLabel returns the Label field value

func (*ConnectorTypeLabelCount) GetLabelOk added in v0.9.0

func (o *ConnectorTypeLabelCount) GetLabelOk() (*string, bool)

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

func (ConnectorTypeLabelCount) MarshalJSON added in v0.9.0

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

func (*ConnectorTypeLabelCount) SetCount added in v0.9.0

func (o *ConnectorTypeLabelCount) SetCount(v int32)

SetCount sets field value

func (*ConnectorTypeLabelCount) SetLabel added in v0.9.0

func (o *ConnectorTypeLabelCount) SetLabel(v string)

SetLabel sets field value

type ConnectorTypeLabelCountList added in v0.9.0

type ConnectorTypeLabelCountList struct {
	Items *[]ConnectorTypeLabelCount `json:"items,omitempty"`
}

ConnectorTypeLabelCountList struct for ConnectorTypeLabelCountList

func NewConnectorTypeLabelCountList added in v0.9.0

func NewConnectorTypeLabelCountList() *ConnectorTypeLabelCountList

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

func NewConnectorTypeLabelCountListWithDefaults added in v0.9.0

func NewConnectorTypeLabelCountListWithDefaults() *ConnectorTypeLabelCountList

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

func (*ConnectorTypeLabelCountList) GetItems added in v0.9.0

GetItems returns the Items field value if set, zero value otherwise.

func (*ConnectorTypeLabelCountList) GetItemsOk added in v0.9.0

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

func (*ConnectorTypeLabelCountList) HasItems added in v0.9.0

func (o *ConnectorTypeLabelCountList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ConnectorTypeLabelCountList) MarshalJSON added in v0.9.0

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

func (*ConnectorTypeLabelCountList) SetItems added in v0.9.0

SetItems gets a reference to the given []ConnectorTypeLabelCount and assigns it to the Items field.

type ConnectorTypeList

type ConnectorTypeList struct {
	Kind  string          `json:"kind"`
	Page  int32           `json:"page"`
	Size  int32           `json:"size"`
	Total int32           `json:"total"`
	Items []ConnectorType `json:"items"`
}

ConnectorTypeList struct for ConnectorTypeList

func NewConnectorTypeList

func NewConnectorTypeList(kind string, page int32, size int32, total int32, items []ConnectorType) *ConnectorTypeList

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

func NewConnectorTypeListWithDefaults

func NewConnectorTypeListWithDefaults() *ConnectorTypeList

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

func (*ConnectorTypeList) GetItems

func (o *ConnectorTypeList) GetItems() []ConnectorType

GetItems returns the Items field value

func (*ConnectorTypeList) GetItemsOk

func (o *ConnectorTypeList) GetItemsOk() (*[]ConnectorType, bool)

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

func (*ConnectorTypeList) GetKind

func (o *ConnectorTypeList) GetKind() string

GetKind returns the Kind field value

func (*ConnectorTypeList) GetKindOk

func (o *ConnectorTypeList) GetKindOk() (*string, bool)

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

func (*ConnectorTypeList) GetPage

func (o *ConnectorTypeList) GetPage() int32

GetPage returns the Page field value

func (*ConnectorTypeList) GetPageOk

func (o *ConnectorTypeList) GetPageOk() (*int32, bool)

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

func (*ConnectorTypeList) GetSize

func (o *ConnectorTypeList) GetSize() int32

GetSize returns the Size field value

func (*ConnectorTypeList) GetSizeOk

func (o *ConnectorTypeList) GetSizeOk() (*int32, bool)

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

func (*ConnectorTypeList) GetTotal

func (o *ConnectorTypeList) GetTotal() int32

GetTotal returns the Total field value

func (*ConnectorTypeList) GetTotalOk

func (o *ConnectorTypeList) GetTotalOk() (*int32, bool)

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

func (ConnectorTypeList) MarshalJSON

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

func (*ConnectorTypeList) SetItems

func (o *ConnectorTypeList) SetItems(v []ConnectorType)

SetItems sets field value

func (*ConnectorTypeList) SetKind

func (o *ConnectorTypeList) SetKind(v string)

SetKind sets field value

func (*ConnectorTypeList) SetPage

func (o *ConnectorTypeList) SetPage(v int32)

SetPage sets field value

func (*ConnectorTypeList) SetSize

func (o *ConnectorTypeList) SetSize(v int32)

SetSize sets field value

func (*ConnectorTypeList) SetTotal

func (o *ConnectorTypeList) SetTotal(v int32)

SetTotal sets field value

type ConnectorTypeListAllOf

type ConnectorTypeListAllOf struct {
	Items *[]ConnectorType `json:"items,omitempty"`
}

ConnectorTypeListAllOf struct for ConnectorTypeListAllOf

func NewConnectorTypeListAllOf

func NewConnectorTypeListAllOf() *ConnectorTypeListAllOf

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

func NewConnectorTypeListAllOfWithDefaults

func NewConnectorTypeListAllOfWithDefaults() *ConnectorTypeListAllOf

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

func (*ConnectorTypeListAllOf) GetItems

func (o *ConnectorTypeListAllOf) GetItems() []ConnectorType

GetItems returns the Items field value if set, zero value otherwise.

func (*ConnectorTypeListAllOf) GetItemsOk

func (o *ConnectorTypeListAllOf) GetItemsOk() (*[]ConnectorType, bool)

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

func (*ConnectorTypeListAllOf) HasItems

func (o *ConnectorTypeListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ConnectorTypeListAllOf) MarshalJSON

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

func (*ConnectorTypeListAllOf) SetItems

func (o *ConnectorTypeListAllOf) SetItems(v []ConnectorType)

SetItems gets a reference to the given []ConnectorType and assigns it to the Items field.

type ConnectorTypesApi

type ConnectorTypesApi interface {

	/*
	 * GetConnectorTypeByID Get a connector type by id
	 * Get a connector type by id
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param connectorTypeId The id of the connector type
	 * @return ApiGetConnectorTypeByIDRequest
	 */
	GetConnectorTypeByID(ctx _context.Context, connectorTypeId string) ApiGetConnectorTypeByIDRequest

	/*
	 * GetConnectorTypeByIDExecute executes the request
	 * @return ConnectorType
	 */
	GetConnectorTypeByIDExecute(r ApiGetConnectorTypeByIDRequest) (ConnectorType, *_nethttp.Response, error)

	/*
	 * GetConnectorTypeLabels Returns a list of connector type labels
	 * Returns a list of connector type labels
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiGetConnectorTypeLabelsRequest
	 */
	GetConnectorTypeLabels(ctx _context.Context) ApiGetConnectorTypeLabelsRequest

	/*
	 * GetConnectorTypeLabelsExecute executes the request
	 * @return ConnectorTypeLabelCountList
	 */
	GetConnectorTypeLabelsExecute(r ApiGetConnectorTypeLabelsRequest) (ConnectorTypeLabelCountList, *_nethttp.Response, error)

	/*
	 * GetConnectorTypes Returns a list of connector types
	 * Returns a list of connector types
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiGetConnectorTypesRequest
	 */
	GetConnectorTypes(ctx _context.Context) ApiGetConnectorTypesRequest

	/*
	 * GetConnectorTypesExecute executes the request
	 * @return ConnectorTypeList
	 */
	GetConnectorTypesExecute(r ApiGetConnectorTypesRequest) (ConnectorTypeList, *_nethttp.Response, error)
}

type ConnectorTypesApiService

type ConnectorTypesApiService service

ConnectorTypesApiService ConnectorTypesApi service

func (*ConnectorTypesApiService) GetConnectorTypeByID

func (a *ConnectorTypesApiService) GetConnectorTypeByID(ctx _context.Context, connectorTypeId string) ApiGetConnectorTypeByIDRequest

* GetConnectorTypeByID Get a connector type by id * Get a connector type by id * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param connectorTypeId The id of the connector type * @return ApiGetConnectorTypeByIDRequest

func (*ConnectorTypesApiService) GetConnectorTypeByIDExecute

* Execute executes the request * @return ConnectorType

func (*ConnectorTypesApiService) GetConnectorTypeLabels added in v0.9.0

* GetConnectorTypeLabels Returns a list of connector type labels * Returns a list of connector type labels * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetConnectorTypeLabelsRequest

func (*ConnectorTypesApiService) GetConnectorTypeLabelsExecute added in v0.9.0

* Execute executes the request * @return ConnectorTypeLabelCountList

func (*ConnectorTypesApiService) GetConnectorTypes added in v0.3.0

* GetConnectorTypes Returns a list of connector types * Returns a list of connector types * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiGetConnectorTypesRequest

func (*ConnectorTypesApiService) GetConnectorTypesExecute added in v0.3.0

* Execute executes the request * @return ConnectorTypeList

type ConnectorsApi

type ConnectorsApi interface {

	/*
	 * CreateConnector Create a new connector
	 * Create a new connector
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiCreateConnectorRequest
	 */
	CreateConnector(ctx _context.Context) ApiCreateConnectorRequest

	/*
	 * CreateConnectorExecute executes the request
	 * @return Connector
	 */
	CreateConnectorExecute(r ApiCreateConnectorRequest) (Connector, *_nethttp.Response, error)

	/*
	 * DeleteConnector Delete a connector
	 * Delete a connector
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param id The ID of record
	 * @return ApiDeleteConnectorRequest
	 */
	DeleteConnector(ctx _context.Context, id string) ApiDeleteConnectorRequest

	/*
	 * DeleteConnectorExecute executes the request
	 * @return Error
	 */
	DeleteConnectorExecute(r ApiDeleteConnectorRequest) (Error, *_nethttp.Response, error)

	/*
	 * GetConnector Get a connector
	 * Get a connector
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param id The ID of record
	 * @return ApiGetConnectorRequest
	 */
	GetConnector(ctx _context.Context, id string) ApiGetConnectorRequest

	/*
	 * GetConnectorExecute executes the request
	 * @return Connector
	 */
	GetConnectorExecute(r ApiGetConnectorRequest) (Connector, *_nethttp.Response, error)

	/*
	 * ListConnectors Returns a list of connector types
	 * Returns a list of connector types
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiListConnectorsRequest
	 */
	ListConnectors(ctx _context.Context) ApiListConnectorsRequest

	/*
	 * ListConnectorsExecute executes the request
	 * @return ConnectorList
	 */
	ListConnectorsExecute(r ApiListConnectorsRequest) (ConnectorList, *_nethttp.Response, error)

	/*
	 * PatchConnector Patch a connector
	 * Patch a connector
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @param id The ID of record
	 * @return ApiPatchConnectorRequest
	 */
	PatchConnector(ctx _context.Context, id string) ApiPatchConnectorRequest

	/*
	 * PatchConnectorExecute executes the request
	 * @return Connector
	 */
	PatchConnectorExecute(r ApiPatchConnectorRequest) (Connector, *_nethttp.Response, error)
}

type ConnectorsApiService

type ConnectorsApiService service

ConnectorsApiService ConnectorsApi service

func (*ConnectorsApiService) CreateConnector

* CreateConnector Create a new connector * Create a new connector * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateConnectorRequest

func (*ConnectorsApiService) CreateConnectorExecute

* Execute executes the request * @return Connector

func (*ConnectorsApiService) DeleteConnector

* DeleteConnector Delete a connector * Delete a connector * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The ID of record * @return ApiDeleteConnectorRequest

func (*ConnectorsApiService) DeleteConnectorExecute

func (a *ConnectorsApiService) DeleteConnectorExecute(r ApiDeleteConnectorRequest) (Error, *_nethttp.Response, error)

* Execute executes the request * @return Error

func (*ConnectorsApiService) GetConnector

* GetConnector Get a connector * Get a connector * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The ID of record * @return ApiGetConnectorRequest

func (*ConnectorsApiService) GetConnectorExecute

* Execute executes the request * @return Connector

func (*ConnectorsApiService) ListConnectors

* ListConnectors Returns a list of connector types * Returns a list of connector types * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListConnectorsRequest

func (*ConnectorsApiService) ListConnectorsExecute

* Execute executes the request * @return ConnectorList

func (*ConnectorsApiService) PatchConnector

* PatchConnector Patch a connector * Patch a connector * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @param id The ID of record * @return ApiPatchConnectorRequest

func (*ConnectorsApiService) PatchConnectorExecute

* Execute executes the request * @return Connector

type Error

type Error struct {
	Reason      string  `json:"reason"`
	OperationId *string `json:"operation_id,omitempty"`
	Id          string  `json:"id"`
	Kind        string  `json:"kind"`
	Href        string  `json:"href"`
	Code        string  `json:"code"`
}

Error struct for Error

func NewError

func NewError(reason string, id string, kind string, href string, code string) *Error

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

func NewErrorWithDefaults

func NewErrorWithDefaults() *Error

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

func (*Error) GetCode

func (o *Error) GetCode() string

GetCode returns the Code field value

func (*Error) GetCodeOk

func (o *Error) GetCodeOk() (*string, bool)

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

func (*Error) GetHref

func (o *Error) GetHref() string

GetHref returns the Href field value

func (*Error) GetHrefOk

func (o *Error) GetHrefOk() (*string, bool)

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

func (*Error) GetId

func (o *Error) GetId() string

GetId returns the Id field value

func (*Error) GetIdOk

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

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

func (*Error) GetKind

func (o *Error) GetKind() string

GetKind returns the Kind field value

func (*Error) GetKindOk

func (o *Error) GetKindOk() (*string, bool)

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

func (*Error) GetOperationId

func (o *Error) GetOperationId() string

GetOperationId returns the OperationId field value if set, zero value otherwise.

func (*Error) GetOperationIdOk

func (o *Error) GetOperationIdOk() (*string, bool)

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

func (*Error) GetReason

func (o *Error) GetReason() string

GetReason returns the Reason field value

func (*Error) GetReasonOk

func (o *Error) GetReasonOk() (*string, bool)

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

func (*Error) HasOperationId

func (o *Error) HasOperationId() bool

HasOperationId returns a boolean if a field has been set.

func (Error) MarshalJSON

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

func (*Error) SetCode

func (o *Error) SetCode(v string)

SetCode sets field value

func (*Error) SetHref

func (o *Error) SetHref(v string)

SetHref sets field value

func (*Error) SetId

func (o *Error) SetId(v string)

SetId sets field value

func (*Error) SetKind

func (o *Error) SetKind(v string)

SetKind sets field value

func (*Error) SetOperationId

func (o *Error) SetOperationId(v string)

SetOperationId gets a reference to the given string and assigns it to the OperationId field.

func (*Error) SetReason

func (o *Error) SetReason(v string)

SetReason sets field value

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type KafkaConnectionSettings

type KafkaConnectionSettings struct {
	Id  string `json:"id"`
	Url string `json:"url"`
}

KafkaConnectionSettings Holds the configuration to connect to a Kafka Instance.

func NewKafkaConnectionSettings

func NewKafkaConnectionSettings(id string, url string) *KafkaConnectionSettings

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

func NewKafkaConnectionSettingsWithDefaults

func NewKafkaConnectionSettingsWithDefaults() *KafkaConnectionSettings

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

func (*KafkaConnectionSettings) GetId added in v0.3.0

func (o *KafkaConnectionSettings) GetId() string

GetId returns the Id field value

func (*KafkaConnectionSettings) GetIdOk added in v0.3.0

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

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

func (*KafkaConnectionSettings) GetUrl added in v0.3.0

func (o *KafkaConnectionSettings) GetUrl() string

GetUrl returns the Url field value

func (*KafkaConnectionSettings) GetUrlOk added in v0.3.0

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

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

func (KafkaConnectionSettings) MarshalJSON

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

func (*KafkaConnectionSettings) SetId added in v0.3.0

func (o *KafkaConnectionSettings) SetId(v string)

SetId sets field value

func (*KafkaConnectionSettings) SetUrl added in v0.3.0

func (o *KafkaConnectionSettings) SetUrl(v string)

SetUrl sets field value

type List

type List struct {
	Kind  string            `json:"kind"`
	Page  int32             `json:"page"`
	Size  int32             `json:"size"`
	Total int32             `json:"total"`
	Items []ObjectReference `json:"items"`
}

List struct for List

func NewList

func NewList(kind string, page int32, size int32, total int32, items []ObjectReference) *List

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

func NewListWithDefaults

func NewListWithDefaults() *List

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

func (*List) GetItems added in v0.9.0

func (o *List) GetItems() []ObjectReference

GetItems returns the Items field value

func (*List) GetItemsOk added in v0.9.0

func (o *List) GetItemsOk() (*[]ObjectReference, bool)

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

func (*List) GetKind

func (o *List) GetKind() string

GetKind returns the Kind field value

func (*List) GetKindOk

func (o *List) GetKindOk() (*string, bool)

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

func (*List) GetPage

func (o *List) GetPage() int32

GetPage returns the Page field value

func (*List) GetPageOk

func (o *List) GetPageOk() (*int32, bool)

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

func (*List) GetSize

func (o *List) GetSize() int32

GetSize returns the Size field value

func (*List) GetSizeOk

func (o *List) GetSizeOk() (*int32, bool)

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

func (*List) GetTotal

func (o *List) GetTotal() int32

GetTotal returns the Total field value

func (*List) GetTotalOk

func (o *List) GetTotalOk() (*int32, bool)

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

func (List) MarshalJSON

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

func (*List) SetItems added in v0.9.0

func (o *List) SetItems(v []ObjectReference)

SetItems sets field value

func (*List) SetKind

func (o *List) SetKind(v string)

SetKind sets field value

func (*List) SetPage

func (o *List) SetPage(v int32)

SetPage sets field value

func (*List) SetSize

func (o *List) SetSize(v int32)

SetSize sets field value

func (*List) SetTotal

func (o *List) SetTotal(v int32)

SetTotal sets field value

type NullableAddonParameter

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

func NewNullableAddonParameter

func NewNullableAddonParameter(val *AddonParameter) *NullableAddonParameter

func (NullableAddonParameter) Get

func (NullableAddonParameter) IsSet

func (v NullableAddonParameter) IsSet() bool

func (NullableAddonParameter) MarshalJSON

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

func (*NullableAddonParameter) Set

func (*NullableAddonParameter) UnmarshalJSON

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

func (*NullableAddonParameter) Unset

func (v *NullableAddonParameter) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableChannel added in v0.3.0

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

func NewNullableChannel added in v0.3.0

func NewNullableChannel(val *Channel) *NullableChannel

func (NullableChannel) Get added in v0.3.0

func (v NullableChannel) Get() *Channel

func (NullableChannel) IsSet added in v0.3.0

func (v NullableChannel) IsSet() bool

func (NullableChannel) MarshalJSON added in v0.3.0

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

func (*NullableChannel) Set added in v0.3.0

func (v *NullableChannel) Set(val *Channel)

func (*NullableChannel) UnmarshalJSON added in v0.3.0

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

func (*NullableChannel) Unset added in v0.3.0

func (v *NullableChannel) Unset()

type NullableConnector

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

func NewNullableConnector

func NewNullableConnector(val *Connector) *NullableConnector

func (NullableConnector) Get

func (v NullableConnector) Get() *Connector

func (NullableConnector) IsSet

func (v NullableConnector) IsSet() bool

func (NullableConnector) MarshalJSON

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

func (*NullableConnector) Set

func (v *NullableConnector) Set(val *Connector)

func (*NullableConnector) UnmarshalJSON

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

func (*NullableConnector) Unset

func (v *NullableConnector) Unset()

type NullableConnectorCluster

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

func NewNullableConnectorCluster

func NewNullableConnectorCluster(val *ConnectorCluster) *NullableConnectorCluster

func (NullableConnectorCluster) Get

func (NullableConnectorCluster) IsSet

func (v NullableConnectorCluster) IsSet() bool

func (NullableConnectorCluster) MarshalJSON

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

func (*NullableConnectorCluster) Set

func (*NullableConnectorCluster) UnmarshalJSON

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

func (*NullableConnectorCluster) Unset

func (v *NullableConnectorCluster) Unset()

type NullableConnectorClusterList

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

func NewNullableConnectorClusterList

func NewNullableConnectorClusterList(val *ConnectorClusterList) *NullableConnectorClusterList

func (NullableConnectorClusterList) Get

func (NullableConnectorClusterList) IsSet

func (NullableConnectorClusterList) MarshalJSON

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

func (*NullableConnectorClusterList) Set

func (*NullableConnectorClusterList) UnmarshalJSON

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

func (*NullableConnectorClusterList) Unset

func (v *NullableConnectorClusterList) Unset()

type NullableConnectorClusterListAllOf

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

func (NullableConnectorClusterListAllOf) Get

func (NullableConnectorClusterListAllOf) IsSet

func (NullableConnectorClusterListAllOf) MarshalJSON

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

func (*NullableConnectorClusterListAllOf) Set

func (*NullableConnectorClusterListAllOf) UnmarshalJSON

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

func (*NullableConnectorClusterListAllOf) Unset

type NullableConnectorClusterMeta added in v0.3.0

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

func NewNullableConnectorClusterMeta added in v0.3.0

func NewNullableConnectorClusterMeta(val *ConnectorClusterMeta) *NullableConnectorClusterMeta

func (NullableConnectorClusterMeta) Get added in v0.3.0

func (NullableConnectorClusterMeta) IsSet added in v0.3.0

func (NullableConnectorClusterMeta) MarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterMeta) Set added in v0.3.0

func (*NullableConnectorClusterMeta) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterMeta) Unset added in v0.3.0

func (v *NullableConnectorClusterMeta) Unset()

type NullableConnectorClusterRequest added in v0.3.0

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

func NewNullableConnectorClusterRequest added in v0.3.0

func NewNullableConnectorClusterRequest(val *ConnectorClusterRequest) *NullableConnectorClusterRequest

func (NullableConnectorClusterRequest) Get added in v0.3.0

func (NullableConnectorClusterRequest) IsSet added in v0.3.0

func (NullableConnectorClusterRequest) MarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterRequest) Set added in v0.3.0

func (*NullableConnectorClusterRequest) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterRequest) Unset added in v0.3.0

type NullableConnectorClusterRequestMeta added in v0.3.0

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

func NewNullableConnectorClusterRequestMeta added in v0.3.0

func NewNullableConnectorClusterRequestMeta(val *ConnectorClusterRequestMeta) *NullableConnectorClusterRequestMeta

func (NullableConnectorClusterRequestMeta) Get added in v0.3.0

func (NullableConnectorClusterRequestMeta) IsSet added in v0.3.0

func (NullableConnectorClusterRequestMeta) MarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterRequestMeta) Set added in v0.3.0

func (*NullableConnectorClusterRequestMeta) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterRequestMeta) Unset added in v0.3.0

type NullableConnectorClusterState added in v0.3.0

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

func NewNullableConnectorClusterState added in v0.3.0

func NewNullableConnectorClusterState(val *ConnectorClusterState) *NullableConnectorClusterState

func (NullableConnectorClusterState) Get added in v0.3.0

func (NullableConnectorClusterState) IsSet added in v0.3.0

func (NullableConnectorClusterState) MarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterState) Set added in v0.3.0

func (*NullableConnectorClusterState) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterState) Unset added in v0.3.0

func (v *NullableConnectorClusterState) Unset()

type NullableConnectorClusterStatus added in v0.3.0

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

func NewNullableConnectorClusterStatus added in v0.3.0

func NewNullableConnectorClusterStatus(val *ConnectorClusterStatus) *NullableConnectorClusterStatus

func (NullableConnectorClusterStatus) Get added in v0.3.0

func (NullableConnectorClusterStatus) IsSet added in v0.3.0

func (NullableConnectorClusterStatus) MarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterStatus) Set added in v0.3.0

func (*NullableConnectorClusterStatus) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterStatus) Unset added in v0.3.0

func (v *NullableConnectorClusterStatus) Unset()

type NullableConnectorClusterStatusStatus added in v0.3.0

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

func NewNullableConnectorClusterStatusStatus added in v0.3.0

func NewNullableConnectorClusterStatusStatus(val *ConnectorClusterStatusStatus) *NullableConnectorClusterStatusStatus

func (NullableConnectorClusterStatusStatus) Get added in v0.3.0

func (NullableConnectorClusterStatusStatus) IsSet added in v0.3.0

func (NullableConnectorClusterStatusStatus) MarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterStatusStatus) Set added in v0.3.0

func (*NullableConnectorClusterStatusStatus) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorClusterStatusStatus) Unset added in v0.3.0

type NullableConnectorConfiguration added in v0.3.0

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

func NewNullableConnectorConfiguration added in v0.3.0

func NewNullableConnectorConfiguration(val *ConnectorConfiguration) *NullableConnectorConfiguration

func (NullableConnectorConfiguration) Get added in v0.3.0

func (NullableConnectorConfiguration) IsSet added in v0.3.0

func (NullableConnectorConfiguration) MarshalJSON added in v0.3.0

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

func (*NullableConnectorConfiguration) Set added in v0.3.0

func (*NullableConnectorConfiguration) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorConfiguration) Unset added in v0.3.0

func (v *NullableConnectorConfiguration) Unset()

type NullableConnectorDesiredState added in v0.3.0

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

func NewNullableConnectorDesiredState added in v0.3.0

func NewNullableConnectorDesiredState(val *ConnectorDesiredState) *NullableConnectorDesiredState

func (NullableConnectorDesiredState) Get added in v0.3.0

func (NullableConnectorDesiredState) IsSet added in v0.3.0

func (NullableConnectorDesiredState) MarshalJSON added in v0.3.0

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

func (*NullableConnectorDesiredState) Set added in v0.3.0

func (*NullableConnectorDesiredState) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorDesiredState) Unset added in v0.3.0

func (v *NullableConnectorDesiredState) Unset()

type NullableConnectorList

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

func NewNullableConnectorList

func NewNullableConnectorList(val *ConnectorList) *NullableConnectorList

func (NullableConnectorList) Get

func (NullableConnectorList) IsSet

func (v NullableConnectorList) IsSet() bool

func (NullableConnectorList) MarshalJSON

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

func (*NullableConnectorList) Set

func (v *NullableConnectorList) Set(val *ConnectorList)

func (*NullableConnectorList) UnmarshalJSON

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

func (*NullableConnectorList) Unset

func (v *NullableConnectorList) Unset()

type NullableConnectorListAllOf

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

func NewNullableConnectorListAllOf

func NewNullableConnectorListAllOf(val *ConnectorListAllOf) *NullableConnectorListAllOf

func (NullableConnectorListAllOf) Get

func (NullableConnectorListAllOf) IsSet

func (v NullableConnectorListAllOf) IsSet() bool

func (NullableConnectorListAllOf) MarshalJSON

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

func (*NullableConnectorListAllOf) Set

func (*NullableConnectorListAllOf) UnmarshalJSON

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

func (*NullableConnectorListAllOf) Unset

func (v *NullableConnectorListAllOf) Unset()

type NullableConnectorMeta added in v0.3.0

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

func NewNullableConnectorMeta added in v0.3.0

func NewNullableConnectorMeta(val *ConnectorMeta) *NullableConnectorMeta

func (NullableConnectorMeta) Get added in v0.3.0

func (NullableConnectorMeta) IsSet added in v0.3.0

func (v NullableConnectorMeta) IsSet() bool

func (NullableConnectorMeta) MarshalJSON added in v0.3.0

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

func (*NullableConnectorMeta) Set added in v0.3.0

func (v *NullableConnectorMeta) Set(val *ConnectorMeta)

func (*NullableConnectorMeta) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorMeta) Unset added in v0.3.0

func (v *NullableConnectorMeta) Unset()

type NullableConnectorMetaAllOf added in v0.3.0

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

func NewNullableConnectorMetaAllOf added in v0.3.0

func NewNullableConnectorMetaAllOf(val *ConnectorMetaAllOf) *NullableConnectorMetaAllOf

func (NullableConnectorMetaAllOf) Get added in v0.3.0

func (NullableConnectorMetaAllOf) IsSet added in v0.3.0

func (v NullableConnectorMetaAllOf) IsSet() bool

func (NullableConnectorMetaAllOf) MarshalJSON added in v0.3.0

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

func (*NullableConnectorMetaAllOf) Set added in v0.3.0

func (*NullableConnectorMetaAllOf) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorMetaAllOf) Unset added in v0.3.0

func (v *NullableConnectorMetaAllOf) Unset()

type NullableConnectorNamespace added in v0.5.0

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

func NewNullableConnectorNamespace added in v0.5.0

func NewNullableConnectorNamespace(val *ConnectorNamespace) *NullableConnectorNamespace

func (NullableConnectorNamespace) Get added in v0.5.0

func (NullableConnectorNamespace) IsSet added in v0.5.0

func (v NullableConnectorNamespace) IsSet() bool

func (NullableConnectorNamespace) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespace) Set added in v0.5.0

func (*NullableConnectorNamespace) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespace) Unset added in v0.5.0

func (v *NullableConnectorNamespace) Unset()

type NullableConnectorNamespaceAllOf added in v0.5.0

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

func NewNullableConnectorNamespaceAllOf added in v0.5.0

func NewNullableConnectorNamespaceAllOf(val *ConnectorNamespaceAllOf) *NullableConnectorNamespaceAllOf

func (NullableConnectorNamespaceAllOf) Get added in v0.5.0

func (NullableConnectorNamespaceAllOf) IsSet added in v0.5.0

func (NullableConnectorNamespaceAllOf) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceAllOf) Set added in v0.5.0

func (*NullableConnectorNamespaceAllOf) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceAllOf) Unset added in v0.5.0

type NullableConnectorNamespaceEvalRequest added in v0.5.0

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

func NewNullableConnectorNamespaceEvalRequest added in v0.5.0

func NewNullableConnectorNamespaceEvalRequest(val *ConnectorNamespaceEvalRequest) *NullableConnectorNamespaceEvalRequest

func (NullableConnectorNamespaceEvalRequest) Get added in v0.5.0

func (NullableConnectorNamespaceEvalRequest) IsSet added in v0.5.0

func (NullableConnectorNamespaceEvalRequest) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceEvalRequest) Set added in v0.5.0

func (*NullableConnectorNamespaceEvalRequest) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceEvalRequest) Unset added in v0.5.0

type NullableConnectorNamespaceList added in v0.5.0

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

func NewNullableConnectorNamespaceList added in v0.5.0

func NewNullableConnectorNamespaceList(val *ConnectorNamespaceList) *NullableConnectorNamespaceList

func (NullableConnectorNamespaceList) Get added in v0.5.0

func (NullableConnectorNamespaceList) IsSet added in v0.5.0

func (NullableConnectorNamespaceList) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceList) Set added in v0.5.0

func (*NullableConnectorNamespaceList) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceList) Unset added in v0.5.0

func (v *NullableConnectorNamespaceList) Unset()

type NullableConnectorNamespaceListAllOf added in v0.5.0

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

func NewNullableConnectorNamespaceListAllOf added in v0.5.0

func NewNullableConnectorNamespaceListAllOf(val *ConnectorNamespaceListAllOf) *NullableConnectorNamespaceListAllOf

func (NullableConnectorNamespaceListAllOf) Get added in v0.5.0

func (NullableConnectorNamespaceListAllOf) IsSet added in v0.5.0

func (NullableConnectorNamespaceListAllOf) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceListAllOf) Set added in v0.5.0

func (*NullableConnectorNamespaceListAllOf) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceListAllOf) Unset added in v0.5.0

type NullableConnectorNamespaceMeta added in v0.5.0

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

func NewNullableConnectorNamespaceMeta added in v0.5.0

func NewNullableConnectorNamespaceMeta(val *ConnectorNamespaceMeta) *NullableConnectorNamespaceMeta

func (NullableConnectorNamespaceMeta) Get added in v0.5.0

func (NullableConnectorNamespaceMeta) IsSet added in v0.5.0

func (NullableConnectorNamespaceMeta) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceMeta) Set added in v0.5.0

func (*NullableConnectorNamespaceMeta) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceMeta) Unset added in v0.5.0

func (v *NullableConnectorNamespaceMeta) Unset()

type NullableConnectorNamespaceMetaAllOf added in v0.5.0

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

func NewNullableConnectorNamespaceMetaAllOf added in v0.5.0

func NewNullableConnectorNamespaceMetaAllOf(val *ConnectorNamespaceMetaAllOf) *NullableConnectorNamespaceMetaAllOf

func (NullableConnectorNamespaceMetaAllOf) Get added in v0.5.0

func (NullableConnectorNamespaceMetaAllOf) IsSet added in v0.5.0

func (NullableConnectorNamespaceMetaAllOf) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceMetaAllOf) Set added in v0.5.0

func (*NullableConnectorNamespaceMetaAllOf) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceMetaAllOf) Unset added in v0.5.0

type NullableConnectorNamespacePatchRequest added in v0.5.0

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

func NewNullableConnectorNamespacePatchRequest added in v0.5.0

func NewNullableConnectorNamespacePatchRequest(val *ConnectorNamespacePatchRequest) *NullableConnectorNamespacePatchRequest

func (NullableConnectorNamespacePatchRequest) Get added in v0.5.0

func (NullableConnectorNamespacePatchRequest) IsSet added in v0.5.0

func (NullableConnectorNamespacePatchRequest) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespacePatchRequest) Set added in v0.5.0

func (*NullableConnectorNamespacePatchRequest) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespacePatchRequest) Unset added in v0.5.0

type NullableConnectorNamespaceQuota added in v0.5.0

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

func NewNullableConnectorNamespaceQuota added in v0.5.0

func NewNullableConnectorNamespaceQuota(val *ConnectorNamespaceQuota) *NullableConnectorNamespaceQuota

func (NullableConnectorNamespaceQuota) Get added in v0.5.0

func (NullableConnectorNamespaceQuota) IsSet added in v0.5.0

func (NullableConnectorNamespaceQuota) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceQuota) Set added in v0.5.0

func (*NullableConnectorNamespaceQuota) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceQuota) Unset added in v0.5.0

type NullableConnectorNamespaceRequest added in v0.5.0

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

func NewNullableConnectorNamespaceRequest added in v0.5.0

func NewNullableConnectorNamespaceRequest(val *ConnectorNamespaceRequest) *NullableConnectorNamespaceRequest

func (NullableConnectorNamespaceRequest) Get added in v0.5.0

func (NullableConnectorNamespaceRequest) IsSet added in v0.5.0

func (NullableConnectorNamespaceRequest) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceRequest) Set added in v0.5.0

func (*NullableConnectorNamespaceRequest) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceRequest) Unset added in v0.5.0

type NullableConnectorNamespaceRequestAllOf added in v0.5.0

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

func NewNullableConnectorNamespaceRequestAllOf added in v0.5.0

func NewNullableConnectorNamespaceRequestAllOf(val *ConnectorNamespaceRequestAllOf) *NullableConnectorNamespaceRequestAllOf

func (NullableConnectorNamespaceRequestAllOf) Get added in v0.5.0

func (NullableConnectorNamespaceRequestAllOf) IsSet added in v0.5.0

func (NullableConnectorNamespaceRequestAllOf) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceRequestAllOf) Set added in v0.5.0

func (*NullableConnectorNamespaceRequestAllOf) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceRequestAllOf) Unset added in v0.5.0

type NullableConnectorNamespaceRequestMeta added in v0.5.0

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

func NewNullableConnectorNamespaceRequestMeta added in v0.5.0

func NewNullableConnectorNamespaceRequestMeta(val *ConnectorNamespaceRequestMeta) *NullableConnectorNamespaceRequestMeta

func (NullableConnectorNamespaceRequestMeta) Get added in v0.5.0

func (NullableConnectorNamespaceRequestMeta) IsSet added in v0.5.0

func (NullableConnectorNamespaceRequestMeta) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceRequestMeta) Set added in v0.5.0

func (*NullableConnectorNamespaceRequestMeta) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceRequestMeta) Unset added in v0.5.0

type NullableConnectorNamespaceState added in v0.5.0

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

func NewNullableConnectorNamespaceState added in v0.5.0

func NewNullableConnectorNamespaceState(val *ConnectorNamespaceState) *NullableConnectorNamespaceState

func (NullableConnectorNamespaceState) Get added in v0.5.0

func (NullableConnectorNamespaceState) IsSet added in v0.5.0

func (NullableConnectorNamespaceState) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceState) Set added in v0.5.0

func (*NullableConnectorNamespaceState) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceState) Unset added in v0.5.0

type NullableConnectorNamespaceStatus added in v0.5.0

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

func NewNullableConnectorNamespaceStatus added in v0.5.0

func NewNullableConnectorNamespaceStatus(val *ConnectorNamespaceStatus) *NullableConnectorNamespaceStatus

func (NullableConnectorNamespaceStatus) Get added in v0.5.0

func (NullableConnectorNamespaceStatus) IsSet added in v0.5.0

func (NullableConnectorNamespaceStatus) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceStatus) Set added in v0.5.0

func (*NullableConnectorNamespaceStatus) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceStatus) Unset added in v0.5.0

type NullableConnectorNamespaceTenant added in v0.5.0

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

func NewNullableConnectorNamespaceTenant added in v0.5.0

func NewNullableConnectorNamespaceTenant(val *ConnectorNamespaceTenant) *NullableConnectorNamespaceTenant

func (NullableConnectorNamespaceTenant) Get added in v0.5.0

func (NullableConnectorNamespaceTenant) IsSet added in v0.5.0

func (NullableConnectorNamespaceTenant) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceTenant) Set added in v0.5.0

func (*NullableConnectorNamespaceTenant) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceTenant) Unset added in v0.5.0

type NullableConnectorNamespaceTenantKind added in v0.5.0

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

func NewNullableConnectorNamespaceTenantKind added in v0.5.0

func NewNullableConnectorNamespaceTenantKind(val *ConnectorNamespaceTenantKind) *NullableConnectorNamespaceTenantKind

func (NullableConnectorNamespaceTenantKind) Get added in v0.5.0

func (NullableConnectorNamespaceTenantKind) IsSet added in v0.5.0

func (NullableConnectorNamespaceTenantKind) MarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceTenantKind) Set added in v0.5.0

func (*NullableConnectorNamespaceTenantKind) UnmarshalJSON added in v0.5.0

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

func (*NullableConnectorNamespaceTenantKind) Unset added in v0.5.0

type NullableConnectorRequest added in v0.3.0

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

func NewNullableConnectorRequest added in v0.3.0

func NewNullableConnectorRequest(val *ConnectorRequest) *NullableConnectorRequest

func (NullableConnectorRequest) Get added in v0.3.0

func (NullableConnectorRequest) IsSet added in v0.3.0

func (v NullableConnectorRequest) IsSet() bool

func (NullableConnectorRequest) MarshalJSON added in v0.3.0

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

func (*NullableConnectorRequest) Set added in v0.3.0

func (*NullableConnectorRequest) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorRequest) Unset added in v0.3.0

func (v *NullableConnectorRequest) Unset()

type NullableConnectorRequestMeta added in v0.3.0

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

func NewNullableConnectorRequestMeta added in v0.3.0

func NewNullableConnectorRequestMeta(val *ConnectorRequestMeta) *NullableConnectorRequestMeta

func (NullableConnectorRequestMeta) Get added in v0.3.0

func (NullableConnectorRequestMeta) IsSet added in v0.3.0

func (NullableConnectorRequestMeta) MarshalJSON added in v0.3.0

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

func (*NullableConnectorRequestMeta) Set added in v0.3.0

func (*NullableConnectorRequestMeta) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorRequestMeta) Unset added in v0.3.0

func (v *NullableConnectorRequestMeta) Unset()

type NullableConnectorState added in v0.3.0

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

func NewNullableConnectorState added in v0.3.0

func NewNullableConnectorState(val *ConnectorState) *NullableConnectorState

func (NullableConnectorState) Get added in v0.3.0

func (NullableConnectorState) IsSet added in v0.3.0

func (v NullableConnectorState) IsSet() bool

func (NullableConnectorState) MarshalJSON added in v0.3.0

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

func (*NullableConnectorState) Set added in v0.3.0

func (*NullableConnectorState) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorState) Unset added in v0.3.0

func (v *NullableConnectorState) Unset()

type NullableConnectorStatus added in v0.3.0

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

func NewNullableConnectorStatus added in v0.3.0

func NewNullableConnectorStatus(val *ConnectorStatus) *NullableConnectorStatus

func (NullableConnectorStatus) Get added in v0.3.0

func (NullableConnectorStatus) IsSet added in v0.3.0

func (v NullableConnectorStatus) IsSet() bool

func (NullableConnectorStatus) MarshalJSON added in v0.3.0

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

func (*NullableConnectorStatus) Set added in v0.3.0

func (*NullableConnectorStatus) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorStatus) Unset added in v0.3.0

func (v *NullableConnectorStatus) Unset()

type NullableConnectorStatusStatus added in v0.3.0

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

func NewNullableConnectorStatusStatus added in v0.3.0

func NewNullableConnectorStatusStatus(val *ConnectorStatusStatus) *NullableConnectorStatusStatus

func (NullableConnectorStatusStatus) Get added in v0.3.0

func (NullableConnectorStatusStatus) IsSet added in v0.3.0

func (NullableConnectorStatusStatus) MarshalJSON added in v0.3.0

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

func (*NullableConnectorStatusStatus) Set added in v0.3.0

func (*NullableConnectorStatusStatus) UnmarshalJSON added in v0.3.0

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

func (*NullableConnectorStatusStatus) Unset added in v0.3.0

func (v *NullableConnectorStatusStatus) Unset()

type NullableConnectorType

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

func NewNullableConnectorType

func NewNullableConnectorType(val *ConnectorType) *NullableConnectorType

func (NullableConnectorType) Get

func (NullableConnectorType) IsSet

func (v NullableConnectorType) IsSet() bool

func (NullableConnectorType) MarshalJSON

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

func (*NullableConnectorType) Set

func (v *NullableConnectorType) Set(val *ConnectorType)

func (*NullableConnectorType) UnmarshalJSON

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

func (*NullableConnectorType) Unset

func (v *NullableConnectorType) Unset()

type NullableConnectorTypeAllOf

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

func NewNullableConnectorTypeAllOf

func NewNullableConnectorTypeAllOf(val *ConnectorTypeAllOf) *NullableConnectorTypeAllOf

func (NullableConnectorTypeAllOf) Get

func (NullableConnectorTypeAllOf) IsSet

func (v NullableConnectorTypeAllOf) IsSet() bool

func (NullableConnectorTypeAllOf) MarshalJSON

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

func (*NullableConnectorTypeAllOf) Set

func (*NullableConnectorTypeAllOf) UnmarshalJSON

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

func (*NullableConnectorTypeAllOf) Unset

func (v *NullableConnectorTypeAllOf) Unset()

type NullableConnectorTypeLabelCount added in v0.9.0

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

func NewNullableConnectorTypeLabelCount added in v0.9.0

func NewNullableConnectorTypeLabelCount(val *ConnectorTypeLabelCount) *NullableConnectorTypeLabelCount

func (NullableConnectorTypeLabelCount) Get added in v0.9.0

func (NullableConnectorTypeLabelCount) IsSet added in v0.9.0

func (NullableConnectorTypeLabelCount) MarshalJSON added in v0.9.0

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

func (*NullableConnectorTypeLabelCount) Set added in v0.9.0

func (*NullableConnectorTypeLabelCount) UnmarshalJSON added in v0.9.0

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

func (*NullableConnectorTypeLabelCount) Unset added in v0.9.0

type NullableConnectorTypeLabelCountList added in v0.9.0

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

func NewNullableConnectorTypeLabelCountList added in v0.9.0

func NewNullableConnectorTypeLabelCountList(val *ConnectorTypeLabelCountList) *NullableConnectorTypeLabelCountList

func (NullableConnectorTypeLabelCountList) Get added in v0.9.0

func (NullableConnectorTypeLabelCountList) IsSet added in v0.9.0

func (NullableConnectorTypeLabelCountList) MarshalJSON added in v0.9.0

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

func (*NullableConnectorTypeLabelCountList) Set added in v0.9.0

func (*NullableConnectorTypeLabelCountList) UnmarshalJSON added in v0.9.0

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

func (*NullableConnectorTypeLabelCountList) Unset added in v0.9.0

type NullableConnectorTypeList

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

func NewNullableConnectorTypeList

func NewNullableConnectorTypeList(val *ConnectorTypeList) *NullableConnectorTypeList

func (NullableConnectorTypeList) Get

func (NullableConnectorTypeList) IsSet

func (v NullableConnectorTypeList) IsSet() bool

func (NullableConnectorTypeList) MarshalJSON

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

func (*NullableConnectorTypeList) Set

func (*NullableConnectorTypeList) UnmarshalJSON

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

func (*NullableConnectorTypeList) Unset

func (v *NullableConnectorTypeList) Unset()

type NullableConnectorTypeListAllOf

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

func (NullableConnectorTypeListAllOf) Get

func (NullableConnectorTypeListAllOf) IsSet

func (NullableConnectorTypeListAllOf) MarshalJSON

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

func (*NullableConnectorTypeListAllOf) Set

func (*NullableConnectorTypeListAllOf) UnmarshalJSON

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

func (*NullableConnectorTypeListAllOf) Unset

func (v *NullableConnectorTypeListAllOf) Unset()

type NullableError

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

func NewNullableError

func NewNullableError(val *Error) *NullableError

func (NullableError) Get

func (v NullableError) Get() *Error

func (NullableError) IsSet

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON

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

func (*NullableError) Set

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON

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

func (*NullableError) Unset

func (v *NullableError) Unset()

type 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 NullableKafkaConnectionSettings

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

func (NullableKafkaConnectionSettings) Get

func (NullableKafkaConnectionSettings) IsSet

func (NullableKafkaConnectionSettings) MarshalJSON

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

func (*NullableKafkaConnectionSettings) Set

func (*NullableKafkaConnectionSettings) UnmarshalJSON

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

func (*NullableKafkaConnectionSettings) Unset

type NullableList

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

func NewNullableList

func NewNullableList(val *List) *NullableList

func (NullableList) Get

func (v NullableList) Get() *List

func (NullableList) IsSet

func (v NullableList) IsSet() bool

func (NullableList) MarshalJSON

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

func (*NullableList) Set

func (v *NullableList) Set(val *List)

func (*NullableList) UnmarshalJSON

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

func (*NullableList) Unset

func (v *NullableList) Unset()

type NullableObjectMeta added in v0.3.0

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

func NewNullableObjectMeta added in v0.3.0

func NewNullableObjectMeta(val *ObjectMeta) *NullableObjectMeta

func (NullableObjectMeta) Get added in v0.3.0

func (v NullableObjectMeta) Get() *ObjectMeta

func (NullableObjectMeta) IsSet added in v0.3.0

func (v NullableObjectMeta) IsSet() bool

func (NullableObjectMeta) MarshalJSON added in v0.3.0

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

func (*NullableObjectMeta) Set added in v0.3.0

func (v *NullableObjectMeta) Set(val *ObjectMeta)

func (*NullableObjectMeta) UnmarshalJSON added in v0.3.0

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

func (*NullableObjectMeta) Unset added in v0.3.0

func (v *NullableObjectMeta) Unset()

type NullableObjectReference

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

func NewNullableObjectReference

func NewNullableObjectReference(val *ObjectReference) *NullableObjectReference

func (NullableObjectReference) Get

func (NullableObjectReference) IsSet

func (v NullableObjectReference) IsSet() bool

func (NullableObjectReference) MarshalJSON

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

func (*NullableObjectReference) Set

func (*NullableObjectReference) UnmarshalJSON

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

func (*NullableObjectReference) Unset

func (v *NullableObjectReference) Unset()

type NullableSchemaRegistryConnectionSettings added in v0.3.0

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

func NewNullableSchemaRegistryConnectionSettings added in v0.3.0

func NewNullableSchemaRegistryConnectionSettings(val *SchemaRegistryConnectionSettings) *NullableSchemaRegistryConnectionSettings

func (NullableSchemaRegistryConnectionSettings) Get added in v0.3.0

func (NullableSchemaRegistryConnectionSettings) IsSet added in v0.3.0

func (NullableSchemaRegistryConnectionSettings) MarshalJSON added in v0.3.0

func (*NullableSchemaRegistryConnectionSettings) Set added in v0.3.0

func (*NullableSchemaRegistryConnectionSettings) UnmarshalJSON added in v0.3.0

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

func (*NullableSchemaRegistryConnectionSettings) Unset added in v0.3.0

type NullableServiceAccount added in v0.3.0

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

func NewNullableServiceAccount added in v0.3.0

func NewNullableServiceAccount(val *ServiceAccount) *NullableServiceAccount

func (NullableServiceAccount) Get added in v0.3.0

func (NullableServiceAccount) IsSet added in v0.3.0

func (v NullableServiceAccount) IsSet() bool

func (NullableServiceAccount) MarshalJSON added in v0.3.0

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

func (*NullableServiceAccount) Set added in v0.3.0

func (*NullableServiceAccount) UnmarshalJSON added in v0.3.0

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

func (*NullableServiceAccount) Unset added in v0.3.0

func (v *NullableServiceAccount) Unset()

type NullableServiceConnectionSettings added in v0.3.0

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

func NewNullableServiceConnectionSettings added in v0.3.0

func NewNullableServiceConnectionSettings(val *ServiceConnectionSettings) *NullableServiceConnectionSettings

func (NullableServiceConnectionSettings) Get added in v0.3.0

func (NullableServiceConnectionSettings) IsSet added in v0.3.0

func (NullableServiceConnectionSettings) MarshalJSON added in v0.3.0

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

func (*NullableServiceConnectionSettings) Set added in v0.3.0

func (*NullableServiceConnectionSettings) UnmarshalJSON added in v0.3.0

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

func (*NullableServiceConnectionSettings) Unset added in v0.3.0

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 NullableVersionMetadata added in v0.3.0

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

func NewNullableVersionMetadata added in v0.3.0

func NewNullableVersionMetadata(val *VersionMetadata) *NullableVersionMetadata

func (NullableVersionMetadata) Get added in v0.3.0

func (NullableVersionMetadata) IsSet added in v0.3.0

func (v NullableVersionMetadata) IsSet() bool

func (NullableVersionMetadata) MarshalJSON added in v0.3.0

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

func (*NullableVersionMetadata) Set added in v0.3.0

func (*NullableVersionMetadata) UnmarshalJSON added in v0.3.0

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

func (*NullableVersionMetadata) Unset added in v0.3.0

func (v *NullableVersionMetadata) Unset()

type NullableVersionMetadataAllOf added in v0.3.0

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

func NewNullableVersionMetadataAllOf added in v0.3.0

func NewNullableVersionMetadataAllOf(val *VersionMetadataAllOf) *NullableVersionMetadataAllOf

func (NullableVersionMetadataAllOf) Get added in v0.3.0

func (NullableVersionMetadataAllOf) IsSet added in v0.3.0

func (NullableVersionMetadataAllOf) MarshalJSON added in v0.3.0

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

func (*NullableVersionMetadataAllOf) Set added in v0.3.0

func (*NullableVersionMetadataAllOf) UnmarshalJSON added in v0.3.0

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

func (*NullableVersionMetadataAllOf) Unset added in v0.3.0

func (v *NullableVersionMetadataAllOf) Unset()

type ObjectMeta added in v0.3.0

type ObjectMeta struct {
	Owner      *string    `json:"owner,omitempty"`
	CreatedAt  *time.Time `json:"created_at,omitempty"`
	ModifiedAt *time.Time `json:"modified_at,omitempty"`
}

ObjectMeta struct for ObjectMeta

func NewObjectMeta added in v0.3.0

func NewObjectMeta() *ObjectMeta

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

func NewObjectMetaWithDefaults added in v0.3.0

func NewObjectMetaWithDefaults() *ObjectMeta

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

func (*ObjectMeta) GetCreatedAt added in v0.3.0

func (o *ObjectMeta) GetCreatedAt() time.Time

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

func (*ObjectMeta) GetCreatedAtOk added in v0.3.0

func (o *ObjectMeta) GetCreatedAtOk() (*time.Time, bool)

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

func (*ObjectMeta) GetModifiedAt added in v0.3.0

func (o *ObjectMeta) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field value if set, zero value otherwise.

func (*ObjectMeta) GetModifiedAtOk added in v0.3.0

func (o *ObjectMeta) GetModifiedAtOk() (*time.Time, bool)

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

func (*ObjectMeta) GetOwner added in v0.3.0

func (o *ObjectMeta) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ObjectMeta) GetOwnerOk added in v0.3.0

func (o *ObjectMeta) GetOwnerOk() (*string, bool)

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

func (*ObjectMeta) HasCreatedAt added in v0.3.0

func (o *ObjectMeta) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ObjectMeta) HasModifiedAt added in v0.3.0

func (o *ObjectMeta) HasModifiedAt() bool

HasModifiedAt returns a boolean if a field has been set.

func (*ObjectMeta) HasOwner added in v0.3.0

func (o *ObjectMeta) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (ObjectMeta) MarshalJSON added in v0.3.0

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

func (*ObjectMeta) SetCreatedAt added in v0.3.0

func (o *ObjectMeta) SetCreatedAt(v time.Time)

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

func (*ObjectMeta) SetModifiedAt added in v0.3.0

func (o *ObjectMeta) SetModifiedAt(v time.Time)

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

func (*ObjectMeta) SetOwner added in v0.3.0

func (o *ObjectMeta) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

type ObjectReference

type ObjectReference struct {
	Id   *string `json:"id,omitempty"`
	Kind *string `json:"kind,omitempty"`
	Href *string `json:"href,omitempty"`
}

ObjectReference struct for ObjectReference

func NewObjectReference

func NewObjectReference() *ObjectReference

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

func NewObjectReferenceWithDefaults

func NewObjectReferenceWithDefaults() *ObjectReference

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

func (*ObjectReference) GetHref

func (o *ObjectReference) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*ObjectReference) GetHrefOk

func (o *ObjectReference) GetHrefOk() (*string, bool)

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

func (*ObjectReference) GetId

func (o *ObjectReference) GetId() string

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

func (*ObjectReference) GetIdOk

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

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

func (*ObjectReference) GetKind

func (o *ObjectReference) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ObjectReference) GetKindOk

func (o *ObjectReference) GetKindOk() (*string, bool)

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

func (*ObjectReference) HasHref

func (o *ObjectReference) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ObjectReference) HasId

func (o *ObjectReference) HasId() bool

HasId returns a boolean if a field has been set.

func (*ObjectReference) HasKind

func (o *ObjectReference) HasKind() bool

HasKind returns a boolean if a field has been set.

func (ObjectReference) MarshalJSON

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

func (*ObjectReference) SetHref

func (o *ObjectReference) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*ObjectReference) SetId

func (o *ObjectReference) SetId(v string)

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

func (*ObjectReference) SetKind

func (o *ObjectReference) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

type SchemaRegistryConnectionSettings added in v0.3.0

type SchemaRegistryConnectionSettings struct {
	Id  string `json:"id"`
	Url string `json:"url"`
}

SchemaRegistryConnectionSettings Holds the configuration to connect to a Schem Registry Instance.

func NewSchemaRegistryConnectionSettings added in v0.3.0

func NewSchemaRegistryConnectionSettings(id string, url string) *SchemaRegistryConnectionSettings

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

func NewSchemaRegistryConnectionSettingsWithDefaults added in v0.3.0

func NewSchemaRegistryConnectionSettingsWithDefaults() *SchemaRegistryConnectionSettings

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

func (*SchemaRegistryConnectionSettings) GetId added in v0.3.0

GetId returns the Id field value

func (*SchemaRegistryConnectionSettings) GetIdOk added in v0.3.0

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

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

func (*SchemaRegistryConnectionSettings) GetUrl added in v0.3.0

GetUrl returns the Url field value

func (*SchemaRegistryConnectionSettings) GetUrlOk added in v0.3.0

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

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

func (SchemaRegistryConnectionSettings) MarshalJSON added in v0.3.0

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

func (*SchemaRegistryConnectionSettings) SetId added in v0.3.0

SetId sets field value

func (*SchemaRegistryConnectionSettings) SetUrl added in v0.3.0

SetUrl sets field value

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceAccount added in v0.3.0

type ServiceAccount struct {
	ClientId     string `json:"client_id"`
	ClientSecret string `json:"client_secret"`
}

ServiceAccount struct for ServiceAccount

func NewServiceAccount added in v0.3.0

func NewServiceAccount(clientId string, clientSecret string) *ServiceAccount

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

func NewServiceAccountWithDefaults added in v0.3.0

func NewServiceAccountWithDefaults() *ServiceAccount

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

func (*ServiceAccount) GetClientId added in v0.3.0

func (o *ServiceAccount) GetClientId() string

GetClientId returns the ClientId field value

func (*ServiceAccount) GetClientIdOk added in v0.3.0

func (o *ServiceAccount) GetClientIdOk() (*string, bool)

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

func (*ServiceAccount) GetClientSecret added in v0.3.0

func (o *ServiceAccount) GetClientSecret() string

GetClientSecret returns the ClientSecret field value

func (*ServiceAccount) GetClientSecretOk added in v0.3.0

func (o *ServiceAccount) GetClientSecretOk() (*string, bool)

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

func (ServiceAccount) MarshalJSON added in v0.3.0

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

func (*ServiceAccount) SetClientId added in v0.3.0

func (o *ServiceAccount) SetClientId(v string)

SetClientId sets field value

func (*ServiceAccount) SetClientSecret added in v0.3.0

func (o *ServiceAccount) SetClientSecret(v string)

SetClientSecret sets field value

type ServiceConnectionSettings added in v0.3.0

type ServiceConnectionSettings struct {
	Id  string `json:"id"`
	Url string `json:"url"`
}

ServiceConnectionSettings struct for ServiceConnectionSettings

func NewServiceConnectionSettings added in v0.3.0

func NewServiceConnectionSettings(id string, url string) *ServiceConnectionSettings

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

func NewServiceConnectionSettingsWithDefaults added in v0.3.0

func NewServiceConnectionSettingsWithDefaults() *ServiceConnectionSettings

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

func (*ServiceConnectionSettings) GetId added in v0.3.0

func (o *ServiceConnectionSettings) GetId() string

GetId returns the Id field value

func (*ServiceConnectionSettings) GetIdOk added in v0.3.0

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

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

func (*ServiceConnectionSettings) GetUrl added in v0.3.0

func (o *ServiceConnectionSettings) GetUrl() string

GetUrl returns the Url field value

func (*ServiceConnectionSettings) GetUrlOk added in v0.3.0

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

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

func (ServiceConnectionSettings) MarshalJSON added in v0.3.0

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

func (*ServiceConnectionSettings) SetId added in v0.3.0

func (o *ServiceConnectionSettings) SetId(v string)

SetId sets field value

func (*ServiceConnectionSettings) SetUrl added in v0.3.0

func (o *ServiceConnectionSettings) SetUrl(v string)

SetUrl sets field value

type VersionMetadata added in v0.3.0

type VersionMetadata struct {
	Id          *string            `json:"id,omitempty"`
	Kind        *string            `json:"kind,omitempty"`
	Href        *string            `json:"href,omitempty"`
	Collections *[]ObjectReference `json:"collections,omitempty"`
}

VersionMetadata struct for VersionMetadata

func NewVersionMetadata added in v0.3.0

func NewVersionMetadata() *VersionMetadata

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

func NewVersionMetadataWithDefaults added in v0.3.0

func NewVersionMetadataWithDefaults() *VersionMetadata

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

func (*VersionMetadata) GetCollections added in v0.3.0

func (o *VersionMetadata) GetCollections() []ObjectReference

GetCollections returns the Collections field value if set, zero value otherwise.

func (*VersionMetadata) GetCollectionsOk added in v0.3.0

func (o *VersionMetadata) GetCollectionsOk() (*[]ObjectReference, bool)

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

func (*VersionMetadata) GetHref added in v0.3.0

func (o *VersionMetadata) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*VersionMetadata) GetHrefOk added in v0.3.0

func (o *VersionMetadata) GetHrefOk() (*string, bool)

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

func (*VersionMetadata) GetId added in v0.3.0

func (o *VersionMetadata) GetId() string

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

func (*VersionMetadata) GetIdOk added in v0.3.0

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

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

func (*VersionMetadata) GetKind added in v0.3.0

func (o *VersionMetadata) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*VersionMetadata) GetKindOk added in v0.3.0

func (o *VersionMetadata) GetKindOk() (*string, bool)

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

func (*VersionMetadata) HasCollections added in v0.3.0

func (o *VersionMetadata) HasCollections() bool

HasCollections returns a boolean if a field has been set.

func (*VersionMetadata) HasHref added in v0.3.0

func (o *VersionMetadata) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*VersionMetadata) HasId added in v0.3.0

func (o *VersionMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*VersionMetadata) HasKind added in v0.3.0

func (o *VersionMetadata) HasKind() bool

HasKind returns a boolean if a field has been set.

func (VersionMetadata) MarshalJSON added in v0.3.0

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

func (*VersionMetadata) SetCollections added in v0.3.0

func (o *VersionMetadata) SetCollections(v []ObjectReference)

SetCollections gets a reference to the given []ObjectReference and assigns it to the Collections field.

func (*VersionMetadata) SetHref added in v0.3.0

func (o *VersionMetadata) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*VersionMetadata) SetId added in v0.3.0

func (o *VersionMetadata) SetId(v string)

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

func (*VersionMetadata) SetKind added in v0.3.0

func (o *VersionMetadata) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

type VersionMetadataAllOf added in v0.3.0

type VersionMetadataAllOf struct {
	Collections *[]ObjectReference `json:"collections,omitempty"`
}

VersionMetadataAllOf struct for VersionMetadataAllOf

func NewVersionMetadataAllOf added in v0.3.0

func NewVersionMetadataAllOf() *VersionMetadataAllOf

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

func NewVersionMetadataAllOfWithDefaults added in v0.3.0

func NewVersionMetadataAllOfWithDefaults() *VersionMetadataAllOf

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

func (*VersionMetadataAllOf) GetCollections added in v0.3.0

func (o *VersionMetadataAllOf) GetCollections() []ObjectReference

GetCollections returns the Collections field value if set, zero value otherwise.

func (*VersionMetadataAllOf) GetCollectionsOk added in v0.3.0

func (o *VersionMetadataAllOf) GetCollectionsOk() (*[]ObjectReference, bool)

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

func (*VersionMetadataAllOf) HasCollections added in v0.3.0

func (o *VersionMetadataAllOf) HasCollections() bool

HasCollections returns a boolean if a field has been set.

func (VersionMetadataAllOf) MarshalJSON added in v0.3.0

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

func (*VersionMetadataAllOf) SetCollections added in v0.3.0

func (o *VersionMetadataAllOf) SetCollections(v []ObjectReference)

SetCollections gets a reference to the given []ObjectReference and assigns it to the Collections field.

Source Files

Jump to

Keyboard shortcuts

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