kasclient

package
v0.24.4-alpha1 Latest Latest
Warning

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

Go to latest
Published: May 19, 2021 License: Apache-2.0 Imports: 23 Imported by: 0

README

Go API client for kasclient

Kafka Service Fleet Manager is a Rest API to manage kafka instances and 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.0.1
  • 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 "./kasclient"

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
DefaultApi CreateKafka Post /api/managed-services-api/v1/kafkas Create a new kafka Request
DefaultApi CreateServiceAccount Post /api/managed-services-api/v1/serviceaccounts Create a service account
DefaultApi DeleteKafkaById Delete /api/managed-services-api/v1/kafkas/{id} Delete a kafka request by id
DefaultApi DeleteServiceAccount Delete /api/managed-services-api/v1/serviceaccounts/{id} Delete service account
DefaultApi GetKafkaById Get /api/managed-services-api/v1/kafkas/{id} Get a kafka request by id
DefaultApi GetMetricsByInstantQuery Get /api/managed-services-api/v1/kafkas/{id}/metrics/query Get metrics with instant query by kafka id.
DefaultApi GetMetricsByRangeQuery Get /api/managed-services-api/v1/kafkas/{id}/metrics/query_range Get metrics with timeseries range query by kafka id.
DefaultApi GetServiceAccountById Get /api/managed-services-api/v1/serviceaccounts/{id} get service account by id
DefaultApi ListCloudProviderRegions Get /api/managed-services-api/v1/cloud_providers/{id}/regions Retrieves the list of supported regions of the supported cloud provider.
DefaultApi ListCloudProviders Get /api/managed-services-api/v1/cloud_providers Retrieves the list of supported cloud providers.
DefaultApi ListKafkas Get /api/managed-services-api/v1/kafkas Returns a list of Kafka requests
DefaultApi ListServiceAccounts Get /api/managed-services-api/v1/serviceaccounts List service accounts
DefaultApi ResetServiceAccountCreds Post /api/managed-services-api/v1/serviceaccounts/{id}/reset-credentials reset credentials for the service account
DefaultApi ServiceStatus Get /api/managed-services-api/v1/status Retrieves the status of resources e.g whether we have reached maximum service capacity
DefaultApi VersionMetadata Get /api/managed-services-api/v1 Retrieves the version metadata

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

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

APIClient manages communication with the Kafka Service Fleet Manager API v0.0.1 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 APIResonse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

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

type ApiCreateKafkaRequest

type ApiCreateKafkaRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiCreateKafkaRequest) Async

func (ApiCreateKafkaRequest) Execute

func (ApiCreateKafkaRequest) KafkaRequestPayload

func (r ApiCreateKafkaRequest) KafkaRequestPayload(kafkaRequestPayload KafkaRequestPayload) ApiCreateKafkaRequest

type ApiCreateServiceAccountRequest

type ApiCreateServiceAccountRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiCreateServiceAccountRequest) Execute

func (ApiCreateServiceAccountRequest) ServiceAccountRequest

func (r ApiCreateServiceAccountRequest) ServiceAccountRequest(serviceAccountRequest ServiceAccountRequest) ApiCreateServiceAccountRequest

type ApiDeleteKafkaByIdRequest

type ApiDeleteKafkaByIdRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiDeleteKafkaByIdRequest) Async

func (ApiDeleteKafkaByIdRequest) Execute

type ApiDeleteServiceAccountRequest

type ApiDeleteServiceAccountRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiDeleteServiceAccountRequest) Execute

type ApiGetKafkaByIdRequest

type ApiGetKafkaByIdRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiGetKafkaByIdRequest) Execute

type ApiGetMetricsByInstantQueryRequest

type ApiGetMetricsByInstantQueryRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiGetMetricsByInstantQueryRequest) Execute

func (ApiGetMetricsByInstantQueryRequest) Filters

type ApiGetMetricsByRangeQueryRequest

type ApiGetMetricsByRangeQueryRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiGetMetricsByRangeQueryRequest) Duration

func (ApiGetMetricsByRangeQueryRequest) Execute

func (ApiGetMetricsByRangeQueryRequest) Filters

func (ApiGetMetricsByRangeQueryRequest) Interval

type ApiGetServiceAccountByIdRequest

type ApiGetServiceAccountByIdRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiGetServiceAccountByIdRequest) Execute

type ApiListCloudProviderRegionsRequest

type ApiListCloudProviderRegionsRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiListCloudProviderRegionsRequest) Execute

func (ApiListCloudProviderRegionsRequest) Page

func (ApiListCloudProviderRegionsRequest) Size

type ApiListCloudProvidersRequest

type ApiListCloudProvidersRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiListCloudProvidersRequest) Execute

func (ApiListCloudProvidersRequest) Page

func (ApiListCloudProvidersRequest) Size

type ApiListKafkasRequest

type ApiListKafkasRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiListKafkasRequest) Execute

func (ApiListKafkasRequest) OrderBy

func (ApiListKafkasRequest) Page

func (ApiListKafkasRequest) Search

func (ApiListKafkasRequest) Size

type ApiListServiceAccountsRequest

type ApiListServiceAccountsRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiListServiceAccountsRequest) Execute

type ApiResetServiceAccountCredsRequest

type ApiResetServiceAccountCredsRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiResetServiceAccountCredsRequest) Execute

type ApiServiceStatusRequest

type ApiServiceStatusRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiServiceStatusRequest) Execute

type ApiVersionMetadataRequest

type ApiVersionMetadataRequest struct {
	ApiService DefaultApi
	// contains filtered or unexported fields
}

func (ApiVersionMetadataRequest) 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 CloudProvider

type CloudProvider struct {
	// Indicates the type of this object. Will be 'CloudProvider' link.
	Kind *string `json:"kind,omitempty"`
	// Unique identifier of the object.
	Id *string `json:"id,omitempty"`
	// Name of the cloud provider for display purposes.
	DisplayName *string `json:"display_name,omitempty"`
	// Human friendly identifier of the cloud provider, for example `aws`.
	Name *string `json:"name,omitempty"`
	// Whether the cloud provider is enabled for deploying an OSD cluster.
	Enabled bool `json:"enabled"`
}

CloudProvider Cloud provider.

func NewCloudProvider

func NewCloudProvider(enabled bool) *CloudProvider

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

func NewCloudProviderWithDefaults

func NewCloudProviderWithDefaults() *CloudProvider

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

func (*CloudProvider) GetDisplayName

func (o *CloudProvider) GetDisplayName() string

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

func (*CloudProvider) GetDisplayNameOk

func (o *CloudProvider) GetDisplayNameOk() (*string, bool)

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

func (*CloudProvider) GetEnabled

func (o *CloudProvider) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*CloudProvider) GetEnabledOk

func (o *CloudProvider) GetEnabledOk() (*bool, bool)

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

func (*CloudProvider) GetId

func (o *CloudProvider) GetId() string

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

func (*CloudProvider) GetIdOk

func (o *CloudProvider) 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 (*CloudProvider) GetKind

func (o *CloudProvider) GetKind() string

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

func (*CloudProvider) GetKindOk

func (o *CloudProvider) 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 (*CloudProvider) GetName

func (o *CloudProvider) GetName() string

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

func (*CloudProvider) GetNameOk

func (o *CloudProvider) 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 (*CloudProvider) HasDisplayName

func (o *CloudProvider) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CloudProvider) HasId

func (o *CloudProvider) HasId() bool

HasId returns a boolean if a field has been set.

func (*CloudProvider) HasKind

func (o *CloudProvider) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*CloudProvider) HasName

func (o *CloudProvider) HasName() bool

HasName returns a boolean if a field has been set.

func (CloudProvider) MarshalJSON

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

func (*CloudProvider) SetDisplayName

func (o *CloudProvider) SetDisplayName(v string)

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

func (*CloudProvider) SetEnabled

func (o *CloudProvider) SetEnabled(v bool)

SetEnabled sets field value

func (*CloudProvider) SetId

func (o *CloudProvider) SetId(v string)

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

func (*CloudProvider) SetKind

func (o *CloudProvider) SetKind(v string)

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

func (*CloudProvider) SetName

func (o *CloudProvider) SetName(v string)

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

type CloudProviderList

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

CloudProviderList struct for CloudProviderList

func NewCloudProviderList

func NewCloudProviderList(kind string, page int32, size int32, total int32, items []CloudProvider) *CloudProviderList

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

func NewCloudProviderListWithDefaults

func NewCloudProviderListWithDefaults() *CloudProviderList

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

func (*CloudProviderList) GetItems

func (o *CloudProviderList) GetItems() []CloudProvider

GetItems returns the Items field value

func (*CloudProviderList) GetItemsOk

func (o *CloudProviderList) GetItemsOk() (*[]CloudProvider, bool)

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

func (*CloudProviderList) GetKind

func (o *CloudProviderList) GetKind() string

GetKind returns the Kind field value

func (*CloudProviderList) GetKindOk

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

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

func (*CloudProviderList) GetPage

func (o *CloudProviderList) GetPage() int32

GetPage returns the Page field value

func (*CloudProviderList) GetPageOk

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

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

func (*CloudProviderList) GetSize

func (o *CloudProviderList) GetSize() int32

GetSize returns the Size field value

func (*CloudProviderList) GetSizeOk

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

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

func (*CloudProviderList) GetTotal

func (o *CloudProviderList) GetTotal() int32

GetTotal returns the Total field value

func (*CloudProviderList) GetTotalOk

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

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

func (CloudProviderList) MarshalJSON

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

func (*CloudProviderList) SetItems

func (o *CloudProviderList) SetItems(v []CloudProvider)

SetItems sets field value

func (*CloudProviderList) SetKind

func (o *CloudProviderList) SetKind(v string)

SetKind sets field value

func (*CloudProviderList) SetPage

func (o *CloudProviderList) SetPage(v int32)

SetPage sets field value

func (*CloudProviderList) SetSize

func (o *CloudProviderList) SetSize(v int32)

SetSize sets field value

func (*CloudProviderList) SetTotal

func (o *CloudProviderList) SetTotal(v int32)

SetTotal sets field value

type CloudProviderListAllOf

type CloudProviderListAllOf struct {
	Items *[]CloudProvider `json:"items,omitempty"`
}

CloudProviderListAllOf struct for CloudProviderListAllOf

func NewCloudProviderListAllOf

func NewCloudProviderListAllOf() *CloudProviderListAllOf

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

func NewCloudProviderListAllOfWithDefaults

func NewCloudProviderListAllOfWithDefaults() *CloudProviderListAllOf

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

func (*CloudProviderListAllOf) GetItems

func (o *CloudProviderListAllOf) GetItems() []CloudProvider

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

func (*CloudProviderListAllOf) GetItemsOk

func (o *CloudProviderListAllOf) GetItemsOk() (*[]CloudProvider, 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 (*CloudProviderListAllOf) HasItems

func (o *CloudProviderListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (CloudProviderListAllOf) MarshalJSON

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

func (*CloudProviderListAllOf) SetItems

func (o *CloudProviderListAllOf) SetItems(v []CloudProvider)

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

type CloudRegion

type CloudRegion struct {
	// Indicates the type of this object. Will be 'CloudRegion'.
	Kind *string `json:"kind,omitempty"`
	// Unique identifier of the object.
	Id *string `json:"id,omitempty"`
	// Name of the region for display purposes, for example `N. Virginia`.
	DisplayName *string `json:"display_name,omitempty"`
	// Whether the region is enabled for deploying an OSD cluster.
	Enabled bool `json:"enabled"`
}

CloudRegion Description of a region of a cloud provider.

func NewCloudRegion

func NewCloudRegion(enabled bool) *CloudRegion

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

func NewCloudRegionWithDefaults

func NewCloudRegionWithDefaults() *CloudRegion

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

func (*CloudRegion) GetDisplayName

func (o *CloudRegion) GetDisplayName() string

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

func (*CloudRegion) GetDisplayNameOk

func (o *CloudRegion) GetDisplayNameOk() (*string, bool)

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

func (*CloudRegion) GetEnabled

func (o *CloudRegion) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*CloudRegion) GetEnabledOk

func (o *CloudRegion) GetEnabledOk() (*bool, bool)

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

func (*CloudRegion) GetId

func (o *CloudRegion) GetId() string

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

func (*CloudRegion) GetIdOk

func (o *CloudRegion) 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 (*CloudRegion) GetKind

func (o *CloudRegion) GetKind() string

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

func (*CloudRegion) GetKindOk

func (o *CloudRegion) 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 (*CloudRegion) HasDisplayName

func (o *CloudRegion) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CloudRegion) HasId

func (o *CloudRegion) HasId() bool

HasId returns a boolean if a field has been set.

func (*CloudRegion) HasKind

func (o *CloudRegion) HasKind() bool

HasKind returns a boolean if a field has been set.

func (CloudRegion) MarshalJSON

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

func (*CloudRegion) SetDisplayName

func (o *CloudRegion) SetDisplayName(v string)

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

func (*CloudRegion) SetEnabled

func (o *CloudRegion) SetEnabled(v bool)

SetEnabled sets field value

func (*CloudRegion) SetId

func (o *CloudRegion) SetId(v string)

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

func (*CloudRegion) SetKind

func (o *CloudRegion) SetKind(v string)

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

type CloudRegionList

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

CloudRegionList struct for CloudRegionList

func NewCloudRegionList

func NewCloudRegionList(kind string, page int32, size int32, total int32, items []CloudRegion) *CloudRegionList

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

func NewCloudRegionListWithDefaults

func NewCloudRegionListWithDefaults() *CloudRegionList

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

func (*CloudRegionList) GetItems

func (o *CloudRegionList) GetItems() []CloudRegion

GetItems returns the Items field value

func (*CloudRegionList) GetItemsOk

func (o *CloudRegionList) GetItemsOk() (*[]CloudRegion, bool)

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

func (*CloudRegionList) GetKind

func (o *CloudRegionList) GetKind() string

GetKind returns the Kind field value

func (*CloudRegionList) GetKindOk

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

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

func (*CloudRegionList) GetPage

func (o *CloudRegionList) GetPage() int32

GetPage returns the Page field value

func (*CloudRegionList) GetPageOk

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

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

func (*CloudRegionList) GetSize

func (o *CloudRegionList) GetSize() int32

GetSize returns the Size field value

func (*CloudRegionList) GetSizeOk

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

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

func (*CloudRegionList) GetTotal

func (o *CloudRegionList) GetTotal() int32

GetTotal returns the Total field value

func (*CloudRegionList) GetTotalOk

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

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

func (CloudRegionList) MarshalJSON

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

func (*CloudRegionList) SetItems

func (o *CloudRegionList) SetItems(v []CloudRegion)

SetItems sets field value

func (*CloudRegionList) SetKind

func (o *CloudRegionList) SetKind(v string)

SetKind sets field value

func (*CloudRegionList) SetPage

func (o *CloudRegionList) SetPage(v int32)

SetPage sets field value

func (*CloudRegionList) SetSize

func (o *CloudRegionList) SetSize(v int32)

SetSize sets field value

func (*CloudRegionList) SetTotal

func (o *CloudRegionList) SetTotal(v int32)

SetTotal sets field value

type CloudRegionListAllOf

type CloudRegionListAllOf struct {
	Items *[]CloudRegion `json:"items,omitempty"`
}

CloudRegionListAllOf struct for CloudRegionListAllOf

func NewCloudRegionListAllOf

func NewCloudRegionListAllOf() *CloudRegionListAllOf

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

func NewCloudRegionListAllOfWithDefaults

func NewCloudRegionListAllOfWithDefaults() *CloudRegionListAllOf

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

func (*CloudRegionListAllOf) GetItems

func (o *CloudRegionListAllOf) GetItems() []CloudRegion

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

func (*CloudRegionListAllOf) GetItemsOk

func (o *CloudRegionListAllOf) GetItemsOk() (*[]CloudRegion, 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 (*CloudRegionListAllOf) HasItems

func (o *CloudRegionListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (CloudRegionListAllOf) MarshalJSON

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

func (*CloudRegionListAllOf) SetItems

func (o *CloudRegionListAllOf) SetItems(v []CloudRegion)

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

type Configuration

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

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

ServerURLWithContext returns a new server URL given an endpoint

type Connector

type Connector struct {
	Id                 *string                           `json:"id,omitempty"`
	Kind               *string                           `json:"kind,omitempty"`
	Href               *string                           `json:"href,omitempty"`
	Metadata           *ConnectorAllOfMetadata           `json:"metadata,omitempty"`
	DeploymentLocation *ConnectorAllOfDeploymentLocation `json:"deployment_location,omitempty"`
	ConnectorTypeId    *string                           `json:"connector_type_id,omitempty"`
	ConnectorSpec      *map[string]interface{}           `json:"connector_spec,omitempty"`
	Status             *string                           `json:"status,omitempty"`
}

Connector A connector holds the configuration to connect a Kafka topic to another system.

func NewConnector

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

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

GetConnectorSpec returns the ConnectorSpec field value if set, zero value otherwise.

func (*Connector) GetConnectorSpecOk

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

GetConnectorSpecOk returns a tuple with the ConnectorSpec field value if set, nil otherwise 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 if set, zero value otherwise.

func (*Connector) GetConnectorTypeIdOk

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

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

func (*Connector) GetDeploymentLocation

func (o *Connector) GetDeploymentLocation() ConnectorAllOfDeploymentLocation

GetDeploymentLocation returns the DeploymentLocation field value if set, zero value otherwise.

func (*Connector) GetDeploymentLocationOk

func (o *Connector) GetDeploymentLocationOk() (*ConnectorAllOfDeploymentLocation, bool)

GetDeploymentLocationOk returns a tuple with the DeploymentLocation field value if set, nil otherwise 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) 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) GetMetadata

func (o *Connector) GetMetadata() ConnectorAllOfMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Connector) GetMetadataOk

func (o *Connector) GetMetadataOk() (*ConnectorAllOfMetadata, bool)

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

func (*Connector) GetStatus

func (o *Connector) GetStatus() string

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

func (*Connector) GetStatusOk

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

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

func (*Connector) HasConnectorSpec

func (o *Connector) HasConnectorSpec() bool

HasConnectorSpec returns a boolean if a field has been set.

func (*Connector) HasConnectorTypeId

func (o *Connector) HasConnectorTypeId() bool

HasConnectorTypeId returns a boolean if a field has been set.

func (*Connector) HasDeploymentLocation

func (o *Connector) HasDeploymentLocation() bool

HasDeploymentLocation 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) HasMetadata

func (o *Connector) HasMetadata() bool

HasMetadata 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) SetConnectorSpec

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

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

func (*Connector) SetConnectorTypeId

func (o *Connector) SetConnectorTypeId(v string)

SetConnectorTypeId gets a reference to the given string and assigns it to the ConnectorTypeId field.

func (*Connector) SetDeploymentLocation

func (o *Connector) SetDeploymentLocation(v ConnectorAllOfDeploymentLocation)

SetDeploymentLocation gets a reference to the given ConnectorAllOfDeploymentLocation and assigns it to the DeploymentLocation field.

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

func (o *Connector) SetKind(v string)

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

func (*Connector) SetMetadata

func (o *Connector) SetMetadata(v ConnectorAllOfMetadata)

SetMetadata gets a reference to the given ConnectorAllOfMetadata and assigns it to the Metadata field.

func (*Connector) SetStatus

func (o *Connector) SetStatus(v string)

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

type ConnectorAllOf

type ConnectorAllOf struct {
	Metadata           *ConnectorAllOfMetadata           `json:"metadata,omitempty"`
	DeploymentLocation *ConnectorAllOfDeploymentLocation `json:"deployment_location,omitempty"`
	ConnectorTypeId    *string                           `json:"connector_type_id,omitempty"`
	ConnectorSpec      *map[string]interface{}           `json:"connector_spec,omitempty"`
	Status             *string                           `json:"status,omitempty"`
}

ConnectorAllOf struct for ConnectorAllOf

func NewConnectorAllOf

func NewConnectorAllOf() *ConnectorAllOf

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

func NewConnectorAllOfWithDefaults

func NewConnectorAllOfWithDefaults() *ConnectorAllOf

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

func (*ConnectorAllOf) GetConnectorSpec

func (o *ConnectorAllOf) GetConnectorSpec() map[string]interface{}

GetConnectorSpec returns the ConnectorSpec field value if set, zero value otherwise.

func (*ConnectorAllOf) GetConnectorSpecOk

func (o *ConnectorAllOf) GetConnectorSpecOk() (*map[string]interface{}, bool)

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

func (*ConnectorAllOf) GetConnectorTypeId

func (o *ConnectorAllOf) GetConnectorTypeId() string

GetConnectorTypeId returns the ConnectorTypeId field value if set, zero value otherwise.

func (*ConnectorAllOf) GetConnectorTypeIdOk

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

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

func (*ConnectorAllOf) GetDeploymentLocation

func (o *ConnectorAllOf) GetDeploymentLocation() ConnectorAllOfDeploymentLocation

GetDeploymentLocation returns the DeploymentLocation field value if set, zero value otherwise.

func (*ConnectorAllOf) GetDeploymentLocationOk

func (o *ConnectorAllOf) GetDeploymentLocationOk() (*ConnectorAllOfDeploymentLocation, bool)

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

func (*ConnectorAllOf) GetMetadata

func (o *ConnectorAllOf) GetMetadata() ConnectorAllOfMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ConnectorAllOf) GetMetadataOk

func (o *ConnectorAllOf) GetMetadataOk() (*ConnectorAllOfMetadata, bool)

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

func (*ConnectorAllOf) GetStatus

func (o *ConnectorAllOf) GetStatus() string

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

func (*ConnectorAllOf) GetStatusOk

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

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

func (*ConnectorAllOf) HasConnectorSpec

func (o *ConnectorAllOf) HasConnectorSpec() bool

HasConnectorSpec returns a boolean if a field has been set.

func (*ConnectorAllOf) HasConnectorTypeId

func (o *ConnectorAllOf) HasConnectorTypeId() bool

HasConnectorTypeId returns a boolean if a field has been set.

func (*ConnectorAllOf) HasDeploymentLocation

func (o *ConnectorAllOf) HasDeploymentLocation() bool

HasDeploymentLocation returns a boolean if a field has been set.

func (*ConnectorAllOf) HasMetadata

func (o *ConnectorAllOf) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ConnectorAllOf) HasStatus

func (o *ConnectorAllOf) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ConnectorAllOf) MarshalJSON

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

func (*ConnectorAllOf) SetConnectorSpec

func (o *ConnectorAllOf) SetConnectorSpec(v map[string]interface{})

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

func (*ConnectorAllOf) SetConnectorTypeId

func (o *ConnectorAllOf) SetConnectorTypeId(v string)

SetConnectorTypeId gets a reference to the given string and assigns it to the ConnectorTypeId field.

func (*ConnectorAllOf) SetDeploymentLocation

func (o *ConnectorAllOf) SetDeploymentLocation(v ConnectorAllOfDeploymentLocation)

SetDeploymentLocation gets a reference to the given ConnectorAllOfDeploymentLocation and assigns it to the DeploymentLocation field.

func (*ConnectorAllOf) SetMetadata

func (o *ConnectorAllOf) SetMetadata(v ConnectorAllOfMetadata)

SetMetadata gets a reference to the given ConnectorAllOfMetadata and assigns it to the Metadata field.

func (*ConnectorAllOf) SetStatus

func (o *ConnectorAllOf) SetStatus(v string)

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

type ConnectorAllOfDeploymentLocation

type ConnectorAllOfDeploymentLocation struct {
	CloudProvider *string `json:"cloud_provider,omitempty"`
	MultiAz       *bool   `json:"multi_az,omitempty"`
	Region        *string `json:"region,omitempty"`
}

ConnectorAllOfDeploymentLocation struct for ConnectorAllOfDeploymentLocation

func NewConnectorAllOfDeploymentLocation

func NewConnectorAllOfDeploymentLocation() *ConnectorAllOfDeploymentLocation

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

func NewConnectorAllOfDeploymentLocationWithDefaults

func NewConnectorAllOfDeploymentLocationWithDefaults() *ConnectorAllOfDeploymentLocation

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

func (*ConnectorAllOfDeploymentLocation) GetCloudProvider

func (o *ConnectorAllOfDeploymentLocation) GetCloudProvider() string

GetCloudProvider returns the CloudProvider field value if set, zero value otherwise.

func (*ConnectorAllOfDeploymentLocation) GetCloudProviderOk

func (o *ConnectorAllOfDeploymentLocation) GetCloudProviderOk() (*string, bool)

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

func (*ConnectorAllOfDeploymentLocation) GetMultiAz

func (o *ConnectorAllOfDeploymentLocation) GetMultiAz() bool

GetMultiAz returns the MultiAz field value if set, zero value otherwise.

func (*ConnectorAllOfDeploymentLocation) GetMultiAzOk

func (o *ConnectorAllOfDeploymentLocation) GetMultiAzOk() (*bool, bool)

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

func (*ConnectorAllOfDeploymentLocation) GetRegion

GetRegion returns the Region field value if set, zero value otherwise.

func (*ConnectorAllOfDeploymentLocation) GetRegionOk

func (o *ConnectorAllOfDeploymentLocation) GetRegionOk() (*string, bool)

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

func (*ConnectorAllOfDeploymentLocation) HasCloudProvider

func (o *ConnectorAllOfDeploymentLocation) HasCloudProvider() bool

HasCloudProvider returns a boolean if a field has been set.

func (*ConnectorAllOfDeploymentLocation) HasMultiAz

func (o *ConnectorAllOfDeploymentLocation) HasMultiAz() bool

HasMultiAz returns a boolean if a field has been set.

func (*ConnectorAllOfDeploymentLocation) HasRegion

func (o *ConnectorAllOfDeploymentLocation) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (ConnectorAllOfDeploymentLocation) MarshalJSON

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

func (*ConnectorAllOfDeploymentLocation) SetCloudProvider

func (o *ConnectorAllOfDeploymentLocation) SetCloudProvider(v string)

SetCloudProvider gets a reference to the given string and assigns it to the CloudProvider field.

func (*ConnectorAllOfDeploymentLocation) SetMultiAz

func (o *ConnectorAllOfDeploymentLocation) SetMultiAz(v bool)

SetMultiAz gets a reference to the given bool and assigns it to the MultiAz field.

func (*ConnectorAllOfDeploymentLocation) SetRegion

func (o *ConnectorAllOfDeploymentLocation) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

type ConnectorAllOfMetadata

type ConnectorAllOfMetadata struct {
	KafkaId   *string    `json:"kafka_id,omitempty"`
	Owner     *string    `json:"owner,omitempty"`
	Name      *string    `json:"name,omitempty"`
	CreatedAt *time.Time `json:"created_at,omitempty"`
	UpdatedAt *time.Time `json:"updated_at,omitempty"`
}

ConnectorAllOfMetadata struct for ConnectorAllOfMetadata

func NewConnectorAllOfMetadata

func NewConnectorAllOfMetadata() *ConnectorAllOfMetadata

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

func NewConnectorAllOfMetadataWithDefaults

func NewConnectorAllOfMetadataWithDefaults() *ConnectorAllOfMetadata

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

func (*ConnectorAllOfMetadata) GetCreatedAt

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

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

func (*ConnectorAllOfMetadata) GetCreatedAtOk

func (o *ConnectorAllOfMetadata) 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 (*ConnectorAllOfMetadata) GetKafkaId

func (o *ConnectorAllOfMetadata) GetKafkaId() string

GetKafkaId returns the KafkaId field value if set, zero value otherwise.

func (*ConnectorAllOfMetadata) GetKafkaIdOk

func (o *ConnectorAllOfMetadata) GetKafkaIdOk() (*string, bool)

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

func (*ConnectorAllOfMetadata) GetName

func (o *ConnectorAllOfMetadata) GetName() string

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

func (*ConnectorAllOfMetadata) GetNameOk

func (o *ConnectorAllOfMetadata) 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 (*ConnectorAllOfMetadata) GetOwner

func (o *ConnectorAllOfMetadata) GetOwner() string

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

func (*ConnectorAllOfMetadata) GetOwnerOk

func (o *ConnectorAllOfMetadata) 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 (*ConnectorAllOfMetadata) GetUpdatedAt

func (o *ConnectorAllOfMetadata) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ConnectorAllOfMetadata) GetUpdatedAtOk

func (o *ConnectorAllOfMetadata) GetUpdatedAtOk() (*time.Time, bool)

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

func (*ConnectorAllOfMetadata) HasCreatedAt

func (o *ConnectorAllOfMetadata) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ConnectorAllOfMetadata) HasKafkaId

func (o *ConnectorAllOfMetadata) HasKafkaId() bool

HasKafkaId returns a boolean if a field has been set.

func (*ConnectorAllOfMetadata) HasName

func (o *ConnectorAllOfMetadata) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectorAllOfMetadata) HasOwner

func (o *ConnectorAllOfMetadata) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ConnectorAllOfMetadata) HasUpdatedAt

func (o *ConnectorAllOfMetadata) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ConnectorAllOfMetadata) MarshalJSON

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

func (*ConnectorAllOfMetadata) SetCreatedAt

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

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

func (*ConnectorAllOfMetadata) SetKafkaId

func (o *ConnectorAllOfMetadata) SetKafkaId(v string)

SetKafkaId gets a reference to the given string and assigns it to the KafkaId field.

func (*ConnectorAllOfMetadata) SetName

func (o *ConnectorAllOfMetadata) SetName(v string)

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

func (*ConnectorAllOfMetadata) SetOwner

func (o *ConnectorAllOfMetadata) SetOwner(v string)

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

func (*ConnectorAllOfMetadata) SetUpdatedAt

func (o *ConnectorAllOfMetadata) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

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 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"`
	// A description of the connector.
	Description *string `json:"description,omitempty"`
	// A json schema that can be used to validate a connectors connector_spec field.
	JsonSchema *map[string]interface{} `json:"json_schema,omitempty"`
}

ConnectorType Represents a connector type supported by the API

func NewConnectorType

func NewConnectorType(name string, version string) *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) 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) 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) 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) GetJsonSchema

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

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

func (*ConnectorType) GetJsonSchemaOk

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

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

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

func (o *ConnectorType) HasDescription() bool

HasDescription 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) HasId

func (o *ConnectorType) HasId() bool

HasId returns a boolean if a field has been set.

func (*ConnectorType) HasJsonSchema

func (o *ConnectorType) HasJsonSchema() bool

HasJsonSchema 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) MarshalJSON

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

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

func (o *ConnectorType) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href 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) SetJsonSchema

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

SetJsonSchema gets a reference to the given map[string]interface{} and assigns it to the JsonSchema 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) SetName

func (o *ConnectorType) SetName(v string)

SetName 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"`
	// A description of the connector.
	Description *string `json:"description,omitempty"`
	// A json schema that can be used to validate a connectors connector_spec field.
	JsonSchema *map[string]interface{} `json:"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) 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) GetJsonSchema

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

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

func (*ConnectorTypeAllOf) GetJsonSchemaOk

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

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

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

func (o *ConnectorTypeAllOf) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ConnectorTypeAllOf) HasJsonSchema

func (o *ConnectorTypeAllOf) HasJsonSchema() bool

HasJsonSchema 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) 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) SetDescription

func (o *ConnectorTypeAllOf) SetDescription(v string)

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

func (*ConnectorTypeAllOf) SetJsonSchema

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

SetJsonSchema gets a reference to the given map[string]interface{} and assigns it to the JsonSchema 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) SetVersion

func (o *ConnectorTypeAllOf) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version 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 DataPlaneClusterUpdateStatusRequest

type DataPlaneClusterUpdateStatusRequest struct {
	// The cluster data plane conditions
	Conditions *[]DataPlaneClusterUpdateStatusRequestConditions `json:"conditions,omitempty"`
	Total      *DataPlaneClusterUpdateStatusRequestTotal        `json:"total,omitempty"`
	Remaining  *DataPlaneClusterUpdateStatusRequestTotal        `json:"remaining,omitempty"`
	NodeInfo   *DataPlaneClusterUpdateStatusRequestNodeInfo     `json:"nodeInfo,omitempty"`
	ResizeInfo *DataPlaneClusterUpdateStatusRequestResizeInfo   `json:"resizeInfo,omitempty"`
}

DataPlaneClusterUpdateStatusRequest Schema for the request to update a data plane cluster's status

func NewDataPlaneClusterUpdateStatusRequest

func NewDataPlaneClusterUpdateStatusRequest() *DataPlaneClusterUpdateStatusRequest

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

func NewDataPlaneClusterUpdateStatusRequestWithDefaults

func NewDataPlaneClusterUpdateStatusRequestWithDefaults() *DataPlaneClusterUpdateStatusRequest

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

func (*DataPlaneClusterUpdateStatusRequest) GetConditions

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequest) GetConditionsOk

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

func (*DataPlaneClusterUpdateStatusRequest) GetNodeInfo

GetNodeInfo returns the NodeInfo field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequest) GetNodeInfoOk

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

func (*DataPlaneClusterUpdateStatusRequest) GetRemaining

GetRemaining returns the Remaining field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequest) GetRemainingOk

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

func (*DataPlaneClusterUpdateStatusRequest) GetResizeInfo

GetResizeInfo returns the ResizeInfo field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequest) GetResizeInfoOk

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

func (*DataPlaneClusterUpdateStatusRequest) GetTotal

GetTotal returns the Total field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequest) GetTotalOk

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

func (*DataPlaneClusterUpdateStatusRequest) HasConditions

func (o *DataPlaneClusterUpdateStatusRequest) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequest) HasNodeInfo

func (o *DataPlaneClusterUpdateStatusRequest) HasNodeInfo() bool

HasNodeInfo returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequest) HasRemaining

func (o *DataPlaneClusterUpdateStatusRequest) HasRemaining() bool

HasRemaining returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequest) HasResizeInfo

func (o *DataPlaneClusterUpdateStatusRequest) HasResizeInfo() bool

HasResizeInfo returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequest) HasTotal

HasTotal returns a boolean if a field has been set.

func (DataPlaneClusterUpdateStatusRequest) MarshalJSON

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

func (*DataPlaneClusterUpdateStatusRequest) SetConditions

SetConditions gets a reference to the given []DataPlaneClusterUpdateStatusRequestConditions and assigns it to the Conditions field.

func (*DataPlaneClusterUpdateStatusRequest) SetNodeInfo

SetNodeInfo gets a reference to the given DataPlaneClusterUpdateStatusRequestNodeInfo and assigns it to the NodeInfo field.

func (*DataPlaneClusterUpdateStatusRequest) SetRemaining

SetRemaining gets a reference to the given DataPlaneClusterUpdateStatusRequestTotal and assigns it to the Remaining field.

func (*DataPlaneClusterUpdateStatusRequest) SetResizeInfo

SetResizeInfo gets a reference to the given DataPlaneClusterUpdateStatusRequestResizeInfo and assigns it to the ResizeInfo field.

func (*DataPlaneClusterUpdateStatusRequest) SetTotal

SetTotal gets a reference to the given DataPlaneClusterUpdateStatusRequestTotal and assigns it to the Total field.

type DataPlaneClusterUpdateStatusRequestConditions

type DataPlaneClusterUpdateStatusRequestConditions struct {
	Type               *string `json:"type,omitempty"`
	Reason             *string `json:"reason,omitempty"`
	Message            *string `json:"message,omitempty"`
	Status             *string `json:"status,omitempty"`
	LastTransitionTime *string `json:"lastTransitionTime,omitempty"`
}

DataPlaneClusterUpdateStatusRequestConditions struct for DataPlaneClusterUpdateStatusRequestConditions

func NewDataPlaneClusterUpdateStatusRequestConditions

func NewDataPlaneClusterUpdateStatusRequestConditions() *DataPlaneClusterUpdateStatusRequestConditions

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

func NewDataPlaneClusterUpdateStatusRequestConditionsWithDefaults

func NewDataPlaneClusterUpdateStatusRequestConditionsWithDefaults() *DataPlaneClusterUpdateStatusRequestConditions

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

func (*DataPlaneClusterUpdateStatusRequestConditions) GetLastTransitionTime

func (o *DataPlaneClusterUpdateStatusRequestConditions) GetLastTransitionTime() string

GetLastTransitionTime returns the LastTransitionTime field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestConditions) GetLastTransitionTimeOk

func (o *DataPlaneClusterUpdateStatusRequestConditions) GetLastTransitionTimeOk() (*string, bool)

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

func (*DataPlaneClusterUpdateStatusRequestConditions) GetMessage

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

func (*DataPlaneClusterUpdateStatusRequestConditions) GetMessageOk

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

func (*DataPlaneClusterUpdateStatusRequestConditions) GetReason

GetReason returns the Reason field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestConditions) GetReasonOk

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

func (*DataPlaneClusterUpdateStatusRequestConditions) GetStatus

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

func (*DataPlaneClusterUpdateStatusRequestConditions) GetStatusOk

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 (*DataPlaneClusterUpdateStatusRequestConditions) GetType

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

func (*DataPlaneClusterUpdateStatusRequestConditions) GetTypeOk

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

func (*DataPlaneClusterUpdateStatusRequestConditions) HasLastTransitionTime

func (o *DataPlaneClusterUpdateStatusRequestConditions) HasLastTransitionTime() bool

HasLastTransitionTime returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestConditions) HasMessage

HasMessage returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestConditions) HasReason

HasReason returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestConditions) HasStatus

HasStatus returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestConditions) HasType

HasType returns a boolean if a field has been set.

func (DataPlaneClusterUpdateStatusRequestConditions) MarshalJSON

func (*DataPlaneClusterUpdateStatusRequestConditions) SetLastTransitionTime

func (o *DataPlaneClusterUpdateStatusRequestConditions) SetLastTransitionTime(v string)

SetLastTransitionTime gets a reference to the given string and assigns it to the LastTransitionTime field.

func (*DataPlaneClusterUpdateStatusRequestConditions) SetMessage

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

func (*DataPlaneClusterUpdateStatusRequestConditions) SetReason

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*DataPlaneClusterUpdateStatusRequestConditions) SetStatus

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

func (*DataPlaneClusterUpdateStatusRequestConditions) SetType

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

type DataPlaneClusterUpdateStatusRequestNodeInfo

type DataPlaneClusterUpdateStatusRequestNodeInfo struct {
	Ceiling                *int32 `json:"ceiling,omitempty"`
	Floor                  *int32 `json:"floor,omitempty"`
	Current                *int32 `json:"current,omitempty"`
	CurrentWorkLoadMinimum *int32 `json:"currentWorkLoadMinimum,omitempty"`
}

DataPlaneClusterUpdateStatusRequestNodeInfo struct for DataPlaneClusterUpdateStatusRequestNodeInfo

func NewDataPlaneClusterUpdateStatusRequestNodeInfo

func NewDataPlaneClusterUpdateStatusRequestNodeInfo() *DataPlaneClusterUpdateStatusRequestNodeInfo

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

func NewDataPlaneClusterUpdateStatusRequestNodeInfoWithDefaults

func NewDataPlaneClusterUpdateStatusRequestNodeInfoWithDefaults() *DataPlaneClusterUpdateStatusRequestNodeInfo

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

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) GetCeiling

GetCeiling returns the Ceiling field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) GetCeilingOk

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

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) GetCurrent

GetCurrent returns the Current field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) GetCurrentOk

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

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) GetCurrentWorkLoadMinimum

func (o *DataPlaneClusterUpdateStatusRequestNodeInfo) GetCurrentWorkLoadMinimum() int32

GetCurrentWorkLoadMinimum returns the CurrentWorkLoadMinimum field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) GetCurrentWorkLoadMinimumOk

func (o *DataPlaneClusterUpdateStatusRequestNodeInfo) GetCurrentWorkLoadMinimumOk() (*int32, bool)

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

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) GetFloor

GetFloor returns the Floor field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) GetFloorOk

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

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) HasCeiling

HasCeiling returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) HasCurrent

HasCurrent returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) HasCurrentWorkLoadMinimum

func (o *DataPlaneClusterUpdateStatusRequestNodeInfo) HasCurrentWorkLoadMinimum() bool

HasCurrentWorkLoadMinimum returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) HasFloor

HasFloor returns a boolean if a field has been set.

func (DataPlaneClusterUpdateStatusRequestNodeInfo) MarshalJSON

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) SetCeiling

SetCeiling gets a reference to the given int32 and assigns it to the Ceiling field.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) SetCurrent

SetCurrent gets a reference to the given int32 and assigns it to the Current field.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) SetCurrentWorkLoadMinimum

func (o *DataPlaneClusterUpdateStatusRequestNodeInfo) SetCurrentWorkLoadMinimum(v int32)

SetCurrentWorkLoadMinimum gets a reference to the given int32 and assigns it to the CurrentWorkLoadMinimum field.

func (*DataPlaneClusterUpdateStatusRequestNodeInfo) SetFloor

SetFloor gets a reference to the given int32 and assigns it to the Floor field.

type DataPlaneClusterUpdateStatusRequestResizeInfo

type DataPlaneClusterUpdateStatusRequestResizeInfo struct {
	NodeDelta *int32                                              `json:"nodeDelta,omitempty"`
	Delta     *DataPlaneClusterUpdateStatusRequestResizeInfoDelta `json:"delta,omitempty"`
}

DataPlaneClusterUpdateStatusRequestResizeInfo struct for DataPlaneClusterUpdateStatusRequestResizeInfo

func NewDataPlaneClusterUpdateStatusRequestResizeInfo

func NewDataPlaneClusterUpdateStatusRequestResizeInfo() *DataPlaneClusterUpdateStatusRequestResizeInfo

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

func NewDataPlaneClusterUpdateStatusRequestResizeInfoWithDefaults

func NewDataPlaneClusterUpdateStatusRequestResizeInfoWithDefaults() *DataPlaneClusterUpdateStatusRequestResizeInfo

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfo) GetDelta

GetDelta returns the Delta field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestResizeInfo) GetDeltaOk

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfo) GetNodeDelta

GetNodeDelta returns the NodeDelta field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestResizeInfo) GetNodeDeltaOk

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfo) HasDelta

HasDelta returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestResizeInfo) HasNodeDelta

HasNodeDelta returns a boolean if a field has been set.

func (DataPlaneClusterUpdateStatusRequestResizeInfo) MarshalJSON

func (*DataPlaneClusterUpdateStatusRequestResizeInfo) SetDelta

SetDelta gets a reference to the given DataPlaneClusterUpdateStatusRequestResizeInfoDelta and assigns it to the Delta field.

func (*DataPlaneClusterUpdateStatusRequestResizeInfo) SetNodeDelta

SetNodeDelta gets a reference to the given int32 and assigns it to the NodeDelta field.

type DataPlaneClusterUpdateStatusRequestResizeInfoDelta

type DataPlaneClusterUpdateStatusRequestResizeInfoDelta struct {
	IngressEgressThroughputPerSec *string `json:"ingressEgressThroughputPerSec,omitempty"`
	Connections                   *int32  `json:"connections,omitempty"`
	DataRetentionSize             *string `json:"dataRetentionSize,omitempty"`
	MaxPartitions                 *int32  `json:"maxPartitions,omitempty"`
}

DataPlaneClusterUpdateStatusRequestResizeInfoDelta struct for DataPlaneClusterUpdateStatusRequestResizeInfoDelta

func NewDataPlaneClusterUpdateStatusRequestResizeInfoDelta

func NewDataPlaneClusterUpdateStatusRequestResizeInfoDelta() *DataPlaneClusterUpdateStatusRequestResizeInfoDelta

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

func NewDataPlaneClusterUpdateStatusRequestResizeInfoDeltaWithDefaults

func NewDataPlaneClusterUpdateStatusRequestResizeInfoDeltaWithDefaults() *DataPlaneClusterUpdateStatusRequestResizeInfoDelta

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetConnections

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetConnectionsOk

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetDataRetentionSize

GetDataRetentionSize returns the DataRetentionSize field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetDataRetentionSizeOk

func (o *DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetDataRetentionSizeOk() (*string, bool)

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetIngressEgressThroughputPerSec

func (o *DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetIngressEgressThroughputPerSec() string

GetIngressEgressThroughputPerSec returns the IngressEgressThroughputPerSec field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetIngressEgressThroughputPerSecOk

func (o *DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetIngressEgressThroughputPerSecOk() (*string, bool)

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetMaxPartitions

GetMaxPartitions returns the MaxPartitions field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) GetMaxPartitionsOk

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

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) HasConnections

HasConnections returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) HasDataRetentionSize

func (o *DataPlaneClusterUpdateStatusRequestResizeInfoDelta) HasDataRetentionSize() bool

HasDataRetentionSize returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) HasIngressEgressThroughputPerSec

func (o *DataPlaneClusterUpdateStatusRequestResizeInfoDelta) HasIngressEgressThroughputPerSec() bool

HasIngressEgressThroughputPerSec returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) HasMaxPartitions

HasMaxPartitions returns a boolean if a field has been set.

func (DataPlaneClusterUpdateStatusRequestResizeInfoDelta) MarshalJSON

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) SetConnections

SetConnections gets a reference to the given int32 and assigns it to the Connections field.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) SetDataRetentionSize

SetDataRetentionSize gets a reference to the given string and assigns it to the DataRetentionSize field.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) SetIngressEgressThroughputPerSec

func (o *DataPlaneClusterUpdateStatusRequestResizeInfoDelta) SetIngressEgressThroughputPerSec(v string)

SetIngressEgressThroughputPerSec gets a reference to the given string and assigns it to the IngressEgressThroughputPerSec field.

func (*DataPlaneClusterUpdateStatusRequestResizeInfoDelta) SetMaxPartitions

SetMaxPartitions gets a reference to the given int32 and assigns it to the MaxPartitions field.

type DataPlaneClusterUpdateStatusRequestTotal

type DataPlaneClusterUpdateStatusRequestTotal struct {
	IngressEgressThroughputPerSec *string `json:"ingressEgressThroughputPerSec,omitempty"`
	Connections                   *int32  `json:"connections,omitempty"`
	DataRetentionSize             *string `json:"dataRetentionSize,omitempty"`
	Partitions                    *int32  `json:"partitions,omitempty"`
}

DataPlaneClusterUpdateStatusRequestTotal struct for DataPlaneClusterUpdateStatusRequestTotal

func NewDataPlaneClusterUpdateStatusRequestTotal

func NewDataPlaneClusterUpdateStatusRequestTotal() *DataPlaneClusterUpdateStatusRequestTotal

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

func NewDataPlaneClusterUpdateStatusRequestTotalWithDefaults

func NewDataPlaneClusterUpdateStatusRequestTotalWithDefaults() *DataPlaneClusterUpdateStatusRequestTotal

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

func (*DataPlaneClusterUpdateStatusRequestTotal) GetConnections

func (o *DataPlaneClusterUpdateStatusRequestTotal) GetConnections() int32

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

func (*DataPlaneClusterUpdateStatusRequestTotal) GetConnectionsOk

func (o *DataPlaneClusterUpdateStatusRequestTotal) GetConnectionsOk() (*int32, bool)

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

func (*DataPlaneClusterUpdateStatusRequestTotal) GetDataRetentionSize

func (o *DataPlaneClusterUpdateStatusRequestTotal) GetDataRetentionSize() string

GetDataRetentionSize returns the DataRetentionSize field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestTotal) GetDataRetentionSizeOk

func (o *DataPlaneClusterUpdateStatusRequestTotal) GetDataRetentionSizeOk() (*string, bool)

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

func (*DataPlaneClusterUpdateStatusRequestTotal) GetIngressEgressThroughputPerSec

func (o *DataPlaneClusterUpdateStatusRequestTotal) GetIngressEgressThroughputPerSec() string

GetIngressEgressThroughputPerSec returns the IngressEgressThroughputPerSec field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestTotal) GetIngressEgressThroughputPerSecOk

func (o *DataPlaneClusterUpdateStatusRequestTotal) GetIngressEgressThroughputPerSecOk() (*string, bool)

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

func (*DataPlaneClusterUpdateStatusRequestTotal) GetPartitions

GetPartitions returns the Partitions field value if set, zero value otherwise.

func (*DataPlaneClusterUpdateStatusRequestTotal) GetPartitionsOk

func (o *DataPlaneClusterUpdateStatusRequestTotal) GetPartitionsOk() (*int32, bool)

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

func (*DataPlaneClusterUpdateStatusRequestTotal) HasConnections

func (o *DataPlaneClusterUpdateStatusRequestTotal) HasConnections() bool

HasConnections returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestTotal) HasDataRetentionSize

func (o *DataPlaneClusterUpdateStatusRequestTotal) HasDataRetentionSize() bool

HasDataRetentionSize returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestTotal) HasIngressEgressThroughputPerSec

func (o *DataPlaneClusterUpdateStatusRequestTotal) HasIngressEgressThroughputPerSec() bool

HasIngressEgressThroughputPerSec returns a boolean if a field has been set.

func (*DataPlaneClusterUpdateStatusRequestTotal) HasPartitions

HasPartitions returns a boolean if a field has been set.

func (DataPlaneClusterUpdateStatusRequestTotal) MarshalJSON

func (*DataPlaneClusterUpdateStatusRequestTotal) SetConnections

func (o *DataPlaneClusterUpdateStatusRequestTotal) SetConnections(v int32)

SetConnections gets a reference to the given int32 and assigns it to the Connections field.

func (*DataPlaneClusterUpdateStatusRequestTotal) SetDataRetentionSize

func (o *DataPlaneClusterUpdateStatusRequestTotal) SetDataRetentionSize(v string)

SetDataRetentionSize gets a reference to the given string and assigns it to the DataRetentionSize field.

func (*DataPlaneClusterUpdateStatusRequestTotal) SetIngressEgressThroughputPerSec

func (o *DataPlaneClusterUpdateStatusRequestTotal) SetIngressEgressThroughputPerSec(v string)

SetIngressEgressThroughputPerSec gets a reference to the given string and assigns it to the IngressEgressThroughputPerSec field.

func (*DataPlaneClusterUpdateStatusRequestTotal) SetPartitions

func (o *DataPlaneClusterUpdateStatusRequestTotal) SetPartitions(v int32)

SetPartitions gets a reference to the given int32 and assigns it to the Partitions field.

type DefaultApi

type DefaultApi interface {

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

	/*
	 * CreateKafkaExecute executes the request
	 * @return KafkaRequest
	 */
	CreateKafkaExecute(r ApiCreateKafkaRequest) (KafkaRequest, *_nethttp.Response, error)

	/*
	 * CreateServiceAccount Create a service account
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiCreateServiceAccountRequest
	 */
	CreateServiceAccount(ctx _context.Context) ApiCreateServiceAccountRequest

	/*
	 * CreateServiceAccountExecute executes the request
	 * @return ServiceAccount
	 */
	CreateServiceAccountExecute(r ApiCreateServiceAccountRequest) (ServiceAccount, *_nethttp.Response, error)

	/*
	 * DeleteKafkaById Delete a kafka request by id
	 * @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 ApiDeleteKafkaByIdRequest
	 */
	DeleteKafkaById(ctx _context.Context, id string) ApiDeleteKafkaByIdRequest

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

	/*
	 * DeleteServiceAccount Delete service account
	 * @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 ApiDeleteServiceAccountRequest
	 */
	DeleteServiceAccount(ctx _context.Context, id string) ApiDeleteServiceAccountRequest

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

	/*
	 * GetKafkaById Get a kafka request by id
	 * @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 ApiGetKafkaByIdRequest
	 */
	GetKafkaById(ctx _context.Context, id string) ApiGetKafkaByIdRequest

	/*
	 * GetKafkaByIdExecute executes the request
	 * @return KafkaRequest
	 */
	GetKafkaByIdExecute(r ApiGetKafkaByIdRequest) (KafkaRequest, *_nethttp.Response, error)

	/*
	 * GetMetricsByInstantQuery Get metrics with instant query by kafka id.
	 * @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 ApiGetMetricsByInstantQueryRequest
	 */
	GetMetricsByInstantQuery(ctx _context.Context, id string) ApiGetMetricsByInstantQueryRequest

	/*
	 * GetMetricsByInstantQueryExecute executes the request
	 * @return MetricsInstantQueryList
	 */
	GetMetricsByInstantQueryExecute(r ApiGetMetricsByInstantQueryRequest) (MetricsInstantQueryList, *_nethttp.Response, error)

	/*
	 * GetMetricsByRangeQuery Get metrics with timeseries range query by kafka id.
	 * @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 ApiGetMetricsByRangeQueryRequest
	 */
	GetMetricsByRangeQuery(ctx _context.Context, id string) ApiGetMetricsByRangeQueryRequest

	/*
	 * GetMetricsByRangeQueryExecute executes the request
	 * @return MetricsRangeQueryList
	 */
	GetMetricsByRangeQueryExecute(r ApiGetMetricsByRangeQueryRequest) (MetricsRangeQueryList, *_nethttp.Response, error)

	/*
	 * GetServiceAccountById get service account by id
	 * @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 ApiGetServiceAccountByIdRequest
	 */
	GetServiceAccountById(ctx _context.Context, id string) ApiGetServiceAccountByIdRequest

	/*
	 * GetServiceAccountByIdExecute executes the request
	 * @return ServiceAccount
	 */
	GetServiceAccountByIdExecute(r ApiGetServiceAccountByIdRequest) (ServiceAccount, *_nethttp.Response, error)

	/*
	 * ListCloudProviderRegions Retrieves the list of supported regions of the supported cloud provider.
	 * @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 ApiListCloudProviderRegionsRequest
	 */
	ListCloudProviderRegions(ctx _context.Context, id string) ApiListCloudProviderRegionsRequest

	/*
	 * ListCloudProviderRegionsExecute executes the request
	 * @return CloudRegionList
	 */
	ListCloudProviderRegionsExecute(r ApiListCloudProviderRegionsRequest) (CloudRegionList, *_nethttp.Response, error)

	/*
	 * ListCloudProviders Retrieves the list of supported cloud providers.
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiListCloudProvidersRequest
	 */
	ListCloudProviders(ctx _context.Context) ApiListCloudProvidersRequest

	/*
	 * ListCloudProvidersExecute executes the request
	 * @return CloudProviderList
	 */
	ListCloudProvidersExecute(r ApiListCloudProvidersRequest) (CloudProviderList, *_nethttp.Response, error)

	/*
	 * ListKafkas Returns a list of Kafka requests
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiListKafkasRequest
	 */
	ListKafkas(ctx _context.Context) ApiListKafkasRequest

	/*
	 * ListKafkasExecute executes the request
	 * @return KafkaRequestList
	 */
	ListKafkasExecute(r ApiListKafkasRequest) (KafkaRequestList, *_nethttp.Response, error)

	/*
	 * ListServiceAccounts List service accounts
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiListServiceAccountsRequest
	 */
	ListServiceAccounts(ctx _context.Context) ApiListServiceAccountsRequest

	/*
	 * ListServiceAccountsExecute executes the request
	 * @return ServiceAccountList
	 */
	ListServiceAccountsExecute(r ApiListServiceAccountsRequest) (ServiceAccountList, *_nethttp.Response, error)

	/*
	 * ResetServiceAccountCreds reset credentials for the service account
	 * @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 ApiResetServiceAccountCredsRequest
	 */
	ResetServiceAccountCreds(ctx _context.Context, id string) ApiResetServiceAccountCredsRequest

	/*
	 * ResetServiceAccountCredsExecute executes the request
	 * @return ServiceAccount
	 */
	ResetServiceAccountCredsExecute(r ApiResetServiceAccountCredsRequest) (ServiceAccount, *_nethttp.Response, error)

	/*
	 * ServiceStatus Retrieves the status of resources e.g whether we have reached maximum service capacity
	 * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
	 * @return ApiServiceStatusRequest
	 */
	ServiceStatus(ctx _context.Context) ApiServiceStatusRequest

	/*
	 * ServiceStatusExecute executes the request
	 * @return ServiceStatus
	 */
	ServiceStatusExecute(r ApiServiceStatusRequest) (ServiceStatus, *_nethttp.Response, error)

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

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

type DefaultApiMock

type DefaultApiMock struct {
	// CreateKafkaFunc mocks the CreateKafka method.
	CreateKafkaFunc func(ctx context.Context) ApiCreateKafkaRequest

	// CreateKafkaExecuteFunc mocks the CreateKafkaExecute method.
	CreateKafkaExecuteFunc func(r ApiCreateKafkaRequest) (KafkaRequest, *http.Response, error)

	// CreateServiceAccountFunc mocks the CreateServiceAccount method.
	CreateServiceAccountFunc func(ctx context.Context) ApiCreateServiceAccountRequest

	// CreateServiceAccountExecuteFunc mocks the CreateServiceAccountExecute method.
	CreateServiceAccountExecuteFunc func(r ApiCreateServiceAccountRequest) (ServiceAccount, *http.Response, error)

	// DeleteKafkaByIdFunc mocks the DeleteKafkaById method.
	DeleteKafkaByIdFunc func(ctx context.Context, id string) ApiDeleteKafkaByIdRequest

	// DeleteKafkaByIdExecuteFunc mocks the DeleteKafkaByIdExecute method.
	DeleteKafkaByIdExecuteFunc func(r ApiDeleteKafkaByIdRequest) (Error, *http.Response, error)

	// DeleteServiceAccountFunc mocks the DeleteServiceAccount method.
	DeleteServiceAccountFunc func(ctx context.Context, id string) ApiDeleteServiceAccountRequest

	// DeleteServiceAccountExecuteFunc mocks the DeleteServiceAccountExecute method.
	DeleteServiceAccountExecuteFunc func(r ApiDeleteServiceAccountRequest) (Error, *http.Response, error)

	// GetKafkaByIdFunc mocks the GetKafkaById method.
	GetKafkaByIdFunc func(ctx context.Context, id string) ApiGetKafkaByIdRequest

	// GetKafkaByIdExecuteFunc mocks the GetKafkaByIdExecute method.
	GetKafkaByIdExecuteFunc func(r ApiGetKafkaByIdRequest) (KafkaRequest, *http.Response, error)

	// GetMetricsByInstantQueryFunc mocks the GetMetricsByInstantQuery method.
	GetMetricsByInstantQueryFunc func(ctx context.Context, id string) ApiGetMetricsByInstantQueryRequest

	// GetMetricsByInstantQueryExecuteFunc mocks the GetMetricsByInstantQueryExecute method.
	GetMetricsByInstantQueryExecuteFunc func(r ApiGetMetricsByInstantQueryRequest) (MetricsInstantQueryList, *http.Response, error)

	// GetMetricsByRangeQueryFunc mocks the GetMetricsByRangeQuery method.
	GetMetricsByRangeQueryFunc func(ctx context.Context, id string) ApiGetMetricsByRangeQueryRequest

	// GetMetricsByRangeQueryExecuteFunc mocks the GetMetricsByRangeQueryExecute method.
	GetMetricsByRangeQueryExecuteFunc func(r ApiGetMetricsByRangeQueryRequest) (MetricsRangeQueryList, *http.Response, error)

	// GetServiceAccountByIdFunc mocks the GetServiceAccountById method.
	GetServiceAccountByIdFunc func(ctx context.Context, id string) ApiGetServiceAccountByIdRequest

	// GetServiceAccountByIdExecuteFunc mocks the GetServiceAccountByIdExecute method.
	GetServiceAccountByIdExecuteFunc func(r ApiGetServiceAccountByIdRequest) (ServiceAccount, *http.Response, error)

	// ListCloudProviderRegionsFunc mocks the ListCloudProviderRegions method.
	ListCloudProviderRegionsFunc func(ctx context.Context, id string) ApiListCloudProviderRegionsRequest

	// ListCloudProviderRegionsExecuteFunc mocks the ListCloudProviderRegionsExecute method.
	ListCloudProviderRegionsExecuteFunc func(r ApiListCloudProviderRegionsRequest) (CloudRegionList, *http.Response, error)

	// ListCloudProvidersFunc mocks the ListCloudProviders method.
	ListCloudProvidersFunc func(ctx context.Context) ApiListCloudProvidersRequest

	// ListCloudProvidersExecuteFunc mocks the ListCloudProvidersExecute method.
	ListCloudProvidersExecuteFunc func(r ApiListCloudProvidersRequest) (CloudProviderList, *http.Response, error)

	// ListKafkasFunc mocks the ListKafkas method.
	ListKafkasFunc func(ctx context.Context) ApiListKafkasRequest

	// ListKafkasExecuteFunc mocks the ListKafkasExecute method.
	ListKafkasExecuteFunc func(r ApiListKafkasRequest) (KafkaRequestList, *http.Response, error)

	// ListServiceAccountsFunc mocks the ListServiceAccounts method.
	ListServiceAccountsFunc func(ctx context.Context) ApiListServiceAccountsRequest

	// ListServiceAccountsExecuteFunc mocks the ListServiceAccountsExecute method.
	ListServiceAccountsExecuteFunc func(r ApiListServiceAccountsRequest) (ServiceAccountList, *http.Response, error)

	// ResetServiceAccountCredsFunc mocks the ResetServiceAccountCreds method.
	ResetServiceAccountCredsFunc func(ctx context.Context, id string) ApiResetServiceAccountCredsRequest

	// ResetServiceAccountCredsExecuteFunc mocks the ResetServiceAccountCredsExecute method.
	ResetServiceAccountCredsExecuteFunc func(r ApiResetServiceAccountCredsRequest) (ServiceAccount, *http.Response, error)

	// ServiceStatusFunc mocks the ServiceStatus method.
	ServiceStatusFunc func(ctx context.Context) ApiServiceStatusRequest

	// ServiceStatusExecuteFunc mocks the ServiceStatusExecute method.
	ServiceStatusExecuteFunc func(r ApiServiceStatusRequest) (ServiceStatus, *http.Response, error)

	// VersionMetadataFunc mocks the VersionMetadata method.
	VersionMetadataFunc func(ctx context.Context) ApiVersionMetadataRequest

	// VersionMetadataExecuteFunc mocks the VersionMetadataExecute method.
	VersionMetadataExecuteFunc func(r ApiVersionMetadataRequest) (VersionMetadata, *http.Response, error)
	// contains filtered or unexported fields
}

DefaultApiMock is a mock implementation of DefaultApi.

    func TestSomethingThatUsesDefaultApi(t *testing.T) {

        // make and configure a mocked DefaultApi
        mockedDefaultApi := &DefaultApiMock{
            CreateKafkaFunc: func(ctx context.Context) ApiCreateKafkaRequest {
	               panic("mock out the CreateKafka method")
            },
            CreateKafkaExecuteFunc: func(r ApiCreateKafkaRequest) (KafkaRequest, *http.Response, error) {
	               panic("mock out the CreateKafkaExecute method")
            },
            CreateServiceAccountFunc: func(ctx context.Context) ApiCreateServiceAccountRequest {
	               panic("mock out the CreateServiceAccount method")
            },
            CreateServiceAccountExecuteFunc: func(r ApiCreateServiceAccountRequest) (ServiceAccount, *http.Response, error) {
	               panic("mock out the CreateServiceAccountExecute method")
            },
            DeleteKafkaByIdFunc: func(ctx context.Context, id string) ApiDeleteKafkaByIdRequest {
	               panic("mock out the DeleteKafkaById method")
            },
            DeleteKafkaByIdExecuteFunc: func(r ApiDeleteKafkaByIdRequest) (Error, *http.Response, error) {
	               panic("mock out the DeleteKafkaByIdExecute method")
            },
            DeleteServiceAccountFunc: func(ctx context.Context, id string) ApiDeleteServiceAccountRequest {
	               panic("mock out the DeleteServiceAccount method")
            },
            DeleteServiceAccountExecuteFunc: func(r ApiDeleteServiceAccountRequest) (Error, *http.Response, error) {
	               panic("mock out the DeleteServiceAccountExecute method")
            },
            GetKafkaByIdFunc: func(ctx context.Context, id string) ApiGetKafkaByIdRequest {
	               panic("mock out the GetKafkaById method")
            },
            GetKafkaByIdExecuteFunc: func(r ApiGetKafkaByIdRequest) (KafkaRequest, *http.Response, error) {
	               panic("mock out the GetKafkaByIdExecute method")
            },
            GetMetricsByInstantQueryFunc: func(ctx context.Context, id string) ApiGetMetricsByInstantQueryRequest {
	               panic("mock out the GetMetricsByInstantQuery method")
            },
            GetMetricsByInstantQueryExecuteFunc: func(r ApiGetMetricsByInstantQueryRequest) (MetricsInstantQueryList, *http.Response, error) {
	               panic("mock out the GetMetricsByInstantQueryExecute method")
            },
            GetMetricsByRangeQueryFunc: func(ctx context.Context, id string) ApiGetMetricsByRangeQueryRequest {
	               panic("mock out the GetMetricsByRangeQuery method")
            },
            GetMetricsByRangeQueryExecuteFunc: func(r ApiGetMetricsByRangeQueryRequest) (MetricsRangeQueryList, *http.Response, error) {
	               panic("mock out the GetMetricsByRangeQueryExecute method")
            },
            GetServiceAccountByIdFunc: func(ctx context.Context, id string) ApiGetServiceAccountByIdRequest {
	               panic("mock out the GetServiceAccountById method")
            },
            GetServiceAccountByIdExecuteFunc: func(r ApiGetServiceAccountByIdRequest) (ServiceAccount, *http.Response, error) {
	               panic("mock out the GetServiceAccountByIdExecute method")
            },
            ListCloudProviderRegionsFunc: func(ctx context.Context, id string) ApiListCloudProviderRegionsRequest {
	               panic("mock out the ListCloudProviderRegions method")
            },
            ListCloudProviderRegionsExecuteFunc: func(r ApiListCloudProviderRegionsRequest) (CloudRegionList, *http.Response, error) {
	               panic("mock out the ListCloudProviderRegionsExecute method")
            },
            ListCloudProvidersFunc: func(ctx context.Context) ApiListCloudProvidersRequest {
	               panic("mock out the ListCloudProviders method")
            },
            ListCloudProvidersExecuteFunc: func(r ApiListCloudProvidersRequest) (CloudProviderList, *http.Response, error) {
	               panic("mock out the ListCloudProvidersExecute method")
            },
            ListKafkasFunc: func(ctx context.Context) ApiListKafkasRequest {
	               panic("mock out the ListKafkas method")
            },
            ListKafkasExecuteFunc: func(r ApiListKafkasRequest) (KafkaRequestList, *http.Response, error) {
	               panic("mock out the ListKafkasExecute method")
            },
            ListServiceAccountsFunc: func(ctx context.Context) ApiListServiceAccountsRequest {
	               panic("mock out the ListServiceAccounts method")
            },
            ListServiceAccountsExecuteFunc: func(r ApiListServiceAccountsRequest) (ServiceAccountList, *http.Response, error) {
	               panic("mock out the ListServiceAccountsExecute method")
            },
            ResetServiceAccountCredsFunc: func(ctx context.Context, id string) ApiResetServiceAccountCredsRequest {
	               panic("mock out the ResetServiceAccountCreds method")
            },
            ResetServiceAccountCredsExecuteFunc: func(r ApiResetServiceAccountCredsRequest) (ServiceAccount, *http.Response, error) {
	               panic("mock out the ResetServiceAccountCredsExecute method")
            },
            ServiceStatusFunc: func(ctx context.Context) ApiServiceStatusRequest {
	               panic("mock out the ServiceStatus method")
            },
            ServiceStatusExecuteFunc: func(r ApiServiceStatusRequest) (ServiceStatus, *http.Response, error) {
	               panic("mock out the ServiceStatusExecute method")
            },
            VersionMetadataFunc: func(ctx context.Context) ApiVersionMetadataRequest {
	               panic("mock out the VersionMetadata method")
            },
            VersionMetadataExecuteFunc: func(r ApiVersionMetadataRequest) (VersionMetadata, *http.Response, error) {
	               panic("mock out the VersionMetadataExecute method")
            },
        }

        // use mockedDefaultApi in code that requires DefaultApi
        // and then make assertions.

    }

func (*DefaultApiMock) CreateKafka

func (mock *DefaultApiMock) CreateKafka(ctx context.Context) ApiCreateKafkaRequest

CreateKafka calls CreateKafkaFunc.

func (*DefaultApiMock) CreateKafkaCalls

func (mock *DefaultApiMock) CreateKafkaCalls() []struct {
	Ctx context.Context
}

CreateKafkaCalls gets all the calls that were made to CreateKafka. Check the length with:

len(mockedDefaultApi.CreateKafkaCalls())

func (*DefaultApiMock) CreateKafkaExecute

func (mock *DefaultApiMock) CreateKafkaExecute(r ApiCreateKafkaRequest) (KafkaRequest, *http.Response, error)

CreateKafkaExecute calls CreateKafkaExecuteFunc.

func (*DefaultApiMock) CreateKafkaExecuteCalls

func (mock *DefaultApiMock) CreateKafkaExecuteCalls() []struct {
	R ApiCreateKafkaRequest
}

CreateKafkaExecuteCalls gets all the calls that were made to CreateKafkaExecute. Check the length with:

len(mockedDefaultApi.CreateKafkaExecuteCalls())

func (*DefaultApiMock) CreateServiceAccount

func (mock *DefaultApiMock) CreateServiceAccount(ctx context.Context) ApiCreateServiceAccountRequest

CreateServiceAccount calls CreateServiceAccountFunc.

func (*DefaultApiMock) CreateServiceAccountCalls

func (mock *DefaultApiMock) CreateServiceAccountCalls() []struct {
	Ctx context.Context
}

CreateServiceAccountCalls gets all the calls that were made to CreateServiceAccount. Check the length with:

len(mockedDefaultApi.CreateServiceAccountCalls())

func (*DefaultApiMock) CreateServiceAccountExecute

func (mock *DefaultApiMock) CreateServiceAccountExecute(r ApiCreateServiceAccountRequest) (ServiceAccount, *http.Response, error)

CreateServiceAccountExecute calls CreateServiceAccountExecuteFunc.

func (*DefaultApiMock) CreateServiceAccountExecuteCalls

func (mock *DefaultApiMock) CreateServiceAccountExecuteCalls() []struct {
	R ApiCreateServiceAccountRequest
}

CreateServiceAccountExecuteCalls gets all the calls that were made to CreateServiceAccountExecute. Check the length with:

len(mockedDefaultApi.CreateServiceAccountExecuteCalls())

func (*DefaultApiMock) DeleteKafkaById

func (mock *DefaultApiMock) DeleteKafkaById(ctx context.Context, id string) ApiDeleteKafkaByIdRequest

DeleteKafkaById calls DeleteKafkaByIdFunc.

func (*DefaultApiMock) DeleteKafkaByIdCalls

func (mock *DefaultApiMock) DeleteKafkaByIdCalls() []struct {
	Ctx context.Context
	ID  string
}

DeleteKafkaByIdCalls gets all the calls that were made to DeleteKafkaById. Check the length with:

len(mockedDefaultApi.DeleteKafkaByIdCalls())

func (*DefaultApiMock) DeleteKafkaByIdExecute

func (mock *DefaultApiMock) DeleteKafkaByIdExecute(r ApiDeleteKafkaByIdRequest) (Error, *http.Response, error)

DeleteKafkaByIdExecute calls DeleteKafkaByIdExecuteFunc.

func (*DefaultApiMock) DeleteKafkaByIdExecuteCalls

func (mock *DefaultApiMock) DeleteKafkaByIdExecuteCalls() []struct {
	R ApiDeleteKafkaByIdRequest
}

DeleteKafkaByIdExecuteCalls gets all the calls that were made to DeleteKafkaByIdExecute. Check the length with:

len(mockedDefaultApi.DeleteKafkaByIdExecuteCalls())

func (*DefaultApiMock) DeleteServiceAccount

func (mock *DefaultApiMock) DeleteServiceAccount(ctx context.Context, id string) ApiDeleteServiceAccountRequest

DeleteServiceAccount calls DeleteServiceAccountFunc.

func (*DefaultApiMock) DeleteServiceAccountCalls

func (mock *DefaultApiMock) DeleteServiceAccountCalls() []struct {
	Ctx context.Context
	ID  string
}

DeleteServiceAccountCalls gets all the calls that were made to DeleteServiceAccount. Check the length with:

len(mockedDefaultApi.DeleteServiceAccountCalls())

func (*DefaultApiMock) DeleteServiceAccountExecute

func (mock *DefaultApiMock) DeleteServiceAccountExecute(r ApiDeleteServiceAccountRequest) (Error, *http.Response, error)

DeleteServiceAccountExecute calls DeleteServiceAccountExecuteFunc.

func (*DefaultApiMock) DeleteServiceAccountExecuteCalls

func (mock *DefaultApiMock) DeleteServiceAccountExecuteCalls() []struct {
	R ApiDeleteServiceAccountRequest
}

DeleteServiceAccountExecuteCalls gets all the calls that were made to DeleteServiceAccountExecute. Check the length with:

len(mockedDefaultApi.DeleteServiceAccountExecuteCalls())

func (*DefaultApiMock) GetKafkaById

func (mock *DefaultApiMock) GetKafkaById(ctx context.Context, id string) ApiGetKafkaByIdRequest

GetKafkaById calls GetKafkaByIdFunc.

func (*DefaultApiMock) GetKafkaByIdCalls

func (mock *DefaultApiMock) GetKafkaByIdCalls() []struct {
	Ctx context.Context
	ID  string
}

GetKafkaByIdCalls gets all the calls that were made to GetKafkaById. Check the length with:

len(mockedDefaultApi.GetKafkaByIdCalls())

func (*DefaultApiMock) GetKafkaByIdExecute

func (mock *DefaultApiMock) GetKafkaByIdExecute(r ApiGetKafkaByIdRequest) (KafkaRequest, *http.Response, error)

GetKafkaByIdExecute calls GetKafkaByIdExecuteFunc.

func (*DefaultApiMock) GetKafkaByIdExecuteCalls

func (mock *DefaultApiMock) GetKafkaByIdExecuteCalls() []struct {
	R ApiGetKafkaByIdRequest
}

GetKafkaByIdExecuteCalls gets all the calls that were made to GetKafkaByIdExecute. Check the length with:

len(mockedDefaultApi.GetKafkaByIdExecuteCalls())

func (*DefaultApiMock) GetMetricsByInstantQuery

func (mock *DefaultApiMock) GetMetricsByInstantQuery(ctx context.Context, id string) ApiGetMetricsByInstantQueryRequest

GetMetricsByInstantQuery calls GetMetricsByInstantQueryFunc.

func (*DefaultApiMock) GetMetricsByInstantQueryCalls

func (mock *DefaultApiMock) GetMetricsByInstantQueryCalls() []struct {
	Ctx context.Context
	ID  string
}

GetMetricsByInstantQueryCalls gets all the calls that were made to GetMetricsByInstantQuery. Check the length with:

len(mockedDefaultApi.GetMetricsByInstantQueryCalls())

func (*DefaultApiMock) GetMetricsByInstantQueryExecute

func (mock *DefaultApiMock) GetMetricsByInstantQueryExecute(r ApiGetMetricsByInstantQueryRequest) (MetricsInstantQueryList, *http.Response, error)

GetMetricsByInstantQueryExecute calls GetMetricsByInstantQueryExecuteFunc.

func (*DefaultApiMock) GetMetricsByInstantQueryExecuteCalls

func (mock *DefaultApiMock) GetMetricsByInstantQueryExecuteCalls() []struct {
	R ApiGetMetricsByInstantQueryRequest
}

GetMetricsByInstantQueryExecuteCalls gets all the calls that were made to GetMetricsByInstantQueryExecute. Check the length with:

len(mockedDefaultApi.GetMetricsByInstantQueryExecuteCalls())

func (*DefaultApiMock) GetMetricsByRangeQuery

func (mock *DefaultApiMock) GetMetricsByRangeQuery(ctx context.Context, id string) ApiGetMetricsByRangeQueryRequest

GetMetricsByRangeQuery calls GetMetricsByRangeQueryFunc.

func (*DefaultApiMock) GetMetricsByRangeQueryCalls

func (mock *DefaultApiMock) GetMetricsByRangeQueryCalls() []struct {
	Ctx context.Context
	ID  string
}

GetMetricsByRangeQueryCalls gets all the calls that were made to GetMetricsByRangeQuery. Check the length with:

len(mockedDefaultApi.GetMetricsByRangeQueryCalls())

func (*DefaultApiMock) GetMetricsByRangeQueryExecute

func (mock *DefaultApiMock) GetMetricsByRangeQueryExecute(r ApiGetMetricsByRangeQueryRequest) (MetricsRangeQueryList, *http.Response, error)

GetMetricsByRangeQueryExecute calls GetMetricsByRangeQueryExecuteFunc.

func (*DefaultApiMock) GetMetricsByRangeQueryExecuteCalls

func (mock *DefaultApiMock) GetMetricsByRangeQueryExecuteCalls() []struct {
	R ApiGetMetricsByRangeQueryRequest
}

GetMetricsByRangeQueryExecuteCalls gets all the calls that were made to GetMetricsByRangeQueryExecute. Check the length with:

len(mockedDefaultApi.GetMetricsByRangeQueryExecuteCalls())

func (*DefaultApiMock) GetServiceAccountById

func (mock *DefaultApiMock) GetServiceAccountById(ctx context.Context, id string) ApiGetServiceAccountByIdRequest

GetServiceAccountById calls GetServiceAccountByIdFunc.

func (*DefaultApiMock) GetServiceAccountByIdCalls

func (mock *DefaultApiMock) GetServiceAccountByIdCalls() []struct {
	Ctx context.Context
	ID  string
}

GetServiceAccountByIdCalls gets all the calls that were made to GetServiceAccountById. Check the length with:

len(mockedDefaultApi.GetServiceAccountByIdCalls())

func (*DefaultApiMock) GetServiceAccountByIdExecute

func (mock *DefaultApiMock) GetServiceAccountByIdExecute(r ApiGetServiceAccountByIdRequest) (ServiceAccount, *http.Response, error)

GetServiceAccountByIdExecute calls GetServiceAccountByIdExecuteFunc.

func (*DefaultApiMock) GetServiceAccountByIdExecuteCalls

func (mock *DefaultApiMock) GetServiceAccountByIdExecuteCalls() []struct {
	R ApiGetServiceAccountByIdRequest
}

GetServiceAccountByIdExecuteCalls gets all the calls that were made to GetServiceAccountByIdExecute. Check the length with:

len(mockedDefaultApi.GetServiceAccountByIdExecuteCalls())

func (*DefaultApiMock) ListCloudProviderRegions

func (mock *DefaultApiMock) ListCloudProviderRegions(ctx context.Context, id string) ApiListCloudProviderRegionsRequest

ListCloudProviderRegions calls ListCloudProviderRegionsFunc.

func (*DefaultApiMock) ListCloudProviderRegionsCalls

func (mock *DefaultApiMock) ListCloudProviderRegionsCalls() []struct {
	Ctx context.Context
	ID  string
}

ListCloudProviderRegionsCalls gets all the calls that were made to ListCloudProviderRegions. Check the length with:

len(mockedDefaultApi.ListCloudProviderRegionsCalls())

func (*DefaultApiMock) ListCloudProviderRegionsExecute

func (mock *DefaultApiMock) ListCloudProviderRegionsExecute(r ApiListCloudProviderRegionsRequest) (CloudRegionList, *http.Response, error)

ListCloudProviderRegionsExecute calls ListCloudProviderRegionsExecuteFunc.

func (*DefaultApiMock) ListCloudProviderRegionsExecuteCalls

func (mock *DefaultApiMock) ListCloudProviderRegionsExecuteCalls() []struct {
	R ApiListCloudProviderRegionsRequest
}

ListCloudProviderRegionsExecuteCalls gets all the calls that were made to ListCloudProviderRegionsExecute. Check the length with:

len(mockedDefaultApi.ListCloudProviderRegionsExecuteCalls())

func (*DefaultApiMock) ListCloudProviders

func (mock *DefaultApiMock) ListCloudProviders(ctx context.Context) ApiListCloudProvidersRequest

ListCloudProviders calls ListCloudProvidersFunc.

func (*DefaultApiMock) ListCloudProvidersCalls

func (mock *DefaultApiMock) ListCloudProvidersCalls() []struct {
	Ctx context.Context
}

ListCloudProvidersCalls gets all the calls that were made to ListCloudProviders. Check the length with:

len(mockedDefaultApi.ListCloudProvidersCalls())

func (*DefaultApiMock) ListCloudProvidersExecute

func (mock *DefaultApiMock) ListCloudProvidersExecute(r ApiListCloudProvidersRequest) (CloudProviderList, *http.Response, error)

ListCloudProvidersExecute calls ListCloudProvidersExecuteFunc.

func (*DefaultApiMock) ListCloudProvidersExecuteCalls

func (mock *DefaultApiMock) ListCloudProvidersExecuteCalls() []struct {
	R ApiListCloudProvidersRequest
}

ListCloudProvidersExecuteCalls gets all the calls that were made to ListCloudProvidersExecute. Check the length with:

len(mockedDefaultApi.ListCloudProvidersExecuteCalls())

func (*DefaultApiMock) ListKafkas

func (mock *DefaultApiMock) ListKafkas(ctx context.Context) ApiListKafkasRequest

ListKafkas calls ListKafkasFunc.

func (*DefaultApiMock) ListKafkasCalls

func (mock *DefaultApiMock) ListKafkasCalls() []struct {
	Ctx context.Context
}

ListKafkasCalls gets all the calls that were made to ListKafkas. Check the length with:

len(mockedDefaultApi.ListKafkasCalls())

func (*DefaultApiMock) ListKafkasExecute

func (mock *DefaultApiMock) ListKafkasExecute(r ApiListKafkasRequest) (KafkaRequestList, *http.Response, error)

ListKafkasExecute calls ListKafkasExecuteFunc.

func (*DefaultApiMock) ListKafkasExecuteCalls

func (mock *DefaultApiMock) ListKafkasExecuteCalls() []struct {
	R ApiListKafkasRequest
}

ListKafkasExecuteCalls gets all the calls that were made to ListKafkasExecute. Check the length with:

len(mockedDefaultApi.ListKafkasExecuteCalls())

func (*DefaultApiMock) ListServiceAccounts

func (mock *DefaultApiMock) ListServiceAccounts(ctx context.Context) ApiListServiceAccountsRequest

ListServiceAccounts calls ListServiceAccountsFunc.

func (*DefaultApiMock) ListServiceAccountsCalls

func (mock *DefaultApiMock) ListServiceAccountsCalls() []struct {
	Ctx context.Context
}

ListServiceAccountsCalls gets all the calls that were made to ListServiceAccounts. Check the length with:

len(mockedDefaultApi.ListServiceAccountsCalls())

func (*DefaultApiMock) ListServiceAccountsExecute

func (mock *DefaultApiMock) ListServiceAccountsExecute(r ApiListServiceAccountsRequest) (ServiceAccountList, *http.Response, error)

ListServiceAccountsExecute calls ListServiceAccountsExecuteFunc.

func (*DefaultApiMock) ListServiceAccountsExecuteCalls

func (mock *DefaultApiMock) ListServiceAccountsExecuteCalls() []struct {
	R ApiListServiceAccountsRequest
}

ListServiceAccountsExecuteCalls gets all the calls that were made to ListServiceAccountsExecute. Check the length with:

len(mockedDefaultApi.ListServiceAccountsExecuteCalls())

func (*DefaultApiMock) ResetServiceAccountCreds

func (mock *DefaultApiMock) ResetServiceAccountCreds(ctx context.Context, id string) ApiResetServiceAccountCredsRequest

ResetServiceAccountCreds calls ResetServiceAccountCredsFunc.

func (*DefaultApiMock) ResetServiceAccountCredsCalls

func (mock *DefaultApiMock) ResetServiceAccountCredsCalls() []struct {
	Ctx context.Context
	ID  string
}

ResetServiceAccountCredsCalls gets all the calls that were made to ResetServiceAccountCreds. Check the length with:

len(mockedDefaultApi.ResetServiceAccountCredsCalls())

func (*DefaultApiMock) ResetServiceAccountCredsExecute

func (mock *DefaultApiMock) ResetServiceAccountCredsExecute(r ApiResetServiceAccountCredsRequest) (ServiceAccount, *http.Response, error)

ResetServiceAccountCredsExecute calls ResetServiceAccountCredsExecuteFunc.

func (*DefaultApiMock) ResetServiceAccountCredsExecuteCalls

func (mock *DefaultApiMock) ResetServiceAccountCredsExecuteCalls() []struct {
	R ApiResetServiceAccountCredsRequest
}

ResetServiceAccountCredsExecuteCalls gets all the calls that were made to ResetServiceAccountCredsExecute. Check the length with:

len(mockedDefaultApi.ResetServiceAccountCredsExecuteCalls())

func (*DefaultApiMock) ServiceStatus

func (mock *DefaultApiMock) ServiceStatus(ctx context.Context) ApiServiceStatusRequest

ServiceStatus calls ServiceStatusFunc.

func (*DefaultApiMock) ServiceStatusCalls

func (mock *DefaultApiMock) ServiceStatusCalls() []struct {
	Ctx context.Context
}

ServiceStatusCalls gets all the calls that were made to ServiceStatus. Check the length with:

len(mockedDefaultApi.ServiceStatusCalls())

func (*DefaultApiMock) ServiceStatusExecute

func (mock *DefaultApiMock) ServiceStatusExecute(r ApiServiceStatusRequest) (ServiceStatus, *http.Response, error)

ServiceStatusExecute calls ServiceStatusExecuteFunc.

func (*DefaultApiMock) ServiceStatusExecuteCalls

func (mock *DefaultApiMock) ServiceStatusExecuteCalls() []struct {
	R ApiServiceStatusRequest
}

ServiceStatusExecuteCalls gets all the calls that were made to ServiceStatusExecute. Check the length with:

len(mockedDefaultApi.ServiceStatusExecuteCalls())

func (*DefaultApiMock) VersionMetadata

func (mock *DefaultApiMock) VersionMetadata(ctx context.Context) ApiVersionMetadataRequest

VersionMetadata calls VersionMetadataFunc.

func (*DefaultApiMock) VersionMetadataCalls

func (mock *DefaultApiMock) VersionMetadataCalls() []struct {
	Ctx context.Context
}

VersionMetadataCalls gets all the calls that were made to VersionMetadata. Check the length with:

len(mockedDefaultApi.VersionMetadataCalls())

func (*DefaultApiMock) VersionMetadataExecute

func (mock *DefaultApiMock) VersionMetadataExecute(r ApiVersionMetadataRequest) (VersionMetadata, *http.Response, error)

VersionMetadataExecute calls VersionMetadataExecuteFunc.

func (*DefaultApiMock) VersionMetadataExecuteCalls

func (mock *DefaultApiMock) VersionMetadataExecuteCalls() []struct {
	R ApiVersionMetadataRequest
}

VersionMetadataExecuteCalls gets all the calls that were made to VersionMetadataExecute. Check the length with:

len(mockedDefaultApi.VersionMetadataExecuteCalls())

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

func (*DefaultApiService) CreateKafka

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

func (*DefaultApiService) CreateKafkaExecute

* Execute executes the request * @return KafkaRequest

func (*DefaultApiService) CreateServiceAccount

* CreateServiceAccount Create a service account * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiCreateServiceAccountRequest

func (*DefaultApiService) CreateServiceAccountExecute

* Execute executes the request * @return ServiceAccount

func (*DefaultApiService) DeleteKafkaById

* DeleteKafkaById Delete a kafka request by id * @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 ApiDeleteKafkaByIdRequest

func (*DefaultApiService) DeleteKafkaByIdExecute

func (a *DefaultApiService) DeleteKafkaByIdExecute(r ApiDeleteKafkaByIdRequest) (Error, *_nethttp.Response, error)

* Execute executes the request * @return Error

func (*DefaultApiService) DeleteServiceAccount

func (a *DefaultApiService) DeleteServiceAccount(ctx _context.Context, id string) ApiDeleteServiceAccountRequest

* DeleteServiceAccount Delete service account * @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 ApiDeleteServiceAccountRequest

func (*DefaultApiService) DeleteServiceAccountExecute

func (a *DefaultApiService) DeleteServiceAccountExecute(r ApiDeleteServiceAccountRequest) (Error, *_nethttp.Response, error)

* Execute executes the request * @return Error

func (*DefaultApiService) GetKafkaById

* GetKafkaById Get a kafka request by id * @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 ApiGetKafkaByIdRequest

func (*DefaultApiService) GetKafkaByIdExecute

* Execute executes the request * @return KafkaRequest

func (*DefaultApiService) GetMetricsByInstantQuery

func (a *DefaultApiService) GetMetricsByInstantQuery(ctx _context.Context, id string) ApiGetMetricsByInstantQueryRequest

* GetMetricsByInstantQuery Get metrics with instant query by kafka id. * @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 ApiGetMetricsByInstantQueryRequest

func (*DefaultApiService) GetMetricsByInstantQueryExecute

* Execute executes the request * @return MetricsInstantQueryList

func (*DefaultApiService) GetMetricsByRangeQuery

func (a *DefaultApiService) GetMetricsByRangeQuery(ctx _context.Context, id string) ApiGetMetricsByRangeQueryRequest

* GetMetricsByRangeQuery Get metrics with timeseries range query by kafka id. * @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 ApiGetMetricsByRangeQueryRequest

func (*DefaultApiService) GetMetricsByRangeQueryExecute

* Execute executes the request * @return MetricsRangeQueryList

func (*DefaultApiService) GetServiceAccountById

func (a *DefaultApiService) GetServiceAccountById(ctx _context.Context, id string) ApiGetServiceAccountByIdRequest

* GetServiceAccountById get service account by id * @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 ApiGetServiceAccountByIdRequest

func (*DefaultApiService) GetServiceAccountByIdExecute

* Execute executes the request * @return ServiceAccount

func (*DefaultApiService) ListCloudProviderRegions

func (a *DefaultApiService) ListCloudProviderRegions(ctx _context.Context, id string) ApiListCloudProviderRegionsRequest

* ListCloudProviderRegions Retrieves the list of supported regions of the supported cloud provider. * @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 ApiListCloudProviderRegionsRequest

func (*DefaultApiService) ListCloudProviderRegionsExecute

* Execute executes the request * @return CloudRegionList

func (*DefaultApiService) ListCloudProviders

* ListCloudProviders Retrieves the list of supported cloud providers. * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListCloudProvidersRequest

func (*DefaultApiService) ListCloudProvidersExecute

* Execute executes the request * @return CloudProviderList

func (*DefaultApiService) ListKafkas

* ListKafkas Returns a list of Kafka requests * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListKafkasRequest

func (*DefaultApiService) ListKafkasExecute

* Execute executes the request * @return KafkaRequestList

func (*DefaultApiService) ListServiceAccounts

* ListServiceAccounts List service accounts * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiListServiceAccountsRequest

func (*DefaultApiService) ListServiceAccountsExecute

* Execute executes the request * @return ServiceAccountList

func (*DefaultApiService) ResetServiceAccountCreds

func (a *DefaultApiService) ResetServiceAccountCreds(ctx _context.Context, id string) ApiResetServiceAccountCredsRequest

* ResetServiceAccountCreds reset credentials for the service account * @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 ApiResetServiceAccountCredsRequest

func (*DefaultApiService) ResetServiceAccountCredsExecute

* Execute executes the request * @return ServiceAccount

func (*DefaultApiService) ServiceStatus

* ServiceStatus Retrieves the status of resources e.g whether we have reached maximum service capacity * @param ctx _context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). * @return ApiServiceStatusRequest

func (*DefaultApiService) ServiceStatusExecute

* Execute executes the request * @return ServiceStatus

func (*DefaultApiService) VersionMetadata

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

func (*DefaultApiService) VersionMetadataExecute

* Execute executes the request * @return VersionMetadata

type Error

type Error struct {
	Id          *string `json:"id,omitempty"`
	Kind        *string `json:"kind,omitempty"`
	Href        *string `json:"href,omitempty"`
	Code        *string `json:"code,omitempty"`
	Reason      *string `json:"reason,omitempty"`
	OperationId *string `json:"operation_id,omitempty"`
}

Error struct for Error

func NewError

func NewError() *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 if set, zero value otherwise.

func (*Error) GetCodeOk

func (o *Error) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise 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 if set, zero value otherwise.

func (*Error) GetHrefOk

func (o *Error) 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 (*Error) GetId

func (o *Error) GetId() string

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

func (*Error) GetIdOk

func (o *Error) 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 (*Error) GetKind

func (o *Error) GetKind() string

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

func (*Error) GetKindOk

func (o *Error) 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 (*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 if set, zero value otherwise.

func (*Error) GetReasonOk

func (o *Error) GetReasonOk() (*string, bool)

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

func (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasHref

func (o *Error) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*Error) HasId

func (o *Error) HasId() bool

HasId returns a boolean if a field has been set.

func (*Error) HasKind

func (o *Error) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*Error) HasOperationId

func (o *Error) HasOperationId() bool

HasOperationId returns a boolean if a field has been set.

func (*Error) HasReason

func (o *Error) HasReason() bool

HasReason 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 gets a reference to the given string and assigns it to the Code field.

func (*Error) SetHref

func (o *Error) SetHref(v string)

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

func (*Error) SetId

func (o *Error) SetId(v string)

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

func (*Error) SetKind

func (o *Error) SetKind(v string)

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

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 gets a reference to the given string and assigns it to the Reason field.

type ErrorAllOf

type ErrorAllOf struct {
	Code        *string `json:"code,omitempty"`
	Reason      *string `json:"reason,omitempty"`
	OperationId *string `json:"operation_id,omitempty"`
}

ErrorAllOf struct for ErrorAllOf

func NewErrorAllOf

func NewErrorAllOf() *ErrorAllOf

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

func NewErrorAllOfWithDefaults

func NewErrorAllOfWithDefaults() *ErrorAllOf

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

func (*ErrorAllOf) GetCode

func (o *ErrorAllOf) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*ErrorAllOf) GetCodeOk

func (o *ErrorAllOf) GetCodeOk() (*string, bool)

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

func (*ErrorAllOf) GetOperationId

func (o *ErrorAllOf) GetOperationId() string

GetOperationId returns the OperationId field value if set, zero value otherwise.

func (*ErrorAllOf) GetOperationIdOk

func (o *ErrorAllOf) 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 (*ErrorAllOf) GetReason

func (o *ErrorAllOf) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*ErrorAllOf) GetReasonOk

func (o *ErrorAllOf) GetReasonOk() (*string, bool)

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

func (*ErrorAllOf) HasCode

func (o *ErrorAllOf) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ErrorAllOf) HasOperationId

func (o *ErrorAllOf) HasOperationId() bool

HasOperationId returns a boolean if a field has been set.

func (*ErrorAllOf) HasReason

func (o *ErrorAllOf) HasReason() bool

HasReason returns a boolean if a field has been set.

func (ErrorAllOf) MarshalJSON

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

func (*ErrorAllOf) SetCode

func (o *ErrorAllOf) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ErrorAllOf) SetOperationId

func (o *ErrorAllOf) SetOperationId(v string)

SetOperationId gets a reference to the given string and assigns it to the OperationId field.

func (*ErrorAllOf) SetReason

func (o *ErrorAllOf) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

type ErrorList

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

ErrorList struct for ErrorList

func NewErrorList

func NewErrorList(kind string, page int32, size int32, total int32, items []Error) *ErrorList

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

func NewErrorListWithDefaults

func NewErrorListWithDefaults() *ErrorList

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

func (*ErrorList) GetItems

func (o *ErrorList) GetItems() []Error

GetItems returns the Items field value

func (*ErrorList) GetItemsOk

func (o *ErrorList) GetItemsOk() (*[]Error, bool)

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

func (*ErrorList) GetKind

func (o *ErrorList) GetKind() string

GetKind returns the Kind field value

func (*ErrorList) GetKindOk

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

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

func (*ErrorList) GetPage

func (o *ErrorList) GetPage() int32

GetPage returns the Page field value

func (*ErrorList) GetPageOk

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

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

func (*ErrorList) GetSize

func (o *ErrorList) GetSize() int32

GetSize returns the Size field value

func (*ErrorList) GetSizeOk

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

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

func (*ErrorList) GetTotal

func (o *ErrorList) GetTotal() int32

GetTotal returns the Total field value

func (*ErrorList) GetTotalOk

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

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

func (ErrorList) MarshalJSON

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

func (*ErrorList) SetItems

func (o *ErrorList) SetItems(v []Error)

SetItems sets field value

func (*ErrorList) SetKind

func (o *ErrorList) SetKind(v string)

SetKind sets field value

func (*ErrorList) SetPage

func (o *ErrorList) SetPage(v int32)

SetPage sets field value

func (*ErrorList) SetSize

func (o *ErrorList) SetSize(v int32)

SetSize sets field value

func (*ErrorList) SetTotal

func (o *ErrorList) SetTotal(v int32)

SetTotal sets field value

type ErrorListAllOf

type ErrorListAllOf struct {
	Items *[]Error `json:"items,omitempty"`
}

ErrorListAllOf struct for ErrorListAllOf

func NewErrorListAllOf

func NewErrorListAllOf() *ErrorListAllOf

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

func NewErrorListAllOfWithDefaults

func NewErrorListAllOfWithDefaults() *ErrorListAllOf

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

func (*ErrorListAllOf) GetItems

func (o *ErrorListAllOf) GetItems() []Error

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

func (*ErrorListAllOf) GetItemsOk

func (o *ErrorListAllOf) GetItemsOk() (*[]Error, 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 (*ErrorListAllOf) HasItems

func (o *ErrorListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ErrorListAllOf) MarshalJSON

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

func (*ErrorListAllOf) SetItems

func (o *ErrorListAllOf) SetItems(v []Error)

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

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type InstantQuery

type InstantQuery struct {
	Metric    *map[string]string `json:"metric,omitempty"`
	Timestamp *int64             `json:"Timestamp,omitempty"`
	Value     float64            `json:"Value"`
}

InstantQuery struct for InstantQuery

func NewInstantQuery

func NewInstantQuery(value float64) *InstantQuery

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

func NewInstantQueryWithDefaults

func NewInstantQueryWithDefaults() *InstantQuery

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

func (*InstantQuery) GetMetric

func (o *InstantQuery) GetMetric() map[string]string

GetMetric returns the Metric field value if set, zero value otherwise.

func (*InstantQuery) GetMetricOk

func (o *InstantQuery) GetMetricOk() (*map[string]string, bool)

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

func (*InstantQuery) GetTimestamp

func (o *InstantQuery) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*InstantQuery) GetTimestampOk

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

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

func (*InstantQuery) GetValue

func (o *InstantQuery) GetValue() float64

GetValue returns the Value field value

func (*InstantQuery) GetValueOk

func (o *InstantQuery) GetValueOk() (*float64, bool)

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

func (*InstantQuery) HasMetric

func (o *InstantQuery) HasMetric() bool

HasMetric returns a boolean if a field has been set.

func (*InstantQuery) HasTimestamp

func (o *InstantQuery) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (InstantQuery) MarshalJSON

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

func (*InstantQuery) SetMetric

func (o *InstantQuery) SetMetric(v map[string]string)

SetMetric gets a reference to the given map[string]string and assigns it to the Metric field.

func (*InstantQuery) SetTimestamp

func (o *InstantQuery) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*InstantQuery) SetValue

func (o *InstantQuery) SetValue(v float64)

SetValue sets field value

type KafkaRequest

type KafkaRequest struct {
	Id                  *string    `json:"id,omitempty"`
	Kind                *string    `json:"kind,omitempty"`
	Href                *string    `json:"href,omitempty"`
	Status              *string    `json:"status,omitempty"`
	CloudProvider       *string    `json:"cloud_provider,omitempty"`
	MultiAz             *bool      `json:"multi_az,omitempty"`
	Region              *string    `json:"region,omitempty"`
	Owner               *string    `json:"owner,omitempty"`
	Name                *string    `json:"name,omitempty"`
	BootstrapServerHost *string    `json:"bootstrapServerHost,omitempty"`
	CreatedAt           *time.Time `json:"created_at,omitempty"`
	UpdatedAt           *time.Time `json:"updated_at,omitempty"`
	FailedReason        *string    `json:"failed_reason,omitempty"`
	Version             *string    `json:"version,omitempty"`
}

KafkaRequest struct for KafkaRequest

func NewKafkaRequest

func NewKafkaRequest() *KafkaRequest

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

func NewKafkaRequestWithDefaults

func NewKafkaRequestWithDefaults() *KafkaRequest

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

func (*KafkaRequest) GetBootstrapServerHost

func (o *KafkaRequest) GetBootstrapServerHost() string

GetBootstrapServerHost returns the BootstrapServerHost field value if set, zero value otherwise.

func (*KafkaRequest) GetBootstrapServerHostOk

func (o *KafkaRequest) GetBootstrapServerHostOk() (*string, bool)

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

func (*KafkaRequest) GetCloudProvider

func (o *KafkaRequest) GetCloudProvider() string

GetCloudProvider returns the CloudProvider field value if set, zero value otherwise.

func (*KafkaRequest) GetCloudProviderOk

func (o *KafkaRequest) GetCloudProviderOk() (*string, bool)

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

func (*KafkaRequest) GetCreatedAt

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

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

func (*KafkaRequest) GetCreatedAtOk

func (o *KafkaRequest) 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 (*KafkaRequest) GetFailedReason

func (o *KafkaRequest) GetFailedReason() string

GetFailedReason returns the FailedReason field value if set, zero value otherwise.

func (*KafkaRequest) GetFailedReasonOk

func (o *KafkaRequest) GetFailedReasonOk() (*string, bool)

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

func (*KafkaRequest) GetHref

func (o *KafkaRequest) GetHref() string

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

func (*KafkaRequest) GetHrefOk

func (o *KafkaRequest) 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 (*KafkaRequest) GetId

func (o *KafkaRequest) GetId() string

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

func (*KafkaRequest) GetIdOk

func (o *KafkaRequest) 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 (*KafkaRequest) GetKind

func (o *KafkaRequest) GetKind() string

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

func (*KafkaRequest) GetKindOk

func (o *KafkaRequest) 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 (*KafkaRequest) GetMultiAz

func (o *KafkaRequest) GetMultiAz() bool

GetMultiAz returns the MultiAz field value if set, zero value otherwise.

func (*KafkaRequest) GetMultiAzOk

func (o *KafkaRequest) GetMultiAzOk() (*bool, bool)

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

func (*KafkaRequest) GetName

func (o *KafkaRequest) GetName() string

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

func (*KafkaRequest) GetNameOk

func (o *KafkaRequest) 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 (*KafkaRequest) GetOwner

func (o *KafkaRequest) GetOwner() string

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

func (*KafkaRequest) GetOwnerOk

func (o *KafkaRequest) 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 (*KafkaRequest) GetRegion

func (o *KafkaRequest) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*KafkaRequest) GetRegionOk

func (o *KafkaRequest) GetRegionOk() (*string, bool)

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

func (*KafkaRequest) GetStatus

func (o *KafkaRequest) GetStatus() string

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

func (*KafkaRequest) GetStatusOk

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

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

func (*KafkaRequest) GetUpdatedAt

func (o *KafkaRequest) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*KafkaRequest) GetUpdatedAtOk

func (o *KafkaRequest) GetUpdatedAtOk() (*time.Time, bool)

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

func (*KafkaRequest) GetVersion

func (o *KafkaRequest) GetVersion() string

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

func (*KafkaRequest) GetVersionOk

func (o *KafkaRequest) 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 (*KafkaRequest) HasBootstrapServerHost

func (o *KafkaRequest) HasBootstrapServerHost() bool

HasBootstrapServerHost returns a boolean if a field has been set.

func (*KafkaRequest) HasCloudProvider

func (o *KafkaRequest) HasCloudProvider() bool

HasCloudProvider returns a boolean if a field has been set.

func (*KafkaRequest) HasCreatedAt

func (o *KafkaRequest) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*KafkaRequest) HasFailedReason

func (o *KafkaRequest) HasFailedReason() bool

HasFailedReason returns a boolean if a field has been set.

func (*KafkaRequest) HasHref

func (o *KafkaRequest) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*KafkaRequest) HasId

func (o *KafkaRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*KafkaRequest) HasKind

func (o *KafkaRequest) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*KafkaRequest) HasMultiAz

func (o *KafkaRequest) HasMultiAz() bool

HasMultiAz returns a boolean if a field has been set.

func (*KafkaRequest) HasName

func (o *KafkaRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (*KafkaRequest) HasOwner

func (o *KafkaRequest) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*KafkaRequest) HasRegion

func (o *KafkaRequest) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*KafkaRequest) HasStatus

func (o *KafkaRequest) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*KafkaRequest) HasUpdatedAt

func (o *KafkaRequest) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*KafkaRequest) HasVersion

func (o *KafkaRequest) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (KafkaRequest) MarshalJSON

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

func (*KafkaRequest) SetBootstrapServerHost

func (o *KafkaRequest) SetBootstrapServerHost(v string)

SetBootstrapServerHost gets a reference to the given string and assigns it to the BootstrapServerHost field.

func (*KafkaRequest) SetCloudProvider

func (o *KafkaRequest) SetCloudProvider(v string)

SetCloudProvider gets a reference to the given string and assigns it to the CloudProvider field.

func (*KafkaRequest) SetCreatedAt

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

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

func (*KafkaRequest) SetFailedReason

func (o *KafkaRequest) SetFailedReason(v string)

SetFailedReason gets a reference to the given string and assigns it to the FailedReason field.

func (*KafkaRequest) SetHref

func (o *KafkaRequest) SetHref(v string)

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

func (*KafkaRequest) SetId

func (o *KafkaRequest) SetId(v string)

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

func (*KafkaRequest) SetKind

func (o *KafkaRequest) SetKind(v string)

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

func (*KafkaRequest) SetMultiAz

func (o *KafkaRequest) SetMultiAz(v bool)

SetMultiAz gets a reference to the given bool and assigns it to the MultiAz field.

func (*KafkaRequest) SetName

func (o *KafkaRequest) SetName(v string)

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

func (*KafkaRequest) SetOwner

func (o *KafkaRequest) SetOwner(v string)

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

func (*KafkaRequest) SetRegion

func (o *KafkaRequest) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*KafkaRequest) SetStatus

func (o *KafkaRequest) SetStatus(v string)

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

func (*KafkaRequest) SetUpdatedAt

func (o *KafkaRequest) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*KafkaRequest) SetVersion

func (o *KafkaRequest) SetVersion(v string)

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

type KafkaRequestAllOf

type KafkaRequestAllOf struct {
	Status              *string    `json:"status,omitempty"`
	CloudProvider       *string    `json:"cloud_provider,omitempty"`
	MultiAz             *bool      `json:"multi_az,omitempty"`
	Region              *string    `json:"region,omitempty"`
	Owner               *string    `json:"owner,omitempty"`
	Name                *string    `json:"name,omitempty"`
	BootstrapServerHost *string    `json:"bootstrapServerHost,omitempty"`
	CreatedAt           *time.Time `json:"created_at,omitempty"`
	UpdatedAt           *time.Time `json:"updated_at,omitempty"`
	FailedReason        *string    `json:"failed_reason,omitempty"`
	Version             *string    `json:"version,omitempty"`
}

KafkaRequestAllOf struct for KafkaRequestAllOf

func NewKafkaRequestAllOf

func NewKafkaRequestAllOf() *KafkaRequestAllOf

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

func NewKafkaRequestAllOfWithDefaults

func NewKafkaRequestAllOfWithDefaults() *KafkaRequestAllOf

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

func (*KafkaRequestAllOf) GetBootstrapServerHost

func (o *KafkaRequestAllOf) GetBootstrapServerHost() string

GetBootstrapServerHost returns the BootstrapServerHost field value if set, zero value otherwise.

func (*KafkaRequestAllOf) GetBootstrapServerHostOk

func (o *KafkaRequestAllOf) GetBootstrapServerHostOk() (*string, bool)

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

func (*KafkaRequestAllOf) GetCloudProvider

func (o *KafkaRequestAllOf) GetCloudProvider() string

GetCloudProvider returns the CloudProvider field value if set, zero value otherwise.

func (*KafkaRequestAllOf) GetCloudProviderOk

func (o *KafkaRequestAllOf) GetCloudProviderOk() (*string, bool)

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

func (*KafkaRequestAllOf) GetCreatedAt

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

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

func (*KafkaRequestAllOf) GetCreatedAtOk

func (o *KafkaRequestAllOf) 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 (*KafkaRequestAllOf) GetFailedReason

func (o *KafkaRequestAllOf) GetFailedReason() string

GetFailedReason returns the FailedReason field value if set, zero value otherwise.

func (*KafkaRequestAllOf) GetFailedReasonOk

func (o *KafkaRequestAllOf) GetFailedReasonOk() (*string, bool)

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

func (*KafkaRequestAllOf) GetMultiAz

func (o *KafkaRequestAllOf) GetMultiAz() bool

GetMultiAz returns the MultiAz field value if set, zero value otherwise.

func (*KafkaRequestAllOf) GetMultiAzOk

func (o *KafkaRequestAllOf) GetMultiAzOk() (*bool, bool)

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

func (*KafkaRequestAllOf) GetName

func (o *KafkaRequestAllOf) GetName() string

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

func (*KafkaRequestAllOf) GetNameOk

func (o *KafkaRequestAllOf) 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 (*KafkaRequestAllOf) GetOwner

func (o *KafkaRequestAllOf) GetOwner() string

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

func (*KafkaRequestAllOf) GetOwnerOk

func (o *KafkaRequestAllOf) 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 (*KafkaRequestAllOf) GetRegion

func (o *KafkaRequestAllOf) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*KafkaRequestAllOf) GetRegionOk

func (o *KafkaRequestAllOf) GetRegionOk() (*string, bool)

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

func (*KafkaRequestAllOf) GetStatus

func (o *KafkaRequestAllOf) GetStatus() string

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

func (*KafkaRequestAllOf) GetStatusOk

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

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

func (*KafkaRequestAllOf) GetUpdatedAt

func (o *KafkaRequestAllOf) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*KafkaRequestAllOf) GetUpdatedAtOk

func (o *KafkaRequestAllOf) GetUpdatedAtOk() (*time.Time, bool)

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

func (*KafkaRequestAllOf) GetVersion

func (o *KafkaRequestAllOf) GetVersion() string

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

func (*KafkaRequestAllOf) GetVersionOk

func (o *KafkaRequestAllOf) 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 (*KafkaRequestAllOf) HasBootstrapServerHost

func (o *KafkaRequestAllOf) HasBootstrapServerHost() bool

HasBootstrapServerHost returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasCloudProvider

func (o *KafkaRequestAllOf) HasCloudProvider() bool

HasCloudProvider returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasCreatedAt

func (o *KafkaRequestAllOf) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasFailedReason

func (o *KafkaRequestAllOf) HasFailedReason() bool

HasFailedReason returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasMultiAz

func (o *KafkaRequestAllOf) HasMultiAz() bool

HasMultiAz returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasName

func (o *KafkaRequestAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasOwner

func (o *KafkaRequestAllOf) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasRegion

func (o *KafkaRequestAllOf) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasStatus

func (o *KafkaRequestAllOf) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasUpdatedAt

func (o *KafkaRequestAllOf) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*KafkaRequestAllOf) HasVersion

func (o *KafkaRequestAllOf) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (KafkaRequestAllOf) MarshalJSON

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

func (*KafkaRequestAllOf) SetBootstrapServerHost

func (o *KafkaRequestAllOf) SetBootstrapServerHost(v string)

SetBootstrapServerHost gets a reference to the given string and assigns it to the BootstrapServerHost field.

func (*KafkaRequestAllOf) SetCloudProvider

func (o *KafkaRequestAllOf) SetCloudProvider(v string)

SetCloudProvider gets a reference to the given string and assigns it to the CloudProvider field.

func (*KafkaRequestAllOf) SetCreatedAt

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

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

func (*KafkaRequestAllOf) SetFailedReason

func (o *KafkaRequestAllOf) SetFailedReason(v string)

SetFailedReason gets a reference to the given string and assigns it to the FailedReason field.

func (*KafkaRequestAllOf) SetMultiAz

func (o *KafkaRequestAllOf) SetMultiAz(v bool)

SetMultiAz gets a reference to the given bool and assigns it to the MultiAz field.

func (*KafkaRequestAllOf) SetName

func (o *KafkaRequestAllOf) SetName(v string)

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

func (*KafkaRequestAllOf) SetOwner

func (o *KafkaRequestAllOf) SetOwner(v string)

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

func (*KafkaRequestAllOf) SetRegion

func (o *KafkaRequestAllOf) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*KafkaRequestAllOf) SetStatus

func (o *KafkaRequestAllOf) SetStatus(v string)

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

func (*KafkaRequestAllOf) SetUpdatedAt

func (o *KafkaRequestAllOf) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*KafkaRequestAllOf) SetVersion

func (o *KafkaRequestAllOf) SetVersion(v string)

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

type KafkaRequestList

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

KafkaRequestList struct for KafkaRequestList

func NewKafkaRequestList

func NewKafkaRequestList(kind string, page int32, size int32, total int32, items []KafkaRequest) *KafkaRequestList

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

func NewKafkaRequestListWithDefaults

func NewKafkaRequestListWithDefaults() *KafkaRequestList

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

func (*KafkaRequestList) GetItems

func (o *KafkaRequestList) GetItems() []KafkaRequest

GetItems returns the Items field value

func (*KafkaRequestList) GetItemsOk

func (o *KafkaRequestList) GetItemsOk() (*[]KafkaRequest, bool)

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

func (*KafkaRequestList) GetKind

func (o *KafkaRequestList) GetKind() string

GetKind returns the Kind field value

func (*KafkaRequestList) GetKindOk

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

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

func (*KafkaRequestList) GetPage

func (o *KafkaRequestList) GetPage() int32

GetPage returns the Page field value

func (*KafkaRequestList) GetPageOk

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

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

func (*KafkaRequestList) GetSize

func (o *KafkaRequestList) GetSize() int32

GetSize returns the Size field value

func (*KafkaRequestList) GetSizeOk

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

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

func (*KafkaRequestList) GetTotal

func (o *KafkaRequestList) GetTotal() int32

GetTotal returns the Total field value

func (*KafkaRequestList) GetTotalOk

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

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

func (KafkaRequestList) MarshalJSON

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

func (*KafkaRequestList) SetItems

func (o *KafkaRequestList) SetItems(v []KafkaRequest)

SetItems sets field value

func (*KafkaRequestList) SetKind

func (o *KafkaRequestList) SetKind(v string)

SetKind sets field value

func (*KafkaRequestList) SetPage

func (o *KafkaRequestList) SetPage(v int32)

SetPage sets field value

func (*KafkaRequestList) SetSize

func (o *KafkaRequestList) SetSize(v int32)

SetSize sets field value

func (*KafkaRequestList) SetTotal

func (o *KafkaRequestList) SetTotal(v int32)

SetTotal sets field value

type KafkaRequestListAllOf

type KafkaRequestListAllOf struct {
	Items *[]KafkaRequest `json:"items,omitempty"`
}

KafkaRequestListAllOf struct for KafkaRequestListAllOf

func NewKafkaRequestListAllOf

func NewKafkaRequestListAllOf() *KafkaRequestListAllOf

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

func NewKafkaRequestListAllOfWithDefaults

func NewKafkaRequestListAllOfWithDefaults() *KafkaRequestListAllOf

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

func (*KafkaRequestListAllOf) GetItems

func (o *KafkaRequestListAllOf) GetItems() []KafkaRequest

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

func (*KafkaRequestListAllOf) GetItemsOk

func (o *KafkaRequestListAllOf) GetItemsOk() (*[]KafkaRequest, 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 (*KafkaRequestListAllOf) HasItems

func (o *KafkaRequestListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (KafkaRequestListAllOf) MarshalJSON

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

func (*KafkaRequestListAllOf) SetItems

func (o *KafkaRequestListAllOf) SetItems(v []KafkaRequest)

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

type KafkaRequestPayload

type KafkaRequestPayload struct {
	// The cloud provider where the Kafka cluster will be created in
	CloudProvider *string `json:"cloud_provider,omitempty"`
	// Set this to true to configure the Kafka cluster to be multiAZ
	MultiAz *bool `json:"multi_az,omitempty"`
	// The name of the Kafka cluster. It must consist of lower-case alphanumeric characters or '-', start with an alphabetic character, and end with an alphanumeric character, and can not be longer than 32 characters.
	Name string `json:"name"`
	// The region where the Kafka cluster will be created in
	Region *string `json:"region,omitempty"`
}

KafkaRequestPayload Schema for the request body sent to /kafkas POST

func NewKafkaRequestPayload

func NewKafkaRequestPayload(name string) *KafkaRequestPayload

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

func NewKafkaRequestPayloadWithDefaults

func NewKafkaRequestPayloadWithDefaults() *KafkaRequestPayload

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

func (*KafkaRequestPayload) GetCloudProvider

func (o *KafkaRequestPayload) GetCloudProvider() string

GetCloudProvider returns the CloudProvider field value if set, zero value otherwise.

func (*KafkaRequestPayload) GetCloudProviderOk

func (o *KafkaRequestPayload) GetCloudProviderOk() (*string, bool)

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

func (*KafkaRequestPayload) GetMultiAz

func (o *KafkaRequestPayload) GetMultiAz() bool

GetMultiAz returns the MultiAz field value if set, zero value otherwise.

func (*KafkaRequestPayload) GetMultiAzOk

func (o *KafkaRequestPayload) GetMultiAzOk() (*bool, bool)

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

func (*KafkaRequestPayload) GetName

func (o *KafkaRequestPayload) GetName() string

GetName returns the Name field value

func (*KafkaRequestPayload) GetNameOk

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

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

func (*KafkaRequestPayload) GetRegion

func (o *KafkaRequestPayload) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*KafkaRequestPayload) GetRegionOk

func (o *KafkaRequestPayload) GetRegionOk() (*string, bool)

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

func (*KafkaRequestPayload) HasCloudProvider

func (o *KafkaRequestPayload) HasCloudProvider() bool

HasCloudProvider returns a boolean if a field has been set.

func (*KafkaRequestPayload) HasMultiAz

func (o *KafkaRequestPayload) HasMultiAz() bool

HasMultiAz returns a boolean if a field has been set.

func (*KafkaRequestPayload) HasRegion

func (o *KafkaRequestPayload) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (KafkaRequestPayload) MarshalJSON

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

func (*KafkaRequestPayload) SetCloudProvider

func (o *KafkaRequestPayload) SetCloudProvider(v string)

SetCloudProvider gets a reference to the given string and assigns it to the CloudProvider field.

func (*KafkaRequestPayload) SetMultiAz

func (o *KafkaRequestPayload) SetMultiAz(v bool)

SetMultiAz gets a reference to the given bool and assigns it to the MultiAz field.

func (*KafkaRequestPayload) SetName

func (o *KafkaRequestPayload) SetName(v string)

SetName sets field value

func (*KafkaRequestPayload) SetRegion

func (o *KafkaRequestPayload) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

type List

type List struct {
	Kind  string `json:"kind"`
	Page  int32  `json:"page"`
	Size  int32  `json:"size"`
	Total int32  `json:"total"`
}

List struct for List

func NewList

func NewList(kind string, page int32, size int32, total int32) *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) 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) 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 Metric

type Metric struct {
	Metric *map[string]string `json:"metric,omitempty"`
	Values *[]Values          `json:"values,omitempty"`
}

Metric struct for Metric

func NewMetric

func NewMetric() *Metric

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

func NewMetricWithDefaults

func NewMetricWithDefaults() *Metric

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

func (*Metric) GetMetric

func (o *Metric) GetMetric() map[string]string

GetMetric returns the Metric field value if set, zero value otherwise.

func (*Metric) GetMetricOk

func (o *Metric) GetMetricOk() (*map[string]string, bool)

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

func (*Metric) GetValues

func (o *Metric) GetValues() []Values

GetValues returns the Values field value if set, zero value otherwise.

func (*Metric) GetValuesOk

func (o *Metric) GetValuesOk() (*[]Values, bool)

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

func (*Metric) HasMetric

func (o *Metric) HasMetric() bool

HasMetric returns a boolean if a field has been set.

func (*Metric) HasValues

func (o *Metric) HasValues() bool

HasValues returns a boolean if a field has been set.

func (Metric) MarshalJSON

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

func (*Metric) SetMetric

func (o *Metric) SetMetric(v map[string]string)

SetMetric gets a reference to the given map[string]string and assigns it to the Metric field.

func (*Metric) SetValues

func (o *Metric) SetValues(v []Values)

SetValues gets a reference to the given []Values and assigns it to the Values field.

type MetricsInstantQueryList

type MetricsInstantQueryList struct {
	Kind  *string         `json:"kind,omitempty"`
	Id    *string         `json:"id,omitempty"`
	Items *[]InstantQuery `json:"items,omitempty"`
}

MetricsInstantQueryList struct for MetricsInstantQueryList

func NewMetricsInstantQueryList

func NewMetricsInstantQueryList() *MetricsInstantQueryList

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

func NewMetricsInstantQueryListWithDefaults

func NewMetricsInstantQueryListWithDefaults() *MetricsInstantQueryList

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

func (*MetricsInstantQueryList) GetId

func (o *MetricsInstantQueryList) GetId() string

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

func (*MetricsInstantQueryList) GetIdOk

func (o *MetricsInstantQueryList) 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 (*MetricsInstantQueryList) GetItems

func (o *MetricsInstantQueryList) GetItems() []InstantQuery

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

func (*MetricsInstantQueryList) GetItemsOk

func (o *MetricsInstantQueryList) GetItemsOk() (*[]InstantQuery, 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 (*MetricsInstantQueryList) GetKind

func (o *MetricsInstantQueryList) GetKind() string

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

func (*MetricsInstantQueryList) GetKindOk

func (o *MetricsInstantQueryList) 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 (*MetricsInstantQueryList) HasId

func (o *MetricsInstantQueryList) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetricsInstantQueryList) HasItems

func (o *MetricsInstantQueryList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*MetricsInstantQueryList) HasKind

func (o *MetricsInstantQueryList) HasKind() bool

HasKind returns a boolean if a field has been set.

func (MetricsInstantQueryList) MarshalJSON

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

func (*MetricsInstantQueryList) SetId

func (o *MetricsInstantQueryList) SetId(v string)

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

func (*MetricsInstantQueryList) SetItems

func (o *MetricsInstantQueryList) SetItems(v []InstantQuery)

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

func (*MetricsInstantQueryList) SetKind

func (o *MetricsInstantQueryList) SetKind(v string)

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

type MetricsInstantQueryListAllOf

type MetricsInstantQueryListAllOf struct {
	Kind  *string         `json:"kind,omitempty"`
	Id    *string         `json:"id,omitempty"`
	Items *[]InstantQuery `json:"items,omitempty"`
}

MetricsInstantQueryListAllOf struct for MetricsInstantQueryListAllOf

func NewMetricsInstantQueryListAllOf

func NewMetricsInstantQueryListAllOf() *MetricsInstantQueryListAllOf

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

func NewMetricsInstantQueryListAllOfWithDefaults

func NewMetricsInstantQueryListAllOfWithDefaults() *MetricsInstantQueryListAllOf

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

func (*MetricsInstantQueryListAllOf) GetId

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

func (*MetricsInstantQueryListAllOf) GetIdOk

func (o *MetricsInstantQueryListAllOf) 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 (*MetricsInstantQueryListAllOf) GetItems

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

func (*MetricsInstantQueryListAllOf) GetItemsOk

func (o *MetricsInstantQueryListAllOf) GetItemsOk() (*[]InstantQuery, 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 (*MetricsInstantQueryListAllOf) GetKind

func (o *MetricsInstantQueryListAllOf) GetKind() string

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

func (*MetricsInstantQueryListAllOf) GetKindOk

func (o *MetricsInstantQueryListAllOf) 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 (*MetricsInstantQueryListAllOf) HasId

HasId returns a boolean if a field has been set.

func (*MetricsInstantQueryListAllOf) HasItems

func (o *MetricsInstantQueryListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*MetricsInstantQueryListAllOf) HasKind

func (o *MetricsInstantQueryListAllOf) HasKind() bool

HasKind returns a boolean if a field has been set.

func (MetricsInstantQueryListAllOf) MarshalJSON

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

func (*MetricsInstantQueryListAllOf) SetId

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

func (*MetricsInstantQueryListAllOf) SetItems

func (o *MetricsInstantQueryListAllOf) SetItems(v []InstantQuery)

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

func (*MetricsInstantQueryListAllOf) SetKind

func (o *MetricsInstantQueryListAllOf) SetKind(v string)

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

type MetricsList

type MetricsList struct {
	Kind  *string   `json:"kind,omitempty"`
	Id    *string   `json:"id,omitempty"`
	Items *[]Metric `json:"items,omitempty"`
}

MetricsList struct for MetricsList

func NewMetricsList

func NewMetricsList() *MetricsList

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

func NewMetricsListWithDefaults

func NewMetricsListWithDefaults() *MetricsList

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

func (*MetricsList) GetId

func (o *MetricsList) GetId() string

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

func (*MetricsList) GetIdOk

func (o *MetricsList) 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 (*MetricsList) GetItems

func (o *MetricsList) GetItems() []Metric

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

func (*MetricsList) GetItemsOk

func (o *MetricsList) GetItemsOk() (*[]Metric, 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 (*MetricsList) GetKind

func (o *MetricsList) GetKind() string

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

func (*MetricsList) GetKindOk

func (o *MetricsList) 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 (*MetricsList) HasId

func (o *MetricsList) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetricsList) HasItems

func (o *MetricsList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*MetricsList) HasKind

func (o *MetricsList) HasKind() bool

HasKind returns a boolean if a field has been set.

func (MetricsList) MarshalJSON

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

func (*MetricsList) SetId

func (o *MetricsList) SetId(v string)

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

func (*MetricsList) SetItems

func (o *MetricsList) SetItems(v []Metric)

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

func (*MetricsList) SetKind

func (o *MetricsList) SetKind(v string)

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

type MetricsListAllOf

type MetricsListAllOf struct {
	Kind  *string   `json:"kind,omitempty"`
	Id    *string   `json:"id,omitempty"`
	Items *[]Metric `json:"items,omitempty"`
}

MetricsListAllOf struct for MetricsListAllOf

func NewMetricsListAllOf

func NewMetricsListAllOf() *MetricsListAllOf

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

func NewMetricsListAllOfWithDefaults

func NewMetricsListAllOfWithDefaults() *MetricsListAllOf

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

func (*MetricsListAllOf) GetId

func (o *MetricsListAllOf) GetId() string

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

func (*MetricsListAllOf) GetIdOk

func (o *MetricsListAllOf) 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 (*MetricsListAllOf) GetItems

func (o *MetricsListAllOf) GetItems() []Metric

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

func (*MetricsListAllOf) GetItemsOk

func (o *MetricsListAllOf) GetItemsOk() (*[]Metric, 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 (*MetricsListAllOf) GetKind

func (o *MetricsListAllOf) GetKind() string

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

func (*MetricsListAllOf) GetKindOk

func (o *MetricsListAllOf) 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 (*MetricsListAllOf) HasId

func (o *MetricsListAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetricsListAllOf) HasItems

func (o *MetricsListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*MetricsListAllOf) HasKind

func (o *MetricsListAllOf) HasKind() bool

HasKind returns a boolean if a field has been set.

func (MetricsListAllOf) MarshalJSON

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

func (*MetricsListAllOf) SetId

func (o *MetricsListAllOf) SetId(v string)

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

func (*MetricsListAllOf) SetItems

func (o *MetricsListAllOf) SetItems(v []Metric)

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

func (*MetricsListAllOf) SetKind

func (o *MetricsListAllOf) SetKind(v string)

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

type MetricsRangeQueryList

type MetricsRangeQueryList struct {
	Kind  *string       `json:"kind,omitempty"`
	Id    *string       `json:"id,omitempty"`
	Items *[]RangeQuery `json:"items,omitempty"`
}

MetricsRangeQueryList struct for MetricsRangeQueryList

func NewMetricsRangeQueryList

func NewMetricsRangeQueryList() *MetricsRangeQueryList

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

func NewMetricsRangeQueryListWithDefaults

func NewMetricsRangeQueryListWithDefaults() *MetricsRangeQueryList

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

func (*MetricsRangeQueryList) GetId

func (o *MetricsRangeQueryList) GetId() string

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

func (*MetricsRangeQueryList) GetIdOk

func (o *MetricsRangeQueryList) 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 (*MetricsRangeQueryList) GetItems

func (o *MetricsRangeQueryList) GetItems() []RangeQuery

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

func (*MetricsRangeQueryList) GetItemsOk

func (o *MetricsRangeQueryList) GetItemsOk() (*[]RangeQuery, 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 (*MetricsRangeQueryList) GetKind

func (o *MetricsRangeQueryList) GetKind() string

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

func (*MetricsRangeQueryList) GetKindOk

func (o *MetricsRangeQueryList) 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 (*MetricsRangeQueryList) HasId

func (o *MetricsRangeQueryList) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetricsRangeQueryList) HasItems

func (o *MetricsRangeQueryList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*MetricsRangeQueryList) HasKind

func (o *MetricsRangeQueryList) HasKind() bool

HasKind returns a boolean if a field has been set.

func (MetricsRangeQueryList) MarshalJSON

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

func (*MetricsRangeQueryList) SetId

func (o *MetricsRangeQueryList) SetId(v string)

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

func (*MetricsRangeQueryList) SetItems

func (o *MetricsRangeQueryList) SetItems(v []RangeQuery)

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

func (*MetricsRangeQueryList) SetKind

func (o *MetricsRangeQueryList) SetKind(v string)

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

type MetricsRangeQueryListAllOf

type MetricsRangeQueryListAllOf struct {
	Kind  *string       `json:"kind,omitempty"`
	Id    *string       `json:"id,omitempty"`
	Items *[]RangeQuery `json:"items,omitempty"`
}

MetricsRangeQueryListAllOf struct for MetricsRangeQueryListAllOf

func NewMetricsRangeQueryListAllOf

func NewMetricsRangeQueryListAllOf() *MetricsRangeQueryListAllOf

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

func NewMetricsRangeQueryListAllOfWithDefaults

func NewMetricsRangeQueryListAllOfWithDefaults() *MetricsRangeQueryListAllOf

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

func (*MetricsRangeQueryListAllOf) GetId

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

func (*MetricsRangeQueryListAllOf) GetIdOk

func (o *MetricsRangeQueryListAllOf) 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 (*MetricsRangeQueryListAllOf) GetItems

func (o *MetricsRangeQueryListAllOf) GetItems() []RangeQuery

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

func (*MetricsRangeQueryListAllOf) GetItemsOk

func (o *MetricsRangeQueryListAllOf) GetItemsOk() (*[]RangeQuery, 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 (*MetricsRangeQueryListAllOf) GetKind

func (o *MetricsRangeQueryListAllOf) GetKind() string

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

func (*MetricsRangeQueryListAllOf) GetKindOk

func (o *MetricsRangeQueryListAllOf) 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 (*MetricsRangeQueryListAllOf) HasId

func (o *MetricsRangeQueryListAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*MetricsRangeQueryListAllOf) HasItems

func (o *MetricsRangeQueryListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*MetricsRangeQueryListAllOf) HasKind

func (o *MetricsRangeQueryListAllOf) HasKind() bool

HasKind returns a boolean if a field has been set.

func (MetricsRangeQueryListAllOf) MarshalJSON

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

func (*MetricsRangeQueryListAllOf) SetId

func (o *MetricsRangeQueryListAllOf) SetId(v string)

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

func (*MetricsRangeQueryListAllOf) SetItems

func (o *MetricsRangeQueryListAllOf) SetItems(v []RangeQuery)

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

func (*MetricsRangeQueryListAllOf) SetKind

func (o *MetricsRangeQueryListAllOf) SetKind(v string)

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

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 NullableCloudProvider

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

func NewNullableCloudProvider

func NewNullableCloudProvider(val *CloudProvider) *NullableCloudProvider

func (NullableCloudProvider) Get

func (NullableCloudProvider) IsSet

func (v NullableCloudProvider) IsSet() bool

func (NullableCloudProvider) MarshalJSON

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

func (*NullableCloudProvider) Set

func (v *NullableCloudProvider) Set(val *CloudProvider)

func (*NullableCloudProvider) UnmarshalJSON

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

func (*NullableCloudProvider) Unset

func (v *NullableCloudProvider) Unset()

type NullableCloudProviderList

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

func NewNullableCloudProviderList

func NewNullableCloudProviderList(val *CloudProviderList) *NullableCloudProviderList

func (NullableCloudProviderList) Get

func (NullableCloudProviderList) IsSet

func (v NullableCloudProviderList) IsSet() bool

func (NullableCloudProviderList) MarshalJSON

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

func (*NullableCloudProviderList) Set

func (*NullableCloudProviderList) UnmarshalJSON

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

func (*NullableCloudProviderList) Unset

func (v *NullableCloudProviderList) Unset()

type NullableCloudProviderListAllOf

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

func (NullableCloudProviderListAllOf) Get

func (NullableCloudProviderListAllOf) IsSet

func (NullableCloudProviderListAllOf) MarshalJSON

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

func (*NullableCloudProviderListAllOf) Set

func (*NullableCloudProviderListAllOf) UnmarshalJSON

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

func (*NullableCloudProviderListAllOf) Unset

func (v *NullableCloudProviderListAllOf) Unset()

type NullableCloudRegion

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

func NewNullableCloudRegion

func NewNullableCloudRegion(val *CloudRegion) *NullableCloudRegion

func (NullableCloudRegion) Get

func (NullableCloudRegion) IsSet

func (v NullableCloudRegion) IsSet() bool

func (NullableCloudRegion) MarshalJSON

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

func (*NullableCloudRegion) Set

func (v *NullableCloudRegion) Set(val *CloudRegion)

func (*NullableCloudRegion) UnmarshalJSON

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

func (*NullableCloudRegion) Unset

func (v *NullableCloudRegion) Unset()

type NullableCloudRegionList

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

func NewNullableCloudRegionList

func NewNullableCloudRegionList(val *CloudRegionList) *NullableCloudRegionList

func (NullableCloudRegionList) Get

func (NullableCloudRegionList) IsSet

func (v NullableCloudRegionList) IsSet() bool

func (NullableCloudRegionList) MarshalJSON

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

func (*NullableCloudRegionList) Set

func (*NullableCloudRegionList) UnmarshalJSON

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

func (*NullableCloudRegionList) Unset

func (v *NullableCloudRegionList) Unset()

type NullableCloudRegionListAllOf

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

func NewNullableCloudRegionListAllOf

func NewNullableCloudRegionListAllOf(val *CloudRegionListAllOf) *NullableCloudRegionListAllOf

func (NullableCloudRegionListAllOf) Get

func (NullableCloudRegionListAllOf) IsSet

func (NullableCloudRegionListAllOf) MarshalJSON

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

func (*NullableCloudRegionListAllOf) Set

func (*NullableCloudRegionListAllOf) UnmarshalJSON

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

func (*NullableCloudRegionListAllOf) Unset

func (v *NullableCloudRegionListAllOf) 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 NullableConnectorAllOf

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

func NewNullableConnectorAllOf

func NewNullableConnectorAllOf(val *ConnectorAllOf) *NullableConnectorAllOf

func (NullableConnectorAllOf) Get

func (NullableConnectorAllOf) IsSet

func (v NullableConnectorAllOf) IsSet() bool

func (NullableConnectorAllOf) MarshalJSON

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

func (*NullableConnectorAllOf) Set

func (*NullableConnectorAllOf) UnmarshalJSON

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

func (*NullableConnectorAllOf) Unset

func (v *NullableConnectorAllOf) Unset()

type NullableConnectorAllOfDeploymentLocation

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

func (NullableConnectorAllOfDeploymentLocation) Get

func (NullableConnectorAllOfDeploymentLocation) IsSet

func (NullableConnectorAllOfDeploymentLocation) MarshalJSON

func (*NullableConnectorAllOfDeploymentLocation) Set

func (*NullableConnectorAllOfDeploymentLocation) UnmarshalJSON

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

func (*NullableConnectorAllOfDeploymentLocation) Unset

type NullableConnectorAllOfMetadata

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

func (NullableConnectorAllOfMetadata) Get

func (NullableConnectorAllOfMetadata) IsSet

func (NullableConnectorAllOfMetadata) MarshalJSON

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

func (*NullableConnectorAllOfMetadata) Set

func (*NullableConnectorAllOfMetadata) UnmarshalJSON

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

func (*NullableConnectorAllOfMetadata) Unset

func (v *NullableConnectorAllOfMetadata) 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 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 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 NullableDataPlaneClusterUpdateStatusRequest

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

func (NullableDataPlaneClusterUpdateStatusRequest) Get

func (NullableDataPlaneClusterUpdateStatusRequest) IsSet

func (NullableDataPlaneClusterUpdateStatusRequest) MarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequest) Set

func (*NullableDataPlaneClusterUpdateStatusRequest) UnmarshalJSON

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

func (*NullableDataPlaneClusterUpdateStatusRequest) Unset

type NullableDataPlaneClusterUpdateStatusRequestConditions

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

func (NullableDataPlaneClusterUpdateStatusRequestConditions) Get

func (NullableDataPlaneClusterUpdateStatusRequestConditions) IsSet

func (NullableDataPlaneClusterUpdateStatusRequestConditions) MarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestConditions) Set

func (*NullableDataPlaneClusterUpdateStatusRequestConditions) UnmarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestConditions) Unset

type NullableDataPlaneClusterUpdateStatusRequestNodeInfo

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

func (NullableDataPlaneClusterUpdateStatusRequestNodeInfo) Get

func (NullableDataPlaneClusterUpdateStatusRequestNodeInfo) IsSet

func (NullableDataPlaneClusterUpdateStatusRequestNodeInfo) MarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestNodeInfo) Set

func (*NullableDataPlaneClusterUpdateStatusRequestNodeInfo) UnmarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestNodeInfo) Unset

type NullableDataPlaneClusterUpdateStatusRequestResizeInfo

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

func (NullableDataPlaneClusterUpdateStatusRequestResizeInfo) Get

func (NullableDataPlaneClusterUpdateStatusRequestResizeInfo) IsSet

func (NullableDataPlaneClusterUpdateStatusRequestResizeInfo) MarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestResizeInfo) Set

func (*NullableDataPlaneClusterUpdateStatusRequestResizeInfo) UnmarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestResizeInfo) Unset

type NullableDataPlaneClusterUpdateStatusRequestResizeInfoDelta

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

func (NullableDataPlaneClusterUpdateStatusRequestResizeInfoDelta) Get

func (NullableDataPlaneClusterUpdateStatusRequestResizeInfoDelta) IsSet

func (NullableDataPlaneClusterUpdateStatusRequestResizeInfoDelta) MarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestResizeInfoDelta) Set

func (*NullableDataPlaneClusterUpdateStatusRequestResizeInfoDelta) UnmarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestResizeInfoDelta) Unset

type NullableDataPlaneClusterUpdateStatusRequestTotal

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

func (NullableDataPlaneClusterUpdateStatusRequestTotal) Get

func (NullableDataPlaneClusterUpdateStatusRequestTotal) IsSet

func (NullableDataPlaneClusterUpdateStatusRequestTotal) MarshalJSON

func (*NullableDataPlaneClusterUpdateStatusRequestTotal) Set

func (*NullableDataPlaneClusterUpdateStatusRequestTotal) UnmarshalJSON

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

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

func NewNullableErrorAllOf

func NewNullableErrorAllOf(val *ErrorAllOf) *NullableErrorAllOf

func (NullableErrorAllOf) Get

func (v NullableErrorAllOf) Get() *ErrorAllOf

func (NullableErrorAllOf) IsSet

func (v NullableErrorAllOf) IsSet() bool

func (NullableErrorAllOf) MarshalJSON

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

func (*NullableErrorAllOf) Set

func (v *NullableErrorAllOf) Set(val *ErrorAllOf)

func (*NullableErrorAllOf) UnmarshalJSON

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

func (*NullableErrorAllOf) Unset

func (v *NullableErrorAllOf) Unset()

type NullableErrorList

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

func NewNullableErrorList

func NewNullableErrorList(val *ErrorList) *NullableErrorList

func (NullableErrorList) Get

func (v NullableErrorList) Get() *ErrorList

func (NullableErrorList) IsSet

func (v NullableErrorList) IsSet() bool

func (NullableErrorList) MarshalJSON

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

func (*NullableErrorList) Set

func (v *NullableErrorList) Set(val *ErrorList)

func (*NullableErrorList) UnmarshalJSON

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

func (*NullableErrorList) Unset

func (v *NullableErrorList) Unset()

type NullableErrorListAllOf

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

func NewNullableErrorListAllOf

func NewNullableErrorListAllOf(val *ErrorListAllOf) *NullableErrorListAllOf

func (NullableErrorListAllOf) Get

func (NullableErrorListAllOf) IsSet

func (v NullableErrorListAllOf) IsSet() bool

func (NullableErrorListAllOf) MarshalJSON

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

func (*NullableErrorListAllOf) Set

func (*NullableErrorListAllOf) UnmarshalJSON

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

func (*NullableErrorListAllOf) Unset

func (v *NullableErrorListAllOf) 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 NullableInstantQuery

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

func NewNullableInstantQuery

func NewNullableInstantQuery(val *InstantQuery) *NullableInstantQuery

func (NullableInstantQuery) Get

func (NullableInstantQuery) IsSet

func (v NullableInstantQuery) IsSet() bool

func (NullableInstantQuery) MarshalJSON

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

func (*NullableInstantQuery) Set

func (v *NullableInstantQuery) Set(val *InstantQuery)

func (*NullableInstantQuery) UnmarshalJSON

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

func (*NullableInstantQuery) Unset

func (v *NullableInstantQuery) 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 NullableKafkaRequest

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

func NewNullableKafkaRequest

func NewNullableKafkaRequest(val *KafkaRequest) *NullableKafkaRequest

func (NullableKafkaRequest) Get

func (NullableKafkaRequest) IsSet

func (v NullableKafkaRequest) IsSet() bool

func (NullableKafkaRequest) MarshalJSON

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

func (*NullableKafkaRequest) Set

func (v *NullableKafkaRequest) Set(val *KafkaRequest)

func (*NullableKafkaRequest) UnmarshalJSON

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

func (*NullableKafkaRequest) Unset

func (v *NullableKafkaRequest) Unset()

type NullableKafkaRequestAllOf

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

func NewNullableKafkaRequestAllOf

func NewNullableKafkaRequestAllOf(val *KafkaRequestAllOf) *NullableKafkaRequestAllOf

func (NullableKafkaRequestAllOf) Get

func (NullableKafkaRequestAllOf) IsSet

func (v NullableKafkaRequestAllOf) IsSet() bool

func (NullableKafkaRequestAllOf) MarshalJSON

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

func (*NullableKafkaRequestAllOf) Set

func (*NullableKafkaRequestAllOf) UnmarshalJSON

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

func (*NullableKafkaRequestAllOf) Unset

func (v *NullableKafkaRequestAllOf) Unset()

type NullableKafkaRequestList

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

func NewNullableKafkaRequestList

func NewNullableKafkaRequestList(val *KafkaRequestList) *NullableKafkaRequestList

func (NullableKafkaRequestList) Get

func (NullableKafkaRequestList) IsSet

func (v NullableKafkaRequestList) IsSet() bool

func (NullableKafkaRequestList) MarshalJSON

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

func (*NullableKafkaRequestList) Set

func (*NullableKafkaRequestList) UnmarshalJSON

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

func (*NullableKafkaRequestList) Unset

func (v *NullableKafkaRequestList) Unset()

type NullableKafkaRequestListAllOf

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

func (NullableKafkaRequestListAllOf) Get

func (NullableKafkaRequestListAllOf) IsSet

func (NullableKafkaRequestListAllOf) MarshalJSON

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

func (*NullableKafkaRequestListAllOf) Set

func (*NullableKafkaRequestListAllOf) UnmarshalJSON

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

func (*NullableKafkaRequestListAllOf) Unset

func (v *NullableKafkaRequestListAllOf) Unset()

type NullableKafkaRequestPayload

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

func NewNullableKafkaRequestPayload

func NewNullableKafkaRequestPayload(val *KafkaRequestPayload) *NullableKafkaRequestPayload

func (NullableKafkaRequestPayload) Get

func (NullableKafkaRequestPayload) IsSet

func (NullableKafkaRequestPayload) MarshalJSON

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

func (*NullableKafkaRequestPayload) Set

func (*NullableKafkaRequestPayload) UnmarshalJSON

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

func (*NullableKafkaRequestPayload) Unset

func (v *NullableKafkaRequestPayload) 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 NullableMetric

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

func NewNullableMetric

func NewNullableMetric(val *Metric) *NullableMetric

func (NullableMetric) Get

func (v NullableMetric) Get() *Metric

func (NullableMetric) IsSet

func (v NullableMetric) IsSet() bool

func (NullableMetric) MarshalJSON

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

func (*NullableMetric) Set

func (v *NullableMetric) Set(val *Metric)

func (*NullableMetric) UnmarshalJSON

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

func (*NullableMetric) Unset

func (v *NullableMetric) Unset()

type NullableMetricsInstantQueryList

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

func (NullableMetricsInstantQueryList) Get

func (NullableMetricsInstantQueryList) IsSet

func (NullableMetricsInstantQueryList) MarshalJSON

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

func (*NullableMetricsInstantQueryList) Set

func (*NullableMetricsInstantQueryList) UnmarshalJSON

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

func (*NullableMetricsInstantQueryList) Unset

type NullableMetricsInstantQueryListAllOf

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

func (NullableMetricsInstantQueryListAllOf) Get

func (NullableMetricsInstantQueryListAllOf) IsSet

func (NullableMetricsInstantQueryListAllOf) MarshalJSON

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

func (*NullableMetricsInstantQueryListAllOf) Set

func (*NullableMetricsInstantQueryListAllOf) UnmarshalJSON

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

func (*NullableMetricsInstantQueryListAllOf) Unset

type NullableMetricsList

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

func NewNullableMetricsList

func NewNullableMetricsList(val *MetricsList) *NullableMetricsList

func (NullableMetricsList) Get

func (NullableMetricsList) IsSet

func (v NullableMetricsList) IsSet() bool

func (NullableMetricsList) MarshalJSON

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

func (*NullableMetricsList) Set

func (v *NullableMetricsList) Set(val *MetricsList)

func (*NullableMetricsList) UnmarshalJSON

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

func (*NullableMetricsList) Unset

func (v *NullableMetricsList) Unset()

type NullableMetricsListAllOf

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

func NewNullableMetricsListAllOf

func NewNullableMetricsListAllOf(val *MetricsListAllOf) *NullableMetricsListAllOf

func (NullableMetricsListAllOf) Get

func (NullableMetricsListAllOf) IsSet

func (v NullableMetricsListAllOf) IsSet() bool

func (NullableMetricsListAllOf) MarshalJSON

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

func (*NullableMetricsListAllOf) Set

func (*NullableMetricsListAllOf) UnmarshalJSON

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

func (*NullableMetricsListAllOf) Unset

func (v *NullableMetricsListAllOf) Unset()

type NullableMetricsRangeQueryList

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

func (NullableMetricsRangeQueryList) Get

func (NullableMetricsRangeQueryList) IsSet

func (NullableMetricsRangeQueryList) MarshalJSON

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

func (*NullableMetricsRangeQueryList) Set

func (*NullableMetricsRangeQueryList) UnmarshalJSON

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

func (*NullableMetricsRangeQueryList) Unset

func (v *NullableMetricsRangeQueryList) Unset()

type NullableMetricsRangeQueryListAllOf

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

func (NullableMetricsRangeQueryListAllOf) Get

func (NullableMetricsRangeQueryListAllOf) IsSet

func (NullableMetricsRangeQueryListAllOf) MarshalJSON

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

func (*NullableMetricsRangeQueryListAllOf) Set

func (*NullableMetricsRangeQueryListAllOf) UnmarshalJSON

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

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

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

func NewNullableRangeQuery

func NewNullableRangeQuery(val *RangeQuery) *NullableRangeQuery

func (NullableRangeQuery) Get

func (v NullableRangeQuery) Get() *RangeQuery

func (NullableRangeQuery) IsSet

func (v NullableRangeQuery) IsSet() bool

func (NullableRangeQuery) MarshalJSON

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

func (*NullableRangeQuery) Set

func (v *NullableRangeQuery) Set(val *RangeQuery)

func (*NullableRangeQuery) UnmarshalJSON

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

func (*NullableRangeQuery) Unset

func (v *NullableRangeQuery) Unset()

type NullableServiceAccount

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

func NewNullableServiceAccount

func NewNullableServiceAccount(val *ServiceAccount) *NullableServiceAccount

func (NullableServiceAccount) Get

func (NullableServiceAccount) IsSet

func (v NullableServiceAccount) IsSet() bool

func (NullableServiceAccount) MarshalJSON

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

func (*NullableServiceAccount) Set

func (*NullableServiceAccount) UnmarshalJSON

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

func (*NullableServiceAccount) Unset

func (v *NullableServiceAccount) Unset()

type NullableServiceAccountAllOf

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

func NewNullableServiceAccountAllOf

func NewNullableServiceAccountAllOf(val *ServiceAccountAllOf) *NullableServiceAccountAllOf

func (NullableServiceAccountAllOf) Get

func (NullableServiceAccountAllOf) IsSet

func (NullableServiceAccountAllOf) MarshalJSON

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

func (*NullableServiceAccountAllOf) Set

func (*NullableServiceAccountAllOf) UnmarshalJSON

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

func (*NullableServiceAccountAllOf) Unset

func (v *NullableServiceAccountAllOf) Unset()

type NullableServiceAccountList

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

func NewNullableServiceAccountList

func NewNullableServiceAccountList(val *ServiceAccountList) *NullableServiceAccountList

func (NullableServiceAccountList) Get

func (NullableServiceAccountList) IsSet

func (v NullableServiceAccountList) IsSet() bool

func (NullableServiceAccountList) MarshalJSON

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

func (*NullableServiceAccountList) Set

func (*NullableServiceAccountList) UnmarshalJSON

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

func (*NullableServiceAccountList) Unset

func (v *NullableServiceAccountList) Unset()

type NullableServiceAccountListAllOf

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

func (NullableServiceAccountListAllOf) Get

func (NullableServiceAccountListAllOf) IsSet

func (NullableServiceAccountListAllOf) MarshalJSON

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

func (*NullableServiceAccountListAllOf) Set

func (*NullableServiceAccountListAllOf) UnmarshalJSON

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

func (*NullableServiceAccountListAllOf) Unset

type NullableServiceAccountListItem

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

func (NullableServiceAccountListItem) Get

func (NullableServiceAccountListItem) IsSet

func (NullableServiceAccountListItem) MarshalJSON

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

func (*NullableServiceAccountListItem) Set

func (*NullableServiceAccountListItem) UnmarshalJSON

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

func (*NullableServiceAccountListItem) Unset

func (v *NullableServiceAccountListItem) Unset()

type NullableServiceAccountListItemAllOf

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

func (NullableServiceAccountListItemAllOf) Get

func (NullableServiceAccountListItemAllOf) IsSet

func (NullableServiceAccountListItemAllOf) MarshalJSON

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

func (*NullableServiceAccountListItemAllOf) Set

func (*NullableServiceAccountListItemAllOf) UnmarshalJSON

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

func (*NullableServiceAccountListItemAllOf) Unset

type NullableServiceAccountRequest

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

func (NullableServiceAccountRequest) Get

func (NullableServiceAccountRequest) IsSet

func (NullableServiceAccountRequest) MarshalJSON

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

func (*NullableServiceAccountRequest) Set

func (*NullableServiceAccountRequest) UnmarshalJSON

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

func (*NullableServiceAccountRequest) Unset

func (v *NullableServiceAccountRequest) Unset()

type NullableServiceStatus

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

func NewNullableServiceStatus

func NewNullableServiceStatus(val *ServiceStatus) *NullableServiceStatus

func (NullableServiceStatus) Get

func (NullableServiceStatus) IsSet

func (v NullableServiceStatus) IsSet() bool

func (NullableServiceStatus) MarshalJSON

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

func (*NullableServiceStatus) Set

func (v *NullableServiceStatus) Set(val *ServiceStatus)

func (*NullableServiceStatus) UnmarshalJSON

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

func (*NullableServiceStatus) Unset

func (v *NullableServiceStatus) Unset()

type NullableServiceStatusKafkas

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

func NewNullableServiceStatusKafkas

func NewNullableServiceStatusKafkas(val *ServiceStatusKafkas) *NullableServiceStatusKafkas

func (NullableServiceStatusKafkas) Get

func (NullableServiceStatusKafkas) IsSet

func (NullableServiceStatusKafkas) MarshalJSON

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

func (*NullableServiceStatusKafkas) Set

func (*NullableServiceStatusKafkas) UnmarshalJSON

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

func (*NullableServiceStatusKafkas) Unset

func (v *NullableServiceStatusKafkas) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableValues

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

func NewNullableValues

func NewNullableValues(val *Values) *NullableValues

func (NullableValues) Get

func (v NullableValues) Get() *Values

func (NullableValues) IsSet

func (v NullableValues) IsSet() bool

func (NullableValues) MarshalJSON

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

func (*NullableValues) Set

func (v *NullableValues) Set(val *Values)

func (*NullableValues) UnmarshalJSON

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

func (*NullableValues) Unset

func (v *NullableValues) Unset()

type NullableVersionMetadata

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

func NewNullableVersionMetadata

func NewNullableVersionMetadata(val *VersionMetadata) *NullableVersionMetadata

func (NullableVersionMetadata) Get

func (NullableVersionMetadata) IsSet

func (v NullableVersionMetadata) IsSet() bool

func (NullableVersionMetadata) MarshalJSON

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

func (*NullableVersionMetadata) Set

func (*NullableVersionMetadata) UnmarshalJSON

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

func (*NullableVersionMetadata) Unset

func (v *NullableVersionMetadata) Unset()

type NullableVersionMetadataAllOf

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

func NewNullableVersionMetadataAllOf

func NewNullableVersionMetadataAllOf(val *VersionMetadataAllOf) *NullableVersionMetadataAllOf

func (NullableVersionMetadataAllOf) Get

func (NullableVersionMetadataAllOf) IsSet

func (NullableVersionMetadataAllOf) MarshalJSON

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

func (*NullableVersionMetadataAllOf) Set

func (*NullableVersionMetadataAllOf) UnmarshalJSON

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

func (*NullableVersionMetadataAllOf) Unset

func (v *NullableVersionMetadataAllOf) Unset()

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 RangeQuery

type RangeQuery struct {
	Metric *map[string]string `json:"metric,omitempty"`
	Values *[]Values          `json:"values,omitempty"`
}

RangeQuery struct for RangeQuery

func NewRangeQuery

func NewRangeQuery() *RangeQuery

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

func NewRangeQueryWithDefaults

func NewRangeQueryWithDefaults() *RangeQuery

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

func (*RangeQuery) GetMetric

func (o *RangeQuery) GetMetric() map[string]string

GetMetric returns the Metric field value if set, zero value otherwise.

func (*RangeQuery) GetMetricOk

func (o *RangeQuery) GetMetricOk() (*map[string]string, bool)

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

func (*RangeQuery) GetValues

func (o *RangeQuery) GetValues() []Values

GetValues returns the Values field value if set, zero value otherwise.

func (*RangeQuery) GetValuesOk

func (o *RangeQuery) GetValuesOk() (*[]Values, bool)

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

func (*RangeQuery) HasMetric

func (o *RangeQuery) HasMetric() bool

HasMetric returns a boolean if a field has been set.

func (*RangeQuery) HasValues

func (o *RangeQuery) HasValues() bool

HasValues returns a boolean if a field has been set.

func (RangeQuery) MarshalJSON

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

func (*RangeQuery) SetMetric

func (o *RangeQuery) SetMetric(v map[string]string)

SetMetric gets a reference to the given map[string]string and assigns it to the Metric field.

func (*RangeQuery) SetValues

func (o *RangeQuery) SetValues(v []Values)

SetValues gets a reference to the given []Values and assigns it to the Values field.

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

type ServiceAccount struct {
	// server generated unique id of the service account
	Id           *string    `json:"id,omitempty"`
	Kind         *string    `json:"kind,omitempty"`
	Href         *string    `json:"href,omitempty"`
	Name         *string    `json:"name,omitempty"`
	Description  *string    `json:"description,omitempty"`
	ClientID     *string    `json:"clientID,omitempty"`
	ClientSecret *string    `json:"clientSecret,omitempty"`
	Owner        *string    `json:"owner,omitempty"`
	CreatedAt    *time.Time `json:"created_at,omitempty"`
}

ServiceAccount Service Account created in MAS-SSO for the Kafka Cluster for authentication

func NewServiceAccount

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

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

func (o *ServiceAccount) GetClientID() string

GetClientID returns the ClientID field value if set, zero value otherwise.

func (*ServiceAccount) GetClientIDOk

func (o *ServiceAccount) GetClientIDOk() (*string, bool)

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

func (*ServiceAccount) GetClientSecret

func (o *ServiceAccount) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*ServiceAccount) GetClientSecretOk

func (o *ServiceAccount) GetClientSecretOk() (*string, bool)

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

func (*ServiceAccount) GetCreatedAt

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

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

func (*ServiceAccount) GetCreatedAtOk

func (o *ServiceAccount) 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 (*ServiceAccount) GetDescription

func (o *ServiceAccount) GetDescription() string

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

func (*ServiceAccount) GetDescriptionOk

func (o *ServiceAccount) 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 (*ServiceAccount) GetHref

func (o *ServiceAccount) GetHref() string

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

func (*ServiceAccount) GetHrefOk

func (o *ServiceAccount) 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 (*ServiceAccount) GetId

func (o *ServiceAccount) GetId() string

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

func (*ServiceAccount) GetIdOk

func (o *ServiceAccount) 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 (*ServiceAccount) GetKind

func (o *ServiceAccount) GetKind() string

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

func (*ServiceAccount) GetKindOk

func (o *ServiceAccount) 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 (*ServiceAccount) GetName

func (o *ServiceAccount) GetName() string

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

func (*ServiceAccount) GetNameOk

func (o *ServiceAccount) 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 (*ServiceAccount) GetOwner

func (o *ServiceAccount) GetOwner() string

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

func (*ServiceAccount) GetOwnerOk

func (o *ServiceAccount) 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 (*ServiceAccount) HasClientID

func (o *ServiceAccount) HasClientID() bool

HasClientID returns a boolean if a field has been set.

func (*ServiceAccount) HasClientSecret

func (o *ServiceAccount) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*ServiceAccount) HasCreatedAt

func (o *ServiceAccount) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ServiceAccount) HasDescription

func (o *ServiceAccount) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceAccount) HasHref

func (o *ServiceAccount) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ServiceAccount) HasId

func (o *ServiceAccount) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceAccount) HasKind

func (o *ServiceAccount) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ServiceAccount) HasName

func (o *ServiceAccount) HasName() bool

HasName returns a boolean if a field has been set.

func (*ServiceAccount) HasOwner

func (o *ServiceAccount) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (ServiceAccount) MarshalJSON

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

func (*ServiceAccount) SetClientID

func (o *ServiceAccount) SetClientID(v string)

SetClientID gets a reference to the given string and assigns it to the ClientID field.

func (*ServiceAccount) SetClientSecret

func (o *ServiceAccount) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*ServiceAccount) SetCreatedAt

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

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

func (*ServiceAccount) SetDescription

func (o *ServiceAccount) SetDescription(v string)

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

func (*ServiceAccount) SetHref

func (o *ServiceAccount) SetHref(v string)

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

func (*ServiceAccount) SetId

func (o *ServiceAccount) SetId(v string)

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

func (*ServiceAccount) SetKind

func (o *ServiceAccount) SetKind(v string)

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

func (*ServiceAccount) SetName

func (o *ServiceAccount) SetName(v string)

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

func (*ServiceAccount) SetOwner

func (o *ServiceAccount) SetOwner(v string)

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

type ServiceAccountAllOf

type ServiceAccountAllOf struct {
	// server generated unique id of the service account
	Id           *string    `json:"id,omitempty"`
	Name         *string    `json:"name,omitempty"`
	Description  *string    `json:"description,omitempty"`
	ClientID     *string    `json:"clientID,omitempty"`
	ClientSecret *string    `json:"clientSecret,omitempty"`
	Owner        *string    `json:"owner,omitempty"`
	CreatedAt    *time.Time `json:"created_at,omitempty"`
}

ServiceAccountAllOf struct for ServiceAccountAllOf

func NewServiceAccountAllOf

func NewServiceAccountAllOf() *ServiceAccountAllOf

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

func NewServiceAccountAllOfWithDefaults

func NewServiceAccountAllOfWithDefaults() *ServiceAccountAllOf

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

func (*ServiceAccountAllOf) GetClientID

func (o *ServiceAccountAllOf) GetClientID() string

GetClientID returns the ClientID field value if set, zero value otherwise.

func (*ServiceAccountAllOf) GetClientIDOk

func (o *ServiceAccountAllOf) GetClientIDOk() (*string, bool)

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

func (*ServiceAccountAllOf) GetClientSecret

func (o *ServiceAccountAllOf) GetClientSecret() string

GetClientSecret returns the ClientSecret field value if set, zero value otherwise.

func (*ServiceAccountAllOf) GetClientSecretOk

func (o *ServiceAccountAllOf) GetClientSecretOk() (*string, bool)

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

func (*ServiceAccountAllOf) GetCreatedAt

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

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

func (*ServiceAccountAllOf) GetCreatedAtOk

func (o *ServiceAccountAllOf) 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 (*ServiceAccountAllOf) GetDescription

func (o *ServiceAccountAllOf) GetDescription() string

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

func (*ServiceAccountAllOf) GetDescriptionOk

func (o *ServiceAccountAllOf) 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 (*ServiceAccountAllOf) GetId

func (o *ServiceAccountAllOf) GetId() string

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

func (*ServiceAccountAllOf) GetIdOk

func (o *ServiceAccountAllOf) 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 (*ServiceAccountAllOf) GetName

func (o *ServiceAccountAllOf) GetName() string

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

func (*ServiceAccountAllOf) GetNameOk

func (o *ServiceAccountAllOf) 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 (*ServiceAccountAllOf) GetOwner

func (o *ServiceAccountAllOf) GetOwner() string

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

func (*ServiceAccountAllOf) GetOwnerOk

func (o *ServiceAccountAllOf) 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 (*ServiceAccountAllOf) HasClientID

func (o *ServiceAccountAllOf) HasClientID() bool

HasClientID returns a boolean if a field has been set.

func (*ServiceAccountAllOf) HasClientSecret

func (o *ServiceAccountAllOf) HasClientSecret() bool

HasClientSecret returns a boolean if a field has been set.

func (*ServiceAccountAllOf) HasCreatedAt

func (o *ServiceAccountAllOf) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ServiceAccountAllOf) HasDescription

func (o *ServiceAccountAllOf) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceAccountAllOf) HasId

func (o *ServiceAccountAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceAccountAllOf) HasName

func (o *ServiceAccountAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*ServiceAccountAllOf) HasOwner

func (o *ServiceAccountAllOf) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (ServiceAccountAllOf) MarshalJSON

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

func (*ServiceAccountAllOf) SetClientID

func (o *ServiceAccountAllOf) SetClientID(v string)

SetClientID gets a reference to the given string and assigns it to the ClientID field.

func (*ServiceAccountAllOf) SetClientSecret

func (o *ServiceAccountAllOf) SetClientSecret(v string)

SetClientSecret gets a reference to the given string and assigns it to the ClientSecret field.

func (*ServiceAccountAllOf) SetCreatedAt

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

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

func (*ServiceAccountAllOf) SetDescription

func (o *ServiceAccountAllOf) SetDescription(v string)

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

func (*ServiceAccountAllOf) SetId

func (o *ServiceAccountAllOf) SetId(v string)

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

func (*ServiceAccountAllOf) SetName

func (o *ServiceAccountAllOf) SetName(v string)

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

func (*ServiceAccountAllOf) SetOwner

func (o *ServiceAccountAllOf) SetOwner(v string)

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

type ServiceAccountList

type ServiceAccountList struct {
	Kind  *string                   `json:"kind,omitempty"`
	Items *[]ServiceAccountListItem `json:"items,omitempty"`
}

ServiceAccountList struct for ServiceAccountList

func NewServiceAccountList

func NewServiceAccountList() *ServiceAccountList

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

func NewServiceAccountListWithDefaults

func NewServiceAccountListWithDefaults() *ServiceAccountList

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

func (*ServiceAccountList) GetItems

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

func (*ServiceAccountList) GetItemsOk

func (o *ServiceAccountList) GetItemsOk() (*[]ServiceAccountListItem, 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 (*ServiceAccountList) GetKind

func (o *ServiceAccountList) GetKind() string

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

func (*ServiceAccountList) GetKindOk

func (o *ServiceAccountList) 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 (*ServiceAccountList) HasItems

func (o *ServiceAccountList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ServiceAccountList) HasKind

func (o *ServiceAccountList) HasKind() bool

HasKind returns a boolean if a field has been set.

func (ServiceAccountList) MarshalJSON

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

func (*ServiceAccountList) SetItems

func (o *ServiceAccountList) SetItems(v []ServiceAccountListItem)

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

func (*ServiceAccountList) SetKind

func (o *ServiceAccountList) SetKind(v string)

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

type ServiceAccountListAllOf

type ServiceAccountListAllOf struct {
	Kind  *string                   `json:"kind,omitempty"`
	Items *[]ServiceAccountListItem `json:"items,omitempty"`
}

ServiceAccountListAllOf struct for ServiceAccountListAllOf

func NewServiceAccountListAllOf

func NewServiceAccountListAllOf() *ServiceAccountListAllOf

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

func NewServiceAccountListAllOfWithDefaults

func NewServiceAccountListAllOfWithDefaults() *ServiceAccountListAllOf

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

func (*ServiceAccountListAllOf) GetItems

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

func (*ServiceAccountListAllOf) GetItemsOk

func (o *ServiceAccountListAllOf) GetItemsOk() (*[]ServiceAccountListItem, 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 (*ServiceAccountListAllOf) GetKind

func (o *ServiceAccountListAllOf) GetKind() string

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

func (*ServiceAccountListAllOf) GetKindOk

func (o *ServiceAccountListAllOf) 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 (*ServiceAccountListAllOf) HasItems

func (o *ServiceAccountListAllOf) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ServiceAccountListAllOf) HasKind

func (o *ServiceAccountListAllOf) HasKind() bool

HasKind returns a boolean if a field has been set.

func (ServiceAccountListAllOf) MarshalJSON

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

func (*ServiceAccountListAllOf) SetItems

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

func (*ServiceAccountListAllOf) SetKind

func (o *ServiceAccountListAllOf) SetKind(v string)

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

type ServiceAccountListItem

type ServiceAccountListItem struct {
	// server generated unique id of the service account
	Id   *string `json:"id,omitempty"`
	Kind *string `json:"kind,omitempty"`
	Href *string `json:"href,omitempty"`
	// client id of the service account
	ClientID *string `json:"clientID,omitempty"`
	// name of the service account
	Name *string `json:"name,omitempty"`
	// owner of the service account
	Owner *string `json:"owner,omitempty"`
	// service account creation timestamp
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// description of the service account
	Description *string `json:"description,omitempty"`
}

ServiceAccountListItem struct for ServiceAccountListItem

func NewServiceAccountListItem

func NewServiceAccountListItem() *ServiceAccountListItem

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

func NewServiceAccountListItemWithDefaults

func NewServiceAccountListItemWithDefaults() *ServiceAccountListItem

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

func (*ServiceAccountListItem) GetClientID

func (o *ServiceAccountListItem) GetClientID() string

GetClientID returns the ClientID field value if set, zero value otherwise.

func (*ServiceAccountListItem) GetClientIDOk

func (o *ServiceAccountListItem) GetClientIDOk() (*string, bool)

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

func (*ServiceAccountListItem) GetCreatedAt

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

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

func (*ServiceAccountListItem) GetCreatedAtOk

func (o *ServiceAccountListItem) 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 (*ServiceAccountListItem) GetDescription

func (o *ServiceAccountListItem) GetDescription() string

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

func (*ServiceAccountListItem) GetDescriptionOk

func (o *ServiceAccountListItem) 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 (*ServiceAccountListItem) GetHref

func (o *ServiceAccountListItem) GetHref() string

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

func (*ServiceAccountListItem) GetHrefOk

func (o *ServiceAccountListItem) 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 (*ServiceAccountListItem) GetId

func (o *ServiceAccountListItem) GetId() string

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

func (*ServiceAccountListItem) GetIdOk

func (o *ServiceAccountListItem) 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 (*ServiceAccountListItem) GetKind

func (o *ServiceAccountListItem) GetKind() string

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

func (*ServiceAccountListItem) GetKindOk

func (o *ServiceAccountListItem) 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 (*ServiceAccountListItem) GetName

func (o *ServiceAccountListItem) GetName() string

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

func (*ServiceAccountListItem) GetNameOk

func (o *ServiceAccountListItem) 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 (*ServiceAccountListItem) GetOwner

func (o *ServiceAccountListItem) GetOwner() string

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

func (*ServiceAccountListItem) GetOwnerOk

func (o *ServiceAccountListItem) 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 (*ServiceAccountListItem) HasClientID

func (o *ServiceAccountListItem) HasClientID() bool

HasClientID returns a boolean if a field has been set.

func (*ServiceAccountListItem) HasCreatedAt

func (o *ServiceAccountListItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ServiceAccountListItem) HasDescription

func (o *ServiceAccountListItem) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceAccountListItem) HasHref

func (o *ServiceAccountListItem) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ServiceAccountListItem) HasId

func (o *ServiceAccountListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceAccountListItem) HasKind

func (o *ServiceAccountListItem) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ServiceAccountListItem) HasName

func (o *ServiceAccountListItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*ServiceAccountListItem) HasOwner

func (o *ServiceAccountListItem) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (ServiceAccountListItem) MarshalJSON

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

func (*ServiceAccountListItem) SetClientID

func (o *ServiceAccountListItem) SetClientID(v string)

SetClientID gets a reference to the given string and assigns it to the ClientID field.

func (*ServiceAccountListItem) SetCreatedAt

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

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

func (*ServiceAccountListItem) SetDescription

func (o *ServiceAccountListItem) SetDescription(v string)

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

func (*ServiceAccountListItem) SetHref

func (o *ServiceAccountListItem) SetHref(v string)

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

func (*ServiceAccountListItem) SetId

func (o *ServiceAccountListItem) SetId(v string)

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

func (*ServiceAccountListItem) SetKind

func (o *ServiceAccountListItem) SetKind(v string)

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

func (*ServiceAccountListItem) SetName

func (o *ServiceAccountListItem) SetName(v string)

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

func (*ServiceAccountListItem) SetOwner

func (o *ServiceAccountListItem) SetOwner(v string)

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

type ServiceAccountListItemAllOf

type ServiceAccountListItemAllOf struct {
	// server generated unique id of the service account
	Id *string `json:"id,omitempty"`
	// client id of the service account
	ClientID *string `json:"clientID,omitempty"`
	// name of the service account
	Name *string `json:"name,omitempty"`
	// owner of the service account
	Owner *string `json:"owner,omitempty"`
	// service account creation timestamp
	CreatedAt *time.Time `json:"created_at,omitempty"`
	// description of the service account
	Description *string `json:"description,omitempty"`
}

ServiceAccountListItemAllOf struct for ServiceAccountListItemAllOf

func NewServiceAccountListItemAllOf

func NewServiceAccountListItemAllOf() *ServiceAccountListItemAllOf

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

func NewServiceAccountListItemAllOfWithDefaults

func NewServiceAccountListItemAllOfWithDefaults() *ServiceAccountListItemAllOf

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

func (*ServiceAccountListItemAllOf) GetClientID

func (o *ServiceAccountListItemAllOf) GetClientID() string

GetClientID returns the ClientID field value if set, zero value otherwise.

func (*ServiceAccountListItemAllOf) GetClientIDOk

func (o *ServiceAccountListItemAllOf) GetClientIDOk() (*string, bool)

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

func (*ServiceAccountListItemAllOf) GetCreatedAt

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

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

func (*ServiceAccountListItemAllOf) GetCreatedAtOk

func (o *ServiceAccountListItemAllOf) 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 (*ServiceAccountListItemAllOf) GetDescription

func (o *ServiceAccountListItemAllOf) GetDescription() string

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

func (*ServiceAccountListItemAllOf) GetDescriptionOk

func (o *ServiceAccountListItemAllOf) 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 (*ServiceAccountListItemAllOf) GetId

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

func (*ServiceAccountListItemAllOf) GetIdOk

func (o *ServiceAccountListItemAllOf) 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 (*ServiceAccountListItemAllOf) GetName

func (o *ServiceAccountListItemAllOf) GetName() string

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

func (*ServiceAccountListItemAllOf) GetNameOk

func (o *ServiceAccountListItemAllOf) 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 (*ServiceAccountListItemAllOf) GetOwner

func (o *ServiceAccountListItemAllOf) GetOwner() string

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

func (*ServiceAccountListItemAllOf) GetOwnerOk

func (o *ServiceAccountListItemAllOf) 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 (*ServiceAccountListItemAllOf) HasClientID

func (o *ServiceAccountListItemAllOf) HasClientID() bool

HasClientID returns a boolean if a field has been set.

func (*ServiceAccountListItemAllOf) HasCreatedAt

func (o *ServiceAccountListItemAllOf) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ServiceAccountListItemAllOf) HasDescription

func (o *ServiceAccountListItemAllOf) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ServiceAccountListItemAllOf) HasId

func (o *ServiceAccountListItemAllOf) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceAccountListItemAllOf) HasName

func (o *ServiceAccountListItemAllOf) HasName() bool

HasName returns a boolean if a field has been set.

func (*ServiceAccountListItemAllOf) HasOwner

func (o *ServiceAccountListItemAllOf) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (ServiceAccountListItemAllOf) MarshalJSON

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

func (*ServiceAccountListItemAllOf) SetClientID

func (o *ServiceAccountListItemAllOf) SetClientID(v string)

SetClientID gets a reference to the given string and assigns it to the ClientID field.

func (*ServiceAccountListItemAllOf) SetCreatedAt

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

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

func (*ServiceAccountListItemAllOf) SetDescription

func (o *ServiceAccountListItemAllOf) SetDescription(v string)

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

func (*ServiceAccountListItemAllOf) SetId

func (o *ServiceAccountListItemAllOf) SetId(v string)

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

func (*ServiceAccountListItemAllOf) SetName

func (o *ServiceAccountListItemAllOf) SetName(v string)

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

func (*ServiceAccountListItemAllOf) SetOwner

func (o *ServiceAccountListItemAllOf) SetOwner(v string)

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

type ServiceAccountRequest

type ServiceAccountRequest struct {
	// The name of the service account
	Name string `json:"name"`
	// A description for the service account
	Description *string `json:"description,omitempty"`
}

ServiceAccountRequest Schema for the request to create a service account

func NewServiceAccountRequest

func NewServiceAccountRequest(name string) *ServiceAccountRequest

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

func NewServiceAccountRequestWithDefaults

func NewServiceAccountRequestWithDefaults() *ServiceAccountRequest

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

func (*ServiceAccountRequest) GetDescription

func (o *ServiceAccountRequest) GetDescription() string

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

func (*ServiceAccountRequest) GetDescriptionOk

func (o *ServiceAccountRequest) 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 (*ServiceAccountRequest) GetName

func (o *ServiceAccountRequest) GetName() string

GetName returns the Name field value

func (*ServiceAccountRequest) GetNameOk

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

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

func (*ServiceAccountRequest) HasDescription

func (o *ServiceAccountRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (ServiceAccountRequest) MarshalJSON

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

func (*ServiceAccountRequest) SetDescription

func (o *ServiceAccountRequest) SetDescription(v string)

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

func (*ServiceAccountRequest) SetName

func (o *ServiceAccountRequest) SetName(v string)

SetName sets field value

type ServiceStatus

type ServiceStatus struct {
	Kafkas *ServiceStatusKafkas `json:"kafkas,omitempty"`
}

ServiceStatus Schema for the service status response body

func NewServiceStatus

func NewServiceStatus() *ServiceStatus

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

func NewServiceStatusWithDefaults

func NewServiceStatusWithDefaults() *ServiceStatus

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

func (*ServiceStatus) GetKafkas

func (o *ServiceStatus) GetKafkas() ServiceStatusKafkas

GetKafkas returns the Kafkas field value if set, zero value otherwise.

func (*ServiceStatus) GetKafkasOk

func (o *ServiceStatus) GetKafkasOk() (*ServiceStatusKafkas, bool)

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

func (*ServiceStatus) HasKafkas

func (o *ServiceStatus) HasKafkas() bool

HasKafkas returns a boolean if a field has been set.

func (ServiceStatus) MarshalJSON

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

func (*ServiceStatus) SetKafkas

func (o *ServiceStatus) SetKafkas(v ServiceStatusKafkas)

SetKafkas gets a reference to the given ServiceStatusKafkas and assigns it to the Kafkas field.

type ServiceStatusKafkas

type ServiceStatusKafkas struct {
	// Indicates whether we have reached kafka maximum capacity
	MaxCapacityReached bool `json:"max_capacity_reached"`
}

ServiceStatusKafkas The kafka resource api status

func NewServiceStatusKafkas

func NewServiceStatusKafkas(maxCapacityReached bool) *ServiceStatusKafkas

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

func NewServiceStatusKafkasWithDefaults

func NewServiceStatusKafkasWithDefaults() *ServiceStatusKafkas

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

func (*ServiceStatusKafkas) GetMaxCapacityReached

func (o *ServiceStatusKafkas) GetMaxCapacityReached() bool

GetMaxCapacityReached returns the MaxCapacityReached field value

func (*ServiceStatusKafkas) GetMaxCapacityReachedOk

func (o *ServiceStatusKafkas) GetMaxCapacityReachedOk() (*bool, bool)

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

func (ServiceStatusKafkas) MarshalJSON

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

func (*ServiceStatusKafkas) SetMaxCapacityReached

func (o *ServiceStatusKafkas) SetMaxCapacityReached(v bool)

SetMaxCapacityReached sets field value

type Values

type Values struct {
	Timestamp *int64  `json:"Timestamp,omitempty"`
	Value     float64 `json:"Value"`
}

Values struct for Values

func NewValues

func NewValues(value float64) *Values

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

func NewValuesWithDefaults

func NewValuesWithDefaults() *Values

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

func (*Values) GetTimestamp

func (o *Values) GetTimestamp() int64

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Values) GetTimestampOk

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

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

func (*Values) GetValue

func (o *Values) GetValue() float64

GetValue returns the Value field value

func (*Values) GetValueOk

func (o *Values) GetValueOk() (*float64, bool)

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

func (*Values) HasTimestamp

func (o *Values) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (Values) MarshalJSON

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

func (*Values) SetTimestamp

func (o *Values) SetTimestamp(v int64)

SetTimestamp gets a reference to the given int64 and assigns it to the Timestamp field.

func (*Values) SetValue

func (o *Values) SetValue(v float64)

SetValue sets field value

type VersionMetadata

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

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

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

func (o *VersionMetadata) GetCollections() []ObjectReference

GetCollections returns the Collections field value if set, zero value otherwise.

func (*VersionMetadata) GetCollectionsOk

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

func (o *VersionMetadata) GetHref() string

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

func (*VersionMetadata) GetHrefOk

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

func (o *VersionMetadata) GetId() string

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

func (*VersionMetadata) GetIdOk

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

func (o *VersionMetadata) GetKind() string

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

func (*VersionMetadata) GetKindOk

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

func (o *VersionMetadata) HasCollections() bool

HasCollections returns a boolean if a field has been set.

func (*VersionMetadata) HasHref

func (o *VersionMetadata) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*VersionMetadata) HasId

func (o *VersionMetadata) HasId() bool

HasId returns a boolean if a field has been set.

func (*VersionMetadata) HasKind

func (o *VersionMetadata) HasKind() bool

HasKind returns a boolean if a field has been set.

func (VersionMetadata) MarshalJSON

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

func (*VersionMetadata) SetCollections

func (o *VersionMetadata) SetCollections(v []ObjectReference)

SetCollections gets a reference to the given []ObjectReference and assigns it to the Collections field.

func (*VersionMetadata) SetHref

func (o *VersionMetadata) SetHref(v string)

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

func (*VersionMetadata) SetId

func (o *VersionMetadata) SetId(v string)

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

func (*VersionMetadata) SetKind

func (o *VersionMetadata) SetKind(v string)

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

type VersionMetadataAllOf

type VersionMetadataAllOf struct {
	Collections *[]ObjectReference `json:"collections,omitempty"`
}

VersionMetadataAllOf struct for VersionMetadataAllOf

func NewVersionMetadataAllOf

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

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

func (o *VersionMetadataAllOf) GetCollections() []ObjectReference

GetCollections returns the Collections field value if set, zero value otherwise.

func (*VersionMetadataAllOf) GetCollectionsOk

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

func (o *VersionMetadataAllOf) HasCollections() bool

HasCollections returns a boolean if a field has been set.

func (VersionMetadataAllOf) MarshalJSON

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

func (*VersionMetadataAllOf) SetCollections

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